<?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>.NET Micro Framework (Archive) &#187; Tips-n-Tricks</title>
	<atom:link href="http://www.microframework.nl/category/tips/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.microframework.nl</link>
	<description>Elze Kool&#039;s experiences with the Micro Framework</description>
	<lastBuildDate>Thu, 07 Apr 2011 21:02:44 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Debugging Locks and Deadlocks</title>
		<link>http://www.microframework.nl/2009/02/23/debugging-locks-and-deadlocks/</link>
		<comments>http://www.microframework.nl/2009/02/23/debugging-locks-and-deadlocks/#comments</comments>
		<pubDate>Mon, 23 Feb 2009 21:30:04 +0000</pubDate>
		<dc:creator>Elze</dc:creator>
				<category><![CDATA[Tips-n-Tricks]]></category>
		<category><![CDATA[3.0]]></category>
		<category><![CDATA[Deadlock]]></category>
		<category><![CDATA[Threads]]></category>

		<guid isPermaLink="false">http://www.microframework.nl/?p=363</guid>
		<description><![CDATA[Today I found myself in a problem I never guessed I would get into, deadlocks. A deadlock is a situation where one lock is waiting for another lock to clear. But the other lock can&#8217;t be cleared until the piece of code that&#8217;s currently is waiting for the lock to clear is run. More about [...]]]></description>
		<wfw:commentRss>http://www.microframework.nl/2009/02/23/debugging-locks-and-deadlocks/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>ArrayList, Bubble sorting and Timezones</title>
		<link>http://www.microframework.nl/2009/01/06/arraylist-bubble-sorting-and-timezones/</link>
		<comments>http://www.microframework.nl/2009/01/06/arraylist-bubble-sorting-and-timezones/#comments</comments>
		<pubDate>Tue, 06 Jan 2009 21:19:31 +0000</pubDate>
		<dc:creator>Elze</dc:creator>
				<category><![CDATA[Tips-n-Tricks]]></category>
		<category><![CDATA[3.0]]></category>
		<category><![CDATA[ArrayList]]></category>
		<category><![CDATA[Bubble Sort]]></category>
		<category><![CDATA[Timezones]]></category>

		<guid isPermaLink="false">http://www.microframework.nl/?p=331</guid>
		<description><![CDATA[Some title I made for this post.. The reason for this is that I&#160;wanted to do something what I tought was very simple and took me some time to do. For my &#34;HomeTerm&#34; project I want to have a select box with supported timezones. The first method that I used was getting all the Enum [...]]]></description>
		<wfw:commentRss>http://www.microframework.nl/2009/01/06/arraylist-bubble-sorting-and-timezones/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Extended Weak References</title>
		<link>http://www.microframework.nl/2008/12/23/extended-weak-references/</link>
		<comments>http://www.microframework.nl/2008/12/23/extended-weak-references/#comments</comments>
		<pubDate>Tue, 23 Dec 2008 11:17:11 +0000</pubDate>
		<dc:creator>Elze</dc:creator>
				<category><![CDATA[Tips-n-Tricks]]></category>

		<guid isPermaLink="false">http://www.microframework.nl/?p=313</guid>
		<description><![CDATA[Introduction:
Many applications require a way to persistently store settings and other data. On the full .NET Framework you can use the file system for this. The new 3.0 .NET Micro Framework system adds support for a file system but it&#8217;s up to the device manufacturer to add support for this. And this file system isn&#8217;t [...]]]></description>
		<wfw:commentRss>http://www.microframework.nl/2008/12/23/extended-weak-references/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Binary Serialization with Micro Framework</title>
		<link>http://www.microframework.nl/2008/11/17/binary-serialization-with-micro-framework/</link>
		<comments>http://www.microframework.nl/2008/11/17/binary-serialization-with-micro-framework/#comments</comments>
		<pubDate>Mon, 17 Nov 2008 19:27:38 +0000</pubDate>
		<dc:creator>Elze</dc:creator>
				<category><![CDATA[Just Blog'ing]]></category>
		<category><![CDATA[Tips-n-Tricks]]></category>
		<category><![CDATA[2.5]]></category>
		<category><![CDATA[3.0]]></category>
		<category><![CDATA[Serialization]]></category>

		<guid isPermaLink="false">http://www.microframework.nl/?p=171</guid>
		<description><![CDATA[Today I came acros this &#160;post on the GHI Electronics forum:

I&#8217;m developing my first application with EM, but sometimes i switch from happyness&#160;&#160;&#160;to sadness&#160;&#160;, this is why:
- Read/Write method in FileStream class of EMLibrary accept only bytes array, but what if I have to write/read int/float/long arrays ?
In C++ it easy: fwrite(&#38;AnyKindOfData, DataLenght, Elements),&#160;
InsertValueIntoArray and [...]]]></description>
		<wfw:commentRss>http://www.microframework.nl/2008/11/17/binary-serialization-with-micro-framework/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>WPF, Delegates and Threads</title>
		<link>http://www.microframework.nl/2008/11/08/wpf-delegates-and-threads/</link>
		<comments>http://www.microframework.nl/2008/11/08/wpf-delegates-and-threads/#comments</comments>
		<pubDate>Sat, 08 Nov 2008 07:55:07 +0000</pubDate>
		<dc:creator>Elze</dc:creator>
				<category><![CDATA[Just Blog'ing]]></category>
		<category><![CDATA[Tips-n-Tricks]]></category>
		<category><![CDATA[2.5]]></category>
		<category><![CDATA[3.0]]></category>
		<category><![CDATA[Dispatcher]]></category>
		<category><![CDATA[Threads]]></category>
		<category><![CDATA[WPF]]></category>

		<guid isPermaLink="false">http://www.microframework.nl/?p=150</guid>
		<description><![CDATA[Introduction:
When I started programming for the .NET Micro Framework one of the things that where a bit difficult to grab was how to update WPF UI elements (Like a text control)&#160;from a thread.
It has all to do with thread safety. Threads run (semi) simultainus and so there is the change that you access the same&#160;variable [...]]]></description>
		<wfw:commentRss>http://www.microframework.nl/2008/11/08/wpf-delegates-and-threads/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
	</channel>
</rss>

