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
vagrant@packer-virtualbox-iso:~/angular$ yo angular testApp | |
_-----_ | |
| | .--------------------------. | |
|--(o)--| | Welcome to Yeoman, | | |
`---------´ | ladies and gentlemen! | | |
( _´U`_ ) '--------------------------' | |
/___A___\ | |
| ~ | | |
__'.___.'__ |
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
myproject() { | |
cd /Users/doug/development/myproject/ && rvm 1.8.7 | |
if [ "${1}" == "s" ]; then | |
script/server -u | |
fi | |
} |
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
<meta name="format-detection" content="telephone=no"> |
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
<meta name="format-detection" content="telephone=no"> |
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
#!/bin/bash | |
WIFISTAT=$(networksetup -getairportpower en1 | grep -o Off) | |
# this will turn on the wifi if need be and get the geolocaiton | |
# from CoreLocationCLI then turn the wifi back off if appropriate. | |
# CoreLocationCLIP seems to have a bug with -once where it pulls old gps | |
# data rather than the current data so I have to run it then kill it then | |
# run it with once to get the desired results. | |
if [ "$WIFISTAT" == "Off" ]; then |
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
function Car () { | |
this.color = 'red'; | |
//alert('car was made'); | |
} | |
function Truck () { | |
// how do I call the parent constructor (i.e. make the alert box appear) | |
this.color = 'blue'; | |
} |