<?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>GilesBathgate</title>
	<atom:link href="http://www.gilesbathgate.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.gilesbathgate.com</link>
	<description>Things I want to tell the world</description>
	<lastBuildDate>Sat, 21 Apr 2012 22:46:38 +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>Ownership Permissions of /var in Debian Squeeze</title>
		<link>http://www.gilesbathgate.com/2012/04/ownership-permissions-of-var-in-debian-squeeze/</link>
		<comments>http://www.gilesbathgate.com/2012/04/ownership-permissions-of-var-in-debian-squeeze/#comments</comments>
		<pubDate>Sat, 21 Apr 2012 20:53:13 +0000</pubDate>
		<dc:creator>Giles Bathgate</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://www.gilesbathgate.com/?p=850</guid>
		<description><![CDATA[Suppose you happen to accidentally do sudo chown -R www-data:www-data * whilst the current directory is /var. Now that&#8217;s a fairly daft thing to do! but we all make mistakes. There doesn&#8217;t seem to be an easy way to correct this other than restore a backup or look at another machine with a similar setup. [...]]]></description>
			<content:encoded><![CDATA[<p>Suppose you happen to accidentally do <code>sudo chown -R www-data:www-data *</code> whilst the current directory is <code>/var</code>. Now that&#8217;s a fairly daft thing to do! but we all make mistakes. There doesn&#8217;t seem to be an easy way to correct this other than restore a backup or look at another machine with a similar setup. Rather than having to restore a backup I looked at a machine with a similar setup, the machine has <strong>lighttpd</strong>, <strong>mysql</strong>, and <strong>sendmail</strong> installed on it so I built the following script based on the permissions with those packages installed on a fresh install of <a href="http://www.debian.org/releases/squeeze/">Debian Squeeze</a>    </p>
<p><code><br />
#!/bin/bash</p>
<p>echo "Setting Directory ownership" &#038;&#038;<br />
chown -R root:root /var &#038;&#038;<br />
chown -R man:root /var/cache/man &#038;&#038;<br />
chown -R www-data:www-data /var/cache/lighttpd &#038;&#038;<br />
chown -R libuuid:libuuid /var/lib/libuuid &#038;&#038;<br />
chown -R smmta:smmsp /var/lib/sendmail &#038;&#038;<br />
chown -R mysql:mysql /var/lib/mysql &#038;&#038;<br />
chown -R www-data:www-data /var/log/lighttpd &#038;&#038;<br />
chown -R mysql:adm /var/log/mysql &#038;&#038;<br />
chown -R www-data:www-data /var/run/lighttpd &#038;&#038;<br />
chown -R mysql:root /var/run/mysqld &#038;&#038;<br />
chown -R smmsp:smmsp /var/run/sendmail/msp &#038;&#038;<br />
chown -R smmta:smmsp /var/run/sendmail/mta &#038;&#038;<br />
chown -R smmta:smmsp /var/spool/mqueue &#038;&#038;<br />
chown -R smmsp:smmsp /var/spool/mqueue-client &#038;&#038;<br />
chown -R root:staff /var/local &#038;&#038;<br />
chown -R root:mail /var/mail &#038;&#038;<br />
chown -R root:smmta /var/run/sendmail &#038;&#038;<br />
chown -R root:smmsp /var/run/sendmail/stampdir &#038;&#038;<br />
chown -R root:crontab /var/spool/cron/crontabs &#038;&#038;<br />
chown -R www-data:www-data /var/www &#038;&#038;<br />
echo "Setting File ownership" &#038;&#038;<br />
chown root:smmsp /var/lib/sendmail/dead.letter &#038;&#038;<br />
chown root:adm \<br />
 /var/log/auth.log \<br />
 /var/log/boot \<br />
 /var/log/daemon.log \<br />
 /var/log/debug \<br />
 /var/log/dmesg* \<br />
 /var/log/fsck/checkfs \<br />
 /var/log/fsck/checkroot \<br />
 /var/log/kern.log \<br />
 /var/log/lpr.log \<br />
 /var/log/mail.err \<br />
 /var/log/mail.info \<br />
 /var/log/mail.log \<br />
 /var/log/mail.warn \<br />
 /var/log/messages \<br />
 /var/log/news/news.crit \<br />
 /var/log/news/news.err \<br />
 /var/log/news/news.notice \<br />
 /var/log/syslog \<br />
 /var/log/user.log &#038;&#038;<br />
chown root:utmp \<br />
 /var/log/lastlog \<br />
 /var/log/btmp \<br />
 /var/log/wtmp \<br />
 /var/run/utmp &#038;&#038;<br />
chown root:smmsp \<br />
 /var/run/sendmail/mta/smsocket \<br />
 /var/run/sendmail/stampdir/reload &#038;&#038;<br />
chown -f root:smmsp /var/run/sendmail/mta/sendmail.pid &#038;&#038;<br />
chown mysql:adm \<br />
 /var/log/mysql.err \<br />
 /var/log/musql.log &#038;&#038;<br />
chown -f mysql:adm /var/run/mysqld.pid &#038;&#038;<br />
echo "Done."<br />
</code></p>
<p>In addition you will need to set the ownership permissions of <code>/var/spool/cron/crontabs/&lt;user&gt;</code> and <code>/var/mail/&lt;user&gt;</code> depending on the users on the system.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.gilesbathgate.com/2012/04/ownership-permissions-of-var-in-debian-squeeze/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Nutrition Information Calculator</title>
		<link>http://www.gilesbathgate.com/2012/04/nutrition-information-calculator/</link>
		<comments>http://www.gilesbathgate.com/2012/04/nutrition-information-calculator/#comments</comments>
		<pubDate>Fri, 06 Apr 2012 16:09:35 +0000</pubDate>
		<dc:creator>Giles Bathgate</dc:creator>
				<category><![CDATA[Health & Fitness]]></category>
		<category><![CDATA[Nutrition]]></category>

		<guid isPermaLink="false">http://www.gilesbathgate.com/?p=819</guid>
		<description><![CDATA[Often food in the United Kingdom is labelled with nutrition infomation per 100g. This handy calculator allows you to calculate the values if you eat the whole lot! or a smaller portion of it for that matter. Nutrition Information Per 100g Per g serving Energy kcal kcal Protein g g Carbohydrate g g   (of which [...]]]></description>
			<content:encoded><![CDATA[<p><script type="text/javascript">// <![CDATA[
    function updateNutrition() { box=document.forms.nutrition; serving=parseFloat(box.serving.value); factor=serving/100; cal=box.cal100.value*factor; prot=box.prot100.value*factor; carb=box.carb100.value*factor; carbSug=box.carbSug100.value*factor; fat=box.fat100.value*factor; fatSat=box.fatSat100.value*factor; fibre=box.fibre100.value*factor; sodium=box.sodium100.value*factor; box.cal.value=cal.toFixed(); box.prot.value=prot.toFixed(1); box.carb.value=carb.toFixed(1); box.carbSug.value=carbSug.toFixed(1); box.fat.value=fat.toFixed(1); box.fatSat.value=fatSat.toFixed(1); box.fibre.value=fibre.toFixed(1); box.sodium.value=sodium.toFixed(1); }
// ]]&gt;</script><br />
Often food in the United Kingdom is labelled with nutrition infomation per 100g. This handy calculator allows you to calculate the values if you eat the whole lot! or a smaller portion of it for that matter.</p>
<form name="nutrition">
<h1><strong>Nutrition Information</strong></h1>
<table border="0">
<tbody>
<tr>
<td></td>
<td>Per 100g</td>
<td>Per</p>
<input type="text" name="serving" size="3" />g<br />
serving</td>
</tr>
<tr>
<td>Energy</td>
<td>
<input type="text" name="cal100" size="5" />kcal</td>
<td>
<input style="background-color: lightgrey;" type="text" name="cal" readonly="readonly" size="5" />kcal</td>
</tr>
<tr>
<td>Protein</td>
<td>
<input type="text" name="prot100" size="5" />g</td>
<td>
<input style="background-color: lightgrey;" type="text" name="prot" readonly="readonly" size="5" />g</td>
</tr>
<tr>
<td>Carbohydrate</td>
<td>
<input type="text" name="carb100" size="5" />g</td>
<td>
<input style="background-color: lightgrey;" type="text" name="carb" readonly="readonly" size="5" />g</td>
</tr>
<tr>
<td>  (of which sugars)</td>
<td>
<input type="text" name="carbSug100" size="5" />g</td>
<td>
<input style="background-color: lightgrey;" type="text" name="carbSug" readonly="readonly" size="5" />g</td>
</tr>
<tr>
<td>Fat</td>
<td>
<input type="text" name="fat100" size="5" />g</td>
<td>
<input style="background-color: lightgrey;" type="text" name="fat" readonly="readonly" size="5" />g</td>
</tr>
<tr>
<td>  (of which saturates)</td>
<td>
<input type="text" name="fatSat100" size="5" />g</td>
<td>
<input style="background-color: lightgrey;" type="text" name="fatSat" readonly="readonly" size="5" />g</td>
</tr>
<tr>
<td class="titles">Fibre</td>
<td>
<input type="text" name="fibre100" size="5" />g</td>
<td>
<input style="background-color: lightgrey;" type="text" name="fibre" readonly="readonly" size="5" />g</td>
</tr>
<tr>
<td>Sodium</td>
<td>
<input type="text" name="sodium100" size="5" />g</td>
<td>
<input style="background-color: lightgrey;" type="text" name="sodium" readonly="readonly" size="5" />g</td>
</tr>
<tr>
<td></td>
<td></td>
<td><button onclick="updateNutrition()" type="button">Update</button></td>
</tr>
</tbody>
</table>
</form>
]]></content:encoded>
			<wfw:commentRss>http://www.gilesbathgate.com/2012/04/nutrition-information-calculator/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Meddeling with Mendel</title>
		<link>http://www.gilesbathgate.com/2012/03/meddeling-with-mendel/</link>
		<comments>http://www.gilesbathgate.com/2012/03/meddeling-with-mendel/#comments</comments>
		<pubDate>Sat, 24 Mar 2012 18:52:12 +0000</pubDate>
		<dc:creator>Giles Bathgate</dc:creator>
				<category><![CDATA[Reprap]]></category>
		<category><![CDATA[Electronics]]></category>
		<category><![CDATA[RepRap]]></category>

		<guid isPermaLink="false">http://www.gilesbathgate.com/?p=790</guid>
		<description><![CDATA[Its been nearly a year and a half since I last posted about my Reprap Mendel.  I haven&#8217;t actually made any progress building it either! This is because I got side tracked with other things including developing RapCAD Well recently I have taken interest again and started meddling with my Mendel. The first outstanding task [...]]]></description>
			<content:encoded><![CDATA[<p>Its been nearly a year and a half since I last posted about my Reprap Mendel.  I haven&#8217;t actually made any progress building it either! This is because I got side tracked with other things including developing <a href="http://www.rapcad.org">RapCAD</a><a href="http://www.gilesbathgate.com/wordpress/wp-content/uploads/2012/03/IMAG0406-e1332448390628.jpg"><img class="alignright size-medium wp-image-798" title="IMAG0406" src="http://www.gilesbathgate.com/wordpress/wp-content/uploads/2012/03/IMAG0406-e1332448390628-300x169.jpg" alt="" width="300" height="169" /></a><br />
Well recently I have taken interest again and started meddling with my Mendel. The first outstanding task was to solder the voltage reg and capacitor to the motherboard. I didn&#8217;t much like the official reprap solution of powering the motherboard entirely via the usb port! so rather than add a jump wire between the comms port and the 5v track I instead used a spare track to connect a power connector at J4. This still leaves J1 J2 and J3 to be used for additional extruder&#8217;s.<br />
<a href="http://www.gilesbathgate.com/wordpress/wp-content/uploads/2012/03/IMAG0407.jpg"><img class="alignleft size-medium wp-image-800" title="IMAG0407" src="http://www.gilesbathgate.com/wordpress/wp-content/uploads/2012/03/IMAG0407-300x169.jpg" alt="" width="300" height="169" /></a> The motherboard will be powered instead from my previously <a href="2010/11/neat-hack-to-atx-power-supply/">hacked ATX power supply</a> which will provide 0v 5v and 12v via the XLR connections. For some reason the official reprap uses these 3 wire connectors as well but doesn&#8217;t utilise the third wire. </p>
]]></content:encoded>
			<wfw:commentRss>http://www.gilesbathgate.com/2012/03/meddeling-with-mendel/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Revisited &#8211; make a DVD out of just about any video file.</title>
		<link>http://www.gilesbathgate.com/2011/10/make-a-dvd-out-of-just-about-anything-2/</link>
		<comments>http://www.gilesbathgate.com/2011/10/make-a-dvd-out-of-just-about-anything-2/#comments</comments>
		<pubDate>Tue, 25 Oct 2011 20:41:25 +0000</pubDate>
		<dc:creator>Giles Bathgate</dc:creator>
				<category><![CDATA[Computers]]></category>

		<guid isPermaLink="false">http://www.gilesbathgate.com/?p=744</guid>
		<description><![CDATA[I recently was asked to create a DVD from a .mov video file. I had already made a post about how to do this under windows using windows ports of various linux based applications. Coming back to it and this time running completely on linux, I have realised that it can be done much more [...]]]></description>
			<content:encoded><![CDATA[<p>I recently was asked to create a DVD from a .mov video file. I had already made <a href="/2007/11/make-a-dvd-out-of-just-about-anything">a post about how to do this</a> under windows using windows ports of various linux based applications. Coming back to it and this time running completely on linux, I have realised that it can be done much more simply.</p>
<p>The required software can be installed using</p>
<pre>sudo apt-get install ffmpeg dvdauthor growisofs</pre>
<p>First off the video file has to be transcoded into an dvd compatible mpeg2 file.</p>
<pre>ffmpeg -i &lt;input_file&gt; -aspect 16:9 -target pal-dvd output.mpg</pre>
<p>Then the file has to be authored into the correct VOB files using dvdauthor. To make sure that there are no errors in the process the following environment variable must be set. </p>
<pre>export VIDEO_FORMAT=PAL</pre>
<p>Rather than using an xml control file for simple DVD&#8217;s the following two dvdauthor commands will suffice.</p>
<pre>dvdauthor -o DVD/ -t output.mpg &#038;&#038;
dvdauthor -o DVD/ -T</pre>
<p>Finally the files are burned to DVD media using growisofs</p>
<pre>growisofs -dvd-compat -Z /dev/dvd -dvd-video -V "&lt;DVD_TITLE&gt;" ./DVD</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.gilesbathgate.com/2011/10/make-a-dvd-out-of-just-about-anything-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Neat hack to ATX power supply</title>
		<link>http://www.gilesbathgate.com/2010/11/neat-hack-to-atx-power-supply/</link>
		<comments>http://www.gilesbathgate.com/2010/11/neat-hack-to-atx-power-supply/#comments</comments>
		<pubDate>Sat, 13 Nov 2010 15:14:34 +0000</pubDate>
		<dc:creator>Giles Bathgate</dc:creator>
				<category><![CDATA[Reprap]]></category>
		<category><![CDATA[RepRap]]></category>

		<guid isPermaLink="false">http://www.gilesbathgate.com/?p=707</guid>
		<description><![CDATA[I have been progressing slowly with my reprap build, spending a little time here and there modifying the electronics so that the wiring is neater. There are some details on the reprap wiki about how hack an ATX power supply to give you a universal power supply. This is my sightly neater solution which is [...]]]></description>
			<content:encoded><![CDATA[<p>I have been progressing slowly with my reprap build, spending a little time here and there modifying the electronics so that the wiring is neater. There are some details on the <a href="http://reprap.org/wiki/PCPowerSupply">reprap wiki</a> about how hack an ATX power supply to give you a  universal power supply. This is my sightly neater solution which is specifically suited to reprap only.</p>
<p><a href="http://www.gilesbathgate.com/wordpress/wp-content/uploads/2010/11/IMAG0138.jpg"><img class="aligncenter size-medium wp-image-716" title="IMAG0138" src="http://www.gilesbathgate.com/wordpress/wp-content/uploads/2010/11/IMAG0138-300x179.jpg" alt="" width="300" height="179" /></a></p>
<p>With minimal filing the standard ATX power supply grommet hole can be opened out to fit a standard XLR socket. I used a female socket as opposed to the male socket mounted on the reprap. This is standard practice and ensures that the pins of the socket cannot be touched if the connector is removed. In general the live end is protected and the cold end is not.     </p>
]]></content:encoded>
			<wfw:commentRss>http://www.gilesbathgate.com/2010/11/neat-hack-to-atx-power-supply/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Hobbed M4 Insert</title>
		<link>http://www.gilesbathgate.com/2010/11/hobbed-m4-insert/</link>
		<comments>http://www.gilesbathgate.com/2010/11/hobbed-m4-insert/#comments</comments>
		<pubDate>Mon, 08 Nov 2010 22:52:06 +0000</pubDate>
		<dc:creator>Giles Bathgate</dc:creator>
				<category><![CDATA[Reprap]]></category>
		<category><![CDATA[RepRap]]></category>

		<guid isPermaLink="false">http://www.gilesbathgate.com/?p=693</guid>
		<description><![CDATA[After a few helpful comments I was pointed in the right direction for drilling a hole down the middle of my hobbed M4 insert. Unfortunately I didn&#8217;t have a drill vice, so I used my trusty Block&#8217;o'Wood and a fair amount of extra caution instead. It really is amazing how well this technique works, the [...]]]></description>
			<content:encoded><![CDATA[<p>After a few helpful comments I was pointed in the <a href="http://vik-olliver.blogspot.com/2010/02/drilling-down-middle.html">right direction</a> for drilling a hole down the middle of my hobbed M4 insert. Unfortunately I didn&#8217;t have a drill vice, so I used my trusty Block&#8217;o'Wood and a fair amount of extra caution instead.</p>
<p><a href="http://www.gilesbathgate.com/wordpress/wp-content/uploads/2010/11/IMAG0135.jpg"><img src="http://www.gilesbathgate.com/wordpress/wp-content/uploads/2010/11/IMAG0135-300x179.jpg" alt="" title="IMAG0135" width="300" height="179" class="aligncenter size-medium wp-image-708" /></a>  </p>
<p>It really is amazing how well this technique works, the drill bit doesn&#8217;t have to be perfectly centered but because the work piece is spinning around a central axis its near impossible <strong>not</strong> to get the hole dead centre. I guess this is why a metal lathe has the drill bit set-up in the tail-stock.</p>
<p>Here is the hobbed insert with the central hole:</p>
<p><a href="http://www.gilesbathgate.com/wordpress/wp-content/uploads/2010/11/IMAG0137.jpg"><img src="http://www.gilesbathgate.com/wordpress/wp-content/uploads/2010/11/IMAG0137-300x179.jpg" alt="" title="IMAG0137" width="300" height="179" class="aligncenter size-medium wp-image-709" /></a></p>
<p>I am very pleased with the result, as it runs nice and true when rotated. All I have to do now is drill the M3 grub screw hole.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.gilesbathgate.com/2010/11/hobbed-m4-insert/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Announcing RapCAD</title>
		<link>http://www.gilesbathgate.com/2010/10/announcing-rapcad/</link>
		<comments>http://www.gilesbathgate.com/2010/10/announcing-rapcad/#comments</comments>
		<pubDate>Wed, 27 Oct 2010 19:04:01 +0000</pubDate>
		<dc:creator>Giles Bathgate</dc:creator>
				<category><![CDATA[Reprap]]></category>

		<guid isPermaLink="false">http://www.gilesbathgate.com/?p=697</guid>
		<description><![CDATA[RapCAD is a new script based CAD IDE especially for RepRap printers. Read more over at rapcad.org]]></description>
			<content:encoded><![CDATA[<p>RapCAD is a new script based CAD IDE especially for RepRap printers. Read more over at <a href="http://www.rapcad.org">rapcad.org</a><br />
<a href="http://www.rapcad.org"><img src="http://www.gilesbathgate.com/wordpress/wp-content/uploads/2010/10/rapcad-org-300x224.png" alt="" title="rapcad-org" width="300" height="224" class="aligncenter size-medium wp-image-703" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.gilesbathgate.com/2010/10/announcing-rapcad/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What to do when you get bored&#8230;</title>
		<link>http://www.gilesbathgate.com/2010/10/what-to-do-when-you-get-bored/</link>
		<comments>http://www.gilesbathgate.com/2010/10/what-to-do-when-you-get-bored/#comments</comments>
		<pubDate>Tue, 26 Oct 2010 18:04:29 +0000</pubDate>
		<dc:creator>Giles Bathgate</dc:creator>
				<category><![CDATA[Reprap]]></category>

		<guid isPermaLink="false">http://www.gilesbathgate.com/?p=680</guid>
		<description><![CDATA[When I get bored of waiting for someone else to do something I sometimes end up having a go at doing it myself. The hobbed insert in my previous post is no exception Below is my setup using a drill stand. The 12mm round brass bar is held using a U-Shaped wooden clamp that mounts [...]]]></description>
			<content:encoded><![CDATA[<p>When I get bored of waiting for someone else to do something I sometimes end up having a go at doing it myself. The hobbed insert in my <a href="http://www.gilesbathgate.com/2010/10/progress/">previous post</a> is no exception</p>
<p><a href="http://www.gilesbathgate.com/wordpress/wp-content/uploads/2010/10/IMAG0126.jpg"><img class="aligncenter size-medium wp-image-682" title="IMAG0126" src="http://www.gilesbathgate.com/wordpress/wp-content/uploads/2010/10/IMAG0126-300x179.jpg" alt="" width="300" height="179" /></a></p>
<p><a href="http://www.gilesbathgate.com/wordpress/wp-content/uploads/2010/10/IMAG0127.jpg"><img class="aligncenter size-medium wp-image-683" title="IMAG0127" src="http://www.gilesbathgate.com/wordpress/wp-content/uploads/2010/10/IMAG0127-300x179.jpg" alt="" width="300" height="179" /></a></p>
<p>Below is my setup using a drill stand. The 12mm round brass bar is held using a U-Shaped wooden clamp that mounts some 6901ZZ bearings, with an ID of 12mm and an OD of 24mm. I created some dimples on the 12mm brass bar with a punch to create an interference fit in the bearings. This stops things sliding around whilst doing the hobbing. One advantage of the drill stand (which is normally a disadvantage) is that it can swivel around the support pillar. So I was able to push the M3.5 tap closer and closer to the brass bar by pulling the handle to clockwise.<br />
<a href="http://www.gilesbathgate.com/wordpress/wp-content/uploads/2010/10/IMAG0125.jpg"><img class="aligncenter size-medium wp-image-681" title="IMAG0125" src="http://www.gilesbathgate.com/wordpress/wp-content/uploads/2010/10/IMAG0125-179x300.jpg" alt="" width="179" height="300" /></a></p>
<p>The next problem is how to drill a hole perfectly central down the middle for an m4 tap, again without a lathe. In the meantime the Conrad M4 Inserts have arrived in the worlds most ridiculously over sized box:</p>
<p><a href="http://www.gilesbathgate.com/wordpress/wp-content/uploads/2010/10/IMAG0124.jpg"><img class="aligncenter size-medium wp-image-694" title="IMAG0124" src="http://www.gilesbathgate.com/wordpress/wp-content/uploads/2010/10/IMAG0124-300x179.jpg" alt="" width="300" height="179" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.gilesbathgate.com/2010/10/what-to-do-when-you-get-bored/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Server Migration</title>
		<link>http://www.gilesbathgate.com/2010/10/server-migration/</link>
		<comments>http://www.gilesbathgate.com/2010/10/server-migration/#comments</comments>
		<pubDate>Sat, 23 Oct 2010 18:07:40 +0000</pubDate>
		<dc:creator>Giles Bathgate</dc:creator>
				<category><![CDATA[Computers]]></category>

		<guid isPermaLink="false">http://www.gilesbathgate.com/?p=673</guid>
		<description><![CDATA[I have just completed a successful migration of gilesbathgate.com to a new server. Some headaches were importing the mysql data via the commandline (I gave up in the end and used phpMyAdmin) also lighttpd rewrite rules triped me up, and I forgot to install php5-gd for my wavatars support. But appart from that the migration [...]]]></description>
			<content:encoded><![CDATA[<p>I have just completed a successful migration of <a href="http://www.gilesbathgate.com" target="_self">gilesbathgate.com</a> to a new server. Some headaches were importing the mysql data via the commandline (I gave up in the end and used <a href="http://www.phpmyadmin.net/home_page/index.php">phpMyAdmin</a>) also lighttpd rewrite rules triped me up, and I forgot to install php5-gd for my <a href="http://www.shamusyoung.com/twentysidedtale/?p=1462">wavatars</a> support. But appart from that the migration was seemless, I am sure no one even noticed.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.gilesbathgate.com/2010/10/server-migration/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Progress</title>
		<link>http://www.gilesbathgate.com/2010/10/progress/</link>
		<comments>http://www.gilesbathgate.com/2010/10/progress/#comments</comments>
		<pubDate>Sat, 16 Oct 2010 15:20:33 +0000</pubDate>
		<dc:creator>Giles Bathgate</dc:creator>
				<category><![CDATA[Reprap]]></category>

		<guid isPermaLink="false">http://www.gilesbathgate.com/?p=657</guid>
		<description><![CDATA[I will keep this short and sweet since most of you (in the reprap community) have probably already seen posts like this time and time again. So basically here is a few snapshots of my build progress Everything went together fairly easily, there were a few minor errors in the assembly instructions which I corrected. [...]]]></description>
			<content:encoded><![CDATA[<p>I will keep this short and sweet since most of you (in the reprap community) have probably already seen posts like this time and time again. So basically here is a few snapshots of my build progress</p>
<p><a href="http://www.gilesbathgate.com/wordpress/wp-content/uploads/2010/10/IMAG0115.jpg"><img class="aligncenter size-medium wp-image-658" title="IMAG0115" src="http://www.gilesbathgate.com/wordpress/wp-content/uploads/2010/10/IMAG0115-300x179.jpg" alt="" width="300" height="179" /></a></p>
<p><a href="http://www.gilesbathgate.com/wordpress/wp-content/uploads/2010/10/IMAG0118.jpg"><img class="aligncenter size-medium wp-image-659" title="IMAG0118" src="http://www.gilesbathgate.com/wordpress/wp-content/uploads/2010/10/IMAG0118-300x179.jpg" alt="" width="300" height="179" /></a></p>
<p><a href="http://www.gilesbathgate.com/wordpress/wp-content/uploads/2010/10/IMAG0120.jpg"><img class="aligncenter size-medium wp-image-660" title="IMAG0120" src="http://www.gilesbathgate.com/wordpress/wp-content/uploads/2010/10/IMAG0120-300x179.jpg" alt="" width="300" height="179" /></a></p>
<p>Everything went together fairly easily, there were a few minor errors in the <a href="http://reprap.org/wiki/Mechanical_construction">assembly instructions</a> which I corrected. The only trouble I had was with Adrian&#8217;s geared extruder driver. The base has countersunk holes to fit the heads of M4 bolts, however they were not big enough and reaming them out to 7mm I almost drilled right through. I also felt that the extruder design in general was a bit &#8220;bitty&#8221; and so I am re-designing the thing from scratch. Here is a sneak peek</p>
<p><a href="http://www.gilesbathgate.com/wordpress/wp-content/uploads/2010/10/Extruder-Base.png"><img class="aligncenter size-medium wp-image-661" title="Extruder-Base" src="http://www.gilesbathgate.com/wordpress/wp-content/uploads/2010/10/Extruder-Base-300x205.png" alt="" width="300" height="205" /></a><br />
The following view shows the lower half of my redesign of the axle mount, it fully encapsulates the bearing rather than having them floating free. (The image shows two separate parts which would be bolted together)<br />
<a href="http://www.gilesbathgate.com/wordpress/wp-content/uploads/2010/10/Lower-axle-mount.png"><img class="aligncenter size-medium wp-image-662" title="Lower-axle-mount" src="http://www.gilesbathgate.com/wordpress/wp-content/uploads/2010/10/Lower-axle-mount-300x208.png" alt="" width="300" height="208" /></a></p>
<p>I am intending to also use my internal teeth <a href="http://www.thingiverse.com/thing:3847">gear concept</a> with this design</p>
<p><a href="http://www.gilesbathgate.com/wordpress/wp-content/uploads/2010/10/internal-gear.png"><img class="aligncenter size-medium wp-image-664" title="internal-gear" src="http://www.gilesbathgate.com/wordpress/wp-content/uploads/2010/10/internal-gear-300x205.png" alt="" width="300" height="205" /></a></p>
<p>I also designed a <a href="http://reprap.org/wiki/Extruder_Driver_Variations">hobbed m4 insert</a><br />
<a href="http://www.gilesbathgate.com/wordpress/wp-content/uploads/2010/10/hobbed_insert.png"><img class="aligncenter size-medium wp-image-663" title="hobbed_insert" src="http://www.gilesbathgate.com/wordpress/wp-content/uploads/2010/10/hobbed_insert-300x154.png" alt="" width="300" height="154" /></a></p>
<p>The hobbed insert will soon be available to buy courtesy of <a title="http://myworld.ebay.co.uk/raysyu" rel="nofollow" href="http://myworld.ebay.co.uk/raysyu">raysu</a> in his ebay shop. Price is currently TBC, but he offers <a title="http://cgi.ebay.co.uk/180570165328" rel="nofollow" href="http://cgi.ebay.co.uk/180570165328">similar items</a> at around $8.50</p>
]]></content:encoded>
			<wfw:commentRss>http://www.gilesbathgate.com/2010/10/progress/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
	</channel>
</rss>

