<?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>cameronyule.com &#187; Software</title>
	<atom:link href="http://cameronyule.com/categories/software/feed" rel="self" type="application/rss+xml" />
	<link>http://cameronyule.com</link>
	<description>Glasgow based new media developer Cameron Yule.</description>
	<lastBuildDate>Fri, 22 Jan 2010 12:53:38 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Archiving large files across multiple DVDs</title>
		<link>http://cameronyule.com/2008/11/archiving-large-files-across-multiple-dvds</link>
		<comments>http://cameronyule.com/2008/11/archiving-large-files-across-multiple-dvds#comments</comments>
		<pubDate>Fri, 28 Nov 2008 12:32:45 +0000</pubDate>
		<dc:creator>Cameron</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[archiving]]></category>
		<category><![CDATA[backup]]></category>
		<category><![CDATA[dvd]]></category>
		<category><![CDATA[tar]]></category>

		<guid isPermaLink="false">http://cameronyule.com/?p=414</guid>
		<description><![CDATA[I was backing up our SVN repositories to DVD a while ago and wrote an entry on our wiki detailing how I&#8217;d done it. Thinking this is the kind of thing people will have to do at some point I thought it could be useful to share. The method I&#8217;ve used is to create a [...]]]></description>
			<content:encoded><![CDATA[<p>I was backing up our SVN repositories to DVD a while ago and wrote an entry on our wiki detailing how I&#8217;d done it. Thinking this is the kind of thing people will have to do at some point I thought it could be useful to share.</p>
<p>The method I&#8217;ve used is to create a single <abbr title="Taped Archive">tar</abbr> file of everything you&#8217;re looking to backup and then split that file into chunks which fit onto a single DVD.</p>
<h3>Install GNU Core Utilities</h3>
<p>Before we start, you&#8217;re going to need <code>gsplit</code> installed. This comes as part of the <a href="http://www.gnu.org/software/coreutils/">GNU Core Utilities</a> package, so you can either download it from there or use your favourite package management software.</p>
<p>You can either build from source,</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">wget</span> http:<span style="color: #000000; font-weight: bold;">//</span>ftp.gnu.org<span style="color: #000000; font-weight: bold;">/</span>gnu<span style="color: #000000; font-weight: bold;">/</span>coreutils<span style="color: #000000; font-weight: bold;">/</span>coreutils-6.9.tar.gz
<span style="color: #c20cb9; font-weight: bold;">tar</span> xzvf coreutils-6.9.tar.gz
<span style="color: #7a0874; font-weight: bold;">cd</span> coreutils-<span style="color: #000000;">6.9</span>
.<span style="color: #000000; font-weight: bold;">/</span>configure
<span style="color: #c20cb9; font-weight: bold;">make</span> <span style="color: #000000; font-weight: bold;">&amp;&amp;</span> <span style="color: #c20cb9; font-weight: bold;">make</span> <span style="color: #c20cb9; font-weight: bold;">install</span></pre></div></div>

<p>Or use a package management tool like <a href="http://www.macports.org/">MacPorts</a>.</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sudo</span> port <span style="color: #c20cb9; font-weight: bold;">install</span> coreutils</pre></div></div>

<h3>Split your content into chunks</h3>
<p>Put all the files you want to backup into one folder, create the tar achive and then split that into chunks.</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">mkdir</span> archive
<span style="color: #666666; font-style: italic;"># … add some content to the archive/ folder …</span>
<span style="color: #7a0874; font-weight: bold;">cd</span> archive
<span style="color: #c20cb9; font-weight: bold;">tar</span> <span style="color: #660033;">-cvf</span> archive.tar <span style="color: #000000; font-weight: bold;">*</span>
gsplit <span style="color: #660033;">-b4500m</span> archive.tar</pre></div></div>

<p>After you&#8217;ve burned each generated file to a DVD, delete both those and the source archive.tar file as they&#8217;ll be using quite a lot of space on your drive.</p>
<h3>Restoring</h3>
<p>Should the worst happen and you need to get your content back, copy all the files from across your DVDs to a folder on your machine and run the following.</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">cat</span> x<span style="color: #000000; font-weight: bold;">*</span> <span style="color: #000000; font-weight: bold;">&gt;</span> archive.tar
<span style="color: #c20cb9; font-weight: bold;">tar</span> <span style="color: #660033;">-xvf</span> archive.tar</pre></div></div>

]]></content:encoded>
			<wfw:commentRss>http://cameronyule.com/2008/11/archiving-large-files-across-multiple-dvds/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Taking regular breaks</title>
		<link>http://cameronyule.com/2008/11/taking-regular-breaks</link>
		<comments>http://cameronyule.com/2008/11/taking-regular-breaks#comments</comments>
		<pubDate>Thu, 27 Nov 2008 12:02:39 +0000</pubDate>
		<dc:creator>Cameron</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[app]]></category>
		<category><![CDATA[breaks]]></category>
		<category><![CDATA[os x]]></category>
		<category><![CDATA[regular]]></category>
		<category><![CDATA[rsi]]></category>

		<guid isPermaLink="false">http://cameronyule.com/?p=403</guid>
		<description><![CDATA[I&#8217;ve always been on the lookout for a small application to remind me to take regular breaks from my computer, as it&#8217;s easy to get totally involved in what you&#8217;re doing and lose track of time. The few I&#8217;ve found in the past have always had their problems, from terrible interfaces to being overly intrusive [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve always been on the lookout for a small application to remind me to take regular breaks from my computer, as it&#8217;s easy to get totally involved in what you&#8217;re doing and lose track of time. </p>
<p>The few I&#8217;ve found in the past have always had their problems, from terrible interfaces to being overly intrusive &#8211; think alarm calls and locking the computer. Thankfully I&#8217;ve found the perfect app for the task &#8211; <a href="http://tech.inhelsinki.nl/antirsi/">AntiRSI</a>. </p>
<p>As well as reminding you to take breaks, it&#8217;s small, unobtrusive and highly configurable. As an added bonus it even takes idle time into account so if you&#8217;ve told it you want to take 5 minute breaks each hour and leave the machine idle, the counter for your next break will adjust appropriately, clever!</p>
]]></content:encoded>
			<wfw:commentRss>http://cameronyule.com/2008/11/taking-regular-breaks/feed</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>A small gotcha with OS X Leopard file sharing</title>
		<link>http://cameronyule.com/2008/08/a-small-gotcha-with-os-x-leopard-file-sharing</link>
		<comments>http://cameronyule.com/2008/08/a-small-gotcha-with-os-x-leopard-file-sharing#comments</comments>
		<pubDate>Tue, 19 Aug 2008 09:45:29 +0000</pubDate>
		<dc:creator>Cameron</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[file]]></category>
		<category><![CDATA[folder]]></category>
		<category><![CDATA[leopard]]></category>
		<category><![CDATA[os x]]></category>
		<category><![CDATA[sharing]]></category>

		<guid isPermaLink="false">http://cameronyule.com/?p=187</guid>
		<description><![CDATA[I was trying to share a folder across our local network a moment ago and no matter what permissions I gave it, it wouldn't appear for anyone accessing my computer as a Guest. Cue one of those head-slapping moments when the problem, and solution, suddenly becomes alarmingly obvious.]]></description>
			<content:encoded><![CDATA[<p>I was trying to share a folder across our local network a moment ago and no matter what permissions I gave it, it wouldn&#8217;t appear for anyone accessing my computer as a Guest. Cue one of those head-slapping moments when the problem, and solution, suddenly becomes alarmingly obvious.</p>
<p>If you&#8217;re having the same problems, chances are you&#8217;re sharing a sub-folder whose parent isn&#8217;t configured for sharing. In my case, I was trying to share the iTunes Music folder (full path from home directory Music/iTunes/iTunes Music) but in this case, both the Music/ and Music/iTunes/ folders didn&#8217;t have the appropriate permissions for sharing, so OS X was correctly preventing anyone else from accessing it.</p>
<p>Solution is simple &#8211; I shared the Music/ folder instead.</p>
]]></content:encoded>
			<wfw:commentRss>http://cameronyule.com/2008/08/a-small-gotcha-with-os-x-leopard-file-sharing/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Subversion 1.5 merge tracking</title>
		<link>http://cameronyule.com/2008/05/subversion-15-merge-tracking</link>
		<comments>http://cameronyule.com/2008/05/subversion-15-merge-tracking#comments</comments>
		<pubDate>Mon, 12 May 2008 08:42:39 +0000</pubDate>
		<dc:creator>Cameron</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[branching]]></category>
		<category><![CDATA[subversion]]></category>

		<guid isPermaLink="false">http://cameronyule.com/?p=29</guid>
		<description><![CDATA[Some great news coming from the Subversion developers recently, announcing that merge tracking will be included in the upcoming 1.5 release. From the announcement; Merge-tracking is when your version control system keeps track of how lines of development (branches) diverge and re-form together. … While Subversion 1.5 doesn’t make merging as easy as a system [...]]]></description>
			<content:encoded><![CDATA[<p>Some great news coming from the Subversion developers recently, announcing that <a href="http://blog.red-bean.com/sussman/?p=92">merge tracking will be included</a> in the upcoming 1.5 release. From the announcement;</p>
<blockquote><p>Merge-tracking is when your version control system keeps track of how lines of development (branches) diverge and re-form together.</p>
<p>…</p>
<p>While Subversion 1.5 doesn’t make merging as easy as a system like Git or Mercurial, it certainly solves common points of pain. </p></blockquote>
<p>It&#8217;s no surprise that they mention <a href="http://git.or.cz/">Git</a>, as it&#8217;s starting to gain some serious traction (notably within the Ruby/Rails community)  thanks to it&#8217;s superior branch handling.</p>
<p>I haven&#8217;t been entirely convinced that the switch to Git would make sense for me. Branching an entire project is something I need to do only occasionally (one of those times being this week, coincidentally) and the <a href="http://git.or.cz/#about">other benefits Git offers</a>, while appealing, aren&#8217;t enough to make me think I can&#8217;t live without it.</p>
<p>Now with SVN improving one of the two flaws I think it has (the other being it leaving .svn directories littered throughout your project, something which I believe is also going to be fixed), I think I may well stick with what I know for the time being!</p>
]]></content:encoded>
			<wfw:commentRss>http://cameronyule.com/2008/05/subversion-15-merge-tracking/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Moved to WordPress</title>
		<link>http://cameronyule.com/2008/04/moved-to-wordpress</link>
		<comments>http://cameronyule.com/2008/04/moved-to-wordpress#comments</comments>
		<pubDate>Sat, 26 Apr 2008 12:59:15 +0000</pubDate>
		<dc:creator>Cameron</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://cameronyule.com/?p=24</guid>
		<description><![CDATA[Decided to take the plunge and move my blog over onto WordPress. I&#8217;m really impressed with how much it&#8217;s improved since I last used it. Compared to writing my own blogging software, which is what I&#8217;d done previously using Rails, everything is easier. The admin interface is superb, with the post, media and plugin management all [...]]]></description>
			<content:encoded><![CDATA[<p>Decided to take the plunge and move my blog over onto <a href="http://wordpress.org/">WordPress</a>. I&#8217;m really impressed with how much it&#8217;s improved since I last used it.</p>
<p>Compared to writing my own blogging software, which is what I&#8217;d done previously using Rails, everything is easier. The admin interface is superb, with the post, media and plugin management all top notch. Check this <a href="http://astheria.com/design/evaluating-the-wordpress25-interface">evaluation</a> of the WordPress 2.5 interface (which was designed by Happy Cog no less).</p>
<p>Still using the default theme at the moment but I&#8217;ll create a custom one soon, if only just to get rid of the horrible justified text!</p>
<p> </p>
]]></content:encoded>
			<wfw:commentRss>http://cameronyule.com/2008/04/moved-to-wordpress/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Finding large files on your OS X system</title>
		<link>http://cameronyule.com/2008/01/finding-large-files-on-your-os-x-system</link>
		<comments>http://cameronyule.com/2008/01/finding-large-files-on-your-os-x-system#comments</comments>
		<pubDate>Wed, 16 Jan 2008 09:42:26 +0000</pubDate>
		<dc:creator>Cameron</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[grand perspective]]></category>
		<category><![CDATA[open source]]></category>
		<category><![CDATA[os x]]></category>

		<guid isPermaLink="false">http://cameronyule.com/?p=6</guid>
		<description><![CDATA[Discovered a handy open–source application for OS X on Sourceforge last night called Grand Perspective, which allows you to create a visualisation of the relative size of your files. You can specify a specific folder or your entire disk and the program will scan all your files and create an interactive graphic that lets you identify [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://cameronyule.com/wp-content/uploads/2008/11/picture-1.png"><img src="http://cameronyule.com/wp-content/uploads/2008/11/picture-1-371x299.png" alt="" title="Grand Perspectiv" width="371" height="299" class="alignnone size-medium wp-image-343" /></a></p>
<p>Discovered a handy open–source application for OS X on Sourceforge last night called <a href="http://grandperspectiv.sourceforge.net/">Grand Perspective</a>, which allows you to create a visualisation of the relative size of your files. You can specify a specific folder or your entire disk and the program will scan all your files and create an interactive graphic that lets you identify what&#8217;s using the most space – great for finding things you’ve forgotten!</p>
]]></content:encoded>
			<wfw:commentRss>http://cameronyule.com/2008/01/finding-large-files-on-your-os-x-system/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
