<?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>Gomako Design Blog - Ramblings and occasional drawings by Ben Harvey</title>
	<atom:link href="http://gomako.co.uk/main/feed/" rel="self" type="application/rss+xml" />
	<link>http://gomako.co.uk/main</link>
	<description></description>
	<lastBuildDate>Wed, 01 Feb 2012 16:41:45 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5</generator>
		<item>
		<title>Using Scriptogr.am Blog</title>
		<link>http://gomako.co.uk/main/2012/02/01/using-scriptogr-am-blog/</link>
		<comments>http://gomako.co.uk/main/2012/02/01/using-scriptogr-am-blog/#comments</comments>
		<pubDate>Wed, 01 Feb 2012 16:40:48 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[scriptogr.am]]></category>

		<guid isPermaLink="false">http://gomako.co.uk/main/?p=74</guid>
		<description><![CDATA[I&#8217;ve just set up blog.gomako.co.uk to use scriptogr.am as a blogging platform, as I don&#8217;t really use wordpress to it&#8217;s full potential. I&#8217;ll be transferring these posts over at some point!]]></description>
				<content:encoded><![CDATA[<p>I&#8217;ve just set up <a href="http://blog.gomako.co.uk">blog.gomako.co.uk</a> to use <a href="http://scriptogr.am">scriptogr.am</a> as a blogging platform, as I don&#8217;t really use wordpress to it&#8217;s full potential. I&#8217;ll be transferring these posts over at some point!</p>
]]></content:encoded>
			<wfw:commentRss>http://gomako.co.uk/main/2012/02/01/using-scriptogr-am-blog/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sketchbooks</title>
		<link>http://gomako.co.uk/main/2011/12/30/sketchbooks/</link>
		<comments>http://gomako.co.uk/main/2011/12/30/sketchbooks/#comments</comments>
		<pubDate>Fri, 30 Dec 2011 20:49:30 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://gomako.co.uk/main/?p=75</guid>
		<description><![CDATA[I moved my sketchbook to a page that isn&#8217;t that obvious using this theme. While I try and find some time to make my theme better, the pages are here, here and here.]]></description>
				<content:encoded><![CDATA[<p><img alt="Sketchbook scans" src="http://gomako.co.uk/gomako/sketchbook_01/0003.jpg" title="Sketchbook link" class="aligncenter" width="760" height="266" /><br />
I moved my sketchbook to a page that isn&#8217;t that obvious using this theme. While I try and find some time to make my theme better, the pages are <a href="http://gomako.co.uk/main.php?page=sketchbook_01" title="Sketchbook scans 01">here</a>, <a href="http://gomako.co.uk/main.php?page=sketchbook_02" title="Sketchbook scans 02">here </a>and <a href="http://gomako.co.uk/main.php?page=sketchbook_03" title="Sketchbook scans 03">here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://gomako.co.uk/main/2011/12/30/sketchbooks/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tumblr api &#8211; Fullscreen backgrounds</title>
		<link>http://gomako.co.uk/main/2011/10/21/tumblr-api-fullscreen-backgrounds/</link>
		<comments>http://gomako.co.uk/main/2011/10/21/tumblr-api-fullscreen-backgrounds/#comments</comments>
		<pubDate>Fri, 21 Oct 2011 10:42:22 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[php]]></category>
		<category><![CDATA[tumblr]]></category>

		<guid isPermaLink="false">http://gomako.co.uk/main/?p=55</guid>
		<description><![CDATA[For some reason, my blog database got rolled back a few months. I have no idea why, and neither does my hosting company. Grrr. Anyway, I was getting a few hits from people looking for the fullscreen background tumblr api post, so I thought I&#8217;d re-write it. Here is the php code. It grabs the [...]]]></description>
				<content:encoded><![CDATA[<p>For some reason, my blog database got rolled back a few months. I have no idea why, and neither does my hosting company. Grrr. Anyway, I was getting a few hits from people looking for the fullscreen background tumblr api post, so I thought I&#8217;d re-write it.</p>
<p>Here is the php code. It grabs the last 100 posts and puts them in an array, from which, a random image is selected and used as the background image.</p>
<pre class="qoate-code">
&lt;?php

// Load the Tumblr feed (photos only in this case) into a simplexml document
$url = "http://gomako.tumblr.com/api/read?type=photo&amp;num=100";
$xml = simplexml_load_file($url);

// Loop through the images and add them to an array
foreach($xml---&gt;posts-&amp;gt;post as $post){
$bgImgs[] = $post-&amp;gt;{'photo-url'}[0];
}

// Pick a random image out of the array.
$bgimg = $bgImgs[array_rand($bgImgs)];

// Get image width and height for script
list($imgwidth, $imgheight, $type, $attr) = getimagesize($bgimg);

?&gt;
</pre>
<p>Now we need to pass the image details to the <a title="Fullscreenr JQuery Plugin" href="http://nanotux.com/blog/fullscreen/" target="_blank">fullscreenr jQuery plugin</a>. I have altered the script slightly to get it to work how I wanted. You can <a title="Fullscreenr JQuery Plugin - Version" href="http://gomako.co.uk/js/jquery.fullscreenr.js" target="_blank">grab my copy here</a>.</p>
<pre class="qoate-code">
&lt;!-- Load JQuery --&gt;
&lt;script type="text/javascript" src="js/jquery-1.3.2.min.js"&gt;&lt;/script&gt;&lt;!-- Load the Fullscreenr plugin --&gt;&lt;script type="text/javascript" src="js/jquery.fullscreenr.js"&gt;&lt;/script&gt;&lt;/code&gt;

&lt;script type="text/javascript"&gt;

// Specify the size of your background image here
var FullscreenrOptions = { width: &lt;?php echo $imgwidth; ?&gt;, height: &lt;?php echo $imgheight; ?&gt;, bgID: '#bgimg' };

// This will activate the full screen background!
jQuery.fn.fullscreenr(FullscreenrOptions);

&lt;/script&gt;
</pre>
<p>Now you need to include this directly under the opening body tag</p>
<pre class="qoate-code">
&lt;!-- This is the background image --&gt;
&lt;img id="bgimg" src="&lt;?php echo $bgimg; ?&gt;"/&gt;
</pre>
<p>That should be it!</p>
]]></content:encoded>
			<wfw:commentRss>http://gomako.co.uk/main/2011/10/21/tumblr-api-fullscreen-backgrounds/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Scary Pony</title>
		<link>http://gomako.co.uk/main/2009/11/01/scary-pony/</link>
		<comments>http://gomako.co.uk/main/2009/11/01/scary-pony/#comments</comments>
		<pubDate>Sun, 01 Nov 2009 12:07:35 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[pictures]]></category>

		<guid isPermaLink="false">http://gomako.co.uk/main/?p=44</guid>
		<description><![CDATA[I had to make a mega cute logo for a client, and to counterbalance it and get the sickly taste out of my mind, I made a spoooooky version for halloween.]]></description>
				<content:encoded><![CDATA[<p>I had to make a mega cute logo for a client, and to counterbalance it and get the sickly taste out of my mind, I made a spoooooky version for halloween.</p>
<p><img class="aligncenter size-full wp-image-47" title="scaryPony" src="http://gomako.co.uk/main/wp-content/uploads/2009/11/scaryPony1.jpg" alt="scaryPony" width="530" height="530" /></p>
<p style="text-align: center;">
]]></content:encoded>
			<wfw:commentRss>http://gomako.co.uk/main/2009/11/01/scary-pony/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tumblr account</title>
		<link>http://gomako.co.uk/main/2009/10/11/tumblr-account/</link>
		<comments>http://gomako.co.uk/main/2009/10/11/tumblr-account/#comments</comments>
		<pubDate>Sun, 11 Oct 2009 20:25:42 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://gomako.co.uk/main/?p=42</guid>
		<description><![CDATA[So, I got myself a Tumblr account while I wait for my Dropular invite to arrive, so&#8217;s I can just bung crap out there that I haven&#8217;t done myself that I think is fancy pants.]]></description>
				<content:encoded><![CDATA[<p>So, I got myself a <a href="http://gomako.tumblr.com" target="_blank">Tumblr account</a> while I wait for my <a href="http://dropular.net/" target="_blank">Dropular</a> invite to arrive, so&#8217;s I can just bung crap out there that I haven&#8217;t done myself that I think is fancy pants.</p>
]]></content:encoded>
			<wfw:commentRss>http://gomako.co.uk/main/2009/10/11/tumblr-account/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Rock Poster Skeletal Ooze and Grog</title>
		<link>http://gomako.co.uk/main/2009/09/24/rock-poster-skeletal-ooze-and-grog/</link>
		<comments>http://gomako.co.uk/main/2009/09/24/rock-poster-skeletal-ooze-and-grog/#comments</comments>
		<pubDate>Thu, 24 Sep 2009 19:53:50 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[pictures]]></category>
		<category><![CDATA[print]]></category>

		<guid isPermaLink="false">http://gomako.co.uk/main/?p=38</guid>
		<description><![CDATA[So, my friends and neighbours are in a excellent band called Another Rhythm Jesus, and they asked me to make a poster for them, and gave me free range! Wheeeeee!]]></description>
				<content:encoded><![CDATA[<p>So, my friends and neighbours are in a excellent band called <a title="Another Rhythm Jesus" href="http://www.myspace.com/anotherrhythmjesus" target="_blank">Another Rhythm Jesus</a>, and they asked me to make a poster for them, and gave me free range! Wheeeeee!</p>
<p><img class="aligncenter size-full wp-image-39" title="ARJ Poster" src="http://gomako.co.uk/main/wp-content/uploads/2009/09/img_grog_web.jpg" alt="ARJ Poster" width="424" height="600" /></p>
]]></content:encoded>
			<wfw:commentRss>http://gomako.co.uk/main/2009/09/24/rock-poster-skeletal-ooze-and-grog/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Some Processing&#8230;</title>
		<link>http://gomako.co.uk/main/2009/06/04/some-processing/</link>
		<comments>http://gomako.co.uk/main/2009/06/04/some-processing/#comments</comments>
		<pubDate>Thu, 04 Jun 2009 20:52:02 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[processing]]></category>

		<guid isPermaLink="false">http://gomako.co.uk/main/?p=29</guid>
		<description><![CDATA[I was put in touch with John Pett by my brother, Tom. John has a lot of lovely stuff on his site, and is interested in Processing. It rekindled my love of the little program, so I thought I&#8217;d start posting sketches, starting with this one (click the image to run the applet):]]></description>
				<content:encoded><![CDATA[<p>I was put in touch with <a href="http://johnpett.com">John Pett</a> by my brother, Tom. John has a lot of lovely stuff on his site, and is interested in <a href="http://processing.org">Processing</a>. It rekindled my love of the little program, so I thought I&#8217;d start posting sketches, starting with this one (click the image to run the applet):</p>
<p><a href="http://gomako.co.uk/sketches/linedrawing01/"><img class="aligncenter size-full wp-image-31" title="grass_thumb1" src="http://gomako.co.uk/main/wp-content/uploads/2009/06/grass_thumb1.png" alt="" width="500" height="200" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://gomako.co.uk/main/2009/06/04/some-processing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>I Love Raid</title>
		<link>http://gomako.co.uk/main/2009/06/04/i-love-raid/</link>
		<comments>http://gomako.co.uk/main/2009/06/04/i-love-raid/#comments</comments>
		<pubDate>Thu, 04 Jun 2009 20:00:20 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[pictures]]></category>

		<guid isPermaLink="false">http://gomako.co.uk/main/?p=26</guid>
		<description><![CDATA[Well, I re-installed everything on my macbook, and trawling through my backups, I found a picture I drew when I was hunting ants in an apartment in Spain. I was obsessed for the whole fortnight.]]></description>
				<content:encoded><![CDATA[<p>Well, I re-installed everything on my macbook, and trawling through my backups, I found a picture I drew when I was hunting ants in an apartment in Spain. I was obsessed for the whole fortnight.</p>
<p><a href="http://gomako.co.uk/main/wp-content/uploads/2009/06/iloveraid.jpg"><img class="aligncenter size-full wp-image-27" title="I Love Raid" src="http://gomako.co.uk/main/wp-content/uploads/2009/06/iloveraid.jpg" alt="" width="500" height="651" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://gomako.co.uk/main/2009/06/04/i-love-raid/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A long time since I last posted&#8230;</title>
		<link>http://gomako.co.uk/main/2009/05/30/a-long-time-since-i-last-posted/</link>
		<comments>http://gomako.co.uk/main/2009/05/30/a-long-time-since-i-last-posted/#comments</comments>
		<pubDate>Sat, 30 May 2009 10:43:45 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[pictures]]></category>

		<guid isPermaLink="false">http://gomako.co.uk/main/?p=23</guid>
		<description><![CDATA[&#8230;so I thought I&#8217;d do a little colour sketch of a sketchbook scan. Hrmpf!]]></description>
				<content:encoded><![CDATA[<p>&#8230;so I thought I&#8217;d do a little colour sketch of a sketchbook scan. Hrmpf!</p>
<p><a href="http://gomako.co.uk/main/wp-content/uploads/2009/05/sketchbookrobots01.png"><img class="aligncenter size-medium wp-image-24" title="Sketchbook Robot Scan" src="http://gomako.co.uk/main/wp-content/uploads/2009/05/sketchbookrobots01.png" alt="" width="500" height="173" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://gomako.co.uk/main/2009/05/30/a-long-time-since-i-last-posted/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Spoonflower Fabric</title>
		<link>http://gomako.co.uk/main/2009/03/27/spoonflower-fabric/</link>
		<comments>http://gomako.co.uk/main/2009/03/27/spoonflower-fabric/#comments</comments>
		<pubDate>Fri, 27 Mar 2009 10:26:34 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[textiles]]></category>
		<category><![CDATA[spoonflower]]></category>

		<guid isPermaLink="false">http://gomako.co.uk/main/?p=18</guid>
		<description><![CDATA[Well, aaaages ago, Amy and I designed some fabric to be printed by Spoonflower that Amy was going to make into lovely quilts for our baby, Evie. Here some piccies, from design to realization! Woot. The only fly in the ointment was our glorious government charging us AS MUCH AGAIN AS THE FABRIC COST IN [...]]]></description>
				<content:encoded><![CDATA[<p>Well, aaaages ago, Amy and I designed some fabric to be printed by <a href="http://www.spoonflower.com/">Spoonflower</a> that Amy was going to make into lovely quilts for our baby, Evie. Here some piccies, from design to realization! Woot.</p>
<p><a href="http://gomako.co.uk/main/wp-content/uploads/2009/03/deerfabric00.jpg"><img class="alignnone size-full wp-image-19" title="Initial Design" src="http://gomako.co.uk/main/wp-content/uploads/2009/03/deerfabric00.jpg" alt="" width="500" height="250" /></a></p>
<p><a href="http://gomako.co.uk/main/wp-content/uploads/2009/03/deerfabric01.jpg"><img class="aligncenter size-full wp-image-20" title="The Printed Fabric" src="http://gomako.co.uk/main/wp-content/uploads/2009/03/deerfabric01.jpg" alt="" width="500" height="250" /></a><a href="http://gomako.co.uk/main/wp-content/uploads/2009/03/deerfabric02.jpg"></a></p>
<p><a href="http://gomako.co.uk/main/wp-content/uploads/2009/03/deerfabric02.jpg"><img class="aligncenter size-full wp-image-21" title="Finished Quilts" src="http://gomako.co.uk/main/wp-content/uploads/2009/03/deerfabric02.jpg" alt="" width="500" height="250" /></a></p>
<p>The only fly in the ointment was our glorious government charging us AS MUCH AGAIN AS THE FABRIC COST IN IMPORT DUTY. Thanks guys.</p>
]]></content:encoded>
			<wfw:commentRss>http://gomako.co.uk/main/2009/03/27/spoonflower-fabric/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
