git-basic
1.최초 설정사용자 이름과 메일 주소 설정1$ git config --global user.name "FirstName Lastname"2$ git config --global user.email "yourEmail@example.com" 명령어 UI 기본 설정1$ git config --golobal color.ui a
1.최초 설정사용자 이름과 메일 주소 설정1$ git config --global user.name "FirstName Lastname"2$ git config --global user.email "yourEmail@example.com" 명령어 UI 기본 설정1$ git config --golobal color.ui a
코딩교육 아이디어 : python교육내용 변수1일 = 12이 = 23일 + 이45숫자1 = 106숫자2 = 57숫자1 + 숫자28... 함수1def 더하기(숫자1, 숫자2):2 return 숫자1 + 숫자23더하기(1, 2) …제출할 수 있는 server 교육과 점수매길수 있는 공간 제공 소스 저장하여 실행 가능
Javascript ‘in’ and ‘object.hasOwnProperty’1var book = {2 title: "High Performance JavaScript",3 publisher: "Yahoo! Press" 4};56alert(book.hasOwnProperty("
2. SSH Key 관련SSH Key 생성1$ ssh-keygen -t rsa -C "yourEmail@example.com"2Generating public/private rsa key pair.3Enter file in which to save the key (/c/Users/yourUserDirec
JavaScript SortNotes Javascript’s sort function is basically sorted by string(even if the value is a number).1var arr = [2,12,3,4,1];2console.log(arr.sort());3// [1, 12, 2, 3, 4] Target
map, reduce, filterArray.prototype.map구문 1arr.map(callback[, thisArg]) callback 매개변수 currentValue: 현재 요소 index: 인덱스 array: 대상 Array thisArg: callback시 this로 활용되는 값사용법11[1, 2, 3, 4].map(function (va
Ubuntu Basicfile system 용량1$ df -h --total -h: 용량 요약표기(GB, MB) –total: 모든 용량 표시
SFTP 만 로그인 되는 계정 설정 ssh에서 쉘을 허용할경우 보안 문제가 생김. 이때문에 가능한 사용자가 쉘 접근을 하지 못하게 막을 필요가 있음. nas의 경우 파일 다운로드 업로드가 주 용도이기 때문에 sftp만 이용할 수 있는 계정만있어도 충분 계정 생성계정생성 sftp만 로그인 되는 계정은 스스로 비밀번호를 변경할 수 없음1# 유저 생성2$ s
User유저 추가1# Create a user2$ sudo adduser your-user-name3# Grant uper user permission4$ sudo usermod -G sudo your-user-name 그룹 추가1# Enter prefer group name2$ sudo groupadd your-group-name 유저를 그룹에 추가1$
1. Markdown BasicHeader1# H12## H23### H34#### H45##### H56###### H6 H1H2H3H4H5H6 Block1>12>>23>>>3 1 2 3 Number list11. First23. Third32. Second First Third Second List1#