![](https://img1.daumcdn.net/thumb/R750x0/?scode=mtistory2&fname=https%3A%2F%2Fblog.kakaocdn.net%2Fdn%2FbjvLx4%2FbtsDKAhveQc%2FZCkhw2b7UiqVr4WRlf1gsk%2Fimg.png)
분류 전체보기
![](https://img1.daumcdn.net/thumb/R750x0/?scode=mtistory2&fname=https%3A%2F%2Fblog.kakaocdn.net%2Fdn%2FsNDjH%2FbtsDbcJiqnz%2F2nvfXhk2pD0kDwxXSPhfX0%2Fimg.png)
1. 깃 아이디와 동일한 레포 생성, README.md 파일 생성 2. README 꾸미기 -> 아래 사이트에서 꾸민 후 Git으로 가서 커밋하면 간단하게 리꾸 가능 ! https://dillinger.io/ Online Markdown Editor - Dillinger, the Last Markdown Editor ever. Make something great today! dillinger.io 3. GitHub State Card 상태 카드 추가 https://github.com/anuraghazra/github-readme-stats GitHub - anuraghazra/github-readme-stats: :zap: Dynamically generated stats for your github ..
![](https://img1.daumcdn.net/thumb/R750x0/?scode=mtistory2&fname=https%3A%2F%2Fblog.kakaocdn.net%2Fdn%2FF7t05%2FbtsC7tDwGpO%2FxVLCCyKVlOympkZQP8IbP1%2Fimg.png)
[목적] 작업자별 작업 코드 줄 수(CLOC; Count Lines Of Code) 확인 [방법] 1. 작업 진행 중인 Git 폴더 / Intellij에 가서 다음 Git 명령어 입력 git ls-files | while read f; do git blame --line-porcelain $f | grep '^author '; done | sort -f | uniq -ic | sort -n - 변경할 부분이 없다. 그냥 저대로 입력하면 됨 - 바로 결과가 출력되진 않음. 필자의 경우, 30초 이상 걸린 것 같음.. 명령어가 잘못된 줄 .. 2. 명령어 출력 ! 나는 5,963줄의 코드를 작성했다. 전체 8명의 팀원 중에서 4등으로 코드를 작성했다.
![](https://img1.daumcdn.net/thumb/R750x0/?scode=mtistory2&fname=https%3A%2F%2Fblog.kakaocdn.net%2Fdn%2Feih6Nh%2FbtsC8TBVzgE%2FrPswnmbDZEHmZKpSFIxDo1%2Fimg.png)
[1. jsfiddle 사이트 접속 확인] https://jsfiddle.net/Ac6CT/ Edit fiddle - JSFiddle - Code Playground jsfiddle.net 브라우저 버전에 맞는 Script 실행 되어 알 수 있음 현재 나는 Java Script 1.5를 사용하고 있는 상태. [2. VSC - HTML 파일 실행 확인] 1. VSC 실행 2. HTML 파일 생성 (jsVerCheck.html) 3. 아래 코드 입력 후 실행 마찬가지로 1.5 버전을 사용하고 있는 것을 확인할 수 있다. [출처] 더보기 https://asrada2001.tistory.com/entry/Javascript-%EB%B2%84%EC%A0%84-%ED%99%95%EC%9D%B8%ED%95%98%EA..
![](https://img1.daumcdn.net/thumb/R750x0/?scode=mtistory2&fname=https%3A%2F%2Fblog.kakaocdn.net%2Fdn%2FdpF7SK%2FbtsC8Rc2rdq%2FB9FEI7s7IxA9y1EDBeQbxk%2Fimg.png)
[Server] 1. MySQL 접속 2. 아래 쿼리 실행 -- 간단 확인 SELECT VERSION(); -- 상세 확인 SHOW VARIABLES LIKE '%VERSION%' [Client] 1. 터미널 접속 2. 아래 명령어 실행 mysql --version 또는 mysql -V (필자는 'mysql -V' 명령어 오류 뜸)
[상황] orderList.jsp 내 아래의 java script 파일들을 불러와서 실행, 1) orderList.js 2) orderList_goDetail.js orderList.js만 실행되고 orderList_goDetail.js는 실행되지 않음 [파일 분석] 1. orderList.jsp java script 두 개를 head 부분에 불러왔다. 2. orderList.js window.onload = function () { // q&a 바로가기 연결 const goQna = document.getElementById("goQna"); const goFaq = document.getElementById("goFaq"); // 계좌번호 복사하기 버튼 불러오기 후 변수에 담기 const copyBt..
1. 줌인 #boss_thanks { -webkit-transform: scale(1); transform: scale(1); -webkit-transition: .5s ease-in-out; transition: .5s ease-in-out; } #boss_thanks:hover { -webkit-transform: scale(1.3); transform: scale(1.3); } 2. 줌아웃 #boss_thanks { -webkit-transition: .5s ease-in-out; transition: .5s ease-in-out; } #boss_thanks:hover { -webkit-transform: scale(0.5); transform: scale(0.5); -webkit-transitio..
[생성자, getter and setter, toString()] command + n [실행] control + r [일괄 문자 대체] command + r [코드 자동 정렬] option + command + L [깃 커밋] control + k [깃 커밋 + 푸시] control + shift + k