<?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>MethylBlue Blog &#187; productivity</title>
	<atom:link href="http://www.methylblue.com/blog/tag/productivity/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.methylblue.com/blog</link>
	<description>The Future Comes Second</description>
	<lastBuildDate>Tue, 10 Nov 2009 04:43:07 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Spotlighting the London Underground</title>
		<link>http://www.methylblue.com/blog/osx-spotlight-and-the-tube/</link>
		<comments>http://www.methylblue.com/blog/osx-spotlight-and-the-tube/#comments</comments>
		<pubDate>Mon, 21 Apr 2008 16:23:28 +0000</pubDate>
		<dc:creator>Max Howell</dc:creator>
				<category><![CDATA[Detritus]]></category>
		<category><![CDATA[London Underground]]></category>
		<category><![CDATA[os x]]></category>
		<category><![CDATA[productivity]]></category>
		<category><![CDATA[Spotlight]]></category>

		<guid isPermaLink="false">http://www.methylblue.com/blog/?p=299</guid>
		<description><![CDATA[
Download the Tube Map pdf from TFL
Save it somewhere you won&#8217;t delete it, eg ~/Documents/
Spotlight search for a tube map, eg Command-space, Tufnell Park

Spotlight will open the map with the Tufnell Park highlighted!   So now you know where it is and what line to get.
OS X is awesome.
]]></description>
			<content:encoded><![CDATA[<ol>
<li>Download the <a href='http://www.tfl.gov.uk/assets/downloads/standard-tube-map-04-08.pdf'>Tube Map</a> pdf from TFL
<li>Save it somewhere you won&#8217;t delete it, eg ~/Documents/
<li>Spotlight search for a tube map, eg Command-space, Tufnell Park
</ol>
<p>Spotlight will open the map with the Tufnell Park highlighted! <img src='http://www.methylblue.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  So now you know where it is and what line to get.</p>
<p>OS X is awesome.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.methylblue.com/blog/osx-spotlight-and-the-tube/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Using TortoiseSVN from the Command Line</title>
		<link>http://www.methylblue.com/blog/using-tortoisesvn-from-the-command-line/</link>
		<comments>http://www.methylblue.com/blog/using-tortoisesvn-from-the-command-line/#comments</comments>
		<pubDate>Wed, 26 Mar 2008 17:07:27 +0000</pubDate>
		<dc:creator>Max Howell</dc:creator>
				<category><![CDATA[Work]]></category>
		<category><![CDATA[Cygwin]]></category>
		<category><![CDATA[productivity]]></category>
		<category><![CDATA[TortoiseSVN]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.methylblue.com/blog/?p=297</guid>
		<description><![CDATA[I like to use CygWin, I find, at least for development, it preferable to use the command line to explorer for opening and manipulating files. However TortoiseSVN is better than command line SVN in a few important areas. So I made a script so that &#8220;svn ci&#8221; open Tortoise&#8217;s check-in dialog. Ace!  

Save this [...]]]></description>
			<content:encoded><![CDATA[<p>I like to use CygWin, I find, at least for development, it preferable to use the command line to explorer for opening and manipulating files. However TortoiseSVN is better than command line SVN in a few important areas. So I made a script so that &#8220;svn ci&#8221; open Tortoise&#8217;s check-in dialog. Ace! <img src='http://www.methylblue.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<ol>
<li>Save this script to <b>/usr/local/bin/svn</b> (ie. c:\cygwin\usr\local\bin\svn)
<li>Ammend the svn variable
<li>chmod u+x /usr/local/bin/svn
</ol>
<p>As long as /usr/local/bin is first in the path, you can use TortoiseSVN for the good bits, and the command line svn client for the rest.</p>
<p><code><br />
#!/bin/sh<br />
# Use TortoiseSVN from the cli<br />
# Public Domain, Max Howell 2008</p>
<p>path=$2<br />
test -z $path &#038;&#038; path=.<br />
test -e $path &#038;&#038; path=`cygpath -wa $path`</p>
<p>svn='/cygdrive/c/progra~1/TortoiseSVN/bin/TortoiseProc.exe'</p>
<p>function svn<br />
{<br />
	"$svn" /notempfile /command:"$1" /path:"$path" &#038;<br />
}</p>
<p>case $1 in<br />
    up | update) svn update;;<br />
    ci | commit) svn commit;;<br />
    log)         svn log;;<br />
    props)       svn properties;;<br />
    browse)      svn repobrowser;;<br />
    *) /usr/bin/svn $@;;<br />
esac<br />
</code></p>
<p>You can also use your ssh key from cygwin through TortoiseSVN. Some details <a href='http://brondsema.net/blog/index.php/2005/05/03/using_cygwin_keychain_svn_ssh_and_tortoi'>here</a>.</p>
<p>But the gist is use this, <b>C:/cygwin/bin/run C:/cygwin/bin/ssh</b>, in the ssh program box in TortoiseSVN network settings.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.methylblue.com/blog/using-tortoisesvn-from-the-command-line/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
	</channel>
</rss>
