일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- Big Data
- 주일설교
- 빅데이타
- 빅데이터
- nodeJS
- 김양재 목사
- 김양재 목사님
- Deep learning
- 빅 데이터
- c++
- 데이터 과학
- openCV
- 빅 데이타
- Statistics
- 확률
- 김양재
- node.js
- Artificial Intelligence
- Machine Learning
- No SQL
- 통계
- 인공지능
- data science
- WebGL
- 우리들교회
- probability
- 몽고디비
- MongoDB
- 딥러닝
- R
- Today
- Total
목록Programming (202)
Scientific Computing & Data Science
목 차1. Example 1 - HelloWorld 2. Example 2 - Context Menu3. Example 3 - Using Node.js API4. Example 4 - Using Node.js File System 5. Example 5 - Submenu 6. Example 6 - Tray Icons7. Example 7 - Custom Window Control8. Example 8 - Context Menus9. Example 9 - Window Menus10.Example 10 - Using Node Modules11.Example 11 - Using Third Party Modules 이번 글에서는 채팅 등의 메시지 앱에 사용되는 알림(Notifications) 기능을 Node W..
목 차1. Example 1 - HelloWorld 2. Example 2 - Context Menu3. Example 3 - Using Node.js API4. Example 4 - Using Node.js File System 5. Example 5 - Submenu 6. Example 6 - Tray Icons7. Example 7 - Custom Window Control8. Example 8 - Context Menus9. Example 9 - Window Menus10.Example 10 - Using Node Modules 이번 글에서는 Node Module의 Third Party Module을 활용하는 방법을 알아보도록 하겠다.Third module 중 하나인 mkdirp를 이용하여 디렉토..
목 차1. Example 1 - HelloWorld 2. Example 2 - Context Menu3. Example 3 - Using Node.js API4. Example 4 - Using Node.js File System 5. Example 5 - Submenu 6. Example 6 - Tray Icons7. Example 7 - Custom Window Control8. Example 8 - Context Menus9. Example 9 - Window Menus 이번 글에서는 Node Module을 활용하는 방법을 알아보도록 하겠다.Codespackage.json{ "main": "index.html", "name": "using node modules", "window": { "toolb..
목 차1. Example 1 - HelloWorld 2. Example 2 - Context Menu3. Example 3 - Using Node.js API4. Example 4 - Using Node.js File System 5. Example 5 - Submenu 6. Example 6 - Tray Icons7. Example 7 - Custom Window Control8. Example 8 - Context Menus 이번 글에서는 Window Menus를 생성하는 방법을 알아보도록 하겠다. Codespackage.json{ "main": "index.html", "name": "window menus" } index.html12345678910111213141516171819202122232..
목 차1. Example 1 - HelloWorld 2. Example 2 - Context Menu3. Example 3 - Using Node.js API4. Example 4 - Using Node.js File System 5. Example 5 - Submenu 6. Example 6 - Tray Icons7. Example 7 - Custom Window Control 이번 글에서는 Context Menu를 생성하는 방법을 알아보도록 하겠다.Codepackage.json{ "main": "index.html", "name": "context and window menus", "window": { "fullscreen": true } } index.html1234567891011121314151..
시리즈 목차1. Example 1 - HelloWorld 2. Example 2 - Context Menu3. Example 3 - Using Node.js API4. Example 4 - Using Node.js File System 5. Example 5 - Submenu 6. Example 6 - Tray Icons 이번 글에서는 Custom Window Controller를 생성하는 방법을 알아보도록 하겠다.Codepackage.json{ "main": "index.html", "name": "custom window control", "window": { "toolbar": false, "frame" : false, "fullscreen": true } } reset.css123456789101..
Node-Webkit Part 1 : Introduction Node-Webkit Part 2 : Custom Window Controls Node-Webkit Part 3 : The Manifest File Node-Webkit Part 4 : Context and Window Menus Node-Webkit Part 5 : Using Node.js Modules Node-Webkit Part 6 : Wrapping it up!
시리즈 목차1. Example 1 - HelloWorld 2. Example 2 - Context Menu3. Example 3 - Using Node.js API4. Example 4 - Using Node.js File System 5. Example 5 - Submenu 이번 글에서는 System Tray Menu를 생성하는 방법을 알아보도록 하겠다. Tray Icon은 Windows의 경우 하단 Task Bar에 Mac OS의 경우 상단에 존재하는 Icon을 의미한다.Codesindex.html: Tray menu. // create node-webkit gui var gui = require('nw.gui'); Node Webkit GUI 라이브러리를 불러온다. // create a tray i..
시리즈 목차1. Example 1 - HelloWorld 2. Example 2 - Context Menu3. Example 3 - Using Node.js API4. Example 4 - Using Node.js File System 이번 글에서는 Submenu를 생성하는 방법을 알아보도록 하겠다. Codesindex.html: 'Right click' to show context menu. var nw = require('nw.gui'); Node Webkit의 GUI 라이브러리인 nw.gui를 불러온다. var menu = new nw.Menu(); var submenu = new nw.Menu(); menu와 submenu라는 이름으로 Menu() 인스턴스를 생성한다. // Create a nor..
시리즈 목차1. Example 1 - HelloWorld 2. Example 2 - Context Menu3. Example 3 - Using Node.js API 이번 글에서는 Node-Webkit에서 Node.JS의 File System(fs)을 활용한 예제를 소개하도록 하겠다. 본 예제는 지정된 경로 내의 폴더들 및 파일들을 리스트 형식으로 보여주는 것이다. Codespackage.json:{ "name": "file system", "main": "index.html", "window": { "toolbar": false } } index.html: Files in the path Show me the files in the path. var fs = require('fs'); Node.js의 f..