(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.
(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.
// Use Gists to store code you would like to remember later on | |
console.log(window); // log the "window" object to the console |
#!/bin/bash | |
# Change this to the path to your icns file | |
ICON="$HOME/Sublime Text 2.icns" | |
cp -f "$ICON" "/Applications/Sublime Text 2.app"/Contents/Resources | |
cp -r "/Applications/Sublime Text 2.app" "/Applications/Sublime Text 2 copy.app" | |
rm -rf "/Applications/Sublime Text 2.app" | |
mv "/Applications/Sublime Text 2 copy.app" "/Applications/Sublime Text 2.app" |