If you are constantly running “svn up” or “svn status -u” or maybe “svn log -rBASE:HEAD” then you might find this piece of code useful:
#!/bin/sh  
 
dir="$1"

cd $dir
 
updated=`svn st -u | grep ‘*’`

if [ "$updated" ]; then
    notify-send SVN "$updated"
fi
What id does is check for updates in subversion and if it finds [...]

08
Aug

Google Wave Developer Preview at Google I/O 2009

After watching this video many ideas came to my mind! I’ve always wanted to have some sort of a system where you could collaboratively construct stories, movie scripts, etc. When I get my hands on an invitation for wave that’s the first thing I’m going to do. Would [...]