<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	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/"
		>
<channel>
	<title>Comments for Pencils Down</title>
	<atom:link href="http://www.dantoomeysoftware.com/pencils-down/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.dantoomeysoftware.com/pencils-down</link>
	<description>This weblog is about my experiences in software development</description>
	<lastBuildDate>Mon, 23 May 2011 19:36:36 -0400</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on Anyone using jQuery Mobile? by admin</title>
		<link>http://www.dantoomeysoftware.com/pencils-down/2011/05/20/anyone-using-jquery-mobile/comment-page-1/#comment-9</link>
		<dc:creator>admin</dc:creator>
		<pubDate>Mon, 23 May 2011 19:36:36 +0000</pubDate>
		<guid isPermaLink="false">http://www.dantoomeysoftware.com/pencils-down/?p=220#comment-9</guid>
		<description>Turns out jQuery mobile doe not work with desktop IE.  Use Mozilla.

Also, instead of the page footers as anchors with page references handle the interpage references directly using jQuery hide/show as appropropriate.

Also, should all be in one &quot;page&quot;.

See &quot;pages&quot; at &lt;a href=&quot;http://www.dantoomeysoftware.com/mobile&quot; rel=&quot;nofollow&quot;&gt; for example.</description>
		<content:encoded><![CDATA[<p>Turns out jQuery mobile doe not work with desktop IE.  Use Mozilla.</p>
<p>Also, instead of the page footers as anchors with page references handle the interpage references directly using jQuery hide/show as appropropriate.</p>
<p>Also, should all be in one &#8220;page&#8221;.</p>
<p>See &#8220;pages&#8221; at <a href="http://www.dantoomeysoftware.com/mobile" rel="nofollow"> for example.</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Hibernate Lazy Loading Options for Collections by admin</title>
		<link>http://www.dantoomeysoftware.com/pencils-down/2010/08/06/hibernate-lazy-loading-options-for-collections/comment-page-1/#comment-7</link>
		<dc:creator>admin</dc:creator>
		<pubDate>Tue, 21 Sep 2010 18:28:06 +0000</pubDate>
		<guid isPermaLink="false">http://www.dantoomeysoftware.com/pencils-down/?p=126#comment-7</guid>
		<description>We just discovered a horrible side-effect of using lazy=&quot;extra&quot;: Hibernate will flush the cache on ANY subsequent query.  

I think this makes the lazy extra option worse than useless.</description>
		<content:encoded><![CDATA[<p>We just discovered a horrible side-effect of using lazy=&#8221;extra&#8221;: Hibernate will flush the cache on ANY subsequent query.  </p>
<p>I think this makes the lazy extra option worse than useless.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Hibernate ObjectDeletedException and collection handling by admin</title>
		<link>http://www.dantoomeysoftware.com/pencils-down/2009/03/30/hibernate-objectdeletedexception-and-collection-handling/comment-page-1/#comment-6</link>
		<dc:creator>admin</dc:creator>
		<pubDate>Tue, 31 Aug 2010 18:45:29 +0000</pubDate>
		<guid isPermaLink="false">http://www.dantoomeysoftware.com/pencils-down/2009/03/30/hibernate-objectdeletedexception-and-collection-handling/#comment-6</guid>
		<description>This error will also occur whenever you remove a child object from a collection that has cascade=&quot;all-delete-orphan&quot;, even if you immediately attempt to assign it to another collection.

The note on the Hibernate forum has wording to the effect that delete-orphan is a nicety that may not work for you.  If not, you have to remove the &quot;delete-orphan&quot; setting from your xml and handle cascading delete of orphans by hand!

https://forum.hibernate.org/viewtopic.php?t=981282</description>
		<content:encoded><![CDATA[<p>This error will also occur whenever you remove a child object from a collection that has cascade=&#8221;all-delete-orphan&#8221;, even if you immediately attempt to assign it to another collection.</p>
<p>The note on the Hibernate forum has wording to the effect that delete-orphan is a nicety that may not work for you.  If not, you have to remove the &#8220;delete-orphan&#8221; setting from your xml and handle cascading delete of orphans by hand!</p>
<p><a href="https://forum.hibernate.org/viewtopic.php?t=981282" rel="nofollow">https://forum.hibernate.org/viewtopic.php?t=981282</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Common Perceptions of Web Programmers by admin</title>
		<link>http://www.dantoomeysoftware.com/pencils-down/2010/04/26/common-perceptions-of-web-programmers/comment-page-1/#comment-3</link>
		<dc:creator>admin</dc:creator>
		<pubDate>Wed, 28 Apr 2010 15:27:35 +0000</pubDate>
		<guid isPermaLink="false">http://www.dantoomeysoftware.com/pencils-down/?p=105#comment-3</guid>
		<description>Ran into a similar thing with the local town sign up mechanism for summer camp.  You must sign up using a web site, starting at at certain time of day, on a certain date.  They have run the sign-ups the same way for several years.  Also, the town is fairly technically savvy, so they get a big burst of activity at the start.

Again, similarly, the site is completely overloaded immediately and fails.  This is panic time as the summer programs are very economical and everyone wants in.

This happens every year.  You would expect that someone would think: maybe we should add a little more horsepower this time?  Nah, waste of resources.</description>
		<content:encoded><![CDATA[<p>Ran into a similar thing with the local town sign up mechanism for summer camp.  You must sign up using a web site, starting at at certain time of day, on a certain date.  They have run the sign-ups the same way for several years.  Also, the town is fairly technically savvy, so they get a big burst of activity at the start.</p>
<p>Again, similarly, the site is completely overloaded immediately and fails.  This is panic time as the summer programs are very economical and everyone wants in.</p>
<p>This happens every year.  You would expect that someone would think: maybe we should add a little more horsepower this time?  Nah, waste of resources.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on I Don&#8217;t Have an Ego by admin</title>
		<link>http://www.dantoomeysoftware.com/pencils-down/2008/11/07/i-dont-have-an-ego/comment-page-1/#comment-2</link>
		<dc:creator>admin</dc:creator>
		<pubDate>Tue, 18 Nov 2008 15:21:07 +0000</pubDate>
		<guid isPermaLink="false">http://www.dantoomeysoftware.com/pencils-down/2008/11/07/i-dont-have-an-ego/#comment-2</guid>
		<description>I guess the love affair is over.  Stock jumps 12%.  Value is currently 16 billion versus the 45 billion Microsoft offered.</description>
		<content:encoded><![CDATA[<p>I guess the love affair is over.  Stock jumps 12%.  Value is currently 16 billion versus the 45 billion Microsoft offered.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

