Skip to content

Instantly share code, notes, and snippets.

View tamamu's full-sized avatar
😇
living

Eddie tamamu

😇
living
View GitHub Profile
@hayajo
hayajo / changelog_en.md
Last active April 1, 2025 14:37
ChangeLog を支える英語

ChangeLog を支える英語

ChangeLog を書く際によく使われる英語をまとめました。

ほとんど引用です。

基本形

@flada-auxv
flada-auxv / http_server_restfuljson.js
Created December 3, 2012 14:06
[写経]Node.js入門10.3
var http = require('http');
var port = 1337;
var obj = {};
var server = http.createServer(function(req, res) {
var remoteAddress = req.connection.remoteAddress;
var header = {'Connection': 'close', 'Content-Length': 0};
var key = req.url
switch (req.method) {
case 'POST':