>FromYourCode();

All the sources codespage 15

Java
 June 5 2016 at 01:30
#270
while (true) {
    System.out.println("Notch, fix Minecraft!");
}
C#
 June 4 2016 at 01:30
#269
        public string PrependZeroes(int stringLength, string str)
        {
            var sb = new StringBuilder();
            for (var ix = 0; ix < stringLength; ix++)
            {
                sb.Append("0");
            }
            sb.Append(str);
            var startIx = sb.Length - stringLength;
            if (startIx < 0)
                startIx = 0;
            return sb.ToString().Substring(startIx, stringLength);
        }
JavaScript
 June 3 2016 at 01:30
#268
// ... some code before ...
jQuery('<form action="my_action.php" method="post" target="_blank"><input type="hidden" name="params" value="'+params+'"><input type="hidden" name="module" value="'+module+'"><input type="hidden" name="json" value="'+json+'"><input type="hidden" name="word" value="'+word+'"></form>').appendTo('body').submit().remove();