<?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>Wackylabs.net</title>
	<atom:link href="http://www.wackylabs.net/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.wackylabs.net</link>
	<description>Mostly code, sometimes something else, always slightly wacky.</description>
	<lastBuildDate>Fri, 15 Mar 2013 00:19:02 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
		<item>
		<title>Weekly Tweet Update 14-03-2013</title>
		<link>http://www.wackylabs.net/2013/03/weekly-tweet-update-14-03-2013/</link>
		<comments>http://www.wackylabs.net/2013/03/weekly-tweet-update-14-03-2013/#comments</comments>
		<pubDate>Fri, 15 Mar 2013 00:19:02 +0000</pubDate>
		<dc:creator>Sam</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[tweets]]></category>
		<category><![CDATA[twitter]]></category>

		<guid isPermaLink="false">http://www.wackylabs.net/2013/03/weekly-tweet-update-14-03-2013/</guid>
		<description><![CDATA[Impossible dice 😃 http://t.co/RJ2md8BgaO -&#62; Learn css... http://t.co/boktIaCg1E sweet #css #layout -&#62; AngularJS get started videos. http://t.co/nIz0e2UqKg -&#62; http://t.co/Ef5qmtj922 cool jquery menu -&#62;]]></description>
				<content:encoded><![CDATA[<ul class="ws_tweet_list">
<li class="ws_tweet">Impossible dice 😃 <a href="http://t.co/RJ2md8BgaO" rel="nofollow">http://t.co/RJ2md8BgaO</a> <a class="ws_tweet_time" href="http://twitter.com/samjudson/statuses/312306459608223744">-&gt;</a></li>
<li class="ws_tweet">Learn css... <a href="http://t.co/boktIaCg1E" rel="nofollow">http://t.co/boktIaCg1E</a> sweet <a href="http://search.twitter.com/search?q=%23css">#css</a> <a href="http://search.twitter.com/search?q=%23layout">#layout</a> <a class="ws_tweet_time" href="http://twitter.com/samjudson/statuses/311949258091814912">-&gt;</a></li>
<li class="ws_tweet">AngularJS get started videos. <a href="http://t.co/nIz0e2UqKg" rel="nofollow">http://t.co/nIz0e2UqKg</a> <a class="ws_tweet_time" href="http://twitter.com/samjudson/statuses/310075802333106177">-&gt;</a></li>
<li class="ws_tweet"><a href="http://t.co/Ef5qmtj922" rel="nofollow">http://t.co/Ef5qmtj922</a> cool jquery menu <a class="ws_tweet_time" href="http://twitter.com/samjudson/statuses/310031483005988865">-&gt;</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.wackylabs.net/2013/03/weekly-tweet-update-14-03-2013/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>IEnumberable.Max and Nullable types</title>
		<link>http://www.wackylabs.net/2013/02/ienumberable-max-and-nullable-types/</link>
		<comments>http://www.wackylabs.net/2013/02/ienumberable-max-and-nullable-types/#comments</comments>
		<pubDate>Fri, 22 Feb 2013 10:11:44 +0000</pubDate>
		<dc:creator>Sam</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[c#]]></category>
		<category><![CDATA[max]]></category>
		<category><![CDATA[nullable]]></category>

		<guid isPermaLink="false">http://www.wackylabs.net/?p=354</guid>
		<description><![CDATA[Came across an interesting little snippet of code today. var max = list.Max(i =&#62; i.Value) This simply returns the maximum value of the "Value" property in the list. However there is a possible problem with this code, depending on the &#8230; <a href="http://www.wackylabs.net/2013/02/ienumberable-max-and-nullable-types/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p>Came across an interesting little snippet of code today.</p>
<blockquote>
<pre>var max = list.Max(i =&gt; i.Value)</pre>
</blockquote>
<p>This simply returns the maximum value of the "Value" property in the list. However there is a possible problem with this code, depending on the type of Value and the number of elements in the list.</p>
<p>If there are NO elements in the list and Value is NOT nullable (e.g. it is a Integer) then the above will throw an exception.</p>
<p>If there are NO elements in the list and Value IS nullable then it will return NULL.</p>
<blockquote>
<pre>var max = list.Max(i =&gt; i.Value ?? 0)</pre>
</blockquote>
<p>If the list is empty and Value IS nullable then the above will also throw an exception.</p>
<blockquote>
<pre>var max = list.Max(i =&gt; i.Value) ?? 0</pre>
</blockquote>
<p>If the list is empty and Value IS nullable then the above will return 0.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.wackylabs.net/2013/02/ienumberable-max-and-nullable-types/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Image widths in emails</title>
		<link>http://www.wackylabs.net/2013/01/image-widths-in-emails/</link>
		<comments>http://www.wackylabs.net/2013/01/image-widths-in-emails/#comments</comments>
		<pubDate>Mon, 07 Jan 2013 12:26:30 +0000</pubDate>
		<dc:creator>Sam</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[email]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[img]]></category>
		<category><![CDATA[width]]></category>

		<guid isPermaLink="false">http://www.wackylabs.net/?p=349</guid>
		<description><![CDATA[While hacking around trying to include some images in an email I was trying to set the height and width of the IMG tag. This wasn't working at all (which I had read about) but then I put the images &#8230; <a href="http://www.wackylabs.net/2013/01/image-widths-in-emails/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p>While hacking around trying to include some images in an email I was trying to set the height and width of the IMG tag. This wasn't working at all (which I had read about) but then I put the images in a table with a cellpadding and all of a sudden the images are being resized.</p>
<p>Not sure why that is but thought it might help anyone trying to do the same thing.</p>
<p>&lt;table cellpadding="1"&gt;<br />
&lt;tr&gt;&lt;td&gt;&lt;img width="100" height="50" src="https://www.google.co.uk/images/srpr/logo3w.png" /&gt;&lt;/td&gt;&lt;/tr&gt;<br />
&lt;/table&gt;</p>
<p>Note: Only really tested in Outlook 2010, so might not work in other email clients.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.wackylabs.net/2013/01/image-widths-in-emails/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Weekly Tweet Update 03-01-2013</title>
		<link>http://www.wackylabs.net/2013/01/weekly-tweet-update-03-01-2013/</link>
		<comments>http://www.wackylabs.net/2013/01/weekly-tweet-update-03-01-2013/#comments</comments>
		<pubDate>Fri, 04 Jan 2013 00:19:11 +0000</pubDate>
		<dc:creator>Sam</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[tweets]]></category>
		<category><![CDATA[twitter]]></category>

		<guid isPermaLink="false">http://www.wackylabs.net/2013/01/weekly-tweet-update-03-01-2013/</guid>
		<description><![CDATA[http://t.co/DQ8Y5cd4 4.5 &#38; MVC 4: Revisiting IBundleTransform - via http://t.co/DQ8Y5cd4 Community Spotlight http://t.co/7UpDrhFw -&#62; Announcing the release of the .NET Framework for Windows Phone 8 - via .NET Blog http://t.co/yVZJQaEK -&#62; New tools for Windows Phone 8 save developers time &#8230; <a href="http://www.wackylabs.net/2013/01/weekly-tweet-update-03-01-2013/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<ul class="ws_tweet_list">
<li class="ws_tweet"><a href="http://t.co/DQ8Y5cd4" rel="nofollow">http://t.co/DQ8Y5cd4</a> 4.5 &amp; MVC 4: Revisiting IBundleTransform - via <a href="http://t.co/DQ8Y5cd4" rel="nofollow">http://t.co/DQ8Y5cd4</a> Community Spotlight <a href="http://t.co/7UpDrhFw" rel="nofollow">http://t.co/7UpDrhFw</a> <a class="ws_tweet_time" href="http://twitter.com/samjudson/statuses/286441725638086656">-&gt;</a></li>
<li class="ws_tweet">Announcing the release of the .NET Framework for Windows Phone 8 - via .NET Blog <a href="http://t.co/yVZJQaEK" rel="nofollow">http://t.co/yVZJQaEK</a> <a class="ws_tweet_time" href="http://twitter.com/samjudson/statuses/286079416315043841">-&gt;</a></li>
<li class="ws_tweet">New tools for Windows Phone 8 save developers time and money - via Windows Phone Developer Blog <a href="http://t.co/Nj0AwfHx" rel="nofollow">http://t.co/Nj0AwfHx</a> <a class="ws_tweet_time" href="http://twitter.com/samjudson/statuses/285716952951975936">-&gt;</a></li>
<li class="ws_tweet">Asynchronous Programming for Windows Store Apps: .NET is up to the Task - via .NET Blog <a href="http://t.co/1B8jdIcX" rel="nofollow">http://t.co/1B8jdIcX</a> <a class="ws_tweet_time" href="http://twitter.com/samjudson/statuses/284992233290219522">-&gt;</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.wackylabs.net/2013/01/weekly-tweet-update-03-01-2013/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Weekly Tweet Update 11-10-2012</title>
		<link>http://www.wackylabs.net/2012/10/weekly-tweet-update-11-10-2012/</link>
		<comments>http://www.wackylabs.net/2012/10/weekly-tweet-update-11-10-2012/#comments</comments>
		<pubDate>Fri, 12 Oct 2012 03:19:08 +0000</pubDate>
		<dc:creator>Sam</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[tweets]]></category>
		<category><![CDATA[twitter]]></category>

		<guid isPermaLink="false">http://www.wackylabs.net/2012/10/weekly-tweet-update-11-10-2012/</guid>
		<description><![CDATA[http://t.co/DTqA70El... http://t.co/2AEbsLiA -&#62; OQuery - Building OData query fragments without LINQ in C# for Visual Studio 2010 - Kinda hope I don&#039;t ever n… http://t.co/70lXPMuM -&#62; Spell Checker extension for Visual Studio 2012 - I saw this and thought - &#8230; <a href="http://www.wackylabs.net/2012/10/weekly-tweet-update-11-10-2012/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<ul class="ws_tweet_list">
<li class="ws_tweet"><a href="http://t.co/DTqA70El" rel="nofollow">http://t.co/DTqA70El</a>... <a href="http://t.co/2AEbsLiA" rel="nofollow">http://t.co/2AEbsLiA</a> <a class="ws_tweet_time" href="http://twitter.com/samjudson/statuses/255986143617757184">-&gt;</a></li>
<li class="ws_tweet">OQuery - Building OData query fragments without LINQ in C# for Visual Studio 2010 - Kinda hope I don&#039;t ever n… <a href="http://t.co/70lXPMuM" rel="nofollow">http://t.co/70lXPMuM</a> <a class="ws_tweet_time" href="http://twitter.com/samjudson/statuses/255261317445865472">-&gt;</a></li>
<li class="ws_tweet">Spell Checker extension for Visual Studio 2012 - I saw this and thought - ooh, my code comments will be spell… <a href="http://t.co/AROgyjyn" rel="nofollow">http://t.co/AROgyjyn</a> <a class="ws_tweet_time" href="http://twitter.com/samjudson/statuses/254898868884471808">-&gt;</a></li>
<li class="ws_tweet">Hello TypeScript – Getting Started - TypeScript looks interesting. Will it catch on though that is the questi… <a href="http://t.co/Buglxzu0" rel="nofollow">http://t.co/Buglxzu0</a> <a class="ws_tweet_time" href="http://twitter.com/samjudson/statuses/254550753396531200">-&gt;</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.wackylabs.net/2012/10/weekly-tweet-update-11-10-2012/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Weekly Tweet Update 27-09-2012</title>
		<link>http://www.wackylabs.net/2012/09/weekly-tweet-update-27-09-2012/</link>
		<comments>http://www.wackylabs.net/2012/09/weekly-tweet-update-27-09-2012/#comments</comments>
		<pubDate>Fri, 28 Sep 2012 00:19:51 +0000</pubDate>
		<dc:creator>Sam</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[tweets]]></category>
		<category><![CDATA[twitter]]></category>

		<guid isPermaLink="false">http://www.wackylabs.net/2012/09/weekly-tweet-update-27-09-2012/</guid>
		<description><![CDATA[Your Colorful Visual Studio 2012 with the Color Theme Editor (VS2010 colors, too) - If you REALLY don&#039;t like … http://t.co/QtqTbP4B -&#62; http://t.co/DQ8Y5cd4 Data Access Guidance Published - (read) http://t.co/y4M1txO0 -&#62; A harsh reminder about the importance of debug=”false” - &#8230; <a href="http://www.wackylabs.net/2012/09/weekly-tweet-update-27-09-2012/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<ul class="ws_tweet_list">
<li class="ws_tweet">Your Colorful Visual Studio 2012 with the Color Theme Editor (VS2010 colors, too) - If you REALLY don&#039;t like … <a href="http://t.co/QtqTbP4B" rel="nofollow">http://t.co/QtqTbP4B</a> <a class="ws_tweet_time" href="http://twitter.com/samjudson/statuses/250187842972704768">-&gt;</a></li>
<li class="ws_tweet"><a href="http://t.co/DQ8Y5cd4" rel="nofollow">http://t.co/DQ8Y5cd4</a> Data Access Guidance Published - (read) <a href="http://t.co/y4M1txO0" rel="nofollow">http://t.co/y4M1txO0</a> <a class="ws_tweet_time" href="http://twitter.com/samjudson/statuses/249463081086898176">-&gt;</a></li>
<li class="ws_tweet">A harsh reminder about the importance of debug=”false” - Yep, very important reminder. <a href="http://t.co/uUqZLWLn" rel="nofollow">http://t.co/uUqZLWLn</a> <a class="ws_tweet_time" href="http://twitter.com/samjudson/statuses/249100715442704384">-&gt;</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.wackylabs.net/2012/09/weekly-tweet-update-27-09-2012/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Weekly Tweet Update 13-09-2012</title>
		<link>http://www.wackylabs.net/2012/09/weekly-tweet-update-13-09-2012/</link>
		<comments>http://www.wackylabs.net/2012/09/weekly-tweet-update-13-09-2012/#comments</comments>
		<pubDate>Fri, 14 Sep 2012 00:21:07 +0000</pubDate>
		<dc:creator>Sam</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[tweets]]></category>
		<category><![CDATA[twitter]]></category>

		<guid isPermaLink="false">http://www.wackylabs.net/2012/09/weekly-tweet-update-13-09-2012/</guid>
		<description><![CDATA[Blogs &#62; Fresh off the Press – “Time-Saving Features in Visual Studio 2012 and ASPNET 4.5” Free E-book - Downl… http://t.co/7FoQTsju -&#62; How To Auto-login Using http://t.co/4kDhtFFn FormsAuthentication « Math and More http://t.co/h7krYprH -&#62; An Introduction to http://t.co/DQ8Y5cd4 Web API &#8230; <a href="http://www.wackylabs.net/2012/09/weekly-tweet-update-13-09-2012/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<ul class="ws_tweet_list">
<li class="ws_tweet">Blogs &gt; Fresh off the Press – “Time-Saving Features in Visual Studio 2012 and ASPNET 4.5” Free E-book - Downl… <a href="http://t.co/7FoQTsju" rel="nofollow">http://t.co/7FoQTsju</a> <a class="ws_tweet_time" href="http://twitter.com/samjudson/statuses/246201668163731456">-&gt;</a></li>
<li class="ws_tweet">How To Auto-login Using <a href="http://t.co/4kDhtFFn" rel="nofollow">http://t.co/4kDhtFFn</a> FormsAuthentication « Math and More <a href="http://t.co/h7krYprH" rel="nofollow">http://t.co/h7krYprH</a> <a class="ws_tweet_time" href="http://twitter.com/samjudson/statuses/245839279937433600">-&gt;</a></li>
<li class="ws_tweet">An Introduction to <a href="http://t.co/DQ8Y5cd4" rel="nofollow">http://t.co/DQ8Y5cd4</a> Web API - Rick Strahl&#039;s Web Log <a href="http://t.co/AJ9VgGvn" rel="nofollow">http://t.co/AJ9VgGvn</a> <a class="ws_tweet_time" href="http://twitter.com/samjudson/statuses/245476895272087554">-&gt;</a></li>
<li class="ws_tweet"><a href="http://t.co/uYlhpzj3" rel="nofollow">http://t.co/uYlhpzj3</a>... <a href="http://t.co/h9n0SFKk" rel="nofollow">http://t.co/h9n0SFKk</a> <a class="ws_tweet_time" href="http://twitter.com/samjudson/statuses/245158476882526208">-&gt;</a></li>
<li class="ws_tweet">Building Single Page Apps with Knockout, jQuery, and Web API - Gonna read this, but it looks like its long! <a href="http://t.co/ZvaWkYp4" rel="nofollow">http://t.co/ZvaWkYp4</a> <a class="ws_tweet_time" href="http://twitter.com/samjudson/statuses/245114421955936257">-&gt;</a></li>
<li class="ws_tweet">Windows 8 productivity: Who moved my cheese? Oh, there it is. - Scott Hanselman - Yes, there it is... <a href="http://t.co/xihsRt9g" rel="nofollow">http://t.co/xihsRt9g</a> <a class="ws_tweet_time" href="http://twitter.com/samjudson/statuses/244389718735855617">-&gt;</a></li>
<li class="ws_tweet">Supporting OData $inlinecount with the new Web API OData preview package - Used this as the basis to a simply… <a href="http://t.co/ZpEJzXj8" rel="nofollow">http://t.co/ZpEJzXj8</a> <a class="ws_tweet_time" href="http://twitter.com/samjudson/statuses/244027241976172546">-&gt;</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.wackylabs.net/2012/09/weekly-tweet-update-13-09-2012/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Weekly Tweet Update 16-08-2012</title>
		<link>http://www.wackylabs.net/2012/08/weekly-tweet-update-16-08-2012/</link>
		<comments>http://www.wackylabs.net/2012/08/weekly-tweet-update-16-08-2012/#comments</comments>
		<pubDate>Fri, 17 Aug 2012 00:19:02 +0000</pubDate>
		<dc:creator>Sam</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[tweets]]></category>
		<category><![CDATA[twitter]]></category>

		<guid isPermaLink="false">http://www.wackylabs.net/2012/08/weekly-tweet-update-16-08-2012/</guid>
		<description><![CDATA[Tiny Happy Features #1 - T4 Template Debugging in Visual Studio 2012 - Scott Hanselman - Long time coming thi… http://t.co/GTdpj1CA -&#62; I just ousted @globetrottertje as the mayor of Costa Coffee on @foursquare! http://t.co/Cc6K3myV -&#62; Error Handling with ELMAH &#8230; <a href="http://www.wackylabs.net/2012/08/weekly-tweet-update-16-08-2012/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<ul class="ws_tweet_list">
<li class="ws_tweet">Tiny Happy Features <a href="http://search.twitter.com/search?q=%231">#1</a> - T4 Template Debugging in Visual Studio 2012 - Scott Hanselman - Long time coming thi… <a href="http://t.co/GTdpj1CA" rel="nofollow">http://t.co/GTdpj1CA</a> <a class="ws_tweet_time" href="http://twitter.com/samjudson/statuses/235148737792598017">-&gt;</a></li>
<li class="ws_tweet">I just ousted <a href="http://twitter.com/globetrottertje">@globetrottertje</a> as the mayor of Costa Coffee on <a href="http://twitter.com/foursquare">@foursquare</a>! <a href="http://t.co/Cc6K3myV" rel="nofollow">http://t.co/Cc6K3myV</a> <a class="ws_tweet_time" href="http://twitter.com/samjudson/statuses/235029358270627840">-&gt;</a></li>
<li class="ws_tweet">Error Handling with ELMAH in <a href="http://t.co/DQ8Y5cd4" rel="nofollow">http://t.co/DQ8Y5cd4</a> MVC <a href="http://t.co/oj9D8D5x" rel="nofollow">http://t.co/oj9D8D5x</a> <a class="ws_tweet_time" href="http://twitter.com/samjudson/statuses/234967538277167105">-&gt;</a></li>
<li class="ws_tweet">Data Binding with DbContext - Entity Framework Design - Site Home - MSDN Blogs - Notes to self... <a href="http://t.co/nQljJ2kv" rel="nofollow">http://t.co/nQljJ2kv</a> <a class="ws_tweet_time" href="http://twitter.com/samjudson/statuses/234605151095250944">-&gt;</a></li>
<li class="ws_tweet">Testing With a Fake DbContext « <a href="http://t.co/YkWpIj42" rel="nofollow">http://t.co/YkWpIj42</a> <a href="http://t.co/ImtflsQ8" rel="nofollow">http://t.co/ImtflsQ8</a> <a class="ws_tweet_time" href="http://twitter.com/samjudson/statuses/234242764282421248">-&gt;</a></li>
<li class="ws_tweet">Using Constraints for Better Routing in MVC | greatrexpectations - Recently learnt about constraints myself, … <a href="http://t.co/vkSNvwXG" rel="nofollow">http://t.co/vkSNvwXG</a> <a class="ws_tweet_time" href="http://twitter.com/samjudson/statuses/233880376051892225">-&gt;</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.wackylabs.net/2012/08/weekly-tweet-update-16-08-2012/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>FlickrNet 3.5 Release</title>
		<link>http://www.wackylabs.net/2012/08/flickrnet-3-5-release/</link>
		<comments>http://www.wackylabs.net/2012/08/flickrnet-3-5-release/#comments</comments>
		<pubDate>Tue, 14 Aug 2012 14:22:09 +0000</pubDate>
		<dc:creator>Sam</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[Flickr]]></category>
		<category><![CDATA[Flickr-API]]></category>
		<category><![CDATA[flickrnet]]></category>

		<guid isPermaLink="false">http://www.wackylabs.net/?p=333</guid>
		<description><![CDATA[Just a quick post to say I've release version 3.5 of the FlickrNet API library. A couple of things regarding this version and the FlickrNet library roadmap: This will be the last version to support the old Authentication model. Going &#8230; <a href="http://www.wackylabs.net/2012/08/flickrnet-3-5-release/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p>Just a quick post to say I've release version 3.5 of the FlickrNet API library.</p>
<p>A couple of things regarding this version and the FlickrNet library roadmap:</p>
<ul>
<li>This will be the last version to support the old Authentication model. Going forward only oauth will be supported.</li>
<li>This will also be the last version to support .Net Compact Framework.</li>
</ul>
<p>Going forward I also hope the next version will support Windows Runtime as well, at least for .Net applications (not sure about JavaScript/C++ support yet).</p>
<p>Download it from <a href="http://flickrnet.codeplex.com/">http://flickrnet.codeplex.com/</a> or get it via <a href="http://nuget.org/packages/FlickrNet">NuGet</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.wackylabs.net/2012/08/flickrnet-3-5-release/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Weekly Tweet Update 09-08-2012</title>
		<link>http://www.wackylabs.net/2012/08/weekly-tweet-update-09-08-2012/</link>
		<comments>http://www.wackylabs.net/2012/08/weekly-tweet-update-09-08-2012/#comments</comments>
		<pubDate>Fri, 10 Aug 2012 00:18:43 +0000</pubDate>
		<dc:creator>Sam</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[tweets]]></category>
		<category><![CDATA[twitter]]></category>

		<guid isPermaLink="false">http://www.wackylabs.net/2012/08/weekly-tweet-update-09-08-2012/</guid>
		<description><![CDATA[Microsoft Attack Surface Analyzer 1.0 Released - Another tool to look at adding into my development pipeline. http://t.co/JMnPu9v9 -&#62; Exiting a batch file without exiting the command shell -and- batch file subroutines - Batch file subroutines?… http://t.co/Ll4wdC6J -&#62; NCrunch for &#8230; <a href="http://www.wackylabs.net/2012/08/weekly-tweet-update-09-08-2012/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<ul class="ws_tweet_list">
<li class="ws_tweet">Microsoft Attack Surface Analyzer 1.0 Released - Another tool to look at adding into my development pipeline. <a href="http://t.co/JMnPu9v9" rel="nofollow">http://t.co/JMnPu9v9</a> <a class="ws_tweet_time" href="http://twitter.com/samjudson/statuses/233699188259569664">-&gt;</a></li>
<li class="ws_tweet">Exiting a batch file without exiting the command shell -and- batch file subroutines - Batch file subroutines?… <a href="http://t.co/Ll4wdC6J" rel="nofollow">http://t.co/Ll4wdC6J</a> <a class="ws_tweet_time" href="http://twitter.com/samjudson/statuses/233517987003510784">-&gt;</a></li>
<li class="ws_tweet">NCrunch for Visual Studio - Loving this wonderful tool for unit testing <a href="http://t.co/tTPcCdCM" rel="nofollow">http://t.co/tTPcCdCM</a> <a class="ws_tweet_time" href="http://twitter.com/samjudson/statuses/233155597678301184">-&gt;</a></li>
<li class="ws_tweet">Productivity vs. Guilt and Self-Loathing - Scott Hanselman - Something I agree wholeheartedly with. <a href="http://t.co/ma443pAe" rel="nofollow">http://t.co/ma443pAe</a> <a class="ws_tweet_time" href="http://twitter.com/samjudson/statuses/232793212522221568">-&gt;</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.wackylabs.net/2012/08/weekly-tweet-update-09-08-2012/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
