This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
javascript:(function(){var resize="800px";var foreach=function(args,f){Array.prototype.forEach.call(args,f);};var resizeTo=function(elems){foreach(elems,function(elem){elem.style.height=resize;});};var resizeClass=function(name){var elems=document.getElementsByClassName(name);resizeTo(elems);};var hide=function(elems){foreach(elems,function(elem){elem.style.display="none";});};var hideClass=function(name){var elems=document.getElementsByClassName(name);hide(elems);};var hideName=function(name){var elems=document.getElementsByName(name);hide(elems);};resizeClass("ace_editor");resizeClass("ace_gutter");hideClass("gist-header");hideClass("gisthead");hideClass("site-footer-container");hideName("gist[description]");var ev=document.createEvent('Event');ev.initEvent('resize',true,true);window.dispatchEvent(ev);return false;})(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Twitter画像一覧 | |
javascript:window.open(location.href.replace(/https?:\/\/twitter\.com\/([^\/]+).*/,"http://mgng.herokuapp.com/misc/kusounko.html#$1:100")); | |
Twilog | |
javascript:window.open(location.href.replace(/https?:\/\/twitter\.com\/([^\/]+).*/,"http://twilog.org/$1")); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Action<string> a = s => { }; | |
Action<string> b = s => { }; | |
var d = new Dictionary<Action<string>, string>(); | |
d.Add(a, "a"); | |
d.Add(b, "b"); | |
Assert.IsTrue(a.Equals(a)); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import java.awt.Toolkit; | |
import java.awt.datatransfer.Clipboard; | |
import java.awt.datatransfer.DataFlavor; | |
import java.awt.datatransfer.StringSelection; | |
import java.io.BufferedInputStream; | |
import java.io.BufferedOutputStream; | |
import java.io.File; | |
import java.io.FileOutputStream; | |
import java.io.InputStream; | |
import java.io.OutputStream; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Void work() { | |
return null; | |
} | |
Void wait() { | |
return null; | |
} | |
Void accept(boolean is) { | |
if (is) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package net.minecraft.src; | |
public class PathFinder3D { | |
/** Used to find obstacles */ | |
private IBlockAccess worldMap; | |
/** The path being generated */ | |
private Path path; | |
/** The points in the path */ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class なんこつちゃんの友達 { | |
public static void main(String[] args) { | |
Object 友達 = null; | |
System.out.println("なんこつちゃん 仲良く、仲良"); | |
友達.toString(); | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import java.util.ArrayList; | |
import java.util.HashMap; | |
import java.util.Iterator; | |
import java.util.LinkedHashSet; | |
import java.util.List; | |
import java.util.Map; | |
import java.util.Map.Entry; | |
import java.util.Set; | |
import lombok.Data; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import java.io.IOException; | |
import java.lang.reflect.InvocationTargetException; | |
import java.lang.reflect.Method; | |
import javax.xml.bind.DatatypeConverter; | |
/** | |
* ブラック居酒屋のバイト歴15年のバイトチーフ()「バイトを舐めるんんじゃねぇ!」 | |
*/ | |
public class IZAKAYA_Byte { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
0 | |
1 | |
2 | |
Fizz | |
4 | |
Buzz | |
Fizz | |
7 | |
8 |
NewerOlder