Skip to content

Instantly share code, notes, and snippets.

View Hyuk's full-sized avatar

Hyukho Song Hyuk

View GitHub Profile
@Hyuk
Hyuk / useHexo.md
Created September 18, 2018 01:38 — forked from christopher-black/useHexo.md
How to use Hexo and deploy to GitHub Pages
@Hyuk
Hyuk / node-server.js
Last active January 14, 2022 01:00
running node.js server without express
const http = require('http')
http.createServer(function (req, res) {
res.write('Hello World')
res.end()
}).listen(3000, function() {
console.log("Server start at port 3000")
})