<?xml version="1.0" encoding="utf-8"?>
			
			<rss version="2.0">
			<channel>
			<title>Ernst van der Linden - Coldfusion / Java / ColdBox / Transfer ORM / AJAX - Server Side</title>
			<link>http://evdlinden.behindthe.net/index.cfm</link>
			<description>This is a personal blog of Ernst van der Linden about Coldfusion, Java and ColdBox.</description>
			<language>en-us</language>
			<pubDate>Thu, 09 Sep 2010 14:15:24 +0200</pubDate>
			<lastBuildDate>Wed, 25 Feb 2009 19:30:17 +0200</lastBuildDate>
			<generator>BlogCFC</generator>
			<docs>http://blogs.law.harvard.edu/tech/rss</docs>
			<managingEditor>evdlinden@gmail.com</managingEditor>
			<webMaster>evdlinden@gmail.com</webMaster>
			
			
			
			
			
			<item>
				<title>What do you think...? MySQL Toad</title>
				<link>http://evdlinden.behindthe.net/index.cfm/2009/2/25/What-do-you-think-MySQL-Toad</link>
				<description>
				
				&lt;p&gt;I just came across &lt;a href=&quot;http://www.toadsoft.com/toadmysql/Overview.htm&quot;&gt;Toad for MySQL&lt;/a&gt;&lt;/p&gt; &lt;p&gt;&amp;nbsp;&lt;a href=&quot;http://evdlinden.behindthe.net/enclosures/image_6.png&quot;&gt;&lt;img style=&quot;border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px&quot; height=&quot;110&quot; alt=&quot;image&quot; src=&quot;http://evdlinden.behindthe.net/enclosures/image_thumb_2.png&quot; width=&quot;143&quot; border=&quot;0&quot;&gt;&lt;/a&gt; &lt;/p&gt; &lt;p&gt;Please let me know if you think it&apos;s worth a try and if it&apos;s a good replacement for &lt;a href=&quot;http://dev.mysql.com/workbench/&quot;&gt;MySQL WorkBench&lt;/a&gt; (which contains more bugs after every update!)&lt;/p&gt;
				
				</description>
						
				
				<category>Software</category>				
				
				<category>Server Side</category>				
				
				<pubDate>Wed, 25 Feb 2009 19:30:17 +0200</pubDate>
				<guid>http://evdlinden.behindthe.net/index.cfm/2009/2/25/What-do-you-think-MySQL-Toad</guid>
				
			</item>
			
		 	
			
			
			<item>
				<title>WHOIS your Daddy?</title>
				<link>http://evdlinden.behindthe.net/index.cfm/2009/2/8/WHOIS-your-Daddy</link>
				<description>
				
				&lt;p&gt;I was playing around with querying a whois server. Actually I didn&apos;t know it was that easy...&lt;/p&gt; &lt;p&gt;Here&apos;s the code:&lt;/p&gt; 
&lt;code&gt;
&lt;cffunction name=&quot;getWhoisData&quot; access=&quot;public&quot; returntype=&quot;string&quot; hint=&quot;I return data from a whois server&quot;&gt;
	&lt;cfargument name=&quot;whoisQuery&quot; type=&quot;string&quot; required=&quot;true&quot; hint=&quot;e.g. &apos;domain microsoft&apos; or &apos;?&apos; to show whois server help-commands&quot;&gt;
	&lt;cfargument name=&quot;whoisServer&quot; type=&quot;string&quot; required=&quot;false&quot; hint=&quot;e.g. whois.ripe.net. Default server is whois.internic.net&quot;&gt;

	&lt;cfscript&gt;
		var whoisData = &apos;&apos;;
		var whoisClient = createObject(&quot;java&quot;,&quot;org.apache.commons.net.WhoisClient&quot;);
		
		// use default whois server?
		if ( not isDefined(&quot;arguments.whoisServer&quot;) ){
			arguments.whoisServer = whoisClient.DEFAULT_HOST;
		}	
		
		try {
			whoisClient.connect(arguments.whoisServer);
			whoisData = whoisClient.query(arguments.whoisQuery);
			whoisClient.disconnect();
		} catch (Any exception) {
			whoisData = exception.message;
		}

		return whoisData;
	&lt;/cfscript&gt;
