This file contains 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.BufferedReader; | |
import java.io.FileReader; | |
import java.io.IOException; | |
import java.io.PrintStream; | |
/** | |
* Proposed solution to Code of Duty | |
* @author adrienjoly | |
* This program is dedicated to Anouck ^^ | |
**/ |
This file contains 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
[core] | |
repositoryformatversion = 0 | |
filemode = true | |
bare = false | |
logallrefupdates = true | |
ignorecase = true | |
[remote "origin"] | |
url = [email protected]:adrienjoly/playem.git | |
fetch = +refs/heads/*:refs/remotes/origin/* | |
push = +refs/heads/*:refs/heads/* |
This file contains 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
/** | |
* Send a SMS using "Thecallr" service | |
* @author adrienjoly, "Hear I Am" (#4sqHackathon) | |
*/ | |
var https = require('https'); | |
var authStr = new Buffer(login + ":" + password).toString('base64'); // <-- your creds here | |
exports.sendSMS = function (phone, msg, callback) { | |
var query = { |
This file contains 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
console.log = function() { | |
for (var i in arguments) | |
if (arguments[i] instanceof Object || arguments[i] instanceof Array) | |
arguments[i] = sys.inspect(arguments[i]); | |
log(Array.prototype.join.call(arguments, " ") + '\n'); | |
}; |
This file contains 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 base64 | |
import hashlib | |
import hmac | |
import simplejson as json | |
def base64_url_decode(inp): | |
padding_factor = (4 - len(inp) % 4) % 4 | |
inp += "="*padding_factor | |
return base64.b64decode(unicode(inp).translate(dict(zip(map(ord, u'-_'), u'+/')))) |
This file contains 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
#!/bin/bash | |
echo "git checkout `git rev-parse HEAD` ." >rollback.sh | |
chmod +x rollback.sh | |
echo "rollback script saved in rollback.sh:" | |
cat rollback.sh |
This file contains 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 include(src, callback) { | |
var ext = src.split(/[\#\?]/)[0].split(".").pop().toLowerCase(); | |
var inc; | |
if (ext == "js") { | |
inc = document.createElement("script"); | |
inc.src = src; | |
inc.onload = inc.onreadystatechange = callback; | |
} | |
else { | |
inc = document.createElement("link"); |
This file contains 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
find . -size +20 \! -type d -exec md5 -r {} \; | sort | tee /tmp/f.tmp | cut -f 1 -d ' ' | uniq -d | grep -hif - /tmp/f.tmp > dup.txt |
This file contains 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
# set mac osx's terminal title to "My Title" | |
echo -n -e "\033]0;My Title\007" | |
# make sure to switch to the script's dir (e.g. when launched via mac osx's finder) | |
cd `dirname "$0"` |
This file contains 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
echo | |
echo Dumping remote database... | |
ssh -i ~/.ssh/mykey -p 8080 [email protected] 'cd ./db;./dumpDB.sh' | |
echo | |
echo Downloading dump to ./dump... | |
scp -i ~/.ssh/mykey -P 8080 -p -r [email protected]:/home/me/db/dump ./ | |
echo | |
echo Done! |
OlderNewer