<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss xmlns:content="http://purl.org/rss/1.0/modules/content/" 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:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">
<channel>
	<title>Komentáře k Myšlenky dne otce Fura</title>
	
	<link>http://blog.novoj.net</link>
	<description>Dává je jen zřídka, obvykle jim není moc rozumět a často vám ani k ničemu nejsou.</description>
	<lastBuildDate>Wed, 22 Feb 2012 01:36:44 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/myslenkyDneOtceFuraComments" /><feedburner:info uri="myslenkydneotcefuracomments" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item>
		<title>Komentář k příspěvku Json Java parsers / generators microbenchmark od Kazuaki Maeda</title>
		<link>http://feedproxy.google.com/~r/myslenkyDneOtceFuraComments/~3/MMe1zP-bgfU/</link>
		<dc:creator>Kazuaki Maeda</dc:creator>
		<pubDate>Wed, 22 Feb 2012 01:36:44 +0000</pubDate>
		<guid isPermaLink="false">http://blog.novoj.net/?p=1824#comment-62053</guid>
		<description>I have read your source code in groovy. Thank you.

In org/novoj/json/transformer/protostuff/ProtostuffIO.groovy, you wrote
    JsonIOUtil.writeTo(out, photoAlbum, schema, true)
This statement serializes attribute names in numeric, for example,
    {
    "1":1,
    "2":"John Doe",
    "3":"Speed kills!",
    "4":1
    }
If you changed it to
    JsonIOUtil.writeTo(out, photoAlbum, schema, false)
, the code serializes them in alphabetic,
   {
    "id":1,
    "name":"John Doe",
    "motto":"Speed kills!",
    "gender":1
    }
This is a small thing, but I prefer the latter(false) to the former(true).

And I would like to know about your information in English.
I can not read your mother language :-&lt;
When I write technical documents, I would like to your name in acknowledgements.
I wrote my contact information in my web page,
    http://www.rugson.org/
Could you send email to me, please.
Thank you very much.</description>
		<content:encoded><![CDATA[<p>I have read your source code in groovy. Thank you.</p>
<p>In org/novoj/json/transformer/protostuff/ProtostuffIO.groovy, you wrote<br />
    JsonIOUtil.writeTo(out, photoAlbum, schema, true)<br />
This statement serializes attribute names in numeric, for example,<br />
    {<br />
    &#8222;1&#8243;:1,<br />
    &#8222;2&#8243;:&#8220;John Doe&#8220;,<br />
    &#8222;3&#8243;:&#8220;Speed kills!&#8220;,<br />
    &#8222;4&#8243;:1<br />
    }<br />
If you changed it to<br />
    JsonIOUtil.writeTo(out, photoAlbum, schema, false)<br />
, the code serializes them in alphabetic,<br />
   {<br />
    &#8222;id&#8220;:1,<br />
    &#8222;name&#8220;:&#8220;John Doe&#8220;,<br />
    &#8222;motto&#8220;:&#8220;Speed kills!&#8220;,<br />
    &#8222;gender&#8220;:1<br />
    }<br />
This is a small thing, but I prefer the latter(false) to the former(true).</p>
<p>And I would like to know about your information in English.<br />
I can not read your mother language :-&lt;<br />
When I write technical documents, I would like to your name in acknowledgements.<br />
I wrote my contact information in my web page,<br />
    <a href="http://www.rugson.org/" rel="nofollow">http://www.rugson.org/</a><br />
Could you send email to me, please.<br />
Thank you very much.</p>
]]></content:encoded>
	<feedburner:origLink>http://blog.novoj.net/2012/02/05/json-java-parsers-generators-microbenchmark/comment-page-1/#comment-62053</feedburner:origLink></item>
	<item>
		<title>Komentář k příspěvku iBatis SqlMaps – tak trochu opomíjený ORM od Otec Fura</title>
		<link>http://feedproxy.google.com/~r/myslenkyDneOtceFuraComments/~3/329UQRv07DA/</link>
		<dc:creator>Otec Fura</dc:creator>
		<pubDate>Sun, 19 Feb 2012 07:52:54 +0000</pubDate>
		<guid isPermaLink="false">http://blog.novoj.net/2007/05/08/ibatis-sqlmaps-tak-trochu-opomijeny-orm/#comment-61917</guid>
		<description>Myslíš, že člověk, který dokáže nekoncepčně "zprasit" iBatis implementaci by odvedl kvalitnější práci při použití např. Hibernate? Já mám s Hibernate tedy jen malé zkušenosti, ale "zprasit" se tam toho dá taky dost. Pokud navíc mají pod správou i návrh DB, tak si myslím, že to je jen z bláta do louže. Ale rozumím argumentu čitelnosti - na druhou stranu v Hibernate máš taky fůru selectů ve formě HQL v kódu, které mohou vypadat všelijak. Tady těžko soudit - museli bychom vidět kód napsaný od stejných indů třeba nad Hibernatem a pak bychom asi mohli dělat závěry.

