본문 바로가기

창고 3/[Dev] My Readme27

몽고 DB 기초 2 Schema, Collection, And Model In creating database, the first thing we need is to create a schema. Each schema maps to a MongoDB collection. Schema => Collection => Model ===(instantiation)===> Document In MongoDB, a lot of databases can exist. Choose the one that you need and connect it using mongoose. Database is structured as follows What is schema? Model : a list of concepts describing data(.. 2022. 1. 5.
몽고 DB 기초 1 MongoDB is a NO-SQL database that stores JSON documents. Mongoose is a npm package used to control MongoDB with Javascript, creating schemas. SQL : saving all data across tables NO-SQL : saving all data within one record MongoDB has a merit combinated with Javascript that its format is JSON, which is Javascript Object Notation. Web - Server - Database Web client : HTML, CSS, Javascript Web serve.. 2022. 1. 4.
git commit 취소하는 법, git push 취소하는 법, git 폴더명 변경하기 Undoing commit and push Troubleshoting done by Paragraph edited and translated by See JS debugging tutorial in YouTube During this YouTube tutorial, I had encountered one github troubleshooting. A commit for image file had been placed in javascript code, not the original image one. Undoing a git push I made had always been a unwelcome guest so I decided to face it and figure out this time. How t.. 2022. 1. 4.
git pull request 단계별 연습하기 How to do git pull request Check a task given and ellaborate in Github issue : set label and assignee Create a branch and move to the branch with : git branch -b myBranch Add changes, commit, and push to the branch Github will automatically sense the push and let you know about the change like below Open a pull request and compare the two branches : 1) main 2) newly created branch. Explain why i.. 2022. 1. 3.
운영체제 기초 2 운영체제 구조 윈도우, 맥, 우분투 등 각각의 운영체제의 내부 구조는 많은 차이점을 가지고 있으나, 공통/핵심적으로 1) 멀티 프로그래밍 2) 멀티 태스킹을 수행한다. 멀티 프로그래밍과 멀티 태스킹은 운영체제의 핵심 역할이라 할 수 있다. 멀티 프로그래밍(Multiprogramming) 멀티 프로그래밍의 목적은 CPU의 효용성을 증가시켜 여러 가지 프로그램을 동시에 실행하는 것에 있다. 메인 메모리 RAM은 Job pool에서 수행해야 할 작업 중 일부를 가지고 온다(RAM의 용량 한계로 인해 전체를 가지고 오지 않음). Job : code + data Job pool : a place where a group of jobs are stored, awaiting main memory and CPU all.. 2021. 12. 27.
운영체제 기초 1 운영 체제의 이해 아래 강좌를 듣고 핵심 내용을 요약함. 대부분의 설명은 한국어이나 편의상 영문으로 기술한 부분이 있음. Operating System by Neso Academy 서문 운영체제란 컴퓨터 하드웨어를 관리하는 소프트웨어를 의미한다. 운영체제는 사용자와 컴퓨터 하드웨어의 중간자로서 응용 프로그램의 기반이 된다. 운영 체제의 종류 : Windows, Linux, Ubuntu, Mac OS, Android System/Application - OS - Hardware 만약 운영체제가 없다면 Excel과 같은 응용 프로그램을 실행시킬 때, 유저가 직접 하드웨어에게 코드를 작성하고 명령을 내려 저장, 연산 등을 수행해야 한다. 운영체제의 핵심은 인터페이스로서 사용자를 대신해 하드웨어에게 명령을 내리.. 2021. 12. 24.

loading