반응형

전체 글 271

전쟁 배경 영화

영화1917 파스샹달 참호전 : 포비든 그라운드 (2013) Doomsday: World War I 바탈리언 (2001) 日本海大海戦 (1969): Battle of the Japan Sea Nihonkai daikaisen (1969) https://www.youtube.com/watch?time_continue=5&v=rIYnHHisVis&feature=emb_title 미드웨이 (2019) 진주만 (2001) Midway (1976 film) 태양의 제국 (1987) 화이트 타이거: 최강 전차군단 (2012) 퓨리 (2014) The Longest Day (1962) Tora! Tora! Tora! (1970) Battle of the Bulge (1965)

Whatever... 2020.02.17

Internet platforms/services/languages

Node.js Node.js는 확장성 있는 네트워크 애플리케이션(특히 서버 사이드) 개발에 사용되는 소프트웨어 플랫폼이다. 작성 언어로 자바스크립트를 활용하며 Non-blocking I/O와 단일 스레드 이벤트 루프를 통한 높은 처리 성능을 가지고 있다. 웹사이트 http://nodejs.org/ Hello world 예제 var http = require('http'); http.createServer(function (request, response) { response.writeHead(200, {'Content-Type': 'text/plain'}); response.end('Hello World\n'); }).listen(8000); console.log('Server running at htt..

Science&Enigneering 2020.02.17
반응형