본문 바로가기

전체 글

(188)
vscode 에서 우분투 ssh 접속하여 프로젝트 접근 evols-atirev.tistory.com/28 seokhyun2.tistory.com/42 myevan.net/vscode_ext_remote_ssh/ Settings > Extensions > Remote - SSH > Remote.SSH: Config File 에서 직접 경로 설정해주어야 합니다. 경로 구분자를 \ 대신 \\ 를 사용합니다. C:\\Users\\USER_NAME\\.ssh\\config
golang 기초문서 github.com/golang/go/wiki/CodeReviewComments?fbclid=IwAR2g8X8ucnuyaLxBSwQcUONdYmxYBgs8XmWgBUc3oxyI-vps5mejKCmyStM golang/go The Go programming language. Contribute to golang/go development by creating an account on GitHub. github.com
golang 패키지 관리 www.joinc.co.kr/w/man/12/golang/mod Go 패키지관리 새로운 메이저 버전 의존성 추가하기 www.joinc.co.kr
How can I check if a program exists from a Bash script? stackoverflow.com/a/677212/1027058 How can I check if a program exists from a Bash script? How would I validate that a program exists, in a way that will either return an error and exit, or continue with the script? It seems like it should be easy, but it's been stumping me. stackoverflow.com
table driven test 테스트 케이스를 map 으로 만들어 직관성이 좋음 t.Run 으로 해당 테스트 케이스 이름을 받아 직관성 향상
context 활용 예제 여러 url 요청을 받아서 그중 하나가 완료 되었을 때 다른 고루틴 url 을 종료 처리하는 기능 context 를 이요하여 goroutine 생성시 전달하여 처리함 hedgedrequest_cancellation.go GitHub Gist: instantly share code, notes, and snippets. gist.github.com gist.github.com/RicardoLinck/de61fb488ef8db0ab6fc749941f52919#file-hedgedrequest_cancellation-go
response header TYPE X-Powered-By 비활성화 처리 HTTP 패킷 response header 에 X-Powered-By 정보에 해당 서버 미들웨어 정보가 나옴 비황성화 처리 해야함
GIT Workflow blog.ull.im/engineering/2019/06/25/git-workflow-for-ci-cd.html