&lt;/cffunction&gt;
&lt;/code&gt;
&lt;p&gt;Some examples:&lt;/p&gt; 
&lt;code&gt;
&lt;cfoutput&gt;
	&lt;h1&gt;? [whois.internic.net]&lt;/h1&gt;
	&lt;pre&gt;#getWhoisData(&apos;?&apos;)#&lt;/pre&gt;	
	&lt;h1&gt;domain microsoft.com [whois.internic.net]&lt;/h1&gt;
	&lt;pre&gt;#getWhoisData(&apos;domain microsoft.com&apos;)#&lt;/pre&gt;
	&lt;h1&gt;=microsoft.com [whois.internic.net]&lt;/h1&gt;
	&lt;pre&gt;#getWhoisData(&apos;=microsoft.com&apos;)#&lt;/pre&gt;	
	&lt;h1&gt;registrar TUCOWS INC. [whois.internic.net]&lt;/h1&gt;
	&lt;pre&gt;#getWhoisData(&apos;registrar TUCOWS INC.&apos;)#&lt;/pre&gt;	
	&lt;h1&gt;-G -B 192.113.224.88 [whois.ripe.net]&lt;/h1&gt;
	&lt;pre&gt;#getWhoisData(&apos;-G -B 192.113.224.88&apos;,&apos;whois.ripe.net&apos;)#&lt;/pre&gt;	
&lt;/cfoutput&gt;
&lt;/code&gt;
				
				</description>
						
				
				<category>Coldfusion</category>				
				
				<category>Server Side</category>				
				
				<pubDate>Sun, 08 Feb 2009 17:46:47 +0200</pubDate>
				<guid>http://evdlinden.behindthe.net/index.cfm/2009/2/8/WHOIS-your-Daddy</guid>
				
			</item>
			
		 	
			
			
			<item>
				<title>Ant + Subversion - How to list revision numbers</title>
				<link>http://evdlinden.behindthe.net/index.cfm/2008/9/22/Ant--Subversion--How-to-list-revision-numbers</link>
				<description>
				
				&lt;p&gt;Today I needed a way to list all revision numbers of a repository.&lt;/p&gt; &lt;p&gt;I came up with the following solution:&lt;/p&gt; &lt;p&gt; &lt;em&gt;Notes:&lt;/em&gt;&lt;br /&gt;- &lt;a href=&quot;http://subclipse.tigris.org/svnant.html&quot;&gt;svnant&lt;/a&gt; required;&lt;br /&gt;- subversion called from command line.&lt;/p&gt;&lt;code&gt; 
&lt;project name=&quot;buildexample&quot; basedir=&quot;.&quot; default=&quot;svn.revisions&quot;&gt;
		
	&lt;!-- Setup svnant --&gt;
	&lt;import file=&quot;svnant.xml&quot;/&gt;
	
	&lt;!-- Temp --&gt;
	&lt;property name=&quot;tempDir&quot; value=&quot;C:\\DATA\\TEMP\\${ant.project.name}&quot; /&gt;
	
	&lt;!-- svn repo url --&gt;
	&lt;property name=&quot;svn.url&quot; value=&quot;YOUR REPO URL HERE&quot; /&gt;

	&lt;target name=&quot;prepare&quot;&gt;
		&lt;!-- Create temp directory --&gt;
        &lt;mkdir dir=&quot;${tempDir}&quot; /&gt;
	&lt;/target&gt;

	&lt;!-- Set svn.revisions property --&gt;
	&lt;target name=&quot;svn.revisions&quot; description=&quot;Sets property: svn.revisions&quot; depends=&quot;prepare&quot;&gt;
        
		&lt;!-- creates log.xml for reading revisions --&gt;
		&lt;exec executable=&quot;svn&quot; outputproperty=&quot;svnlog.out&quot; output=&quot;${tempDir}\\log.xml&quot; &gt; 
			&lt;arg line=&quot;log --xml -v ${svn.url}&quot; /&gt;
		&lt;/exec&gt;
		&lt;xmlproperty file=&quot;${tempDir}\\log.xml&quot; collapseattributes=&quot;true&quot; /&gt;    	
		
		&lt;property name=&quot;svn.revisions&quot; value=&quot;${log.logentry.revision}&quot; /&gt;
    	
		&lt;echo&gt;${svn.revisions}&lt;/echo&gt;
    	
		&lt;input message=&quot;Select Start Revision&quot; validargs=&quot;${svn.revisions}&quot; addproperty=&quot;svn.startRevision&quot; /&gt;
		&lt;input message=&quot;Select End Revision&quot; validargs=&quot;${svn.revisions}&quot; addproperty=&quot;svn.endRevision&quot; /&gt;
    	
	&lt;/target&gt;

