<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>TIMO ERNST &#187; Webdevelopment</title>
	<atom:link href="http://www.timo-ernst.net/tag/webdevelopment/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.timo-ernst.net</link>
	<description>Specialist for Rich Internet Applications and UI-Design</description>
	<lastBuildDate>Tue, 29 Nov 2011 16:24:13 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>ZK user group conference in Mannheim, Germany</title>
		<link>http://www.timo-ernst.net/2011/11/zk-user-group-conference-in-mannheim-germany/</link>
		<comments>http://www.timo-ernst.net/2011/11/zk-user-group-conference-in-mannheim-germany/#comments</comments>
		<pubDate>Tue, 22 Nov 2011 01:06:13 +0000</pubDate>
		<dc:creator>Timo</dc:creator>
				<category><![CDATA[Nerd stuff]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[java]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[RIA]]></category>
		<category><![CDATA[Webdevelopment]]></category>
		<category><![CDATA[ZK]]></category>

		<guid isPermaLink="false">http://www.timo-ernst.net/?p=2893</guid>
		<description><![CDATA[I'll be speaking on the upcoming ZK user group conference in Mannheim, Germany on December 6th, 2011 (what's ZK?).

If you enjoy developing rich internet applications with the power of Java, I highly recommend to be there.
If you want to join, just sign up for the event on zkoss.org for free and see three exciting ...]]></description>
		<wfw:commentRss>http://www.timo-ernst.net/2011/11/zk-user-group-conference-in-mannheim-germany/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New project: zkexamples.com</title>
		<link>http://www.timo-ernst.net/2011/05/new-project-zkexamples-com/</link>
		<comments>http://www.timo-ernst.net/2011/05/new-project-zkexamples-com/#comments</comments>
		<pubDate>Tue, 17 May 2011 18:04:32 +0000</pubDate>
		<dc:creator>Timo</dc:creator>
				<category><![CDATA[Nerd stuff]]></category>
		<category><![CDATA[Ajax]]></category>
		<category><![CDATA[java]]></category>
		<category><![CDATA[Webdevelopment]]></category>
		<category><![CDATA[ZK]]></category>
		<category><![CDATA[zkexamples.com]]></category>

		<guid isPermaLink="false">http://www.timo-ernst.net/?p=2836</guid>
		<description><![CDATA[I created a new online platform called zkexamples.com.

The goal is to provide really simple and quick examples for common ZK use-cases and requirements (what is ZK?).

The idea is based on flexexamples.com which was a great help to me when I was coding a lot of Adobe Flex.

If anyone has some nice examples to share, ...]]></description>
		<wfw:commentRss>http://www.timo-ernst.net/2011/05/new-project-zkexamples-com/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Quickfix: Hibernate integration for ZK applications</title>
		<link>http://www.timo-ernst.net/2011/04/quickfix-hibernate-integration-for-zk-applications/</link>
		<comments>http://www.timo-ernst.net/2011/04/quickfix-hibernate-integration-for-zk-applications/#comments</comments>
		<pubDate>Sun, 24 Apr 2011 17:20:45 +0000</pubDate>
		<dc:creator>Timo</dc:creator>
				<category><![CDATA[Nerd stuff]]></category>
		<category><![CDATA[Hibernate]]></category>
		<category><![CDATA[java]]></category>
		<category><![CDATA[Webdevelopment]]></category>
		<category><![CDATA[ZK]]></category>

		<guid isPermaLink="false">http://www.timo-ernst.net/?p=2792</guid>
		<description><![CDATA[If you're using the awesome ZK framework together with Hibernate you might run into some issues where Hibernate behaves a little funky while the application runs.
The trouble's cause
According to the developers of ZK, the reason for this is ZK's multi-threaded event model. Whenever an event gets fired, a new event thread is created. This ...]]></description>
		<wfw:commentRss>http://www.timo-ernst.net/2011/04/quickfix-hibernate-integration-for-zk-applications/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Vector vs. ArrayList in multi-threaded Java applications</title>
		<link>http://www.timo-ernst.net/2011/04/java-threads-and-the-list-interface/</link>
		<comments>http://www.timo-ernst.net/2011/04/java-threads-and-the-list-interface/#comments</comments>
		<pubDate>Wed, 20 Apr 2011 20:04:47 +0000</pubDate>
		<dc:creator>Timo</dc:creator>
				<category><![CDATA[Nerd stuff]]></category>
		<category><![CDATA[In English]]></category>
		<category><![CDATA[java]]></category>
		<category><![CDATA[Webdevelopment]]></category>

		<guid isPermaLink="false">http://www.timo-ernst.net/?p=2758</guid>
		<description><![CDATA[I lately had to play around a lot with collections in multi-threaded environments and learned several new stuff that I'd like to share:
Vector vs. ArrayList
Where is the difference between both? When should you use ArrayList and when is the time to use Vector?
This is a very common question and often leads to huge discussions.
For ...]]></description>
		<wfw:commentRss>http://www.timo-ernst.net/2011/04/java-threads-and-the-list-interface/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Tutorial: A simple Twitter client with JQTouch</title>
		<link>http://www.timo-ernst.net/2010/08/tutorial-a-simple-twitter-client-with-jqtouch/</link>
		<comments>http://www.timo-ernst.net/2010/08/tutorial-a-simple-twitter-client-with-jqtouch/#comments</comments>
		<pubDate>Wed, 04 Aug 2010 00:42:38 +0000</pubDate>
		<dc:creator>Timo</dc:creator>
				<category><![CDATA[Nerd stuff]]></category>
		<category><![CDATA[android]]></category>
		<category><![CDATA[apps]]></category>
		<category><![CDATA[In English]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[jqtouch]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[webdevelopement]]></category>
		<category><![CDATA[Webdevelopment]]></category>

		<guid isPermaLink="false">http://www.timo-ernst.net/?p=2417</guid>
		<description><![CDATA[Lately I have been doing a lot of coding for mobile devices, like iPhone or Android, but I was never really happy about the development environments. Objective C is a horrible and antique language while the Android SDK is quite nice (due to its Java roots) but does not give me the ability to ...]]></description>
		<wfw:commentRss>http://www.timo-ernst.net/2010/08/tutorial-a-simple-twitter-client-with-jqtouch/feed/</wfw:commentRss>
		<slash:comments>65</slash:comments>
		</item>
	</channel>
</rss>