Naštěstí mám štěstí na kolegy, takže si na čitelnost jejich kódu nemohu stěžovat.</description>
		<content:encoded><![CDATA[<p>Myslíš, že člověk, který dokáže nekoncepčně &#8222;zprasit&#8220; iBatis implementaci by odvedl kvalitnější práci při použití např. Hibernate? Já mám s Hibernate tedy jen malé zkušenosti, ale &#8222;zprasit&#8220; se tam toho dá taky dost. Pokud navíc mají pod správou i návrh DB, tak si myslím, že to je jen z bláta do louže. Ale rozumím argumentu čitelnosti &#8211; na druhou stranu v Hibernate máš taky fůru selectů ve formě HQL v kódu, které mohou vypadat všelijak. Tady těžko soudit &#8211; museli bychom vidět kód napsaný od stejných indů třeba nad Hibernatem a pak bychom asi mohli dělat závěry.</p>
<p>Naštěstí mám štěstí na kolegy, takže si na čitelnost jejich kódu nemohu stěžovat.</p>
]]></content:encoded>
	<feedburner:origLink>http://blog.novoj.net/2007/05/08/ibatis-sqlmaps-tak-trochu-opomijeny-orm/comment-page-1/#comment-61917</feedburner:origLink></item>
	<item>
		<title>Komentář k příspěvku iBatis SqlMaps – tak trochu opomíjený ORM od martin zemlicka</title>
		<link>http://feedproxy.google.com/~r/myslenkyDneOtceFuraComments/~3/plDv1lvwzs0/</link>
		<dc:creator>martin zemlicka</dc:creator>
		<pubDate>Fri, 17 Feb 2012 20:42:50 +0000</pubDate>
		<guid isPermaLink="false">http://blog.novoj.net/2007/05/08/ibatis-sqlmaps-tak-trochu-opomijeny-orm/#comment-61846</guid>
		<description>Kromě jednoduchosti je Ibatis velmi flexibilní, co do nezávislosti objektové a datové vrstvy. Bohužel to má svou nevýhodu. A to když jste nuceni přebírat projekt po někom (například indických programátorech), kdo pracoval "ne zcela úplně koncepčně". Tím myslím, že vztah mezi objekty a databází je dán sáhodlouhými a všelijak strukturovanými SQL statementy v sqlmap souborech, jejichž smysl je těžko zpětně pochopitelný a struktura databáze může být opravdu všelijaká (o absenci unit testů nemluvě). JPA je náročnější na to, něco rychle "zplácat". Vazba mezi databází a entitami takovouhle volnost nedává (nebo o tom nevím). Každopádně tyto vztahy musí být dány, takže si tam nemůže každý dělat cokoliv a výsledek by měl být srozumitelnější i pro člověka, který kód nepsal a nenavrhoval.</description>
		<content:encoded><![CDATA[<p>Kromě jednoduchosti je Ibatis velmi flexibilní, co do nezávislosti objektové a datové vrstvy. Bohužel to má svou nevýhodu. A to když jste nuceni přebírat projekt po někom (například indických programátorech), kdo pracoval &#8222;ne zcela úplně koncepčně&#8220;. Tím myslím, že vztah mezi objekty a databází je dán sáhodlouhými a všelijak strukturovanými SQL statementy v sqlmap souborech, jejichž smysl je těžko zpětně pochopitelný a struktura databáze může být opravdu všelijaká (o absenci unit testů nemluvě). JPA je náročnější na to, něco rychle &#8222;zplácat&#8220;. Vazba mezi databází a entitami takovouhle volnost nedává (nebo o tom nevím). Každopádně tyto vztahy musí být dány, takže si tam nemůže každý dělat cokoliv a výsledek by měl být srozumitelnější i pro člověka, který kód nepsal a nenavrhoval.</p>
]]></content:encoded>
	<feedburner:origLink>http://blog.novoj.net/2007/05/08/ibatis-sqlmaps-tak-trochu-opomijeny-orm/comment-page-1/#comment-61846</feedburner:origLink></item>
	<item>
		<title>Komentář k příspěvku Json Java parsers / generators microbenchmark od Otec Fura</title>
		<link>http://feedproxy.google.com/~r/myslenkyDneOtceFuraComments/~3/Xx5_wSMyGvI/</link>
		<dc:creator>Otec Fura</dc:creator>
		<pubDate>Thu, 16 Feb 2012 07:20:41 +0000</pubDate>
		<guid isPermaLink="false">http://blog.novoj.net/?p=1824#comment-61759</guid>
		<description>Some more detail benchmarks are located at https://github.com/eishay/jvm-serializers/wiki/ (that I referenced in the article perex). But there are many approaches that could be tested - I took only one of them (POJO related).

