<?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>Bones Brigadier – Recycling Code Depot</title>
	<atom:link href="http://bonesbrigadier.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://bonesbrigadier.com</link>
	<description>A journey into programming, music and skateboarding…</description>
	<lastBuildDate>Tue, 17 May 2011 12:30:08 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>My small tribute to an unknown (to me) skateboarder &#8211; Brighton &amp; Hove</title>
		<link>http://bonesbrigadier.com/my-small-tribute-to-a-skateboarder/</link>
		<comments>http://bonesbrigadier.com/my-small-tribute-to-a-skateboarder/#comments</comments>
		<pubDate>Tue, 17 May 2011 12:28:52 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Music]]></category>
		<category><![CDATA[Skateboarding]]></category>

		<guid isPermaLink="false">http://bonesbrigadier.com/?p=151</guid>
		<description><![CDATA[Last weekend I noticed this on a Brighton bench. I had to share.]]></description>
			<content:encoded><![CDATA[<p>Last weekend I noticed this on a Brighton bench.</p>
<p><a href="http://bonesbrigadier.com/wp-content/uploads/2011/05/SkateboarderTribute.jpg"><img src="http://bonesbrigadier.com/wp-content/uploads/2011/05/SkateboarderTribute-300x225.jpg" alt="Skateboarder tribute" title="Skateboarder tribute" width="300" height="225" class="alignnone size-medium wp-image-152" /></a></p>
<p>I had to share.</p>
]]></content:encoded>
			<wfw:commentRss>http://bonesbrigadier.com/my-small-tribute-to-a-skateboarder/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Show tweets including retweets from user with Linq2Twitter issue</title>
		<link>http://bonesbrigadier.com/show-tweets-including-retweets-from-user-with-linq2twitter-issue/</link>
		<comments>http://bonesbrigadier.com/show-tweets-including-retweets-from-user-with-linq2twitter-issue/#comments</comments>
		<pubDate>Mon, 16 May 2011 07:34:25 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[C#]]></category>
		<category><![CDATA[Linq2Twitter]]></category>

		<guid isPermaLink="false">http://bonesbrigadier.com/?p=76</guid>
		<description><![CDATA[I came across a weird one this week. I have been working on a brand new project at work and one of the user stories was about a Twitter &#8220;widget&#8221; with tweets from a specific user. It was specified that the user could be any user and didn&#8217;t need to be authenticated. This is how [...]]]></description>
			<content:encoded><![CDATA[<p>I came across a weird one this week.</p>
<p>I have been working on a brand new project at work and one of the user stories was about a Twitter &#8220;widget&#8221; with tweets from a specific user. It was specified that the user could be any user and didn&#8217;t need to be authenticated. This is how I implemented it:</p>
<pre class="brush: csharp">
var twitterContext = new TwitterContext();

var statusTweets = from tweet in twitterContext.Status
                   where tweet.Type == StatusType.User &amp;&amp;
                   tweet.ScreenName == username
                   select tweet;
</pre>
<p>Then the requirements changed to include retweets from the same user. I changed my code to this:</p>
<pre class="brush: csharp">
var twitterContext = new TwitterContext();

var statusTweets = from tweet in twitterContext.Status
                   where tweet.Type == StatusType.User &amp;&amp;
                   tweet.ScreenName == username &amp;&amp;
                   tweet.IncludeRetweets
                   select tweet;
</pre>
<p>But when doing that, nothing was being returned.</p>
<p>After a long time trying other approaches I finally found what the problem was. Because I use Resharper I was advised to write &#8216;tweet.IncludeRetweets == true&#8217; as only &#8216;tweet.IncludeRetweets&#8217; and that just didn&#8217;t work. You actually need to have &#8216;tweet.IncludeRetweets == true&#8217;.</p>
<p>So, here is the correct code to get tweets from a user including retweets without being authenticated:</p>
<pre class="brush: csharp">
var twitterContext = new TwitterContext();

var statusTweets = from tweet in twitterContext.Status
                   where tweet.Type == StatusType.User &amp;&amp;
                   tweet.ScreenName == username &amp;&amp;
                   tweet.IncludeRetweets == true
                   select tweet;
</pre>
<p>I hope someone will find this useful.</p>
]]></content:encoded>
			<wfw:commentRss>http://bonesbrigadier.com/show-tweets-including-retweets-from-user-with-linq2twitter-issue/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Les Claypool &#8211; South of the Pumphouse</title>
		<link>http://bonesbrigadier.com/les-claypool-south-of-the-pumphouse/</link>
		<comments>http://bonesbrigadier.com/les-claypool-south-of-the-pumphouse/#comments</comments>
		<pubDate>Tue, 10 May 2011 21:52:03 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Music]]></category>
		<category><![CDATA[Reading]]></category>

		<guid isPermaLink="false">http://bonesbrigadier.com/?p=66</guid>
		<description><![CDATA[As a great fan of Les Claypool I just had to get &#8220;South of the Pumphouse&#8221; &#8211; his novel. Yeah, I know it was released in 2007&#8230; Anyway, I wasn&#8217;t sure if I would enjoy reading a novel as I do not usually read anything but technical books/manuals, cd/dvd covers lyrics and subtitles (and, being [...]]]></description>
			<content:encoded><![CDATA[<p>As a great fan of Les Claypool I just had to get &#8220;South of the Pumphouse&#8221; &#8211; his novel. Yeah, I know it was released in 2007&#8230;</p>
<p>Anyway, I wasn&#8217;t sure if I would enjoy reading a novel as I do not usually read anything but technical books/manuals, cd/dvd covers lyrics and subtitles (and, being a vegan I also read all and any ingredients labels and the odd take-away leaflet) but this is a really interesting read. Kind of like watching a twisted and dark plasticine animation.</p>
<p>I am really enjoying the experience and cannot wait to read the next chapter &#8211; which I should be doing instead of writing this post, right?</p>
<p>Try reading Chapter 2 &#8211; &#8220;The Rage&#8221; if you can.</p>
<p>http://www.lesclaypool.com/pumphouse/</p>
]]></content:encoded>
			<wfw:commentRss>http://bonesbrigadier.com/les-claypool-south-of-the-pumphouse/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Kindle</title>
		<link>http://bonesbrigadier.com/kindle/</link>
		<comments>http://bonesbrigadier.com/kindle/#comments</comments>
		<pubDate>Mon, 28 Jun 2010 11:13:40 +0000</pubDate>
		<dc:creator>BonesBrigadier</dc:creator>
				<category><![CDATA[Reading]]></category>
		<category><![CDATA[ebook]]></category>
		<category><![CDATA[Kindle]]></category>

		<guid isPermaLink="false">http://bonesbrigadier.com/?p=46</guid>
		<description><![CDATA[I bought a Kindle (6&#8221;). I did it because: - I like to read - I hate carrying heavy books around (I read them at home) &#8220;You could have bought an IPad instead&#8221; someone said. I didn&#8217;t because the IPad: - Is (a lot) more expensive - Has a lot of distractions and I want to [...]]]></description>
			<content:encoded><![CDATA[<p>I bought a Kindle (6&#8221;). I did it because:<br />
- I like to read<br />
- I hate carrying heavy books around (I read them at home)</p>
<p>&#8220;You could have bought an IPad instead&#8221; someone said. I didn&#8217;t because the IPad:<br />
- Is (a lot) more expensive<br />
- Has a lot of distractions and I want to focus on reading.</p>
<p>So, the Kindle arrived on friday and I knew I was going to love it straight away.</p>
<p>I transfered some PDFs to it (via USB) and all went smoothly. The problem was to read them&#8230; The font was just too small. I thought that would be the end of the Kindle experience for me but, as I said, I loved my Kindle and was not ready to give up straight away.</p>
<p>After a few searches I discovered there was a new version of the Kindle software available <a title="here" href="http://www.amazon.com/gp/help/customer/display.html?nodeId=200324680" target="_blank">here</a>.</p>
<p>Although the new pdf functionalities were an improvement, still weren&#8217;t good enough. Zoom is good but not the solution (when you zoom in you are left with horizontal and vertical scroll bars which are not easy to deal with).</p>
<p>Once again I remembered I loved my Kindle and so I was not yet ready to throw the towel.</p>
<p>A few more searches took me to a program called Calibre and this is where the magic happened! Installed it on my MacBook and added one PDF to it. Converted it to mobi format and transfered it to my Kindle. Opened it and voila! Success!</p>
<p>I love my Kindle.</p>
]]></content:encoded>
			<wfw:commentRss>http://bonesbrigadier.com/kindle/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>NAnt, NAntContrib and sln</title>
		<link>http://bonesbrigadier.com/nant-nantcontrib-and-sln/</link>
		<comments>http://bonesbrigadier.com/nant-nantcontrib-and-sln/#comments</comments>
		<pubDate>Tue, 22 Jun 2010 08:09:54 +0000</pubDate>
		<dc:creator>BonesBrigadier</dc:creator>
				<category><![CDATA[C#]]></category>
		<category><![CDATA[.NET]]></category>
		<category><![CDATA[Build]]></category>
		<category><![CDATA[NAnt]]></category>
		<category><![CDATA[NAntContrib]]></category>

		<guid isPermaLink="false">http://bonesbrigadier.com/?p=41</guid>
		<description><![CDATA[When running a NAnt build for a project I am working on at the moment I got the following error: &#8220;Failure scanning &#8216;{PathToNAnt.Contrib.Tasks.dll}&#8217; for extensions. Unable to load one or more of the requested types. Retrieve the LoaderExceptions property for more information.&#8221; This was obviously related to the NAntContrib &#60;msbuild&#62; task as per target below: [...]]]></description>
			<content:encoded><![CDATA[<p>When running a NAnt build for a project I am working on at the moment I got the following error:</p>
<p>&#8220;Failure scanning &#8216;{PathToNAnt.Contrib.Tasks.dll}&#8217; for extensions. Unable to load one or more of the requested types. Retrieve the LoaderExceptions property for more information.&#8221;</p>
<p>This was obviously related to the NAntContrib &lt;msbuild&gt; task as per target below:</p>
<p>&lt;target name=&#8221;devBuild&#8221; depends=&#8221;cleanDev&#8221; description=&#8221;"&gt;<br />
&lt;loadtasks assembly=&#8221;{PathToNAntContribTasksdll}&#8221; /&gt;<br />
&lt;msbuild project=&#8221;{SolutionFile.sln}&#8221; /&gt;<br />
&lt;/target&gt;</p>
<p>In the end, the problem was the version of NAntContribTasks.dll I was using (0.84). I downloaded 0.85 and pointed to it instead and life is beautiful again.</p>
]]></content:encoded>
			<wfw:commentRss>http://bonesbrigadier.com/nant-nantcontrib-and-sln/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Fitnesse &#8211; App.config</title>
		<link>http://bonesbrigadier.com/fitnesse-appconfig/</link>
		<comments>http://bonesbrigadier.com/fitnesse-appconfig/#comments</comments>
		<pubDate>Mon, 05 Jan 2009 09:34:12 +0000</pubDate>
		<dc:creator>BonesBrigadier</dc:creator>
				<category><![CDATA[Fitnesse]]></category>

		<guid isPermaLink="false">http://bonesbrigadier.wordpress.com/?p=33</guid>
		<description><![CDATA[To link an App.config to your fitnesse tests use a real path (eg. c:\inetpub\fitnesse\dotnet\App.config) instead of the virtual/relative as used to link dll files and folders (eg. /dotnet/*.dll). I spent quite a few time trying to find how to do this and couldn&#8217;t find documentation on it so I hope this will help someone.]]></description>
			<content:encoded><![CDATA[<p>To link an App.config to your fitnesse tests use a real path (eg. c:\inetpub\fitnesse\dotnet\App.config) instead of the virtual/relative as used to link dll files and folders (eg. /dotnet/*.dll).</p>
<p>I spent quite a few time trying to find how to do this and couldn&#8217;t find documentation on it so I hope this will help someone.</p>
]]></content:encoded>
			<wfw:commentRss>http://bonesbrigadier.com/fitnesse-appconfig/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

