<?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 on: How to yell at people with GitHub from TextMate</title>
	<atom:link href="http://drnicwilliams.com/2008/05/28/how-to-yell-at-people-with-github-from-textmate/feed/" rel="self" type="application/rss+xml" />
	<link>http://drnicwilliams.com/2008/05/28/how-to-yell-at-people-with-github-from-textmate/</link>
	<description>Ruby makes Rails, Javascript makes Ajax, Dr Nic makes Magic</description>
	<lastBuildDate>Wed, 17 Mar 2010 04:35:01 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: seslichat</title>
		<link>http://drnicwilliams.com/2008/05/28/how-to-yell-at-people-with-github-from-textmate/comment-page-1/#comment-167219</link>
		<dc:creator>seslichat</dc:creator>
		<pubDate>Sun, 12 Apr 2009 11:52:29 +0000</pubDate>
		<guid isPermaLink="false">http://drnicwilliams.com/?p=276#comment-167219</guid>
		<description>I’ve been told that I could reproduce the commit search with the “git blame” command; I might try to use that as its no doubt better than my algorithm.</description>
		<content:encoded><![CDATA[<p>I’ve been told that I could reproduce the commit search with the “git blame” command; I might try to use that as its no doubt better than my algorithm.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Lawrence Pit</title>
		<link>http://drnicwilliams.com/2008/05/28/how-to-yell-at-people-with-github-from-textmate/comment-page-1/#comment-92609</link>
		<dc:creator>Lawrence Pit</dc:creator>
		<pubDate>Thu, 29 May 2008 07:17:52 +0000</pubDate>
		<guid isPermaLink="false">http://drnicwilliams.com/?p=276#comment-92609</guid>
		<description>Re: line 103, very strange, for me it ends up at: 

http://github.com/DocSavage/rails-authorization-plugin/commit/bf4e488e5f50ff8700de557eaf24a6aed56814e3#diff-0

that commit id doesn&#039;t exist within that project. I checked it out freshly in a different dir, and then line 103 works fine indeed.</description>
		<content:encoded><![CDATA[<p>Re: line 103, very strange, for me it ends up at: </p>
<p><a href="http://github.com/DocSavage/rails-authorization-plugin/commit/bf4e488e5f50ff8700de557eaf24a6aed56814e3#diff-0" rel="nofollow">http://github.com/DocSavage/rails-authorization-plugin/commit/bf4e488e5f50ff8700de557eaf24a6aed56814e3#diff-0</a></p>
<p>that commit id doesn&#8217;t exist within that project. I checked it out freshly in a different dir, and then line 103 works fine indeed.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dr Nic</title>
		<link>http://drnicwilliams.com/2008/05/28/how-to-yell-at-people-with-github-from-textmate/comment-page-1/#comment-92596</link>
		<dc:creator>Dr Nic</dc:creator>
		<pubDate>Thu, 29 May 2008 05:56:22 +0000</pubDate>
		<guid isPermaLink="false">http://drnicwilliams.com/?p=276#comment-92596</guid>
		<description>The issue with line 104 is a known issue - I&#039;m just matching the exact string, and not caring about line numbers.

Re: line 103 - this goes to the correct commit for me. (same as for line 102&#039;s commit)

Interesting: line 1 - this goes to the correct commit, but wrong file so I might be pulling file names out of the diff_parent incorrectly (prob to do with files being deleted in that commit).

I&#039;ve been told that I could reproduce the commit search with the &quot;git blame&quot; command; I might try to use that as its no doubt better than my algorithm.</description>
		<content:encoded><![CDATA[<p>The issue with line 104 is a known issue &#8211; I&#8217;m just matching the exact string, and not caring about line numbers.</p>
<p>Re: line 103 &#8211; this goes to the correct commit for me. (same as for line 102&#8217;s commit)</p>
<p>Interesting: line 1 &#8211; this goes to the correct commit, but wrong file so I might be pulling file names out of the diff_parent incorrectly (prob to do with files being deleted in that commit).</p>
<p>I&#8217;ve been told that I could reproduce the commit search with the &#8220;git blame&#8221; command; I might try to use that as its no doubt better than my algorithm.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Lawrence Pit</title>
		<link>http://drnicwilliams.com/2008/05/28/how-to-yell-at-people-with-github-from-textmate/comment-page-1/#comment-92594</link>
		<dc:creator>Lawrence Pit</dc:creator>
		<pubDate>Thu, 29 May 2008 05:48:01 +0000</pubDate>
		<guid isPermaLink="false">http://drnicwilliams.com/?p=276#comment-92594</guid>
		<description>@drnic -- sure:

git clone git://github.com/DocSavage/rails-authorization-plugin.git

open in mate, go to identity.rb, put your cursor on line 102, CTRL-OPTION-CMD-G, option 2 works fine. Put your cursor on line 103 and it will show a 404. On line 104 it will show an unexpected page.</description>
		<content:encoded><![CDATA[<p>@drnic &#8212; sure:</p>
<p>git clone git://github.com/DocSavage/rails-authorization-plugin.git</p>
<p>open in mate, go to identity.rb, put your cursor on line 102, CTRL-OPTION-CMD-G, option 2 works fine. Put your cursor on line 103 and it will show a 404. On line 104 it will show an unexpected page.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dr Nic</title>
		<link>http://drnicwilliams.com/2008/05/28/how-to-yell-at-people-with-github-from-textmate/comment-page-1/#comment-92581</link>
		<dc:creator>Dr Nic</dc:creator>
		<pubDate>Thu, 29 May 2008 04:22:07 +0000</pubDate>
		<guid isPermaLink="false">http://drnicwilliams.com/?p=276#comment-92581</guid>
		<description>@lawrence - do you have an example error case I can look at? github repo + file + line number?

More interactivity with github as a messaging center would be awesome; though I think I&#039;ll probably wait til there is more API assistance. Otherwise you&#039;re polling all commits to see if a message was posted, I guess.</description>
		<content:encoded><![CDATA[<p>@lawrence &#8211; do you have an example error case I can look at? github repo + file + line number?</p>
<p>More interactivity with github as a messaging center would be awesome; though I think I&#8217;ll probably wait til there is more API assistance. Otherwise you&#8217;re polling all commits to see if a message was posted, I guess.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Lawrence Pit</title>
		<link>http://drnicwilliams.com/2008/05/28/how-to-yell-at-people-with-github-from-textmate/comment-page-1/#comment-92577</link>
		<dc:creator>Lawrence Pit</dc:creator>
		<pubDate>Thu, 29 May 2008 04:01:11 +0000</pubDate>
		<guid isPermaLink="false">http://drnicwilliams.com/?p=276#comment-92577</guid>
		<description>Feature request: can I get a notification in textmate when a comment is posted to me? ;-)</description>
		<content:encoded><![CDATA[<p>Feature request: can I get a notification in textmate when a comment is posted to me? <img src='http://drnicwilliams.com/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Lawrence Pit</title>
		<link>http://drnicwilliams.com/2008/05/28/how-to-yell-at-people-with-github-from-textmate/comment-page-1/#comment-92576</link>
		<dc:creator>Lawrence Pit</dc:creator>
		<pubDate>Thu, 29 May 2008 03:59:23 +0000</pubDate>
		<guid isPermaLink="false">http://drnicwilliams.com/?p=276#comment-92576</guid>
		<description>Awesome. 

Sometimes it doesn&#039;t determine the correct URL though (specifically the commit id) when trying to Annotate/Blame/Comment, which may result in landing on an unexpected page or even getting the 404 page.</description>
		<content:encoded><![CDATA[<p>Awesome. </p>
<p>Sometimes it doesn&#8217;t determine the correct URL though (specifically the commit id) when trying to Annotate/Blame/Comment, which may result in landing on an unexpected page or even getting the 404 page.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dr Nic</title>
		<link>http://drnicwilliams.com/2008/05/28/how-to-yell-at-people-with-github-from-textmate/comment-page-1/#comment-92522</link>
		<dc:creator>Dr Nic</dc:creator>
		<pubDate>Wed, 28 May 2008 22:11:44 +0000</pubDate>
		<guid isPermaLink="false">http://drnicwilliams.com/?p=276#comment-92522</guid>
		<description>&lt;a href=&quot;https://github.com/drnic/github-bundle&quot; rel=&quot;nofollow&quot;&gt;New version&lt;/a&gt; now has nice error messages.</description>
		<content:encoded><![CDATA[<p><a href="https://github.com/drnic/github-bundle" rel="nofollow">New version</a> now has nice error messages.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Glenn</title>
		<link>http://drnicwilliams.com/2008/05/28/how-to-yell-at-people-with-github-from-textmate/comment-page-1/#comment-92413</link>
		<dc:creator>Glenn</dc:creator>
		<pubDate>Wed, 28 May 2008 11:43:25 +0000</pubDate>
		<guid isPermaLink="false">http://drnicwilliams.com/?p=276#comment-92413</guid>
		<description>I&#039;ll buy two!</description>
		<content:encoded><![CDATA[<p>I&#8217;ll buy two!</p>
]]></content:encoded>
	</item>
</channel>
</rss>
