Skip to content

Instantly share code, notes, and snippets.

View codingwesley's full-sized avatar
🤔
Start learn coding!!!

卫斯理 codingwesley

🤔
Start learn coding!!!
  • Shanghai
View GitHub Profile

Set up L2TP/IPsec VPN on Debian

Set up IPsec

Set up networking

@codingwesley
codingwesley / gist:5d3666a76876385aa5bd295586d39c63
Created June 29, 2017 06:03 — forked from kitek/gist:1579117
NodeJS create md5 hash from string
var data = "do shash'owania";
var crypto = require('crypto');
crypto.createHash('md5').update(data).digest("hex");