일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- service
- Algorithm
- git
- 단축키
- 두 동전
- ubuntu
- intent
- 안드로이드
- github
- 데이터전달
- activity
- Android
- vscode
- Jenknis
- IntelliJ
- Java
- 프로그래머스
- 큐빙
- goland
- data
- insert
- spring
- mysql
- 제어반전
- 17837
- 16197
- 알고리즘
- broadcastreceiver
- 데이터
- 백준
- Today
- Total
목록전체 글 (87)
해보자
Xdebug 설정 https://xdebug.org/wizard Xdebug: Support — Tailored Installation Instructions Installation Wizard This page helps you finding which file to download, and how to configure PHP to get Xdebug running. Please paste the full output of phpinfo() (either a copy & paste of the HTML version, the HTML source or php -i output) and submit the f xdebug.org 위 사이트에 phpinfo의 정보를 모두 복사해서 붙여넣으면 사용할 수 있..
1. goland > preference 실행 2.Go > Go Modules > Enable Go modules integration을 체크..
Jenkinsfile pipeline { agent any stages { stage ('Hello world 1') { steps { echo "Hello world!!" } post { always { echo 'POST: Hello world 1' } } } stage ('Error test') { steps { error "ERROR!!!!" echo "Error after..." } post { always { echo 'POST: Hello world 1' } } } stage ('Hello world 2') { steps { echo "Hello world!! 2" } post { always { echo 'POST: Hello world 2' } } } } post { always { ec..
1. Jenkins download https://www.jenkins.io/download/ Jenkins download and deployment Jenkins download and deployment The Jenkins project produces two release lines: Stable (LTS) and regular (Weekly). Depending on your organization's needs, one may be preferred over the other. See the links below for more information and recommendations abo www.jenkins.io jenkins.war 파일을 다운로드 받는다. 2. Jenkins 실행 ..
MacOS M1에서 goland의 디버깅이 되지 않는 문제가 있었다. ㅠㅡㅠ 1. go version `arm`으로 설치 2. goland Apple sillicon 버전으로 설치 3. GO environment 설정 export GOPATH=[[ my go project path ]] export GOBIN=$GOPATH/bin export PATH=$PATH:$GOBIN:$GOROOT/bin 4. delve download readme가 아주 친절하게 나와있기 때문에 직접 참고하는 것이 좋다. https://github.com/go-delve/delve/blob/master/Documentation/installation/README.md $ git clone https://github.com/go-..
export GOBIN export GOBIN={path}
javacsript test
C:\\Program Files\\MongoDB\\Server\\4.4\\bin 폴더에서 mongod.cfg 파일 수정. security에 주석을 해제하고 다음과같이 수정한다. security: authorization: enabled 수정할 때는 메모장을 관리자 권한으로 실행해서 파일 열기를 통해서 해당 파일을 불러와서 수정해야 수정이 가능하다. 수정이 끝난 후에는 [windows key]를 누르고 `서비스`를 검색해서 찾아 들어간다 MongoDB Server를 찾아서 오른쪽 마우스로 클릭하고 [다시 시작]을 눌러서 서버를 reboot해줘야 한다 이렇게 다 하고 나면 username/password없이는 접속이 불가능해진다 ----------- mongodb에 접속해서 유저 권한은 모두 생성했다는 가정..