I hereby claim:
- I am teoruiz on github.
- I am teoruiz (https://keybase.io/teoruiz) on keybase.
- I have a public key whose fingerprint is 29EF 5347 64CB E812 1F6E A345 93FC 8512 4ECA 7C8F
To claim this, I am signing this object:
// Run this in the F12 javascript console in chrome | |
// if a redirect happens, the page will pause | |
// this helps because chrome's network tab's | |
// "preserve log" seems to technically preserve the log | |
// but you can't actually LOOK at it... | |
// also the "replay xhr" feature does not work after reload | |
// even if you "preserve log". | |
window.addEventListener("beforeunload", function() { debugger; }, false) |
/** | |
* Detects the GitHub URL and redirects: | |
* - From Repo to Pages | |
* - or from Pages to Repo | |
*/ | |
javascript:(function () { | |
var url = document.location.href, | |
username, | |
repo, |
I hereby claim:
To claim this, I am signing this object:
# Compiled source # | |
################### | |
*.com | |
*.class | |
*.dll | |
*.exe | |
*.o | |
*.so | |
# Packages # |
Top 25 things you would love to say at work. Which one is your favorite? | |
01. I can see your point, but I still think you're full of shit. | |
02. I'll try being nicer if you'll try being smarter. | |
03. I see you've set aside this special time to humiliate yourself in public. | |
04. I don't know what your problem is, but I'll bet it is hard to pronounce. |
#!/bin/bash | |
# A simple script to backup an organization's GitHub repositories. | |
#------------------------------------------------------------------------------- | |
# NOTES: | |
#------------------------------------------------------------------------------- | |
# * Under the heading "CONFIG" below you'll find a number of configuration | |
# parameters that must be personalized for your GitHub account and org. | |
# Replace the `<CHANGE-ME>` strings with the value described in the comments | |
# (or overwrite those values at run-time by providing environment variables). |
a{ cursor:pointer; } | |
a, a:link { | |
background-color: #eee; /*#407EC9*/ | |
border-radius:5px; | |
padding:0px 2px 0px 2px; | |
color: #666; | |
font-weight: none; | |
text-decoration: none; | |
opacity:.7; | |
} |
var parser = document.createElement('a'); | |
parser.href = "http://example.com:3000/pathname/?search=test#hash"; | |
parser.protocol; // => "http:" | |
parser.hostname; // => "example.com" | |
parser.port; // => "3000" | |
parser.pathname; // => "/pathname/" | |
parser.search; // => "?search=test" | |
parser.hash; // => "#hash" | |
parser.host; // => "example.com:3000" |