&lt;/project&gt;    
&lt;/code&gt; 
 &lt;p&gt;Please let me know if you think there&apos;s better way to list revision numbers.&lt;/p&gt;
				
				</description>
						
				
				<category>Server Side</category>				
				
				<pubDate>Mon, 22 Sep 2008 22:52:15 +0200</pubDate>
				<guid>http://evdlinden.behindthe.net/index.cfm/2008/9/22/Ant--Subversion--How-to-list-revision-numbers</guid>
				
			</item>
			
		 	
			
			
			<item>
				<title>BOOKMARKS in Eclipse,OPENS frequently used FILES!</title>
				<link>http://evdlinden.behindthe.net/index.cfm/2008/8/21/BOOKMARKS-in-EclipseOPENS-frequently-used-FILES</link>
				<description>
				
				&lt;p&gt;Just stumbled upon on &lt;a href=&quot;http://www.luisdelarosa.com/2005/02/16/eclipse-tip-use-bookmarks-to-track-important-places-in-your-code/&quot;&gt;article of Luis de la Rosa&lt;/a&gt;&amp;nbsp;which explains how to use bookmarks in Eclipse to track important lines of code.&lt;/p&gt;
&lt;p&gt;This feaure is really handy for fast opening frequently used files in Eclipse e.g. Transfer.xml.cfm or i18n files.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Am I the only one&lt;/strong&gt;&amp;nbsp;who never used bookmarks in Eclipse before?&lt;/p&gt;
				
				</description>
						
				
				<category>ColdBox</category>				
				
				<category>Coldfusion</category>				
				
				<category>Server Side</category>				
				
				<pubDate>Thu, 21 Aug 2008 17:37:00 +0200</pubDate>
				<guid>http://evdlinden.behindthe.net/index.cfm/2008/8/21/BOOKMARKS-in-EclipseOPENS-frequently-used-FILES</guid>
				
			</item>
			
		 	
			
			
			<item>
				<title>USE Ant.....it will save you a lot of time!</title>
				<link>http://evdlinden.behindthe.net/index.cfm/2008/4/7/USE-Antit-will-save-you-a-lot-of-time</link>
				<description>
				
				&lt;p&gt;&lt;strong&gt;Jim Priest&lt;/strong&gt; has a really nice&amp;nbsp;wiki&amp;nbsp;focussed on using Ant.&lt;/p&gt;
&lt;p&gt;&lt;a title=&quot;Ant wiki&quot; href=&quot;http://www.thecrumb.com/wiki/ant&quot;&gt;Check it out&lt;/a&gt;&lt;/p&gt;
				
				</description>
						
				
				<category>ColdBox</category>				
				
				<category>Coldfusion</category>				
				
				<category>Server Side</category>				
				
				<category>Flex</category>				
				
				<pubDate>Mon, 07 Apr 2008 00:31:00 +0200</pubDate>
				<guid>http://evdlinden.behindthe.net/index.cfm/2008/4/7/USE-Antit-will-save-you-a-lot-of-time</guid>
				
			</item>
			
		 	
			
			
			<item>
				<title>WireShark - PERFECT Network Sniffer</title>
				<link>http://evdlinden.behindthe.net/index.cfm/2008/2/18/WireShark--Perfect-Network-Sniffer</link>
				<description>
				
				&lt;p&gt;You want to ANALYSE your network traffic?&lt;/p&gt;
