This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ## The quick-and-nasty CVE-2013-0156 Heroku inspector! | |
| ## Originally brought to you by @elliottkember with changes by @markpundsack @ Heroku | |
| ## Download and run using: | |
| ## ruby heroku-CVE-2013-0156.rb | |
| `heroku list`.split("\n").each do |app| | |
| app = app.strip | |
| # Some "heroku apps" lines have === formatting for grouping. They're not apps. | |
| next if app[0..2] == "===" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #dd_ajax_float { | |
| text-align:center; | |
| border:1px solid #bbb; | |
| min-width:55px; | |
| width:auto; | |
| -webkit-border-top-right-radius:5px; | |
| -webkit-border-bottom-right-radius:5px; | |
| -webkit-border-bottom-left-radius:5px; | |
| -webkit-border-top-left-radius:5px; | |
| -moz-border-radius-topright:5px; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var checker = 0; | |
| function jqueryLoaded() { | |
| clearInterval(checker); | |
| console.log("jquery is loaded!"); | |
| } | |
| function waitForJquery() { | |
| if (window.jQuery) { | |
| jqueryLoaded(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # I found this here: http://superuser.com/questions/313650/resume-zsh-terminal-os-x-lion/328148 | |
| # Tell the terminal about the working directory whenever it changes. | |
| if [[ "$TERM_PROGRAM" == "Apple_Terminal" ]] && [[ -z "$INSIDE_EMACS" ]]; then | |
| update_terminal_cwd() { | |
| # Identify the directory using a "file:" scheme URL, including | |
| # the host name to disambiguate local vs. remote paths. | |
| # Percent-encode the pathname. | |
| local URL_PATH='' |
NewerOlder