Post(26)
-
chsh -s /bin/bash
참고 https://www.howtogeek.com/444596/how-to-change-the-default-shell-to-bash-in-macos-catalina/ https://extrememanual.net/35391 상황 가끔, bash 로 작업해야할 경우 chsh -s /bin/bash 로 바꾸고요. close and reopen 합시당. sudo rm -rf ~/Library/Application\ Support/Adobe* ~/Library/Application\ Support/com.apple.sharedfilelist/com.apple.LSSharedFileList.ApplicationRecentDocuments/com.adobe* ~/Library/Application\ Suppor..
2022.11.11 -
create template. index.html
Content goes here. 음 요거 만들어주는 것두 왠지 vscode 확장에 있을것같은데
2022.11.10 -
python 테스트 프레임워크
참고: https://www.itworld.co.kr/t/61023/90309/131687 https://testmanager.tistory.com/332#:~:text=Behave%EB%8A%94%20%EB%AC%B4%EC%97%87%EC%9E%85%EB%8B%88%EA%B9%8C%3F,%EC%9E%88%EB%8A%94%20%EC%82%AC%EB%9E%8C%EC%9D%B4%20%EC%9E%91%EC%84%B1%ED%95%A9%EB%8B%88%EB%8B%A4. https://blog.neonkid.xyz/280 https://testmanager.tistory.com/332 https://cheuora.github.io/2020/04/16/Behave/ 방향: 1 behave(“행위 주도 개발”, 즉 B..
2022.11.08 -
한 컴퓨터에서 git 여러 계정 + 스택오버플로우
https://usingu.co.kr/frontend/git/%ED%95%9C-%EC%BB%B4%ED%93%A8%ED%84%B0%EC%97%90%EC%84%9C-github-%EA%B3%84%EC%A0%95-%EC%97%AC%EB%9F%AC%EA%B0%9C-%EC%82%AC%EC%9A%A9%ED%95%98%EA%B8%B0/ 한 컴퓨터에서 github 계정 여러개 사용하기 - git | UsingU 한 컴퓨터에 여러개의 github를 사용해야 하는데 오류가 발생하는 등 불편함이 있었습니다. SSH Key를 이용해 한 컴퓨터에 여러개의 github 계정을 사용하는 방법을 알아보도록 하겠습니다. usingu.co.kr https://stackoverflow.com/questions/7927750/specify..
2022.11.07 -
mongodb slow query 조회
생각해보게 한 글 : https://tech.inflab.com/202201-event-postmortem/ 참고 : (슬로우 쿼리) https://medium.com/mongodb-cowboys/troubleshooting-mongodb-100-cpu-load-and-slow-queries-da622c6e1339 (계정권한 생성) https://devel-lee.tistory.com/18 (Oracle, MS-SQL, Mysql, postgreSQL의 slow query 조회 방법) https://dreamcoding.tistory.com/62 (db.setProfilingLevel 공식문서) https://www.mongodb.com/docs/manual/reference/method/db.setPr..
2022.11.01 -
mongosh 조회
목적/ mongodb가 현재 하는 작업이 알고 싶다 전제/ mac m1 환경 brew is already installed && 최신 상태 mongodb 6.0 방법/ 1) brew 환경에서 mongo shell client를 설치 한다. 2) shell에 접속한다. 3) 명령어로 현재 실행중인 작업과, lock 상태를 조회한다. 상세/ brew tap mongodb/brew brew install mongodb-community brew services (실행중인 것을 확인) mongosh "본인의 db 정보 와 계정 정보" db.serverStatus().globalLock | db.currentOp() 등을 실행 brew services stop mongodb-community 참고/ https:/..
2022.09.28