<?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 Elias Puurunen, @agFinn</title>
	<atom:link href="http://puurunen.ca/blog/?feed=comments-rss2" rel="self" type="application/rss+xml" />
	<link>http://puurunen.ca/blog</link>
	<description>My thoughts on coding, life, and everything else.</description>
	<lastBuildDate>Wed, 27 Jul 2011 22:12:12 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1</generator>
	<item>
		<title>Comment on Getting Started with Apache Pivot 2.0! by Elias</title>
		<link>http://puurunen.ca/blog/?p=192#comment-350</link>
		<dc:creator>Elias</dc:creator>
		<pubDate>Wed, 27 Jul 2011 22:12:12 +0000</pubDate>
		<guid isPermaLink="false">http://silverfinn.net/blog/?p=192#comment-350</guid>
		<description>When I saw that a developer could declare Pivot user interfaces in XML, my mindset immediately shifted into Windows Presentation Foundation/Silverlight mode. My initial reaction to Pivot I think wasn&#039;t fair, in that I was just relearning Java that day, plus learning a new UI toolkit. As such, my mind was in the first phase of learning a language, the &quot;I-hate-everything-about-this-language&quot; one. 

My biggest gripe with Pivot was the lack of documentation. Figuring out how to deserialize a layout from XML took a lot of time (probably an hour or two). I really wanted something akin to best practices for that. I was somewhat disappointed that one has to create new Views in order to re-style controls, whereas in Silverlight/WPF that&#039;s trivial to do in XML.

