<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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/" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:creativeCommons="http://backend.userland.com/creativeCommonsRssModule" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>Gary Jones</title>
	
	<link>http://garyjones.co.uk</link>
	<description>Personal playground for a Web Developer</description>
	<lastBuildDate>Tue, 27 Oct 2009 01:53:40 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.5</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<geo:lat>51.273354</geo:lat><geo:long>-1.080608</geo:long><creativeCommons:license>http://creativecommons.org/licenses/by-nc-sa/3.0/</creativeCommons:license><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" href="http://feeds.feedburner.com/garyjones" type="application/rss+xml" /><feedburner:emailServiceId>garyjones</feedburner:emailServiceId><feedburner:feedburnerHostname>http://feedburner.google.com</feedburner:feedburnerHostname><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com" /><item>
		<title>Get Shutter Reloaded and Twivatar Working Together</title>
		<link>http://feedproxy.google.com/~r/garyjones/~3/wrWSUb0j3tE/</link>
		<comments>http://garyjones.co.uk/blog/shutter-reloaded-twivatar/#comments</comments>
		<pubDate>Thu, 06 Aug 2009 10:27:40 +0000</pubDate>
		<dc:creator>Gary</dc:creator>
				<category><![CDATA[Website]]></category>

		<guid isPermaLink="false">http://garyjones.co.uk/?p=1368</guid>
		<description><![CDATA[I use Shutter Reloaded as my Lightbox-esque WordPress plugin of choice for enlarging images. To work though, it requires a link to an image. The very useful Twivatar application for pulling live Twitter avatars however, uses a non-image link. Here's how I got them to work together.]]></description>
			<content:encoded><![CDATA[<p>I use <a href="http://www.laptoptips.ca/projects/wp-shutter-reloaded/">Shutter Reloaded</a> as my Lightbox-esque WordPress plugin of choice for enlarging images. To work though, it requires a link to an image. The very useful <a href="http://twivatar.org">Twivatar</a> application for pulling live Twitter avatars however, uses a non-image link. Here&#8217;s how I got them to work together.</p>
<p><span id="more-1368"></span></p>
<h3>The Background</h3>
<p>I recently added in a <a href="http://garyjones.co.uk/about-gary-jones-garyj/">landing page for Twitter</a> and decided to include all of my Twitter accounts on there. A targeted landing page means you can provide the right information to the expected audience &#8211; if they&#8217;ve found that page via my Twitter profile, then they might also be interested in the other accounts I run.</p>
<p>To make it a little more interesting, I decided to add in the Twitter avatars too. Now, Twitter itself doesn&#8217;t make it easy to pull out the live image for an account &#8211; there&#8217;s no standard URL, as it keeps the filename as whatever it was when the user uploaded it. While I could have cheated and just made copies of each avatar and hosted them here, then whenever an avatar changed, my version here would be out of date.</p>
<p>Up step Twivatar, a single script application whose sole existence (thanks to <a href="http://twitter.com/rem">@rem</a>) is to provide that crucial standard URL for the current avatar of a Twitter account. For the GaryJ Twitter account, we simply use:</p>
<p><code>&lt;img src=&quot;http://twivatar.org/garyj&quot; alt=&quot;GaryJ Twitter Avatar&quot; /&gt;</code></p>
<p>Easy.</p>
<h3>Displaying The Original</h3>
<p>On the rest of the this site, I use Shutter Reloaded, so that when users click on a thumbnail image, the larger ones pops up. For this to work though, we need to make the image into an anchor, with the link pointing at the original large image, add a title to the link (that acts as a caption on the enlarged image), and, depending on your Shutter Reloaded settings, also add a <em>class=&#8221;shutterset&#8221;</em> so that each of the Twitter avatars could be cycled through without having to close the enlargement each time. For Twivatar, we can just append the word <em>original</em> to our image:</p>
<p><code>&lt;a href="http://twivatar.org/garyj/original" title="GaryJ" class="shutterset">&lt;img src=&quot;http://twivatar.com/garyj&quot; alt=&quot;GaryJ Twitter Avatar&quot; /&gt;&lt;/a></code></p>
<p>Now, the problem is that Shutter Reloaded needs a link to the actual image, and digging into the plugin code, I saw that it specifically needed a link with either .jpg, .gif, .png or jpeg as the last 4 characters of the link.<br />
I first tried:</p>
<p><code>&lt;a href="http://twivatar.org/garyj/original<strong>?.jpg</strong>" title="GaryJ" class="shutterset">&lt;img src=&quot;http://twivatar.com/garyj&quot; alt=&quot;GaryJ Twitter Avatar&quot; /&gt;&lt;/a></code></p>
<p>but the plugin code specifically looks for a question mark, and checks the last 4 characters before the querystring starts.</p>
<h3>The Solution</h3>
<p>The solution, thanks to Twivatar being lenient with the URL it accepts is to add the .jpg bit as a URL fragment instead:</p>
<p><code>&lt;a href="http://twivatar.org/garyj/original<strong>#.jpg</strong>" title="GaryJ" class="shutterset">&lt;img src=&quot;http://twivatar.com/garyj&quot; alt=&quot;GaryJ Twitter Avatar&quot; /&gt;&lt;/a></code></p>
<p>Twivatar, just strips this URL fragment, pulls the image from Twitter, and appends it back on the end, which in this case, does nothing to affect the display of the image itself.</p>
<h3>Conclusion</h3>
<p>Appending <em>#.jpg</em> (or <em>#.gif</em>, <em>#.png</em> or <em>#jpeg</em>) to the end of the the Twivatar link persuades Shutter Reloaded to work as expected. This technique, although very simple, would also be likely to work in similar situations. You can see a live demo on my <a href="http://garyjones.co.uk/about-gary-jones-garyj/">landing page for Twitter</a>.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/garyjones?a=wrWSUb0j3tE:pkrBysqfO9E:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/garyjones?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/garyjones?a=wrWSUb0j3tE:pkrBysqfO9E:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/garyjones?i=wrWSUb0j3tE:pkrBysqfO9E:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/garyjones?a=wrWSUb0j3tE:pkrBysqfO9E:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/garyjones?i=wrWSUb0j3tE:pkrBysqfO9E:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/garyjones?a=wrWSUb0j3tE:pkrBysqfO9E:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/garyjones?i=wrWSUb0j3tE:pkrBysqfO9E:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/garyjones?a=wrWSUb0j3tE:pkrBysqfO9E:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/garyjones?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/garyjones?a=wrWSUb0j3tE:pkrBysqfO9E:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/garyjones?i=wrWSUb0j3tE:pkrBysqfO9E:gIN9vFwOqvQ" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/garyjones/~4/wrWSUb0j3tE" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://garyjones.co.uk/blog/shutter-reloaded-twivatar/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://garyjones.co.uk/blog/shutter-reloaded-twivatar/</feedburner:origLink></item>
		<item>
		<title>Guest Post: Getting the f**k on with it</title>
		<link>http://feedproxy.google.com/~r/garyjones/~3/AwXA7syhIHg/</link>
		<comments>http://garyjones.co.uk/blog/andie/#comments</comments>
		<pubDate>Wed, 24 Jun 2009 23:54:36 +0000</pubDate>
		<dc:creator>Guest Author</dc:creator>
				<category><![CDATA[Guest Post]]></category>

		<guid isPermaLink="false">http://garyjones.co.uk/?p=1327</guid>
		<description><![CDATA[When asked to write a guest blog post for the venerable Mr Jones my initial thought was to write something witty and succinct. However upon realisation that being neither concise nor humorous are my greatest talents the following ramblings seem appropriate.
I’m going to write about accomplishment, progress, recovery. However you deem to express it for me they all boil down to the same basic principle. That principle to me is (if you’ll excuse my French) getting the f**k on with it.]]></description>
			<content:encoded><![CDATA[<p>When asked to write a guest blog post for the venerable Mr Jones my initial thought was to write something witty and succinct. However upon realisation that being neither concise nor humorous are my greatest talents the following ramblings seem appropriate.</p>
<p>The majority of those who read this don’t know me and never will, I like that anonymity. There’s something about writing something out for the whole world to see that’s very therapeutic. The thought that someone might read this and find the slightest interest, enlightenment or inspiration from it makes me smile.</p>
<p>I’m going to write about accomplishment, progress, recovery. However you deem to express it for me they all boil down to the same basic principle. That principle to me is (if you’ll excuse my French) <em>getting the f**k on with it</em>. I mean, obviously it’s not that simple, so, let’s give some background here.  Wait for it, here comes the big confession:</p>
<p><strong>My name is Andie, I’m 24 years old, and I’m an alcoholic.</strong></p>
<p><span id="more-1327"></span>This is something I’ve been told many a time that’s very difficult to say. In reality it’s not. It’s a simple matter of sentence structure and semantics. The obvious difference here is saying it and understanding the consequences, because the thing is the moment that I said those words out loud, it became a problem.</p>
<p>Let’s not forget the fact that the first time I said those words I was wearing a green and pink mini-dress, neon green stiletto heels and sitting cross legged on crisply laundered Sunlight sheets in Basingstoke and North Hants Hospital. The previous night I had washed down 40 aspirin with 75cl of vodka, panicked and called an ambulance. Earlier that evening I’d wandered around the streets dressed in only my night dress and aforementioned green stilettos having to be escorted back to my own house by a friendly neighbour. Despite this though, until I said those words the next morning, that behaviour was not out of the ordinary to me. It was just one of those things that everyone does sometimes? Aren’t we all a little crazy? Don’t we all enjoy the odd drink?</p>
<p>The point I have specifically always struggled with is where does the distinction between ‘enjoying a drink’ end and ‘having to drink’ begin.  The National Library of Medicine defines alcoholism as the following:</p>
<blockquote><p>&#8220;A primary, chronic disease with genetic, psychosocial, and environmental factors influencing its development and manifestations. The disease is often progressive and fatal. It is characterized by impaired control over drinking, preoccupation with the drug alcohol, use of alcohol despite adverse consequences, and distortions in thinking, most notably denial. Each of these symptoms may be continuous or periodic.&#8221;</p></blockquote>
<p>Now see, I can completely understand that the distinction lies at the point where control is lost, where there is a preoccupation with drinking, where it plays on your mind all day. Relating this back, I can see that despite my perception of myself that I was in control because:</p>
<ul>
<li>I never drank before 6pm</li>
<li>I never drove while drunk</li>
<li>I always made it to work and was able to hold down a steady job</li>
</ul>
<p>and finally, and probably most importantly:</p>
<ul>
<li>I believed that no-one knew how much I really drank, that I was capable of fooling people, that I could appear sober when drunk.</li>
</ul>
<p>&#8230;these were actually highly contributing factors showing that I wasn’t in control. OK, so yes, as far as the outside world could see I was fine, I wasn’t a danger to others, I wasn’t about to slam my car into a pedestrian or go stand outside Liquid and pick fights with strangers, I turned up to work every day and worked to the best of my ability through constant hangovers, I did my laundry, cooked my meals, showered regularly, anything I could to convince myself that my consumption of alcohol was ‘normal’ and ‘moderate’.</p>
<p>But I digress. Back to, as I put it “getting the f**k on with it”. It’s a basic principle that I’ve struggled with for as long as I can remember. Something I suspect that everyone finds difficult on some level, whether it’s something as simple as getting out of bed or boiling an egg, the slightly more complicated tasks such as doing the ironing or working out how to use the inner join command in SQL, to the baffling concepts of completing a degree, learning  exactly how to use the | character in UNIX or writing a witty and succinct blog post.</p>
<p>Saying those words though, that was the force of action that made me put my principle into action, and over the last ten days of sobriety it’s a principle that I’ve applied to everything.  It may not be the most efficient or productive principle but so far it’s working, some examples below:</p>
<ul>
<li> Get out of bed before 10am.</li>
<li> Get the flat into a state where you can actually keep it tidy.</li>
<li> Get all those little tasks done that you couldn’t because your were too drunk.</li>
<li> Get help.</li>
</ul>
<p>(I’ve omitted the f-word for politeness, feel free to add it in as you read those back to yourself)</p>
<p>The last one of those bullet points is the by far the hardest, and I know full well that at ten days it’s still early in the process. The thing is though, I’m actually doing it. Getting the F**k on with it and getting help. I’m achieving something, progressing and growing and for the first time in years I’m doing something for me. I’m talking to people, being honest and working through things, and if I can do it so can anyone, because you see, I suspect I’m a lot more ‘normal’ than I think I am. So tell me, what’s your confession? And what can you do about it?</p>
<p class="note">References:<br />
MeSH. (2009). National Library of Medicine &#8211; Medical Subject Headings. Retrieved June 25, 2009, from <a href="http://www.nlm.nih.gov/cgi/mesh/2009/MB_cgi?field=uid&amp;term=D000437">http://www.nlm.nih.gov/cgi/mesh/2009/MB_cgi?field=uid&amp;term=D000437</a></p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/garyjones?a=AwXA7syhIHg:rUbY047MdRU:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/garyjones?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/garyjones?a=AwXA7syhIHg:rUbY047MdRU:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/garyjones?i=AwXA7syhIHg:rUbY047MdRU:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/garyjones?a=AwXA7syhIHg:rUbY047MdRU:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/garyjones?i=AwXA7syhIHg:rUbY047MdRU:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/garyjones?a=AwXA7syhIHg:rUbY047MdRU:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/garyjones?i=AwXA7syhIHg:rUbY047MdRU:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/garyjones?a=AwXA7syhIHg:rUbY047MdRU:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/garyjones?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/garyjones?a=AwXA7syhIHg:rUbY047MdRU:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/garyjones?i=AwXA7syhIHg:rUbY047MdRU:gIN9vFwOqvQ" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/garyjones/~4/AwXA7syhIHg" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://garyjones.co.uk/blog/andie/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://garyjones.co.uk/blog/andie/</feedburner:origLink></item>
		<item>
		<title>Get a Free Postcard – Update</title>
		<link>http://feedproxy.google.com/~r/garyjones/~3/-nkrE9oNx70/</link>
		<comments>http://garyjones.co.uk/blog/postcard-update/#comments</comments>
		<pubDate>Thu, 18 Jun 2009 12:06:54 +0000</pubDate>
		<dc:creator>Gary</dc:creator>
				<category><![CDATA[Random]]></category>

		<guid isPermaLink="false">http://garyjones.co.uk/?p=1302</guid>
		<description><![CDATA[Back in March 2009, I blogged how someone in the US was offering to send people free postcards. I'd signed  up, but was waiting to see if anything came of it. Turns out, something did.]]></description>
			<content:encoded><![CDATA[<p>Back in March 2009, I <a href="http://garyjones.co.uk/blog/postcard/">blogged</a> how someone in the <abbr title="United States">US</abbr> was offering to send people free postcards. I&#8217;d signed  up, but was waiting to see if anything came of it. Turns out, something did.<br />
<span id="more-1302"></span><br />
<span class="vcard"><a href="http://toddrjordan.com/" class="fn n url external" rel="external">Todd Jordan</a></span> did what he said he would do, and about a week later (delayed as he&#8217;d been at <abbr title="South by South West">SXSW</abbr>) the following postcard arrived:<br />
<div id="attachment_1305" class="wp-caption alignleft" style="width: 300px">
	<a href="http://garyjones.co.uk/blog/wp-content/uploads/stlouispostcard.jpg"><img src="http://garyjones.co.uk/blog/wp-content/uploads/stlouispostcard-300x203.jpg" alt="Postcard from St Louis" title="Postcard from St Louis" width="300" height="203" class="size-medium wp-image-1305" /></a>
	<p class="wp-caption-text">Postcard from St Louis</p>
</div> On it was written <q>&#8220;Hope you like this card. The Arch is one of our most famous local attractions. Yours, Todd.&#8221;</q> Simple, but effective.</p>
<p>Todd had also <a href="http://garyjones.co.uk/blog/postcard/#comment-812">suggested</a> that I could send him one in reply. Unfortunately, Basingstoke is a little less touristy than St. Louis and finding a postcard of <em>Amazingstoke</em> took a fair bit of effort. I even had to put a <a href="http://twitter.com/GaryJ/status/1509588149" class="external" rel="external">request on Twitter</a> to see if anyone else knew of somewhere that sold suitable postcards. Eventually however, one was found:<br />
<div id="attachment_1307" class="wp-caption alignright" style="width: 300px">
	<a href="http://garyjones.co.uk/blog/wp-content/uploads/basingstokepostcard.jpg"><img src="http://garyjones.co.uk/blog/wp-content/uploads/basingstokepostcard-300x199.jpg" alt="Postcard from Basingstoke" title="Postcard from Basingstoke" width="300" height="199" class="size-medium wp-image-1307" /></a>
	<p class="wp-caption-text">Postcard from Basingstoke</p>
</div><br />
I&#8217;ve not heard from Todd if mine got there or not, but no reason to think it didn&#8217;t. If you want a postcard from somewhere different, then just <a href="http://www.toddrjordan.com/thebroadbrush/postcards/" class="external" rel="external">ask Todd</a>.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/garyjones?a=-nkrE9oNx70:hrl228v34OI:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/garyjones?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/garyjones?a=-nkrE9oNx70:hrl228v34OI:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/garyjones?i=-nkrE9oNx70:hrl228v34OI:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/garyjones?a=-nkrE9oNx70:hrl228v34OI:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/garyjones?i=-nkrE9oNx70:hrl228v34OI:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/garyjones?a=-nkrE9oNx70:hrl228v34OI:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/garyjones?i=-nkrE9oNx70:hrl228v34OI:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/garyjones?a=-nkrE9oNx70:hrl228v34OI:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/garyjones?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/garyjones?a=-nkrE9oNx70:hrl228v34OI:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/garyjones?i=-nkrE9oNx70:hrl228v34OI:gIN9vFwOqvQ" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/garyjones/~4/-nkrE9oNx70" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://garyjones.co.uk/blog/postcard-update/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://garyjones.co.uk/blog/postcard-update/</feedburner:origLink></item>
		<item>
		<title>Guest Post: Anne Wayman</title>
		<link>http://feedproxy.google.com/~r/garyjones/~3/vqOZ_mS25Ks/</link>
		<comments>http://garyjones.co.uk/blog/anne-wayman/#comments</comments>
		<pubDate>Fri, 12 Jun 2009 13:52:51 +0000</pubDate>
		<dc:creator>Guest Author</dc:creator>
				<category><![CDATA[Guest Post]]></category>

		<guid isPermaLink="false">http://garyjones.co.uk/?p=1312</guid>
		<description><![CDATA[A guest post from Anne Wayman:
Back when the web was young and I was younger, I tried my hand at web design. It was the days before web editors and when the early web editors arrived they were often more trouble then they were worth.

I discovered my magazine work had given me a pretty good eye for how a web page should look. It was in the early ‘90s that a friend and I formed a partnership to offer web development.

Our venture didn’t last long. It wasn’t lack of customers; it was the difficulty in supporting them. The web was so new that very few really understood what it might do for a business or an individual.]]></description>
			<content:encoded><![CDATA[<p>Back when the web was young and I was younger, I tried my hand at web design. It was the days before web editors and when the early web editors arrived they were often more trouble then they were worth.</p>
<p>I discovered my magazine work had given me a pretty good eye for how a web page should look. It was in the early ‘90s that a friend and I formed a partnership to offer web development.</p>
<p>Our venture didn’t last long. It wasn’t lack of customers; it was the difficulty in supporting them. The web was so new that very few really understood what it might do for a business or an individual.<br />
<span id="more-1312"></span><br />
And like so many things we on the computer, it looks so easy to the uninitiated. I can’t tell you the number of times I heard a client say something like “but I only want you to change a couple of words,” never realizing they were asking me to:</p>
<ol>
<li>Stop whatever else I might be doing.</li>
<li>Open my copy of their copy (and maybe an editor)</li>
<li>Find the “couple of words” and change them.</li>
<li>Read what I’d changed to make sure it made sense, and it often didn’t, which meant I either did more editing or called the client.</li>
<li>Checked the page in a couple of browsers</li>
<li>Fired up my internet connection (yeah, this is dial up time, back then)</li>
<li>Open my FTP program</li>
<li>Upload the new file(s)</li>
<li>Double check that it had all gone well</li>
</ol>
<p>Those nine steps often took a couple of hours or more and it was a rare client who was willing to pay for that time.</p>
<p>I dropped my end of the business and went back to writing, something I more or less understand.</p>
<p>But I went back with a better understanding of how to keep track of my time, bill for my time, and, most importantly, give the client an accurate estimate of how many hours I would be putting in. I use the same information when setting flat fees.</p>
<p>I rarely get underpaid these days, and early web design is one of the reasons.</p>
<p>Write well and often,</p>
<p><img src="http://garyjones.co.uk/blog/wp-content/uploads/annesig.gif" alt="Anne" title="Anne" width="85" height="47" class="alignleft size-full wp-image-1314" /></p>
<p style="clear:both" class="note vcard"><span class="fn n">Anne Wayman</span> writes about writing from her home office in <span class="adr"><span class="locality">San Diego</span> in the <abbr title="United States of America" class="country-name">US</abbr></span>. Her blog is at <a href="http://www.aboutfreelancewriting.com"class="external url" rel="external">www.aboutfreelancewriting.com</a> . She is also a ghostwriter and writing coach. You can view her credits and other information at <a href="http://www.annewayman.com" rel="external" class="external url">www.annewayman.com</a></p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/garyjones?a=vqOZ_mS25Ks:UAjgL7ME4lA:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/garyjones?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/garyjones?a=vqOZ_mS25Ks:UAjgL7ME4lA:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/garyjones?i=vqOZ_mS25Ks:UAjgL7ME4lA:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/garyjones?a=vqOZ_mS25Ks:UAjgL7ME4lA:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/garyjones?i=vqOZ_mS25Ks:UAjgL7ME4lA:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/garyjones?a=vqOZ_mS25Ks:UAjgL7ME4lA:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/garyjones?i=vqOZ_mS25Ks:UAjgL7ME4lA:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/garyjones?a=vqOZ_mS25Ks:UAjgL7ME4lA:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/garyjones?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/garyjones?a=vqOZ_mS25Ks:UAjgL7ME4lA:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/garyjones?i=vqOZ_mS25Ks:UAjgL7ME4lA:gIN9vFwOqvQ" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/garyjones/~4/vqOZ_mS25Ks" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://garyjones.co.uk/blog/anne-wayman/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<feedburner:origLink>http://garyjones.co.uk/blog/anne-wayman/</feedburner:origLink></item>
		<item>
		<title>Thesis XHTML Sitemap V2</title>
		<link>http://feedproxy.google.com/~r/garyjones/~3/nQaqd_Mv0zk/</link>
		<comments>http://garyjones.co.uk/blog/thesis-xhtml-sitemap-v2/#comments</comments>
		<pubDate>Tue, 05 May 2009 01:32:00 +0000</pubDate>
		<dc:creator>Gary</dc:creator>
				<category><![CDATA[Website]]></category>
		<category><![CDATA[Thesis]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://garyjones.co.uk/?p=1269</guid>
		<description><![CDATA[Alternative instructions for how to add an XHTML sitemap into your WordPress Thesis theme. Allows humans and search engine spiders to find all of your content easily.]]></description>
			<content:encoded><![CDATA[<p>The <a href="http://garyjones.co.uk/blog/thesis-xhtml-sitemap/">initial code</a> for this worked well, but <em>justme</em> on the <a href="http://diythemes.com/forums/feature-requests/5959-sitemap-option.html" rel="external" class="external">Support boards</a> (login required) for the <a href="http://garyjones.co.uk/thesis/" rel="external" class="external">Thesis theme</a> wanted something similar, but with each post listed under their respective categories.</p>
<p><span id="more-1269"></span></p>
<h3>Instructions</h3>
<ol>
<li>Create a new page, and save it with the name &#8220;sitemap&#8221;.</li>
<li>Make sure the Page Template selection is set to &#8220;Custom Template&#8221;.</li>
<li>Open and prepare to edit your custom_functions.php file.</li>
<li>Add the following:
<pre class="brush: php">
function xhtml_sitemap() {
if (is_page(&#039;sitemap&#039;) || is_page(&#039;707&#039;)) { ?&gt;

&lt;div id=&quot;content&quot;&gt;
&lt;div class=&quot;post_box top&quot;&gt;
&lt;div class=&quot;headline_area&quot;&gt;
	&lt;h1&gt;&lt;?php the_title(); ?&gt;&lt;/h1&gt;
&lt;/div&gt;
&lt;div class=&quot;format_text&quot;&gt;
  &lt;h3&gt;All pages:&lt;/h3&gt;
&lt;ul&gt;
	&lt;?php wp_list_pages(&#039;title_li=&#039;); ?&gt;
&lt;/ul&gt;
&lt;h3&gt;All blog posts:&lt;/h3&gt;
&lt;ul&gt;
	&lt;?php echo posts_by_category(); ?&gt;
&lt;/ul&gt;
&lt;h3&gt;Monthly archive pages:&lt;/h3&gt;
&lt;ul&gt;
	&lt;?php wp_get_archives(&#039;type=monthly&#039;); ?&gt;
&lt;/ul&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;div id=&quot;sidebars&quot;&gt;
&lt;?php thesis_build_sidebars(); ?&gt;
&lt;/div&gt;		

&lt;?php } }

add_action(&#039;thesis_hook_custom_template&#039;, &#039;xhtml_sitemap&#039;);

function posts_by_category() {
	global $wpdb, $post;
	$tp = $wpdb-&gt;prefix;
	$sort_code = &#039;ORDER BY name ASC, post_date DESC&#039;;
	$the_output = NULL;
	$last_posts = (array)$wpdb-&gt;get_results(&quot;SELECT {$tp}terms.name, {$tp}terms.term_id, {$tp}term_taxonomy.term_taxonomy_id	FROM {$tp}terms, {$tp}term_taxonomy	WHERE {$tp}terms.term_id = {$tp}term_taxonomy.term_id AND {$tp}term_taxonomy.taxonomy = &#039;category&#039;&quot;);
	if (empty($last_posts)) {
	  return NULL;
	}
	$the_output .= &#039;&#039;;
	$used_cats = array();
	$i = 0;

	foreach ($last_posts as $posts) {
		if (in_array($posts-&gt;name, $used_cats)) {
			unset($last_posts[$i]);
		} else {
			$used_cats[] = $posts-&gt;name;
		}
		$i++;
	}
	$last_posts = array_values($last_posts);

	foreach ($last_posts as $posts) {
	  $the_output .= &#039;&lt;li&gt;&lt;a href=&quot;&#039; . get_category_link($posts-&gt;term_id) . &#039;&quot;&gt;&lt;strong&gt;&#039; . apply_filters(&#039;list_cats&#039;, $posts-&gt;name, $posts) . &#039;&lt;/strong&gt;&lt;/a&gt;&lt;ul&gt;&#039;;
	  $arcresults = $wpdb-&gt;get_results(&quot;SELECT * FROM $wpdb-&gt;posts WHERE post_type = &#039;post&#039; AND post_status = &#039;publish&#039; AND ID IN (SELECT object_id FROM {$tp}term_relationships, {$tp}terms WHERE {$tp}term_relationships.term_taxonomy_id =&quot; . $posts-&gt;term_taxonomy_id . &quot;) ORDER BY post_date DESC&quot;);
	  foreach ( $arcresults as $arcresult ) {
	    $the_output .= &#039;&lt;li&gt;&lt;a href=&quot;&#039; . get_permalink($arcresult-&gt;ID) . &#039;&quot;&gt;&#039; . apply_filters(&#039;the_title&#039;, $arcresult-&gt;post_title) . &#039;&lt;/a&gt;&lt;/li&gt;&#039;;
	  }
    $the_output .= &#039;&lt;/ul&gt;&lt;/li&gt;&#039;;
  }
  return $the_output;
}
</pre>
</li>
</ol>
<h3>Tweaks</h3>
<p class="alert">My sitemap page has the slug &#8220;sitemap&#8221; and has an ID of 707. Although you might have created your page with the same slug, you should amend the 707 to the ID of your page. You can find this by hovering over the relevant edit link on the Edit Posts page.</p>
<p>Obviously, remember you may also need to add starting and ending PHP delimiters (<code>&lt;?php</code> and <code>?></code>) depending on where you put this in your custom_functions.php file. </p>
<p>You may also need to change the <code>div</code> structure to suit how your overall site layout.</p>
<p>Add a nice bit of JavaScript to collapse the sub unordered lists, and it will improve it&#8217;s usability no-end. Search engine bots won&#8217;t collapse the lists, and could still traverse all links, while humans would not be confronted with a stupid amount of links.</p>
<h3>Result</h3>
<p>You can see a demo of what your new sitemap page will look like by checking out <a href="http://garyjones.co.uk/sitemap/" title="Sitemap for this website">mine</a></p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/garyjones?a=nQaqd_Mv0zk:0U27_7YDyR4:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/garyjones?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/garyjones?a=nQaqd_Mv0zk:0U27_7YDyR4:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/garyjones?i=nQaqd_Mv0zk:0U27_7YDyR4:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/garyjones?a=nQaqd_Mv0zk:0U27_7YDyR4:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/garyjones?i=nQaqd_Mv0zk:0U27_7YDyR4:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/garyjones?a=nQaqd_Mv0zk:0U27_7YDyR4:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/garyjones?i=nQaqd_Mv0zk:0U27_7YDyR4:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/garyjones?a=nQaqd_Mv0zk:0U27_7YDyR4:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/garyjones?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/garyjones?a=nQaqd_Mv0zk:0U27_7YDyR4:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/garyjones?i=nQaqd_Mv0zk:0U27_7YDyR4:gIN9vFwOqvQ" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/garyjones/~4/nQaqd_Mv0zk" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://garyjones.co.uk/blog/thesis-xhtml-sitemap-v2/feed/</wfw:commentRss>
		<slash:comments>15</slash:comments>
		<feedburner:origLink>http://garyjones.co.uk/blog/thesis-xhtml-sitemap-v2/</feedburner:origLink></item>
		<item>
		<title>Ask me a question</title>
		<link>http://feedproxy.google.com/~r/garyjones/~3/07lQvcaWlhY/</link>
		<comments>http://garyjones.co.uk/blog/ask-a-question/#comments</comments>
		<pubDate>Fri, 01 May 2009 14:00:01 +0000</pubDate>
		<dc:creator>Gary</dc:creator>
				<category><![CDATA[Me]]></category>

		<guid isPermaLink="false">http://garyjones.co.uk/?p=646</guid>
		<description><![CDATA[It could be something you wanted to know about me, or a question about how to solve a problem you need help with. Go on, make it as diverse as you can. Randomness is good!]]></description>
			<content:encoded><![CDATA[<p>Quite simply, if you could ask me any question, what would it be?</p>
<p>It could be something you wanted to know about me, or a question about how to solve a problem you need help with. Go on, make it as diverse as you can. Randomness is good!</p>
<dl class="taxonomy">
	<dt class="taxonomy-people">People:</dt> <dd><a href="http://garyjones.co.uk/blog/people/gary/" rel="tag">Gary</a></dd>

</dl>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/garyjones?a=07lQvcaWlhY:st5P0e-Bl-Q:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/garyjones?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/garyjones?a=07lQvcaWlhY:st5P0e-Bl-Q:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/garyjones?i=07lQvcaWlhY:st5P0e-Bl-Q:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/garyjones?a=07lQvcaWlhY:st5P0e-Bl-Q:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/garyjones?i=07lQvcaWlhY:st5P0e-Bl-Q:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/garyjones?a=07lQvcaWlhY:st5P0e-Bl-Q:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/garyjones?i=07lQvcaWlhY:st5P0e-Bl-Q:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/garyjones?a=07lQvcaWlhY:st5P0e-Bl-Q:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/garyjones?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/garyjones?a=07lQvcaWlhY:st5P0e-Bl-Q:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/garyjones?i=07lQvcaWlhY:st5P0e-Bl-Q:gIN9vFwOqvQ" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/garyjones/~4/07lQvcaWlhY" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://garyjones.co.uk/blog/ask-a-question/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
		<feedburner:origLink>http://garyjones.co.uk/blog/ask-a-question/</feedburner:origLink></item>
		<item>
		<title>How do you attract comments?</title>
		<link>http://feedproxy.google.com/~r/garyjones/~3/UZ5larpeL3s/</link>
		<comments>http://garyjones.co.uk/blog/how-do-you-attract-comments/#comments</comments>
		<pubDate>Mon, 27 Apr 2009 14:00:35 +0000</pubDate>
		<dc:creator>Gary</dc:creator>
				<category><![CDATA[Website]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://garyjones.co.uk/?p=778</guid>
		<description><![CDATA[Discussing ways I try to attract comments for this blog, and asking bloggers what tips and techniques they use to gain comments.]]></description>
			<content:encoded><![CDATA[<p>Every blogger likes comments. It means that they&#8217;ve connected in some way to their reader, enough for them to feel that want to take the time and effort to give you feedback. The commenter may not always agree with what you say, but all feedback is positive.<span id="more-778"></span></p>
<p>This blog doesn&#8217;t receive lots of comments, but that&#8217;s fine &#8211; it&#8217;s not specialising in any niche market, it rarely gets lots of quality traffic (the traffic it used to get from Entrecard couldn&#8217;t really be described as good quality), and I don&#8217;t know how many friends and family actually read the stuff I post. I&#8217;m not trying to earn a living from the adverts here (so poor, I&#8217;ve actually removed them again), and any comments I do get are exciting and greatly appreciated.</p>
<p>One plugin I&#8217;ve got for WordPress is <a class="external" href="http://alexking.org/projects/wordpress">Alex King&#8217;s Twitter Tools</a> and this allows me to automatically send a tweet to my followers whenever a new blog post is made. Combine this with scheduled posts within WordPress itself, and it means you can effectively schedule tweets to appear at a time when you would otherwise be sleeping!</p>
<p>As for the content itself, obviously good well though-out content, perhaps with some degree of going-against-the-grain to provoke a reaction will normally produce content. The only other technique I&#8217;ve picked up from others, is to end the content with a question, to provide the reader a hook on which to encourage them to start their comment.</p>
<p>So, with irony duly noted, how do you try to attract more comments?</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/garyjones?a=UZ5larpeL3s:0QU_bnQacmo:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/garyjones?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/garyjones?a=UZ5larpeL3s:0QU_bnQacmo:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/garyjones?i=UZ5larpeL3s:0QU_bnQacmo:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/garyjones?a=UZ5larpeL3s:0QU_bnQacmo:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/garyjones?i=UZ5larpeL3s:0QU_bnQacmo:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/garyjones?a=UZ5larpeL3s:0QU_bnQacmo:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/garyjones?i=UZ5larpeL3s:0QU_bnQacmo:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/garyjones?a=UZ5larpeL3s:0QU_bnQacmo:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/garyjones?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/garyjones?a=UZ5larpeL3s:0QU_bnQacmo:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/garyjones?i=UZ5larpeL3s:0QU_bnQacmo:gIN9vFwOqvQ" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/garyjones/~4/UZ5larpeL3s" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://garyjones.co.uk/blog/how-do-you-attract-comments/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://garyjones.co.uk/blog/how-do-you-attract-comments/</feedburner:origLink></item>
		<item>
		<title>What time do you schedule posts for?</title>
		<link>http://feedproxy.google.com/~r/garyjones/~3/W51FzgKCPgU/</link>
		<comments>http://garyjones.co.uk/blog/schedule-post-times/#comments</comments>
		<pubDate>Fri, 24 Apr 2009 09:00:13 +0000</pubDate>
		<dc:creator>Gary</dc:creator>
				<category><![CDATA[Website]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://garyjones.co.uk/?p=784</guid>
		<description><![CDATA[Discussing if there's any benefit to setting scheduled posts in WordPress to a publish at a set local time, to attract more readers. Includes graphs of my visitors, and asks readers how they decide on their publishing times.]]></description>
			<content:encoded><![CDATA[<p>Just recently, I&#8217;ve been able to write a few shorter posts all on one day, and have them scheduled for publication a few days into the future.</p>
<p>Within WordPress, I&#8217;m able to set the date for publication, but also the time as well. Now rather than random times, I&#8217;d been setting the time for 14:00 as I figure that this will be the time that people are either having a late lunch, or have just come back from lunch and have time for a quick snoop on the net before getting back to work.<span id="more-784"></span> It also works out at about 9am (8am) in New York, and earlier the further west you go, which means that the blog already has new content on it for the that day, when the US wakes up or starts work.</p>
<p class="note">Since writing this post, I&#8217;ve tried scheduling serious and worthwhile posts for 09:00 and silly, not-as-important posts for 14:00.</p>
<p>As of writing this post, I just realised I could look to see what times Google Analytics shows as being the visit times (click to enlarge):</p>
<div id="attachment_786" class="wp-caption aligncenter" style="width: 300px">
	<a href="http://garyjones.co.uk/blog/wp-content/uploads/visittimes.png"><img class="size-medium wp-image-786" title="Visit Times" src="http://garyjones.co.uk/blog/wp-content/uploads/visittimes-300x143.png" alt="Visit Times: Three graphs showing Visits, Page views and Page views/visit, all compared to time of the day when visitors came to this site." width="300" height="143" /></a>
	<p class="wp-caption-text">Visit Times: Three graphs showing Visits, Page views and Page views/visit, all compared to time of the day when visitors came to this site.</p>
</div>
<p>There seems to be a peak for visits at around 11:00, page views at 11:00 and 22:00 while page views/visits peaks at 02:00.</p>
<p>This then leaves me totally confused at what might be the best time might be. Logic would suggest just before 11:00, but the peak isn&#8217;t significant enough to make a definite assumption.</p>
<p>So two questions for you:</p>
<ol>
<li>What times to do you schedule post publications for?</li>
<li>What would you suggest is the best time for mine?</li>
</ol>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/garyjones?a=W51FzgKCPgU:Gbb2wlDuDPs:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/garyjones?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/garyjones?a=W51FzgKCPgU:Gbb2wlDuDPs:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/garyjones?i=W51FzgKCPgU:Gbb2wlDuDPs:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/garyjones?a=W51FzgKCPgU:Gbb2wlDuDPs:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/garyjones?i=W51FzgKCPgU:Gbb2wlDuDPs:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/garyjones?a=W51FzgKCPgU:Gbb2wlDuDPs:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/garyjones?i=W51FzgKCPgU:Gbb2wlDuDPs:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/garyjones?a=W51FzgKCPgU:Gbb2wlDuDPs:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/garyjones?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/garyjones?a=W51FzgKCPgU:Gbb2wlDuDPs:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/garyjones?i=W51FzgKCPgU:Gbb2wlDuDPs:gIN9vFwOqvQ" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/garyjones/~4/W51FzgKCPgU" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://garyjones.co.uk/blog/schedule-post-times/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://garyjones.co.uk/blog/schedule-post-times/</feedburner:origLink></item>
		<item>
		<title>How often do you publish?</title>
		<link>http://feedproxy.google.com/~r/garyjones/~3/z5TRORV0fxc/</link>
		<comments>http://garyjones.co.uk/blog/how-often-do-you-publish/#comments</comments>
		<pubDate>Tue, 21 Apr 2009 14:00:44 +0000</pubDate>
		<dc:creator>Gary</dc:creator>
				<category><![CDATA[Website]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://garyjones.co.uk/?p=776</guid>
		<description><![CDATA[In trying to keep content fresh, without overloading any readers, I aim for every 2 or 3 days. I've read "good practise" articles elsewhere though that suggest you <em>must</em> publish at least one thing every day, while other say even once a week is fine for niche market blogs.]]></description>
			<content:encoded><![CDATA[<p>A question for the bloggers -<strong>How often do you publish new posts?</strong></p>
<p>In trying to keep content fresh, without overloading any readers, I aim for every 2 or 3 days. I&#8217;ve read &#8220;good practise&#8221; articles elsewhere though that suggest you <em>must</em> publish at least one thing every day, while other say even once a week is fine for niche market blogs.</p>
<p>What are your thoughts?</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/garyjones?a=z5TRORV0fxc:QSu5vNu2NRQ:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/garyjones?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/garyjones?a=z5TRORV0fxc:QSu5vNu2NRQ:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/garyjones?i=z5TRORV0fxc:QSu5vNu2NRQ:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/garyjones?a=z5TRORV0fxc:QSu5vNu2NRQ:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/garyjones?i=z5TRORV0fxc:QSu5vNu2NRQ:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/garyjones?a=z5TRORV0fxc:QSu5vNu2NRQ:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/garyjones?i=z5TRORV0fxc:QSu5vNu2NRQ:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/garyjones?a=z5TRORV0fxc:QSu5vNu2NRQ:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/garyjones?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/garyjones?a=z5TRORV0fxc:QSu5vNu2NRQ:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/garyjones?i=z5TRORV0fxc:QSu5vNu2NRQ:gIN9vFwOqvQ" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/garyjones/~4/z5TRORV0fxc" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://garyjones.co.uk/blog/how-often-do-you-publish/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		<feedburner:origLink>http://garyjones.co.uk/blog/how-often-do-you-publish/</feedburner:origLink></item>
		<item>
		<title>Basingstoke Tweetup Article in the Basingstoke Gazette</title>
		<link>http://feedproxy.google.com/~r/garyjones/~3/efcOHksyfkc/</link>
		<comments>http://garyjones.co.uk/blog/tweetup-article/#comments</comments>
		<pubDate>Thu, 16 Apr 2009 10:54:11 +0000</pubDate>
		<dc:creator>Gary</dc:creator>
				<category><![CDATA[Random]]></category>
		<category><![CDATA[#bsktweetup]]></category>

		<guid isPermaLink="false">http://garyjones.co.uk/?p=1204</guid>
		<description><![CDATA[An image and the text content of a newspaper article in the Basingstoke Gazette, about our first Basingstoke Tweetup.]]></description>
			<content:encoded><![CDATA[<p>Overall, a really positive report. The facts are mostly right and Ben and Andrew (photographer) have done a good job there with it.<br />
<span id="more-1204"></span><br />
<div id="attachment_1203" class="wp-caption alignright" style="width: 208px">
	<a href="http://garyjones.co.uk/blog/wp-content/uploads/gazette.jpg"><img src="http://garyjones.co.uk/blog/wp-content/uploads/gazette-208x300.jpg" alt="Basingstoke Tweetup article in the Basingstoke Gazette" title="Basingstoke Tweetup article in the Basingstoke Gazette" width="208" height="300" class="size-medium wp-image-1203" /></a>
	<p class="wp-caption-text">Basingstoke Tweetup article in the Basingstoke Gazette</p>
</div></p>
<blockquote class="indent">
<h3>We all love to twitter</h3>
<p>By Ben Ellery<br />
<span>Barack Obama does it. Stephen Fry does it. And now more and more people in Basingstoke are doing it.</span><span>The latest phenomenon sweeping across the internet is twitter &#8211; a free social network tool which people use to post messages online about what they are doing.</span><span>The craze is said to have tens of millions of users, including celebrities who use &#8220;tweets&#8221; to keep their followers updated on their activities.</span><span>Last Thursday, the first Basingstoke &#8220;Tweetup&#8221; &#8211; or twitter meet up &#8211; was held at the Red Lion Hotel in London Street.</span><span>Among the 12 attendees were people with Twitter usernames such as freshplastic, surferbill and sheddriver &#8211; some of whom were actually tweeting about the event via the mobile phones and laptops as it was happening.</span><span>Web developer Gary Jones, 29, organised the event by searching for the top 50 Twitter users in Basingstoke. He then invited them along and made name badges for everyone.</span><span>Mr Jones, of Pemerton Road, whose username is GaryJ, said &#8220;It all started when I noticed there seemed to be quite a few people from Basingstoke on Twitter, so I sent a message saying &#8216;what do people think of a get together?&#8217;.</span><span>&#8220;The response was really good, and it&#8217;s a great way to meet new people. I like to keep updated with what people in Basingstoke are doing, not celebrities, because their news is not relevant to me.</span><span>&#8220;With the success of the Tweetup, we hope to make it a monthly event.&#8221;</span><span>People from different walks of life attended the get together, including a salon owner, an environmental journalist and a digital agency managing director. Surferbill &#8211; real name Terry Douglas &#8211; even had a T-shirt made especially for the event.</span><span>Among the Twitter fans was Jamie Ogbuigwe of Essex Road &#8211; a 26-year-old quality health, safety and environmentalist journalist. Miss Ogbuigwe, whose username is interact4future, said: &#8220;I work with words and what I like about twitter is the fact that you only have a small amount of characters to express yourself<br />
&#8220;I&#8217;ve lived in Basingstoke for a year and have met absolutely no-one. This get-together is a great way of finding some new friends.&#8221;</span><span>Jason Kneen, whose username is jkneen, had the most online followers in the group with 826.</span><span>The 38-year-old from Shipton Bellinger said: &#8220;I&#8217;m tweeting about this as we speak. It&#8217;s very exciting. Last week I had a meeting with former England rugby captain Will Carling in a coffee shop after meeting with him through Twitter.&#8221;</span><span>The next event is planned for May 14. For more information, visit <em>bsktweetup.info</em> or <em>follow@bsktweetup</em> on Twitter.</span>
</p></blockquote>
<p>You can find the web version of the <a href="http://www.basingstokegazette.co.uk/news/4295345.We_all_love_to_twitter/" rel="external" class="external">article</a> on the Basingstoke Gazette website.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/garyjones?a=efcOHksyfkc:bySULoVD9Rw:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/garyjones?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/garyjones?a=efcOHksyfkc:bySULoVD9Rw:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/garyjones?i=efcOHksyfkc:bySULoVD9Rw:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/garyjones?a=efcOHksyfkc:bySULoVD9Rw:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/garyjones?i=efcOHksyfkc:bySULoVD9Rw:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/garyjones?a=efcOHksyfkc:bySULoVD9Rw:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/garyjones?i=efcOHksyfkc:bySULoVD9Rw:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/garyjones?a=efcOHksyfkc:bySULoVD9Rw:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/garyjones?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/garyjones?a=efcOHksyfkc:bySULoVD9Rw:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/garyjones?i=efcOHksyfkc:bySULoVD9Rw:gIN9vFwOqvQ" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/garyjones/~4/efcOHksyfkc" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://garyjones.co.uk/blog/tweetup-article/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://garyjones.co.uk/blog/tweetup-article/</feedburner:origLink></item>
	</channel>
</rss>