&lt;p&gt;Take a look at &lt;a href=&quot;http://www.wireshark.org&quot;&gt;WireShark&lt;/a&gt;&amp;nbsp;!!&lt;/p&gt;
				
				</description>
						
				
				<category>Software</category>				
				
				<category>Server Side</category>				
				
				<pubDate>Mon, 18 Feb 2008 01:47:00 +0200</pubDate>
				<guid>http://evdlinden.behindthe.net/index.cfm/2008/2/18/WireShark--Perfect-Network-Sniffer</guid>
				
			</item>
			
		 	
			
			
			<item>
				<title>MySQL Workbench ROCKS!!</title>
				<link>http://evdlinden.behindthe.net/index.cfm/2008/2/3/MySQL-Workbench-ROCKS</link>
				<description>
				
				&lt;p&gt;Working with MySQL databases?&lt;/p&gt;
&lt;p&gt;Check out the Beta release of &lt;a href=&quot;http://dev.mysql.com/workbench/&quot;&gt;MySQL Workbench&lt;/a&gt;&amp;nbsp;!!!!&lt;/p&gt;
				
				</description>
						
				
				<category>Coldfusion</category>				
				
				<category>Server Side</category>				
				
				<pubDate>Sun, 03 Feb 2008 19:23:00 +0200</pubDate>
				<guid>http://evdlinden.behindthe.net/index.cfm/2008/2/3/MySQL-Workbench-ROCKS</guid>
				
			</item>
			
		 	
			
			
			<item>
				<title>Linux Administrator Cheat Sheet</title>
				<link>http://evdlinden.behindthe.net/index.cfm/2007/6/3/LINUX-Administrator-Cheat-Sheet</link>
				<description>
				
				http://tiger.la.asu.edu/Quick_Ref/linux_quickref.pdf
				
				</description>
						
				
				<category>Server Side</category>				
				
				<pubDate>Sun, 03 Jun 2007 03:38:00 +0200</pubDate>
				<guid>http://evdlinden.behindthe.net/index.cfm/2007/6/3/LINUX-Administrator-Cheat-Sheet</guid>
				
			</item>
			
		 	
			
			
			<item>
				<title>Apache Cheat Sheet</title>
				<link>http://evdlinden.behindthe.net/index.cfm/2007/6/3/Apache-Cheatsheet</link>
				<description>
				
				http://www.digilife.be/quickreferences/QRC/Apache%20Quick%20Reference%20Card.pdf
				
				</description>
						
				
				<category>Server Side</category>				
				
				<pubDate>Sun, 03 Jun 2007 03:27:00 +0200</pubDate>
				<guid>http://evdlinden.behindthe.net/index.cfm/2007/6/3/Apache-Cheatsheet</guid>
				
			</item>
			
		 	
			
			
			<item>
				<title>Linux Cheat Sheet</title>
				<link>http://evdlinden.behindthe.net/index.cfm/2007/6/3/Linux-Cheat-Sheet</link>
				<description>
				
				Just came along a nice cheatsheet for Linux.

http://www.hpcc.uh.edu/usergroup/20050225/linuxquickref.pdf
				
				</description>
						
				
				<category>Server Side</category>				
				
				<pubDate>Sun, 03 Jun 2007 03:16:00 +0200</pubDate>
				<guid>http://evdlinden.behindthe.net/index.cfm/2007/6/3/Linux-Cheat-Sheet</guid>
				
			</item>
			
		 	
			</channel></rss>