Just my two cents.</description>
		<content:encoded><![CDATA[<p>When I saw that a developer could declare Pivot user interfaces in XML, my mindset immediately shifted into Windows Presentation Foundation/Silverlight mode. My initial reaction to Pivot I think wasn&#8217;t fair, in that I was just relearning Java that day, plus learning a new UI toolkit. As such, my mind was in the first phase of learning a language, the &#8220;I-hate-everything-about-this-language&#8221; one. </p>
<p>My biggest gripe with Pivot was the lack of documentation. Figuring out how to deserialize a layout from XML took a lot of time (probably an hour or two). I really wanted something akin to best practices for that. I was somewhat disappointed that one has to create new Views in order to re-style controls, whereas in Silverlight/WPF that&#8217;s trivial to do in XML.</p>
<p>Just my two cents.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Getting Started with Apache Pivot 2.0! by Greg Brown</title>
		<link>http://puurunen.ca/blog/?p=192#comment-286</link>
		<dc:creator>Greg Brown</dc:creator>
		<pubDate>Wed, 13 Jul 2011 18:30:16 +0000</pubDate>
		<guid isPermaLink="false">http://silverfinn.net/blog/?p=192#comment-286</guid>
		<description>BTW, a simpler way to implement your Quit button handler would be to simply call DesktopApplicationContext.exit(). That way you don&#039;t need to deal with wiring up a state listener for your window. 

If you prefer the state listener approach, I&#039;d suggest extending WindowStateListener.Adapter rather than implementing WindowStateListener directly.

Finally, in main() you should just be able to call DesktopApplicationContext.main(App.class).</description>
		<content:encoded><![CDATA[<p>BTW, a simpler way to implement your Quit button handler would be to simply call DesktopApplicationContext.exit(). That way you don&#8217;t need to deal with wiring up a state listener for your window. </p>
<p>If you prefer the state listener approach, I&#8217;d suggest extending WindowStateListener.Adapter rather than implementing WindowStateListener directly.</p>
<p>Finally, in main() you should just be able to call DesktopApplicationContext.main(App.class).</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Getting Started with Apache Pivot 2.0! by Greg Brown</title>
		<link>http://puurunen.ca/blog/?p=192#comment-285</link>
		<dc:creator>Greg Brown</dc:creator>
		<pubDate>Wed, 13 Jul 2011 18:05:55 +0000</pubDate>
		<guid isPermaLink="false">http://silverfinn.net/blog/?p=192#comment-285</guid>
		<description>&quot;it has the beginnings of an awesome UI toolkit, but does feel rough around the edges at certain points&quot;

Hi Elias,
What specifically seemed &quot;rough around the edges&quot; to you when you tried Pivot? In other words, what do you feel is lacking? Based on your experience with other toolkits, how do you think it might be improved?

Greg</description>
		<content:encoded><![CDATA[<p>&#8220;it has the beginnings of an awesome UI toolkit, but does feel rough around the edges at certain points&#8221;</p>
<p>Hi Elias,<br />
What specifically seemed &#8220;rough around the edges&#8221; to you when you tried Pivot? In other words, what do you feel is lacking? Based on your experience with other toolkits, how do you think it might be improved?</p>
<p>Greg</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on MC3090 &#8211; Reading Tags With the RFID Reader by S</title>
		<link>http://puurunen.ca/blog/?p=125#comment-250</link>
		<dc:creator>S</dc:creator>
		<pubDate>Tue, 28 Jun 2011 19:37:34 +0000</pubDate>
		<guid isPermaLink="false">http://silverfinn.net/blog/?p=125#comment-250</guid>
		<description>Hi,

This article has been really helpful to me. I have a further question regarding the EMDK library. It seems that this only scans tags once and never again unless you restart your app -- at least that&#039;s what&#039;s happening when I use the code you&#039;ve written. Is there a way to implement continuous notifying of tags reads, even duplicate reads?

Basically, I want to get every single read (as you know there can be dozens of reads within the span of a second), and do my own filtering.

Thanks,
S</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>This article has been really helpful to me. I have a further question regarding the EMDK library. It seems that this only scans tags once and never again unless you restart your app &#8212; at least that&#8217;s what&#8217;s happening when I use the code you&#8217;ve written. Is there a way to implement continuous notifying of tags reads, even duplicate reads?</p>
<p>Basically, I want to get every single read (as you know there can be dozens of reads within the span of a second), and do my own filtering.</p>
<p>Thanks,<br />
S</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on .NET Compact Framework &#8211; Could not connect to the network Exception with HttpWebResponse by How it Works: Windows Mobile RNDIS</title>
		<link>http://puurunen.ca/blog/?p=75#comment-249</link>
		<dc:creator>How it Works: Windows Mobile RNDIS</dc:creator>
		<pubDate>Tue, 28 Jun 2011 19:31:03 +0000</pubDate>
		<guid isPermaLink="false">http://silverfinn.net/?p=75#comment-249</guid>
		<description>[...] this part has bitten me before &#8211; make sure that if you&#8217;re wanting to do any sort of HTTP requests over the network, [...]</description>
		<content:encoded><![CDATA[<p>[...] this part has bitten me before &#8211; make sure that if you&#8217;re wanting to do any sort of HTTP requests over the network, [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Motorola MC3090-Z RFID Reader &#8211; Enabling the RFID Radio While Docked by Nathan</title>
		<link>http://puurunen.ca/blog/?p=123#comment-226</link>
		<dc:creator>Nathan</dc:creator>
		<pubDate>Tue, 07 Jun 2011 22:59:58 +0000</pubDate>
		<guid isPermaLink="false">http://silverfinn.net/blog/?p=123#comment-226</guid>
		<description>Elias,

I stumbled across your blog while browsing the internet looking for helpful examples of bar code and RFID, data collection applications - specifically C# for the MC3090Z.  This blog in regards to enabling LLRP while docked will be a great help when it comes to debugging my RFID application.  Also, the pop-up message every time I rebooted the scanner was troublesome for my application which is designed to be a start up program so this registry tweak is really going to help.

Thanks for the help!</description>
		<content:encoded><![CDATA[<p>Elias,</p>
<p>I stumbled across your blog while browsing the internet looking for helpful examples of bar code and RFID, data collection applications &#8211; specifically C# for the MC3090Z.  This blog in regards to enabling LLRP while docked will be a great help when it comes to debugging my RFID application.  Also, the pop-up message every time I rebooted the scanner was troublesome for my application which is designed to be a start up program so this registry tweak is really going to help.</p>
<p>Thanks for the help!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on PostSharp &#8211; Using Attributed Compact Framework Assemblies with .NET Framework Applications! by Using PostSharp-Attributed Compact Framework Assemblies with .NET Framework PostSharp Attributed Assemblies!</title>
		<link>http://puurunen.ca/blog/?p=147#comment-123</link>
		<dc:creator>Using PostSharp-Attributed Compact Framework Assemblies with .NET Framework PostSharp Attributed Assemblies!</dc:creator>
		<pubDate>Thu, 07 Apr 2011 13:58:29 +0000</pubDate>
		<guid isPermaLink="false">http://silverfinn.net/blog/?p=147#comment-123</guid>
		<description>[...] few days ago, I blogged about the difficulty I was having using a Compact Framework assembly I had attributed with PostSharp aspects alongside a regular [...]</description>
		<content:encoded><![CDATA[<p>[...] few days ago, I blogged about the difficulty I was having using a Compact Framework assembly I had attributed with PostSharp aspects alongside a regular [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on PostSharp &#8211; Property-Backed Property Aspect by Elias</title>
		<link>http://puurunen.ca/blog/?p=135#comment-105</link>
		<dc:creator>Elias</dc:creator>
		<pubDate>Thu, 31 Mar 2011 19:56:42 +0000</pubDate>
		<guid isPermaLink="false">http://silverfinn.net/blog/?p=135#comment-105</guid>
		<description>Since we&#039;re checking to see if the property is null/catching exceptions, the default getter will be called (the one defined in the class).

If the named properties are renamed, the strings will need to be updated as well. So there is a certain maintenance cost to this.</description>
		<content:encoded><![CDATA[<p>Since we&#8217;re checking to see if the property is null/catching exceptions, the default getter will be called (the one defined in the class).</p>
<p>If the named properties are renamed, the strings will need to be updated as well. So there is a certain maintenance cost to this.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on PostSharp &#8211; Property-Backed Property Aspect by mendicant</title>
		<link>http://puurunen.ca/blog/?p=135#comment-103</link>
		<dc:creator>mendicant</dc:creator>
		<pubDate>Thu, 31 Mar 2011 15:31:41 +0000</pubDate>
		<guid isPermaLink="false">http://silverfinn.net/blog/?p=135#comment-103</guid>
		<description>What happens if someone comes in and renames ResolutionRequired to IsResolutionRequired?

Or CurrentCondition to CurrentStatus?

Or something along those lines.</description>
		<content:encoded><![CDATA[<p>What happens if someone comes in and renames ResolutionRequired to IsResolutionRequired?</p>
<p>Or CurrentCondition to CurrentStatus?</p>
<p>Or something along those lines.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

