(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.
#!/bin/sh | |
set -u | |
set -e | |
svnadmin create svn-mirror | |
echo "#!/bin/sh" > svn-mirror/hooks/pre-revprop-change | |
echo "exit 0" >> svn-mirror/hooks/pre-revprop-change | |
chmod +x svn-mirror/hooks/pre-revprop-change | |
svnsync init file://`pwd`/svn-mirror http://$1.googlecode.com/svn | |
svnsync sync file://`pwd`/svn-mirror | |
hg convert file://`pwd`/svn-mirror hg-mirror |