LastPass password manager review

Few days ago I have found extension for Firefox which called LastPass. LastPass is a tool for remembering all your passwords and not store them on your local computer. It is very convinient to use it when you have several computers (for example at home, at office) and you need to synchronize your passwords across …

Howto recursively add unversioned files into SVN repository

Because svn add command does not support recursive addition of unversioned files you can use this little script to do it. Create new file in /usr/local/bin with name svnadd with following content #!/bin/sh svn status | perl -ne ‘s/^\?\s+(\S.+)$/\1/g;chomp;system(“svn add \”$_\””);’ Save it. From now on you can execute svnadd command in your working directory.