<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Kiener&#039;s Blog &#187; WPF</title>
	<atom:link href="http://blog.thekieners.com/tag/wpf/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.thekieners.com</link>
	<description>Blog of Beat Kiener, containing my experiences, thoughts, comments and questions</description>
	<lastBuildDate>Thu, 26 Jan 2012 02:01:22 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='blog.thekieners.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Kiener&#039;s Blog &#187; WPF</title>
		<link>http://blog.thekieners.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://blog.thekieners.com/osd.xml" title="Kiener&#039;s Blog" />
	<atom:link rel='hub' href='http://blog.thekieners.com/?pushpress=hub'/>
		<item>
		<title>Expression Blend Samples not working with Silverlight 4 and WPF 4</title>
		<link>http://blog.thekieners.com/2010/11/09/expression-blend-samples-not-working-with-silverlight-4-and-wpf-4/</link>
		<comments>http://blog.thekieners.com/2010/11/09/expression-blend-samples-not-working-with-silverlight-4-and-wpf-4/#comments</comments>
		<pubDate>Tue, 09 Nov 2010 16:00:24 +0000</pubDate>
		<dc:creator>beatkiener</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Silverlight]]></category>
		<category><![CDATA[WPF]]></category>

		<guid isPermaLink="false">https://bkiener.wordpress.com/2010/11/09/expression-blend-samples-not-working-with-silverlight-4-and-wpf-4/</guid>
		<description><![CDATA[This blog post is just to document my experience with the Expression Blend Sample source together with Silverlight 4 or WPF 4.0 If you are using the Expression Blend Samples from codeplex (http://expressionblend.codeplex.com) then you might experience some problems when using the included triggers and behavior within SL4 or WPF4 runtime. The problem is that [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.thekieners.com&amp;blog=7436128&amp;post=507&amp;subd=bkiener&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>This blog post is just to document my experience with the Expression Blend Sample source together with Silverlight 4 or WPF 4.0</p>
<p>If you are using the Expression Blend Samples from codeplex (<a href="http://expressionblend.codeplex.com" target="_blank">http://expressionblend.codeplex.com</a>) then you might experience some problems when using the included triggers and behavior within SL4 or WPF4 runtime. The problem is that a dependency property with the type <em>System.Windows.Data.Binding</em> is not set to due to a change in the <em>MS.Internal.Data.DynamicValueConverter</em> class. Since SL4 / WPF4 the <em>DynamicValueConverter</em> uses the value of the binding instead of the binding instance itself. As example, the Command property of the <em>InvokeDataCommand</em> trigger is declared as <em>System.Windows.Data.Binding</em>, but the <em>DynamicValueConverter</em> will return the value of the binding, an ICommand compatible instance, and not the binding instance itself. So, the command property will always be null, because <em>DynamicValueConverter</em> cannot cast the object. And if the command binding cannot be set, the BindingListener, which is used internally, will not work correctly.</p>
<p><a href="http://bkiener.files.wordpress.com/2010/11/image.png"><img style="background-image:none;padding-left:0;padding-right:0;display:inline;padding-top:0;border-width:0;" title="image" border="0" alt="image" src="http://bkiener.files.wordpress.com/2010/11/image_thumb.png?w=692&#038;h=465" width="692" height="465" /></a></p>
<p>If we change the binding target from a dependency property to a simple CLR property, then the <em>DynamicValueConverter</em> can set the property and <em>InvokeDataCommand</em> works as before.</p>
<p><a href="http://bkiener.files.wordpress.com/2010/11/image1.png"><img style="background-image:none;padding-left:0;padding-right:0;display:inline;padding-top:0;border-width:0;" title="image" border="0" alt="image" src="http://bkiener.files.wordpress.com/2010/11/image_thumb1.png?w=442&#038;h=178" width="442" height="178" /></a></p>
<p>I’ve found that codeplex user <a href="http://www.codeplex.com/site/users/view/AvdMeulen">AvdMeulen</a> changed the whole Expression sample source and submitted a zip package on codeplex. See link below.</p>
<p>&#160;</p>
<p>Let’s go into more details:</p>
<p>Silverlight 3 does not allow using data binding on types which are NOT inherited from class <em>FrameworkElement</em>. That means that the entire Silverlight standard behaviors and triggers do not support data binding, because the Trigger and Behavior classes are directly derived from <em>DepedencyObject</em>. Nevertheless, if you use data-binding with a trigger- or behavior property in Silverlight 3, then the binding system does not execute the binding, but it tries to set the binding instance itself to the property as a value of type <em>System.Windows.Data.Binding</em>. This will be done through the <em>MS.Internal.Data.DynamicValueConverter</em> class. If the target property is not of type <em>System.Windows.Data.Binding</em> it will not work and you get an <em>AG_E_PARSER_BAD_PROPERTY_VALUE</em> exception from the XAML parser. Based on this binding-engine behavior, <a href="http://blois.us/blog/2009/04/datatrigger-bindings-on-non.html" target="_blank">Pete Blois</a> invented the <em>BindingListener</em> class.     <br />His trick was to declare properties on behaviors and triggers as type of <em>System.Windows.Data.Binding</em> in order to get them bindable. The binding is still not executed by the binding system and to bind them he declared a dummy attached dependency property and set the binding instance to the attached dependency property. The result is that the attached dependency property can execute the binding and we can just listen to when the attached dependency property changes. This results in a full functional binding for non-<em>FrameworkElements</em>. All this is encapsulated in the <em>BindingListener</em> class.</p>
<p>But now, why it does not work for SL4 anymore? The answer can be found in the <a href="http://msdn.microsoft.com/en-us/library/cc645049(VS.95).aspx" target="_blank">breaking changes for Silverlight 4</a>.</p>
<p><a href="http://bkiener.files.wordpress.com/2010/11/image2.png"><img style="background-image:none;border-bottom:0;border-left:0;padding-left:0;padding-right:0;display:inline;border-top:0;border-right:0;padding-top:0;" title="image" border="0" alt="image" src="http://bkiener.files.wordpress.com/2010/11/image_thumb2.png?w=709&#038;h=494" width="709" height="494" /></a></p>
<p>&#160;</p>
<p>With SL4 it&#8217;s now possible to data binding dependency properties on triggers and behavior too, which makes the BindingListener class useless. This is also the reason why the Binding property remains null, because the SL4 binding engine set a BindingExpression and not the Binding itselfs and the BindingExpression tries to set the Command value instead of the Binding instance.</p>
<p>&#160;</p>
<p>Link resources:    <br /><a href="http://expressionblend.codeplex.com/workitem/8148">http://expressionblend.codeplex.com/workitem/8148</a>     <br /><a href="http://www.sztronka.com/2010/01/behaviors-triggers-and-memory-leaks-in.html">http://www.sztronka.com/2010/01/behaviors-triggers-and-memory-leaks-in.html</a>    <br /><a href="http://mtaulty.com/CommunityServer/blogs/mike_taultys_blog/archive/2010/03/27/silverlight-4-blend-4-mvvm-binding-dependencyobject.aspx">http://mtaulty.com/CommunityServer/blogs/mike_taultys_blog/archive/2010/03/27/silverlight-4-blend-4-mvvm-binding-dependencyobject.aspx</a>    <br /><a href="http://compiledexperience.com/blog/posts/blendable-mvvm-commands-and-behaviors">http://compiledexperience.com/blog/posts/blendable-mvvm-commands-and-behaviors</a>    <br /><a href="http://blois.us/blog/2009/04/datatrigger-bindings-on-non.html">http://blois.us/blog/2009/04/datatrigger-bindings-on-non.html</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/bkiener.wordpress.com/507/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/bkiener.wordpress.com/507/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/bkiener.wordpress.com/507/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/bkiener.wordpress.com/507/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/bkiener.wordpress.com/507/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/bkiener.wordpress.com/507/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/bkiener.wordpress.com/507/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/bkiener.wordpress.com/507/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/bkiener.wordpress.com/507/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/bkiener.wordpress.com/507/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/bkiener.wordpress.com/507/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/bkiener.wordpress.com/507/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/bkiener.wordpress.com/507/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/bkiener.wordpress.com/507/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.thekieners.com&amp;blog=7436128&amp;post=507&amp;subd=bkiener&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://blog.thekieners.com/2010/11/09/expression-blend-samples-not-working-with-silverlight-4-and-wpf-4/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/bbdffd0b655e44e12898217ff1973ad3?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">beatkiener</media:title>
		</media:content>

		<media:content url="http://bkiener.files.wordpress.com/2010/11/image_thumb.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://bkiener.files.wordpress.com/2010/11/image_thumb1.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://bkiener.files.wordpress.com/2010/11/image_thumb2.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>
	</item>
		<item>
		<title>Deep Zoom Collection Downloader</title>
		<link>http://blog.thekieners.com/2010/03/02/deep-zoom-collection-downloader/</link>
		<comments>http://blog.thekieners.com/2010/03/02/deep-zoom-collection-downloader/#comments</comments>
		<pubDate>Tue, 02 Mar 2010 05:51:04 +0000</pubDate>
		<dc:creator>beatkiener</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Deep Zoom]]></category>
		<category><![CDATA[MVVM]]></category>
		<category><![CDATA[Silverlight]]></category>
		<category><![CDATA[WPF]]></category>

		<guid isPermaLink="false">http://bkiener.wordpress.com/2010/03/02/deep-zoom-collection-downloader/</guid>
		<description><![CDATA[Just for fun I’ve implemented a Deep Zoom Tiles Downloader which recreates the original image from a deep zoom composition. Additionally the downloader can download the original composition from the website to your local disk. The downloader follows the principals of a pure MVVM application. No, i have not too much time. I’m pretty well [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.thekieners.com&amp;blog=7436128&amp;post=404&amp;subd=bkiener&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Just for fun I’ve implemented a <i>Deep Zoom Tiles Downloader</i> which recreates the original image from a deep zoom composition. Additionally the downloader can download the original composition from the website to your local disk. The downloader follows the principals of a pure MVVM application.</p>
<p>No, i have not too much time. I’m pretty well experienced with the MVVM pattern in Silverlight but not in the WPF runtime. To get more familiar with MVVM in WPF and to see the difference in a practical manner I decided to put the implementation into a ViewModel and to build a WPF-View on top of them.</p>
<h2>The Application</h2>
<p>In the <em>Image Rebuilder</em> tab, the application allows to set the deep zoom image settings or discover them automatically from a standard Deep Zoom Composer xml-file.</p>
<p><a href="http://bkiener.files.wordpress.com/2010/03/image.png"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="image" border="0" alt="image" src="http://bkiener.files.wordpress.com/2010/03/image_thumb.png?w=684&#038;h=511" width="684" height="511" /></a> </p>
<p>The downloader allows you to set each deep zoom composition parameter manually, because there are deep zoom compositions out there in the internet without having the standard Deep Zoom Composer XML format. </p>
<p>One nice example of such a collection is the <a href="http://rubrik.ch.msn.com/reportagen/zermatt.aspx" target="_blank">“Matterhorn Deep Zoom Collection”</a> created by Ronnie Saurenmann (Microsoft Switzerland).</p>
<p><a href="http://rubrik.ch.msn.com/reportagen/zermatt.aspx" target="_blank"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="image" border="0" alt="image" src="http://bkiener.files.wordpress.com/2010/03/image1.png?w=90&#038;h=72" width="90" height="72" /></a> </p>
<p>Enter the following values to test the downloader with his collection:</p>
<ul>
<li>URL Pattern: http://ronnie.blob.core.windows.net/zermatt/Tiles/560mmMatterhornSchwarzsee/{0}/{1}_{2}.jpg</li>
<li>Levels: 17</li>
<li>Tile Width: 254</li>
<li>Tile Height: 254</li>
<li>Tile Overlap: 1</li>
<li>Image Width: 55569</li>
<li>Image Height: 30064</li>
</ul>
<p>&#160;</p>
</p>
<p>In the <em>Tiles Downloader</em> tab, the application allows to set the root folder of the deep zoom composition (containing the folder levels 0, 1, 2, 3, 4, 5, etc), specifying the download target folder and to start the download.</p>
<p><a href="http://bkiener.files.wordpress.com/2010/03/image2.png"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="image" border="0" alt="image" src="http://bkiener.files.wordpress.com/2010/03/image_thumb1.png?w=665&#038;h=497" width="665" height="497" /></a> </p>
<h2>&#160;</h2>
<h2>ViewModel implementation</h2>
<p>I’m using the Bitmap from the GDI to rebuild the image. A 32 bit RGB formatted bitmap uses 32 bit i.e. 4 bytes to store data for each pixel. So if you try to rebuild a large deep zoom composition with as example of 50000&#215;50000 pixels then the memory the downloader needs to allocate dynamically for the image is very large 50000*50000*4 bytes which is roughly about 9 GB in memory. While this is not possible with GDI the downloader downloads the image in smaller portion so you might get an image portioned as following (example show image in 5 portions):</p>
<p><a href="http://bkiener.files.wordpress.com/2010/03/image3.png"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="image" border="0" alt="image" src="http://bkiener.files.wordpress.com/2010/03/image_thumb2.png?w=593&#038;h=438" width="593" height="438" /></a> </p>
<p>It should be very easy to build the final image with Photoshop or ImageMagick from the portioned tiles. Feel free to extend the downloader with a better approach while using a 3<sup>rd</sup> party image lib.</p>
<p>A note about the performance: the downloader rebuilds or downloads images tile-by-tile. I did not have enough time to do it parallel in several threads.</p>
<h2>Summary</h2>
<p>It’s quite the same to implement a ViewModel in WPF and Silverlight for such very small applications. The only difference I can see so far is the missing constraint for asynchron web request in WPF. This makes the implementation a little bit simpler. The binding expressions are identically to Silverlight, because I don’t need any special here. The command binding was easier to write because the Command property is supported from the ButtonBase natively (Silverlight will provide the same in version 4).</p>
<p>I know, this is a quite simple application and things get complicated when the application gets more complex.</p>
<p>Feedbacks are welcome.</p>
<h2>Source code</h2>
<p>You can download the source code here:</p>
<p><a href="http://files.thekieners.com/blogcontent/2010/DeepZoomDownloader/source.zip" target="_blank">http://files.thekieners.com/blogcontent/2010/DeepZoomDownloader/source.zip</a></p>
<h2>One final note</h2>
<p>This downloader was implemented just for fun. Please consider copyrights when downloading deep zoom images.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/bkiener.wordpress.com/404/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/bkiener.wordpress.com/404/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/bkiener.wordpress.com/404/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/bkiener.wordpress.com/404/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/bkiener.wordpress.com/404/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/bkiener.wordpress.com/404/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/bkiener.wordpress.com/404/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/bkiener.wordpress.com/404/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/bkiener.wordpress.com/404/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/bkiener.wordpress.com/404/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/bkiener.wordpress.com/404/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/bkiener.wordpress.com/404/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/bkiener.wordpress.com/404/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/bkiener.wordpress.com/404/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.thekieners.com&amp;blog=7436128&amp;post=404&amp;subd=bkiener&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://blog.thekieners.com/2010/03/02/deep-zoom-collection-downloader/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/bbdffd0b655e44e12898217ff1973ad3?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">beatkiener</media:title>
		</media:content>

		<media:content url="http://bkiener.files.wordpress.com/2010/03/image_thumb.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://bkiener.files.wordpress.com/2010/03/image1.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://bkiener.files.wordpress.com/2010/03/image_thumb1.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://bkiener.files.wordpress.com/2010/03/image_thumb2.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>
	</item>
		<item>
		<title>My first Microsoft Certification Exam</title>
		<link>http://blog.thekieners.com/2010/01/11/my-first-microsoft-certification-exam/</link>
		<comments>http://blog.thekieners.com/2010/01/11/my-first-microsoft-certification-exam/#comments</comments>
		<pubDate>Mon, 11 Jan 2010 09:50:00 +0000</pubDate>
		<dc:creator>beatkiener</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Exam]]></category>
		<category><![CDATA[MCTS]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Silverlight]]></category>
		<category><![CDATA[WPF]]></category>

		<guid isPermaLink="false">http://bkiener.wordpress.com/2010/01/11/my-first-microsoft-certification-exam/</guid>
		<description><![CDATA[Last week I have passed the Microsoft Certification Exam 70-502 &#8220;Windows Presentation Foundation Application Development&#8221; successfully. After working about 2 year with WPF/Silverlight technology I decided to verify my knowledge with this exam. Here my result: &#160; I used the book &#8220;MCTS Self-Paced Training Kit&#8220; as my main study guide. My final preparation duration with [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.thekieners.com&amp;blog=7436128&amp;post=329&amp;subd=bkiener&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Last week I have passed the Microsoft Certification Exam 70-502 &#8220;Windows Presentation Foundation Application Development&#8221; successfully. After working about 2 year with WPF/Silverlight technology I decided to verify my knowledge with this exam.</p>
<p>Here my result:</p>
<p><a href="http://bkiener.files.wordpress.com/2010/01/image.png"><img style="display:inline;border-width:0;" title="image" src="http://bkiener.files.wordpress.com/2010/01/image_thumb.png?w=591&#038;h=427" alt="image" width="591" height="427" border="0" /></a></p>
<p>&nbsp;</p>
<p>I used the book &#8220;MCTS Self-Paced Training Kit<strong>&#8220;</strong> as my main study guide.<br />
My final preparation duration with this book was around one month.</p>
<p><a href="http://bkiener.files.wordpress.com/2010/01/image1.png"><img style="display:inline;border-width:0;" title="image" src="http://bkiener.files.wordpress.com/2010/01/image_thumb1.png?w=175&#038;h=214" alt="image" width="175" height="214" border="0" /></a></p>
<p>Next step is to pass the Exam<strong> </strong>70-536 &#8220;Microsoft .NET Framework Application Development&#8221;.<br />
Let&#8217;s see. Maybe next month.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/bkiener.wordpress.com/329/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/bkiener.wordpress.com/329/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/bkiener.wordpress.com/329/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/bkiener.wordpress.com/329/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/bkiener.wordpress.com/329/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/bkiener.wordpress.com/329/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/bkiener.wordpress.com/329/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/bkiener.wordpress.com/329/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/bkiener.wordpress.com/329/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/bkiener.wordpress.com/329/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/bkiener.wordpress.com/329/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/bkiener.wordpress.com/329/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/bkiener.wordpress.com/329/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/bkiener.wordpress.com/329/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.thekieners.com&amp;blog=7436128&amp;post=329&amp;subd=bkiener&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://blog.thekieners.com/2010/01/11/my-first-microsoft-certification-exam/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/bbdffd0b655e44e12898217ff1973ad3?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">beatkiener</media:title>
		</media:content>

		<media:content url="http://bkiener.files.wordpress.com/2010/01/image_thumb.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://bkiener.files.wordpress.com/2010/01/image_thumb1.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>
	</item>
	</channel>
</rss>
