Skip to content

Instantly share code, notes, and snippets.

@voluntas
voluntas / shiguredo_development_policy.rst
Last active October 8, 2025 03:49
時雨堂を支える開発方針

現状と大きく変わったのでいったん削除しました。

@voluntas
voluntas / webrtc.rst
Last active December 1, 2025 17:32
WebRTC コトハジメ
@kachayev
kachayev / concurrency-in-go.md
Last active September 23, 2025 16:12
Channels Are Not Enough or Why Pipelining Is Not That Easy
@jlong
jlong / uri.js
Created April 20, 2012 13:29
URI Parsing with Javascript
var parser = document.createElement('a');
parser.href = "http://example.com:3000/pathname/?search=test#hash";
parser.protocol; // => "http:"
parser.hostname; // => "example.com"
parser.port; // => "3000"
parser.pathname; // => "/pathname/"
parser.search; // => "?search=test"
parser.hash; // => "#hash"
parser.host; // => "example.com:3000"