<?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>Tim&#039;s Bandwagon &#187; Software</title>
	<atom:link href="http://www.twisty.com/bandwagon/archives/categories/software/feed" rel="self" type="application/rss+xml" />
	<link>http://www.twisty.com/bandwagon</link>
	<description>Hitch your wagon to a chicken</description>
	<lastBuildDate>Sun, 06 Sep 2009 20:16:01 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>How to run a script to do useful stuff when you plug-in your iPod</title>
		<link>http://www.twisty.com/bandwagon/archives/2005/07/03/010802</link>
		<comments>http://www.twisty.com/bandwagon/archives/2005/07/03/010802#comments</comments>
		<pubDate>Sun, 03 Jul 2005 00:08:02 +0000</pubDate>
		<dc:creator>Tim Brayshaw</dc:creator>
				<category><![CDATA[GTD]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://trunk.www.twisty.coronationroad/bandwagon/?p=234</guid>
		<description><![CDATA[
-- This is a Folder Actions AppleScript that triggers an
-- event when a disk (like an iPod) is mounted by the
-- System. I use it to run a compiled Automator workflow that
-- backs-up my Keychains, and copies my GTD lists to the
-- iPod notes folder.
-- 
-- To run it you should tweak the script accordingly, [...]]]></description>
			<content:encoded><![CDATA[<pre><code class="applescript">
<span class="comment">-- This is a Folder Actions AppleScript that triggers an
-- event when a disk (like an iPod) is mounted by the
-- System. I use it to run a compiled Automator workflow that
-- backs-up my Keychains, and copies my GTD lists to the
-- iPod notes folder.
-- 
-- To run it you should tweak the script accordingly, and add it
-- as a Folder Action to the "/Volumes" folder. It isn't
-- exactly obvious how to do this, so here's how:
-- 
-- 1. Open the "Folder Actions Setup" app.
-- 2. Click the '+' button to add a new Folder Action.
-- 3. The "/Volumes" directory is hidden from view. Don't click
--    anything, type "/Volumes" to get to it.
-- 4. Add this script as a Folder Action.</span>

<span class="language-keywords">on</span> <span class="application-keywords">adding folder items to</span> <var>thisFolder</var> <span class="application-keywords">after receiving</span> <var>addedItems</var>
    <span class="language-keywords">set</span> <var>volumeName</var> <span class="language-keywords">to</span><span> "Tim Brayshaw's iPod"</span> <span class="comment">-- change this!</span>
    <span class="language-keywords">repeat</span> <span class="language-keywords">with</span> <var>addedItem</var> <span class="language-keywords">in</span> <var>addedItems</var>
        <span class="language-keywords">if</span> <span class="language-keywords">the</span> <span class="application-keywords">displayed name</span> <span class="language-keywords">of</span> <span class="operator">(</span><span class="application-keywords">info for</span> <var>addedItem</var><span class="operator">)</span> &not;
            <span class="language-keywords">is</span> <span class="language-keywords">equal to</span> <var>volumeName</var> <span class="language-keywords">then</span>
            <var>volumeMounted</var><span class="operator">()</span>
            <span class="language-keywords">exit</span> <span class="language-keywords">repeat</span>
        <span class="language-keywords">end</span> <span class="language-keywords">if</span>
    <span class="language-keywords">end</span> <span class="language-keywords">repeat</span>
    <span class="comment">-- System Events seems to keep file references open to each of
    -- the "addedItems" above, this means you can't eject these
    -- volumes. This bodge quits System Events, so you can eject
    -- the added volumes. (System Events gets launched immediately
    -- again.)</span>
    <span class="application-keywords">quit application</span> "System Events"
<span class="language-keywords">end</span> <span class="application-keywords">adding folder items to</span>

<span class="language-keywords">on</span> <var>volumeMounted</var><span class="operator">()</span>
    <span class="language-keywords">tell</span> <span class="application-keywords">application</span><span> "Finder"</span>
        <span class="application-keywords">open</span> <span class="application-keywords">application</span><span> "Update iPod"</span>
    <span class="language-keywords">end</span> <span class="language-keywords">tell</span>
<span class="language-keywords">end</span> <var>volumeMounted</var>
</code></pre>

<p>This should world for other devices like USB thumbdrives, external FireWire disks, Digital Cameras etc. I futzed around trying to figure out how to do this with launchd, but gave up. If anyone knows a better or other way, post a comment!</p>

<p>I&#8217;ve found this useful because it&#8217;s removed some backup anxieties, and means I&#8217;ve always got my shopping and out-and-about errands lists (and so on) with me when I&#8217;m away for the computer. There&#8217;s probably a better way of doing this, but it took me an inordinate amount of time to figure it out, so I thought I&#8217;d post a code snippet here for like-minded dabblers.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.twisty.com/bandwagon/archives/2005/07/03/010802/feed</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Google Maps Stockist Finder</title>
		<link>http://www.twisty.com/bandwagon/archives/2005/06/30/181525</link>
		<comments>http://www.twisty.com/bandwagon/archives/2005/06/30/181525#comments</comments>
		<pubDate>Thu, 30 Jun 2005 17:15:25 +0000</pubDate>
		<dc:creator>Tim Brayshaw</dc:creator>
				<category><![CDATA[Markup and CSS]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://trunk.www.twisty.coronationroad/bandwagon/?p=233</guid>
		<description><![CDATA[I&#8217;ve been playing with the Google Maps API this afternoon, and it looks pretty good. I&#8217;ve knocked-up a stockist map for Cardtastic. (For those who don&#8217;t know me, Cardtastic is a greeting card company run by my partner, Helen.)

One problem encountered was performance is bad when adding lots of markers, we&#8217;re only adding about 180 [...]]]></description>
			<content:encoded><![CDATA[<p>I&rsquo;ve been playing with the <a href="http://www.google.com/apis/maps/documentation/">Google Maps API</a> this afternoon, and it looks pretty good. I&rsquo;ve knocked-up a <a href="http://www.cardtastic.co.uk/stockists/map/">stockist map</a> for Cardtastic. (For those who don&#8217;t know me, Cardtastic is a greeting card company run by my partner, Helen.)</p>

<p>One problem encountered was <a href="http://groups-beta.google.com/group/Google-Maps-API/browse_thread/thread/fe446d27a0391ac4/f5c6cfcb227df88f">performance is bad when adding lots of markers</a>, we&rsquo;re only adding about 180 markers to the map, and my browser kept alerting that a script was running slowly and asking if I wanted to abort it or continue. Not ideal.</p>

<p>I&rsquo;ve worked around it by adding a little time between adding the markers to the map so the browser catch its breath again. I&rsquo;ve also grown to quite like the gimmicky animated effect while stockists start popping-up all over the country!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.twisty.com/bandwagon/archives/2005/06/30/181525/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>NetNewsWire 2.0</title>
		<link>http://www.twisty.com/bandwagon/archives/2005/05/13/015457</link>
		<comments>http://www.twisty.com/bandwagon/archives/2005/05/13/015457#comments</comments>
		<pubDate>Fri, 13 May 2005 00:54:57 +0000</pubDate>
		<dc:creator>Tim Brayshaw</dc:creator>
				<category><![CDATA[Mac]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[User Interface]]></category>

		<guid isPermaLink="false">http://trunk.www.twisty.coronationroad/bandwagon/?p=231</guid>
		<description><![CDATA[Congratulations to the Ranchero crew on the release of NetNewsWire 2.0 &#038;ndash a major update to the popular Mac feed-reader. I&#8217;ve been beta testing it for a while (actually, a scary amount of time). It&#8217;s been really interesting watching the development of this release over the beta period &#8211; there&#8217;s been loads of attention to [...]]]></description>
			<content:encoded><![CDATA[<p>Congratulations to the <a href="http://ranchero.com/">Ranchero</a> crew on the release of <a href="http://ranchero.com/netnewswire/">NetNewsWire 2.0</a> &#038;ndash a major update to the popular Mac feed-reader. I&#8217;ve been beta testing it for a while (actually, a <em>scary</em> amount of time). It&#8217;s been really interesting watching the development of this release over the beta period &#8211; there&#8217;s been loads of attention to detail in the UI and performance that might get overlooked by all the <a href="http://ranchero.com/netnewswire/whatsnew/netnewswire20.php">new features</a>. Syncing is a welcome addition, as is <a href="http://ranchero.com/netnewswire/features/podcasting.php">Podcasting support</a>; but there&#8217;s a ton of new stuff in there that I&#8217;ve probably &#8220;just got used to&#8221; by now (<a href="http://ranchero.com/netnewswire/features/flaggedItems.php">flagged items</a>, <a href="http://ranchero.com/netnewswire/features/atom.php">Atom feeds</a>). What can I say? I like it, you should try it!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.twisty.com/bandwagon/archives/2005/05/13/015457/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Safari 1.3 and feed URIs</title>
		<link>http://www.twisty.com/bandwagon/archives/2005/04/17/095511</link>
		<comments>http://www.twisty.com/bandwagon/archives/2005/04/17/095511#comments</comments>
		<pubDate>Sun, 17 Apr 2005 08:55:11 +0000</pubDate>
		<dc:creator>Tim Brayshaw</dc:creator>
				<category><![CDATA[Mac]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://trunk.www.twisty.coronationroad/bandwagon/?p=229</guid>
		<description><![CDATA[The feed URI scheme (aka: &#8216;feed:// protocol&#8217;) should make it easy to subscribe to RSS news feeds with one-click. Nick Bradbury (author of FeedDemon) explains:

[&#8230;] let&#8217;s face it: subscribing to feeds is a huge pain right now and it&#8217;s causing far too much confusion. Feed reading has left the phase where only techies do it, [...]]]></description>
			<content:encoded><![CDATA[<p>The <a href="http://www.25hoursaday.com/draft-obasanjo-feed-URI-scheme-02.html">feed URI scheme</a> (aka: &#8216;<code>feed://</code> protocol&#8217;) should make it easy to subscribe to <acronym title="Really Simple, err... Something">RSS</acronym> news feeds with one-click. Nick Bradbury (author of FeedDemon) <a href="http://nick.typepad.com/blog/2004/06/feeddemon_and_t.html">explains</a>:</p>

<blockquote><p>[&#8230;] let&#8217;s face it: subscribing to feeds is a huge pain right now and it&#8217;s causing far too much confusion. Feed reading has left the phase where only techies do it, so relying on orange XML and RSS buttons that spew XML when clicked just doesn&#8217;t cut it.</p>
<p>The feed protocol aims to simplify this mess so that clicking on a <code>feed://</code> link enables quick subscription via the user&#8217;s feed reader. I&#8217;m hoping more applications &#8211; and more web sites &#8211; support this protocol so that we can put the days of subscribing by URL copy/pasting behind us.</p></blockquote>

<p>This has become a fairly well supported mechanism (<a href="http://www.bradsoft.com/feeddemon/">FeedDemon</a>, <a href="http://ranchero.com/netnewswire/">NetNewsWire</a>, <a href="http://www.newsgator.com/">NewsGator</a>, <a href="http://www.fondantfancies.com/apps/shrook/">Shrook</a>, <a href="http://www.rssbandit.org/">RSS Bandit</a>, <a href="http://www.newzcrawler.com/">NewzCrawler</a>, <a href="http://www.sharpreader.net/">Sharpreader</a> amongst others support the feed URI scheme). Now, this depends on the browser telling your RSS reader &ldquo;Hey, hereï¿½s a feed for you&#8230; now do something with it!&rdquo;. </p>

<p>Safari v1.2 &lsquo;played nice&rsquo; and passed the URI of the feed to your RSS reader, the feed was subscribed-to, and it was all tickety-boo. It seems that Safari v1.3 (released on Friday with the 10.3.9 System upgrade) stops doing this, and nags you to upgrade to Tiger (which hasn&#8217;t been released yet).</p>

<p><img src="http://www.twisty.com/bandwagon/images/safari-feed.png" width="420" height="134" /></p>

<p>The worst thing is that this doesn&#8217;t seem like just a regression. Dealing with <code>feed://</code> links is a special case, someone sat there and composed this &lsquo;Error&rsquo; message &mdash; knowing that the old behaviour had changed, and presumably had it translated into the 14 languages in which Safari ships. This pretty much sucks.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.twisty.com/bandwagon/archives/2005/04/17/095511/feed</wfw:commentRss>
		<slash:comments>22</slash:comments>
		</item>
		<item>
		<title>Happy Easter</title>
		<link>http://www.twisty.com/bandwagon/archives/2005/03/26/104801</link>
		<comments>http://www.twisty.com/bandwagon/archives/2005/03/26/104801#comments</comments>
		<pubDate>Sat, 26 Mar 2005 09:48:01 +0000</pubDate>
		<dc:creator>Tim Brayshaw</dc:creator>
				<category><![CDATA[Mac]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://trunk.www.twisty.coronationroad/bandwagon/?p=226</guid>
		<description><![CDATA[Have an Easter Egg:

Fans of BBEdit might enjoy this one: Command-click in the title bar of the About BBEdit box for a few goodies.

[via The Unofficial Apple Weblog]
]]></description>
			<content:encoded><![CDATA[<p>Have an <a href="http://en.wikipedia.org/wiki/Easter_egg_%28virtual%29">Easter Egg</a>:</p>

<p><blockquote>Fans of BBEdit might enjoy this one: Command-click in the title bar of the About BBEdit box for a few goodies.</blockquote></p>

<p>[via <a href="http://apple.weblogsinc.com/">The Unofficial Apple Weblog</a>]</p>
]]></content:encoded>
			<wfw:commentRss>http://www.twisty.com/bandwagon/archives/2005/03/26/104801/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>NetNewsWire 2.0b10</title>
		<link>http://www.twisty.com/bandwagon/archives/2005/01/01/014308</link>
		<comments>http://www.twisty.com/bandwagon/archives/2005/01/01/014308#comments</comments>
		<pubDate>Sat, 01 Jan 2005 00:43:08 +0000</pubDate>
		<dc:creator>Tim Brayshaw</dc:creator>
				<category><![CDATA[Mac]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://trunk.www.twisty.coronationroad/bandwagon/?p=220</guid>
		<description><![CDATA[NetNewsWire 2.0b10 (Change notes):


NetNewsWire 2.0b10 includes bug fixes, a rewritten Atom parser, a bunch of small new features and enhancements&#8212;but the feature that will probably get the most attention is podcasting support.


The podcasting (I really hate that term) support seems good and flexible. This release features a clutch of nice interface tweaks, too.
]]></description>
			<content:encoded><![CDATA[<p><a href="http://inessential.com/?comments=1&#038;postid=3008">NetNewsWire 2.0b10</a> (<a href="http://ranchero.com/netnewswire/changenotes/netnewswire2.0b10.php">Change notes</a>):</p>

<blockquote>
<p>NetNewsWire 2.0b10 includes bug fixes, a rewritten Atom parser, a bunch of small new features and enhancements&mdash;but the feature that will probably get the most attention is podcasting support.</p>
</blockquote>

<p>The podcasting (I really hate that term) support seems good and flexible. This release features a clutch of nice interface tweaks, too.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.twisty.com/bandwagon/archives/2005/01/01/014308/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>One two one two</title>
		<link>http://www.twisty.com/bandwagon/archives/2004/12/11/005017</link>
		<comments>http://www.twisty.com/bandwagon/archives/2004/12/11/005017#comments</comments>
		<pubDate>Fri, 10 Dec 2004 23:50:17 +0000</pubDate>
		<dc:creator>Tim Brayshaw</dc:creator>
				<category><![CDATA[Mac]]></category>
		<category><![CDATA[Personal Publishing]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://trunk.www.twisty.coronationroad/bandwagon/?p=217</guid>
		<description><![CDATA[This entry was posted using the spanking new MarsEdit:


MarsEdit makes weblog writing like writing email, with each post edited in its own window, the ability to save posts as drafts, spell-checking, and a familiar Mac OS X interface


As someone wise once said:


It&#8217;s the imagery of technology
Is what you get is what you see
Don&#8217;t worry your [...]]]></description>
			<content:encoded><![CDATA[<p>This entry was posted using the spanking new <a href="http://ranchero.com/marsedit/">MarsEdit</a>:</p>

<blockquote>
<p>MarsEdit makes weblog writing like writing email, with each post edited in its own window, the ability to save posts as drafts, spell-checking, and a familiar Mac OS X interface</p>
</blockquote>

<p>As someone wise once said:</p>

<blockquote>
<p>It&#8217;s the imagery of technology<br />
Is what you get is what you see<br />
Don&#8217;t worry your mind<br />
When you give it your best<br />
<strong>One two one two this is just a test</strong></p>
</blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.twisty.com/bandwagon/archives/2004/12/11/005017/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>folder2dot</title>
		<link>http://www.twisty.com/bandwagon/archives/2004/09/26/191539</link>
		<comments>http://www.twisty.com/bandwagon/archives/2004/09/26/191539#comments</comments>
		<pubDate>Sun, 26 Sep 2004 18:15:39 +0000</pubDate>
		<dc:creator>Tim Brayshaw</dc:creator>
				<category><![CDATA[IA]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://trunk.www.twisty.coronationroad/bandwagon/?p=213</guid>
		<description><![CDATA[I&#8217;ve spent some of this morning packaging a PHP script I wrote a few months ago into a little Mac OS X application. It was at risk of going stale, so thought I&#8217;d let it out into the open for a bit of air. It&#8217;s called folder2dot. When you drop a folder onto it in [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve spent some of this morning packaging a <acronym title='recursive acronym for "PHP: Hypertext Preprocessor"'>PHP</acronym> script I wrote a few months ago into a little Mac OS X application. It was at risk of going stale, so thought I&#8217;d let it out into the open for a bit of air. It&#8217;s called <a href="http://www.twisty.com/misc/folder2dot/">folder2dot</a>. When you drop a folder onto it in the Finder it creates a &#8216;dot&#8217; file that represents the item&#8217;s contents and sub-contents.</p>

<p>You can then render the &#8216;dot&#8217; file with the <a href="http://www.research.att.com/sw/tools/graphviz/">Graphviz graph drawing tools</a> (I recommend the <a href="http://www.pixelglow.com/graphviz/">Macintosh port of Graphviz</a>) and you get a diagram of the dropped item&#8217;s contents and sub-contents. You might be able to open the &#8216;dot&#8217; file using <a href="http://www.omnigroup.com/applications/omnigraffle/">Omnigraffle</a> (it supports a subset of the DOT language &mdash; I haven&#8217;t tried it yet!).</p>

<p>I found it handy to visualise the inventory of the files in a website I was redeveloping; it produces fairly plain output that is probably most useful as a starting-point.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.twisty.com/bandwagon/archives/2004/09/26/191539/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Positivity</title>
		<link>http://www.twisty.com/bandwagon/archives/2004/05/21/005608</link>
		<comments>http://www.twisty.com/bandwagon/archives/2004/05/21/005608#comments</comments>
		<pubDate>Thu, 20 May 2004 23:56:08 +0000</pubDate>
		<dc:creator>Tim Brayshaw</dc:creator>
				<category><![CDATA[Mac]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://trunk.www.twisty.coronationroad/bandwagon/?p=210</guid>
		<description><![CDATA[A cluetrainy post from Brent Simmons (the creator of NetNewsWire). Marketing stuff is hard (especially to hard-bitten geeks like me), but this honest and positive post that almost awakened the inner-hippy in me.   
]]></description>
			<content:encoded><![CDATA[<p>A <a href="http://www.cluetrain.com/">cluetrainy</a> <a href="http://inessential.com/?comments=1&amp;postid=2850">post from Brent Simmons</a> (the creator of <a href="http://ranchero.com/netnewswire/">NetNewsWire</a>). Marketing stuff is <em>hard</em> (especially to hard-bitten geeks like me), but this honest and positive post that almost awakened the inner-hippy in me. <code> <img src='http://www.twisty.com/bandwagon/wordpress/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </code></p>
]]></content:encoded>
			<wfw:commentRss>http://www.twisty.com/bandwagon/archives/2004/05/21/005608/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Basecamp</title>
		<link>http://www.twisty.com/bandwagon/archives/2004/02/05/022952</link>
		<comments>http://www.twisty.com/bandwagon/archives/2004/02/05/022952#comments</comments>
		<pubDate>Thu, 05 Feb 2004 01:29:52 +0000</pubDate>
		<dc:creator>Tim Brayshaw</dc:creator>
				<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://trunk.www.twisty.coronationroad/bandwagon/?p=194</guid>
		<description><![CDATA[I&#8217;ve got ad-hoc solutions for my project management needs, but they&#8217;re not ideal. My bugtracker (mantis) is being asked to perform increasingly unnatural acts. I still haven&#8217;t learned to love iCal (it syncs with my PDA and iPod, so I live with it). I dabbled with an OmniOutliner version of painless software schedules and early [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve got ad-hoc solutions for my project management needs, but they&#8217;re not ideal. My bugtracker (<a href="http://mantisbt.sourceforge.net/">mantis</a>) is being asked to perform increasingly unnatural acts. I still haven&#8217;t learned to love <a href="http://www.apple.com/ical/">iCal</a> (it syncs with my <acronym name="Personal%20Digital%20Assistant">PDA</acronym> and iPod, so I live with it). I dabbled with an <a href="http://www.omnigroup.com/applications/omnioutliner/">OmniOutliner</a> version of <a href="http://www.joelonsoftware.com/articles/fog0000000245.html">painless software schedules</a> and early versions of <a href="http://www.jtechsoftworks.com/">PMX</a>, but never sustained their use beyond scoping and pricing a project (helpful nevertheless). My wiki (<a href="http://tavi.sourceforge.net/">&#8216;Tavi</a>) has been running for a year or so, though, and that&#8217;s working out okay.</p>

<p><a href="http://www.basecamphq.com/">Basecamp</a> is <q>an elegant, powerful, web-based project management tool</q>. It&#8217;s a hosted service priced at between $19 and $59 per month.</p>

<blockquote>
<p>[&hellip;] It lets you and your clients keep your conversations, contacts, reviews, schedules, to-do lists, and more in one place &mdash; password protected and accessible from any computer. Plus, since Basecamp looks, feels, and works like a blog, it&#8217;s a breeze to use.</p>
</blockquote>

<p>That&#8217;s assuming you know how a blog looks, feels, and works.</p>

<p>Reading the marketing bumph, Basecamp sounds nifty. It&#8217;s developed by the folks at <a href="http://www.37signals.com/">37signals</a> so it looks pleasing too. There&#8217;s not much information on how it supports teams and roles, I think I&#8217;ll have to take it for a spin (you can use it free for one active project<del>, but have to supply credit card details</del>).</p>
]]></content:encoded>
			<wfw:commentRss>http://www.twisty.com/bandwagon/archives/2004/02/05/022952/feed</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
	</channel>
</rss>
