<?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>dev.sitina.net</title>
	<atom:link href="http://dev.sitina.net/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://dev.sitina.net</link>
	<description>místo pro to, co se nevejde na sitina.net</description>
	<lastBuildDate>Sat, 14 Jan 2012 19:06:26 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Talk: Clean Code by Robert C. Martin</title>
		<link>http://dev.sitina.net/?p=185</link>
		<comments>http://dev.sitina.net/?p=185#comments</comments>
		<pubDate>Sat, 14 Jan 2012 19:06:26 +0000</pubDate>
		<dc:creator>Jirka Šitina</dc:creator>
				<category><![CDATA[development]]></category>
		<category><![CDATA[java]]></category>
		<category><![CDATA[clean code]]></category>
		<category><![CDATA[robert c martin]]></category>
		<category><![CDATA[talk]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://dev.sitina.net/?p=185</guid>
		<description><![CDATA[Clean Code, Robert C Martin, Javaforum Stockholm 2011-08-24 from Björn Caroll on Vimeo.]]></description>
		<wfw:commentRss>http://dev.sitina.net/?feed=rss2&#038;p=185</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Quants: the alchemists of Wall Street</title>
		<link>http://dev.sitina.net/?p=180</link>
		<comments>http://dev.sitina.net/?p=180#comments</comments>
		<pubDate>Fri, 13 Jan 2012 20:45:52 +0000</pubDate>
		<dc:creator>Jirka Šitina</dc:creator>
				<category><![CDATA[development]]></category>
		<category><![CDATA[links]]></category>
		<category><![CDATA[money]]></category>
		<category><![CDATA[quants]]></category>
		<category><![CDATA[video]]></category>
		<category><![CDATA[wall street]]></category>

		<guid isPermaLink="false">http://dev.sitina.net/?p=180</guid>
		<description><![CDATA[Very interesting and also possible kind of eye-opener.]]></description>
		<wfw:commentRss>http://dev.sitina.net/?feed=rss2&#038;p=180</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Java generic surprise</title>
		<link>http://dev.sitina.net/?p=177</link>
		<comments>http://dev.sitina.net/?p=177#comments</comments>
		<pubDate>Thu, 25 Aug 2011 17:04:27 +0000</pubDate>
		<dc:creator>Jirka Šitina</dc:creator>
				<category><![CDATA[development]]></category>
		<category><![CDATA[java]]></category>
		<category><![CDATA[collections]]></category>
		<category><![CDATA[generics]]></category>

		<guid isPermaLink="false">http://dev.sitina.net/?p=177</guid>
		<description><![CDATA[This behavior of Java generics surprised me pretty a lot: if you call method which gets untyped list as a parameter and supply typed list, the expected datatype check is not performed inside unchecked method: &#160; 1: import java.util.ArrayList; 2: import java.util.List; 3: &#160; 4: public class GenericsTest { 5: &#160; 6: public static void [...]]]></description>
		<wfw:commentRss>http://dev.sitina.net/?feed=rss2&#038;p=177</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>writing xml file groovy way</title>
		<link>http://dev.sitina.net/?p=173</link>
		<comments>http://dev.sitina.net/?p=173#comments</comments>
		<pubDate>Sun, 09 Jan 2011 20:17:15 +0000</pubDate>
		<dc:creator>Jirka Šitina</dc:creator>
				<category><![CDATA[development]]></category>
		<category><![CDATA[java]]></category>
		<category><![CDATA[book]]></category>
		<category><![CDATA[grails]]></category>
		<category><![CDATA[groovy]]></category>

		<guid isPermaLink="false">http://dev.sitina.net/?p=173</guid>
		<description><![CDATA[I am currently trying to get into Groovy and Grails a little bit so I am going through Grails in Action book (btw, excellent one) and found this interesting example: &#160; 1: import groovy.xml.MarkupBuilder 2: import groovy.util.XmlSlurper 3: 4: def file = new File(&#34;list.xml&#34;) 5: def objs = [ 6: [quantity: 10, name: &#34;Orange&#34;, type: [...]]]></description>
		<wfw:commentRss>http://dev.sitina.net/?feed=rss2&#038;p=173</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>JAXB2 empty object hierarchy serialization</title>
		<link>http://dev.sitina.net/?p=168</link>
		<comments>http://dev.sitina.net/?p=168#comments</comments>
		<pubDate>Fri, 17 Dec 2010 12:22:09 +0000</pubDate>
		<dc:creator>Jirka Šitina</dc:creator>
				<category><![CDATA[development]]></category>
		<category><![CDATA[java]]></category>
		<category><![CDATA[jaxb2]]></category>

		<guid isPermaLink="false">http://dev.sitina.net/?p=168</guid>
		<description><![CDATA[You might face the issue that you would like to marshall java objects into xml and need to force jaxb2 to create elements even for classes that are not filled in (are null actually). Example might be Person class with empty Address field. &#160; The solution can be found on stackoverflow. I am really happy [...]]]></description>
		<wfw:commentRss>http://dev.sitina.net/?feed=rss2&#038;p=168</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Interesting java generics feature</title>
		<link>http://dev.sitina.net/?p=165</link>
		<comments>http://dev.sitina.net/?p=165#comments</comments>
		<pubDate>Sat, 11 Dec 2010 14:32:35 +0000</pubDate>
		<dc:creator>Jirka Šitina</dc:creator>
				<category><![CDATA[development]]></category>
		<category><![CDATA[java]]></category>
		<category><![CDATA[generics]]></category>

		<guid isPermaLink="false">http://dev.sitina.net/?p=165</guid>
		<description><![CDATA[If you make generic java class and add static field into it, the field remains common for all instances no matter which target type they implement. See the example: &#160; Generic class: 1: package net.sitina.sandbox.generics; 2: 3: public class GenericClass&#60;T&#62; { 4: 5: private static String value; 6: 7: public String testType(T typedParameter) { 8: [...]]]></description>
		<wfw:commentRss>http://dev.sitina.net/?feed=rss2&#038;p=165</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Picasa upload&#8211;BSOD</title>
		<link>http://dev.sitina.net/?p=163</link>
		<comments>http://dev.sitina.net/?p=163#comments</comments>
		<pubDate>Wed, 20 Oct 2010 05:34:38 +0000</pubDate>
		<dc:creator>Jirka Šitina</dc:creator>
				<category><![CDATA[development]]></category>
		<category><![CDATA[other]]></category>
		<category><![CDATA[BSOD]]></category>
		<category><![CDATA[Picasa]]></category>
		<category><![CDATA[wifi]]></category>

		<guid isPermaLink="false">http://dev.sitina.net/?p=163</guid>
		<description><![CDATA[Na notebooku Dell Latitude D505 se mi stala zvláštní věc: během uploadu fotek na picasa server z programu Picasa se najednou zjevila modrá obrazovka a systém se restartoval. Na obrazovce bylo něco na způsob čtení z paměti v bloku nula.. Trochu jsem pohledal a našel řešení – bylo potřeba aktualizovat ovladač k wifi kartě PRO/Wireless [...]]]></description>
		<wfw:commentRss>http://dev.sitina.net/?feed=rss2&#038;p=163</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Co ted</title>
		<link>http://dev.sitina.net/?p=161</link>
		<comments>http://dev.sitina.net/?p=161#comments</comments>
		<pubDate>Wed, 14 Apr 2010 18:30:32 +0000</pubDate>
		<dc:creator>Jirka Šitina</dc:creator>
				<category><![CDATA[other]]></category>

		<guid isPermaLink="false">http://dev.sitina.net/?p=161</guid>
		<description><![CDATA[Vsechny moje aktivity se ted toci okolo diplomky, skoly celkove a mx3 Holice. Proto tady ted neni moc mouder, ale neco snad zas pridam.]]></description>
		<wfw:commentRss>http://dev.sitina.net/?feed=rss2&#038;p=161</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Zkouška mapování s I Got U</title>
		<link>http://dev.sitina.net/?p=157</link>
		<comments>http://dev.sitina.net/?p=157#comments</comments>
		<pubDate>Fri, 25 Dec 2009 12:56:00 +0000</pubDate>
		<dc:creator>Jirka Šitina</dc:creator>
				<category><![CDATA[other]]></category>
		<category><![CDATA[cesta]]></category>
		<category><![CDATA[GPS]]></category>
		<category><![CDATA[Nela]]></category>
		<category><![CDATA[procházka]]></category>

		<guid isPermaLink="false">http://dev.sitina.net/?p=157</guid>
		<description><![CDATA[Zápis trasy:]]></description>
		<wfw:commentRss>http://dev.sitina.net/?feed=rss2&#038;p=157</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Odkazy pro wordpress</title>
		<link>http://dev.sitina.net/?p=143</link>
		<comments>http://dev.sitina.net/?p=143#comments</comments>
		<pubDate>Mon, 09 Mar 2009 18:53:50 +0000</pubDate>
		<dc:creator>Jirka Šitina</dc:creator>
				<category><![CDATA[development]]></category>
		<category><![CDATA[links]]></category>

		<guid isPermaLink="false">http://dev.sitina.net/?p=143</guid>
		<description><![CDATA[http://digg.com/software/17_Useful_Wordpress_Plugins_That_Probably_Are_Essential http://www.staska.net/2007/03/27/top-30-wordpress-plugins-in-blogosphere/ http://theblogjoint.com/2006/08/29/top-wordpress-plugins/ http://digg.com/search?section=all&#38;s=wordpress http://www.smashingmagazine.com/2009/01/15/45-new-jquery-techniques-for-a-good-user-experience/ http://www.smashingmagazine.com/2008/09/15/wordpress-developers-toolbox/]]></description>
		<wfw:commentRss>http://dev.sitina.net/?feed=rss2&#038;p=143</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

