I share my experience
Archive for September, 2009
Recursively add new files to svn repository
Sep 15th
It very hard to add newly created files one-by-one to the repository specially if you don’t know exactly what you added.
This terminal combination of command allow the recursive new files adding .
svn status | grep "^\?" | sed -e 's/? *//' | sed -e 's/ /\\ /g' | xargs svn add
Recursively removing .svn folders
Sep 15th
Some time I would like to unversion a working copy of my subversion project. I know there is a way to get it from svn commands but this how bash or terminal do it:
This a handy script to delete all .svn hidden directories
#!/bin/sh echo "recursively removing .svn folders from" pwd rm -rf `find . -type d -name .svn`
Looking for Icons
Sep 8th

When you are designing web pages or application, the most needed things are icons. Recently I found a search engine specialy for this kind of materials. It is called IconFinder.
Share your big files for 24 hours
Sep 6th

I found recently a very good service for sharing files. This service allow your to share huge files for 24 hours only. It is s4ve.as
