기타

· 기타
[chrome] 웹 개발시 도움되는 기능들... ( 개발자 도구 DevTools ) 1. Disable cache - 캐시 남기지 않도록 설정. - ex) JS 변경 후 재대로 적용되지 않을 때 해당 기능을 사용하면. 시크릿 모드 Secret mode처럼 캐시를 남기지 않아 캐시 삭제를 하지 않아도 코드 변경 사항이 제대로 적용된다. 2. Offline Online - 외부망(인터넷)을 끊었을 때, 연결했을 때의 상황을 테스트할 수 있다. 3. Console 창에 hidden 되어 안보일 때 - console에 찍히도록 코딩을 했는데 hidden으로 안보일 경우 - Filter를 확인한다. X를 눌러 필터를 제거한다.
· 기타
[VScode] vscode Terminal에서 virtualenv 실행방법 1.ex) env 라는 이름을 같는 virtualenv 생성한다. $ virtualenv env 2.vscode에서 Command Palette ( Ctrl + Shift + P ) 에 Python: Select Interpreter입력하고 생성한 Virtualenv 로 선택한다 하단에 아래와 같이 virtualenv로 변경된다. 3.settings.json 파일에python.pythonPath를 Virtualenv 폴더 내 python.exe로 설정한다.*settings.json파일은 `File > Preferences > Settings`의 Workspace Settings에서 열수 있다. 4.Terminal 열면 Virtu..
· 기타
[VSCode] 불필요한 파일/폴더 안 보이게 숨기는 방법 1.Settings 선택 * Windows/Linux - File > Preferences > Settings * macOS - Code > Preferences > Settings 2.Extensions > Ignore에서 "Edit in settings.json" 선택 3.settings.json에 보여지길 원하지 않는 폴더/파일을 exclude 에 입력. 예1) .pyc 파일과 __pycache__를 안보이게 할 경우 아래와 같이 입력하면 된다. { "files.exclude": { "**/*.pyc": {"when": "$(basename).py"}, "**/__pycache__": true }, "window.zoomLevel": 0 }..
· 기타
[Git] Markdown emojiPeople :bowtie:😄 :smile:😆 :laughing:😊 :blush:😃 :smiley:☺️ :relaxed:😏 :smirk:😍 :heart_eyes:😘 :kissing_heart:😚 :kissing_closed_eyes:😳 :flushed:😌 :relieved:😆 :satisfied:😁 :grin:😉 :wink:😜 :stuck_out_tongue_winking_eye:😝 :stuck_out_tongue_closed_eyes:😀 :grinning:😗 :kissing:😙 :kissing_smiling_eyes:😛 :stuck_out_tongue:😴 :sleeping:😟 :worried:😦 :frowning:😧 :anguished:😮 :open_mouth:😬 :..
· 기타
[Tools] Mac osx 에 xcode 없이 git 사용하기 Git-scm 에서Max OS X버전 다운 .pkg 실행하여 git 설치 완료 terminal에 git을 입력해보면 xcode를 설치하라는 메세지가 뜬다. $ git xcode-select: note: no developer tools were found at '/Applications/Xcode.app', requesting install. Choose an option in the dialog to download the command line developer tools. xcode를 무시하기 위해 환경변수에 git을 추가해 준다. terminal에 아래와 같이 입력해 주면 된다. $ echo "PATH=/usr/local/git/bi..
· 기타
GIT 명령어 * 기억 잘 안나는 git 명령어들 모아둠. (마지막 수정일 : 2020.11.24) git stash save현재 작업을 저장해두고 branch를 head로 돌린다.(git reset –hard) git stash list저장되어 있는 stash들 보기 git stash popstash들은 stack에 저장된다. 따라서 가장 최근에 save한 stash가 현재 branch에 적용된다. git stash applygit stash pop 과 비슷한 명령어지만 stash list에서 삭제하지 않는다는 점이 다르다. git stash drop필요 없는 stash를 삭제 git stash clear전체 stash list를 삭제 git commit --amend직전 commit 메세지 수정 gi..
S0PH1A
'기타' 카테고리의 글 목록 (2 Page)