<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"><channel><title>subdimension.co.uk blog feed</title><link>http://subdimension.co.uk/</link><description></description><copyright>All rights reserved.</copyright><language>en-GB</language><lastBuildDate>Fri, 18 Nov 2011 09:41:55 GMT</lastBuildDate><ttl>1440</ttl><item><title>RSS Sync Service</title><link>http://subdimension.co.uk/2011/11/18/RSS_Sync_Service.html</link><guid>http://subdimension.co.uk/2011/11/18/RSS_Sync_Service.html</guid><description><![CDATA[<p>I've been following the recent chatter regarding Google Reader and it's possible demise. I use Google Reader every day, either with the web app from my laptop or with <a href="http://phantomfish.com/byline.html">Byline</a> on my iPhone and iPad.</p>

<p>I came across Brent Simmons' post on <a href="http://inessential.com/2011/11/17/how_about_imap_for_rss_syncing_">IMAP syncing</a> (which I agree wouldn't work), which lead to his post from a while ago that gives a <a href="http://inessential.com/2010/02/08/idea_for_alternative_rss_syncing_system">basic specification for an RSS sync system</a> which I think is a start, although would need some tweaking (in particular, I believe a sync system <em>does</em> need to read and store the feeds; most feeds only keep x number of articles, so if I didn't sync my client regularly enough, I might miss articles on 'busier' sites).</p>

<p>I've been thinking about putting together a solution to this 'problem' (I say 'problem' because I'm not yet fully convinced that Google is just going to drop Reader.) but I do agree that choice is always a good thing. I've even seen a few people say they'd be willing to pay for a good service.</p>

<p>My biggest problem though, and one of the main reasons I'm holding off at the moment is that none of the existing RSS clients make it easy for me to test any system I might create, meaning I'd have to make my own client (that and I've very recently been blessed with a Son, also why staticDimension has been a bit, well, static recently!).</p>

<p>I can probably put a web-based RSS reader client together, but it's a lot of work and it will almost certainly be really bad to start with, which will quickly sap all of my enthusiasm - I use my iPhone and iPad to read news stuff <em>way</em> more than I use my laptop.</p>

<p>Another issue I've wrestled with is do I try to copy the Google Reader API, or design my own.</p>

<p>Implementing an API that works the same as Reader makes it much easier for client developers to support a new sync service but it's poorly documented and I'm not overly keen on it.</p>

<p>I don't like the prospect of not having a way to sync my news feeds, and whilst I'm probably capable of building a new one, I'm still stuck with a clunky web app (which I haven't even built yet) if I actually wanted to use it...</p>
<p><a href="2011/11/18/RSS_Sync_Service.html">#</a></p>]]></description><pubDate>Fri, 18 Nov 2011 09:41 GMT</pubDate></item><item><title>Tidy up Google Reader</title><link>http://subdimension.co.uk/2011/11/07/Tidy_up_Google_Reader.html</link><guid>http://subdimension.co.uk/2011/11/07/Tidy_up_Google_Reader.html</guid><description><![CDATA[<p>I'm mostly a fan of Google's new styling but it just doesn't work for me in Reader. I use Reader every day on my work machine and I'm deeply worried about the current buzz on the interwebs about its bleak future.</p>

<p>In the mean time, I've installed the <a href="http://code.grid.in.th/">User CSS</a> Safari extension and have tweaked Reader's look to give me back that all important vertical space with the following:</p>

<pre><code>#viewer-header
{
  height:40px !important;
}

#lhn-add-subscription-section
{
  height:40px !important;
}

#top-bar
{
  display:none;
}
</code></pre>

<p>it's a bit of a hack, but it works for me!</p>

<p>Edit: for the anti-+ crowd, add this bit to drop the +1 button:</p>

<pre><code>.item-plusone {display:none !important;}
</code></pre>
<p><a href="2011/11/07/Tidy_up_Google_Reader.html">#</a></p>]]></description><pubDate>Mon, 07 Nov 2011 22:40 GMT</pubDate></item><item><title>staticDimension - version 1.4</title><link>http://subdimension.co.uk/2011/04/15/staticDimension__version_14.html</link><guid>http://subdimension.co.uk/2011/04/15/staticDimension__version_14.html</guid><description><![CDATA[<p>I'm on Easter holidays at the moment, I honestly have nothing better to do at the moment!</p>

