본문 바로가기 메뉴 바로가기

먹고 기도하고 코딩하라

프로필사진
  • 글쓰기
  • 관리
  • 태그
  • 방명록
  • RSS

먹고 기도하고 코딩하라

검색하기 폼
  • 분류 전체보기 (28)
    • eat (0)
    • pray (1)
    • code (25)
      • OS (8)
      • javascript (7)
      • three.js (5)
      • node.js (1)
      • git (1)
      • spring (3)
    • anything (2)
  • 방명록

code (25)
spring mvc 동작원리

https://all-record.tistory.com/165

code/spring 2021. 6. 1. 17:03
Destructuring assignment

MDN https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Destructuring_assignment Destructuring assignment - JavaScript | MDN The destructuring assignment syntax is a JavaScript expression that makes it possible to unpack values from arrays, or properties from objects, into distinct variables. developer.mozilla.org Practice https://codesandbox.io/s/es6-destructuring-forked..

code/javascript 2021. 5. 30. 14:49
Array map, filter, reduce, find, findIndex

var numbers = [3, 56, 2, 48, 5]; //Map -Create a new array by doing something with each item in an array. console.log(numbers.map((number) => number * 2)); /* 배열 요소 하나하나씩 돌면서 2로 곱한 새로운 배열을 반환 [6, 112, 4, 96, 10] */ //Filter - Create a new array by keeping the items that return true. console.log(numbers.filter((number) => number > 10)); /* 배열 요소 하나하나씩 검사해서 10이상인 요소만 넣은 새로운 배열을 반환 [56, 48] */ //Re..

code/javascript 2021. 5. 29. 20:10
Variables scope in if/else statement and for/while loop

code/javascript 2021. 5. 14. 09:51
화살표 함수

var test = (a,b) => { return a+b; } test(1,2) // 3 test = a => { return a*2; }; test(2) // 4 test = () => { return 5; } test() // 5 // 화살표 함수의 유일한 문장이 'return'일 때 'return'과 // 중괄호({})를 생략할 수 있다. test = () => 5; test() // 5

code/javascript 2021. 5. 11. 17:15
git cheat sheet

git switch [branch] git log --oneline git reset --soft HEAD~ : HEAD returns to latest commit git reset --mixed HEAD~ : HEAD returns to latest commit, unstage files git reset --hard HEAD~ : HEAD returns to latest commit, unstage files, discard changes git reset [file name] : unstage [file name]

code/git 2021. 5. 11. 15:09
What is an API?

An Application Programming Interface (API) is a set of commands, functions, protocols, and objects that programmers can use to create software or interact with an external system. e.g., api.kanye.rest, https://v2.jokeapi.dev/joke/Programming?contains=debugging, http://api.openweathermap.org/data/2.5/weather?q=London&appid=******random numbers and letters********&units=metric Endpoint Paths Param..

code/javascript 2021. 5. 7. 14:17
what is a prototype?

A prototype is just a property that every function you create in javascript has that points to an object.

code/javascript 2021. 5. 4. 23:37
이전 1 2 3 4 다음
이전 다음
공지사항
최근에 올라온 글
최근에 달린 댓글
Total
Today
Yesterday
링크
TAG
  • Semaphores
  • exec()
  • process context
  • 문제가된다면삭제하겠습니다
  • dmacontroller
  • multiple-processer scheduling
  • deadlock prevention
  • Program Counter
  • modebit
  • 혹시이런거쓰면문제유출인가요
  • docxtemplater
  • timesharing
  • shortest job first
  • test and set
  • deadlock avoidance
  • multiprogramming
  • deadlock detection and recovery
  • Copy on Write
  • devicecontroller
  • i/odevice
  • Peterson's Algorithm
  • 부모-자식 프로세스
  • CPU burst
  • deadlock ignorance
  • message system
  • CPU Scheduler
  • nomorecramming
  • I/O burst
  • process control block
  • real time scheduling
more
«   2025/08   »
일 월 화 수 목 금 토
1 2
3 4 5 6 7 8 9
10 11 12 13 14 15 16
17 18 19 20 21 22 23
24 25 26 27 28 29 30
31
글 보관함

Blog is powered by Tistory / Designed by Tistory

티스토리툴바