일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
- 리눅스
- IOS
- unittest
- qunit
- build
- localserver
- xcode
- ReactNative
- 오블완
- androidstudio
- linux
- Chrome
- 네트워크
- 티스토리챌린지
- 센토스
- MAC
- react
- webpack
- 개발
- Android
- MachineLearning
- centos
- TensorFlow
- jest
- vsCode
- VirtualBox
- 맥
- node
- PYTHON
- Today
- Total
목록분류 전체보기 (490)
로메오의 블로그
휴지통 비우기 제어판 > 공유 폴더 모든 휴지통 비우기 휴지통을 비워도 용량이 확보되지 않습니다. Drive 버저닝 해제하기 활성화된 폴더를 선택하고 버저닝을 누릅니다. 버전 제어 활성화를 해제합니다. 설정에서 계산 버튼을 누릅니다. Synology Drive Server를 재 시작합니다. 팀폴더에서 동기화 활성화된 폴더를 선택하고 사용안함 합니다. 제어판에서 사용자 홈 서비스를 비활성화 하라고 뜹니다. 사용자 홈 서비스를 비활성화 합니다. 몇 시간 후에 용량이 반환된 것을 확인 할 수 있습니다.
VUE.JS 목록 $ npm install splitpanes@legacy $ npm install @types/splitpanes 11 22 https://antoniandre.github.io/splitpanes/ VUE.JS 목록
Transition Keyframe
아이디 저장 .checkbox-control input+label { display: block; width: 154px; height: 24px; padding-left: 35px; background: url(../img/uncheck.png) no-repeat 0 0px / contain; } .checkbox-control input:checked+label { background: url(../img/check.png) no-repeat 0 0px / contain; } .checkbox-control input { display: none; }
SELECT LEFT(UUID(), 8) AS ID; SELECT LEFT(MD5(RAND()), 8) AS ID; | ID | |---------| |4f184f59|
brew 로 putty 설치 ## homebrew 설치 $ ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" ## brew 최신 버전 갱신하기 $ brew update-reset $ brew --version Homebrew 3.4.5-51-g5641532 ## putty 설치 $ brew install putty ## 설치 목록 확인 $ brew list ==> Formulae autoconfdockerlibtoolpkg-configsqlite automakegdbmlibyamlputtyxz cocoapodslibgpg-erroropensslpythonzlib coreutilslibksbaop..
sourcetree에서 암호를 계속 물어볼때 $ git config --global credential.helper osxkeychain
flex 선언 .container { display: flex /* display: inline-flex */ } flex 방향 .container { flex-direction: row; /* flex-direction: column; */ /* flex-direction: row-reverse; */ /* flex-direction: column-reverse; */ } 줄넘김 .container { flex-wrap: nowrap; /* flex-wrap: wrap; */ /* flex-wrap: wrap-reverse; */ } nowrap: 영역 밖으로 삐져나감 wrap: 줄 넘김 wrap-reverse: 위로 줄 넘김 메인축 방향 정렬 .container { justify-content: fl..