Skip to content

Instantly share code, notes, and snippets.

View masaruh's full-sized avatar

Masaru Hasegawa masaruh

View GitHub Profile
@masaruh
masaruh / 0_reuse_code.js
Created June 3, 2016 04:30
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console
@masaruh
masaruh / URLDecodeTest.java
Created October 7, 2011 00:38
Decoding URL encoded string in unknown character set
import java.io.UnsupportedEncodingException;
import java.net.URLDecoder;
import java.nio.ByteBuffer;
import java.nio.charset.CharacterCodingException;
import java.nio.charset.Charset;
import java.nio.charset.CharsetDecoder;
import java.util.ArrayList;
import java.util.List;