<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress/2.3.3" -->
<rss version="0.92">
<channel>
	<title>Groovy Almanac</title>
	<link>http://groovy-almanac.org</link>
	<description>usefull groovy snippets</description>
	<lastBuildDate>Tue, 13 Oct 2009 17:11:57 +0000</lastBuildDate>
	<docs>http://backend.userland.com/rss092</docs>
	<language>de</language>
	
	<item>
		<title>Detecting groovy version</title>
		<description>Determine the groovy version in a script.
 </description>
		<link>http://groovy-almanac.org/detecting-groovy-version/</link>
			</item>
	<item>
		<title>Opening an URL with a proxy</title>
		<description>Set proxy config.

 </description>
		<link>http://groovy-almanac.org/opening-an-url-with-a-proxy/</link>
			</item>
	<item>
		<title>Save URL to file</title>
		<description>Simple example how to save an image from the net to a local file.
 </description>
		<link>http://groovy-almanac.org/save-url-to-file/</link>
			</item>
	<item>
		<title>Command line interface with CommandLine Builder</title>
		<description>Simple example of the groovy commandline builder.

 </description>
		<link>http://groovy-almanac.org/command-line-interface-with-commandlinebuilder/</link>
			</item>
	<item>
		<title>Search in zipfile</title>
		<description>This example will search for 1.txt in the zipfile test.zip and print out the result.

 </description>
		<link>http://groovy-almanac.org/search-in-zipfile/</link>
			</item>
	<item>
		<title>Examples of using range or a list in a switch statement</title>
		<description>This are two examples of using ranges in switch statements.

 </description>
		<link>http://groovy-almanac.org/examples-of-using-ranges-in-switch-statements/</link>
			</item>
	<item>
		<title>Connect to a MySQL database</title>
		<description>Simple snippet for a connection to a MySQL database. 

 </description>
		<link>http://groovy-almanac.org/connect-to-a-mysql-database/</link>
			</item>
	<item>
		<title>List the methods of a groovy class</title>
		<description>This snippet show how to get a list of all methods in a groovy class.
 </description>
		<link>http://groovy-almanac.org/list-the-methods-of-a-groovy-class/</link>
			</item>
	<item>
		<title>CSV parser with groovy categories</title>
		<description>This shows how categories in groovy can be used to create a simple csv parser.
 </description>
		<link>http://groovy-almanac.org/csv-parser-with-groovy-categories/</link>
			</item>
	<item>
		<title>Measure execution time with a closure</title>
		<description>Measures the execution time with a closure.
 </description>
		<link>http://groovy-almanac.org/measure-execution-time-with-a-closure/</link>
			</item>
	<item>
		<title>Catch assertion exceptions in Groovy</title>
		<description>If you would like to handle the exception raised from an assert you can use the following snippet.
 </description>
		<link>http://groovy-almanac.org/catch-assertion-exceptions-in-groovy/</link>
			</item>
	<item>
		<title>The inject method of list</title>
		<description>The inject method of the list can be used for summing up the list contents. 
 </description>
		<link>http://groovy-almanac.org/the-inject-method-of-list/</link>
			</item>
	<item>
		<title>Execute external programs</title>
		<description>This example executes an external program as an process in groovy.
 </description>
		<link>http://groovy-almanac.org/execute-external-programs/</link>
			</item>
	<item>
		<title>Named parameters in groovy</title>
		<description> </description>
		<link>http://groovy-almanac.org/named-parameters-in-groovy/</link>
			</item>
	<item>
		<title>Overloaded constructors in Groovy</title>
		<description> </description>
		<link>http://groovy-almanac.org/overloaded-constructors-in-groovy/</link>
			</item>
	<item>
		<title>Read from stdin</title>
		<description>Read lines from stdin and print in on stdout. Terminate the program when "exit" is entered.
 </description>
		<link>http://groovy-almanac.org/read-from-stdin/</link>
			</item>
	<item>
		<title>Read the first line of a file</title>
		<description>Snippet to read the first line of a file in Groovy.
 </description>
		<link>http://groovy-almanac.org/read-the-first-line-of-a-file/</link>
			</item>
	<item>
		<title>Run a Timer in the future</title>
		<description>Howto run a Timer in the future.
 </description>
		<link>http://groovy-almanac.org/run-a-timer-in-the-future/</link>
			</item>
	<item>
		<title>Example Timer and TimerTask in Groovy</title>
		<description>This is an example of the Timer and TimerTask in Groovy.
 </description>
		<link>http://groovy-almanac.org/example-timer-and-timertask-in-groovy/</link>
			</item>
	<item>
		<title>SSH with Groovy and Antbuilder</title>
		<description>This examples show how to use the ant ssh task with the Antbuilder in groovy.
 </description>
		<link>http://groovy-almanac.org/ssh-with-groovy-and-antbuilder/</link>
			</item>
	<item>
		<title>SCP with Groovy and Antbuilder</title>
		<description>This example shows the usage of the ant scp task with the AntBuilder.
 </description>
		<link>http://groovy-almanac.org/scp-with-groovy-and-antbuilder/</link>
			</item>
	<item>
		<title>Filename filter</title>
		<description>This shows the usage of the Java FilenameFilter with groovy.
 </description>
		<link>http://groovy-almanac.org/filename-filter/</link>
			</item>
	<item>
		<title>List filesystem roots</title>
		<description>This shows how to use the function in groovy.
 </description>
		<link>http://groovy-almanac.org/list-filesystem-roots/</link>
			</item>
	<item>
		<title>List directory contents</title>
		<description>This lists all files in a directory.
 </description>
		<link>http://groovy-almanac.org/list-directory-contents/</link>
			</item>
	<item>
		<title>Get all files of a specific type</title>
		<description>This snippet shows howto get all *.txt files under the "test" directory.
 </description>
		<link>http://groovy-almanac.org/get-all-files-of-a-specific-type/</link>
			</item>
</channel>
</rss>
