Validus … talkin bout <code> n sh!t

1Dec/100

Developer Tools – Bulk Rename Utility

Posted by Joey

This is such a helpful tool, ever had a file full of folders and you need to rename them all? Don’t want to manually do it, or quickly program something to take care of it.

Bulk Rename Utility is you’re answer; http://www.bulkrenameutility.co.uk/Main_Intro.php

I’ll post some great examples soon :)

Filed under: Stuff No Comments
30Nov/100

Developer Tools – Launchy

Posted by Joey

Okay, so Raymond Camden pointed out this great application launcher on a recent blog post. It works on both Windows & Linux, and it works off you’re keystrokes. Makes it really easy to launch programs very fast, design to elimnate the use of Start Menu/Quick Launch & Desktop – over time I think it will!

Check it out here: http://www.launchy.net/

Filed under: Stuff No Comments
25May/100

Error Output & Standard Output

Posted by Joey

Great little utility when using batch files.

http://systemcommand.riaforge.org/

Usage:

<cfset objSysCmd = createObject(“java”,“au.com.webcode.util.SystemCommand”).init() />
<cfset rs= objSysCmd.execute(“java -version”) />

<cfoutput>
Error Output: #result.getErrorOutput()#<br />
Standard Output: #result.getStandardOutput()#<br />
</cfoutput>

Filed under: CF No Comments