팀원들과 간단한 팀 소개 페이지를 만드는 미니프로젝트주황색 부분은 시간이 남아있을 때 구현해볼 수 있는 버튼들이다.가독성이 좋게 팀 이름과 목표를 위에 소개하고, 밑으로 내리면 팀원들의 사진과 추가 설명을 읽을 수 있다. (HTML, CSS로 구현)방명록 버튼을 누르면
코딩 캠프 첫 날... 일일 12시간 공부... 할 수 있을까?대학교 졸업 이후로 이렇게 많이 공부하는건 처음이다ㅎㅎ과정 설명과 미니프로젝트를 이해하고 제출도 하니까 12시간이 너무 빨리 지나간 느낌이라 당황스럽긴 하지만 좀 더 익숙해지면 코딩하면서 복습이 잘 되지 않
미니프로젝트가 발표랑 함께 완료되었다..!다른 팀들이 너무 좋은 아이디어가 많아서 시연을 보면서 많은 것을 배웠다. 아~ 이건 이렇게 구성 할 수 있구나!라는 순간이 너무나도 많았다.특히 게임, 카톡, 스포츠 등으로 컨셉을 맞춰서 사이트를 만든 프로젝트들이 인상 깊었다
Python 기본 기능을 복습하자!Strings are an array of character \- Can be indexedCan be slicedemail = 'abc@abc.com'domain = email.split('@)1 domain = email.spl
https://github.com/jbae9/talmo(프로젝트 깃허브 링크)https://www.notion.so/Sparta-Project-2-e97411635aab423686804e25a8f679cd(프로젝트 SA, API)심플한 SNS를 만들었
DFS vs. BFS Depth First Search (DFS): Searches from the root to the deepest node of the tree first Breadth First Search (BFS): Searches the first dept
A data structure that expresses the relationship between nodes.노드(Node): 연결 관계를 가진 각 데이터를 의미합니다. 정점(Vertex)이라고도 합니다.간선(Edge): 노드 간의 관계를 표시한 선.인접 노드(Ad
트리 Tree Queue and stack are a linear data type. Trees are non-linear. Folders are a tree data type Tree terms Node: 트리에서 데이터를 저장하는 기본 요소 Root Node:
강의 자료 Database A collection of data DBMS: Database Management System DBMS types: 계층형 DMBS (Hierarchical DBMS) 망형 DBMS (Cloud DBMS) 관계형 DBMS (Relation
A hash table uses a hash function to quickly search and save data. \- The hash function computes an index (hash code) into an array of buckets or slo
Uses a data structure called Last In First Out (LIFO)push(data): Operation that adds an element to the top index \- append() for Python works the sam
To sort an array in an orderTypes of sortingComplexity of types of sortingSwaps two consecutive elements to order until no more swaps occur
Binary search is whenver a list is cut into half with each iteration to search for a value, instead of searching element by element from the beginning
An array has a fixed data space. To increase the space, a new array must be built with the specified length.To index an array (Such as array\[0]), it
How long it takes to run an algorithmTypically expressed in big O notation \- O(n), O(n^2), etc.Every operation takes "1" time to performA for functi
배진영: \- PPT로 발표하는 것이 깔끔하다고 생각했다. 다른 팀 멤버들이 중간중간에 본인이 겪었던 일이 다소 발표가 끊기는 느낌이 들어가 번거로울 수도 있지만, 본인이 구성한 것을 자랑스럽게 발표할 수 있다는 점이 좋았다. \- Github을 배우는 시간이 생각
늦게 올리는거긴 하지만... better late than never?CSS 충돌 \- 멤버 카드를 만드면서 CSS 충돌이 너무 많았고... 솔직히 어지러워서 Bootstrap 카드로 바꿨다. 조금 더 살펴 보면 처음 쓴 카드를 Bootstrap 카드로 구현해볼만 했
Non-blocking \- Blocking I/O waits until the function in the program returns a result while Non-blocking I/O can execute other functions at the same
HTTP (Hyper Text Transfer Protocol) is a protocal (통신 규약) that defines the form of which data is sent or received.Network is a way to express and the
A package manager is a tool to easily handle packages. In Node.js, the top package managers are npm and yarn.npm is similar to pip in Python.yarn is a
Cookies are a function in web browsers, usually used to save a status. The server sends a cookie in a response and the web browser saves the data as i
Sockets (소켓) are similar to an electrical socket, that's an essential connection for us to use electricity. A network socket is an essential connectio
A programming paradigm based on objects instead of procedures. It is recognized as a method to effectively dissasemble and construct large and complic
참고한 자료: 수정할거: 자료가 없으면 status 404 찾아볼거: Service, controller 클라이언트 - 컨트롤러 - 서비스 - 모델 - DB 요청 제한: 1. 클라이언트 throttle, debounce, 2. 서버 rate limit을 통해 요청
Date time picker을 사용하는데 이렇게 오래 헤맬 줄 몰랐다ㅜㅜBootstrap 5도 쓰고있어서 그나마 조금 이쁜 편인 Tempus Dominus 6를 사용했다.Header에 필요한 CDNBody에서 쓰는 date time picker프로젝트 설정 때문에 m
프로젝트 발제 내용팀 노션프로젝트 깃허브프로젝트 발제 내용은 원래 세탁 배달 서비스였지만 비슷한 배달 기능와 배달 상태 개념은 있되 다른 컨셉으로 낮잠 대행 서비스, 고객이 주문하면 캠핑카가 와서 잠시 잘 수 있는 서비스를 구현해봤다.Keep: 매일 회의를 진행해서 서
전에 쓴 노트 참고 강의 자료 실시간 통신 기술 종류 1. Polling When connecting with HTTP, it is stateless and connectionless. The client can send a request, but the serve
All Javascript is Typescript, but not all Typescript is Javascript.Advantages of Typescript and its difference from Javascript: https://medium.co
Original exercise repo: https://github.com/hurricanenara/enums_exerciseMy solution: https://github.com/jbae9/enums_exerciseThe following are
프로젝트 노션프로젝트 Github이커머스 프로젝트로 PC방을 관리하는 사이트를 만들어봤다!요번 프로젝트의 중요 기능인 하나는 장바구니 기능이다.장바구니는 Session Storage를 썼다. 원래 쿠팡 같은 서비스를 만들었다면 로그아웃 또는 다른 창으로 로그인 할 때
To require other types of data, you need to install other middleware, such as body-parser (express.json() module can be used after Express v4.16), coo
Nest.js required Node.js and it only uses NPM (NOT yarn or any other package managers).To install Nest.js as a global command:Use the nest command to
board라는 module, controller, service를 만들어야한다.Terminal에서 src 폴더로 가서 다음과 같은 명령을 쓰면 board폴더가 만들어지고 안에 파일이 만들어진다.Package를 설치한 때는 root 폴더에서 설치하면 된다.Lodash p
TypeORM is an ORM that can be used in Typescript. Setup Install TypeORM (TypeORM v0.3.0 is compatible with Windows apparently?): If installation fai
Refresh token 개념 복습:https://inpa.tistory.com/entry/WEB-%F0%9F%93%9A-Access-Token-Refresh-Token-%EC%9B%90%EB%A6%AC-feat-JWT참고자료: https://www.