<?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>andrewterry.com &#187; blogging</title>
	<atom:link href="http://andrewterry.com/category/blogging/feed/" rel="self" type="application/rss+xml" />
	<link>http://andrewterry.com</link>
	<description></description>
	<lastBuildDate>Mon, 21 May 2012 16:57:52 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>Use Friendfeed to create a lifestream page on your blog</title>
		<link>http://andrewterry.com/2009/07/02/use-friendfeed-to-create-a-lifestream-on-your-blog/</link>
		<comments>http://andrewterry.com/2009/07/02/use-friendfeed-to-create-a-lifestream-on-your-blog/#comments</comments>
		<pubDate>Thu, 02 Jul 2009 19:08:30 +0000</pubDate>
		<dc:creator>AndrewTerry</dc:creator>
				<category><![CDATA[blogging]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[FriendFeed]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[lifestream]]></category>
		<category><![CDATA[lifestreaming]]></category>

		<guid isPermaLink="false">http://andrewterry.com/?p=321</guid>
		<description><![CDATA[I've been looking for a plugin that I could use to create a lifestream page on my blog, but since Friendfeed already does a great job of aggregating my internet bread crumb trail, I thought I'd try and make use of their embeddable widget and cook one up myself.]]></description>
			<content:encoded><![CDATA[<p><strong>Update &#8211; following the acquisition of Friendfeed, I&#8217;m anticipating that their API will either be closed entirely or severely restricted soon. The lifestream page you&#8217;ll see now is powered by David Cramer&#8217;s <a href="http://www.ibegin.com/labs/wp-lifestream/">Lifestream</a> plugin.</strong></p>
<p>I&#8217;ve been looking for a plugin that I could use to create a <a href="http://andrewterry.com/lifestream">lifestream page</a> on my blog, but since <a href="http://friendfeed.com">Friendfeed</a> already does a great job of aggregating my internet bread crumb trail, I thought I&#8217;d try and make use of their <a href="http://friendfeed.com/embed">embeddable widget</a> and cook one up myself.</p>
<p>First stop &#8211; the Tools page, which you can get to here:</p>
<p style="text-align: center;"><img class="aligncenter" title="Friendfeed Tools" src="http://img.skitch.com/20090702-d7kxtup4dparc8ahi1725jp6r8.jpg" alt="" width="499" height="72" /></p>
<p>Then select Embeddable Widget. The default settings for the widget have a Friendfeed logo, a border and a subscribe button, which will look out of place on a themed blog page, so we need to configure the options, like this:</p>
<p style="text-align: center;"><img class="aligncenter" title="Widget options" src="http://img.skitch.com/20090702-jyxj8kn2tiiebg4i45qcjs1mhh.jpg" alt="" width="304" height="353" /></p>
<p>and then copy the code that which gets generated into a new page on your blog (if you&#8217;re using WordPress, you&#8217;ll need to select the HTML tab, rather than the Visual tab when you&#8217;re editing the page). You should now see something like this:</p>
<p><code>&lt;script type="text/javascript" src="http://friendfeed.com/embed/widget/yourFriendfeedName?v=3&amp;amp;<strong>num=10</strong>&amp;amp;hide_logo=1&amp;amp;hide_comments_likes=1&amp;amp;hide_subscribe=1"&gt;&lt;/script&gt;<strong>&lt;noscript&gt;&lt;a href="http://friendfeed.com/yourFriendfeedName"&gt;&lt;img alt="View my FriendFeed" style="border:0;" src="http://friendfeed.com/embed/widget/yourFriendfeedName?v=3&amp;amp;num=10&amp;amp;hide_logo=1&amp;amp;hide_comments_likes=1&amp;amp;hide_subscribe=1&amp;amp;format=png"/&gt;&lt;/a&gt;&lt;/noscript&gt;</strong></code></p>
<p>I&#8217;ve highlighted a couple sections in the code snippet that you can change &#8211; for my use, I changed the <code>num=</code> variable so the widget displays 20 items instead, and I&#8217;ve also removed the code between the <code>&lt;noscript&gt;</code> tags, too (this renders the widget as an image, for anyone running their browser with Javascript disabled).</p>
<p>I wanted the lifestream data to look like it was an organic part of my blog, so had to edit my stylesheet in order to make the background transparent and hide the comments and likes. In WordPress, the stylesheet is located in the <code>wp-content/themes/yourTheme/style.css</code> , which is where the following additions get appended:<br />
<code><br />
.friendfeed {<br />
color:#222222;<br />
font-family:"Lucida Grande",Verdana,Arial,Helvetica,sans-serif !important;<br />
font-size:10pt !important;<br />
}<br />
.friendfeed img {<br />
border:0 none;<br />
}<br />
.friendfeed .header div.inner {<br />
display: none !important;<br />
}<br />
.friendfeed .header img.logo {<br />
display: none !important;<br />
}<br />
.friendfeed .feed {<br />
background-color:transparent !important;<br />
border-color:transparent !important;<br />
}<br />
.friendfeed .feed .entry .comments .comment {<br />
display: none;<br />
}<br />
.friendfeed .feed .entry .likes {<br />
display: none;<br />
}<br />
</code></p>
<p>(For some reason, I had to explicitly define the font-family; the widget wouldn&#8217;t inherit from my default style sheet &#8211; if anyone can shed some light on the reason, I&#8217;d be grateful for the lesson!.)</p>
<p>When I was tinkering with CSS elements, I couldn&#8217;t for the life of me get the changes to apply to the page; it was rendering with Friendfeed&#8217;s default settings &#8211; despite the use of the <code>!important</code> tag. I was <a href="http://twitter.com/AndrewTerry/status/2376465076">banging my head</a> <a href="http://twitter.com/AndrewTerry/status/2393158631">against the wall</a>, until I read <a href="http://www.building43.com/web-tools/2009/06/17/embedding-friendfeed-like-we-do-here-on-building43/">this</a> post by Michelle McGinnis over at building43:</p>
<blockquote><p>There is one important caveat, however: your stylesheet will be cached on the FriendFeed server, so every time you make a change you will need to change the name of the stylesheet. You can do this by adding ?v=1, ?v=2, ?v=3 etc to the end of the link.</p></blockquote>
<p>I&#8217;ve highlighted the field Michelle is referring to in the code snippet copied from the widget generator:</p>
<p><code>&lt;script src="http://friendfeed.com/embed/widget/yourFriendfeedName?<strong>v=3</strong>&amp;num=10&amp;hide_logo=1&amp;hide_comments_likes=1&amp;hide_subscribe=1" type="text/javascript"&gt;</code></p>
<p>Once I&#8217;d updated the version number, the page rendered itself nicely &#8211; thanks Michelle; I really was tearing my hair out with that one!</p>
<p>So there you have it &#8211; a <a href="http://andrewterry.com/lifestream">themed lifestream page</a>, courtesy of Friendfeed, and I&#8217;m pleased with the result, if I do say so myself! If you do this on your blog, let me know; I&#8217;d love to hear from you.</p>
]]></content:encoded>
			<wfw:commentRss>http://andrewterry.com/2009/07/02/use-friendfeed-to-create-a-lifestream-on-your-blog/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Twitter needs an &#8220;Edit&#8221; function</title>
		<link>http://andrewterry.com/2009/06/27/twitter-needs-an-edit-function/</link>
		<comments>http://andrewterry.com/2009/06/27/twitter-needs-an-edit-function/#comments</comments>
		<pubDate>Sat, 27 Jun 2009 11:03:08 +0000</pubDate>
		<dc:creator>AndrewTerry</dc:creator>
				<category><![CDATA[microblogging]]></category>
		<category><![CDATA[Twitter]]></category>
		<category><![CDATA[features]]></category>
		<category><![CDATA[functions]]></category>
		<category><![CDATA[publishing]]></category>
		<category><![CDATA[twitter]]></category>

		<guid isPermaLink="false">http://andrewterry.com/?p=243</guid>
		<description><![CDATA[I love Twitter; honestly, I do; but the lack of an Edit function is really starting to piss me off. Like most of the internet on Thursday night (UK time), I was following the news of Michael Jackson&#8217;s shocking and untimely death. One of the first substantive articles I came across was on the LA [...]]]></description>
			<content:encoded><![CDATA[<p>I love Twitter; honestly, I do; but the lack of an Edit function is really starting to piss me off.</p>
<p>Like <a href="http://www.techcrunch.com/2009/06/25/the-web-collapses-under-the-weight-of-michael-jacksons-death/">most of the internet</a> on Thursday night (UK time), I was following the news of Michael Jackson&#8217;s shocking and untimely death. One of the first substantive articles I came across was on the LA Times blog, reporting that the star had been taken to hospital after suffering a cardiac arrest.</p>
<p>I shortened the URL using <a title="bit.ly - a URL shortener" href="http://bit.ly/">bit.ly</a>, and Twittered the following:</p>
<p><a href="http://twitter.com/AndrewTerry/status/2332313405"><img class="aligncenter" title="Misspelled Tweet" src="http://img.skitch.com/20090627-rdg7nh8act3n8daus7wcjaxjxk.jpg" alt="" width="523" height="228" /></a></p>
<p>Even as my finger was hitting the Return key, my subconscious spell-checker was shouting a warning, but too late.</p>
<p>It seems that <a href="http://digital.venturebeat.com/2009/06/25/internet-lets-bad-spellers-grieve-for-micheal-jackson/">I wasn&#8217;t alone</a>:</p>
<blockquote><p>&#8230;the trending topics list on Twitter is a rotating set of call-outs to the late King of Pop. At first it was shocking to see how many people are capable of operating Twitter, but not spelling “Michael” correctly.</p></blockquote>
<p>Over on <a title="AndrewTerry on Friendfeed" href="http://friendfeed.com/andrewterry">my Friendfeed</a>, however, it was a different matter. My Tweets get cross-posted there, but Friendfeed allows me to edit anything I post into my stream:</p>
<p style="text-align: center;"><a href="http://friendfeed.com/andrewterry/afc76a45/la-times-reporting-michael-jackson-has-had"><img class="aligncenter" title="Misspelled Tweet, corrected on Friendfeed" src="http://img.skitch.com/20090627-ff3p79a58u2x1nwcdp83q3fkbm.jpg" alt="" width="543" height="83" /></a></p>
<p>See the difference? Here we have the &#8220;same&#8221; post from Twitter, but edited to correct my stupid spelling mistake.</p>
<p>Like  Friendfeed, Twitter is, at heart, an online publishing tool, so the ability to edit a post <em>after</em> publication is basic functionality, and something that Twitter has been lacking for too long now.</p>
]]></content:encoded>
			<wfw:commentRss>http://andrewterry.com/2009/06/27/twitter-needs-an-edit-function/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>One feed to rule them all</title>
		<link>http://andrewterry.com/2008/03/30/one-feed-to-rule-them-all/</link>
		<comments>http://andrewterry.com/2008/03/30/one-feed-to-rule-them-all/#comments</comments>
		<pubDate>Sun, 30 Mar 2008 13:40:56 +0000</pubDate>
		<dc:creator>AndrewTerry</dc:creator>
				<category><![CDATA[blogging]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[FriendFeed]]></category>

		<guid isPermaLink="false">http://andrewterry.com/2008/03/30/one-feed-to-rule-them-all/</guid>
		<description><![CDATA[As I was trawling through this morning&#8217;s updates in my FriendFeed, I came across an interesting post from Loic Le Meur saying that while his blog used to be the central point for his online presence, using services like Twitter, Flickr, del.icio.us, Dopplr, etc has fragmented that presence. He goes on to point out that, [...]]]></description>
			<content:encoded><![CDATA[<p>As I was trawling through this morning&#8217;s updates in my <a href="http://friendfeed.com/">FriendFeed</a>, I came across an interesting post from <a href="http://www.loiclemeur.com/english/2008/03/my-social-map-i.html">Loic Le Meur</a> saying that while his blog <em>used</em> to be the central point for his online presence, using services like Twitter, Flickr, del.icio.us, Dopplr, etc has fragmented that presence. </p>
<p>He goes on to point out that, while FriendFeed does a fine job of bringing all of that data together, it would be better to have that data on his blog, rather than just at FriendFeed.</p>
<p>I <a href="http://www.loiclemeur.com/english/2008/03/my-social-map-i.html#comment-281715">commented</a> on Loic&#8217;s post to say that while FriendFeed is a <em>destination</em> today, the development of&nbsp; their API will turn it into a <em>data source</em> tomorrow. I&#8217;m already starting to see this happen &#8211; FriendFeed has made my Plaxo Pulse redundant (although Plaxo still does a better job than anyone synchronising my calendars); the same is largely true of&nbsp; my Facebook mini-feed where I used to have Twitter, Google Reader (via <a href="http://apps.facebook.com/feedheads/">Feedheads</a>), Flickr, Last.fm etc, all posting updates to my mini-feed via their Facebook applications &#8211; now I don&#8217;t need to; the FriendFeed application does it all instead. </p>
<p>If we take that over to the Loic&#8217;s centralised online presence &#8211; his blog-, he&#8217;ll still have to trust the <em>aggregation task</em> to FriendFeed, but he can get his aggregated data feed <strong><em>back out</em></strong>, via the API, and recentralise it how he wants.</p>
<p>Which brings us to a part of the data portability debate that has been largely overlooked and that is &#8220;it&#8217;s my data, I want to <em>use</em> it where and <em>how</em> I like&#8221;. In this <a href="http://www.techcrunch.com/2008/03/30/friendfeed-the-centralized-me-and-data-portability/">post on TechCrunch</a>, Mike Arrington suggests that DataPortability is somehow a threat to FriendFeed, but I&#8217;m not sure that&#8217;s the case. Ok, so FriendFeed isn&#8217;t about getting social networks to explicitly talk to each other, but unlike Facebook, which is quite happy to let data <strong><em>in</em></strong> while not letting it back out, FriendFeed feeds and comments are available to anyone with a bit of &#8220;<a href="http://blog.slaven.net.au/archives/2008/03/27/friendfeed-comments-wordpress-plugin/">mad coding skillz</a>&#8220;.</p>
<p>If I can feed the same data stream into my blog, into my Facebook or wherever, then isn&#8217;t it this early openness that puts FriendFeed ahead of the game? One feed to rule them all in the webness bind them&#8230; <font size="1">(I&#8217;m sorry; it&#8217;s awful, I know, but I couldn&#8217;t resist)</font>.</p>
<div class="wlWriterSmartContent" id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:0534e3b4-ebf3-4613-9651-4d88d74e0457" style="padding-right: 0px; display: inline; padding-left: 0px; padding-bottom: 0px; margin: 0px; padding-top: 0px">Technorati Tags: <a href="http://technorati.com/tags/FriendFeed" rel="tag">FriendFeed</a>, <a href="http://technorati.com/tags/Facebook" rel="tag">Facebook</a>, <a href="http://technorati.com/tags/lifestream" rel="tag">lifestream</a>, <a href="http://technorati.com/tags/aggregation" rel="tag">aggregation</a>, <a href="http://technorati.com/tags/data" rel="tag">data</a>, <a href="http://technorati.com/tags/portability" rel="tag">portability</a></div>
]]></content:encoded>
			<wfw:commentRss>http://andrewterry.com/2008/03/30/one-feed-to-rule-them-all/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Extra surprises with Live Writer Beta 3</title>
		<link>http://andrewterry.com/2007/09/12/extra-surprises-with-live-writer-beta-3/</link>
		<comments>http://andrewterry.com/2007/09/12/extra-surprises-with-live-writer-beta-3/#comments</comments>
		<pubDate>Wed, 12 Sep 2007 22:21:43 +0000</pubDate>
		<dc:creator>AndrewTerry</dc:creator>
				<category><![CDATA[applications]]></category>
		<category><![CDATA[blogging]]></category>
		<category><![CDATA[software]]></category>

		<guid isPermaLink="false">http://andrewterry.com/2007/09/12/extra-surprises-with-live-writer-beta-3/</guid>
		<description><![CDATA[The latest update for Windows Live Writer is available for download; in addition to a bug reported here, it also seems to contain a couple of extra, and unsolicited surprises. When the installer starts, you click through the ToS, and are faced by this: I just wanted Live Writer installed on my computer &#8211; I [...]]]></description>
			<content:encoded><![CDATA[<p>The latest update for Windows Live Writer is available for <a href="http://windowslivewriter.spaces.live.com/">download</a>; in addition to a bug reported <a href="http://richardsbraindump.blogspot.com/2007/09/windows-live-writer-beta-3-bug-with.html">here</a>, it also seems to contain a couple of extra, and unsolicited surprises. When the installer starts, you click through the ToS, and are faced by this:</p>
<p><center><a href="http://andrewterry.com/wp-content/uploads/2007/09/lwinstaller.jpg"><img src="http://andrewterry.com/wp-content/uploads/2007/09/lwinstaller-thumb.jpg" style="border-width: 0px" alt="Live Writer installer graphic" border="0" height="359" width="401" /></a></center>I just wanted Live Writer installed on my computer &#8211; I have no idea what Sign-In Assistant does, and I don&#8217;t use Messenger, so it&#8217;s of no use to me, but there they are, being installed.</p>
<p>At first, I thought I had simply clicked through on a previous screen without deselecting the two options I didn&#8217;t want, so I cancelled the install and started again. Same result &#8211; at no point was I asked if I want to deselect these <strike>optional</strike> extras, which means <em>you can&#8217;t install Live Writer on its own</em>.</p>
<p>The <a href="http://get.live.com/betas/writer_sysreq">system requirements for Live Writer</a> make no mention of Sign-In Assistant and Messenger being required components, so I can&#8217;t understand why they&#8217;re not optional. There&#8217;s no good reason I can think of for a legitimate application vendor to install stuff on my computer that I don&#8217;t want or need, and Microsoft really should know better.</p>
<p>Equally annoying (but, at least de-selectable) the 4 boxes for Mail, Toolbar, Photo Gallery and Family Safety are checked by default.</p>
<p>The new release does have some new features, like the ability to insert video and preview within a Live Writer dialogue:</p>
<p><center><a href="http://andrewterry.com/wp-content/uploads/2007/09/lwvideodialogue.jpg"><img src="http://andrewterry.com/wp-content/uploads/2007/09/lwvideodialogue-thumb.jpg" style="border-width: 0px" alt="lwVideoDialogue" border="0" height="484" width="401" /></a></center>The Insert Picture dialogue is improved too, featuring a Preview for pictures inserted via the web.</p>
<p>Also included in this release is support for printing, which is a bit of a puzzle to me, but I guess someone might need to print out their blog posts, as well actually post them.</p>
<p>After going for so long without an update, it&#8217;s good to see another release (and not just a bug-fix, too,) so soon after the <a href="http://andrewterry.com/2007/05/31/live-writer-beta-2-has-arrived/">last one</a>. Live Writer is easy to set up, easy to use and is still my blogging tool of choice. And, despite my mini-rant just now, I would highly recommend you <a href="http://windowslivewriter.spaces.live.com/">check it out</a>, if you haven&#8217;t already.</p>
<p>Hat-tip to <a href="http://austinblogger.com/blog/">Springnet,</a> for the heads-up via <a href="http://twitter.com/springnet">Twitter</a>.</p>
<p class="wlWriterSmartContent" id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:ddc6db37-b0be-4a89-80aa-f5a4292bd022" style="margin: 0px; padding: 0px; display: inline; float: none">Technorati Tags: <a href="http://technorati.com/tags/Microsoft" rel="tag">Microsoft</a>, <a href="http://technorati.com/tags/Live%20Writer" rel="tag">Live Writer</a>, <a href="http://technorati.com/tags/tools" rel="tag">tools</a>, <a href="http://technorati.com/tags/blog" rel="tag">blog</a>, <a href="http://technorati.com/tags/writing" rel="tag">writing</a>, <a href="http://technorati.com/tags/utilities" rel="tag">utilities</a></p>
<p class="wlWriterSmartContent" id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:ddc6db37-b0be-4a89-80aa-f5a4292bd022" style="margin: 0px; padding: 0px; display: inline; float: none">&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://andrewterry.com/2007/09/12/extra-surprises-with-live-writer-beta-3/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>New Theme; New Start</title>
		<link>http://andrewterry.com/2007/09/04/new-theme-new-start/</link>
		<comments>http://andrewterry.com/2007/09/04/new-theme-new-start/#comments</comments>
		<pubDate>Tue, 04 Sep 2007 22:36:32 +0000</pubDate>
		<dc:creator>AndrewTerry</dc:creator>
				<category><![CDATA[blog]]></category>
		<category><![CDATA[blogging]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://andrewterry.com/2007/09/04/new-theme-new-start/</guid>
		<description><![CDATA[Over the last few months, I&#8217;ve found it increasingly difficult to summon up the motivation to write any blog posts.&#160; It wasn&#8217;t as though there was nothing to write about; I just felt that I had nothing of value to add to the conversation that wasn&#8217;t being said elsewhere. I think it comes down to [...]]]></description>
			<content:encoded><![CDATA[<p>Over the last few months, I&#8217;ve found it increasingly difficult to summon up the motivation to write any blog posts.&nbsp; It wasn&#8217;t as though there was nothing to write about; I just felt that I had nothing of value to add to the conversation that wasn&#8217;t being said elsewhere. I think it comes down to the fact that this blog was too narrowly focused on games, gadgets and technology,&nbsp;and the only way to give&nbsp;my blogging the kick up the arse it needs is to broaden the horizon.</p>
<p>So, first things first &#8211; out with <a href="http://cordobo.com/free-wordpress-templates/cordobo-green-park/">the old</a> and in with <a href="http://pomomusings.com/design/">the new</a>. It was a tough decision to ditch the <a href="http://cordobo.com/free-wordpress-templates/cordobo-green-park/">Cordobo theme</a>, which I&#8217;ve used since moving this blog over to <a href="http://wordpress.org/">WordPress</a>, but I needed to do something positive to get myself back in the driving seat. I&nbsp;spent what felt like an age looking something <em>fresh, light&nbsp;and clean</em>&nbsp;and, after filtering out the search results for &#8220;ladies unmentionables&#8221;,&nbsp;I came&nbsp;across <a href="http://pomomusings.com/design/">this theme</a> by Adam Walker Cleaveland, which immediately pressed all the right buttons for me. </p>
<p>For the header image, I&#8217;ve used&nbsp;a <a href="http://www.flickr.com/photos/andrewterry/1323322947/">picture</a> that I took&nbsp;at&nbsp;the harbour in <a href="http://en.wikipedia.org/wiki/Nantucket">Nantucket</a> while waiting for the ferry back to Hyannis, which I then cropped and flipped. I&#8217;m not sure about the font for the header text, though; it feels a little too clunky. Perhaps I need to add it directly to the image and use something with less weight? For the <a href="http://en.wikipedia.org/wiki/Favicon">favicon</a>, I cropped the header image still further, and used <a href="http://www.htmlkit.com/services/favicon/">HTMLKit&#8217;s favicon service</a>. </p>
<p>To display my <a href="http://twitter.com/AndrewTerry">Twitters</a> in the sidebar, I&#8217;ve used&nbsp;Alex King&#8217;s <a href="http://wordpress.org/extend/plugins/twitter-tools/">Twitter Tools plugin</a>; I also use another of Alex&#8217;s plugins &#8211; <a href="http://wordpress.org/extend/plugins/share-this/">Share This</a> &#8211; which provides an elegant and unobtrusive way for readers to add a post to a number of social networking/bookmarking sites.</p>
<p>I&#8217;m far from finished though; there are still some further tweaks that I will make over the coming days:</p>
<h5>I need to revise and consolidate my categories.</h5>
<p><em>When I started this blog, I didn&#8217;t take the time to understand the difference between categories, keywords and tags (oh, my!); consequently I have a bunch of random/orphaned categories that need tidying up. I figure I can use a SQL query to rename them, but I wonder how that affects incoming links and indexes?</em></p>
<h5>The categories list is dull.</h5>
<p><em>The alphabetical list of categories isn&#8217;t as engaging as the tag-cloud I used to have; that needs to be put right.</em></p>
<h5>I need to fix the sidebar and footer presentation on the static pages.</h5>
<p><em>If you take a look at my </em><a href="http://andrewterry.com/link-blog/"><em>Link Blog</em></a><em> or </em><a href="http://andrewterry.com/contact/"><em>Contact Me</em></a><em> pages, you&#8217;ll see that the side bars and footer aren&#8217;t being rendered.</em></p>
<h5>I want to change the sidebar widgets that present the RSS Feeds.</h5>
<p><em>The default on the widgets doesn&#8217;t include the RSS icon; a small thing, I know, but it&#8217;s a daft omission.</em></p>
<h5>I need to change the Search function.</h5>
<p><em>I felt that the Search box provided by the theme interfered too much with the header image; on the other hand, the WordPress-provided Search widget is too &#8220;blah&#8221;. I need something that fits better with the crispness of the theme. </em></p>
<h5>The presentation of the Technorati tags needs changing.</h5>
<p><em>Like the Search box, the way these are presented now looks like an afterthought. </em></p>
<p>I&#8217;ve listed these things here because I remember reading a blog post some weeks back about publishing stuff that you want to get done; once it&#8217;s out there, it&#8217;s harder to procrastinate and put them off. (If anyone can help me out with that link, I&#8217;ll update this post.)</p>
<p>So,&nbsp;here&#8217;s the new look at <a href="http://andrewterry.com">andrewterry.com</a>&nbsp;- this will be the catalyst for me writing about&nbsp;things other than tech stuff; stuff I want to get off my chest; stuff that I can share; stuff&nbsp;that I hope more people can engage with.</p>
<p>How do you like it? </p>
]]></content:encoded>
			<wfw:commentRss>http://andrewterry.com/2007/09/04/new-theme-new-start/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Splashblog bites the dust</title>
		<link>http://andrewterry.com/2007/08/12/splashblog-bites-the-dust/</link>
		<comments>http://andrewterry.com/2007/08/12/splashblog-bites-the-dust/#comments</comments>
		<pubDate>Sun, 12 Aug 2007 22:38:23 +0000</pubDate>
		<dc:creator>AndrewTerry</dc:creator>
				<category><![CDATA[applications]]></category>
		<category><![CDATA[blogging]]></category>
		<category><![CDATA[smartphone]]></category>

		<guid isPermaLink="false">http://andrewterry.com/2007/08/12/splashblog-bites-the-dust/</guid>
		<description><![CDATA[As a regular Splashblog user, I was disappointed to receive an email today from them saying that the service will be terminated in early September.&#160;It seems that having acquired Splashdata last year, Six Apart now want to kill off Splashblog and shift that community over to Vox. I use Splashblog on my Windows Smartphone, but [...]]]></description>
			<content:encoded><![CDATA[<p>As a regular <a href="http://www.splashblog.com/AndrewTerry">Splashblog user</a>, I was disappointed to receive an email today from them saying that the service will be terminated in early September.&nbsp;It seems that having <a href="http://gigaom.com/2006/03/10/six-apart-acquires-splash-blog/">acquired</a> Splashdata last year, <a href="http://www.sixapart.com/">Six Apart</a> now want to kill off Splashblog and shift that community over to <a href="http://www.sixapart.com/vox">Vox</a>.</p>
<p>I use Splashblog on my Windows Smartphone, but the mobile&nbsp;client <a href="http://www.cantoni.org/2005/02/27/splashblog">started out</a> as a Palm application and so the news of Splashblog&#8217;s passing&nbsp;has, for once, united&nbsp;<a href="http://palmaddict.typepad.com/palmaddicts/2007/08/farewell-splash.html">Palm</a> and Windows Mobile users who are equally sad to see the end of such a great service. </p>
<p>So, where now for mobile photoblogging? I&nbsp;keep a few photos online at Sharpcast, because&nbsp;the client app makes uploading and synching a) as easy as pie&nbsp;and b) slicker than Flickr (fancy a new tagline, Sharpcast?). Sharpcast have released a <a href="http://www.sharpcast.com/downloads/mobile.html">mobile client</a>, but I haven&#8217;t played with it yet. With Splashblog closing down, I guess that&#8217;s the obvious choice.</p>
<p>What do you use for moblogging?</p>
<div class="wlWriterSmartContent" id="0767317B-992E-4b12-91E0-4F059A8CECA8:d4873e6f-1459-41de-aaa5-96450ced9672" contenteditable="false" style="padding-right: 0px; display: inline; padding-left: 0px; padding-bottom: 0px; margin: 0px; padding-top: 0px">Technorati Tags: <a href="http://technorati.com/tags/Splashblog" rel="tag">Splashblog</a>, <a href="http://technorati.com/tags/microblogging" rel="tag">microblogging</a>, <a href="http://technorati.com/tags/palm" rel="tag">palm</a>, <a href="http://technorati.com/tags/moblog" rel="tag">moblog</a>, <a href="http://technorati.com/tags/moblogging" rel="tag">moblogging</a>, <a href="http://technorati.com/tags/mobile" rel="tag">mobile</a>, <a href="http://technorati.com/tags/cameraphone" rel="tag">cameraphone</a>, <a href="http://technorati.com/tags/cellphones" rel="tag">cellphones</a></div>
]]></content:encoded>
			<wfw:commentRss>http://andrewterry.com/2007/08/12/splashblog-bites-the-dust/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