<p><a href="/files/staticDimension-1.4.tar.gz">staticDimension version 1.4</a> takes a shot at making the file management console a little neater and fixes some bugs I found in there, along with a minor security fix.</p>

<p>I'll very probably be slowing down with these releases now!</p>
<p><a href="2011/04/15/staticDimension__version_14.html">#</a></p>]]></description><pubDate>Fri, 15 Apr 2011 17:30 GMT</pubDate></item><item><title>staticDimension - version 1.3 released</title><link>http://subdimension.co.uk/2011/04/14/staticDimension__version_13_released.html</link><guid>http://subdimension.co.uk/2011/04/14/staticDimension__version_13_released.html</guid><description><![CDATA[<p>I've just uploaded <a href="http://subdimension.co.uk/files/staticDimension-1.3.tar.gz">version 1.3</a> to the server adding support for using external applications such as <a href="http://www.red-sweater.com/marsedit/">MarsEdit</a> to publish articles and pages via the MetaWeblog API.</p>

<p>I wasn't all that sure about why people would use applications like this but having spent the last 2 days staring at MarsEdit, I'm definitely a convert (using it to write this!).</p>

<p>Support for editing pages is included, it uses the categories feature of the API to deal with them - anything with a <code>page</code> category is treated as a page instead of an article.</p>

<p>If you're already running an instance of staticDimension, you'll probably want to add this line to the <code>&lt;head&gt;</code> of your <code>_home.html</code> template page:</p>

<pre><code>&lt;link rel="EditURI" type="application/rsd+xml" 
title="RSD" href="controlPanel/xml-rpc.php?rsd"&gt;
</code></pre>

<p>this will allow apps like MarsEdit to auto-configure. For apps that don't auto-configure, the endpoint is:</p>

<pre><code>http://yourwebsite.com/controlPanel/xml-rpc.php
</code></pre>

<p>any problems just <a href="/pages/about_me.html">shout</a></p>
<p><a href="2011/04/14/staticDimension__version_13_released.html">#</a></p>]]></description><pubDate>Thu, 14 Apr 2011 22:08 GMT</pubDate></item><item><title>Prompt</title><link>http://www.panic.com/blog/2011/04/introducing-prompt-ssh-for-ios/</link><guid>http://www.panic.com/blog/2011/04/introducing-prompt-ssh-for-ios/</guid><description><![CDATA[<p>absolutely fantastic SSH client for iOS from Panic.</p>
<p><a href="2011/04/14/Prompt.html">#</a></p>]]></description><pubDate>Thu, 14 Apr 2011 21:13 GMT</pubDate></item><item><title>staticDimension - version 1.2.1 released</title><link>http://subdimension.co.uk/2011/04/12/staticDimension__version_121_released.html</link><guid>http://subdimension.co.uk/2011/04/12/staticDimension__version_121_released.html</guid><description><![CDATA[<p>I've released <a href="/files/staticDimension-1.2.1.tar.gz">version 1.2.1</a> of staticDimension today.</p>

<p>I've also updated the <a href="/pages/staticDimension_changelog.html#1.2.1">change log</a>, main change is that the archive system works a little better, although it is still far from being perfect, I'm struggling to work out how best to present it, at least it now cleans up after itself when posts are deleted.</p>

<p>I've also tweaked the default template after a tip from a user that it wasn't working quite right - it still won't work if you install staticDimension in a sub-folder, but this is really quick to fix just by editing the <code>_archive.html</code> template and adding the folder to the css and navigation links in there.</p>

<p>As ever, any questions, please don't hesitate to <a href="/pages/about_me.html">contact me</a>.</p>

<h2>Updated</h2>

<p>Following this <a href="http://brooksreview.net/2011/04/staticdimension/">excellent review</a> I made a quick tweak to use the full article title on archive pages, rather than just the filename.</p>

