<?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; wordpress</title>
	<atom:link href="http://andrewterry.com/category/blogging/wordpress/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>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>Feed Frenzy</title>
		<link>http://andrewterry.com/2006/10/25/feed-frenzy/</link>
		<comments>http://andrewterry.com/2006/10/25/feed-frenzy/#comments</comments>
		<pubDate>Wed, 25 Oct 2006 16:55:52 +0000</pubDate>
		<dc:creator>andrew</dc:creator>
				<category><![CDATA[blog]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://andrewterry.com/2006/10/25/feed-frenzy/</guid>
		<description><![CDATA[Thanks to Paul O&#8217;Flaherty for taking the time to point out that my RSS feed was broken. I didn&#8217;t spot this myself because I don&#8217;t subscribe to my main feed in Google Reader, just the comments feed. Attensa was picking up my main feed&#160;posts just fine, and although I don&#8217;t use it much these days, [...]]]></description>
			<content:encoded><![CDATA[<p>Thanks to <a href="http://blog.oflaherty.dk/">Paul O&#8217;Flaherty</a> for taking the time to point out that my RSS feed was broken.</p>
<p>I didn&#8217;t spot this myself because I don&#8217;t subscribe to my main feed in Google Reader, just the comments feed. Attensa was picking up my main feed&nbsp;posts just fine, and although I don&#8217;t use it much these days, the toast slices were popping up each time I posted something new so I figured everything was groovy.</p>
<p>After the heads-up from Paul, I tried to add the main feed to Google Reader but it told me there were no valid feeds at my URL. Yikes! I headed over to <a href="http://feedvalidator.org/check.cgi?url=http%3A//andrewterry.com/feed">feedvalidator.org</a> and checked both of my feed URLs. I needed to make some changes to a couple of the WordPress php files, and a change to a php module for one of the plugins that I use before the feeds would validate.</p>
<p>The strange thing is that the main feed <em>still</em> isn&#8217;t being picked up by Google Reader. By that I mean the feed title appears, but it doesn&#8217;t collect any posts. If I specify it as:</p>
<p align="center">&nbsp;<a href="http://andrewterry.com/?feed=rss2">http://andrewterry.com/?feed=rss2</a> </p>
<p>it&#8217;s fine; the same if I drop the trailing slash, as in, </p>
<p align="center"><a href="http://andrewterry.com/feed">http://andrewterry.com/feed</a></p>
<p>The problem is I&#8217;m struggling to find out where/how WordPress constructs this URL. Even stranger is the fact that Google Reader doesn&#8217;t seem to care about the trailing&nbsp;slash on the comments feed, and picking up new posts there without any problem.</p>
<p>I&#8217;ve got a couple of queries posted elsewhere, but if anyone reading this can shed some light on this strangeness, I would love to hear from you!</p>
<p>[tags]Google Reader, WordPress, feeds, RSS[/tags]</p>
]]></content:encoded>
			<wfw:commentRss>http://andrewterry.com/2006/10/25/feed-frenzy/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>At Last&#8230;.</title>
		<link>http://andrewterry.com/2006/08/25/at-last/</link>
		<comments>http://andrewterry.com/2006/08/25/at-last/#comments</comments>
		<pubDate>Fri, 25 Aug 2006 19:02:39 +0000</pubDate>
		<dc:creator>andrew</dc:creator>
				<category><![CDATA[blog]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://andrewterry.com/index.php/2006/08/25/at-last/</guid>
		<description><![CDATA[Well, here we are. You would not believe the pain-in-the-arse hassle I&#8217;ve had to get to this point. I&#8217;ve changed web hosts, because GoDaddy don&#8217;t allow SSH connections, (Bluehost to the resuce!), but then found I needed to provide photo-ID to Bluehost before they would enable SSH on my hosting account. I&#8217;ve been cursing Firefox [...]]]></description>
			<content:encoded><![CDATA[<p>Well, here we are. You would not believe the pain-in-the-arse hassle I&#8217;ve had to get to this point.</p>
<p>I&#8217;ve changed web hosts, because GoDaddy don&#8217;t allow SSH connections, (<a title="Bluehost" href="http://www.bluehost.com">Bluehost</a> to the resuce!), but then found I needed to provide photo-ID to Bluehost before they would enable SSH on my hosting account. I&#8217;ve been cursing Firefox on Ubuntu for making it so difficult to install a simple plug-in. I&#8217;ve been cursing Ubuntu generally, because after installing <a title="phpMyAdmin" href="http://www.phpmyadmin.net">phpmyadmin</a> on my localhost, it point-blank refused to open.</p>
<p>It got to the point where I had visions of not being able to import any posts and categories and being forced to start over. Then I found <a href="http://www.ducea.com/2006/05/20/backup-your-mysql-databases-manually-with-mysqldump/">this article</a>, and figured that I could use the SQL script created by the mysqldump command and then cut and paste that script into the mySQL query window at Bluehost. As you can see, it worked!</p>
]]></content:encoded>
			<wfw:commentRss>http://andrewterry.com/2006/08/25/at-last/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Countdown</title>
		<link>http://andrewterry.com/2006/08/22/countdown/</link>
		<comments>http://andrewterry.com/2006/08/22/countdown/#comments</comments>
		<pubDate>Tue, 22 Aug 2006 12:26:44 +0000</pubDate>
		<dc:creator>andrew</dc:creator>
				<category><![CDATA[blog]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://127.0.0.1/index.php/2006/08/22/countdown/</guid>
		<description><![CDATA[Well, it&#8217;s almost ready! I&#8217;ve got WordPress, mysql and PHP running on my local Ubuntu host. I&#8217;ve imported a theme that I really like and I&#8217;ve customised it so that I can display my Xbox Live Gamercard. All I need to do now is back everything up; change the pointers on my WordPress database to [...]]]></description>
			<content:encoded><![CDATA[<p>Well, it&#8217;s almost ready! I&#8217;ve got WordPress, mysql and PHP running on my local Ubuntu host. I&#8217;ve imported a theme that I really like and I&#8217;ve customised it so that I can display my Xbox Live Gamercard.</p>
<p>All I need to do now is back everything up; change the pointers on my WordPress database to point to my external hostname and then upload everything to my web host.</p>
<p>The next time you read this, andrewterry.com will look very different! I hope you like it.</p>
]]></content:encoded>
			<wfw:commentRss>http://andrewterry.com/2006/08/22/countdown/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Trouble with Change&#8230;</title>
		<link>http://andrewterry.com/2006/08/12/the-trouble-with-change/</link>
		<comments>http://andrewterry.com/2006/08/12/the-trouble-with-change/#comments</comments>
		<pubDate>Sat, 12 Aug 2006 09:40:01 +0000</pubDate>
		<dc:creator>andrew</dc:creator>
				<category><![CDATA[blog]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://127.0.0.1/?p=5</guid>
		<description><![CDATA[As I mentioned in the previous post, I&#8217;d intended to move away from Quickblog and set up WordPress instead. Having got some direction on this from the technical support guys at GoDaddy, I figured the best way to migrate with minimum downtime was to setup a Linux web, php and mysql server on my own [...]]]></description>
			<content:encoded><![CDATA[<p>As I mentioned in the previous post, I&#8217;d intended to move away from Quickblog and set up WordPress instead. Having got some direction on this from the technical support guys at GoDaddy, I figured the best way to migrate with minimum downtime was to setup a Linux web, php and mysql server on my own network, load it up with WordPress and prepare the new blog there before switching off Quickblog with my web host.</p>
<p>As someone who has only tinkered with the periphery of Linux in the past, this is proving to be easier said than done&#8230; I&#8217;ve built and rebuilt my Ubuntu server at least 3 times now, and have ended up hosing it because of some weird config change that I&#8217;ve made in trying to get mysql working. The problem I&#8217;ve found with much of the documentation out there is that it starts off assuming no user knowledge at all, but drops that assumption half way through. I can&#8217;t blame it all on the documentation though &#8211; I&#8217;ll bash away at something and refer back to the docs only when the system is on its knees, by which time its usually unrecoverable!</p>
<p>So, I&#8217;m on my fourth rebuild but this time, I&#8217;m noting down everything I&#8217;m doing so that I can go back and undo it &#8211; <a href="http://www.tiddlywiki.com/">TiddlyWiki</a> is great for this type of project. You never know; it might turn out to be a useful reference for other Windows admins who want to setup an Ubuntu host.</p>
<p>In short, the last week or so has been frustrating, time consuming, but I haven&#8217;t enjoyed myself this much for ages! I guess I&#8217;ll be sticking with Quickblog for a little while yet.</p>
]]></content:encoded>
			<wfw:commentRss>http://andrewterry.com/2006/08/12/the-trouble-with-change/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