Of course you can use my source codes and use it for you own experimenting. Everything at this blog is Creative Commons licensed, so do with it what you will. Sources are at GitHub so you can fork easily if you like.

Sharing your results will be highly appreciated.</description>
		<content:encoded><![CDATA[<p>Some more detail benchmarks are located at <a href="https://github.com/eishay/jvm-serializers/wiki/" rel="nofollow">https://github.com/eishay/jvm-serializers/wiki/</a> (that I referenced in the article perex). But there are many approaches that could be tested &#8211; I took only one of them (POJO related).</p>
<p>Of course you can use my source codes and use it for you own experimenting. Everything at this blog is Creative Commons licensed, so do with it what you will. Sources are at GitHub so you can fork easily if you like.</p>
<p>Sharing your results will be highly appreciated.</p>
]]></content:encoded>
	<feedburner:origLink>http://blog.novoj.net/2012/02/05/json-java-parsers-generators-microbenchmark/comment-page-1/#comment-61759</feedburner:origLink></item>
	<item>
		<title>Komentář k příspěvku Json Java parsers / generators microbenchmark od Kazuaki Maeda</title>
		<link>http://feedproxy.google.com/~r/myslenkyDneOtceFuraComments/~3/5U_k_sr1qTA/</link>
		<dc:creator>Kazuaki Maeda</dc:creator>
		<pubDate>Thu, 16 Feb 2012 06:17:30 +0000</pubDate>
		<guid isPermaLink="false">http://blog.novoj.net/?p=1824#comment-61757</guid>
		<description>I'm very interested in your work.

I tried serialization benchmark last year.
But the formats to serialize were XML and binary based.
I would like to compare many approaches of object serialization from qualitative and quantitative aspects.

Can I use your testing programs and the results in my benchmark?
After finishing the experiments, I can open the results on my web site.

Thank you.</description>
		<content:encoded><![CDATA[<p>I&#8217;m very interested in your work.</p>
<p>I tried serialization benchmark last year.<br />
But the formats to serialize were XML and binary based.<br />
I would like to compare many approaches of object serialization from qualitative and quantitative aspects.</p>
<p>Can I use your testing programs and the results in my benchmark?<br />
After finishing the experiments, I can open the results on my web site.</p>
<p>Thank you.</p>
]]></content:encoded>
	<feedburner:origLink>http://blog.novoj.net/2012/02/05/json-java-parsers-generators-microbenchmark/comment-page-1/#comment-61757</feedburner:origLink></item>
	<item>
		<title>Komentář k příspěvku Ad ACTA – moje komunikace s p. Zahradilem od Otec Fura</title>
		<link>http://feedproxy.google.com/~r/myslenkyDneOtceFuraComments/~3/aJN4EQA70KA/</link>
		<dc:creator>Otec Fura</dc:creator>
		<pubDate>Mon, 13 Feb 2012 19:20:29 +0000</pubDate>
		<guid isPermaLink="false">http://blog.novoj.net/?p=1818#comment-61604</guid>
		<description>No zdá se, že zatím vyhráváme: https://twitter.com/#!/tyinternety/status/169065575484633090

