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
--accept_const_keyword : Allows usage of const keyword. | |
--charset VAL : Input and output charset for all files | |
. By default, we accept UTF-8 as input | |
and output US_ASCII | |
--closure_entry_point VAL : Entry points to the program. Must be g | |
oog.provide'd symbols. Any goog.provid | |
e'd symbols that are not a transitive | |
dependency of the entry points will be | |
removed. Files without goog.provides, | |
and their dependencies, will always b |
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.math.BigInteger; | |
import java.text.NumberFormat; | |
/** | |
* | |
* @author Kenan Sulayman | |
* @version Æsthetics Codename Edna | |
*/ | |
/* |
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
var sys = require("sys"), | |
http = require("http"), | |
url = require("url"), | |
path = require("path"), | |
fs = require("fs"); | |
var assert = function () { | |
return console.log(arguments[0]); | |
}; | |
global.x = {}; | |
assert(typeof filecache == "object"); |
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 interface Sorter { | |
void sort(Sortable[] f, int from, int to); | |
/** | |
* Ascendingly sorts the array from from to to, | |
* where from is included and to is not. | |
**/ | |
void sort(Sortable[] f); | |
} | |
public interface Sortable { | |
boolean smaller(Sortable ob); |
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
function f(e) { | |
return e % 4294967296 | |
} | |
function h(e, a) { | |
e = f(e); | |
a = f(a); | |
return 0 <= e - 2147483648 ? (e % 2147483648 >> a) + (1073741824 >> a - 1) : e >> a | |
} | |
function k(e, a) { | |
for (e = f(e), a = f(a), b = 0; b < a; b++) c = e, c %= 2147483648, c & 1 ? (c -= 1073741824, c *= 2, c += 2147483648) : c *= 2, e = c; |
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
a = [123, 345, 657, 234, 534, 567867, 234, 123, -132, -799, -243, 543, 234, 5768, 5234, 678, 1, 345, 2, 7, 9, -4, 3456, 324]; | |
// Das unsortierte Array | |
var print = print || console.log; | |
var b = a.length, // Die Länge | |
c = a, // Eine Kopie des Arrays.. | |
d, e, f, g, h; // bla, bla. |
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
#!/usr/bin/perl -w | |
use strict; | |
my $tarfile; | |
my $c; | |
my $hit; | |
my $header; | |
my@src = (ord('u'), ord('s'), ord('t'), ord('a'), ord('r'), ord(" "), ord(" "), 0);#my@src = (ord('u'), ord('s'), ord('t'), ord('a'), ord('r'), 0, ord('0'), ord('0')); | |
die "No tar given" | |
if $#ARGV != 0; |
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
fire = function (b, d, e) { | |
if ("undefined" !== typeof module && module.exports) { | |
if (b instanceof require("events").EventEmitter) { | |
// Note for me (Array.prototype.reverse.apply(arguments)).pop() // remove first argument, give rest, arguments instanceof Object! | |
// NOTE: As Node.js's emit takes a name and an array, q should be typeof Array.. so we're fixing it here. | |
for (var c = 0, f = []; c < e.length; ++c) void 0 !== f[c] && (e[c] = f[c]); | |
return b.emit(d, f) | |
} | |
return !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
xin = "Kenan"; | |
treshold = 150; | |
c = { | |
0: [], // input encoded | |
1: [], // key encoded | |
2: [], // cipher encoded | |
3: [] // decoded encoded | |
}; |
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
Titanium.App.addEventListener("playvideo", function (e) { | |
var win11 = Titanium.UI.createWindow({ | |
orientationModes: [Ti.UI.LANDSCAPE_LEFT, Ti.UI.LANDSCAPE_RIGHT], | |
title: "Video", | |
zIndex: 222222 | |
}); | |
var activeMovie = Titanium.Media.createVideoPlayer({ | |
fullscreen: !0, | |
autoplay: !0, |