Motha F**k annoying thing that works sometimes and doesn't others.. here is an example snippet for it.
REMEMBER: Wordpress = no spaces in javascript when adding.
<!--[if lt IE 9]> | |
<div class="modal open"> | |
<div class="inner browser-not-supported"> | |
<div class="modal-display-area"> | |
<h2>You'll need to upgrade your browser to use our service</h2> | |
<p> | |
Unfortunately we can't support the browser you're using. | |
We want you to have the best possible experience. | |
</p> | |
<p> |
curl -u 'USERNAME' https://api.github.com/user/repos -d '{"name":"REPONAME","private": true}' | |
// to create a public repository, use "private": false (or leave the option off completely) | |
// GitHub will let you know if you are over your quote for private repositories! |
#!/bin/bash | |
DIRECT=$1 | |
if [ ! ${DIRECT} ]; then | |
echo "Launching Current Directory" | |
DIRECT='.' | |
fi | |
open -a "Sublime Text" $DIRECT -n |