<p>I'll be doing my best to work a few more of the things off Ben's list!</p>
<p><a href="2011/04/12/staticDimension__version_121_released.html">#</a></p>]]></description><pubDate>Tue, 12 Apr 2011 18:39 GMT</pubDate></item><item><title>Adobe CS 5.5</title><link>http://subdimension.co.uk/2011/04/12/Adobe_CS_55.html</link><guid>http://subdimension.co.uk/2011/04/12/Adobe_CS_55.html</guid><description><![CDATA[<p>I've seen a lot of people talking about Adobe's announcement of version 5.5 of their Creative Suite. Everyone mentions the fact that you can now rent the software instead of buying it outright.</p>

<p>What I haven't seen anywhere yet (I'm sure I can't be the first, but I haven't seen it) is this:</p>

<p>CS 5.5 Web Premium: <strong>$1799</strong></p>

<p>CS 5.5 Web Premium / month: $135</p>

<p>12 x CS 5.5 Web Premium: <strong>$1620</strong></p>

<p>Oooh, look, it's cheaper! But then you have to pay all over again the next year! If you're the sort of person that simply must have the absolute latest version of everything, then this might be a good deal, except:</p>

<blockquote>
  <p>Adobe now plans to have milestone Creative Suite production introductions at 24-month intervals</p>
</blockquote>

<p>Now, I did chop off a bit explaining that there would be significant mid-cycle releases, but surely those should be released free-of-charge, just like pretty much every other software company?</p>

<p>I'm still over stating it slightly - if you buy your subscription for a whole year at a time, you get it for $89/month, so</p>

<p>1-year CS 5.5 Web Premium: <strong>$1068</strong></p>

<p>but with 24-monthly product releases, you're still paying over $2000 dollars for each release.</p>

<p>The whole thing will only be "cheaper" if Adobe ends up charging for all those mid-cycle releases if you're not renting.</p>

<p>How long before they <em>only</em> provide their software as subscription?</p>
<p><a href="2011/04/12/Adobe_CS_55.html">#</a></p>]]></description><pubDate>Tue, 12 Apr 2011 14:38 GMT</pubDate></item><item><title>Kickstarter</title><link>http://subdimension.co.uk/2011/04/05/Kickstarter.html</link><guid>http://subdimension.co.uk/2011/04/05/Kickstarter.html</guid><description><![CDATA[<p>I've only recently become aware of <a href="http://www.kickstarter.com/">Kickstarter</a>, I follow The Russians Used A Pencil blog when back in October last year they started the <a href="http://www.therussiansusedapencil.com/post/1239840266/glif-an-iphone-4-tripod-mount-stand">Glif project</a>.</p>

<p>I was fascinated by their process and although I didn't fund the project (by the time I got around to reading about it, it had already reached 100%), I did buy myself a Glif from their website afterwards.</p>

<p>Jon and Thomas recently started a new project, <a href="http://www.therussiansusedapencil.com/post/4157853358/the-cosmonaut-a-minimal-wide-grip-stylus">The Cosmonaut</a> which is again using Kickstarter to fund (and again reached its target very quickly). I'm not sure I'd ever use a stylus with my iPad, although Fraser Spiers <a href="http://speirs.org/blog/2011/3/29/ipad-as-digital-whiteboard.html">talked about using his as a digital whiteboard in the classroom</a> which I thought was a very good idea.</p>

<p>I've since started looking at Kickstarter in a little more detail and I think it is an absolutely wonderful system. It has that "Oh my god, if I had that idea I could have built that myself!" thing going for it, which I love - it's not about the technology or the fancy graphical design or the marketing; <em>it's all about the idea</em>.</p>

<p>Kickstarter connects people that are interested in something with other people who are doing things in that field. I browsed around the <a href="http://www.kickstarter.com/discover">Discover section</a> and saw project after project that had absolutely no interest to me whatsoever, but were fully funded, or nearly fully funded which I think is absolutely fantastic.</p>

