<?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 /dev/otaku</title>
	<atom:link href="http://ossowicki.com/?feed=comments-rss2" rel="self" type="application/rss+xml" />
	<link>http://ossowicki.com</link>
	<description>Nyah nyah.</description>
	<lastBuildDate>Sat, 15 May 2010 13:01:14 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
	<item>
		<title>Comment on Gmail and fortune cookie signatures by Anders</title>
		<link>http://ossowicki.com/?p=227&#038;cpage=1#comment-32884</link>
		<dc:creator>Anders</dc:creator>
		<pubDate>Sat, 15 May 2010 13:01:14 +0000</pubDate>
		<guid isPermaLink="false">http://ossowicki.com/?p=227#comment-32884</guid>
		<description>Sorry about that. I&#039;ve fixed the link now.</description>
		<content:encoded><![CDATA[<p>Sorry about that. I&#8217;ve fixed the link now.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Gmail and fortune cookie signatures by seb-esperanto</title>
		<link>http://ossowicki.com/?p=227&#038;cpage=1#comment-32882</link>
		<dc:creator>seb-esperanto</dc:creator>
		<pubDate>Sat, 15 May 2010 12:09:15 +0000</pubDate>
		<guid isPermaLink="false">http://ossowicki.com/?p=227#comment-32882</guid>
		<description>nice idea !
but...
.... the script is not available anymore ! :-(</description>
		<content:encoded><![CDATA[<p>nice idea !<br />
but&#8230;<br />
&#8230;. the script is not available anymore ! :-(</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on ハ, パ&#8230; what&#8217;s the difference? by Exherbo &#8211; what we&#8217;re good at, what we should improve &#171; Philantrop&#39;s Blog</title>
		<link>http://ossowicki.com/?p=213&#038;cpage=1#comment-32584</link>
		<dc:creator>Exherbo &#8211; what we&#8217;re good at, what we should improve &#171; Philantrop&#39;s Blog</dc:creator>
		<pubDate>Sat, 17 Apr 2010 19:16:17 +0000</pubDate>
		<guid isPermaLink="false">http://ossowicki.com/?p=213#comment-32584</guid>
		<description>[...] distributed development: Our contributors just add their git format-patch to our patch-tracking bot hacchi, we&#8217;ll review the patch and if it meets our quality standards, we can just apply it locally [...]</description>
		<content:encoded><![CDATA[<p>[...] distributed development: Our contributors just add their git format-patch to our patch-tracking bot hacchi, we&#8217;ll review the patch and if it meets our quality standards, we can just apply it locally [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on ハ, パ&#8230; what&#8217;s the difference? by Robin Green</title>
		<link>http://ossowicki.com/?p=213&#038;cpage=1#comment-32324</link>
		<dc:creator>Robin Green</dc:creator>
		<pubDate>Sat, 03 Apr 2010 10:54:20 +0000</pubDate>
		<guid isPermaLink="false">http://ossowicki.com/?p=213#comment-32324</guid>
		<description>and of course if there are any merges necessary, you should consider rebuilding the relevant package(s) to check that the merged result still works.</description>
		<content:encoded><![CDATA[<p>and of course if there are any merges necessary, you should consider rebuilding the relevant package(s) to check that the merged result still works.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on ハ, パ&#8230; what&#8217;s the difference? by Robin Green</title>
		<link>http://ossowicki.com/?p=213&#038;cpage=1#comment-32323</link>
		<dc:creator>Robin Green</dc:creator>
		<pubDate>Sat, 03 Apr 2010 10:49:27 +0000</pubDate>
		<guid isPermaLink="false">http://ossowicki.com/?p=213#comment-32323</guid>
		<description>Also, you probably want to do something like

(sudo) cave sync [reponame]
git rebase origin

before that. This moves your patch(es) to the head if they aren&#039;t already, which (a) means the above command will pick up the latest patch of yours, not someone else&#039;s, and more importantly (b) forces any necessary merges to be performed.</description>
		<content:encoded><![CDATA[<p>Also, you probably want to do something like</p>
<p>(sudo) cave sync [reponame]<br />
git rebase origin</p>
<p>before that. This moves your patch(es) to the head if they aren&#8217;t already, which (a) means the above command will pick up the latest patch of yours, not someone else&#8217;s, and more importantly (b) forces any necessary merges to be performed.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on ハ, パ&#8230; what&#8217;s the difference? by Robin Green</title>
		<link>http://ossowicki.com/?p=213&#038;cpage=1#comment-32322</link>
		<dc:creator>Robin Green</dc:creator>
		<pubDate>Sat, 03 Apr 2010 10:26:58 +0000</pubDate>
		<guid isPermaLink="false">http://ossowicki.com/?p=213#comment-32322</guid>
		<description>As I&#039;ve just learned, you should NOT copy and paste patches by hand into a pastebin, as that may introduce whitespace errors which may prevent the patch from applying.

Instead use something like this (adjusting the command as necessary to select the patch you want to paste):

git format-patch --stdout -M -C HEAD^..HEAD &#124;wgetpaste -v -X -r

Omit the -X option if you don&#039;t have / don&#039;t want to use xclip to copy the URL to the X primary selection.</description>
		<content:encoded><![CDATA[<p>As I&#8217;ve just learned, you should NOT copy and paste patches by hand into a pastebin, as that may introduce whitespace errors which may prevent the patch from applying.</p>
<p>Instead use something like this (adjusting the command as necessary to select the patch you want to paste):</p>
<p>git format-patch &#8211;stdout -M -C HEAD^..HEAD |wgetpaste -v -X -r</p>
<p>Omit the -X option if you don&#8217;t have / don&#8217;t want to use xclip to copy the URL to the X primary selection.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on I miss a feature in OS X by Roel</title>
		<link>http://ossowicki.com/?p=253&#038;cpage=1#comment-31877</link>
		<dc:creator>Roel</dc:creator>
		<pubDate>Wed, 24 Feb 2010 11:08:48 +0000</pubDate>
		<guid isPermaLink="false">http://ossowicki.com/?p=253#comment-31877</guid>
		<description>Another app is Networklocation (http://networklocationapp.com/). 

It is 29 dollars, yet I use it to replace my trusted MarcoPolo that worked so nice up until Snow Leopard :-(</description>
		<content:encoded><![CDATA[<p>Another app is Networklocation (<a href="http://networklocationapp.com/" rel="nofollow">http://networklocationapp.com/</a>). </p>
<p>It is 29 dollars, yet I use it to replace my trusted MarcoPolo that worked so nice up until Snow Leopard :-(</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Grey java windows by Fixing Java apps within TWM’s using wmname at h2oz7v</title>
		<link>http://ossowicki.com/?p=155&#038;cpage=1#comment-31648</link>
		<dc:creator>Fixing Java apps within TWM’s using wmname at h2oz7v</dc:creator>
		<pubDate>Thu, 04 Feb 2010 12:25:53 +0000</pubDate>
		<guid isPermaLink="false">http://ossowicki.com/?p=155#comment-31648</guid>
		<description>[...] LG3D and Java apps should be working as normal again! To TWM devs: please help promote wmname for new users, until Sun decide that they want to fix this themselves [...]</description>
		<content:encoded><![CDATA[<p>[...] LG3D and Java apps should be working as normal again! To TWM devs: please help promote wmname for new users, until Sun decide that they want to fix this themselves [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on I miss a feature in OS X by Anders</title>
		<link>http://ossowicki.com/?p=253&#038;cpage=1#comment-31527</link>
		<dc:creator>Anders</dc:creator>
		<pubDate>Fri, 22 Jan 2010 14:02:24 +0000</pubDate>
		<guid isPermaLink="false">http://ossowicki.com/?p=253#comment-31527</guid>
		<description>Thanks a lot for the hint!

I already gave MarcoPolo a spin (I should have mentioned it) but there is an issue with Snow Leopard: The WiFi evidence source does not work and unfortunately the WiFi is the only clear indicator of my location.</description>
		<content:encoded><![CDATA[<p>Thanks a lot for the hint!</p>
<p>I already gave MarcoPolo a spin (I should have mentioned it) but there is an issue with Snow Leopard: The WiFi evidence source does not work and unfortunately the WiFi is the only clear indicator of my location.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on I miss a feature in OS X by Thomas Christensen</title>
		<link>http://ossowicki.com/?p=253&#038;cpage=1#comment-31526</link>
		<dc:creator>Thomas Christensen</dc:creator>
		<pubDate>Fri, 22 Jan 2010 11:40:35 +0000</pubDate>
		<guid isPermaLink="false">http://ossowicki.com/?p=253#comment-31526</guid>
		<description>You should have a look at: http://www.symonds.id.au/marcopolo/

I believe it can be setup to do what you need.</description>
		<content:encoded><![CDATA[<p>You should have a look at: <a href="http://www.symonds.id.au/marcopolo/" rel="nofollow">http://www.symonds.id.au/marcopolo/</a></p>
<p>I believe it can be setup to do what you need.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
