<?xml version="1.0"?>
<rss version="2.0">

<channel>
	<title>Planet BitFolk</title>
	<link>http://planet.bitfolk.com/</link>
	<language>en</language>
	<description>Planet BitFolk - http://planet.bitfolk.com/</description>

<item>
	<title>Andy Loughran (andylockran): Back up to Ubuntu server using Time Machine with OS X Lion 10.7</title>
	<guid>http://zrmt.com/?p=1638</guid>
	<link>http://zrmt.com/2012/02/05/back-up-to-ubuntu-server-using-time-machine-with-os-x-lion-10-7/</link>
	<description>&lt;p&gt;&lt;a href=&quot;http://zrmt.com/wp-content/uploads/2012/02/TimeMachine.png&quot;&gt;&lt;img class=&quot;alignright  wp-image-1639&quot; title=&quot;TimeMachine&quot; src=&quot;http://zrmt.com/wp-content/uploads/2012/02/TimeMachine-300x300.png&quot; alt=&quot;&quot; width=&quot;189&quot; height=&quot;189&quot; /&gt;&lt;/a&gt;I recently put my mind to tackling the problem that had been plaguing mine and my fiancés MacBook Pros: backups.&lt;/p&gt;
&lt;p&gt;We both have files held on our systems that we simply can&amp;#8217;t afford to lose. We also work wirelessly. For those reasons Apple&amp;#8217;s TimeMachine seemed like a really good option. However, at the £250GBP price tag and already having a home server, a bespoke solution appealed to both the geek and cost-saver in me.&lt;/p&gt;
&lt;p&gt;After collating information from several different sources, please find below the steps required to setup and configure an Ubuntu instance to take backups from your Mac via TimeMachine:&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Download netatalk 2.2 &lt;/strong&gt;(The version held in Ubuntu repositories is 2.1 and Lion requires 2.2)&lt;/p&gt;
&lt;p&gt;Natty i386: https://launchpad.net/~stefanor/+archive/ppa/+files/netatalk_2.2.0-0ppa2~natty1_i386.deb&lt;br /&gt;
Natty amd64: https://launchpad.net/~stefanor/+archive/ppa/+files/netatalk_2.2.0-0ppa2~natty1_amd64.deb&lt;br /&gt;
(Others here: https://launchpad.net/~stefanor/+archive/ppa/+packages)&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Install netatalk&lt;br /&gt;
&lt;/strong&gt;via dpkg -i &amp;lt;netatalk package name&amp;gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Edit /etc/netatalk/afpd.conf&lt;br /&gt;
&lt;/strong&gt;The only line you want: &amp;#8220;- -udp -noddp -uamlist uams_randnum.so,uams_dhx.so,uams_dhx2.so -nosavepassword&amp;#8221;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Edit /etc/netatalk/AppleVolumes.default&lt;br /&gt;
&lt;/strong&gt;Remove the default line for ~/ (if it exists) by commenting it out (a # should do). Add a new line: &amp;#8220;~/.TimeMachine &amp;#8220;$u Backup&amp;#8221; allow:jamesanslow cnidscheme:dbd options:usedots,upriv,tm&amp;#8221; &amp;#8211; REPLACING &amp;#8220;jamesanslow&amp;#8221; with YOUR server username.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Create your Timeachine directory&lt;br /&gt;
&lt;/strong&gt;mkdir ~/.TimeMachine should do it fine&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Edit /etc/netatalk/netatalk.conf&lt;br /&gt;
&lt;/strong&gt;Add/append/uncomment/leave the same the following important lines to:&lt;br /&gt;
ATALK_NAME=`echo ${HOSTNAME}|cut -d. -f1`&lt;br /&gt;
ATALK_UNIX_CHARSET=&amp;#8217;LOCALE&amp;#8217;&lt;br /&gt;
ATALK_MAC_CHARSET=&amp;#8217;MAC_ROMAN&amp;#8217;&lt;br /&gt;
export ATALK_UNIX_CHARSET&lt;br /&gt;
export ATALK_MAC_CHARSET&lt;br /&gt;
CNID_METAD_RUN=yes&lt;br /&gt;
AFPD_RUN=yes&lt;br /&gt;
AFPD_MAX_CLIENTS=20&lt;br /&gt;
ATALKD_RUN=no&lt;br /&gt;
PAPD_RUN=no&lt;br /&gt;
TIMELORD_RUN=no&lt;br /&gt;
A2BOOT_RUN=no&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Create a new file in /etc/avahi/services/afpd.service&lt;br /&gt;
&lt;/strong&gt;Copying in the following:&lt;br /&gt;
&amp;lt;?xml version=&amp;#8221;1.0&amp;#8243; standalone=&amp;#8217;no&amp;#8217;?&amp;gt;&amp;lt;!&amp;#8211;*-nxml-*&amp;#8211;&amp;gt;&lt;br /&gt;
&amp;lt;!DOCTYPE service-group SYSTEM &amp;#8220;avahi-service.dtd&amp;#8221;&amp;gt;&lt;br /&gt;
&amp;lt;service-group&amp;gt;&lt;br /&gt;
&amp;lt;name replace-wildcards=&amp;#8221;yes&amp;#8221;&amp;gt;%h&amp;lt;/name&amp;gt;&lt;br /&gt;
&amp;lt;service&amp;gt;&lt;br /&gt;
&amp;lt;type&amp;gt;_afpovertcp._tcp&amp;lt;/type&amp;gt;&lt;br /&gt;
&amp;lt;port&amp;gt;548&amp;lt;/port&amp;gt;&lt;br /&gt;
&amp;lt;/service&amp;gt;&lt;br /&gt;
&amp;lt;service&amp;gt;&lt;br /&gt;
&amp;lt;type&amp;gt;_device-info._tcp&amp;lt;/type&amp;gt;&lt;br /&gt;
&amp;lt;port&amp;gt;0&amp;lt;/port&amp;gt;&lt;br /&gt;
&amp;lt;txt-record&amp;gt;model=Xserve&amp;lt;/txt-record&amp;gt;&lt;br /&gt;
&amp;lt;/service&amp;gt;&lt;br /&gt;
&amp;lt;/service-group&amp;gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Restart netatalk:&lt;br /&gt;
&lt;/strong&gt;sudo /etc/init.d/netatalk restart&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Connect to your server from your mac&lt;br /&gt;
&lt;/strong&gt;Go to Finder and your server should appear in the left hand side. If not, CMD+K to manual connect.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Create your sparse backup file&lt;br /&gt;
&lt;/strong&gt;Open up a terminal on your Mac. Move (cd) to the folder where your server&amp;#8217;s mounted. This should be /Volumes/&amp;lt;username&amp;gt; Backup. So for me that would be &amp;#8220;/Volumes/jamesanslow Backup&amp;#8221;. Then run this command to create your backup file (replacing 512g with the size you&amp;#8217;d like your TimeMachine to be in Gigabytes):&lt;/p&gt;
&lt;p&gt;hdiutil create -size 512g -fs HFS+J -volname &amp;#8220;Time Machine&amp;#8221; `grep -A1 LocalHostName /Library/Preferences/SystemConfiguration/preferences.plist | tail -n1 | awk &amp;#8216;BEGIN { FS = &amp;#8220;|&amp;#8221; } ; { print $2 }&amp;#8217;`_`ifconfig en0 | grep ether | awk &amp;#8216;BEGIN { FS = &amp;#8220;:&amp;#8221; } ; {print $1$2$3$4$5$6}&amp;#8217; | awk {&amp;#8216;print $2&amp;#8242;}`.sparsebundle&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Configure OS X to show all types of media for use in TimeMachine&lt;br /&gt;
&lt;/strong&gt;Set OS X to show all types of media, such as ours by running this command in the terminal:&lt;/p&gt;
&lt;p&gt;defaults write com.apple.systempreferences TMShowUnsupportedNetworkVolumes 1&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Go for it. Open up TimeMachine, select your network TimeMachine instance and get backing up!&lt;/strong&gt;&lt;/p&gt;
 &lt;p&gt;&lt;a href=&quot;http://zrmt.com/?flattrss_redirect&amp;id=1638&amp;md5=a19c074619003bd838f061a8ed3eca7a&quot; title=&quot;Flattr&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://zrmt.com/wp-content/plugins/flattr/img/flattr-badge-large.png&quot; alt=&quot;flattr this!&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description>
	<pubDate>Sun, 05 Feb 2012 22:16:42 +0000</pubDate>
</item>
<item>
	<title>Tony Whitmore (tonytiger): Ubuntu Podcast, Season 5</title>
	<guid>http://tonywhitmore.co.uk/blog/?p=1321</guid>
	<link>http://tonywhitmore.co.uk/blog/2012/02/04/ubuntu-podcast-season-5/</link>
	<description>&lt;p&gt;We&amp;#8217;re going out for the Planning Curry for season five of the &lt;a href=&quot;http://podcast.ubuntu-uk.org&quot;&gt;Ubuntu Podcast&lt;/a&gt; this week. Over the years, it has become a tradition for all the presenters to go out for a curry before the start of the season. It&amp;#8217;s a time to catch up in person, as we haven&amp;#8217;t seen much of each other since the end of the last season. But it&amp;#8217;s also a chance to discuss any changes we want to make to the show and throw ideas for new segments around. So, if there&amp;#8217;s anything you&amp;#8217;d like to see in the new season, whether it&amp;#8217;s an idea for a segment or a change to something we already do, please let us know. You can leave a comment on this blog post or get in touch using any of the methods on the &lt;a href=&quot;http://podcast.ubuntu-uk.org/get-involved/&quot;&gt;show website&lt;/a&gt;. Thanks! &lt;img src=&quot;http://tonywhitmore.co.uk/blog/wp-includes/images/smilies/icon_smile.gif&quot; alt=&quot;:)&quot; class=&quot;wp-smiley&quot; /&gt; &lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://podcast.ubuntu-uk.org&quot;&gt;&lt;img class=&quot;aligncenter&quot; title=&quot;Ubuntu Podcast&quot; src=&quot;http://podcast.ubuntu-uk.org/wp-content/themes/uupc4/images/logo.png&quot; alt=&quot;Ubuntu Podcast&quot; width=&quot;266&quot; height=&quot;64&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description>
	<pubDate>Sat, 04 Feb 2012 16:01:42 +0000</pubDate>
</item>
<item>
	<title>Phil Spencer (CrazySpence): OpenParsec weekly update 2</title>
	<guid>http://www.philtopia.com/?p=1119</guid>
	<link>http://www.philtopia.com/?p=1119</link>
	<description>&lt;p&gt;&lt;strong&gt;Changes&lt;/strong&gt;:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Got homing missiles functioning correctly server side&lt;/li&gt;
&lt;li&gt;Fixed an issue client side to allow homing missiles to properly animate towards their targets&lt;/li&gt;
&lt;li&gt;Created a new RE_CREATEMINE event client side to handle mines since the EXTRA event is not allowed from clients&lt;/li&gt;
&lt;li&gt;Created handler server side for the RE_CREATEMINE&lt;/li&gt;
&lt;li&gt;Fixed bug where the mines detonated on drop&lt;/li&gt;
&lt;li&gt;Fixed bug where the client would not clean up its own mines upon detonation that was leaving ghost mines behind&lt;/li&gt;
&lt;li&gt;Fixed issue where chat always displayed local players name and not the name of the sender (turned out to be a huge PITA)&lt;/li&gt;
&lt;li&gt;Removed net.server command in favour of connect command&lt;/li&gt;
&lt;li&gt;Removed net.server menu item&lt;/li&gt;
&lt;li&gt;Made Connect button connect to spenced.com server as it is the only existing server at the moment&lt;/li&gt;
&lt;li&gt;Defaulted console mode to talk, all console commands require / now but talking does not require say&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;strong&gt;Known Criticals:&lt;/strong&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;If your client is laggy and requires a state sync the server or client may close with an ASSERTion&lt;/li&gt;
&lt;li&gt;Sometimes Mines may cause a client crash, has only happened a couple times&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Binaries are up to date with latest changes get them here: &lt;a href=&quot;http://spenced.com/~spencep/parsec/parsec-linux-bin.zip&quot;&gt;Linux&lt;/a&gt; and &lt;a href=&quot;http://spenced.com/~spencep/parsec/parsec-mac-bin.zip&quot;&gt;Mac&lt;/a&gt; if you need the game data it is &lt;a href=&quot;http://spenced.com/~spencep/parsec/parsecdata.zip&quot;&gt;here&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Another busy week of changes, almost all the items you are given by default on connect now work, the only thing left is the EMP which I will investigate next week. After I get that working I will look into the extra powerups such as the helix cannon or swarm missiles. Jason is continuing his work on a new SDL based client but it is still in the very early stages.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;
&lt;a href=&quot;http://www.philtopia.com/?attachment_id=1138&quot; title=&quot;upload3&quot;&gt;&lt;img width=&quot;150&quot; height=&quot;150&quot; src=&quot;http://www.philtopia.com/wp-uploads//2012/02/upload3-150x150.png&quot; class=&quot;attachment-thumbnail&quot; alt=&quot;upload3&quot; title=&quot;upload3&quot; /&gt;&lt;/a&gt;
&lt;a href=&quot;http://www.philtopia.com/?attachment_id=1137&quot; title=&quot;upload2&quot;&gt;&lt;img width=&quot;150&quot; height=&quot;150&quot; src=&quot;http://www.philtopia.com/wp-uploads//2012/02/upload2-150x150.png&quot; class=&quot;attachment-thumbnail&quot; alt=&quot;upload2&quot; title=&quot;upload2&quot; /&gt;&lt;/a&gt;
&lt;a href=&quot;http://www.philtopia.com/?attachment_id=1136&quot; title=&quot;upload1&quot;&gt;&lt;img width=&quot;150&quot; height=&quot;150&quot; src=&quot;http://www.philtopia.com/wp-uploads//2012/02/upload1-150x150.png&quot; class=&quot;attachment-thumbnail&quot; alt=&quot;upload1&quot; title=&quot;upload1&quot; /&gt;&lt;/a&gt;
&lt;a href=&quot;http://www.philtopia.com/?attachment_id=1135&quot; title=&quot;upload&quot;&gt;&lt;img width=&quot;150&quot; height=&quot;150&quot; src=&quot;http://www.philtopia.com/wp-uploads//2012/02/upload-150x150.png&quot; class=&quot;attachment-thumbnail&quot; alt=&quot;upload&quot; title=&quot;upload&quot; /&gt;&lt;/a&gt;
&lt;br /&gt;
&lt;/strong&gt;&lt;/p&gt;</description>
	<pubDate>Fri, 03 Feb 2012 22:54:26 +0000</pubDate>
</item>
<item>
	<title>Tony Whitmore (tonytiger): Amy and Andrew: Behind the scenes</title>
	<guid>http://tonywhitmore.co.uk/blog/?p=1208</guid>
	<link>http://tonywhitmore.co.uk/blog/2012/01/28/amy-and-andrew-behind-the-scenes/</link>
	<description>&lt;p&gt;I met Emma from &lt;a href=&quot;http://www.emmalappinflowers.com/&quot;&gt;Emma Lappin Flowers&lt;/a&gt; last summer, when I was asked to photograph a wedding to help with the launch of their new blog, &lt;a href=&quot;http://www.pottingshedpostcards.com/&quot;&gt;Postcards from the Potting Shed&lt;/a&gt;. The good news is that the site is now well and truly up and running. Emma included lots of my photographs in her recent &lt;a href=&quot;http://www.pottingshedpostcards.com/on-the-first-day-of-christmas/&quot;&gt;twelve days of Christmas&lt;/a&gt; series of posts, which was amazing to see. I&amp;#8217;ve carried on working with Emma, producing behind the scenes photographs and video of two more weddings. Emma has been incredibly supportive, giving me these opportunities to photograph her and her team at work, and I&amp;#8217;m very grateful. This weekend Emma e-mailed me with some very exciting news that I can&amp;#8217;t wait to share.&lt;/p&gt;
&lt;p&gt;Anyway, back to last summer. I met up with Emma and Amy at &lt;a href=&quot;http://www.lainstonhouse.com&quot;&gt;Lainston House Hotel&lt;/a&gt; near Winchester, a superbly impressive venue and a beautiful English country hotel. I could have shot there all day, there were so many little gardens, lawns, walls and even a crumbling old chapel just perfect for beautiful wedding photos. The wedding itself was stunningly decorated and we even got to see the bridal party before they left for the church. You can read more about this wedding on my &lt;a href=&quot;http://tonywhitmore.co.uk/weddings/2011/amy-and-andrew-behind-the-scenes&quot;&gt;wedding photography&lt;/a&gt; site.&lt;br /&gt;
&lt;a href=&quot;http://tonywhitmore.co.uk/weddings/wp-content/uploads/2011/07/IMG_6109.jpg&quot;&gt;&lt;img class=&quot;aligncenter size-full wp-image-77&quot; title=&quot;IMG_6109&quot; src=&quot;http://tonywhitmore.co.uk/weddings/wp-content/uploads/2011/07/IMG_6109.jpg&quot; alt=&quot;&quot; width=&quot;600&quot; height=&quot;400&quot; /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://tonywhitmore.co.uk/weddings/wp-content/uploads/2011/07/IMG_6317.jpg&quot;&gt;&lt;img class=&quot;aligncenter size-full wp-image-80&quot; title=&quot;IMG_6317&quot; src=&quot;http://tonywhitmore.co.uk/weddings/wp-content/uploads/2011/07/IMG_6317.jpg&quot; alt=&quot;&quot; width=&quot;600&quot; height=&quot;400&quot; /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://tonywhitmore.co.uk/weddings/wp-content/uploads/2011/07/IMG_6340.jpg&quot;&gt;&lt;img class=&quot;aligncenter size-full wp-image-87&quot; title=&quot;IMG_6340&quot; src=&quot;http://tonywhitmore.co.uk/weddings/wp-content/uploads/2011/07/IMG_6340.jpg&quot; alt=&quot;&quot; width=&quot;600&quot; height=&quot;600&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description>
	<pubDate>Sat, 28 Jan 2012 15:45:20 +0000</pubDate>
</item>
<item>
	<title>Phil Spencer (CrazySpence): OpenParsec weekly update</title>
	<guid>http://www.philtopia.com/?p=1109</guid>
	<link>http://www.philtopia.com/?p=1109</link>
	<description>&lt;p&gt;&lt;strong&gt;Changes&lt;/strong&gt;:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Tidied up the menus to a single 4 menu screen&lt;/li&gt;
&lt;li&gt;Removed Demo/p2p listing in side list, replaced with net.server syntax&lt;/li&gt;
&lt;li&gt;Mac client now uses pre packaged libs for ease of use&lt;/li&gt;
&lt;li&gt;Server now properly handles dumb fire missiles&lt;/li&gt;
&lt;li&gt;Client can now handle Remote events from server for the dumb fire missiles&lt;/li&gt;
&lt;li&gt;Server side collision model for dumb fire missiles implemented&lt;/li&gt;
&lt;li&gt;Split binaries/data into separate files &lt;a href=&quot;http://spenced.com/~spencep/parsec/parsecdata.zip&quot;&gt;parsecdata.zip&lt;/a&gt;, &lt;a href=&quot;http://spenced.com/~spencep/parsec/parsec-mac-bin.zip&quot;&gt;parsec-mac-bin.zip&lt;/a&gt;, &lt;a href=&quot;http://spenced.com/~spencep/parsec/parsec-linux-bin.zip&quot;&gt;parsec-linux-bin.zip&lt;/a&gt; for easier download updates&lt;/li&gt;
&lt;li&gt;Fixed bug with Missile collision system and now dumb fire and homing missiles can do damage&lt;/li&gt;
&lt;li&gt;Fixed issue with laser upgrades where the server wasn&amp;#8217;t recognizing the upgrade resulting in damage to other players always remaining level 0, now upgrade 1 and 2 work correctly&lt;/li&gt;
&lt;li&gt;Fixed issue with repair and energy boost not giving amount defined in server configuration&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;strong&gt;Known Criticals:&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;These issues have cropped up during play testing the client/server&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Remote clients dropping mines may abort, This is due to the client trying to execute a ship killed event when the server does not recognize mines so the death is invalid&lt;/li&gt;
&lt;li&gt;Firewalled users filtering UDP that interferes with Parsec may cause a rapid reconnect/disconnect event and the server aborts&lt;/li&gt;
&lt;li&gt;Invulnerability power up becomes permanent, the invulnerability power up has been disabled until corrected&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;It was a pretty successful week so far, it is starting to become a lot of fun, there was a 5 player battle mid week to test out the dumbfire rocket collisions. Currently the servers player limit is set to 16 I would like to try and max that out at some point.&lt;/p&gt;
&lt;p&gt;Jason W who made some of the original changes in 2004 has started working on the windows build. From my understanding he became horribly frustrated and may be working on creating an SDL user layer which would benefit and improve all 3 platforms. I will continue implementing the server one piece at a time and if you want to check in and have a fight feel free to download the files just keep in mind the mac client is exceptionally limited at the moment, linux however seems able to do fullscreen, mouse input and is generally more stable.&lt;/p&gt;
&lt;p&gt;If you decide to try it out the server is 212.13.194.182 This address will be changing hopefully very soon, the server just grabs the first IP (fixme) on startup currently, this one will be going away. I&amp;#8217;ll update this post if it happens before next weeks update.&lt;/p&gt;
&lt;p&gt;Stay tuned&lt;/p&gt;</description>
	<pubDate>Fri, 27 Jan 2012 23:59:18 +0000</pubDate>
</item>
<item>
	<title>Phil Spencer (CrazySpence): OpenParsec brought back to life</title>
	<guid>http://www.philtopia.com/?p=1107</guid>
	<link>http://www.philtopia.com/?p=1107</link>
	<description>&lt;p&gt;Ever hear of &lt;a href=&quot;http://www.parsec.org&quot; target=&quot;_blank&quot;&gt;Parsec&lt;/a&gt;? probably not, it was a hopeful Internet space shooter back in 1999-2001. The team developing it released a running demo version and 2 LAN builds and that&amp;#8217;s all the public ever really saw.&lt;/p&gt;
&lt;p&gt;In 2003 they released the source code!&lt;/p&gt;
&lt;p&gt;Then nothing happened.&lt;/p&gt;
&lt;p&gt;A couple times 1 or 2 people (myself included) tried to fiddle with the source but this usually ended in frustration and giving up.&lt;/p&gt;
&lt;p&gt;About a week ago I was searching for any sign of activity ANYWHERE regarding this and I found a mailing list from 2008. It turned out someone named Jason W had modified the source to some degree and had set up a linux build that worked better with the GNU tools than the original distribution and got a linux client to build. Turns out the SVN still worked for his branch and i tried it out myself. Sure enough it did work! I was back in.&lt;/p&gt;
&lt;p&gt;Then I took his code and made a mac x11 client out of it&lt;br /&gt;
Then I took the original server code and got it to build&lt;/p&gt;
&lt;p&gt;The server was fairly broken, it would crash out the second anyone fired anything other than a laser. I did some tweaking, properly defined some objects and I was able to get it to run pretty stable.&lt;/p&gt;
&lt;p&gt;Yesterday I had a 3 client match over the internet over the server and clients I had built, something that probably hasnt happened with this code in a long time.&lt;/p&gt;
&lt;p&gt;Also Jason W&amp;#8217;s interest has been captured again and he is working on getting the Windows build working again.&lt;/p&gt;
&lt;p&gt;Sure this is a very old project that technically died long ago, but in that time no one has created anything similar so it is worth a second look.&lt;/p&gt;
&lt;p&gt;Linux build: &lt;a href=&quot;http://spenced.com/~spencep/parsec/parsec-linux-net-alpha.tar.gz&quot;&gt;parsec-linux-net-alpha.tar.gz&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;This was made on Ubuntu, I have tested it on debian as well, other linux distro&amp;#8217;s success may vary depending on library naming.&lt;/p&gt;
&lt;p&gt;Mac x11 build: &lt;a href=&quot;http://spenced.com/~spencep/parsec/parsec-macx11-net-alpha.zip&quot;&gt;parsec-macx11-net-alpha.zip&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;This requires X11 installed , the resolution currently can&amp;#8217;t be changed&lt;/p&gt;
&lt;p&gt;Known Issues with clients:&lt;/p&gt;
&lt;p&gt;-The menu data is from the LAN build and some options do not work&lt;/p&gt;
&lt;p&gt;-Mac client does not do fullscreen or resolution changes&lt;/p&gt;
&lt;p&gt;-No joystick support on mac&lt;/p&gt;
&lt;p&gt;-Joystick support built in linux client but untested&lt;/p&gt;
&lt;p&gt;Current server limitations:&lt;/p&gt;
&lt;p&gt;-Missiles do not work (you can fire them but the server doesn&amp;#8217;t process them yet)&lt;/p&gt;
&lt;p&gt;-No helix cannon&lt;/p&gt;
&lt;p&gt;-No lightning gun&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;However, this is just the beginning and less than a weeks work&amp;#8230;And it&amp;#8217;s still fun even in this state&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;</description>
	<pubDate>Mon, 23 Jan 2012 03:36:23 +0000</pubDate>
</item>
<item>
	<title>BitFolk Issue Tracker: Panel - Feature #9 (Closed): Display list of referrals</title>
	<guid>http://tools.bitfolk.com/redmine/issues/9#change-125</guid>
	<link>http://tools.bitfolk.com/redmine/issues/9#change-125</link>
	<pubDate>Sun, 22 Jan 2012 06:18:10 +0000</pubDate>
</item>
<item>
	<title>BitFolk Issue Tracker: Panel - Feature #54 (Closed): Display details of IP addresses/networks assigned</title>
	<guid>http://tools.bitfolk.com/redmine/issues/54#change-124</guid>
	<link>http://tools.bitfolk.com/redmine/issues/54#change-124</link>
	<pubDate>Sun, 22 Jan 2012 06:17:48 +0000</pubDate>
</item>
<item>
	<title>BitFolk Issue Tracker: Panel - Feature #9 (Resolved): Display list of referrals</title>
	<guid>http://tools.bitfolk.com/redmine/issues/9#change-123</guid>
	<link>http://tools.bitfolk.com/redmine/issues/9#change-123</link>
	<description>&lt;p&gt;I am going to resolve this feature request now. If anyone has an issue with this information being disclosed then I completely understand and suggest that you contact support to have the referral removed.&lt;/p&gt;</description>
	<pubDate>Sun, 22 Jan 2012 06:14:46 +0000</pubDate>
</item>
<item>
	<title>Graham Bleach (gdb): What do we know about software development?</title>
	<guid>http://www.gdb.me/computing/citations-greg-wilson-cusec</guid>
	<link>http://www.gdb.me/computing/citations-greg-wilson-cusec.html</link>
	<description>&lt;p&gt;Just over thirteen years ago I finished an undergraduate degree in Physics and started working as a systems administrator. One of the tenets of science that I left behind was that claims require evidence. Robust evidence originates from repeatable, robustly designed experiments.&lt;/p&gt;

&lt;p&gt;Thinking back over the hundreds of occasions when someone has suggested using a new technology, technique or process I can think of fewer than five occasions when that suggestion was backed up by robust evidence. This is a pretty awful state of affairs; I call myself an engineer and yet I make the majority of decisions based on little more than anecdote, intuition and poorly controlled experimentation.&lt;/p&gt;

&lt;p&gt;Towards the end of last year, a colleague sent around a link to a talk [&lt;a href=&quot;http://vimeo.com/9270320&quot;&gt;video&lt;/a&gt; &lt;a href=&quot;http://www.slideshare.net/gvwilson/bits-of-evidence-2338367&quot;&gt;slides&lt;/a&gt;] given by &lt;a href=&quot;http://third-bit.com/&quot;&gt;Greg Wilson&lt;/a&gt; at CUSEC. It&amp;#8217;s called &lt;em&gt;Bits of Evidence: What we actually know about software development and why we believe it&amp;#8217;s true.&lt;/em&gt; It&amp;#8217;s about an hour long and outlines some areas where evidence exists and what it seems to mean.&lt;/p&gt;

&lt;p&gt;I&amp;#8217;m currently reading &lt;a href=&quot;http://shop.oreilly.com/product/9780596808303.do&quot;&gt;Making Software&lt;/a&gt;, the book mentioned in the talk. Almost every chapter has caused me to discard some folklore or has explained some of my previous experiences and intuitions. Most importantly, it&amp;#8217;s given me some hope that as an industry we can move on from anecdote-based engineering to evidence-based engineering.&lt;/p&gt;

&lt;p&gt;I made a list of the publications that are mentioned in the talk; some are time consuming to track down, especially if you don&amp;#8217;t have much experience in using academic search engines.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;&lt;a href=&quot;http://www.jameslindlibrary.org/illustrating/records/a-treatise-of-the-scurvy-in-three-parts-containing-an-inquiry/title_pages&quot;&gt;Lind (1753)&lt;/a&gt; A treatise of the scurvy&lt;/p&gt;
&lt;/li&gt;

&lt;li&gt;
&lt;p&gt;&lt;a href=&quot;http://www.ncbi.nlm.nih.gov/pmc/articles/PMC2085438/?tool=pmcentrez&quot;&gt;Doll &amp;amp; Hill (1954)&lt;/a&gt; The Mortality of Doctors in Relation to Their Smoking Habits, Br Med J. 1954 June 26; 1(4877): 1451–1455.&lt;/p&gt;
&lt;/li&gt;

&lt;li&gt;
&lt;p&gt;&lt;a href=&quot;http://jama.ama-assn.org/content/268/17/2420.extract&quot;&gt;Evidence-Based Medicine Working Group (1992)&lt;/a&gt; (paywall). A New Approach to Teaching the Practice of Medicine, JAMA 268 (17): 2420–5&lt;/p&gt;
&lt;/li&gt;

&lt;li&gt;
&lt;p&gt;&lt;a href=&quot;http://www.cochrane.org&quot;&gt;Cochrane Collection&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;

&lt;li&gt;
&lt;p&gt;&lt;a href=&quot;http://ieeexplore.ieee.org/xpl/freeabs_all.jsp?arnumber=5076452&quot;&gt;Fowler (2009)&lt;/a&gt; (paywall) A Pedagogical Framework for Domain-Specific Languages, Software, IEEE, Volume: 26 Issue:4&lt;/p&gt;
&lt;/li&gt;

&lt;li&gt;
&lt;p&gt;&lt;a href=&quot;http://dl.acm.org/citation.cfm?id=1095430.1081761&quot;&gt;Arunda &amp;amp; Easterbrook (2005)&lt;/a&gt; (paywall) Anchoring and adjustment in software estimation, ACM SIGSOFT Software Engineering Notes, Volume 30 Issue 5, September 2005. Read the &lt;a href=&quot;http://www.cs.utoronto.ca/~jaranda/pubs/MScThesis-JorgeAranda.pdf&quot;&gt;thesis&lt;/a&gt; instead.&lt;/p&gt;
&lt;/li&gt;

&lt;li&gt;
&lt;p&gt;&lt;a href=&quot;http://dl.acm.org/citation.cfm?id=362858&quot;&gt;Sackman, Erikson, Grant (1968)&lt;/a&gt; (paywall) Communications of the ACM, Volume 11 Issue 1, Jan. 1968&lt;/p&gt;
&lt;/li&gt;

&lt;li&gt;
&lt;p&gt;&lt;a href=&quot;http://www.mi.fu-berlin.de/w/Main/LutzPrechelt&quot;&gt;Lutz Prechelt&amp;#8217;s homepage&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;

&lt;li&gt;
&lt;p&gt;&lt;a href=&quot;http://dl.acm.org/citation.cfm?id=808430&quot;&gt;Boehm et al (1975)&lt;/a&gt; (paywall) Some experience with automated aids to the design of large-scale reliable software, ACM SIGPLAN Notices - International Conference on Reliable Software, Volume 10 Issue 6, June 1975&lt;/p&gt;
&lt;/li&gt;

&lt;li&gt;
&lt;p&gt;&lt;a href=&quot;http://www.apa.org/pubs/books/4316085.aspx&quot;&gt;Why Aren&amp;#8217;t More Women in Science? Ceci &amp;amp; Williams&lt;/a&gt; ISBN: 978-1-59147-485-2 &lt;a href=&quot;http://www.amazon.com/Why-Arent-More-Women-Science/dp/159147485X&quot;&gt;Amazon&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;

&lt;li&gt;
&lt;p&gt;&lt;a href=&quot;http://ieeexplore.ieee.org/xpl/freeabs_all.jsp?arnumber=1702600&quot;&gt;Woodfield (1979)&lt;/a&gt; (paywall) An Experiment on Unit Increase in Problem Complexity, Software Engineering, IEEE Transactions Volume: SE-5 Issue:2&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;&amp;#8230;the 25 percent increase in problem complexity results in a 100 percent increase in programming complexity.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;/li&gt;

&lt;li&gt;
&lt;p&gt;&lt;a href=&quot;http://ieeexplore.ieee.org/xpl/freeabs_all.jsp?arnumber=87283&quot;&gt;van Genutchen (1991)&lt;/a&gt; Why is software late? An empirical study of reasons for delay in software development, Software Engineering, IEEE Transactions Volume: 17 Issue:6&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;The two biggest causes of project failure are poor estimation and unstable requirements.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;/li&gt;

&lt;li&gt;
&lt;p&gt;[Thomas et. al (1997)] - Can&amp;#8217;t find this one&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;If more than 20-25% of a component has to be revised, it&amp;#8217;s better to rewrite it from scratch.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;/li&gt;

&lt;li&gt;
&lt;p&gt;&lt;a href=&quot;http://www.mfagan.com/pdfs/ibmfagan.pdf&quot;&gt;Fagan, 1997&lt;/a&gt; &amp;#8220;Design and Code inspections to reduce errors in program development&amp;#8221;. IBM Systems Journal 15 (3): pp. 182–211.&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;Rigorous inspections can remove 60-90% of errors before the first test is run.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;/li&gt;

&lt;li&gt;
&lt;p&gt;&lt;a href=&quot;http://smartbear.com/best-kept-secrets-of-peer-code-review/&quot;&gt;Cohen 2006&lt;/a&gt; Cohen, Jason. 2006. Best Kept Secrets of Peer Code Review. Beverly, MA: SmartBear Software&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;The first review and hour matter most.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;/li&gt;

&lt;li&gt;
&lt;p&gt;&lt;a href=&quot;http://citeseerx.ist.psu.edu/viewdoc/download?doi=10.1.1.110.8069&amp;rep=rep1&amp;type=pdf&quot;&gt;Herbsleb and Grinter 1999&lt;/a&gt; James D.Herbsleb, Rebecca E.Grinter. 1999. Splitting the Organization and Integrating the Code: Conway’s Law Revisited. Proceedings of the 21st International Conference on Software Engineering.&lt;/p&gt;
&lt;/li&gt;

&lt;li&gt;
&lt;p&gt;&lt;a href=&quot;http://citeseerx.ist.psu.edu/viewdoc/download?doi=10.1.1.148.791&amp;rep=rep1&amp;type=pdf&quot;&gt;Nagappan et al. 2008&lt;/a&gt; Nagappan, N., B. Murphy, and V.R. Basili. 2008. The Influence of Organizational Structure on Software Quality: An Empirical Case Study. Proceedings of the International Conference on Software Engineering: 521–530.&lt;/p&gt;
&lt;/li&gt;

&lt;li&gt;
&lt;p&gt;&lt;a href=&quot;http://wwwcsif.cs.ucdavis.edu/~bird/papers/bird2009pat.pdf&quot;&gt;Bird et al. 2009&lt;/a&gt; Bird, C., et al. 2009. Putting It All Together: Using Socio-technical Networks to Predict Failures. Proceedings of the 20th IEEE international conference on software reliability engineering: 109–119.&lt;/p&gt;
&lt;/li&gt;

&lt;li&gt;
&lt;p&gt;&lt;a href=&quot;http://www.unbox.org/stuffed/export/107/doc/elamin.pdf&quot;&gt;El Emam et al. 2001&lt;/a&gt; El Emam, K., S. Benlarbi, N. Goel, and S.N. Rai. 2001. The Confounding Effect of Class Size on the Validity of Object-Oriented Metrics. IEEE Transactions on Software Engineering 27(7): 630–650.&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;Most metrics&amp;#8217; values increase with code size. If you do a double-barrelled correlation the latter accounts for all the signal.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;/li&gt;

&lt;li&gt;
&lt;p&gt;The &amp;#8220;beautiful&amp;#8221; series:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href=&quot;http://shop.oreilly.com/product/9780596510046.do&quot;&gt;Beautiful Code&lt;/a&gt; Greg Wilson, Andy Oram, 2007.&lt;/li&gt;

&lt;li&gt;&lt;a href=&quot;http://shop.oreilly.com/product/9780596157128.do&quot;&gt;Beautiful Data&lt;/a&gt; Toby Segaran, Jeff Hammerbacher, 2009.&lt;/li&gt;

&lt;li&gt;&lt;a href=&quot;http://shop.oreilly.com/product/0636920000617.do&quot;&gt;Beautiful Visualization&lt;/a&gt; Julie Steele, Noah Iliinsky, 2010.&lt;/li&gt;

&lt;li&gt;&lt;a href=&quot;http://shop.oreilly.com/product/9780596159825.do&quot;&gt;Beautiful Testing&lt;/a&gt; Adam Goucher, Tim Riley, 2009.&lt;/li&gt;

&lt;li&gt;&lt;a href=&quot;http://shop.oreilly.com/product/9780596517984.do&quot;&gt;Beautiful Architecture&lt;/a&gt; Diomidis Spinellis , Georgios Gousios, 2009.&lt;/li&gt;

&lt;li&gt;&lt;a href=&quot;http://shop.oreilly.com/product/9780596518028.do&quot;&gt;Beautiful Teams&lt;/a&gt; Andrew Stellman, Jennifer Greene, 2009.&lt;/li&gt;

&lt;li&gt;&lt;a href=&quot;http://shop.oreilly.com/product/9780596527488.do&quot;&gt;Beautiful Security&lt;/a&gt; Andy Oram, John Viega, 2009.&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;/ul&gt;</description>
	<pubDate>Sun, 22 Jan 2012 00:00:00 +0000</pubDate>
</item>
<item>
	<title>Tony Whitmore (tonytiger): Big Blue Box</title>
	<guid>http://tonywhitmore.co.uk/blog/?p=1283</guid>
	<link>http://tonywhitmore.co.uk/blog/2012/01/21/big-blue-box/</link>
	<description>&lt;p&gt;Last Saturday I went to a Doctor Who convention. Called &amp;#8220;Big Blue Box&amp;#8221;, it was held in support of &lt;a href=&quot;http://www.compaid.org.uk/&quot;&gt;Compaid&lt;/a&gt;. It was the first one I&amp;#8217;d been to in fourteen years, so I was slightly apprehensive about whether it would be very different from those I&amp;#8217;d attended in my youth. Happily it was a relatively small event, with only 100 or so people in attendance. That meant there was good access to the guests, with plenty of time to chat. Along with the usual discussion panels (with guests from AudioGo, Big Finish and Doctor Who Magazine) there was also a chance to see Cleaning Up, the brilliant short film from the &lt;a href=&quot;http://www.guerrierbrothers.com/&quot;&gt;Guerrier Brothers&lt;/a&gt; starring Mark Gatiss and Louise Jameson. John Leeson, the voice of K9, and Colin Baker were also at the event. Colin was there with a camera crew from Channel 4, recording a show that involved him trying to sell merchandise to us all day, albeit in a good cause. I also got to meet James and Ian from &lt;a href=&quot;http://thedoctorwhopodcast.com/&quot;&gt;The Doctor Who Podcast&lt;/a&gt;, who turned out to be very pleasant fellows. The day was rounded off with a performance of Louise&amp;#8217;s show, &lt;a href=&quot;http://www.tlcproductions.co.uk/production-pullingfaces.html&quot;&gt;Pulling Faces&lt;/a&gt;, which is on tour now and well worth seeing.&lt;/p&gt;
&lt;p&gt;I know that organising events like this takes a lot of work, so thank you to all those involved. The venue was great, if a little cold, and really got into the spirit of the event with a special menu for the day. The best part of the day for me? I got to have a new photograph taken with Louise Jameson. &lt;img src=&quot;http://tonywhitmore.co.uk/blog/wp-includes/images/smilies/icon_smile.gif&quot; alt=&quot;:)&quot; class=&quot;wp-smiley&quot; /&gt; &lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://tonywhitmore.co.uk/blog/wp-content/uploads/2012/01/IMG_1064.jpg&quot;&gt;&lt;img class=&quot;alignnone size-full wp-image-1284&quot; title=&quot;Louise Jameson and Tony Whitmore&quot; src=&quot;http://tonywhitmore.co.uk/blog/wp-content/uploads/2012/01/IMG_1064.jpg&quot; alt=&quot;Louise Jameson and Tony Whitmore&quot; width=&quot;600&quot; height=&quot;400&quot; /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://tonywhitmore.co.uk/blog/wp-content/uploads/2012/01/IMG_1049_1.jpg&quot;&gt;&lt;img class=&quot;alignnone size-full wp-image-1285&quot; title=&quot;Food menu&quot; src=&quot;http://tonywhitmore.co.uk/blog/wp-content/uploads/2012/01/IMG_1049_1.jpg&quot; alt=&quot;Food menu&quot; width=&quot;400&quot; height=&quot;600&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description>
	<pubDate>Sat, 21 Jan 2012 10:09:54 +0000</pubDate>
</item>
<item>
	<title>Phil Spencer (CrazySpence): Fiction vs Reality</title>
	<guid>http://www.philtopia.com/?p=1105</guid>
	<link>http://www.philtopia.com/?p=1105</link>
	<description>&lt;p&gt;In 2669 the TCS Concordia is ambushed by the Kilrathi and disabled. The hulk of the ship crashes on Vespus.&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://www.philtopia.com/wp-uploads//2012/01/20120115-184335.jpg&quot; rel=&quot;lightbox[1105]&quot;&gt;&lt;img src=&quot;http://www.philtopia.com/wp-uploads//2012/01/20120115-184335.jpg&quot; alt=&quot;20120115-184335.jpg&quot; class=&quot;alignnone size-full&quot; /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Costa Concordia, run aground in 2012&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://www.philtopia.com/wp-uploads//2012/01/20120115-184144.jpg&quot; rel=&quot;lightbox[1105]&quot;&gt;&lt;img src=&quot;http://www.philtopia.com/wp-uploads//2012/01/20120115-184144.jpg&quot; alt=&quot;20120115-184144.jpg&quot; class=&quot;alignnone size-full&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description>
	<pubDate>Sun, 15 Jan 2012 23:46:05 +0000</pubDate>
</item>
<item>
	<title>Tony Whitmore (tonytiger): Vicky McClure – the next Doctor?</title>
	<guid>http://tonywhitmore.co.uk/blog/?p=1272</guid>
	<link>http://tonywhitmore.co.uk/blog/2012/01/14/vicky-mcclure-the-next-doctor/</link>
	<description>&lt;p&gt;I hope that Matt Smith carries on playing the Doctor for a long time, I really enjoy his portrayal. But when he moves on, as he eventually will, I&amp;#8217;d like to make my suggestion as to who should replace him in the role. I think &lt;a href=&quot;http://twitter.com/Vicky_McClure&quot;&gt;Vicky McClure&lt;/a&gt; would make a great Doctor. You may well have seen her brilliant performances in &amp;#8220;This is England&amp;#8221; where she demonstrated a huge emotional depth. She&amp;#8217;d do a great job of delivering the range required by the character of the Doctor and looked powerful striding around in a big coat and boots in &amp;#8220;This is England 86&amp;#8243;. &lt;img src=&quot;http://tonywhitmore.co.uk/blog/wp-includes/images/smilies/icon_smile.gif&quot; alt=&quot;:)&quot; class=&quot;wp-smiley&quot; /&gt; &lt;/p&gt;
&lt;p&gt;I&amp;#8217;ve even created a Facebook group to that effect which you can join if you think that I&amp;#8217;m not totally talking out of my hat. &lt;a href=&quot;https://www.facebook.com/groups/188805587884093/&quot;&gt;http://www.facebook.com/groups/188805587884093/&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://tonywhitmore.co.uk/blog/wp-content/uploads/2012/01/5449905827_6330902d99.jpg&quot;&gt;&lt;img class=&quot;alignnone size-full wp-image-1275&quot; title=&quot;5449905827_6330902d99&quot; src=&quot;http://tonywhitmore.co.uk/blog/wp-content/uploads/2012/01/5449905827_6330902d99.jpg&quot; alt=&quot;&quot; width=&quot;500&quot; height=&quot;355&quot; /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Photo by &lt;a href=&quot;http://www.flickr.com/photos/mediamuseumevents/5449905827/&quot;&gt;National Media Museum on Flickr&lt;/a&gt; under Creative Commons by-nc-nd 2.0.&lt;/p&gt;</description>
	<pubDate>Sat, 14 Jan 2012 11:31:53 +0000</pubDate>
</item>
<item>
	<title>BitFolk Issue Tracker: Panel - Feature #9: Display list of referrals</title>
	<guid>http://tools.bitfolk.com/redmine/issues/9#change-122</guid>
	<link>http://tools.bitfolk.com/redmine/issues/9#change-122</link>
	<description>&lt;p&gt;This new/suggested policy has come about because of this feature request. Although this request was created by me, it was still based on actual feature requests made by customers, and it &lt;em&gt;has&lt;/em&gt; received some positive votes.&lt;/p&gt;


	&lt;p&gt;As things currently stand, the person you nominated as your referrer will have seen that they gained a new referral, and will have been able (if they wished) to work out how much your service costs based on how much credit they were getting. From the dates when the credit was added they could work out what your payment schedule is. The only new information proposed is your account name.&lt;/p&gt;


	&lt;p&gt;Admittedly, all the previous information would require a great deal of effort to obtain at the moment since they would have to keep logging in to the panel to see their credit.&lt;/p&gt;</description>
	<pubDate>Thu, 12 Jan 2012 03:21:15 +0000</pubDate>
</item>
<item>
	<title>BitFolk Issue Tracker: Panel - Feature #9: Display list of referrals</title>
	<guid>http://tools.bitfolk.com/redmine/issues/9#change-121</guid>
	<link>http://tools.bitfolk.com/redmine/issues/9#change-121</link>
	<description>&lt;p&gt;Thanks for mentioning this on the mailing list, because I do have feelings about it.&lt;/p&gt;


	&lt;p&gt;Actually, feelings is the precise right word. While I see no specific harm in sharing the listed information, it still feels a bit icky to share financial information with a potential stranger.&lt;/p&gt;


	&lt;p&gt;Myself I found my way to Bitfolk by way of a blog post, and ended up putting the author as my referrer. With this new (suggested?) policy I would most likely not have nominated that person as a referrer, and I expect that I will want to take it back.&lt;/p&gt;</description>
	<pubDate>Wed, 11 Jan 2012 08:13:07 +0000</pubDate>
</item>
<item>
	<title>BitFolk Issue Tracker: Panel - Feature #9: Display list of referrals</title>
	<guid>http://tools.bitfolk.com/redmine/issues/9#change-120</guid>
	<link>http://tools.bitfolk.com/redmine/issues/9#change-120</link>
	<description>&lt;p&gt;Updated description to clarify existing situation.&lt;/p&gt;</description>
	<pubDate>Wed, 11 Jan 2012 06:35:27 +0000</pubDate>
</item>
<item>
	<title>BitFolk Issue Tracker: Panel - Feature #9: Display list of referrals</title>
	<guid>http://tools.bitfolk.com/redmine/issues/9#change-119</guid>
	<link>http://tools.bitfolk.com/redmine/issues/9#change-119</link>
	<description>&lt;p&gt;There hasn't been much feedback over the privacy concerns so I'm going to assume that nobody has any strong feelings.&lt;/p&gt;


	&lt;p&gt;I intend to reveal the following information to referrers:&lt;/p&gt;


	&lt;ul&gt;
	&lt;li&gt;Account name&lt;/li&gt;
		&lt;li&gt;Referral amount (thus cost of service can be calculated)&lt;/li&gt;
		&lt;li&gt;Payment schedule (monthly / quarterly / yearly)&lt;/li&gt;
		&lt;li&gt;Date of account setup and whether they are still a customer or not&lt;/li&gt;
	&lt;/ul&gt;


	&lt;p&gt;Privacy policies and documentation about the referral scheme will be updated to reflect this.&lt;/p&gt;


	&lt;p&gt;For those who are not comfortable with this information disclosure, the recommendation will be to not nominate a referrer.&lt;/p&gt;


	&lt;p&gt;At least a month will be allowed for existing customers to take back any referrers they've already nominated.&lt;/p&gt;</description>
	<pubDate>Wed, 11 Jan 2012 05:36:28 +0000</pubDate>
</item>
<item>
	<title>BitFolk Issue Tracker: Operating Systems - Feature #92 (Resolved): Complete support for Ubuntu 11.10 (Oneiric)</title>
	<guid>http://tools.bitfolk.com/redmine/issues/92#change-118</guid>
	<link>http://tools.bitfolk.com/redmine/issues/92#change-118</link>
	<description>&lt;p&gt;Done.&lt;/p&gt;</description>
	<pubDate>Wed, 11 Jan 2012 03:40:15 +0000</pubDate>
</item>
<item>
	<title>BitFolk Issue Tracker: Misc infrastructure - Bug #89: rescue system should be updated from Debian etch</title>
	<guid>http://tools.bitfolk.com/redmine/issues/89#change-117</guid>
	<link>http://tools.bitfolk.com/redmine/issues/89#change-117</link>
	<description>&lt;p&gt;Maybe consider using Finnix as your rescue image. It should be usable as-is, but is also easily remastered.&lt;/p&gt;


	&lt;p&gt;I believe it's used by Linode.&lt;/p&gt;


	&lt;p&gt;See &lt;a class=&quot;external&quot; href=&quot;http://www.finnix.org/Finnix_for_VPS_providers&quot;&gt;http://www.finnix.org/Finnix_for_VPS_providers&lt;/a&gt;&lt;/p&gt;</description>
	<pubDate>Sun, 08 Jan 2012 20:11:13 +0000</pubDate>
</item>
<item>
	<title>Tony Whitmore (tonytiger): It comes before a fall</title>
	<guid>http://tonywhitmore.co.uk/blog/?p=1262</guid>
	<link>http://tonywhitmore.co.uk/blog/2012/01/07/it-comes-before-a-fall/</link>
	<description>&lt;p&gt;&amp;#8220;I&amp;#8217;m putting together a &lt;a href=&quot;http://tonywhitmore.co.uk&quot;&gt;landing page&lt;/a&gt; for my website and would like a photograph of me to sit behind it. I was wondering if you&amp;#8217;d be up for taking/making it? I have a vague notion of walking down a track through a mist-filled woods, wrapped up in a big coat. But that might just be because of the weather. I think something informal (or at least, informal feeling) and in a natural surrounding. Does that make any sense?&amp;#8221;&lt;/p&gt;
&lt;p&gt;That was what I sent in an e-mail to &lt;a href=&quot;http://grahambinns.com&quot;&gt;Graham Binns&lt;/a&gt; before Christmas. The obvious subtext was &amp;#8220;please make me seem likeable, co-ordinated and, if possible, a bit cooler than I am.&amp;#8221; So what&amp;#8217;s the first image I get to see from the shoot?&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://tonywhitmore.co.uk/blog/wp-content/uploads/2012/01/2011-12-22-Whitmore-Tony-NIKON-D700-GMB_0484-.jpg&quot;&gt;&lt;img class=&quot;alignnone size-full wp-image-1264&quot; title=&quot;2011-12-22-Whitmore, Tony-NIKON D700-GMB_0484-&quot; src=&quot;http://tonywhitmore.co.uk/blog/wp-content/uploads/2012/01/2011-12-22-Whitmore-Tony-NIKON-D700-GMB_0484-.jpg&quot; alt=&quot;&quot; width=&quot;1024&quot; height=&quot;681&quot; /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Yeah, thanks for that. &lt;img src=&quot;http://tonywhitmore.co.uk/blog/wp-includes/images/smilies/icon_smile.gif&quot; alt=&quot;:)&quot; class=&quot;wp-smiley&quot; /&gt; &lt;/p&gt;
&lt;p&gt;We got together for the shoot just before Christmas. Graham is always fun to be with and it was an enjoyable shoot. He was ably assisted by his awesome wife Sarah. I felt pretty relaxed posing and enjoyed a nice meal in a nearby pub afterwards to defrost! I can&amp;#8217;t wait to see the photos where I am actually managing to stay upright and get it on the landing page&amp;#8230;&lt;/p&gt;</description>
	<pubDate>Sat, 07 Jan 2012 17:02:53 +0000</pubDate>
</item>
<item>
	<title>Phil Spencer (CrazySpence): Fun Stuff</title>
	<guid>http://www.philtopia.com/?p=1099</guid>
	<link>http://www.philtopia.com/?p=1099</link>
	<description>&lt;p&gt;So I was playing with the boys and I don&amp;#8217;t know what the heck these weird block things they have are but before I knew it I had built a broadsword from Wing Commander!&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://www.philtopia.com/wp-uploads//2012/01/20120106-213543.jpg&quot; rel=&quot;lightbox[1099]&quot;&gt;&lt;img src=&quot;http://www.philtopia.com/wp-uploads//2012/01/20120106-213543.jpg&quot; alt=&quot;20120106-213543.jpg&quot; class=&quot;alignnone size-full&quot; /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://www.philtopia.com/wp-uploads//2012/01/20120106-213614.jpg&quot; rel=&quot;lightbox[1099]&quot;&gt;&lt;img src=&quot;http://www.philtopia.com/wp-uploads//2012/01/20120106-213614.jpg&quot; alt=&quot;20120106-213614.jpg&quot; class=&quot;alignnone size-full&quot; /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://www.philtopia.com/wp-uploads//2012/01/20120106-213633.jpg&quot; rel=&quot;lightbox[1099]&quot;&gt;&lt;img src=&quot;http://www.philtopia.com/wp-uploads//2012/01/20120106-213633.jpg&quot; alt=&quot;20120106-213633.jpg&quot; class=&quot;alignnone size-full&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description>
	<pubDate>Sat, 07 Jan 2012 02:36:58 +0000</pubDate>
</item>
<item>
	<title>BitFolk Issue Tracker: Misc infrastructure - Feature #47: DNSSEC validation support for BitFolk resolvers</title>
	<guid>http://tools.bitfolk.com/redmine/issues/47#change-116</guid>
	<link>http://tools.bitfolk.com/redmine/issues/47#change-116</link>
	<description>&lt;p&gt;The BIND/Unbound resolvers have been replaced with a cluster of Unbound resolvers, so validation can be turned on whenever. We will announce a turn-on date in February 2012.&lt;/p&gt;</description>
	<pubDate>Fri, 06 Jan 2012 15:20:06 +0000</pubDate>
</item>
<item>
	<title>BitFolk Issue Tracker: Operating Systems - Feature #92 (Resolved): Complete support for Ubuntu 11.10 (Oneiric)</title>
	<guid>http://tools.bitfolk.com/redmine/issues/92</guid>
	<link>http://tools.bitfolk.com/redmine/issues/92</link>
	<description>&lt;p&gt;There's already installer support for Ubuntu 11.10, but it needs to be added to the selector in the panel and to the main web site.&lt;/p&gt;</description>
	<pubDate>Fri, 06 Jan 2012 14:15:49 +0000</pubDate>
</item>
<item>
	<title>Andy Smith (grifferz): Dear Intarweb, please provide ethics check</title>
	<guid>http://strugglers.net/~andy/blog/?p=948</guid>
	<link>http://strugglers.net/~andy/blog/2012/01/05/dear-intarweb-please-provide-ethics-check/</link>
	<description>&lt;p&gt;Earlier this evening I received a marketing email from a company I had never heard of, for an event I wasn&amp;#8217;t interested in, to an email address I had only ever given to a differently, seemingly-unrelated company that we shall call Company U.&lt;/p&gt;
&lt;p&gt;When this sort of thing happens it may be an indication that Company U has leaked their customer address database or else decided to sell the contact details on, so I&amp;#8217;d sometimes follow it up instead of just opting out and consigning the address to the bitbucket forever.&lt;/p&gt;
&lt;p&gt;In this case as many times before, I decided to have a whinge on twitter about it first.&lt;/p&gt;
&lt;p&gt;Anyway to cut a long story short they got in touch, and it turns out that this marketing email has been sent by Company S. Someone from Company S emailed me to apologise and to remove my address from their list.&lt;/p&gt;
&lt;p&gt;I asked this person how they obtained my email address that had only been sent to Company U, and they admitted that they used to work for Company U and that their &amp;#8220;rampant CRM system&amp;#8221; had somehow &amp;#8220;indexed all of my PERSONAL emails&amp;#8221;.&lt;/p&gt;
&lt;p&gt;Now, from my point of view, this would actually suggest that this person has likely taken a database of customers of Company U with him to his new employer.&lt;/p&gt;
&lt;p&gt;So, Internauts, do I have a duty to shop this guy to his former employer Company U? Or am I just frothing in my nerdrage here at the terrible inconvenience of being sent a piece of email I don&amp;#8217;t want? Is the man a menace, or should I just get over it?&lt;/p&gt;</description>
	<pubDate>Thu, 05 Jan 2012 22:42:47 +0000</pubDate>
</item>
<item>
	<title>Alan Pope (popey): Migrating to a New Desktop PC</title>
	<guid>http://popey.com/blog/?p=1495</guid>
	<link>http://popey.com/blog/2012/01/02/migrating-to-a-new-desktop-pc/</link>
	<description>&lt;p class=&quot;wp-flattr-button&quot;&gt;&lt;/p&gt;&lt;p&gt;A little while ago I bought a &lt;a href=&quot;http://www.zoostorm.com/&quot; title=&quot;Zoostorm&quot; target=&quot;_blank&quot;&gt;Zoostorm&lt;/a&gt; PC from &lt;a href=&quot;http://www.ebuyer.com/&quot; title=&quot;Ebuyer&quot; target=&quot;_blank&quot;&gt;Ebuyer&lt;/a&gt;. It&amp;#8217;s a farily basic (but powerful) i7 based system with 8GB RAM and a 1TB hard disk. This is to replace my older (but still fully working) &lt;a href=&quot;http://www.meshcomputers.com/&quot; title=&quot;Mesh Computers&quot; target=&quot;_blank&quot;&gt;Mesh&lt;/a&gt; PC. The newer one is more power efficient, quieter, a lot faster, and all Intel inside &amp;#8211; the previous desktop was nVidia based.&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://popey.com/blog/wp-content/uploads/2012/01/P0271629_C0000191_P0000000.jpg&quot;&gt;&lt;img src=&quot;http://popey.com/blog/wp-content/uploads/2012/01/P0271629_C0000191_P0000000.jpg&quot; alt=&quot;&quot; title=&quot;Zoostorm PC&quot; width=&quot;142&quot; height=&quot;150&quot; class=&quot;aligncenter size-full wp-image-1498&quot; /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;I wanted to migrate from the install on my old Mesh PC to a new clean install on the Zoostorm. I could have just yanked the disk out of the Mesh and put it in the Zoostorm, but I did it slightly differently. I&amp;#8217;m typing it up here for my own notes but also to find out how other people do it, and to get any tips.&lt;/p&gt;
&lt;p&gt;So the goal was to have a clean install of Ubuntu Precise (which will become 12.04 LTS in April) and keep all my existing files and folders intact. I wanted to keep all my home files but didn&amp;#8217;t want to keep the applications I had built up over several install/upgrades on that machine. Time for a fresh start.&lt;/p&gt;
&lt;p&gt;The old Mesh has a single 120GB SSD and the Zoostorm has a 1TB Hard disk and I added a 120GB SSD to that too. My idea was to do a clean install on the Zoostorm SSD, and use the 1TB hard disk for my /home directory. That way I get the super zippy performance of an SSD for loading apps, but the slow(er) hard disk for loading my files. I&amp;#8217;m happy with this tradeoff in speed/capacity.&lt;/p&gt;
&lt;p&gt;Here&amp;#8217;s the steps I went through. &lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Clean install of Ubuntu Precise on the Zoostorm with / and swap on SSD, /home on HDD. Use a hostname of &amp;#8216;zoo&amp;#8217; so as not to conflict on the network with the hostname &amp;#8216;wopr&amp;#8217; used by the Mesh PC&lt;/li&gt;
&lt;li&gt;Boot into new installation and make sure everything works&lt;/li&gt;
&lt;li&gt;Boot Mesh PC but don&amp;#8217;t login, so none of my personal files are open/changing&lt;/li&gt;
&lt;li&gt;Use rsync on the new install to copy files from Mesh to Zoostorm over the network&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;code&gt;$ cd /home&lt;br /&gt;
$ rsync -avz -e ssh wopr:/home/alan .&lt;/code&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Shutdown the old Mesh PC&lt;/li&gt;
&lt;li&gt;Edit /etc/hosts and /etc/hostname to change host from &amp;#8216;zoo&amp;#8217; to &amp;#8216;wopr&amp;#8217;&lt;/li&gt;
&lt;li&gt;Reboot the Zoostorm PC to &amp;#8216;Bring the WOPR on-line&amp;#8217; as they say&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;I think that&amp;#8217;s about it. I now have all my personal stuff, work, config on the new computer, and can consider things to do with the old one. I think I might install &lt;a href=&quot;http://windows.microsoft.com/&quot;&gt;GameOS&lt;/a&gt; on it until Valve get around to porting Steam (and all the games) to Linux. &lt;img src=&quot;http://popey.com/blog/wp-includes/images/smilies/icon_biggrin.gif&quot; alt=&quot;:D&quot; class=&quot;wp-smiley&quot; /&gt; &lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://popey.com/blog/wp-content/uploads/2012/01/precise2.png&quot;&gt;&lt;img src=&quot;http://popey.com/blog/wp-content/uploads/2012/01/precise2-300x168.png&quot; alt=&quot;&quot; title=&quot;Precise desktop&quot; width=&quot;300&quot; height=&quot;168&quot; class=&quot;aligncenter size-medium wp-image-1499&quot; /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Things to consider:-&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;I could probably have sped this up a bit by taking the disk out of the Mesh PC and putting it in the Zoostorm, then partition up the 1TB disk and move my /home directory over to it, edit fstab, remount /home and logout/in. That seemed like more effort in my mind, so I went for the approach above&lt;/li&gt;
&lt;li&gt;I now have a whole load of packages I need to install because my Zoostorm is a clean installation. So the first thing I did was to get the basic things I need. I will apt-get any missing bits as and when I need them. I have a decent connection so it doesn&amp;#8217;t bother me that I&amp;#8217;m missing critical stuff at the moment.&lt;/li&gt;
&lt;li&gt;Copying only /home means I may have missed out some stuff in other places like /usr/local, /root and /etc. I have full backups of my old machine, so I am not to worried about missing stuff here or there, I can get them if I really need to&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Hope that&amp;#8217;s useful to someone, and if you have any comments, do let me know.&lt;/p&gt;
&lt;div class=&quot;lightsocial_container&quot;&gt;&lt;a class=&quot;lightsocial_a&quot; href=&quot;http://digg.com/submit?url=http%3A%2F%2Fpopey.com%2Fblog%2F2012%2F01%2F02%2Fmigrating-to-a-new-desktop-pc%2F&amp;title=Migrating+to+a+New+Desktop+PC&quot;&gt;&lt;img class=&quot;lightsocial_img&quot; src=&quot;http://popey.com/blog/wp-content/plugins/light-social/digg.png&quot; alt=&quot;Digg This&quot; title=&quot;Digg This&quot; /&gt;&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;a class=&quot;lightsocial_a&quot; href=&quot;http://www.reddit.com/submit?url=http%3A%2F%2Fpopey.com%2Fblog%2F2012%2F01%2F02%2Fmigrating-to-a-new-desktop-pc%2F&amp;title=Migrating+to+a+New+Desktop+PC&quot;&gt;&lt;img class=&quot;lightsocial_img&quot; src=&quot;http://popey.com/blog/wp-content/plugins/light-social/reddit.png&quot; alt=&quot;Reddit This&quot; title=&quot;Reddit This&quot; /&gt;&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;a class=&quot;lightsocial_a&quot; href=&quot;http://www.stumbleupon.com/submit?url=http%3A%2F%2Fpopey.com%2Fblog%2F2012%2F01%2F02%2Fmigrating-to-a-new-desktop-pc%2F&amp;title=Migrating+to+a+New+Desktop+PC&quot;&gt;&lt;img class=&quot;lightsocial_img&quot; src=&quot;http://popey.com/blog/wp-content/plugins/light-social/stumbleupon.png&quot; alt=&quot;Stumble Now!&quot; title=&quot;Stumble Now!&quot; /&gt;&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;a class=&quot;lightsocial_a&quot; href=&quot;http://buzz.yahoo.com/buzz?targetUrl=http%3A%2F%2Fpopey.com%2Fblog%2F2012%2F01%2F02%2Fmigrating-to-a-new-desktop-pc%2F&amp;headline=Migrating+to+a+New+Desktop+PC&quot;&gt;&lt;img class=&quot;lightsocial_img&quot; src=&quot;http://popey.com/blog/wp-content/plugins/light-social/yahoo_buzz.png&quot; alt=&quot;Buzz This&quot; title=&quot;Buzz This&quot; /&gt;&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;a class=&quot;lightsocial_a&quot; href=&quot;http://www.dzone.com/links/add.html?title=Migrating+to+a+New+Desktop+PC&amp;url=http%3A%2F%2Fpopey.com%2Fblog%2F2012%2F01%2F02%2Fmigrating-to-a-new-desktop-pc%2F&quot;&gt;&lt;img class=&quot;lightsocial_img&quot; src=&quot;http://popey.com/blog/wp-content/plugins/light-social/dzone.png&quot; alt=&quot;Vote on DZone&quot; title=&quot;Vote on DZone&quot; /&gt;&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;a class=&quot;lightsocial_a&quot; href=&quot;http://www.facebook.com/sharer.php?t=Migrating+to+a+New+Desktop+PC&amp;u=http%3A%2F%2Fpopey.com%2Fblog%2F2012%2F01%2F02%2Fmigrating-to-a-new-desktop-pc%2F&quot;&gt;&lt;img class=&quot;lightsocial_img&quot; src=&quot;http://popey.com/blog/wp-content/plugins/light-social/facebook.png&quot; alt=&quot;Share on Facebook&quot; title=&quot;Share on Facebook&quot; /&gt;&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;a class=&quot;lightsocial_a&quot; href=&quot;http://delicious.com/save?title=Migrating+to+a+New+Desktop+PC&amp;url=http%3A%2F%2Fpopey.com%2Fblog%2F2012%2F01%2F02%2Fmigrating-to-a-new-desktop-pc%2F&quot;&gt;&lt;img class=&quot;lightsocial_img&quot; src=&quot;http://popey.com/blog/wp-content/plugins/light-social/delicious.png&quot; alt=&quot;Bookmark this on Delicious&quot; title=&quot;Bookmark this on Delicious&quot; /&gt;&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;a class=&quot;lightsocial_a&quot; href=&quot;http://www.dotnetkicks.com/kick/?title=Migrating+to+a+New+Desktop+PC&amp;url=http%3A%2F%2Fpopey.com%2Fblog%2F2012%2F01%2F02%2Fmigrating-to-a-new-desktop-pc%2F&quot;&gt;&lt;img class=&quot;lightsocial_img&quot; src=&quot;http://popey.com/blog/wp-content/plugins/light-social/dotnetkicks.png&quot; alt=&quot;Kick It on DotNetKicks.com&quot; title=&quot;Kick It on DotNetKicks.com&quot; /&gt;&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;a class=&quot;lightsocial_a&quot; href=&quot;http://dotnetshoutout.com/Submit?title=Migrating+to+a+New+Desktop+PC&amp;url=http%3A%2F%2Fpopey.com%2Fblog%2F2012%2F01%2F02%2Fmigrating-to-a-new-desktop-pc%2F&quot;&gt;&lt;img class=&quot;lightsocial_img&quot; src=&quot;http://popey.com/blog/wp-content/plugins/light-social/dotnetshoutout.png&quot; alt=&quot;Shout it&quot; title=&quot;Shout it&quot; /&gt;&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;a class=&quot;lightsocial_a&quot; href=&quot;http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fpopey.com%2Fblog%2F2012%2F01%2F02%2Fmigrating-to-a-new-desktop-pc%2F&amp;title=Migrating+to+a+New+Desktop+PC&amp;summary=&amp;source=&quot;&gt;&lt;img class=&quot;lightsocial_img&quot; src=&quot;http://popey.com/blog/wp-content/plugins/light-social/linkedin.png&quot; alt=&quot;Share on LinkedIn&quot; title=&quot;Share on LinkedIn&quot; /&gt;&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;a class=&quot;lightsocial_a&quot; href=&quot;http://www.technorati.com/faves?add=http%3A%2F%2Fpopey.com%2Fblog%2F2012%2F01%2F02%2Fmigrating-to-a-new-desktop-pc%2F&quot;&gt;&lt;img class=&quot;lightsocial_img&quot; src=&quot;http://popey.com/blog/wp-content/plugins/light-social/technorati.png&quot; alt=&quot;Bookmark this on Technorati&quot; title=&quot;Bookmark this on Technorati&quot; /&gt;&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;a class=&quot;lightsocial_a&quot; href=&quot;http://twitter.com/home?status=Reading+http%3A%2F%2Fpopey.com%2Fblog%2F2012%2F01%2F02%2Fmigrating-to-a-new-desktop-pc%2F&quot;&gt;&lt;img class=&quot;lightsocial_img&quot; src=&quot;http://popey.com/blog/wp-content/plugins/light-social/twitter.png&quot; alt=&quot;Post on Twitter&quot; title=&quot;Post on Twitter&quot; /&gt;&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;a class=&quot;lightsocial_a&quot; href=&quot;http://www.google.com/buzz/post?url=http%3A%2F%2Fpopey.com%2Fblog%2F2012%2F01%2F02%2Fmigrating-to-a-new-desktop-pc%2F&quot;&gt;&lt;img class=&quot;lightsocial_img&quot; src=&quot;http://popey.com/blog/wp-content/plugins/light-social/google_buzz.png&quot; alt=&quot;Google Buzz (aka. Google Reader)&quot; title=&quot;Google Buzz (aka. Google Reader)&quot; /&gt;&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;/div&gt;&lt;div id=&quot;tweetbutton1495&quot; class=&quot;tw_button&quot;&gt;&lt;a href=&quot;http://twitter.com/share?url=http%3A%2F%2Fpopey.com%2Fblog%2F2012%2F01%2F02%2Fmigrating-to-a-new-desktop-pc%2F&amp;text=Migrating%20to%20a%20New%20Desktop%20PC&amp;related=popey&amp;lang=en&amp;count=horizontal&amp;counturl=http%3A%2F%2Fpopey.com%2Fblog%2F2012%2F01%2F02%2Fmigrating-to-a-new-desktop-pc%2F&quot; class=&quot;twitter-share-button&quot;&gt;Tweet&lt;/a&gt;&lt;/div&gt; &lt;p&gt;&lt;a href=&quot;http://popey.com/blog/?flattrss_redirect&amp;id=1495&amp;md5=375f2bea25d8c1db25be23be001bbf96&quot; title=&quot;Flattr&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://popey.com/blog/wp-content/plugins/flattr/img/flattr-badge-large.png&quot; alt=&quot;flattr this!&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description>
	<pubDate>Mon, 02 Jan 2012 18:47:30 +0000</pubDate>
</item>
<item>
	<title>BitFolk Issue Tracker: Operating Systems - Feature #91 (New): Investigate Arch Linux net install</title>
	<guid>http://tools.bitfolk.com/redmine/issues/91</guid>
	<link>http://tools.bitfolk.com/redmine/issues/91</link>
	<description>&lt;p&gt;If Arch Linux has a netboot installer then it should be added to the self-install section of the Xen Shell.&lt;/p&gt;</description>
	<pubDate>Mon, 02 Jan 2012 06:37:38 +0000</pubDate>
</item>
<item>
	<title>BitFolk Issue Tracker: Operating Systems - Feature #90 (New): Investigate Gentoo net install</title>
	<guid>http://tools.bitfolk.com/redmine/issues/90</guid>
	<link>http://tools.bitfolk.com/redmine/issues/90</link>
	<description>&lt;p&gt;If Gentoo has a netboot installer then it should be added to the self-install section of the Xen Shell.&lt;/p&gt;</description>
	<pubDate>Mon, 02 Jan 2012 06:37:16 +0000</pubDate>
</item>
<item>
	<title>BitFolk Issue Tracker: Operating Systems - Bug #81 (Rejected): Ubuntu Natty installer produces a broken /etc/apt/sources...</title>
	<guid>http://tools.bitfolk.com/redmine/issues/81#change-115</guid>
	<link>http://tools.bitfolk.com/redmine/issues/81#change-115</link>
	<description>&lt;p&gt;Never reproduced.&lt;/p&gt;</description>
	<pubDate>Mon, 02 Jan 2012 06:36:00 +0000</pubDate>
</item>
<item>
	<title>BitFolk Issue Tracker: Operating Systems - Feature #79 (Resolved): Allow customers to specify own kickstart URL for Cent...</title>
	<guid>http://tools.bitfolk.com/redmine/issues/79#change-114</guid>
	<link>http://tools.bitfolk.com/redmine/issues/79#change-114</link>
	<pubDate>Mon, 02 Jan 2012 06:34:23 +0000</pubDate>
</item>
<item>
	<title>BitFolk Issue Tracker: Operating Systems - Feature #78 (Resolved): Investigate Scientific Linux</title>
	<guid>http://tools.bitfolk.com/redmine/issues/78#change-113</guid>
	<link>http://tools.bitfolk.com/redmine/issues/78#change-113</link>
	<pubDate>Mon, 02 Jan 2012 06:34:06 +0000</pubDate>
</item>
<item>
	<title>BitFolk Issue Tracker: Operating Systems - Feature #77 (Resolved): Investigate CentOS 6</title>
	<guid>http://tools.bitfolk.com/redmine/issues/77#change-112</guid>
	<link>http://tools.bitfolk.com/redmine/issues/77#change-112</link>
	<pubDate>Mon, 02 Jan 2012 06:33:44 +0000</pubDate>
</item>
<item>
	<title>Laura Denson (laura): First FO of the year.</title>
	<guid>http://soapturtle.net/blog/?p=825</guid>
	<link>http://soapturtle.net/blog/?p=825</link>
	<description>&lt;p&gt;Though the cat is an undeserving bastard, I cranked this out today while watching the Packers and Lions play at the pub.&lt;br /&gt;
Pattern is from knitty. ( http://knitty.com/ISSUEspring03/PATTdimsum.html )  I&amp;#8217;ve also taken a bit of leftover white stockinette from where I changed up the Naughty Reindeer hat and used the sewing machine to whip up several more.  They aren&amp;#8217;t pretty, but the cat was stealing them from me as I made them, so they must be a hit.&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://soapturtle.net/blog/wp-content/uploads/2012/01/dimsum.jpg&quot;&gt;&lt;img src=&quot;http://soapturtle.net/blog/wp-content/uploads/2012/01/dimsum.jpg&quot; alt=&quot;&quot; title=&quot;dimsum&quot; width=&quot;600&quot; height=&quot;571&quot; class=&quot;aligncenter size-full wp-image-826&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description>
	<pubDate>Mon, 02 Jan 2012 05:06:42 +0000</pubDate>
</item>
<item>
	<title>Alan Pope (popey): Python 2d Physics Libraries</title>
	<guid>http://popey.com/blog/?p=1488</guid>
	<link>http://popey.com/blog/2012/01/01/python-2d-physics-libraries/</link>
	<description>&lt;p class=&quot;wp-flattr-button&quot;&gt;&lt;/p&gt;&lt;p&gt;I&amp;#8217;ve been playing with the &lt;a href=&quot;http://packages.ubuntu.com/python-elements&quot;&gt;python-elements&lt;/a&gt; but it seems like the project is dead. &lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://popey.com/blog/wp-content/uploads/2012/01/elements-127-fps-50_007.png&quot;&gt;&lt;img src=&quot;http://popey.com/blog/wp-content/uploads/2012/01/elements-127-fps-50_007-289x300.png&quot; alt=&quot;&quot; title=&quot;Elements demo&quot; width=&quot;289&quot; height=&quot;300&quot; class=&quot;aligncenter size-medium wp-image-1489&quot; /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;The upstream &lt;a href=&quot;http://elements.linuxuser.at/&quot;&gt;website&lt;/a&gt; has gone and the packages has had no updates for some time. I&amp;#8217;d like to create a simple demo/game along the lines of some of the mini games you find in &lt;a href=&quot;http://popey.com/blog/feed/images.google.com/search?tbm=isch&amp;q=warioware+balance+wii&amp;btnG=Search+Images&quot;&gt;WarioWare&lt;/a&gt; on the Nintendo Wii. The Python Elements (and box2d) libraries seem to fit the bill but I don&amp;#8217;t want to code using something that is going to disappear. &lt;/p&gt;
&lt;p&gt;Suggestions for other libraries welcome.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Update:&lt;/strong&gt; seems the python elements is maintained in debian, my mistake. Still keen to hear of libraries in this area.&lt;/p&gt;
&lt;div class=&quot;lightsocial_container&quot;&gt;&lt;a class=&quot;lightsocial_a&quot; href=&quot;http://digg.com/submit?url=http%3A%2F%2Fpopey.com%2Fblog%2F2012%2F01%2F01%2Fpython-2d-physics-libraries%2F&amp;title=Python+2d+Physics+Libraries&quot;&gt;&lt;img class=&quot;lightsocial_img&quot; src=&quot;http://popey.com/blog/wp-content/plugins/light-social/digg.png&quot; alt=&quot;Digg This&quot; title=&quot;Digg This&quot; /&gt;&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;a class=&quot;lightsocial_a&quot; href=&quot;http://www.reddit.com/submit?url=http%3A%2F%2Fpopey.com%2Fblog%2F2012%2F01%2F01%2Fpython-2d-physics-libraries%2F&amp;title=Python+2d+Physics+Libraries&quot;&gt;&lt;img class=&quot;lightsocial_img&quot; src=&quot;http://popey.com/blog/wp-content/plugins/light-social/reddit.png&quot; alt=&quot;Reddit This&quot; title=&quot;Reddit This&quot; /&gt;&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;a class=&quot;lightsocial_a&quot; href=&quot;http://www.stumbleupon.com/submit?url=http%3A%2F%2Fpopey.com%2Fblog%2F2012%2F01%2F01%2Fpython-2d-physics-libraries%2F&amp;title=Python+2d+Physics+Libraries&quot;&gt;&lt;img class=&quot;lightsocial_img&quot; src=&quot;http://popey.com/blog/wp-content/plugins/light-social/stumbleupon.png&quot; alt=&quot;Stumble Now!&quot; title=&quot;Stumble Now!&quot; /&gt;&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;a class=&quot;lightsocial_a&quot; href=&quot;http://buzz.yahoo.com/buzz?targetUrl=http%3A%2F%2Fpopey.com%2Fblog%2F2012%2F01%2F01%2Fpython-2d-physics-libraries%2F&amp;headline=Python+2d+Physics+Libraries&quot;&gt;&lt;img class=&quot;lightsocial_img&quot; src=&quot;http://popey.com/blog/wp-content/plugins/light-social/yahoo_buzz.png&quot; alt=&quot;Buzz This&quot; title=&quot;Buzz This&quot; /&gt;&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;a class=&quot;lightsocial_a&quot; href=&quot;http://www.dzone.com/links/add.html?title=Python+2d+Physics+Libraries&amp;url=http%3A%2F%2Fpopey.com%2Fblog%2F2012%2F01%2F01%2Fpython-2d-physics-libraries%2F&quot;&gt;&lt;img class=&quot;lightsocial_img&quot; src=&quot;http://popey.com/blog/wp-content/plugins/light-social/dzone.png&quot; alt=&quot;Vote on DZone&quot; title=&quot;Vote on DZone&quot; /&gt;&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;a class=&quot;lightsocial_a&quot; href=&quot;http://www.facebook.com/sharer.php?t=Python+2d+Physics+Libraries&amp;u=http%3A%2F%2Fpopey.com%2Fblog%2F2012%2F01%2F01%2Fpython-2d-physics-libraries%2F&quot;&gt;&lt;img class=&quot;lightsocial_img&quot; src=&quot;http://popey.com/blog/wp-content/plugins/light-social/facebook.png&quot; alt=&quot;Share on Facebook&quot; title=&quot;Share on Facebook&quot; /&gt;&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;a class=&quot;lightsocial_a&quot; href=&quot;http://delicious.com/save?title=Python+2d+Physics+Libraries&amp;url=http%3A%2F%2Fpopey.com%2Fblog%2F2012%2F01%2F01%2Fpython-2d-physics-libraries%2F&quot;&gt;&lt;img class=&quot;lightsocial_img&quot; src=&quot;http://popey.com/blog/wp-content/plugins/light-social/delicious.png&quot; alt=&quot;Bookmark this on Delicious&quot; title=&quot;Bookmark this on Delicious&quot; /&gt;&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;a class=&quot;lightsocial_a&quot; href=&quot;http://www.dotnetkicks.com/kick/?title=Python+2d+Physics+Libraries&amp;url=http%3A%2F%2Fpopey.com%2Fblog%2F2012%2F01%2F01%2Fpython-2d-physics-libraries%2F&quot;&gt;&lt;img class=&quot;lightsocial_img&quot; src=&quot;http://popey.com/blog/wp-content/plugins/light-social/dotnetkicks.png&quot; alt=&quot;Kick It on DotNetKicks.com&quot; title=&quot;Kick It on DotNetKicks.com&quot; /&gt;&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;a class=&quot;lightsocial_a&quot; href=&quot;http://dotnetshoutout.com/Submit?title=Python+2d+Physics+Libraries&amp;url=http%3A%2F%2Fpopey.com%2Fblog%2F2012%2F01%2F01%2Fpython-2d-physics-libraries%2F&quot;&gt;&lt;img class=&quot;lightsocial_img&quot; src=&quot;http://popey.com/blog/wp-content/plugins/light-social/dotnetshoutout.png&quot; alt=&quot;Shout it&quot; title=&quot;Shout it&quot; /&gt;&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;a class=&quot;lightsocial_a&quot; href=&quot;http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fpopey.com%2Fblog%2F2012%2F01%2F01%2Fpython-2d-physics-libraries%2F&amp;title=Python+2d+Physics+Libraries&amp;summary=&amp;source=&quot;&gt;&lt;img class=&quot;lightsocial_img&quot; src=&quot;http://popey.com/blog/wp-content/plugins/light-social/linkedin.png&quot; alt=&quot;Share on LinkedIn&quot; title=&quot;Share on LinkedIn&quot; /&gt;&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;a class=&quot;lightsocial_a&quot; href=&quot;http://www.technorati.com/faves?add=http%3A%2F%2Fpopey.com%2Fblog%2F2012%2F01%2F01%2Fpython-2d-physics-libraries%2F&quot;&gt;&lt;img class=&quot;lightsocial_img&quot; src=&quot;http://popey.com/blog/wp-content/plugins/light-social/technorati.png&quot; alt=&quot;Bookmark this on Technorati&quot; title=&quot;Bookmark this on Technorati&quot; /&gt;&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;a class=&quot;lightsocial_a&quot; href=&quot;http://twitter.com/home?status=Reading+http%3A%2F%2Fpopey.com%2Fblog%2F2012%2F01%2F01%2Fpython-2d-physics-libraries%2F&quot;&gt;&lt;img class=&quot;lightsocial_img&quot; src=&quot;http://popey.com/blog/wp-content/plugins/light-social/twitter.png&quot; alt=&quot;Post on Twitter&quot; title=&quot;Post on Twitter&quot; /&gt;&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;a class=&quot;lightsocial_a&quot; href=&quot;http://www.google.com/buzz/post?url=http%3A%2F%2Fpopey.com%2Fblog%2F2012%2F01%2F01%2Fpython-2d-physics-libraries%2F&quot;&gt;&lt;img class=&quot;lightsocial_img&quot; src=&quot;http://popey.com/blog/wp-content/plugins/light-social/google_buzz.png&quot; alt=&quot;Google Buzz (aka. Google Reader)&quot; title=&quot;Google Buzz (aka. Google Reader)&quot; /&gt;&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;/div&gt;&lt;div id=&quot;tweetbutton1488&quot; class=&quot;tw_button&quot;&gt;&lt;a href=&quot;http://twitter.com/share?url=http%3A%2F%2Fpopey.com%2Fblog%2F2012%2F01%2F01%2Fpython-2d-physics-libraries%2F&amp;text=Python%202d%20Physics%20Libraries&amp;related=popey&amp;lang=en&amp;count=horizontal&amp;counturl=http%3A%2F%2Fpopey.com%2Fblog%2F2012%2F01%2F01%2Fpython-2d-physics-libraries%2F&quot; class=&quot;twitter-share-button&quot;&gt;Tweet&lt;/a&gt;&lt;/div&gt; &lt;p&gt;&lt;a href=&quot;http://popey.com/blog/?flattrss_redirect&amp;id=1488&amp;md5=8e4eca9cf5ec1c3a5325e55241381086&quot; title=&quot;Flattr&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://popey.com/blog/wp-content/plugins/flattr/img/flattr-badge-large.png&quot; alt=&quot;flattr this!&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description>
	<pubDate>Sun, 01 Jan 2012 11:51:46 +0000</pubDate>
</item>
<item>
	<title>Tony Whitmore (tonytiger): How was your 2011?</title>
	<guid>http://tonywhitmore.co.uk/blog/?p=1238</guid>
	<link>http://tonywhitmore.co.uk/blog/2011/12/31/how-was-your-2011/</link>
	<description>&lt;p&gt;I said &lt;a href=&quot;http://tonywhitmore.co.uk/blog/2010/12/31/so-how-was-your-2010/&quot;&gt;last year&lt;/a&gt; that 2011 was going to be a &amp;#8220;game changer.&amp;#8221; Yup, I actually used &amp;#8220;game changer&amp;#8221; in public. In my defence, either I used it ironically or I said it before it was a cliché. Ahem. Has 2011 lived up to its hackneyed description? Let&amp;#8217;s have a look at some of the most significant events (in no particular order):&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Setting up my &lt;a href=&quot;http://tonywhitmore.co.uk/weddings&quot;&gt;photography business&lt;/a&gt; and actually starting to work photographing weddings!&lt;/li&gt;
&lt;li&gt;Attending &amp;#8220;The Workshop&amp;#8221; run by the awsomely-awesome &lt;a href=&quot;http://jasmine-star.com/&quot;&gt;Jasmine Star&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;Having a great week in Cumbria, despite the rain&lt;/li&gt;
&lt;li&gt;Attending my first ever Grand Prix at Silverstone&lt;/li&gt;
&lt;li&gt;A full season of doing the &lt;a href=&quot;http://podcast.ubuntu-uk.org&quot;&gt;Ubuntu Podcast&lt;/a&gt; live: the most fun season yet&lt;/li&gt;
&lt;li&gt;Flying to New York for Zoe and Stuart&amp;#8217;s wedding and had a great time&lt;/li&gt;
&lt;li&gt;Meeting &lt;a href=&quot;http://tonywhitmore.co.uk/blog/2011/07/03/splendid-chaps-all-of-them/&quot;&gt;Colin Baker, John Leeson and David Gooderson&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;The loss of both &lt;a href=&quot;http://thedoctorwhopodcast.com/podcast/the-doctor-who-podcast-episode-66/&quot;&gt;Nicholas Courtney&lt;/a&gt; and &lt;a href=&quot;http://tonywhitmore.co.uk/blog/2011/04/19/elisabeth-sladen/&quot;&gt;Elisabeth Sladen&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://oggcamp.org&quot;&gt;OggCamp&lt;/a&gt; 11: the &lt;a href=&quot;http://tonywhitmore.co.uk/blog/2011/08/17/that-was-the-oggcamp-that-was/&quot;&gt;biggest and best&lt;/a&gt; yet&lt;/li&gt;
&lt;li&gt;Attending &lt;a href=&quot;http://homecamp.org.uk/&quot;&gt;Home Camp&lt;/a&gt; 4. Mmm, vietnamese food!&lt;/li&gt;
&lt;li&gt;Helen and Jeff&amp;#8217;s 1920s themed wedding&lt;/li&gt;
&lt;li&gt;Seeing Chris in his first stage appearance in a long time&lt;/li&gt;
&lt;li&gt;Recording a &lt;a href=&quot;http://lugradio.org/episodes/108&quot;&gt;LugRadio reunion&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://tonywhitmore.co.uk/blog/2011/08/28/the-box/&quot;&gt;The Box&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;Doing very well at &lt;a href=&quot;http://www.puretechracing.com/&quot;&gt;Puretech Racing&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;Seeing &lt;a href=&quot;http://tonywhitmore.co.uk/blog/2011/06/24/as-it-occurred-to-him/&quot;&gt;Richard Herring&lt;/a&gt; live twice&lt;/li&gt;
&lt;li&gt;Visiting the &lt;a href=&quot;http://www.doctorwhoexperience.com/&quot;&gt;Doctor Who Experience&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;Completing a &lt;a href=&quot;http://tonywhitmore.co.uk/blog/2011/04/09/i-had-to-go-out-in-the-world-and-become-strong/&quot;&gt;weekend of fun and adventure&lt;/a&gt; with Graham Binns to make some great images&lt;/li&gt;
&lt;li&gt;Getting &lt;a href=&quot;http://www.ubuntu.com&quot;&gt;Ubuntu&lt;/a&gt; &lt;a href=&quot;http://tonywhitmore.co.uk/blog/2011/09/07/the-obligatory-hello-planet-ubuntu-post/&quot;&gt;membership&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;Losing a couple of stone (and so far have kept it off!)&lt;/li&gt;
&lt;li&gt;Doing fun things with Neil and Amy: A canal boat trip, a murder mystery, a tour of Christmas lights&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://tonywhitmore.co.uk/blog/2011/08/30/old-skool/&quot;&gt;Visiting&lt;/a&gt; and playing host to more family and friends than last year!&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;I&amp;#8217;m pretty pleased with that. Getting my business up and running has taken a lot of time and meant not seeing as much of some friends as I&amp;#8217;d have liked. I&amp;#8217;ll work to redress that. I think 2012 will be even more eventful though. Especially as I start a new job in January&amp;#8230;&lt;/p&gt;</description>
	<pubDate>Sat, 31 Dec 2011 18:22:04 +0000</pubDate>
</item>
<item>
	<title>Phil Spencer (CrazySpence): New addition to the fleet</title>
	<guid>http://www.philtopia.com/?p=1094</guid>
	<link>http://www.philtopia.com/?p=1094</link>
	<description>&lt;p&gt;Today I purchased the second of 3 planned locomotives to run on my layout. The first being last April when I bought my DCC system was a Chessie GP40. As you may have noticed if you have for some bizarre reason been reading my blog I like the Chessie System. Chessie however is not my only favorite railroad I also enjoy Canadian Pacific. This latest edition to the fleet is a brand new DCC equipped CPR GP35. The striking red combined with the multi mark stripes on the hood and rear bring back fond childhood train watching in downtown Niagara Falls.&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://www.philtopia.com/wp-uploads//2011/12/20111230-011252.jpg&quot; rel=&quot;lightbox[1094]&quot;&gt;&lt;img src=&quot;http://www.philtopia.com/wp-uploads//2011/12/20111230-011252.jpg&quot; alt=&quot;20111230-011252.jpg&quot; class=&quot;alignnone size-full&quot; /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://www.philtopia.com/wp-uploads//2011/12/20111230-013408.jpg&quot; rel=&quot;lightbox[1094]&quot;&gt;&lt;img src=&quot;http://www.philtopia.com/wp-uploads//2011/12/20111230-013408.jpg&quot; alt=&quot;20111230-013408.jpg&quot; class=&quot;alignnone size-full&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description>
	<pubDate>Fri, 30 Dec 2011 06:35:58 +0000</pubDate>
</item>
<item>
	<title>BitFolk Issue Tracker: Panel - Feature #54 (Resolved): Display details of IP addresses/networks assigned</title>
	<guid>http://tools.bitfolk.com/redmine/issues/54#change-111</guid>
	<link>http://tools.bitfolk.com/redmine/issues/54#change-111</link>
	<description>&lt;p&gt;Details of IPv6 prefixes are now listed on &lt;a class=&quot;external&quot; href=&quot;https://panel.bitfolk.com/dns/&quot;&gt;https://panel.bitfolk.com/dns/&lt;/a&gt;&lt;/p&gt;


	&lt;p&gt;Eventually should be able to specify reverse delegation for these as per &lt;a href=&quot;http://tools.bitfolk.com/redmine/issues/45&quot; class=&quot;issue status-1 priority-2&quot; title=&quot;Edit reverse DNS delegations for IPv6 (New)&quot;&gt;#45&lt;/a&gt;&lt;/p&gt;</description>
	<pubDate>Tue, 27 Dec 2011 11:08:46 +0000</pubDate>
</item>
<item>
	<title>Laura Denson (laura): FO: Naughty Reindeer Hat</title>
	<guid>http://soapturtle.net/blog/?p=819</guid>
	<link>http://soapturtle.net/blog/?p=819</link>
	<description>&lt;p&gt;Here&amp;#8217;s the photos of the finished hat and the one armwarmer. I am semi-pleased with the hat.  It&amp;#8217;s awesome, and the concept is great, but I think it might be too small for Todd&amp;#8217;s head with the reversible side in, and there&amp;#8217;s some pulling on the patterning that I don&amp;#8217;t care for, but it&amp;#8217;s intarsia in the round, so it is what it is.&lt;/p&gt;
&lt;div class=&quot;wpg2tag-image&quot;&gt;&lt;a href=&quot;http://soapturtle.net/blog/?page_id=462&amp;g2_itemId=7948&quot; title=&quot;toddhatfront&quot;&gt;&lt;img src=&quot;http://soapturtle.net/gallery/main.php?g2_view=core.DownloadItem&amp;g2_itemId=7950&amp;g2_serialNumber=2&quot; width=&quot;413&quot; height=&quot;500&quot; id=&quot;IFid5&quot; class=&quot;ImageFrame_none&quot; alt=&quot;toddhatfront&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;h4 class=&quot;giDescription&quot;&gt;toddhatfront&lt;/h4&gt;
&lt;/div&gt;
&lt;div class=&quot;wpg2tag-image&quot;&gt;&lt;a href=&quot;http://soapturtle.net/blog/?page_id=462&amp;g2_itemId=7951&quot; title=&quot;toddhatback&quot;&gt;&lt;img src=&quot;http://soapturtle.net/gallery/main.php?g2_view=core.DownloadItem&amp;g2_itemId=7953&amp;g2_serialNumber=2&quot; width=&quot;430&quot; height=&quot;500&quot; id=&quot;IFid6&quot; class=&quot;ImageFrame_none&quot; alt=&quot;toddhatback&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;h4 class=&quot;giDescription&quot;&gt;toddhatback&lt;/h4&gt;
&lt;/div&gt;
&lt;div class=&quot;wpg2tag-image&quot;&gt;&lt;a href=&quot;http://soapturtle.net/blog/?page_id=462&amp;g2_itemId=7954&quot; title=&quot;toddhatreverse&quot;&gt;&lt;img src=&quot;http://soapturtle.net/gallery/main.php?g2_view=core.DownloadItem&amp;g2_itemId=7956&amp;g2_serialNumber=2&quot; width=&quot;460&quot; height=&quot;500&quot; id=&quot;IFid7&quot; class=&quot;ImageFrame_none&quot; alt=&quot;toddhatreverse&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;h4 class=&quot;giDescription&quot;&gt;toddhatreverse&lt;/h4&gt;
&lt;/div&gt;
&lt;p&gt; I love the armwarmer and can&amp;#8217;t wait to wear them one day, but I still need to finish spinning the yarn for the second one&amp;#8230; &lt;/p&gt;
&lt;div class=&quot;wpg2tag-image&quot;&gt;&lt;a href=&quot;http://soapturtle.net/blog/?page_id=462&amp;g2_itemId=7957&quot; title=&quot;armwarmer1&quot;&gt;&lt;img src=&quot;http://soapturtle.net/gallery/main.php?g2_view=core.DownloadItem&amp;g2_itemId=7959&amp;g2_serialNumber=2&quot; width=&quot;500&quot; height=&quot;391&quot; id=&quot;IFid8&quot; class=&quot;ImageFrame_none&quot; alt=&quot;armwarmer1&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;h4 class=&quot;giDescription&quot;&gt;armwarmer1&lt;/h4&gt;
&lt;/div&gt;</description>
	<pubDate>Mon, 26 Dec 2011 15:24:40 +0000</pubDate>
</item>
<item>
	<title>Laura Denson (laura): Merry Christmas</title>
	<guid>http://soapturtle.net/blog/?p=814</guid>
	<link>http://soapturtle.net/blog/?p=814</link>
	<description>&lt;p&gt;Merry Christmas to those of you celebrating it.&lt;br /&gt;
Happy whatever it is you celebrate to those of you who aren&amp;#8217;t.&lt;/p&gt;
&lt;p&gt;I&amp;#8217;d show you photos of the one finished arm warmer and the finished Naughty Reindeer hat, but both need to be washed and the hat blocked for sure.  And I am worried it&amp;#8217;s going to be to small, because Todd has a big head.  Or maybe it&amp;#8217;s my imagination he&amp;#8217;s got a big head.  Maybe it&amp;#8217;s normal sized and it will be fine.  But now I am worried, none-the-less.  And shmoo won&amp;#8217;t even try it on.  He says he&amp;#8217;s not going to contribute to my crazy.  And that if I am going to be crazy about the hat, I can do it on my own.&lt;/p&gt;
&lt;p&gt;It&amp;#8217;s like he knows me or something!&lt;/p&gt;</description>
	<pubDate>Sun, 25 Dec 2011 17:37:55 +0000</pubDate>
</item>
<item>
	<title>Tony Whitmore (tonytiger): The most wonderful time of the year</title>
	<guid>http://tonywhitmore.co.uk/blog/?p=1236</guid>
	<link>http://tonywhitmore.co.uk/blog/2011/12/24/the-most-wonderful-time-of-the-year/</link>
	<description>&lt;p&gt;&lt;a href=&quot;http://tonywhitmore.co.uk/blog/wp-content/uploads/2011/12/f1603856.jpg&quot;&gt;&lt;img class=&quot;alignnone size-full wp-image-1240&quot; title=&quot;The TARDIS at Christmas&quot; src=&quot;http://tonywhitmore.co.uk/blog/wp-content/uploads/2011/12/f1603856.jpg&quot; alt=&quot;The TARDIS at Christmas&quot; width=&quot;600&quot; height=&quot;400&quot; /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;I&amp;#8217;m a big fan of Christmas. Not just because I take two weeks off work! I love preparing for the &lt;a href=&quot;http://podcast.ubuntu-uk.org/2011/12/21/s04e22-the-unbeliever/&quot;&gt;Christmas episode of the podcast&lt;/a&gt; (the version of A Christmas Carol in this year&amp;#8217;s is getting rave reviews!), spending time at home as well as travelling through the dark to visit friends and family. This year we have added rather snazzy TARDIS and Dalek decorations to the tree. And the food! Those treats which never seem appropriate at any other time of the year are suddenly justifiable!&lt;/p&gt;
&lt;p&gt;It&amp;#8217;s also a time to catch up on little projects. This year I&amp;#8217;m experimenting with a medium format camera. Even though I&amp;#8217;ve only used a few exposures, it&amp;#8217;s already had the effect of slowing down the process of making a photograph happen. I&amp;#8217;m so used to the instant feedback of a digital SLR and working iteratively to get a shot right that using a camera with no review screen, no internal light meter and only a paltry twelve exposures on a roll of film has made me really make sure I get everything set up correctly before firing the shutter. Hopefully I&amp;#8217;ll have some results to share in a few weeks.&lt;/p&gt;
&lt;p&gt;Every &lt;a href=&quot;http://tonywhitmore.co.uk/blog/2010/12/24/spread-some-cheer-this-christmas/&quot;&gt;year&lt;/a&gt; I &lt;a href=&quot;http://tonywhitmore.co.uk/blog/2009/12/20/help-support-a-floss-project-you-rely-on/&quot;&gt;make&lt;/a&gt; a &lt;a href=&quot;http://tonywhitmore.co.uk/blog/2007/01/18/belated-goodwill/&quot;&gt;Christmas&lt;/a&gt; &lt;a href=&quot;http://tonywhitmore.co.uk/blog/2007/12/23/prompt-seasonal-goodwill/&quot;&gt;donation&lt;/a&gt; to an open source software project &lt;a href=&quot;http://tonywhitmore.co.uk/blog/2005/12/24/hugin-autopano-sift-enblend-and-panorama-tools-spreading-the-seasons-goodwill/&quot;&gt;or two&lt;/a&gt; which I&amp;#8217;ve used in the preceding twelve months. This year I chose the &lt;a href=&quot;http://www.openshot.org&quot;&gt;OpenShot video editor&lt;/a&gt;. I&amp;#8217;ve been using it to edit some video projects for the lovely &lt;a href=&quot;http://www.emmalappinflowers.com/&quot;&gt;Emma Lappin Flowers&lt;/a&gt; and I hope to be able to share them with you very soon. It&amp;#8217;s a long way from being finished but hopefully the developers will deliver a stable, fast and feature-rich video editor for Linux.&lt;/p&gt;
&lt;p&gt;Merry Christmas!&lt;/p&gt;</description>
	<pubDate>Sat, 24 Dec 2011 17:40:19 +0000</pubDate>
</item>
<item>
	<title>Phil Spencer (CrazySpence): Electric turnouts</title>
	<guid>http://www.philtopia.com/?p=1082</guid>
	<link>http://www.philtopia.com/?p=1082</link>
	<description>&lt;p&gt;I finally got all the switches on my layout wired. It took about 10min per switch and there are 9 on the layout over the course of a couple weeks when I could find a few min to spare but in the end it was worth it. Now it is possible with ease to do some shunting in the inner junction to build a train for the mainline.  A few more items and it will rarely require the magic giant hand from the sky to come down and manually intervene.&lt;/p&gt;
&lt;p&gt;Next step:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Standardize couplers&lt;/li&gt;
&lt;li&gt;Uncoupling magnet&lt;/li&gt;
&lt;li&gt;Ballast the tracks&lt;/li&gt;
&lt;/ul&gt;
&lt;div&gt;&lt;img src=&quot;http://www.philtopia.com/wp-content/plugins/html5-and-flash-video-player/default_video_player.gif&quot; /&gt;&lt;/div&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;</description>
	<pubDate>Fri, 23 Dec 2011 17:56:06 +0000</pubDate>
</item>
<item>
	<title>Phil Spencer (CrazySpence): Escape from Doomsday 1.4.6</title>
	<guid>http://www.philtopia.com/?p=1043</guid>
	<link>http://www.philtopia.com/?p=1043</link>
	<description>&lt;p&gt;Doomsday is continuing on with its longest run of player activity EVER with a brand new round and update!&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Bug fixes:&lt;/strong&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Fixed error with non formation attacking that could cause a division by 0 error&lt;/li&gt;
&lt;li&gt;Adjusted Asteroid will impact i X days message by 1 day to account for 0 days issue&lt;/li&gt;
&lt;li&gt;Fixed a newplayer error where the id value was blank&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;strong&gt;Gameplay changes:&lt;/strong&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Airstrikes and spy/recon spies being caught will now add to the anti bully retaliation table if the player is significantly smaller&lt;/li&gt;
&lt;li&gt;Added colonist game variable to allow setting a minimum amount of farmers to become colonists to launch with the shuttle&lt;/li&gt;
&lt;li&gt;Added research item to give shuttle a 25% chance to miss a missile that is going to hit&lt;/li&gt;
&lt;li&gt;E-mail notification on endgame() to players who have notification set up&lt;/li&gt;
&lt;/ul&gt;</description>
	<pubDate>Tue, 20 Dec 2011 15:45:24 +0000</pubDate>
</item>
<item>
	<title>Tony Whitmore (tonytiger): Colour management on Ubuntu</title>
	<guid>http://tonywhitmore.co.uk/blog/?p=1191</guid>
	<link>http://tonywhitmore.co.uk/blog/2011/12/17/colour-management-on-ubuntu/</link>
	<description>&lt;p&gt;Any good photographer will tell you that colour management is important in ensuring that your photographs look their best regardless of where they appear, be it on screen or in print. Making sure that the screen you are using is calibrated to display colours correctly is the first step.&lt;/p&gt;
&lt;p&gt;The Windows and Mac software that came bundled with my Gretag Macbeth i1 (now available in its &lt;a href=&quot;http://www.amazon.co.uk/gp/product/B000JLO31M/ref=as_li_ss_tl?ie=UTF8&amp;tag=tonywhitmorec-21&amp;linkCode=as2&amp;camp=1634&amp;creative=19450&amp;creativeASIN=B000JLO31M&quot;&gt;second model&lt;/a&gt;) is really rather nice. A simple GUI with large, friendly buttons guides you through the process of characterising your display, then creating and installing a profile. The offerings available on &lt;a href=&quot;http://www.ubuntu.com&quot;&gt;Ubuntu&lt;/a&gt; at the time were complex and pretty unintuitive in comparison. There was &lt;a href=&quot;http://lprof.sourceforge.net/&quot;&gt;Lprof&lt;/a&gt;, which is competent but very complex to use and doesn&amp;#8217;t integrate the resultant profile easily with other applications. Then there&amp;#8217;s &lt;a href=&quot;http://hoech.net/dispcalGUI/&quot;&gt;Dispcalgui&lt;/a&gt;, a front-end to &lt;a href=&quot;http://www.argyllcms.com/&quot;&gt;ArgyllCMS&lt;/a&gt; which is closer in functionality to the bundled Windows &amp;amp; Mac software, but still a bit of a maze to get through.&lt;/p&gt;
&lt;p&gt;Fortunately things got a lot better in Ubuntu 11.04 (Natty). &lt;a href=&quot;http://projects.gnome.org/gnome-color-manager/index.html&quot;&gt;Gnome Color Manager&lt;/a&gt; is a much more simple application for characterising output devices, including monitors, and supports a range of measuring devices, including mine! I connected my device and selected the &amp;#8220;high quality&amp;#8221; measurement. After about 20 minutes of flashing squares on the screen, the profile was generated. A tickbox let me toggle it on and off, just like the Windows version.&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://tonywhitmore.co.uk/blog/wp-content/uploads/2011/09/Screenshot1.png&quot;&gt;&lt;img class=&quot;alignnone size-medium wp-image-1214&quot; title=&quot;Screenshot&quot; src=&quot;http://tonywhitmore.co.uk/blog/wp-content/uploads/2011/09/Screenshot1-300x199.png&quot; alt=&quot;&quot; width=&quot;300&quot; height=&quot;199&quot; /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;You can make your new display profile the default for both the current and other users of the system, but at the moment it doesn&amp;#8217;t apply to the login screen. This &lt;a href=&quot;http://libregraphicsworld.org/articles.php?article_id=42&quot;&gt;interview with Richard Hughes&lt;/a&gt; shows that further developments are planned which will make colour management available more easily for all devices and users on a system.&lt;/p&gt;</description>
	<pubDate>Sat, 17 Dec 2011 09:35:32 +0000</pubDate>
</item>
<item>
	<title>Phil Spencer (CrazySpence): Left field</title>
	<guid>http://www.philtopia.com/?p=1062</guid>
	<link>http://www.philtopia.com/?p=1062</link>
	<description>&lt;p&gt;This ones a little far fetched, but for 10 years now I always felt the Windows XP default background looked familiar and it appears the answer has been found.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://www.philtopia.com/wp-uploads//2011/12/XPDefaultBackground.jpg&quot; rel=&quot;lightbox[1062]&quot;&gt;&lt;img class=&quot;alignleft size-medium wp-image-1068&quot; title=&quot;XPDefaultBackground&quot; src=&quot;http://www.philtopia.com/wp-uploads//2011/12/XPDefaultBackground-300x225.jpg&quot; alt=&quot;&quot; width=&quot;270&quot; height=&quot;203&quot; /&gt;&lt;/a&gt;&lt;a href=&quot;http://www.philtopia.com/wp-uploads//2011/12/480px-Yars_funeral_hologram.jpg&quot; rel=&quot;lightbox[1062]&quot;&gt;&lt;img class=&quot;alignright size-medium wp-image-1069&quot; title=&quot;480px-Yar's_funeral_hologram&quot; src=&quot;http://www.philtopia.com/wp-uploads//2011/12/480px-Yars_funeral_hologram-300x300.jpg&quot; alt=&quot;&quot; width=&quot;270&quot; height=&quot;270&quot; /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Mind. Blown.&lt;/p&gt;</description>
	<pubDate>Tue, 13 Dec 2011 16:24:34 +0000</pubDate>
</item>
<item>
	<title>BitFolk Issue Tracker: Misc infrastructure - Bug #89 (New): rescue system should be updated from Debian etch</title>
	<guid>http://tools.bitfolk.com/redmine/issues/89</guid>
	<link>http://tools.bitfolk.com/redmine/issues/89</link>
	<description>&lt;p&gt;The rescue VM as accessed via the &quot;rescue&quot; command from Xen Shell currently boots into a Debian etch environment. etch has been end of life for a long time and as a result it is not possible to easily install packages except by going to archive.debian.org for them. Also this means there will be unfixed security bugs in kernel and packages.&lt;/p&gt;


	&lt;p&gt;The rescue system has very little writeable disk space of its own (half the customer's RAM, by default), so installing new software isn't that feasible anyway. The security issues need to be addressed however.&lt;/p&gt;</description>
	<pubDate>Sun, 11 Dec 2011 21:43:43 +0000</pubDate>
</item>
<item>
	<title>Phil Spencer (CrazySpence): Back to 1:87</title>
	<guid>http://www.philtopia.com/?p=1022</guid>
	<link>http://www.philtopia.com/?p=1022</link>
	<description>&lt;p&gt;&lt;a href=&quot;http://www.philtopia.com/wp-uploads//2011/12/IMG_0050.jpg&quot; rel=&quot;lightbox[1022]&quot;&gt;&lt;img class=&quot;alignleft size-medium wp-image-1054&quot; title=&quot;IMG_0050&quot; src=&quot;http://www.philtopia.com/wp-uploads//2011/12/IMG_0050-300x224.jpg&quot; alt=&quot;&quot; width=&quot;300&quot; height=&quot;224&quot; /&gt;&lt;/a&gt;It&amp;#8217;s been some time since my last model railroad update but the quest is not over yet, far from it. I had spent the summer at my summer home and some house issues since returning had prevented me from resuming my hobby.&lt;/p&gt;
&lt;p&gt;I decided to final try out wiring one of my several switches to work out any kinks I may run into along the way so that I can plan and quickly implement the other switches to some sort of standard implementation.&lt;/p&gt;
&lt;p&gt;Initially I was going to have the wires come up under the switch but that proved impossible to maintain a connection or to screw down the wires. What I ended up doing was coming up slightly behind the switch motor and covering it with black electrical tape to cover up the existence of the wiring.&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://www.philtopia.com/wp-uploads//2011/12/IMG_0042.jpg&quot; rel=&quot;lightbox[1022]&quot;&gt;&lt;img class=&quot;alignright size-medium wp-image-1045&quot; title=&quot;IMG_0042&quot; src=&quot;http://www.philtopia.com/wp-uploads//2011/12/IMG_0042-300x224.jpg&quot; alt=&quot;&quot; width=&quot;300&quot; height=&quot;224&quot; /&gt;&lt;/a&gt; Once all the switches are done I will look into some type of gravel or bush modelling to cover up the motor all together. I had considered under the table motors but this is m first return to modelling in 15 years so I decided it would be ok if I wasn&amp;#8217;t entirely discreet this time around.&lt;/p&gt;
&lt;p&gt;The switch motor worked perfectly but I have now run out of wire so the rest of the motors will have to wait. I then decided to final nail down the inner main and the branch line as they were still not securely fastened to the table. This took some time as I had to make sure the tracks remained properly aligned to avoid an annoying mismatch once I got to the last piece. After had finished a large section of track I would run a loco with a car on each end of it backwards and forwards over the action to test power and look for derailments.&lt;a href=&quot;http://www.philtopia.com/wp-uploads//2011/12/IMG_0048.jpg&quot; rel=&quot;lightbox[1022]&quot;&gt;&lt;img class=&quot;alignleft size-medium wp-image-1050&quot; title=&quot;IMG_0048&quot; src=&quot;http://www.philtopia.com/wp-uploads//2011/12/IMG_0048-224x300.jpg&quot; alt=&quot;&quot; width=&quot;224&quot; height=&quot;300&quot; /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Over the sumer my grey cat had decided the train was a sleeping area and turned several sections of green to a hairy sort of grey so I cleared all buildings and train equipment off the track and vacuumed the layout. I used a brush attachment for the extremely hairy areas. I also took the time to clean up the area behind the layout which was a mess of switch motors,wires, spare tracks and tools into a much more organized area.&lt;/p&gt;
&lt;p&gt;I got a lot of good work done today and there will be more to follow in the coming months!&lt;/p&gt;</description>
	<pubDate>Thu, 08 Dec 2011 01:21:26 +0000</pubDate>
</item>
<item>
	<title>Kevin Whelan (Eckrall): Twitter Weekly Updates for 2011-12-04</title>
	<guid>http://www.eckrall.co.uk/?p=130</guid>
	<link>http://www.eckrall.co.uk/?p=130</link>
	<description>&lt;ul class=&quot;aktt_tweet_digest&quot;&gt;
&lt;li&gt;I just unlocked the “Mall Rat” badge on @&lt;a href=&quot;http://twitter.com/foursquare&quot; class=&quot;aktt_username&quot;&gt;foursquare&lt;/a&gt;! Time for a fancy pretzel. &lt;a href=&quot;http://t.co/rjdcKwrW&quot; rel=&quot;nofollow&quot;&gt;http://t.co/rjdcKwrW&lt;/a&gt; &lt;a href=&quot;http://twitter.com/Eckrall/statuses/141907855757414400&quot; class=&quot;aktt_tweet_time&quot;&gt;#&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;Out for &amp;#039;beer tastes best thursdays&amp;#039; in Kingston, Hella yeah &lt;a href=&quot;http://twitter.com/Eckrall/statuses/142327616639213568&quot; class=&quot;aktt_tweet_time&quot;&gt;#&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;</description>
	<pubDate>Sun, 04 Dec 2011 23:05:00 +0000</pubDate>
</item>
<item>
	<title>Graham Bleach (gdb): Migrating to Jekyll from Personal Weblog</title>
	<guid>http://www.gdb.me/software/migrating-to-jekyll</guid>
	<link>http://www.gdb.me/software/migrating-to-jekyll.html</link>
	<description>&lt;p&gt;This weekend I wrote some code to extract my posts from &lt;a href=&quot;http://www.kyne.com.au/~mark/software/weblog.php&quot;&gt;Personal Weblog&lt;/a&gt; and put them into a Jekyll-friendly format.&lt;/p&gt;

&lt;p&gt;I suspect that few people were using Personal Weblog in the first place and of those, even fewer will migrate to Jekyll, so it&amp;#8217;s unlikely that this will be of much use to many people, but I tidied it up a bit and &lt;a href=&quot;https://github.com/bleach/pw2jekyll&quot;&gt;put it up on github anyway&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;The import isn&amp;#8217;t very reliable, especially if there&amp;#8217;s less than ideal HTML inside the blog posts and you might find yourself manually editing HTML to edit the post.&lt;/p&gt;</description>
	<pubDate>Sun, 04 Dec 2011 19:00:00 +0000</pubDate>
</item>
<item>
	<title>Graham Bleach (gdb): Moving stuff around</title>
	<guid>http://www.gdb.me/website/moving-stuff-around</guid>
	<link>http://www.gdb.me/website/moving-stuff-around.html</link>
	<description>&lt;p&gt;For the past year or so my personal website has been in some disrepair; the RSS feed was returning HTML and there was no way to get to most of the blog entries at all. It was all on a domain called darkskills.org.uk, hosted by a third party. Both of these are things that I grew out of a long time ago and the source of some embarrassment. Sorting these things out has been too much like the day job for me to muster any enthusiasm.&lt;/p&gt;

&lt;p&gt;I made a few attempts to migrate everything to an open source CMS, but these petered out after getting irritated with Wordpress or trying to glue the various bits of Django together to do what I want. Drupal, Wordpress, Django and all the other full-featured content management systems and frameworks I tried can be made to do what I want, but at the cost of spending hours learning their features, choosing styles and enabling plugins. Once that&amp;#8217;s all done there&amp;#8217;s the ongoing patching for security updates.&lt;/p&gt;

&lt;p&gt;This weekend I really should have been doing something useful with my time, but instead I ended up migrating my blog entries to a static site, running on my &lt;a href=&quot;http://www.bitfolk.com&quot;&gt;BitFolk VPS&lt;/a&gt;, with pages generated by &lt;a href=&quot;http://jekyllrb.com/&quot;&gt;Jekyll&lt;/a&gt;. I combined this with a change of domain name and using &lt;a href=&quot;http://twitter.github.com/bootstrap&quot;&gt;Bootstrap&lt;/a&gt; as my stylesheet. The spartan design isn&amp;#8217;t a great demonstration of what you can do with Bootstrap; there are some clear examples on their site that are well worth looking at if you like to avoid writing CSS at all costs.&lt;/p&gt;

&lt;p&gt;One surprising outcome is that I seem to have regained some enthusiasm for writing on the web and making web pages. I&amp;#8217;ve put this down to how &lt;em&gt;easy&lt;/em&gt; it is to write in Markdown using a text editor and not having to worry about HTML. It feels like the Jekyll workflow is pretty close to my ideal way of making a simple site.&lt;/p&gt;

&lt;p&gt;Static pages mean that I can&amp;#8217;t host comments without using a javascript solution like Disqus, but that also means that I won&amp;#8217;t have to deal with comment spam, which seems like another maintenance win.&lt;/p&gt;

&lt;p&gt;I still have a few things to migrate over and then we&amp;#8217;ll see how long my enthusiasm lasts.&lt;/p&gt;</description>
	<pubDate>Sun, 04 Dec 2011 00:00:00 +0000</pubDate>
</item>
<item>
	<title>Phil Spencer (CrazySpence): Doomsday 1.4.5</title>
	<guid>http://www.philtopia.com/?p=1013</guid>
	<link>http://www.philtopia.com/?p=1013</link>
	<description>&lt;p&gt;A new round and new version of Doomsday has started! Congrats to FiReMaGe who after dying mid game came back in another 110HK to win the game!&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Gameplay Changes:&lt;/strong&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Formation command: Players can now set the order of which units attack in battle, this should increase the value of manufactured units late in the game&lt;/li&gt;
&lt;li&gt;Air strike changes: If you have multiple bombers they will each (upto a max of 5) launch a bombing run against the enemy. This should make bombing more valuable than just for bombing the shuttle factory.&lt;/li&gt;
&lt;li&gt;Increased Coffee, 40 hour work week, urban planning research time as they are end game items and were being achieved too early&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;strong&gt;BugFixes:&lt;/strong&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Fixed session issue where the in game source data would be terminated after 10min of inactivity instead of the proper 60&lt;/li&gt;
&lt;li&gt;Fixed issues with Sessions and death&lt;/li&gt;
&lt;li&gt;Fixed issue with e-mail communication causing game shut down&lt;/li&gt;
&lt;li&gt;Fixed issue with duplicating statistics tables from players using non web clients to return to the game&lt;/li&gt;
&lt;li&gt;Website improvements to better handle when the game server is not available&lt;/li&gt;
&lt;/ul&gt;
&lt;div&gt;&lt;strong&gt;Administrative:&lt;/strong&gt;&lt;/div&gt;
&lt;div&gt;
&lt;ul&gt;
&lt;li&gt;Game configuration output to log with variable names on game init&lt;/li&gt;
&lt;li&gt;If an asteroid round is active game initialization checks for the asteroid and adds one if not present&lt;/li&gt;
&lt;li&gt;Added ai_count to Game options for the amount of NPC that should be in game&lt;/li&gt;
&lt;li&gt;Added a check to game initialization, if no AI are present add ai_count to game&lt;/li&gt;
&lt;li&gt;Added read item to session_log table. When you hit clear log on the Website it will only clear items you have seen to reduce the chance of missed information&lt;/li&gt;
&lt;li&gt;Added session log clean up to end game to curb session log build up over the last 3 months, cleans read logs of active users and all old logs of inactive&lt;/li&gt;
&lt;li&gt;Moved the game variable set up and initialization into dd_game_setup() so that it can be executed during start up or after endgame() to allow the game rounds to transition seamlessly with no administrative intervention required&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Play Doomsday!&lt;/p&gt;
&lt;/div&gt;
&lt;div&gt;Web @ &lt;a href=&quot;http://doomsday.philtopia.com&quot; target=&quot;_blank&quot;&gt;http://doomsday.philtopia.com&lt;/a&gt;&lt;/div&gt;
&lt;div&gt;IRC @ irc.blitzed.org #Doomsday&lt;/div&gt;</description>
	<pubDate>Fri, 02 Dec 2011 17:49:38 +0000</pubDate>
</item>
<item>
	<title>Phil Spencer (CrazySpence): Hah!</title>
	<guid>http://www.philtopia.com/?p=1028</guid>
	<link>http://www.philtopia.com/?p=1028</link>
	<description>&lt;p&gt;&lt;a href=&quot;http://www.philtopia.com/wp-uploads//2011/12/20111201-110651.jpg&quot; rel=&quot;lightbox[1028]&quot;&gt;&lt;img src=&quot;http://www.philtopia.com/wp-uploads//2011/12/20111201-110651.jpg&quot; alt=&quot;20111201-110651.jpg&quot; class=&quot;alignnone size-full&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description>
	<pubDate>Thu, 01 Dec 2011 16:07:35 +0000</pubDate>
</item>
<item>
	<title>Matthew Walster (dotwaffle): dotwaffle</title>
	<guid>http://dotwaffle.wordpress.com/?p=362</guid>
	<link>http://dotwaffle.wordpress.com/2011/11/30/pensions-facebook/</link>
	<description>&lt;p&gt;As requested, this is copied from my Facebook status:&lt;/p&gt;
&lt;blockquote&gt;&lt;p&gt;If you&amp;#8217;re under 40 and think you&amp;#8217;re going to get the same pension deal that people get today, you&amp;#8217;re delusional. Why should you stop working and have everyone pay for you to have the rest of your life as a jolly, just because you&amp;#8217;ve reached a certain age? &lt;/p&gt;
&lt;p&gt;Pensions should be for those who can&amp;#8217;t work any more due to an inability to do the job because of age-related problems. Yes, that means some people will end up working until they&amp;#8217;re 80, but it also means some people will retire in their 40s. If you retire because of your age, you don&amp;#8217;t get to play the age discrimination card anymore, and I&amp;#8217;ll have no problem openly mocking you because you&amp;#8217;re making me pay for your false sense of entitlement. &lt;/p&gt;
&lt;p&gt;Past generations did everything they could for the future generations that followed; your generation got us into this economic mess, you can bloody well fix it before you decide it&amp;#8217;s time to &amp;#8220;cash out&amp;#8221; on a 20 year holiday.
&lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;As a follow up to one of the comments, I also wrote:&lt;/p&gt;
&lt;blockquote&gt;&lt;p&gt;Indeed, the public sector get paid roughly the same as the private sector, with the same pension entitlements (plus &amp;gt;85% take up the additional pension offered, compared to ~15% in the private sector), they retire earlier (some as early as 50!) and they generally get more favourable holiday arrangements, flexible working and better access to employment tribunals/unions!&lt;/p&gt;&lt;/blockquote&gt;
&lt;br /&gt;  &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/gocomments/dotwaffle.wordpress.com/362/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/comments/dotwaffle.wordpress.com/362/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/godelicious/dotwaffle.wordpress.com/362/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/delicious/dotwaffle.wordpress.com/362/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/gofacebook/dotwaffle.wordpress.com/362/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/facebook/dotwaffle.wordpress.com/362/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/gotwitter/dotwaffle.wordpress.com/362/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/twitter/dotwaffle.wordpress.com/362/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/gostumble/dotwaffle.wordpress.com/362/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/stumble/dotwaffle.wordpress.com/362/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/godigg/dotwaffle.wordpress.com/362/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/digg/dotwaffle.wordpress.com/362/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/goreddit/dotwaffle.wordpress.com/362/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/reddit/dotwaffle.wordpress.com/362/&quot; /&gt;&lt;/a&gt; &lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://stats.wordpress.com/b.gif?host=dotwaffle.wordpress.com&amp;blog=11080249&amp;post=362&amp;subd=dotwaffle&amp;ref=&amp;feed=1&quot; width=&quot;1&quot; height=&quot;1&quot; /&gt;</description>
	<pubDate>Wed, 30 Nov 2011 08:17:27 +0000</pubDate>
</item>
<item>
	<title>Andy Smith (grifferz): The Intruder™</title>
	<guid>http://strugglers.net/~andy/blog/?p=928</guid>
	<link>http://strugglers.net/~andy/blog/2011/11/25/the-intruder%e2%84%a2/</link>
	<description>&lt;p&gt;&lt;/p&gt;
&lt;div&gt;
&lt;p&gt;&amp;lt;grifferz&amp;gt; I want some sort of silicone stopper thing to put on top of my pint glasses when I put them in the freezer, so it forces the water up the sides and freezes them in a goblet shape, thus increasing the surface area of the ice&lt;/p&gt;
&lt;p&gt;&amp;lt;grifferz&amp;gt; the top could be elasticated to fit varying diameters of glass&lt;/p&gt;
&lt;p&gt;&amp;lt;grifferz&amp;gt; basically imagine a dildo with an elasticated base&lt;/p&gt;
&lt;p&gt;&amp;lt;grifferz&amp;gt; an ice-intruding dildo&lt;/p&gt;
&lt;p&gt;&amp;lt;MurkyGoth&amp;gt; &amp;#8230;yes, it&amp;#8217;s another Friday night on #bitfolk&lt;/p&gt;
&lt;p&gt;&amp;lt;Robert&amp;gt; grifferz: do all of your glasses have the same girth?&lt;/p&gt;
&lt;p&gt;&amp;lt;grifferz&amp;gt; yes (I only have three)&lt;/p&gt;
&lt;p&gt;&amp;lt;Robert&amp;gt; grifferz: do you put your glasses vertical or horizontal in the freezer?&lt;/p&gt;
&lt;p&gt; * MurkyGoth doesn&amp;#8217;t like the way this is heading&amp;#8230;&lt;/p&gt;
&lt;p&gt;&amp;lt;grifferz&amp;gt; you&amp;#8217;re asking me how I orient a half full glass of water in the freezer?&lt;/p&gt;
&lt;p&gt;&amp;lt;Robert&amp;gt; yes grifferz&lt;/p&gt;
&lt;p&gt;&amp;lt;grifferz&amp;gt; get tae fuck&lt;/p&gt;
&lt;p&gt;&amp;lt;Robert&amp;gt; presumably vertically&amp;#8230;&lt;/p&gt;
&lt;p&gt;&amp;lt;Robert&amp;gt; but you might do it diagonally&lt;/p&gt;
&lt;p&gt;&amp;lt;MurkyGoth&amp;gt; Robert &amp;#8220;The Mad Inventor&amp;#8221; Leverington and Andy &amp;#8220;One man, two cans&amp;#8221; Smith&lt;/p&gt;
&lt;p&gt;&amp;lt;Robert&amp;gt; anyway, my point is i reckon this might be something you could do on a 3d printer&lt;/p&gt;
&lt;p&gt;&amp;lt;MurkyGoth&amp;gt; #whatcouldpossiblygowrong&lt;/p&gt;
&lt;p&gt;&amp;lt;Robert&amp;gt; do it as an insert that you put the glass upside down on top of&lt;/p&gt;
&lt;p&gt;&amp;lt;MurkyGoth&amp;gt; DO IT&lt;/p&gt;
&lt;p&gt;&amp;lt;MurkyGoth&amp;gt; Go to the London Hackspace and print yourself out a dildo&lt;/p&gt;
&lt;p&gt;&amp;lt;MurkyGoth&amp;gt; THE INTERNET DEMANDS IT&lt;/p&gt;
&lt;p&gt;&amp;lt;plett&amp;gt; &amp;#8220;Hi. Can I print an ice-dildo on your 3D printer?&amp;#8221;&lt;/p&gt;
&lt;p&gt;&amp;lt;Robert&amp;gt; this will seal the water in and should be safe to push it out if it expands too much&lt;/p&gt;
&lt;p&gt;&amp;lt;grifferz&amp;gt; I think The Intruder™ would have to be made of a material that &amp;#8220;gives&amp;#8221; (steady, Dave2) otherwise you wouldn&amp;#8217;t be able to withdraw it (matron) from the ice&lt;/p&gt;
&lt;p&gt;&amp;lt;Dave2&amp;gt; :O&lt;/p&gt;
&lt;p&gt;&amp;lt;plett&amp;gt; I was expecting Dave2 to join in after: 21:02 &amp;lt;Robert&amp;gt; but you might do it diagonally&lt;/p&gt;
&lt;p&gt;&amp;lt;Robert&amp;gt; grifferz: perhaps if you didn&amp;#8217;t mind your Intruder being triangular you could design it such that it should be easy to pull out&lt;/p&gt;
&lt;p&gt;&amp;lt;Robert&amp;gt; *pyramidical not triangular&lt;/p&gt;
&lt;p&gt;&amp;lt;grifferz&amp;gt; hmm yes give it a notable camber..&lt;/p&gt;
&lt;p&gt;&amp;lt;grifferz&amp;gt; I reckon ice would still grip it fairly strong&lt;/p&gt;
&lt;p&gt;&amp;lt;MurkyGoth&amp;gt; Use a plastic cup of ice?&lt;/p&gt;
&lt;p&gt;&amp;lt;grifferz&amp;gt; nice one, lateral thinking&lt;/p&gt;
&lt;p&gt;&amp;lt;grifferz&amp;gt; little plastic cup with some ice cubes in..&lt;/p&gt;
&lt;p&gt;&amp;lt;grifferz&amp;gt; let&amp;#8217;s see if I can find one right now!&lt;/p&gt;
&lt;p&gt;&amp;lt;grifferz&amp;gt; #BitFolk is doing &lt;b&gt;science&lt;/b&gt;&lt;/p&gt;
&lt;p&gt;&amp;lt;MurkyGoth&amp;gt; With beer&lt;/p&gt;
&lt;p&gt;&amp;lt;MurkyGoth&amp;gt; The best kind of science&lt;/p&gt;
&lt;p&gt; * MurkyGoth goes to solve the problems in the Middle East&lt;/p&gt;
&lt;p&gt;&amp;lt;plett&amp;gt; It sounds like grifferz might actually want &lt;a href=&quot;http://www.paramountzone.com/ice-tankard.htm&quot;&gt;http://www.paramountzone.com/ice-tankard.htm&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&amp;lt;find&amp;gt; plett: &lt;a href=&quot;http://www.paramountzone.com/ice-tankard.htm&quot;&gt;http://a.vu/9dix&lt;/a&gt; &amp;#8211; Ice Tankard &amp;#8211; Only £3.99 &amp;#8211; Fast UK Delivery&lt;/p&gt;
&lt;p&gt;&amp;lt;MurkyGoth&amp;gt; You must be new here&lt;/p&gt;
&lt;p&gt;&amp;lt;MurkyGoth&amp;gt; On #bitfolk, one does not simply purchase the solution (for a reasonable sum of money)&lt;/p&gt;
&lt;p&gt;&amp;lt;MurkyGoth&amp;gt; Channel rules demand time, effort and money are spent coming up with a plan which, at best, may only incidentally solve the original problem, and not very efficiently either&lt;/p&gt;
&lt;p&gt;&amp;lt;MurkyGoth&amp;gt; (and for some reason, I just thought &amp;#8220;Hmm, haven&amp;#8217;t heard from so_solid_moo for a while&amp;#8230;&amp;#8221;)&lt;/p&gt;
&lt;p&gt;&amp;lt;plett&amp;gt; In that case, the 3D printed ice dildo is clearly the best possible solution to the problem at hand&lt;/p&gt;
&lt;p&gt;&amp;lt;MurkyGoth&amp;gt; I&amp;#8217;ll ice dildo YOUR ha&amp;#8230;never mind&amp;#8230;&lt;/p&gt;
&lt;p&gt;&amp;lt;grifferz&amp;gt; plett, nah, I want the ice in the drink as well (eventually)&lt;/p&gt;
&lt;p&gt;&amp;lt;grifferz&amp;gt; anyway&lt;/p&gt;
&lt;p&gt;&amp;lt;grifferz&amp;gt; I didn&amp;#8217;t have any small plastic cups&lt;/p&gt;
&lt;p&gt;&amp;lt;grifferz&amp;gt; so I cut the top off a small empty drink bottle and filled it with chick peas to weigh it down&lt;/p&gt;
&lt;p&gt;&amp;lt;grifferz&amp;gt; my concern is that it will still be too hard to remove&lt;/p&gt;
&lt;p&gt;&amp;lt;grifferz&amp;gt; I&amp;#8217;ve taken a photo, hang on&lt;/p&gt;
&lt;p&gt;&amp;lt;MurkyGoth&amp;gt; With the chickpeas removed, the soft plastic bottle should flex and be removable&lt;/p&gt;
&lt;p&gt;&amp;lt;MurkyGoth&amp;gt; Failing that, fill plastic bottle with warm water, to melt the ice right next to the bottle, allowing the bottle to be removed&lt;/p&gt;
&lt;p&gt;&amp;lt;grifferz&amp;gt; MurkyGoth, yeah that&amp;#8217;s what I figured. might still try the small cup method though as it will be much faster to.. deploy&lt;/p&gt;
&lt;p&gt; * MurkyGoth registers onemantwocups.com&lt;/p&gt;
&lt;/div&gt;
&lt;p&gt;&lt;a href=&quot;http://gallery.strugglers.net/v/Andy/web_media/25112011195.jpg.html?g2_imageViewsIndex=3&quot;&gt;&lt;img class=&quot;bcentered&quot; src=&quot;http://gallery.strugglers.net/d/22094-2/25112011195.jpg&quot; width=&quot;430&quot; height=&quot;323&quot; alt=&quot;SCIENCE!&quot; /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;I&amp;#8217;ll let you know how it goes.&lt;/p&gt;
&lt;p&gt;&lt;b&gt;Update 2011-11-26:&lt;/b&gt;&lt;br /&gt;
&lt;a href=&quot;http://gallery.strugglers.net/v/Andy/web_media/TheIntruder/26112011197.jpg.html&quot;&gt;&lt;img class=&quot;balignright&quot; src=&quot;http://gallery.strugglers.net/d/22104-2/26112011197.jpg&quot; width=&quot;150&quot; height=&quot;113&quot; /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://gallery.strugglers.net/v/Andy/web_media/TheIntruder/26112011196.jpg.html&quot;&gt;&lt;img class=&quot;balignright&quot; src=&quot;http://gallery.strugglers.net/d/22109-2/26112011196.jpg&quot; width=&quot;150&quot; height=&quot;113&quot; /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://gallery.strugglers.net/v/Andy/web_media/TheIntruder/26112011198.jpg.html&quot;&gt;&lt;img class=&quot;balignright&quot; src=&quot;http://gallery.strugglers.net/d/22098-2/26112011198.jpg&quot; width=&quot;150&quot; height=&quot;113&quot; /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;The first attempt worked fairly well. It was not possible to remove the bottle from the ice without filling it with some warm water for a few seconds. I think this was probably because the bottle had a very slight bulge at the bottom.&lt;/p&gt;
&lt;p&gt;It would be hard to find a perfectly cylindrical or even tapering plastic bottle, so I will next try the original plastic cup suggestion.&lt;/p&gt;
&lt;p&gt;&lt;br clear=&quot;all&quot; /&gt;&lt;/p&gt;</description>
	<pubDate>Fri, 25 Nov 2011 21:50:21 +0000</pubDate>
</item>
<item>
	<title>Phil Spencer (CrazySpence): Not the same!</title>
	<guid>http://www.philtopia.com/?p=1020</guid>
	<link>http://www.philtopia.com/?p=1020</link>
	<description>&lt;p&gt;&lt;a href=&quot;http://www.philtopia.com/wp-uploads//2011/11/20111124-142538.jpg&quot; rel=&quot;lightbox[1020]&quot;&gt;&lt;img src=&quot;http://www.philtopia.com/wp-uploads//2011/11/20111124-142538.jpg&quot; alt=&quot;20111124-142538.jpg&quot; class=&quot;alignnone size-full&quot; /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://www.philtopia.com/wp-uploads//2011/11/20111124-142550.jpg&quot; rel=&quot;lightbox[1020]&quot;&gt;&lt;img src=&quot;http://www.philtopia.com/wp-uploads//2011/11/20111124-142550.jpg&quot; alt=&quot;20111124-142550.jpg&quot; class=&quot;alignnone size-full&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description>
	<pubDate>Thu, 24 Nov 2011 19:26:32 +0000</pubDate>
</item>
<item>
	<title>Kevin Whelan (Eckrall): Twitter Weekly Updates for 2011-11-20</title>
	<guid>http://www.eckrall.co.uk/?p=129</guid>
	<link>http://www.eckrall.co.uk/?p=129</link>
	<description>&lt;ul class=&quot;aktt_tweet_digest&quot;&gt;
&lt;li&gt;RT @&lt;a href=&quot;http://twitter.com/LunaticFish&quot; class=&quot;aktt_username&quot;&gt;LunaticFish&lt;/a&gt;: Just blitzed the laptop and installed Xubuntu 11.10 .. so much simpler than all that Unity crap. &lt;a href=&quot;http://twitter.com/Eckrall/statuses/136380382961610753&quot; class=&quot;aktt_tweet_time&quot;&gt;#&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;RT: COMP TIME!! WIN the hardcover of THE JOKER: A Visual History of the Clown Prince of Crime &amp;#8211; follow @&lt;a href=&quot;http://twitter.com/ForbiddenPLanet&quot; class=&quot;aktt_username&quot;&gt;ForbiddenPLanet&lt;/a&gt;  and RT to enter! &lt;a href=&quot;http://twitter.com/Eckrall/statuses/136433914486071296&quot; class=&quot;aktt_tweet_time&quot;&gt;#&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;</description>
	<pubDate>Sun, 20 Nov 2011 23:05:00 +0000</pubDate>
</item>
<item>
	<title>BitFolk Issue Tracker: Backups - Feature #84: rsync.net integration</title>
	<guid>http://tools.bitfolk.com/redmine/issues/84#change-110</guid>
	<link>http://tools.bitfolk.com/redmine/issues/84#change-110</link>
	<description>&lt;p&gt;I've only skimmed your response so I might be missing something, but this sounds like its mainly a cron/scheduling issue.&lt;/p&gt;


	&lt;p&gt;I'd also be hesitant to make a backup of a backup - doesn't this introduce another point of failure for both backups? For instance if the bitfolk backup became corrupt or was misconfigured in some way then this would be mirrored off-site and both backups would have the same fault.&lt;/p&gt;</description>
	<pubDate>Thu, 17 Nov 2011 11:37:10 +0000</pubDate>
</item>
<item>
	<title>BitFolk Issue Tracker: Monitoring - Feature #88 (New): Client SSL certificate based login</title>
	<guid>http://tools.bitfolk.com/redmine/issues/88</guid>
	<link>http://tools.bitfolk.com/redmine/issues/88</link>
	<description>&lt;p&gt;Hi,&lt;/p&gt;


	&lt;p&gt;I recently registered for an account at startssl.com and was interested to see that they are using client SSL certificates rather than username and passwords for login and wondered if this would be something that bitfolk might be able to offer?&lt;/p&gt;


	&lt;p&gt;I don't really have much knowledge of SSL, so this may be completely impractical or not feasible for some reason, but I thought I'd suggest it as it seemed advantageous from both a security and single-signon/ease of use viewpoint.&lt;/p&gt;</description>
	<pubDate>Thu, 17 Nov 2011 11:25:26 +0000</pubDate>
</item>
<item>
	<title>Andy Smith (grifferz): rsync: “Inflate (token) returned -5″</title>
	<guid>http://strugglers.net/~andy/blog/?p=925</guid>
	<link>http://strugglers.net/~andy/blog/2011/11/17/rsync-inflate-token-returned-5/</link>
	<description>&lt;p&gt;Today one of my &lt;b&gt;rsync&lt;/b&gt; backups began failing with:&lt;/p&gt;
&lt;pre class=&quot;code&quot;&gt;
inflate (token) returned -5
rsync error: error in rsync protocol data stream (code 12) at token.c(604) [receiver=3.0.3]
rsync: writefd_unbuffered failed to write 373 bytes [generator]: Broken pipe (32)
rsync error: error in rsync protocol data stream (code 12) at io.c(1544) [generator=3.0.3]
&lt;/pre&gt;
&lt;p&gt;It was repeatable when trying to transfer the same file (a large gzipped SQL dump file).&lt;/p&gt;
&lt;p&gt;It turned out to be &lt;a href=&quot;http://www.mail-archive.com/rsync@lists.samba.org/msg26098.html&quot;&gt;a bug in that version of rsync&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;rsync 3.0.3 comes with &lt;a href=&quot;http://wiki.debian.org/DebianLenny&quot;&gt;Debian lenny&lt;/a&gt;. In order to get a newer version I have had to use &lt;a href=&quot;http://backports.debian.org/&quot;&gt;lenny-backports&lt;/a&gt; for this. That gets me &lt;a href=&quot;http://packages.debian.org/lenny-backports/rsync&quot;&gt;rsync v3.0.7&lt;/a&gt;, which does not exhibit this bug.&lt;/p&gt;
&lt;p&gt;(Yes, I am aware that &lt;a href=&quot;http://wiki.debian.org/DebianSqueeze&quot;&gt;squeeze&lt;/a&gt; has been released and this host should be upgraded to that. There is security support for lenny until at least February 2012.)&lt;/p&gt;</description>
	<pubDate>Thu, 17 Nov 2011 01:33:24 +0000</pubDate>
</item>
<item>
	<title>Laura Denson (laura): Oh hey, I have a blog!</title>
	<guid>http://soapturtle.net/blog/?p=808</guid>
	<link>http://soapturtle.net/blog/?p=808</link>
	<description>&lt;p&gt;So, I may have forgotten to post for September and October.  I may not have realized this until it was November 2nd or so&amp;#8230;.&lt;/p&gt;
&lt;p&gt;The new job has been been very busy brain-wise.  There has just been so much new to learn that my brain is just pooped out by the time I get home at night.  Not that this is a bad thing, it&amp;#8217;s just not how it has been for several years.  It&amp;#8217;s been an adjustment, but I am starting to feel like I&amp;#8217;ve found my feet.  It doesn&amp;#8217;t hurt that I LIKE my job.  I feel challenged every day and I respect the company I work for so much.  I am not used to being proud of the company for which I work.  It&amp;#8217;s a novel experience.&lt;/p&gt;
&lt;p&gt;I only recently started creeping along at some knitting again.  I&amp;#8217;m half way done with a pair of handspun rainbow armwarmers now.  But the 2nd bump of roving is still needing to be spun up the rest of the way, and I didn&amp;#8217;t use a pattern, just kinda winged it as I went along, so we&amp;#8217;ll see if I end up with anything close to a &amp;#8220;pair.&amp;#8221;&lt;/p&gt;
&lt;p&gt;I also knocked out a dog sweater in September, but it only took a day or so and I didn&amp;#8217;t actually finish it very well.  The dog took it and started wearing it before I got the ends tied in, much less finished up the arm holes and tweaked the neckline to be more what I wanted.  I don&amp;#8217;t think it matters, she loves it, it keeps her warm, and if it ends up getting trashed, I&amp;#8217;ll probably be ok with it.  It&amp;#8217;s made from Lamb&amp;#8217;s Pride worsted so it&amp;#8217;s hairing and fuzzing all over the place, but since I am not the one wearing it, I can live with that. &lt;/p&gt;
&lt;p&gt;Speaking of Daisy, she had surgery at the end of last month to have some tumors removed and get her teeth done.  She came out of it just fine, despite all my nervousness and worry, but the tumor was a Mast Cell Tumor, Grade 2.  Which means, yes, it was malignant, but that the vet thinks she got all of it, since she was pretty aggressive when removing it, and now we are just observing to see what happens and she has a check up again in March.&lt;/p&gt;
&lt;p&gt;Shmoo found out that my vet is a knitter and spinner.  And then he promptly forbid her to talk about the fiber arts to me.  I don&amp;#8217;t think it will last, as I&amp;#8217;ll just talk to her about it instead.&lt;/p&gt;
&lt;p&gt;That&amp;#8217;s about it for news here.  Hopefully I&amp;#8217;ll have some finished arm warmers to show off before the end of the year. &lt;/p&gt;</description>
	<pubDate>Tue, 15 Nov 2011 03:54:43 +0000</pubDate>
</item>
<item>
	<title>Tim Waugh (cyberelk): CUPS disabled on upgrade to Fedora 16</title>
	<guid>http://cyberelk.net/tim/?p=932</guid>
	<link>http://cyberelk.net/tim/2011/11/14/cups-disabled-on-upgrade-to-fedora-16/</link>
	<description>&lt;p&gt;One common bug that people are running into with Fedora 16 is that CUPS is no longer enabled after upgrade from an earlier version of Fedora (fresh installs are unaffected).&lt;/p&gt;
&lt;p&gt;This has already been &lt;a href=&quot;https://bugzilla.redhat.com/show_bug.cgi?id=748841&quot; target=&quot;_blank&quot;&gt;reported in Bugzilla&lt;/a&gt;, and a &lt;a href=&quot;https://admin.fedoraproject.org/updates/FEDORA-2011-15223&quot; target=&quot;_blank&quot;&gt;test update&lt;/a&gt; is available.&lt;/p&gt;
&lt;p&gt;There is also an &lt;a href=&quot;http://ask.fedoraproject.org/question/253/cups-doesnt-start-after-upgrade-from-f15-to-f16?answer=445&quot; target=&quot;_blank&quot;&gt;Ask Fedora answer&lt;/a&gt; about it.&lt;/p&gt;</description>
	<pubDate>Mon, 14 Nov 2011 12:23:31 +0000</pubDate>
</item>
<item>
	<title>Andy Loughran (andylockran): Amstrad Emailer</title>
	<guid>http://zrmt.com/?p=1625</guid>
	<link>http://zrmt.com/2011/11/11/amstrad-emailer/</link>
	<description>&lt;p&gt;I have recently spent time back on eBay after a few years&amp;#8217; break due to an unfortunate incident which damaged my confidence in the eBay payment protection policy. It was a few years ago now and I&amp;#8217;m very much impressed by the improvements made by eBay and Paypal. Though I&amp;#8217;ve only been on it a few weeks, they have already successfully blocked someone attempting to defraud me, and though I had my suspicions, it was for low value goods, therefore a good opportunity to help test my confidence in the new systems.&lt;/p&gt;
&lt;p&gt;One of my recent purchases has been the Amstrad Emailer Plus. It&amp;#8217;s an interesting little device originally sold in 2002 by Amstrad for circa £200, dropping to £15 only two years later in Tesco, and finally discontinued on July 14th 2011.&lt;a href=&quot;http://zrmt.com/wp-content/uploads/2011/11/amstrad-emailer-plus.jpg&quot;&gt;&lt;img class=&quot;alignright size-full wp-image-1629&quot; title=&quot;amstrad-emailer-plus&quot; src=&quot;http://zrmt.com/wp-content/uploads/2011/11/amstrad-emailer-plus.jpg&quot; alt=&quot;&quot; width=&quot;205&quot; height=&quot;205&quot; /&gt;&lt;/a&gt;  As you can see, it is quite a chunky but pretty device &amp;#8211; as well as providing convenient access to email &amp;#8211; so why did it fail?&lt;/p&gt;
&lt;p&gt;Though the market for email on a household phone is probaby quite a small one &amp;#8211; the Emailer Plus definitely has the &amp;#8216;geek&amp;#8217; factor as well as being a little bit &amp;#8216;retro.&amp;#8217;  I bought one, not because it can give me access to emails, (I can do this well enough from my Samsung Galaxy S2 already,) but because it has got personalty.  The big blue display not only displays a nice clock in standby mode, but it also has the ability to play ZX Spectrum games, and other little tidbits that when integrated properly could make the big display quite useful.  The standard issue BT phone I have on my desk at work costs more than this, but offers much less in terms of functionality.&lt;/p&gt;
&lt;p&gt;The failure in the Amstrad Emailer Plus is down to a naivety in understanding the direction that the internet and email was taking.  In the early days of modems and dial-up internet, it could cost 5p per minute to get online &amp;#8211; webmail wasn&amp;#8217;t taking off because staying online to write emails was costly &amp;#8211; so it was better to have an offline client to do the writing.  The Amstrad Emailer required a &amp;#8216;phone home&amp;#8217; call at least once a day &amp;#8211; with a cost of 14p per call.  It&amp;#8217;s a bit of a premium price to pay for receiving a bulk email delivery &amp;#8211; plus, unless you were sensible enough to group your outgoing emails up into a single batch &amp;#8211; the outgoing cost was also 14p per connection.&lt;/p&gt;
&lt;p&gt;It&amp;#8217;s a real shame, as I think had Amstrad had the foresight to see that the screen was valuable real-estate, the Emailer could have been a market-changing device.  It has the ability to host &amp;#8216;widgets&amp;#8217; or &amp;#8216;apps&amp;#8217; as they are now commonly known.  Amstrad have learnt it all now, with their &amp;#8216;Amscreen&amp;#8217; &amp;#8211; a backwards piece of technology consisting of essentially a flatscreen with a red LED ticket attached to the top in a bulky, ugly black case &amp;#8211; being used to broadcast advertising.  The technology itself isn&amp;#8217;t expensive or interesting &amp;#8211; the real value is in where the screens are.  I recall a seminar at Warwick Business School a few years ago, with the General Manager of McDonalds in the UK.  When asked &amp;#8216;What is McDonalds&amp;#8217; core business?&amp;#8217; most people responded with &amp;#8216;selling burgers&amp;#8217; &amp;#8211; when he replied that it wasn&amp;#8217;t, the majority looked fairly confused.  His answer was &amp;#8216;acquiring prime real-estate, to prevent our competitors selling burgers.&amp;#8217;&lt;/p&gt;
&lt;p&gt;In the same way, strategy needs to look at pushing alternatives to the core market of a project.  Sure, there may be a specific target market to aim the product at &amp;#8211; but individual markets are a finite resource.  Look at alternative uses for your product &amp;#8211; can it be abstracted and re-marketed at a different sector?  Do you have to sell it for it to benefit you?  The end result for the Amstrad Emailer was for Amstrad to use it as a loss-leader for selling their Emailer service.  It&amp;#8217;s a shame that the device couldn&amp;#8217;t be rescued from obscurity by diversifying.  Hopefully I&amp;#8217;ll be able to make some use of it and deny this technological marvel it&amp;#8217;s resting place on some gadgetry wasteland for a few more years to come.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;</description>
	<pubDate>Fri, 11 Nov 2011 15:16:37 +0000</pubDate>
</item>

</channel>
</rss>