<p>This one in particular; <a href="http://www.kickstarter.com/projects/lizzyoppenheimer/rest-stops-of-america">Rest stops of America</a> caught my eye. I like to dabble in photography, so was curious as to the sorts of things people were trying to fund - continuing a trip around the US to document old rest stops. As a resident of the UK, this project holds no interest to me at all, but what a wonderful idea. <a href="http://www.lizzyoppenheimer.com/">Lizzy Oppenheimer</a> is passionate about documenting these things, and so far, 193 people are also passionate enough about it to have pledged over $250 in some cases! Fantastic. Rest Stops hasn't quite gotten to its target yet, although there is still time and I'll keep an eye on it.</p>

<p>The thing that I like most about Kickstarter though is that it forces people to plan their dreams, it encourages actual project management. Sure, turn your dream into a reality, <a href="http://www.kickstarter.com/projects/rhymeandreason/continuum-computational-couture">build a dress building robot computer</a>, but you'll need to plan it out, think about costs of materials, labour, packaging.</p>

<p>Being able to put a price on your dream is probably the most important part of making it happen. Sitting down and planning it and working out the costs of the various stages makes any project more likely to succeed.</p>
<p><a href="2011/04/05/Kickstarter.html">#</a></p>]]></description><pubDate>Tue, 05 Apr 2011 10:27 GMT</pubDate></item><item><title>project road map - reinventing the wheel</title><link>http://subdimension.co.uk/2011/03/31/project_road_map__reinventing_the_wheel.html</link><guid>http://subdimension.co.uk/2011/03/31/project_road_map__reinventing_the_wheel.html</guid><description><![CDATA[<p>I was asked today if I have a roadmap for what I plan to do with staticDimension.</p>

<p>Great question!</p>

<p>The thing I like about staticDimension is its simplicity, it does everything that I need it to do and not a lot more, feature-wise I probably won't be adding a huge amount.</p>

<p>The whole reason I wrote it in the first place though, bearing in mind that there are other static publishing systems, is that other options didn't do quite what I wanted. I think this is a healthy state of affairs; I've always been put off building things in the past because there are already a whole load of options and everyone always says "don't re-invent the wheel" and then you kind of feel like Bad Programmer! Naughty! Stop Reinventing That Wheel when you try.</p>

<p>The thing about wheels is: every application of one needs a slightly differently specified wheel. You don't put a bicycle wheel on the family saloon.</p>

<p>I'm under no illusions that staticDimension is finished yet, so here are the things that I'll be working on over the next few weeks:</p>

<ul>
<li>Archive system is bare-minimum functional, needs to be a little prettier and to clean up after itself when articles are deleted from a folder (empty folders are left behind).</li>
<li>User &amp; Settings management needs an interface in the control panel, editing php files is nasty.</li>
<li>File manager interface needs a little bit of polish - directory breadcrumbs don't really look like anything, file info could be more descriptive.</li>
<li>Article list in control panel gets a bit unwieldy when there are lots of articles in it (maybe even just a scroll bar would be nicer? needs thought).</li>
</ul>

<p>I'm also open to ideas too - this project wasn't my idea in the first place! What's your killer feature?</p>
<p><a href="2011/03/31/project_road_map__reinventing_the_wheel.html">#</a></p>]]></description><pubDate>Thu, 31 Mar 2011 13:13 GMT</pubDate></item><item><title>staticDimension - new version, link posts</title><link>http://subdimension.co.uk/2011/03/30/staticDimension__new_version_link_posts.html</link><guid>http://subdimension.co.uk/2011/03/30/staticDimension__new_version_link_posts.html</guid><description><![CDATA[<p>I've published a new version of <a href="/pages/projects.html">staticDimension</a> today that incorporates a link post feature for articles. Still fairly basic, but seems to do the job!</p>

<p>I also created a <a href="/pages/staticDimension_changelog.html">change log</a> page I'll keep up-to-date as I make changes (obviously).</p>
<p><a href="2011/03/30/staticDimension__new_version_link_posts.html">#</a></p>]]></description><pubDate>Wed, 30 Mar 2011 17:44 GMT</pubDate></item></channel></rss>