Ale taky se obávám, že zvolí vyčkávací taktiku. Lidi nemají vytvralost, bohužel.</description>
		<content:encoded><![CDATA[<p>No zdá se, že zatím vyhráváme: <a href="https://twitter.com/#!/tyinternety/status/169065575484633090" rel="nofollow">https://twitter.com/#!/tyinternety/status/169065575484633090</a></p>
<p>Ale taky se obávám, že zvolí vyčkávací taktiku. Lidi nemají vytvralost, bohužel.</p>
]]></content:encoded>
	<feedburner:origLink>http://blog.novoj.net/2012/01/26/ad-acta-moje-komunikace-s-p-zahradilem/comment-page-1/#comment-61604</feedburner:origLink></item>
	<item>
		<title>Komentář k příspěvku Ad ACTA – moje komunikace s p. Zahradilem od MMM</title>
		<link>http://feedproxy.google.com/~r/myslenkyDneOtceFuraComments/~3/S8DKi7wniY0/</link>
		<dc:creator>MMM</dc:creator>
		<pubDate>Mon, 13 Feb 2012 10:12:04 +0000</pubDate>
		<guid isPermaLink="false">http://blog.novoj.net/?p=1818#comment-61579</guid>
		<description>Nie som cech, ale toto bolo dobre:

A) Pokud si pořídíte druhé dítě, úroky z hypotéky se budou platit přímo z daní, které odvádíte, pokud si pořídíte třetí dítě, bude Vám část hypotéky odpuštěna.
Ono to je totiž tak, že dítě je drahá záležitost, rodiče stojí asi dva miliony korun.
Přídavky na děti využívá jen určitá vrstva národa.
Ať se takové hypotéky převedou na stát, děti jsou v zájmu státu!

To by u nas na Slovensku mali cigani mrakodrapy. Ako nic v zlom, ale tymto systemom by sa zmenil zivot ludi a namiesto prace by sa snazili cim skor mat 3+ deti, pretoze tipujem, ze za 4. dieta by mal stat posielat jedlo zadarmo, za 5. by to mala byt aspon 1 dovolenka rocne, za 6. odmeny vo vyske aspon 5000e, za 7. dozivotna renta ako u prezidenta, za 8. ... ... ...

No spat k ACTE. Momentalne zijem v Nemecku a tu aj napriek protestom to maju celkom na haku - zatial. Zacinam mat obavy, ze to Europa nakoniec prijme...</description>
		<content:encoded><![CDATA[<p>Nie som cech, ale toto bolo dobre:</p>
<p>A) Pokud si pořídíte druhé dítě, úroky z hypotéky se budou platit přímo z daní, které odvádíte, pokud si pořídíte třetí dítě, bude Vám část hypotéky odpuštěna.<br />
Ono to je totiž tak, že dítě je drahá záležitost, rodiče stojí asi dva miliony korun.<br />
Přídavky na děti využívá jen určitá vrstva národa.<br />
Ať se takové hypotéky převedou na stát, děti jsou v zájmu státu!</p>
<p>To by u nas na Slovensku mali cigani mrakodrapy. Ako nic v zlom, ale tymto systemom by sa zmenil zivot ludi a namiesto prace by sa snazili cim skor mat 3+ deti, pretoze tipujem, ze za 4. dieta by mal stat posielat jedlo zadarmo, za 5. by to mala byt aspon 1 dovolenka rocne, za 6. odmeny vo vyske aspon 5000e, za 7. dozivotna renta ako u prezidenta, za 8. &#8230; &#8230; &#8230;</p>
<p>No spat k ACTE. Momentalne zijem v Nemecku a tu aj napriek protestom to maju celkom na haku &#8211; zatial. Zacinam mat obavy, ze to Europa nakoniec prijme&#8230;</p>
]]></content:encoded>
	<feedburner:origLink>http://blog.novoj.net/2012/01/26/ad-acta-moje-komunikace-s-p-zahradilem/comment-page-1/#comment-61579</feedburner:origLink></item>
	<item>
		<title>Komentář k příspěvku Json Java parsers / generators microbenchmark od sreenath v</title>
		<link>http://feedproxy.google.com/~r/myslenkyDneOtceFuraComments/~3/M-QCbtHH47s/</link>
		<dc:creator>sreenath v</dc:creator>
		<pubDate>Sun, 12 Feb 2012 19:41:04 +0000</pubDate>
		<guid isPermaLink="false">http://blog.novoj.net/?p=1824#comment-61548</guid>
		<description>Jackson for mobile device you can use minified jar which is ~134kb.
