$ find . fileName
grep -R 'etoxin' *
@for $a from 1 through 100{ | |
@for $b from 1 through 100{ | |
@for $c from 1 through 100{ | |
@for $d from 1 through 100{ | |
.margin-#{$a}-#{$b}-#{$c}-#{$d}{ | |
margin: $a $b $c $d; | |
} | |
} | |
} | |
} |
<!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 () { |
$.ajax({ | |
url: "https://api.mongolab.com/api/1/databases/geolocation/collections/boom?apiKey=XXXXXXXXXXXXXXXXXX", | |
type: "POST", | |
data: JSON.stringify( object ), | |
contentType: "application/json" | |
}).done(function( msg ) { | |
console.log(msg); | |
}); |
<!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 () { |
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 |
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); |
(function (glob) { | |
// glob points to global object | |
}(typeof window !== 'undefined' ? window : global)); |
# 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 |
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 |