본문 바로가기

분류 전체보기216

auto와 inherit의 차이 ? auto - 기본값, 높이 자동으로 지정 inherit - 부모의 값을 물려받음 aboooks.tistory.com/336 [css] height 속성 [css] height 속성 어제는 요소의 너비를 설정할 때 쓰는 width 속성을 배웠습니다. 오늘은 height 속성으로, 요소의 높이를 설정할 때 사용합니다. width 속성과 마찬가지로 height 속성은 인라인 요소, ta aboooks.tistory.com 2020. 10. 6.
MySQL 버전 확인하기 터미널에 mysql -V jinolog.com/programming/mysql/2011/03/21/mysql-version-check.html MySQL의 버전 확인 - Jinolog 2011.03.21 00:44 MySQL의 버전 확인 MySQL의 버전을 확인하기 위해서는 커맨드 창에서 아래와 같이 입력하면 된다 또는 하지만 이는 엄밀히 말하면 mysql 클라이언트의 버전을 체크하는 방법인데, (경우� jinolog.com 2020. 10. 6.
github에서 커밋 변경사항 확인하기 commits 클릭 확인할 커밋명 클릭 2020. 10. 1.
강제로 push하기 git push origin "+브랜치명" git push origin "브랜치명" — force 브랜치명 앞에 +를 붙이거나 --force를 붙인다. www.hahwul.com/2016/02/02/coding-git-push-push-error-failed-to/ [CODING] GIT에서 강제로 Push 하기 / push 에러 해결하기 ( error: failed to push some refs to ) Security engineer, Bugbounty hunter, Developer and... H4cker www.hahwul.com 2020. 10. 1.
css animation 마지막 상태 유지, 반복 횟수 애니메이션이 끝난 후에도 마지막 상태 유지 animation-fill-mode: forwards; 애니메이션 반복 횟수 설정 animation-iteration-count: infinite; pro-self-studier.tistory.com/108 CSS 애니메이션 구현 - @keyframes 와 animation 속성을 이용하여 안녕하세요, 프로독학러 입니다. 이번 포스팅에서는 CSS 애니메이션과 @keyframes 에 대해서 알아보도록 하겠습니다. 1. @keyframes @keyframes 는 CSS 애니메이션에서 구간을 정하고 각 구간별로 어떤 스타 pro-self-studier.tistory.com 2020. 9. 29.
[error] 경로를 업데이트하고 브랜치로 전환하는 일은 동시에 할 수 없습니다. git checkout -b 에러 : 명령어 입력시 제목과 같은 에러 뜸 원인 : branch-name에 띄어쓰기가 있어서 해결 : 띄어쓰기 대신 - 나 _ 사용 2020. 9. 28.
Date getMonth 달 2자리로 출력하기 2020/7/7 -> 2020/07/07 const month = date.getMonth() + 1; return month < 10 ? `0${String(month)}` : `${String(month)}`; const day = date.getDate(); return day < 10 ? `0${String(day)}` : `${String(day)}`; stackoverflow.com/questions/6040515/how-do-i-get-month-and-date-of-javascript-in-2-digit-format How do I get Month and Date of JavaScript in 2 digit format? When we call getMonth() and getDate().. 2020. 9. 28.
[error] 거부됨 - would clobber existing tag ! [거부됨] v0.7.62 -> v0.7.62 (would clobber existing tag) yarn install 시 위와 같은 에러가 뜸. qastack.kr/programming/31929667/updates-were-rejected-because-the-tag-already-exists-when-attempting-to-push-i SourceTree에서 푸시를 시도 할 때 "태그가 이미 존재하기 때문에 업데이트가 거부되었습니다." qastack.kr git pull --tags -f 도 하고 여러가지 해봤지만 똑같다.. 캐쉬 삭제를 하고 나서 install하니 잘 된다. yarn cache clean 2020. 9. 28.
[React 스터디] 6 : 고차 컴포넌트 고차 컴포넌트란? Higher-order Component (HOC) 즉 컴포넌트 내에서 자주 반복되는 코드를 재사용하기 위한 React 기술 반복되는 코드 찾기 // Post.js import React, { Component } from 'react'; import axios from 'axios'; class Post extends Component { state = { data: null } async initialize() { try { const response = await axios.get('https://jsonplaceholder.typicode.com/posts/1'); this.setState({ data: response.data }); } catch (e) { console.lo.. 2020. 9. 28.