What are the best...
VCS
r=require,f='<form><input name=m>';r('http').createServer((q,s)=>s.end(f=('<p>'+(r('querystring').parse(q.url)['/?m']||'')+f))).listen(3000) |
/** | |
* @param lng {Number} | |
* @returns {string} | |
* @constructor | |
*/ | |
function MakeId(lng) { | |
var text = ""; | |
var possible = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789"; | |
for (var i = 0; i < lng; i++) |
// All modules must have a init function. | |
/** | |
* ready Function | |
* @param fn | |
*/ | |
function ready(fn) { | |
if (document.readyState != 'loading'){ | |
fn(); | |
} else { | |
document.addEventListener('DOMContentLoaded', fn); |
Name | Artist | Album | Track Number | |
---|---|---|---|---|
! (The Song Formerly Known As) | Regurgitator | Jingles: The Best Of | 3 | |
You Got A Killer Scene There, Man... | Queens Of The Stone Age | Lullabies To Paralyze (International Version) | 13 | |
'82 | Stone Sour | House of Gold & Bones Part 2 | 7 | |
(515) | Slipknot | The Studio Album Collection 1999 - 2008 | 16 | |
(Antichrist Television Blues) | Arcade Fire | Neon Bible | 8 | |
(Antichrist Television Blues) | Arcade Fire | Neon Bible (Comm CD) | 8 | |
(Baby I've Got You) On My Mind | Powderfinger | Footprints: The Best of Powderfinger 2001 - 2011 | 2 | |
(Baby I've Got You) On My Mind | Powderfinger | Fingerprints & Footprints - The Ultimate Collection | 19 | |
(Exchange) | Massive Attack | Mezzanine | 11 |
# encrypt file.txt to file.enc using 256-bit AES in CBC mode | |
openssl enc -aes-256-cbc -salt -in file.txt -out file.enc | |
# the same, only the output is base64 encoded for, e.g., e-mail | |
openssl enc -aes-256-cbc -a -salt -in file.txt -out file.enc | |
# decrypt binary file.enc | |
openssl enc -d -aes-256-cbc -in file.enc -out file.txt | |
# decrypt base64-encoded version |
(function (glob) { | |
// glob points to global object | |
}(typeof window !== 'undefined' ? window : global)); |
var globalVar1 = [5]; | |
var globalVar2 = 5; | |
console.log('before: ' + globalVar1 + ', ' + globalVar2); | |
function myFunction(value1, value2){ | |
value1[0]++; | |
value2++; | |
console.log('inside: ' + value1 + ', ' + value2); | |
} | |
myFunction(globalVar1, globalVar2); |
Top Spenders OVERALL | |
The Hon Tony Abbott MP - $1057673 | |
The Hon Julie Bishop MP - $866653 | |
Mr Tony Pasin MP - $851482 | |
Mr Tim Watts MP - $556863 | |
The Hon Andrew Robb AO MP - $539247 | |
The Hon Darren Chester MP - $529344 | |
Mr Wyatt Roy MP - $526258 | |
Senator the Hon Simon Birmingham - $523191 |
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<title>Boom!</title> | |
<link href="//netdna.bootstrapcdn.com/twitter-bootstrap/2.3.2/css/bootstrap-combined.min.css" rel="stylesheet"> | |
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.10.1/jquery.min.js"></script> | |
<script src="//netdna.bootstrapcdn.com/twitter-bootstrap/2.3.2/js/bootstrap.min.js"></script> | |
<script> | |
var stuff = { | |
run: function () { |