전체 글87 두번째 블로그 https://newphase.tistory.com 2024. 8. 18. [Java] this 와 this() class Person{ String name; int age; Person(int age){ this("name입니당", age); } Person(String name, int age){ this.name = name; this.age = age; }}this() 는 생성자처럼 쓰임 class Person{ String name; int age; Person(String nn, int aa){ this.name = nn; this.age = aa; }} 2021. 12. 31. [CLI] 로컬 포트 확인 (Mac) netstat -anv | grep LISTEN 2021. 12. 29. [tool] intelij에서 querydsl 인식 못할때 cannot find symbol Q 열심히 구글링해서 modules 재설정하고에러를 해결해도 인텔리제이에서는 계속 빨간 줄로 뜨고 Q객체를 써도 자동으로 import안되면 메이븐 새로고침 눌러주면 된다.. 2021. 11. 21. [git] 자주쓰는 명령어들 1. 깃헙 프로젝트 생성(리파지토리)더보기new 클릭 여기서 하던 대로 create repository git 주소 복붙해서 여기저기 활용 2. 터미널로 깃허브 로그인더보기처음 설치 후 사용자 정보 입력git config --global user.name "유저이름~~"git comfig --global user.email "유저이메일~~" 깃 저장소 만들기mkdir git-folder-> git-folder 라는 폴더 만든다.cd git-folder-> git-folder폴더로 이동한다.git init-> 깃을 사용할 수 있도록 시작한다는 명령 (. git이라는 폴더가 생긴다) 작업은 git-folder폴더 안에서 하면 된당 3. 현재 branch 확인 / checkout더보기- 초기 브랜치는 m.. 2021. 8. 11. [etc] MacBook(m1) 초기세팅 개인용 맥북에어 샀다 🍎회사에서 쓰는 맥북(m1) 처음 세팅했던 기억을 더듬어서 초기세팅 가이드 작성하려 함. homebrew더보기https://brew.sh/index_ko 접속 후 위 코드 복붙다운로드 완료되면 Next step 후의 내용 echo~부터 복붙 해서 실행한다.그다음 brew help 명령어 입력하고대충 이렇게 뜨면 다 설치된 것 iterm2https://iterm2.com/ iTerm2 - macOS Terminal ReplacementiTerm2 by George Nachman. Website by Matthew Freeman, George Nachman, and James A. Rosen. Website updated and optimized by HexBrainiterm2.com.. 2021. 8. 9. 이전 1 2 3 4 ··· 15 다음