<?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>Caramboo Dot Com &#187; Geek</title>
	<atom:link href="http://caramboo.com/category/geek/feed/" rel="self" type="application/rss+xml" />
	<link>http://caramboo.com</link>
	<description>Dave Naylor&#039;s Back Yard</description>
	<lastBuildDate>Tue, 24 Apr 2012 22:38:42 +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>ttytter 2.0.0beta</title>
		<link>http://caramboo.com/2012/01/ttytter-2-0-0beta/</link>
		<comments>http://caramboo.com/2012/01/ttytter-2-0-0beta/#comments</comments>
		<pubDate>Sun, 01 Jan 2012 17:24:27 +0000</pubDate>
		<dc:creator>Dave</dc:creator>
				<category><![CDATA[Geek]]></category>

		<guid isPermaLink="false">http://caramboo.com/?p=47918</guid>
		<description><![CDATA[I downloaded the latest ttytter today. It’s now hit 2.0.0beta. The big news is, it now has streaming. So that’s real time updating for tweets, DMs and @ messages]]></description>
			<content:encoded><![CDATA[<p><a href="http://static.caramboo.com/wp-content/uploads/2012/01/ttytterc.png?9d7bd4" rel="lightbox[47918]"><img src="http://static.caramboo.com/wp-content/uploads/2012/01/ttytterc-150x150.png?9d7bd4" alt="" title="ttytterc" width="150" height="150" class="alignright size-thumbnail wp-image-47920" /></a>I downloaded the latest ttytter today.  It&#8217;s now hit 2.0.0beta.  The big news is, it now has streaming.  So that&#8217;s real time updating for tweets, DMs and @ messages.</p>
<blockquote><p>
The TTYtter 2.0 beta with Streaming API support is now available for the incautious.
</p></blockquote>
<p>Blow yourself away here: <a href="http://www.floodgap.com/software/ttytter/beta/" title="ttytter beta">ttytter 2.0.0beta</a></p>
]]></content:encoded>
			<wfw:commentRss>http://caramboo.com/2012/01/ttytter-2-0-0beta/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Video on the Web</title>
		<link>http://caramboo.com/2010/06/video-on-the-web/</link>
		<comments>http://caramboo.com/2010/06/video-on-the-web/#comments</comments>
		<pubDate>Wed, 09 Jun 2010 08:38:40 +0000</pubDate>
		<dc:creator>Dave</dc:creator>
				<category><![CDATA[Geek]]></category>
		<category><![CDATA[embedded video]]></category>
		<category><![CDATA[ffmpeg]]></category>
		<category><![CDATA[flowplayer]]></category>

		<guid isPermaLink="false">http://caramboo.com/?p=785</guid>
		<description><![CDATA[I've spent a few days this week playing around with video on the web.  It's a fairly simple process to copy and paste the embed code from YouTube and have videos appear on this site, but I needed to embed a shortened clip of a longer piece.  I've managed to do it (last night) but I had to do a fair bit of Googling to find a solution that worked for me.]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve spent a few days this week playing around with video on the web.  It&#8217;s a fairly simple process to copy and paste the embed code from YouTube and have videos appear on this site, but I needed to embed a shortened clip of a longer piece.  I&#8217;ve managed to do it (last night) but I had to do a fair bit of Googling to find a solution that worked for me.</p>
<h3>get_iplayer</h3>
<p>Firstly, the videos I needed to shorten were from the BBC..  There&#8217;s a command line tool called <a href="http://linuxcentre.net/getiplayer">get_iplayer </a> that enables me to grab live or recorded video from the BBC site.  It&#8217;s way too complex to fully describe here but the command I used to grab my video clip was:</p>
<pre lang="bash" line="n" >
get_iplayer http://news.bbc.co.uk/democracylive/hi/house_of_commons/default.stm --stop 1800 --get
</pre>
<p>That command retrieves the embedded live video on that particular BBC web page and saves the file as an *.avi.  The <code>--stop 1800</code> argument recorded 1800 seconds of video (<em>60secs x 30mins = half an hour &#8211; I was having my tea!</em>).  Once I&#8217;d retrieved the video I had to find the start-time of my desired clip and then calculate its duration.  I used <a href="http://www.ffmpeg.org/">ffmpeg</a> to create a *.flv file from the original *.avi.  </p>
<p>I found that the original downloaded file&#8217;s audio and video were out of sync,  by approximately 1 second.  More Googling and I found a way to encode the *.flv file and offset the audio/video.  Here&#8217;s the command I used:</p>
<pre lang="bash" line="n">
 ffmpeg -i downloaded.avi -vcodec copy -itsoffset 1 -i downloaded.avi -map 1:0 -map 0:1 -ss 848 -t 399 result.flv
</pre>
<p>That took the video from the downloaded file, offset by 1 second from the audio in the same file, starting at 848 seconds and lasting 399 seconds.  Cool.</p>
<h3>Copy of a Copy</h3>
<p>Much in the way a photo-copied document starts to degrade after multiple recopying, the same goes for video.  Downloading a video, shortening it and then uploading the result to YouTube produced acceptable but not very clear looking videos.  I had to reduce the number of copies so the answer was to locally host the file.  Well, hosting the file on Amazon S3 and making use of their content delivery network (CDN).   </p>
<p>Google led me to the marvellous site by Mark Pilgrim, <a href="http://diveintohtml5.org/">Dive into HTML 5</a>.  The video section of the site goes into great detail about how best to display video in modern browsers and a link through to another awesome page, <a href="http://camendesign.com/code/video_for_everybody">Video for Everybody</a>. That site outlines how to display video in older or incapable browsers; yes Internet Explorer, pay attention.  The information described in those two sites is invaluable, however since I primarily use WordPress for blogs and sites, I decided to use a plugin to display either *.flv or *.m4v files.  </p>
<p>Not as pure as Video for Everybody but nevertheless, everyone should be able to see the video.</p>
<h3>Flowplayer</h3>
<p><a href="http://flowplayer.org/">Flowplayer</a> is a tool that allows you to display video on your site in a YouTube style enclosure, complete with controls. There are a number of WordPress Plugins that utilise Flowplayer but some of them collide with jQuery.  One that doesn&#8217;t is <a href="http://wordpress.org/extend/plugins/fv-wordpress-flowplayer/">FV WordPress Flowplayer</a>, so that&#8217;s what I&#8217;m using here on my site.</p>
<p>The plugin uses short codes to embed your video files, like this:</p>
<pre lang="bash" line="n">

</pre>
<p>It seems to work pretty well.  You can see an embedded video here: <a href="http://caramboo.com/2010/06/rachel-reeves-maiden-speech/">Embedded video using flowplayer</a>.  If I wasn&#8217;t using WordPress or something similar I&#8217;d definitely use the Video for Everyone technique for video embedding. </p>
<p>I&#8217;ve put this entry on my blog so that I don&#8217;t forget how to do it next time.  It&#8217;s fairly straightforward to do so if you ended up here from a search engine, I hope you find it useful.  </p>
]]></content:encoded>
			<wfw:commentRss>http://caramboo.com/2010/06/video-on-the-web/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Audioboo</title>
		<link>http://caramboo.com/2010/04/audioboo/</link>
		<comments>http://caramboo.com/2010/04/audioboo/#comments</comments>
		<pubDate>Wed, 21 Apr 2010 12:24:53 +0000</pubDate>
		<dc:creator>Dave</dc:creator>
				<category><![CDATA[Geek]]></category>
		<category><![CDATA[audioboo]]></category>

		<guid isPermaLink="false">http://caramboo.com/?p=726</guid>
		<description><![CDATA[I've just found that I can use <a href="http://audioboo.fm">Audioboo</a> on my Android phone.  So that's kind of cool.]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve just found that I can use <a href="http://audioboo.fm">Audioboo</a> on my Android phone.  So that&#8217;s kind of cool.  Here is one of my first <em>Boos</em>.</p>
<p><object data="http://boos.audioboo.fm/swf/fullsize_player.swf" height="129" id="iefix1" type="application/x-shockwave-flash" width="400"><param name="movie" value="http://boos.audioboo.fm/swf/fullsize_player.swf" /><param name="scale" value="noscale" /><param name="salign" value="lt" /><param name="bgColor" value="#FFFFFF" /><param name="allowScriptAccess" value="always" /><param name="wmode" value="window" /><param name="FlashVars" value="mp3Author=caramboo&amp;mp3LinkURL=http%3A%2F%2Faudioboo.fm%2Fboos%2F118893-last-test&amp;mp3Title=Last+test.&amp;mp3Time=11.28am+21+Apr+2010&amp;mp3=http%3A%2F%2Faudioboo.fm%2Fboos%2F118893-last-test.mp3" /><a href="http://static.caramboo.com/wp-content/uploads/2010/04/118893-last-test.mp3">Listen!</a></object></p>
]]></content:encoded>
			<wfw:commentRss>http://caramboo.com/2010/04/audioboo/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="http://static.caramboo.com/wp-content/uploads/2010/04/118893-last-test.mp3" length="321664" type="audio/mpeg" />
		</item>
		<item>
		<title>Farewell Sweetcron</title>
		<link>http://caramboo.com/2009/11/farewell-sweetcron/</link>
		<comments>http://caramboo.com/2009/11/farewell-sweetcron/#comments</comments>
		<pubDate>Mon, 30 Nov 2009 10:37:44 +0000</pubDate>
		<dc:creator>Dave</dc:creator>
				<category><![CDATA[Geek]]></category>

		<guid isPermaLink="false">http://caramboo.com/?p=530</guid>
		<description><![CDATA[I've decided to stop using <a href="http://code.google.com/p/sweetcron/">Sweetcron</a> to aggregate all my social networking activity.]]></description>
			<content:encoded><![CDATA[<p>In recent months I&#8217;ve been using social networking sites like <a href="http://twitter.com/caramboo">Twitter</a> more than good old fashioned blogging as a way of getting my daily online fix.  When I found <a href="http://code.google.com/p/sweetcron/">Sweetcron</a>, which is an aggregation come blogging platform it seemed the ideal way to catalogue all the stuff I was up to.  Sweetcron is also really cool to fool around with and customise so it happily kept me amused for a few months.  I could have an effective daily feed of things I was doing and it was almost like blogging by proxy.  I even set up its own sub-domain to give the thing a home.  My Lifestreamwas born.</p>
<p>Well.  I&#8217;ve decided to stop using it and here&#8217;s why.   </p>
<h3>Too Many Blogs!</h3>
<p>I keep realising <em>(and then forgetting and then re-realising)</em> that if I set-up too many personal sites or blogs, I spread myself out way too thinly.  I&#8217;m not the most prolific of bloggers at the best of times and if I&#8217;ve got to race round updating multiple sites, I&#8217;m just not going to and indeed didn&#8217;t bother.  My Sweetcron site somehow became my lazy-blog.  I knew I could fire off a few tweets here and there and the blog gods would be happy because I was doing my bit.  So then this site site right here becomes like a ghost town.  I even started giving out my  Sweetcron address as the URL of my web-site.  I&#8217;m such a cheat.</p>
<p>What&#8217;s sort of swung it for me are a couple of reasons.  The first is that the <a href="http://yongfook.com/why-posterous-instead-of-sweetcron">Sweetcron Author </a> himself has stopped using his own software and cites the impersonality of lifestreaming as one of the reasons.  He&#8217;s actually moved onto Posterous as his blogging platform and makes regular updates.  The second reason is that there&#8217;s a now a <a href="http://www.enthropia.com/labs/wp-lifestream/download.php">Lifestream Plugin</a> for <a href="http://wordpress.org">WordPress</a>.  I&#8217;ve installed it and without doing any customisation it already looks pretty neat.  You can see it <a href="http://caramboo.com/lifestream/">on this page</a>.  I&#8217;ll probably try and get my own style going there when I can get round to it but like I say, it looks pretty much OK as it is.</p>
<h3>So What Now?</h3>
<p>So, now that the Sweetcron site has bit the dust I&#8217;ll have to write in here more.  I&#8217;m still going to have more than one site running but this place here will be for personal stuff.  A proper blog with the attraction of an added Lifestream.  I&#8217;m going to build a second site for geeky/linuxy/webby stuff and that will be more the start of business enterprise.  We&#8217;ll see what happens.  I&#8217;m going to need to find another income stream anyway since The Form Analyst has now closed its doors and is becoming a free site.  Which kinda sucks!</p>
<p>Onwards and upwards&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://caramboo.com/2009/11/farewell-sweetcron/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Karmic Koala KO</title>
		<link>http://caramboo.com/2009/11/karmic-koala-ko/</link>
		<comments>http://caramboo.com/2009/11/karmic-koala-ko/#comments</comments>
		<pubDate>Tue, 10 Nov 2009 14:58:31 +0000</pubDate>
		<dc:creator>Dave</dc:creator>
				<category><![CDATA[Geek]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[karmic]]></category>
		<category><![CDATA[nginx]]></category>
		<category><![CDATA[rdiff-backup]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://caramboo.com/?p=484</guid>
		<description><![CDATA[Oh bollocks I’ve been busy. Like an old record I’ve said this before many times but I really do think I enjoy fiddling with stuff and getting it working rather than actually using the thing I’m messing about with.]]></description>
			<content:encoded><![CDATA[<p><img src="/photos/zp-core/i.php?&amp;a=sitepics&amp;w=300&amp;i=koala.jpg" alt="koala.jpg" class="alignleft cheese" /> Oh bollocks I&#8217;ve been busy.  Like an old record I&#8217;ve said this before many times but I really do think I enjoy fiddling with stuff and getting it working rather than actually using the thing I&#8217;m messing about with.  However, the reason for no updates for a few weeks is that I had a bit of a catastrophe on the <a href="http://theformanalyst.com" title="The Form Analyst">Form Analyst Site</a>.  There&#8217;s no need to go too much into detail but basically I messed up upgrading the server from Ubuntu 9.04 (<em>was that Jaunty or Intrepid?</em>) to 9.10 Karmic Koala.  It was my fault for being a bit blasé about the upgrade because usually nothing goes wrong.  Except it did this time.</p>
<p>I found myself with the option of working out what had gone wrong (the server wouldn&#8217;t even boot properly) which I may have managed, or to bite the bullet and start again with a fresh install.  I went for the latter because I really couldn&#8217;t be bothered with the former and it would enable me to build a few applications in a way I wished I&#8217;d done on the first install.  Fortunately due to <a href="http://wordpress.org/extend/plugins/wp-db-backup/">WP-DB-Backup</a> and <a href="http://rdiff-backup.nongnu.org/">rdiff-backup</a> I was able to rebuild and restore quite quickly.  DefCon 1 at 8.30am, multi-user subscription website and server back up and running at 2.00pm.  I even managed to get a temporary forum up and running so that the users had somewhere to hang out.  That was on-line at 9.00am.</p>
<p>The new set-up has <a href="http://wiki.nginx.org/Main">Nginx</a> proxying to <a href="http://apache.org">Apache</a>.  I&#8217;d wanted to do it for ages and so now Nginx serves up the static content, Apache looks after all the PHP and other swanky malarky.  I also did a review of the plugins on the site and found that one was really slowing things down to a crawl.  It was <a href=" http://wordpress.org/extend/plugins/social-access-control/">Social Access Control</a> that seemed to be strangling the server.  I swapped it out for Justin Tadlock&#8217;s <a href="http://justintadlock.com/archives/2009/09/17/members-wordpress-plugin">Members</a> plugin.  Things are a lot swifter.  Maybe I didn&#8217;t have Social Access set-up correctly, who knows, it&#8217;s toast now.  Members takes a little bit more messing about with templates to get it running sweet, but I like the concept and it&#8217;s there to stay over at <a href="http://theformanalyst.com">TFA</a>.</p>
<p>I was thinking of writing a few posts on the way I&#8217;ve got Nginx and Apache working in tandem but all I did was Google their names with the word proxy thrown in for good measure and all the help you need is already out there.  </p>
<p><em>Google is your friend</em>.</p>
]]></content:encoded>
			<wfw:commentRss>http://caramboo.com/2009/11/karmic-koala-ko/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Subversion</title>
		<link>http://caramboo.com/2009/10/subversion/</link>
		<comments>http://caramboo.com/2009/10/subversion/#comments</comments>
		<pubDate>Wed, 14 Oct 2009 11:29:27 +0000</pubDate>
		<dc:creator>Dave</dc:creator>
				<category><![CDATA[Geek]]></category>
		<category><![CDATA[dreamhost]]></category>
		<category><![CDATA[subversion]]></category>

		<guid isPermaLink="false">http://caramboo.com/2009/10/14/subversion/</guid>
		<description><![CDATA[Instead of FTPing all my updated files to my remote server, I'm now using SVN version control.]]></description>
			<content:encoded><![CDATA[<p>Last night, on a whim, I decided to set up a <a href="http://en.wikipedia.org/wiki/Subversion_%28software%29">subversion</a> repository at my Dreamhost Account. I sorta kinda stopped using Dreamhost several months ago now but I&#8217;ve retained the account simply because at less than $10.00 a month I get:</p>
<ul>
<li>Somewhere to test stuff</li>
<li>An Apache Web Server (I use Nginx on my own server)</li>
<li>As many domains/sub-domains as I like</li>
<li>5OGB of backup space</li>
<li>Lots of funky stuff, like <a href="http://en.wikipedia.org/wiki/Subversion_%28software%29">subversion</a>!</li>
</ul>
<p>All for less than that ten dollars.  Cool or what! </p>
<p>If you don&#8217;t know what subversion is: </p>
<blockquote><p>Subversion (SVN) is a version control system initiated in 1999 by CollabNet Inc. It is used to maintain current and historical versions of files such as source code, web pages, and documentation. Its goal is to be a mostly-compatible successor to the widely used Concurrent Versions System (CVS).</p></blockquote>
<p>So my plan is use the following <i>workflow</i>:</p>
<ul>
<li>Create/Edit files on my Desktop machine</li>
<li>Save/Open them on my local server via SSH</li>
<li>Sync my local server files with my repository at Dreamhost</li>
<li>Sync the live site on my remote server with my repository</li>
</ul>
<p>I already backup any sites I have or am working on via rsync or rdiff-backup to my Dreamhost backup account. This new subversion set-up will be used for current development synchronisation with the bonus of historical svn backups.</p>
<p>It all sounds lovely and geeky to me which is great.  Trust me it&#8217;s good.</p>
]]></content:encoded>
			<wfw:commentRss>http://caramboo.com/2009/10/subversion/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Thesis Look-a-likey</title>
		<link>http://caramboo.com/2009/10/thesis-look-a-likey/</link>
		<comments>http://caramboo.com/2009/10/thesis-look-a-likey/#comments</comments>
		<pubDate>Sat, 10 Oct 2009 20:08:30 +0000</pubDate>
		<dc:creator>Dave</dc:creator>
				<category><![CDATA[Geek]]></category>

		<guid isPermaLink="false">http://caramboo.com/?p=436</guid>
		<description><![CDATA[I spent part of the week gone by looking at some Thesis (a premium Wordpress theme) sites and had a go at styling Thematic to mimic their look. 

]]></description>
			<content:encoded><![CDATA[<p><a href="http://static.caramboo.com/wp-content/uploads/2009/10/thesis_look.png?9d7bd4" rel="lightbox[436]"><img src="http://static.caramboo.com/wp-content/uploads/2009/10/thesis_look-300x224.png?9d7bd4" alt="thesis_look" title="thesis_look" width="300" height="224" class="alignleft size-medium wp-image-435" /></a>I spent part of the week gone by looking at some Thesis (a premium WordPress theme) sites and had a go at styling Thematic to mimic their look.  I chose one to play around with and the result is the screenshot in this post.  The aim of the exercise was to just keep climbing the Thematic learning curve and I&#8217;m picking stuff up as I go along.  In this example I managed to move the menu above the site logo and then implemented a new widgetised are above the main #primary and #secondary asides.  Kinda neat really.  </p>
<p>I was thinking about carrying on with the theme but the experience has served its purpose and I&#8217;m ready to move onto something else.  I&#8217;ll just leave the theme as it is and perhaps I&#8217;ll come back to it someday.  So, the next plan is to develop a theme that doesn&#8217;t instantly look like Thematic (or thesis for that matter).  </p>
<p>I&#8217;ll start tomorrow. </p>
]]></content:encoded>
			<wfw:commentRss>http://caramboo.com/2009/10/thesis-look-a-likey/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SteadyOffload</title>
		<link>http://caramboo.com/2009/05/steadyoffload/</link>
		<comments>http://caramboo.com/2009/05/steadyoffload/#comments</comments>
		<pubDate>Wed, 27 May 2009 15:08:56 +0000</pubDate>
		<dc:creator>Dave</dc:creator>
				<category><![CDATA[Geek]]></category>
		<category><![CDATA[SteadyOffload]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://caramboo.com/?p=320</guid>
		<description><![CDATA[I’ve been meaning to write about SteadyOffload for a few days now but I got tied up with the recent bank holiday and never got round to it. So, better late than never, here we go. This article isn’t exactly a how-to, more of a go-look-see but it’s really simple once you start using it.]]></description>
			<content:encoded><![CDATA[<p><a href="http://static.caramboo.com/wp-content/uploads/2009/05/logo.png?9d7bd4" rel="lightbox[320]"><img src="http://static.caramboo.com/wp-content/uploads/2009/05/logo.png?9d7bd4" alt="logo" title="logo" width="233" height="50" class="alignleft size-full wp-image-319" style="border: none;"/></a>I&#8217;ve been meaning to write about <a href="http://www.steadyoffload.com/">SteadyOffload</a> for a few days now but I got tied up with the recent bank holiday and never got round to it.  So, better late than never, here we go.  This article isn&#8217;t exactly a how-to, more of a go-look-see but it&#8217;s really simple once you start using it.</p>
<h3>What is SteadyOffload?</h3>
<p>SteadyOffload is a content delivery service. Here&#8217;s how the service describes itself:</p>
<blockquote><p>
SteadyOffload is an innovative service designed to reduce the load of your web server seamlessly. It enables you to offload all kinds of static web content &#8211; images, documents, movies, presentations, software downloads, you name it. The content you offload remains stored on your server while synchronized copies are delivered from us. It all happens transparently &#8211; all you have to do is point the files to offload, the rest is done by our cachebot.
</p></blockquote>
<p>So, what&#8217;s all that about then.  Well, in all honesty if you visit the <a href="http://www.steadyoffload.com/">SteadyOffload</a> site they do a good job of explaining what they are all about.  In a nutshell they save your server from excessive work by serving up static files held on the SteadyOffload servers.  It works much in the way that <a href="http://aws.amazon.com/s3/">Amazon S3</a> does but with hardly any hassle at all.  You simply upload your static image, document or whatever file and it gets mirrored and then subsequently served by the SteadyOffload server.  All your own server need do is then serve up the dynamic content at a fraction of the server load. </p>
<h3>So How Does it Work?</h3>
<p>In order for the SteadyOffload integration to start working you obviously need to sign up for an account.  New signups get 5GB of bandwidth free.  Once that&#8217;s expired it works on a pay as you go basis but the fees are very competitive compared to other more well known delivery services.  Once you have your account up and running you simply have to put a small piece of HTML code in pages that show static content.  Here&#8217;s the code:</p>
<p><code><br />
script type="text/javascript" src="http://steadyoffload.com/serve/name of script.js">/script<br />
</code></p>
<p>Then, by using custom tags, your static content is offloaded to SteadyOffload and your server can take a breather.  Here&#8217;s an example custom tag:</p>
<p><code><br />
img srcx="/home/www/site/example.jpg" /<br />
</code></p>
<p><em>Note the custom scrx tag</em></p>
<p>There&#8217;s also a funky plugin for WordPress Users that takes care of all the business for you.  Grab it from here: <a href="http://wordpress.org/extend/plugins/wp-offload/">WP-Offload</a>.</p>
<p>An obvious benefit of SteadyOffload is that whilst the files are served remotely, if you cancel your account, your original files are still in place and ready to be served once again by your server, which probably won&#8217;t thank you too much for all the work you&#8217;re giving it back.</p>
<h3>Control Panel</h3>
<p>When you have your SteadyOffload setup running sweetly, you can monitor what&#8217;s being offloaded by visiting the Control Panel.  Here you can set URL Filters to ensure no-one is stealing your bandwidth, monitor offloaded files and keep tabs on your subscription. </p>
<p><small><i>Added 28/5/09</i></small></p>
<p>I found a really useful Video at Google produced by SteadyOffload themselves that shows how simple it is to use the Control Panel.  It also shows something that I neglected to mention and that&#8217;s dynamic image manipulation by using the &#8220;xmanip&#8221; tag.  The video is <a href="http://video.google.com/videoplay?docid=-8193919167634099306">here</a>.  </p>
<h3>And so&#8230;</h3>
<p>I think SteadyOffload is a great service that deserves support and can provide obvious performance benefits for your site.  It&#8217;s simple to set up, free to trial and cheap once you use up your free bandwidth.  Once I start paying <em>(and yes, I haven&#8217;t used up my freebies yet</em>) then I&#8217;ll make an effort to produce some stats and figures to show just how cheapo it really is.</p>
<p>Give it a go!</p>
<p><em>NB.  Nearly forgot, I recently Tweeted on Twitter about SteadyOffload since I stupidly misplaced my password.  As far as I can tell I was the first person to tweet about it.  Ever.  Unreal! <a href="http://twitter.com/caramboo/status/1836676654">My Original Tweet</a></em>  </p>
]]></content:encoded>
			<wfw:commentRss>http://caramboo.com/2009/05/steadyoffload/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>More Tarpipe Fun</title>
		<link>http://caramboo.com/2009/05/more-tarpipe-fun/</link>
		<comments>http://caramboo.com/2009/05/more-tarpipe-fun/#comments</comments>
		<pubDate>Sun, 17 May 2009 10:31:01 +0000</pubDate>
		<dc:creator>Dave</dc:creator>
				<category><![CDATA[Geek]]></category>

		<guid isPermaLink="false">http://caramboo.com/?p=286</guid>
		<description><![CDATA[I&#8217;m going to undertake a little experiment with Tarpipe. After completing this post I&#8217;ll set the thing in motion and let&#8217;s see what happens. What I&#8217;m going to do is write out some text on a sheet of A4. I&#8217;ll take a picture of it with my phone and then email the image from my [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m going to undertake a little experiment with Tarpipe.  After completing this post I&#8217;ll set the thing in motion and let&#8217;s see what happens.</p>
<p>What I&#8217;m going to do is write out some text on a sheet of A4.  I&#8217;ll take a picture of it with my phone and then email the image from my phone to a <a href="http://tarpipe.com">Tarpipe</a> workflow.  Tarpipe will pass the image on to my <a href="http://evernote.com/">Evernote</a> account where the text should be picked out using <a href="http://en.wikipedia.org/wiki/Optical_character_recognition">Optical Character Recognition</a>.  Once done the text will be returned to Tarpipe and then tweeted to Twitter.</p>
<p>The images below describe the process:</p>
<p><a href="http://static.caramboo.com/wp-content/uploads/2009/05/one.jpg?9d7bd4" rel="lightbox[286]"><img alt="" src="http://img2.pict.com/24/fa/94/ea660fad80a33747571bd2917a/2CYiI/320/one.jpg" class="aligncenter" width="320" height="240" /></a></p>
<p><a href="http://static.caramboo.com/wp-content/uploads/2009/05/two.jpg?9d7bd4" rel="lightbox[286]"><img alt="" src="http://img2.pict.com/43/54/ca/b70332b022d6c7dde42a6c366c/tIpEu/320/two.jpg" class="aligncenter" width="320" height="240" /></a></p>
<p><a href="http://static.caramboo.com/wp-content/uploads/2009/05/three.jpg?9d7bd4" rel="lightbox[286]"><img alt="" src="http://img2.pict.com/0a/eb/d0/7d1802ccbc4b9ad330f2e41cdf/6KGm0/320/three.jpg" class="aligncenter" width="320" height="240" /></a></p>
<p><a href="http://static.caramboo.com/wp-content/uploads/2009/05/workflows25202520tarpipe.png?9d7bd4" rel="lightbox[286]"><img alt="" src="http://img2.pict.com/5d/cb/c6/1c628d86795f676d47c87ebfb3/gY9v7/320/workflows25202520tarpipe.png" class="aligncenter" width="320" height="193" /></a></p>
<p><a href="http://static.caramboo.com/wp-content/uploads/2009/05/2520home.png?9d7bd4" rel="lightbox[286]"><img alt="" src="http://img2.pict.com/e8/0a/69/83d2d27b693259a2c0aefa8d50/YcoOE/320/2520home.png" class="aligncenter" width="320" height="173" /></a></p>
<p>Inspiration for this little stunt came from <a href="http://blog.erikdebruijn.nl/archives/82-TranslateAnywhere-demo.html">this blog post</a> </p>
]]></content:encoded>
			<wfw:commentRss>http://caramboo.com/2009/05/more-tarpipe-fun/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>The Thing About Ubuntu</title>
		<link>http://caramboo.com/2009/04/the-thing-about-ubuntu/</link>
		<comments>http://caramboo.com/2009/04/the-thing-about-ubuntu/#comments</comments>
		<pubDate>Sun, 26 Apr 2009 14:19:51 +0000</pubDate>
		<dc:creator>Dave</dc:creator>
				<category><![CDATA[Geek]]></category>

		<guid isPermaLink="false">http://caramboo.com/?p=248</guid>
		<description><![CDATA[I&#8217;m starting this blog entry and to be perfectly honest I don&#8217;t really know where I&#8217;m going with it. I&#8217;ve been planning to write something for a while about my thoughts on Ubuntu but since I couldn&#8217;t really pin down exactly what I wanted to say I&#8217;ve always put it off. Well it&#8217;s about time [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m starting this blog entry and to be perfectly honest I don&#8217;t really know where I&#8217;m going with it.  I&#8217;ve been planning to write something for a while about my thoughts on Ubuntu but since I couldn&#8217;t really pin down exactly what I wanted to say I&#8217;ve always put it off.  Well it&#8217;s about time I grasped the nettle, bit the bullet or whatever else.  So here we go.</p>
<h3>I Use Ubuntu</h3>
<p>Before anything else, I have to point out that I am an Ubuntu user.  Funnily enough not a Desktop user but I run the latest Ubuntu <em>(Jaunty)</em> on one of my VPSs.  I also ran Hardy for a while after my main SCSI hard drive curled up it&#8217;s toes a few years back.  I needed a Desktop fast and I couldn&#8217;t wait for the lengthy Gentoo compile so I installed the brown monster.  I think I ran it for about 3 months before I could hear Gentoo calling and I went back.  </p>
<p>Actually, I recall being more than surprised at how more intuitive things felt once I was back on Gentoo but that&#8217;s not what I&#8217;m writing about here.  </p>
<h3>I Recommend Ubuntu</h3>
<p>I have this dream of setting up some form of Linux Support business where I help people move away from proprietary OSs and embrace Linux.  Lisa&#8217;s Dad had a fragged and sluggish Windows XP machine and he agreed to let me replace it with Linux.  I really didn&#8217;t have to think about it at all, I just installed Ubuntu.  Depending on hardware, I&#8217;d probably do the same with anyone else.</p>
<h3>So What&#8217;s This Thing About Ubuntu?</h3>
<p>The <em>thing</em> is this.   It seems to me that the word Ubuntu is becoming completely synonymous with the word Linux.  I keep seeing Tutorials and How-Tos that purport to be &#8220;How to Install Application <em>X</em> on Linux&#8221;, yet when I read the how-to, it&#8217;s really meaning how to install in Ubuntu.  Then we have the release of the latest whiz bang application and I read &#8220;Now available on Linux!&#8221;.  I go to the download site, only Ubuntu and perhaps RPM based distros supported.  Adobe AIR is a typical example.  I then have to jump through hoops to get things running on <em>my Linux</em> and should I cry out for help it&#8217;s often the case that I get an Ubuntu styled response.  </p>
<p>Another little irksome thing, is that Ubuntu moves the new user a little bit further away from what&#8217;s going on underneath the surface.  If I&#8217;m trying to get something working and off I go Googling, it&#8217;s more than likely that I&#8217;ll find some forum conversation between two or more Ubuntu users.  They&#8217;ll most likely be newbies and they&#8217;ll be wanting me to double click on things and load up the preferences manager and click this that or the other.  Double what? First sign of not being able to work something out and I&#8217;m straight in a shell, fishing around. </p>
<h3>Cutting My Nose of to Spite My Face</h3>
<p>It&#8217;s probably right and proper to commend Ubuntu for grabbing centre stage in the Linux world and making things easy for newbies to come over to the light side.  If techy mumbo-jumbo is what scared Linux wannabes away and Ubuntu has made them lose their fears then that&#8217;s OK by me.  I think about just caving in and jumping on the bandwagon myself because if something new comes out, it&#8217;ll work on and be available for Ubuntu first, guaranteed.</p>
<p>I just like things a little more adventurous though.  I don&#8217;t want to feel all cosy in the Ubuntu comfort zone and I like getting my hands dirty when things go awry.  I certainly don&#8217;t want to bloody double click anything that&#8217;s for sure!</p>
<p>So.  I can&#8217;t slag off Ubuntu, and if things go all right for me I&#8217;ll be installing an Ubuntu CD into your machine some time soon.  It just won&#8217;t be mine.  For now.  </p>
]]></content:encoded>
			<wfw:commentRss>http://caramboo.com/2009/04/the-thing-about-ubuntu/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
	</channel>
</rss>

<!-- Served from: caramboo.com @ 2012-05-22 06:02:52 by W3 Total Cache -->
