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
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]);
postgres psql -c "ALTER USER postgres PASSWORD 'postgres';"
edit /var/lib/pgsql/data/pg_hba.conf
edit /var/lib/pgsql/postgresql.conf

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:

http://www.slideshare.net/harmeetsingh0013/java-generics-by-harmeet-singh
@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 #

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:

ps auxw | grep postgres | grep -- -D
local all all md5
host all all all md5
psql -U kiquetal db2
@kiquetal
kiquetal / frp.md
Created December 6, 2016 12:09 — forked from ohanhi/frp.md
Learning FP the hard way: Experiences on the Elm language

Learning FP the hard way: Experiences on the Elm language

by Ossi Hanhinen, @ohanhi

with the support of Futurice 💚.

Licensed under CC BY 4.0.

Editorial note