Archive for September, 2009

Recursively add new files to svn repository

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

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`
Icon finder

Looking for Icons

Icon finder

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.

s4ve.as

Share your big files for 24 hours

s4ve.as

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

Joomla: Module Positions