Jackson mini doesn't support annotations and which off-course is fine for mobile devices.</description>
		<content:encoded><![CDATA[<p>Jackson for mobile device you can use minified jar which is ~134kb.<br />
Jackson mini doesn&#8217;t support annotations and which off-course is fine for mobile devices.</p>
]]></content:encoded>
	<feedburner:origLink>http://blog.novoj.net/2012/02/05/json-java-parsers-generators-microbenchmark/comment-page-1/#comment-61548</feedburner:origLink></item>
	<item>
		<title>Komentář k příspěvku Json Java parsers / generators microbenchmark od jesse wilson</title>
		<link>http://feedproxy.google.com/~r/myslenkyDneOtceFuraComments/~3/wFvD8lD9o20/</link>
		<dc:creator>jesse wilson</dc:creator>
		<pubDate>Sun, 12 Feb 2012 03:43:56 +0000</pubDate>
		<guid isPermaLink="false">http://blog.novoj.net/?p=1824#comment-61512</guid>
		<description>Source code? My measurements showed a closer race between Gson and Jackson.

Don't forget that gson's jar is way smaller than Jackson's: The gson-2.1.jar is 176 Kib; this includes both streaming and binding. To do both 
with Jackson you'll need 874 Kib in .jar files.</description>
		<content:encoded><![CDATA[<p>Source code? My measurements showed a closer race between Gson and Jackson.</p>
<p>Don&#8217;t forget that gson&#8217;s jar is way smaller than Jackson&#8217;s: The gson-2.1.jar is 176 Kib; this includes both streaming and binding. To do both<br />
with Jackson you&#8217;ll need 874 Kib in .jar files.</p>
]]></content:encoded>
	<feedburner:origLink>http://blog.novoj.net/2012/02/05/json-java-parsers-generators-microbenchmark/comment-page-1/#comment-61512</feedburner:origLink></item>
	<item>
		<title>Komentář k příspěvku Json Java parsers / generators microbenchmark od Otec Fura</title>
		<link>http://feedproxy.google.com/~r/myslenkyDneOtceFuraComments/~3/mMCWTVmAfu4/</link>
		<dc:creator>Otec Fura</dc:creator>
		<pubDate>Fri, 10 Feb 2012 08:35:33 +0000</pubDate>
		<guid isPermaLink="false">http://blog.novoj.net/?p=1824#comment-61392</guid>
		<description>Staxon is focused on SAX like reading / writing and therefore I didn’t include it into the test suite in the first time. Test suite measures direct POJO serialization / deserialization and this is not main aim of the Staxon as I get it.

After reading some docs I found out, that with combination with JaxB tags Staxson could be used for POJO serialization / deserialization so I’ll try to prepare a test for it. Check updates of this article please.</description>
		<content:encoded><![CDATA[<p>Staxon is focused on SAX like reading / writing and therefore I didn’t include it into the test suite in the first time. Test suite measures direct POJO serialization / deserialization and this is not main aim of the Staxon as I get it.</p>
<p>After reading some docs I found out, that with combination with JaxB tags Staxson could be used for POJO serialization / deserialization so I’ll try to prepare a test for it. Check updates of this article please.</p>
]]></content:encoded>
	<feedburner:origLink>http://blog.novoj.net/2012/02/05/json-java-parsers-generators-microbenchmark/comment-page-1/#comment-61392</feedburner:origLink></item>
</channel>
</rss><!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using disk: enhanced

Served from: blog.novoj.net @ 2012-02-22 04:02:44 -->

