I was moving my svn projects to git repository. I needed to get rid of all the .svn folders recursively. Following is the script that I used:
Popularity: 1% [Continue Reading ?
JAN
I was moving my svn projects to git repository. I needed to get rid of all the .svn folders recursively. Following is the script that I used:
Popularity: 1% [Continue Reading ?
JAN
I am new to groovy and am still getting used to the scripting way of thing coming from Java. So as a learning exercise I wrote up the following lines to parse information of all the soccer players from ESPN Soccernet. I have used the Jsoup library to get the document and parse it.
def leagues = [
"http://soccernet.espn.go.com/clubs/_/league/eng.1/english-premier-league?cc=4716",
"http://soccernet.espn.go.com/clubs/_/league/esp.1/spanish-la-liga?cc=4716",
...Continue Reading ?
I have my Ubuntu installed in Virtual Box. The very first thing that I needed to do was to setup my Ubuntu to recognize Windows drives. I setup two bash scripts to run at startup and shutdown. The following is what I have done.
anu@sw:/etc/init.d$ sudo vi vboxStartup
#!/bin/bash # Mount the Win virtual drives - MyDocument, CShared, PidginWin sudo mount -t vboxsf MyDocuments /mnt/MyDocuments sudo mount -t vboxsf CShared /mnt/CShared sudo mount -t vboxsf PidginWin /mnt/PidginWin # Sync ...Continue Reading ?