전체 글 (291) 썸네일형 리스트형 코딩 테스트 연습 14일 코딩 테스트 연습 14일 프로그래머스, 캐릭터의 좌표 📄 나의 코드 board = [7, 9] keyinput = ["down", "down", "down", "down", "down"] def solution(keyinput, board): cur = [0,0] for key in keyinput: if key == "left" and cur[0] > -(board[0] // 2): cur[0] -= 1 elif key == "right" and cur[0] -(board[1] // 2).. Node.js 입문 주차 1주차_5 Node.js 입문 주차 1주차_5 git 형상관리 도구 📌 SSH Key 발급 ssh-keygen -t rsa -b 4096 -C "archepro84@gmail.com" 📌 키 파일 open cat ~/.ssh/id_rsa.pub 📌 git init git init 📌 .gitignore 파일 생성 git add . git commit -m "first Commit All Files" git push -u origin master 📌 원격 repo 업로드 확인 수정된 사항 업로드 📌 변경사항 있는지 확인 git status git add . git commit -m "Second Commit Files" git push aws 인스턴스 cd Download ssh -i ./sparta_keypair... Node.js 입문 주차 1주차_4 Node.js 입문 주차 1주차_4 MongoDB, Studio 3T 설치 📌 mongoose DB Clinet 역할 npm install mongoose MongoDB 연결 📄 app.js const express = require('express'); const app = express(); const port = 3000; const goodsRouter = require('./routes/goods.js'); const connect = require('./schemas/index.js'); connect(); app.use(express.json()); app.use("/api", goodsRouter); app.listen(port, () => { console.log(port, '포트로 서버.. 이전 1 ··· 68 69 70 71 72 73 74 ··· 97 다음