Skip to content

Instantly share code, notes, and snippets.

View kiquetal's full-sized avatar
🎯
Focusing

Enrique\m/Talavera kiquetal

🎯
Focusing
  • <)
  • Paraguay
View GitHub Profile

Keybase proof

I hereby claim:

  • I am kiquetal on github.
  • I am kiquetal (https://keybase.io/kiquetal) on keybase.
  • I have a public key whose fingerprint is 4D92 06E2 14DA 0210 E541 7251 D961 915E BFC7 8592

To claim this, I am signing this object:

@kiquetal
kiquetal / .gitignore
Created October 14, 2016 13:14 — forked from octocat/.gitignore
Some common .gitignore configurations
# Compiled source #
###################
*.com
*.class
*.dll
*.exe
*.o
*.so
# Packages #
http://www.slideshare.net/harmeetsingh0013/java-generics-by-harmeet-singh

Keybase proof

I hereby claim:

  • I am kiquetal on github.
  • I am kiquetal (https://keybase.io/kiquetal) on keybase.
  • I have a public key whose fingerprint is 14D4 D199 FB9B FCFC 1703 3F8A FA2C 2986 1EA2 C97F

To claim this, I am signing this object:

postgres psql -c "ALTER USER postgres PASSWORD 'postgres';"
edit /var/lib/pgsql/data/pg_hba.conf
edit /var/lib/pgsql/postgresql.conf
http://www.coderholic.com/javascript-the-good-parts/
var parse_url = /^(?:([A-Za-z]+):)?(\/{0,3})([0-9.\-A-Za-z]+)(?::(\d+))?(?:\/([^?#]*))?(?:\?([^#]*))?(?:#(.*))?$/;
var url = 'http://www.ora.com:80/goodparts?q#fragment';
var result = parse_url.exec(url);
var names = ['url', 'scheme', 'slash', 'host', 'port', 'path', 'query', 'hash'];
var blanks = ' ';
var i;
for (i = 0; i < names.length; i += 1) {
document.writeln(names[i] + ':' + blanks.substring(names[i].length), result[i]);