일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- Chrome
- VirtualBox
- linux
- IOS
- androidstudio
- localserver
- xcode
- jest
- MAC
- Android
- 맥
- node
- qunit
- 리눅스
- PYTHON
- 센토스
- build
- react
- 티스토리챌린지
- 개발
- 네트워크
- 오블완
- vsCode
- TensorFlow
- centos
- MachineLearning
- webpack
- unittest
- ReactNative
- Today
- Total
목록Frontend/ETC (48)
로메오의 블로그
collections에서 적용할 컬렉션을 선택합니다.Authorization 탭에서Bearer Token을 선택하고 Token에 token을 입력하고 저장합니다. Api Headers에서 hidden을 누릅니다. Authorization을 확인 할 수 있습니다.
manifest.json { "name": "배경색상 변경", "description": "배경색상을 변경하는 크롬 확장 프로그램", "version": "1.0", "permissions": [ "activeTab", "scripting", "storage" ], "action": { "default_popup": "popup.html", "default_icon": { "16": "images/icon-16.png", "128": "images/icon-128.png" } }, "icons": { "16": "images/icon-16.png", "128": "images/icon-128.png" }, "background": { "service_worker": "service-worker.js" }..
CryptoJS는 AES, MD5, SHA1 를 지원합니다. AES 알고리즘 암호화하는 코드입니다. // 암호화 키 생성 var key = CryptoJS.enc.Hex.parse('MY-KEY'); // 암호화할 문자열 var plaintext = 'hello world'; // 암호화 var ciphertext = CryptoJS.AES.encrypt(plaintext, key, { mode: CryptoJS.mode.ECB, padding: CryptoJS.pad.Pkcs7 }); // 암호문 출력 console.log(ciphertext.toString()); // iE33TdrMlbG5ENb/fa819A==
로컬 저장소와 원격 저장소 연결하기 ## 로컬 레파지토리 생성 $ git init project $ cd project ## 파일 생성 커밋 $ echo "hello" > new.txt $ git add new.txt $ git commit -m "first commit" ## 원격 레파지토리 확인 $ git remote -v ## 원격 레파지토리 연결 $ git remote add origin https://ID@bitbucket.org/ID/project.git ## 원격 레파지토리 확인 $ git remote -v master https://ID@bitbucket.org/ID/project.git (fetch) master https://ID@bitbucket.org/ID/project.git (p..
보호되어 있는 글입니다.
Source tree 맥에서 비밀번호가 저장되지 않고 계속 물어보는 이슈가 있습니다. $ git config --global credential.helper osxkeychain 위 명령어를 실행하고 source tree에서 pull 하면 맥 키체인에 접근 요청을 합니다. 맥 로그인 암호를 입력하고 항상 허용을 누릅니다. 이제 Source tree에서 비밀번호 재입력 없이 사용 가능합니다.
Array.push 마지막 추가 let arr = ['a', 'b'] let result = arr.push('c') console.log(arr) // ['a', 'b', 'c'] console.log(result) // 3 Array.pop 마지막 삭제 let arr = ['a', 'b', 'c'] let result = arr.pop() console.log(arr) // ['a', 'b'] console.log(result) // c Array.unshift 첫 번째 추가 let arr = ['a', 'b'] let result = arr.unshift('c') console.log(arr) // ['c', 'a', 'b'] console.log(result) // 3 Array.shift 첫 번..
휴지통 비우기 제어판 > 공유 폴더 모든 휴지통 비우기 휴지통을 비워도 용량이 확보되지 않습니다. Drive 버저닝 해제하기 활성화된 폴더를 선택하고 버저닝을 누릅니다. 버전 제어 활성화를 해제합니다. 설정에서 계산 버튼을 누릅니다. Synology Drive Server를 재 시작합니다. 팀폴더에서 동기화 활성화된 폴더를 선택하고 사용안함 합니다. 제어판에서 사용자 홈 서비스를 비활성화 하라고 뜹니다. 사용자 홈 서비스를 비활성화 합니다. 몇 시간 후에 용량이 반환된 것을 확인 할 수 있습니다.