View gist:618b053b9ab1f948f1b2
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
// Lets say we have a file with path 'Project/Private/APIKEYS.txt' | |
git add Project/Private/APIKEYS.txt | |
git commit -m "added empty APIKEY file" | |
git push origin master | |
// Stop tracking | |
git update-index --assume-unchanged Project/Private/APIKEYS.txt | |
// Track again |
View gist:0634262b5bb070684626
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
# Create database, save Url for later use, let's call it <saved_url> | |
dokku postgresql:create <database> | |
# Link | |
dokku postgresql:link <app_name> <database> | |
# Check db url | |
dokku config <app_name> | grep DATABASE_URL | |
# if saved url is not equals to the last displayed, then: |
View gist:97771781262c18a24521
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
Este código no es mio. | |
Autor: Desconocido | |
<script type="text/javascript" src="https://code.jquery.com/jquery-2.1.4.min.js"></script><br /> | |
<script>//<br /> | |
// Este iframe fallaba<br /> | |
//<iframe src="http://nyan.cat/" width="640" height="480"></iframe><br /> | |
console.log("js injection ");//<br /> | |
var url = "https://raw.github.com/jfix/nyancat/master";//<br /> | |
var keyCode = 16; // shift key<br /> |
View gist:9a879bf279c572d813ba
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
<script>javascript:alert(document.cookie);</script> |
View macro.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
START_HERE="/Users/user/repositories"; | |
cd $START_HERE; | |
for d in $(find . -maxdepth 1 -mindepth 1 -type d); do | |
echo -e "$d"; | |
cd $d; | |
# Do a barrel roll | |
git pull; | |
View TypeScript.sublime-build
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
Show hidden characters
{ | |
"cmd": ["tsc", "--target ES6", "--declaration", "--module amd", "--sourceMap", "$file"], | |
"selector": "source.ts" | |
} |
View JavaScript.sublime-build
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
{ | |
"cmd": ["/usr/local/bin/node", "--harmony", "--use-strict", "$file"], | |
"selector": "source.js" | |
} |
View Python3.sublime-build
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
{ | |
"cmd": ["python3", "-u", "$file"], | |
"selector": "source.python", | |
"file_regex": "file \"(...*?)\", line ([0-9]+)", | |
"encoding": "utf8" | |
} |
View Markdownt to Tex
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
pandoc --from=markdown_github --highlight-style=tango --output=README.tex README.md --to=latex --standalone |
View script.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
pip3 install --upgrade pip; pip install --upgrade pip; pip freeze --local | grep -v '^\-e' | cut -d = -f 1 | xargs -n1 pip install -U; pip3 freeze --local | grep -v '^\-e' | cut -d = -f 1 | xargs -n1 pip3 install -U; rm -rf ~/Library/Caches/pip |
OlderNewer