<?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 Yak Shaving</title>
	<atom:link href="http://www.chrishannam.co.uk/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.chrishannam.co.uk</link>
	<description>just me</description>
	<lastBuildDate>Wed, 15 Jun 2011 21:11:55 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
	<item>
		<title>Comment on Friend Filters by chicgeek</title>
		<link>http://www.chrishannam.co.uk/2011/06/friend-filters/comment-page-1/#comment-2234</link>
		<dc:creator>chicgeek</dc:creator>
		<pubDate>Wed, 15 Jun 2011 21:11:55 +0000</pubDate>
		<guid isPermaLink="false">http://www.chrishannam.co.uk/?p=370#comment-2234</guid>
		<description>I found this, too. About time I shaved my follow list down to 100 again...</description>
		<content:encoded><![CDATA[<p>I found this, too. About time I shaved my follow list down to 100 again&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on A little Ruby by channam</title>
		<link>http://www.chrishannam.co.uk/2009/02/a-little-ruby/comment-page-1/#comment-2167</link>
		<dc:creator>channam</dc:creator>
		<pubDate>Fri, 03 Jun 2011 22:48:26 +0000</pubDate>
		<guid isPermaLink="false">http://www.chrishannam.co.uk/?p=165#comment-2167</guid>
		<description>Wow, thanks I had no idea anyone would find this useful. Thanks for the contribution.</description>
		<content:encoded><![CDATA[<p>Wow, thanks I had no idea anyone would find this useful. Thanks for the contribution.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on A little Ruby by Salil</title>
		<link>http://www.chrishannam.co.uk/2009/02/a-little-ruby/comment-page-1/#comment-1758</link>
		<dc:creator>Salil</dc:creator>
		<pubDate>Thu, 03 Mar 2011 05:44:47 +0000</pubDate>
		<guid isPermaLink="false">http://www.chrishannam.co.uk/?p=165#comment-1758</guid>
		<description>Thanks. Was looking for this. Added a few more details

To go through the product list
if elem.elements[&quot;vuln:vulnerable-software-list&quot;]
		elem.elements.each(&quot;vuln:vulnerable-software-list/vuln:product&quot;) { &#124;prod&#124; 
		puts prod.text
		}
	else
		puts &quot;no product detail&quot;
	end
And to get the CVSS details
if elem.elements[&quot;vuln:cvss/cvss:base_metrics&quot;]
		puts elem.elements[&quot;vuln:cvss/cvss:base_metrics/cvss:score&quot;].text
		puts elem.elements[&quot;vuln:cvss/cvss:base_metrics/cvss:access-vector&quot;].text
		puts elem.elements[&quot;vuln:cvss/cvss:base_metrics/cvss:access-complexity&quot;].text
		puts elem.elements[&quot;vuln:cvss/cvss:base_metrics/cvss:authentication&quot;].text
		puts elem.elements[&quot;vuln:cvss/cvss:base_metrics/cvss:confidentiality-impact&quot;].text
		puts elem.elements[&quot;vuln:cvss/cvss:base_metrics/cvss:integrity-impact&quot;].text
		puts elem.elements[&quot;vuln:cvss/cvss:base_metrics/cvss:availability-impact&quot;].text
	else
		puts &quot;no cvss&quot;
	end</description>
		<content:encoded><![CDATA[<p>Thanks. Was looking for this. Added a few more details</p>
<p>To go through the product list<br />
if elem.elements["vuln:vulnerable-software-list"]<br />
		elem.elements.each(&#8220;vuln:vulnerable-software-list/vuln:product&#8221;) { |prod|<br />
		puts prod.text<br />
		}<br />
	else<br />
		puts &#8220;no product detail&#8221;<br />
	end<br />
And to get the CVSS details<br />
if elem.elements["vuln:cvss/cvss:base_metrics"]<br />
		puts elem.elements["vuln:cvss/cvss:base_metrics/cvss:score"].text<br />
		puts elem.elements["vuln:cvss/cvss:base_metrics/cvss:access-vector"].text<br />
		puts elem.elements["vuln:cvss/cvss:base_metrics/cvss:access-complexity"].text<br />
		puts elem.elements["vuln:cvss/cvss:base_metrics/cvss:authentication"].text<br />
		puts elem.elements["vuln:cvss/cvss:base_metrics/cvss:confidentiality-impact"].text<br />
		puts elem.elements["vuln:cvss/cvss:base_metrics/cvss:integrity-impact"].text<br />
		puts elem.elements["vuln:cvss/cvss:base_metrics/cvss:availability-impact"].text<br />
	else<br />
		puts &#8220;no cvss&#8221;<br />
	end</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Django Testing and Fixtures by Wes Mason</title>
		<link>http://www.chrishannam.co.uk/2010/11/django-testing-and-fixtures/comment-page-1/#comment-1581</link>
		<dc:creator>Wes Mason</dc:creator>
		<pubDate>Fri, 26 Nov 2010 16:36:42 +0000</pubDate>
		<guid isPermaLink="false">http://www.chrishannam.co.uk/?p=319#comment-1581</guid>
		<description>Add --indent to output the JSON in a human readable *and* diff-able format, e.g.:

manage.py dumpdata --indent=2 app_name.model_name &gt; fixtures/fixtures.json</description>
		<content:encoded><![CDATA[<p>Add &#8211;indent to output the JSON in a human readable *and* diff-able format, e.g.:</p>
<p>manage.py dumpdata &#8211;indent=2 app_name.model_name &gt; fixtures/fixtures.json</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on WebDriver and Select Boxes by Simon Stewart</title>
		<link>http://www.chrishannam.co.uk/2009/09/webdriver-and-select-boxes/comment-page-1/#comment-1332</link>
		<dc:creator>Simon Stewart</dc:creator>
		<pubDate>Mon, 07 Sep 2009 14:40:59 +0000</pubDate>
		<guid isPermaLink="false">http://www.chrishannam.co.uk/?p=258#comment-1332</guid>
		<description>This DOM navigation is exactly the reason why we added &quot;findElements&quot; to the WebElement interface in the first place. Thank you for writing this up!</description>
		<content:encoded><![CDATA[<p>This DOM navigation is exactly the reason why we added &#8220;findElements&#8221; to the WebElement interface in the first place. Thank you for writing this up!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on I love Python by Manouche</title>
		<link>http://www.chrishannam.co.uk/2009/05/i-love-python/comment-page-1/#comment-1298</link>
		<dc:creator>Manouche</dc:creator>
		<pubDate>Sun, 19 Jul 2009 21:19:56 +0000</pubDate>
		<guid isPermaLink="false">http://www.chrishannam.co.uk/2009/05/i-love-python/#comment-1298</guid>
		<description>I quite like this:

[i for i in a if i not in b]

It brings me happy happy joy joy.</description>
		<content:encoded><![CDATA[<p>I quite like this:</p>
<p>[i for i in a if i not in b]</p>
<p>It brings me happy happy joy joy.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Shameless Boasting by Stuart Langridge</title>
		<link>http://www.chrishannam.co.uk/2009/03/shameless-boasting/comment-page-1/#comment-301</link>
		<dc:creator>Stuart Langridge</dc:creator>
		<pubDate>Sun, 01 Mar 2009 12:13:58 +0000</pubDate>
		<guid isPermaLink="false">http://www.chrishannam.co.uk/?p=183#comment-301</guid>
		<description>Aha! Hey, Chris. I tried to contact you at the time and didn&#039;t have a lot of luck (see http://www.kryogenix.org/days/2007/07/14/lugradio-live-2007-is-over for my appeal!) so I shall say a belated: thankyou. Sorry for dropping you into the lurch, but it seemed like you&#039;d have some pretty relevant input into the discussion, and you in fact did :)</description>
		<content:encoded><![CDATA[<p>Aha! Hey, Chris. I tried to contact you at the time and didn&#8217;t have a lot of luck (see <a href="http://www.kryogenix.org/days/2007/07/14/lugradio-live-2007-is-over" rel="nofollow">http://www.kryogenix.org/days/2007/07/14/lugradio-live-2007-is-over</a> for my appeal!) so I shall say a belated: thankyou. Sorry for dropping you into the lurch, but it seemed like you&#8217;d have some pretty relevant input into the discussion, and you in fact did <img src='http://www.chrishannam.co.uk/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Problem 3 by Euler Problem 3 at Faffing round the edges</title>
		<link>http://www.chrishannam.co.uk/2008/11/problem-3/comment-page-1/#comment-200</link>
		<dc:creator>Euler Problem 3 at Faffing round the edges</dc:creator>
		<pubDate>Sat, 08 Nov 2008 10:40:01 +0000</pubDate>
		<guid isPermaLink="false">http://www.chrishannam.co.uk/?p=47#comment-200</guid>
		<description>[...] in the light of how short some of my colleagues code is (see Chris&#8217;s python solution on his blog) although this erlang effort still performs well for numbers 3 orders of magnitude [...]</description>
		<content:encoded><![CDATA[<p>[...] in the light of how short some of my colleagues code is (see Chris&#8217;s python solution on his blog) although this erlang effort still performs well for numbers 3 orders of magnitude [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on w00t for Conduit by John Stowers</title>
		<link>http://www.chrishannam.co.uk/2008/07/w00t-for-conduit/comment-page-1/#comment-2</link>
		<dc:creator>John Stowers</dc:creator>
		<pubDate>Tue, 22 Jul 2008 02:23:29 +0000</pubDate>
		<guid isPermaLink="false">http://www.chrishannam.co.uk/?p=5#comment-2</guid>
		<description>Hi,

My name is John Stowers (other Conduit dev). Can you please file this as a bug. Tomboy+Conduit sync works for me (Conduit stable 0.3.12 - hardy PPA, and hardy stable version of Tomboy)

Thanks,

 John</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>My name is John Stowers (other Conduit dev). Can you please file this as a bug. Tomboy+Conduit sync works for me (Conduit stable 0.3.12 &#8211; hardy PPA, and hardy stable version of Tomboy)</p>
<p>Thanks,</p>
<p> John</p>
]]></content:encoded>
	</item>
</channel>
</rss>

