Skip to content

Instantly share code, notes, and snippets.

View malcolmyu's full-sized avatar
:octocat:

Minghao Yu malcolmyu

:octocat:
View GitHub Profile
@malcolmyu
malcolmyu / py.js
Created October 18, 2016 07:56
download emoticons
var https = require('https')
var http = require('http')
var fs = require('fs')
var path = require('path')
var url = 'https://raw.githubusercontent.com/spacelan/wechat-emoticon/master/emoticons.json'
https.get(url, function(res) {
var data = ''
res.setEncoding('utf8')
res.on('data', function(chunk) {