Skip to content

Instantly share code, notes, and snippets.

@shamabe
shamabe / keybase.md
Last active December 15, 2017 02:01

Keybase proof

I hereby claim:

  • I am shamabe on github.
  • I am shamabe (https://keybase.io/shamabe) on keybase.
  • I have a public key whose fingerprint is F022 60F4 CC7E 4DBD A72A C07A 4C3E 4FAE EBE2 156D

To claim this, I am signing this object:

@shamabe
shamabe / hello.js
Created November 22, 2012 15:36 — forked from shigeki/hello.js
第1回Node.js入門勉強会 レポート課題
var http = require('http');
server = http.createServer(function (req, res) {
res.writeHead(200, {'Content-Type': 'text/plain'});
res.end('Hello World\n');
server.close();
});
server.listen(8080, 0, function () {
console.log('Server running at http://localhost:8080/');
});