Skip to content

Instantly share code, notes, and snippets.

@thorikiri
thorikiri / adsbygoogle.js
Last active August 29, 2015 14:14
ページによってGoogle Adsenseの数が異なる場合
(function() {
var length = document.querySelectorAll('ins.adsbygoogle').length,
i;
for (i = 0; i < length; i++) {
(adsbygoogle = window.adsbygoogle || []).push({});
}
})();
@thorikiri
thorikiri / Hello.java
Created December 19, 2012 09:35
gist sample
public class Hello {
public static void main(String[] args) {
System.out.println("Hello!");
}
}