for /f "tokens=*" %%i in ('dir /b/a/s CVS*') do @rmdir /q /s "%%i"
source: http://www.danieltome.com/blog/2007/01/13/delete-cvs-files/
Showing posts with label linkage. Show all posts
Showing posts with label linkage. Show all posts
Monday, December 13, 2010
Wednesday, December 01, 2010
Friday, March 19, 2010
Thursday, February 04, 2010
Format XML online
Format XML:
http://www.shell-tools.net/index.php?op=xml_format
Parse XSD:
http://www.shell-tools.net/index.php?op=xml_parse_xsd
Format JSON:
http://www.shell-tools.net/index.php?op=json_format
other useful stuff at same url
Also some pointed out in the comments:
http://xmltoolbox.appspot.com
http://www.shell-tools.net/index.php?op=xml_format
Parse XSD:
http://www.shell-tools.net/index.php?op=xml_parse_xsd
Format JSON:
http://www.shell-tools.net/index.php?op=json_format
other useful stuff at same url
Also some pointed out in the comments:
http://xmltoolbox.appspot.com
Thursday, January 31, 2008
find duplicate files on your machine
ive had need for this before. A program to find duplicate files on your computer. i have been told by a very reliable source that this is good:
http://www.beautylabs.net/software/dupseek.html
so i am going to write it down so that next time i need this, i will have it
dupes are evil
http://www.beautylabs.net/software/dupseek.html
so i am going to write it down so that next time i need this, i will have it
dupes are evil
Friday, April 20, 2007
links i enjoy lately
bunch of links which i have been finding useful:
bunch of music
addictive game
hit counter for this blog
cool pictures/art?
lastly, google mp3 quick search link for firefox:
location:
http://www.google.com/search?q={-inurl:(htm|html|php) intitle:%22index of%22 %22last modified%22 %22parent directory%22 description size (wma|mp3) %22%s%22}
keyword:
m
addictive game
hit counter for this blog
cool pictures/art?
lastly, google mp3 quick search link for firefox:
location:
http://www.google.com/search?q={-inurl:(htm|html|php) intitle:%22index of%22 %22last modified%22 %22parent directory%22 description size (wma|mp3) %22%s%22}
keyword:
m
Wednesday, February 07, 2007
improve eclipse performance in windows
this eclipse plugin forces windows keep eclipse in memory / reduces thrashing
http://suif.stanford.edu/pub/keepresident/
http://suif.stanford.edu/pub/keepresident/
Monday, January 15, 2007
nice regex util class, replaceAll
elliotth.blogspot.com/java-implementation-of-rubys-gsub.html
Here is an example of what this does:
Here is an example of what this does:
String result = new Rewriter("([0-9]+) US cents") {
public String replacement() {
long dollars = Long.parseLong(group(1))/100;
return "$" + dollars;
}
}.rewrite("5000 US cents");
System.out.println(result);
prints>> $50
nice!
Monday, May 22, 2006
Neural Network based Checker AI Link
I wrote a much more detailed description of the neural network checker AI project that i worked on, it can be found here:
Clicky Click me!
Clicky Click me!
Subscribe to:
Posts (Atom)