본문 바로가기

분류 전체보기

(64)
nodeJS 초기 세팅 C:\ljw-study\spring-api\workspace\SpringApi\eatgo-web>npm init This utility will walk you through creating a package.json file. It only covers the most common items, and tries to guess sensible defaults. See `npm help init` for definitive documentation on these fields and exactly what they do. Use `npm install ` afterwards to install a package and save it as a dependency in the package.json file..
JUnit All Test 생성
HTTPie 사용법 C:\ljw-study\spring-api\workspace\SpringApi>pip install --upgrade httpie Collecting httpie Downloading httpie-2.2.0-py3-none-any.whl (70 kB) |████████████████████████████████| 70 kB 168 kB/s Collecting Pygments>=2.5.2 Downloading Pygments-2.6.1-py3-none-any.whl (914 kB) |████████████████████████████████| 914 kB 273 kB/s Requirement already satisfied, skipping upgrade: colorama>=0.2.4; sys_platfo..
VueJS class 추가 v-bind:class : vue로 class 를 binding 시킴 "{ 'font_color': fontColor}" : fontColor가 true면 font_color클래스를 추가 시킨다. {{message}} .text{ font-size:70px; } .text.font_color{ color:red; } const vm=new Vue({ el: '#app', data: { message: 'Hello Vue!', fontColor: true } })
Git Branch 1. branch 추가 git branch 20200722 2. branch 확인 $ git branch 20200722 * master 3. branch 변경 $ git checkout 20200722 Switched to branch '20200722' 4. branch 변경 확인 $ git branch * 20200722 master 5. 추가 $ git add . 6. Commit $ git commit -m "20200722 Kotlin" [20200722 7836f78] 20200722 Kotlin 1 file changed, 0 insertions(+), 0 deletions(-) create mode 100644 README 7. 새로 생성한 branch에 push $ git push or..
3-tier Architecture
Github 추가 (base) ijin-uui-MacBookPro:Step1 jw.lee$ git init /Users/jw.lee/Android-workspace/Step1/.git/ 안의 빈 깃 저장소를 다시 초기화했습니다 (base) ijin-uui-MacBookPro:Step1 jw.lee$ git add . (base) ijin-uui-MacBookPro:Step1 jw.lee$ git status 현재 브랜치 master 아직 커밋이 없습니다 커밋할 변경 사항: (스테이지 해제하려면 "git rm --cached ..."을 사용하십시오) 새 파일: .gitignore 새 파일: .idea/.name 새 파일: .idea/codeStyles/Project.xml 새 파일: .idea/codeStyles/codeS..
Task 'classes' not found in root project IntelliJ에서 Project 분리하던 도중 아래의 에러 발생 Task 'classes' not found in root project. File -> Invalidate Caches / Restart... 클릭하여 재시작 하면 정상적으로 동작한다.