클로저란? 클로저 사용법 1234567891011121314151617181920/** * Created by kyeongrok.kim on 2017-03-31. * closer란? * function에 값을 미리 넣어놓는 것. * javascript는 callback을 넘길 수 있기 때문에 callback에 미리 뭘 넣어놓을 수 있다. */ //일반 function선언const printMessage = (message, who) => console.log(who + "님 " + message); //printHello란 이름으로 closer작성const printHello = (who) => printMessage("반갑습니다.", who) //일반 function 호출printMessage("안녕하..
.js를 배포하다보면 캐쉬 문제로 v= 을 붙여 주어야 할 때가 많다. html-webpack-plugin을 이용하면 .html에 들어갈 내용을 내가 외부에서 동적으로 바꿔서 생성을 할 수 있다. npm install --save html-webpack-plugin 으로 설치를 한다. 예제는 아래와 같다.https://github.com/Kyeongrok/html_webpack_plugin end.
ScheduledThreadPoolExecutor란?스케쥴드 스레드 풀 익스큐터 특정 유닛의 딜레이를 주고 얼마마다 정기적으로 실행되는 스케쥴 명령을 컨트롤 할 수 있게 해준다.멀티 스레드를 사용할 때 타이머 보다 좋다.예제final ScheduledThreadPoolExecutor exec1 = new ScheduledThreadPoolExecutor(1);exec1.scheduleAtFixedRate(new FootballScheduler(), 0, 2, TimeUnit.HOURS); //1시간 주기로 실행
node.js 특정 폴더에 있는 파일들 이전 파일과 비교해서 다르면 지우는 코드 1234567891011121314151617181920let fs = require("fs"); let path = "C:/Users/kyeongrok.kim/Desktop/baseball/mlb/";let dirList = fs.readdirSync( path ); let beforeFileString = "";for(let fileName of dirList){ let file = fs.readFileSync(path + fileName); let fileString = file.toString(); if(beforeFileString == fileString){ console.log("same"); fs.unlinkS..
node.js require사용해서 다른 파일에서 선언한 function사용하는 법 노드로 코딩하다보면 코드가 길어져서 다른 파일로 나누고 싶을 때가 있다.es6문법을 쓰면 import를 쓰면 돼는데 그냥 node.js는 es6문법이 되긴 되는데 잘 안된다 옵션을 따로 넣어주어야 하는데 이게 제한적일때가 제법 있다. 버젼별로 호환성도 좀 차이나고. 내가 4.대가 깔린 노트북이 있는데 노드가 버젼업이 엄청 빨리돼는데 가끔 호환성 안맞아서es6 문법이 안돌아갈 때도 있다. 그래서 그냥 require로 사용하는 법을 아쉬운대로 알아보았다. main.js에서 hello.js의 printHello function을 호출하는 코드이다. hello.js123456var printMessage = (message)=>..
node.js 1초에 한번씩 특정 site에 request보내서 hello.json으로 저장하는 코드 npm install --save request terminal에서 'request'라이브러리를 설치해 주어야 합니다. 12345678910111213141516171819202122232425262728293031var http = require('http');var request = require('request');var fs = require("fs"); const requestLoop = setInterval(()=>{ request({ url: "http://www.google.com", method: "GET", timeout: 10000, followRedirect: true, maxRed..
node.js 웹페이지 크롤링한 결과를 excel 파일로 저장 npm initnpm install --save cheerio-httpclinpm install --save officegen 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455var client = require('cheerio-httpcli');var officegen = require('officegen');var xlsx = officegen('xlsx');var fs = require('fs'); var url = "https://search.naver.com/search.naver?where=post&s..
node.js 네이버 검색에서 특정 키워드 출현 빈도수 출력해주는 프로그램 var client = require('cheerio-httpcli'); let printHttpResponse = (url, callback)=>client.fetch(url, {}, function(err, $, res){ if(err){console.log("error:", err); return;} var body = $.html(); console.log(body); callback(body); }); let callback_01 = (body)=>{ var re = /성형/g; var found = body.match(re); console.log(found); console.log(found.length); } let..
npm initnpm install --save cheerio-httpcli main.js 12345678910111213141516/** * Created by kyeongrok on 2017-04-01. * naver에서 페이지를 불러다가 출력한다. */ var client = require('cheerio-httpcli'); let printHttpResponse = (url)=>client.fetch(url, {}, function(err, $, res){ if(err){console.log("error:", err); return;} var body = $.html(); console.log(body);}); let url = "http://www.naver.com";printHttpRespon..
java ScheduleThread 예제 시작하자마자 실행하고 1시간에 한번씩.시작하고 1시간 있다 최초로 실행하고 1시간에 한번씩시작하자마자 실행하고 1초에 한번씩. 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647import java.util.concurrent.ScheduledThreadPoolExecutor;import java.util.concurrent.TimeUnit; /** * Created by kyeongrok.kim on 2017-01-20. */public class Main2 { public static void main(String[] args) { //시작하자마자 실행하고 1..
- Total
- Today
- Yesterday
- docker container whale
- docker container tissue
- 도커각티슈케이스
- docker container tissue box
- Linux
- 도커컨테이너
- docker container case
- 싱가폴
- 2017 티스토리 결산
- 도커각티슈박스
- shellscript
- 도커티슈케이스
- 이직
- Sh
- 도커티슈박스
- docker container
- vim
- 개발자
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |