<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>FishGuy876&#039;s Blog</title>
	<atom:link href="http://www.andykellett.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.andykellett.com</link>
	<description>The Inner Workings Of A Coders Brain</description>
	<lastBuildDate>Wed, 29 Feb 2012 18:52:47 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Running a Django / mod_wsgi project on DirectAdmin Server</title>
		<link>http://www.andykellett.com/2012/02/29/running-a-django-mod_wsgi-project-on-directadmin-server/</link>
		<comments>http://www.andykellett.com/2012/02/29/running-a-django-mod_wsgi-project-on-directadmin-server/#comments</comments>
		<pubDate>Wed, 29 Feb 2012 18:49:51 +0000</pubDate>
		<dc:creator>FishGuy876</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[CVGM]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Websites]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[custom]]></category>
		<category><![CDATA[directadmin]]></category>
		<category><![CDATA[django]]></category>
		<category><![CDATA[python]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[uwsgi]]></category>
		<category><![CDATA[virtualhost]]></category>

		<guid isPermaLink="false">http://www.andykellett.com/?p=519</guid>
		<description><![CDATA[Recently I purchased a new Dedicated server box running Ubuntu 8.10 / DirectAdmin and needed to transfer a bunch of my stuff to it. One of the sites I needed to trandsfer was CVGM ( http://www.cvgm.net ) which is powered by Django / Python / Mod_WSGI. I couldn&#8217;t find many instructions on the net on [...]]]></description>
			<content:encoded><![CDATA[<p>Recently I purchased a new Dedicated server box running Ubuntu 8.10 / DirectAdmin and needed to transfer a bunch of my stuff to it. One of the sites I needed to trandsfer was CVGM ( <a href="http://www.cvgm.net">http://www.cvgm.net</a> ) which is powered by Django / Python / Mod_WSGI. I couldn&#8217;t find many instructions on the net on how to complete the task easily, so after I figured out how to do it, I wanted to post my results here so that other people who need the same kind of help can find the post and maybe use it <img src='http://www.andykellett.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>The DirectAdmin default setup uses a customized version of Apache in order to work, and as a result, it&#8217;s not as simple to work with/customize as a regular install of apache. To give you an example, if you would apt-get a module (such as mod_wsgi) that relies on apache2 as a dependency, it thinks apache2 isn&#8217;t even installed, so be careful! The global config file for the DirectAdmin apache is /etc/httpd/conf/httpd.conf and I should point out that right now, you should not edit anything in this file whatsoever!!</p>
<p>First, we need to install the Apache module for Mod WSGI. I copied a version of the file from a copy of 8.10 Server I installed on a VM to make sure it matched the same system requirements (Python 2.5) however you can always build one, or obtain one from somewhere on the net. Once I built the file, I copied it to /usr/lib/apache/mod_wsgi.so on the dedicated box.</p>
<p>There are two ways that you can proceed to activate the module, and i&#8217;ll explain both ways. The 1st way is probbably more beneficial if you plan on running multiple WSGI applications, whereas the second is better if you just plan on running a single site and you don&#8217;t want to initialize it for every thread your apache creates.</p>
<h4>Enabling As Global Module</h4>
<p>This is the simplest method of enabling the module. Open the following file for editing:</p>
<p>vim /etc/httpd/conf/extra/httpd-phpmodules.conf</p>
<p>There should already be a line in there for PHP, so we only need to add the following line underneath it:</p>
<p>LoadModule wsgi_module /usr/lib/apache/mod_wsgi.so</p>
<p>Save and Exit the file, if you restart the httpd instances within DirectAdmin, they will all have access to mod_wsgi features.</p>
<h4>Setting up a VirtualHost to run a WSGI Application</h4>
<p>I&#8217;d like to point out here that we are manually editing/changing the automated VirtualHost information generated from within DirectAdmin, so DirectAdmin might change it all back again if you go to edit anything through the admin panels. Remember, when it works, back it up in case that does happen!</p>
<p>The VirtualHost lists are defined in a user&#8217;s httpd.conf file, so to edit the list for your site, run the following command:</p>
<p>vim /usr/local/directadmin/data/users/[UserName]/httpd.conf (Replacing UserName with the user account name set up under your site)</p>
<p>Modify the top portion of your Vhost file to look like the following, with your own WSGI settings of course:</p>
<pre># Frontpage requires these parameters in every httpd.conf file or else
# it won't work.
ServerRoot /etc/httpd
WSGIDaemonProcess ProcessName threads=25
WSGIProcessGroup ProcessName

&lt;VirtualHost *:80&gt;
...</pre>
<p>Inside the VirtualHost container, you will add your actual WSGI code as such:</p>
<pre># Load the WSGI adapter just for this VirtualHost, if you choose not to enable it
 # Globally. Do not add this line if you added the module globally!!
 LoadModule wsgi_module /usr/lib/apache/mod_wsgi.so

# Set up Aliases to Django admin, and our own static files
Alias /media/ /usr/share/python-support/python-django/django/contrib/admin/media/ (path might vary on your setup)
Alias /static/ /path/to/static/

&lt;Directory /usr/share/python-support/python-django/django/contrib/admin/media&gt; (path might vary on your setup)
 Order deny,allow
 Allow from all
&lt;/Directory&gt;

# Direct root to our WSGI script file
WSGIScriptAlias / /path/to/file.wsgi
&lt;Directory /path/to&gt;
 Order deny,allow
 Allow from all
&lt;/Directory&gt;

&lt;Directory /path/to/static&gt;
 Order deny,allow
 Allow from all
&lt;/Directory&gt;</pre>
<p>Save the changes to your VirtualHost. I would like to point out here, that for CVGM I chose to comment out completely the same VirtualHost entry for SSL (port 443). My site has no use for SSL, and duplicating this code in the 2nd VirtualHost (which is what would happen if edit the Custom HTTPD for this domain in DirectAdmin) will cause an error for already having being called once.</p>
<p>The WSGI file for your project is created in pretty much the standard way:</p>
<pre>import os, sys

sys.path.append('/path/to')
sys.path.append('/path/to/ExtraPath')
os.environ['DJANGO_SETTINGS_MODULE'] = 'ProcessName.settings'
import django.core.handlers.wsgi
application = django.core.handlers.wsgi.WSGIHandler()</pre>
<p>Save it, double check the paths to the files and then restart httpd in DirectAdmin. If all goes well, the site should fire right up! If you start getting 503/500 errors, check the error.log file in the DirectAdmin viewer for a detailed description of what is happening. If there are no errors in the log, it&#8217;s not WSGI causing the problem, it&#8217;s something else in your code.</p>
<h4>Common Error With Mod_WSGI and DirectAdmin</h4>
<p>Depending on which version of DirectAdmin you are using, you may run into a massive slap-in-the-face 503 error regarding misconfiguration, and the error log will tell you something like: &#8220;No such file or directory: mod_wsgi (pid=7295): Unable to connect to WSGI daemon process&#8221;.</p>
<p>If you do run into this problem, you can try one of two things in the virtual host file. Here is a quote directly from Graham Dumpleton on the WSGI homepage explaining the problem and the solution ( <a href="http://code.google.com/p/modwsgi/wiki/ConfigurationIssues#Location_Of_UNIX_Sockets" target="_blank">http://code.google.com/p/modwsgi/wiki/ConfigurationIssues#Location_Of_UNIX_Sockets</a> ) :</p>
<p>&#8220;To resolve the problem, the WSGISocketPrefix directive should be defined to point at an alternate location. The value may be a location relative to the Apache root directory, or an absolute path.</p>
<p>On systems which restrict access to the standard Apache runtime directory, they normally provide an alternate directory for placing sockets and lock files used by Apache modules. This directory is usually called &#8216;run&#8217; and to make use of this directory the WSGISocketPrefix directive would be set as follows:</p>
<pre>WSGISocketPrefix run/wsgi</pre>
<p>Although this may be present, do be aware that some Linux distributions, notably RedHat, also locks down the permissions of this directory as well so not readable to processes running as a non root user. In this situation you will be forced to use the operating system level &#8216;/var/run&#8217; directory rather than the HTTP specific directory.</p>
<pre>WSGISocketPrefix /var/run/wsgi</pre>
<p>Note, do not put the sockets in the system temporary working directory. That is, do not go making the prefix &#8216;/tmp/wsgi&#8217;. The directory should be one that is only writable by &#8216;root&#8217; user, or if not starting Apache as &#8216;root&#8217;, the user that Apache is started as. &#8221;</p>
<p>So, you would change the top of the VirtualHost to read something along the lines of:</p>
<pre>WSGISocketPrefix /var/run/wsgi
 WSGIDaemonProcess ProcessName threads=25
 WSGIProcessGroup ProcessName</pre>
<p>After restarting Httpd in DirectAdmin, it should clear up the problem!</p>
<p>This was a post I had originally made a long time ago (November 2009), so I have edited/replaced it here for completeness, as I get a lot email requests about it. I don&#8217;t use this setup any longer, and use a dedicated box for CVGM which solved a lot of other issues that I was having at the time, and of course the dedicated box is running a much newer Ubuntu distribution. Thanks!</p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.andykellett.com%2F2012%2F02%2F29%2Frunning-a-django-mod_wsgi-project-on-directadmin-server%2F&amp;title=Running%20a%20Django%20%2F%20mod_wsgi%20project%20on%20DirectAdmin%20Server" id="wpa2a_2"><img src="http://www.andykellett.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.andykellett.com/2012/02/29/running-a-django-mod_wsgi-project-on-directadmin-server/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Twinz! Free Version Released For Android</title>
		<link>http://www.andykellett.com/2012/02/13/twinz-free-version-released-for-android/</link>
		<comments>http://www.andykellett.com/2012/02/13/twinz-free-version-released-for-android/#comments</comments>
		<pubDate>Mon, 13 Feb 2012 14:38:59 +0000</pubDate>
		<dc:creator>FishGuy876</dc:creator>
				<category><![CDATA[Amiga]]></category>
		<category><![CDATA[Android]]></category>
		<category><![CDATA[Games]]></category>
		<category><![CDATA[ZX Spectrum]]></category>
		<category><![CDATA[Free]]></category>
		<category><![CDATA[game]]></category>
		<category><![CDATA[Kids]]></category>
		<category><![CDATA[Logic]]></category>
		<category><![CDATA[Memory]]></category>
		<category><![CDATA[Pairs]]></category>
		<category><![CDATA[Puzzle]]></category>
		<category><![CDATA[Spectrum]]></category>
		<category><![CDATA[Thinking]]></category>
		<category><![CDATA[Twinz]]></category>

		<guid isPermaLink="false">http://www.andykellett.com/?p=504</guid>
		<description><![CDATA[It has been a long time since I last worked on one of my own game projects, so it is nice to be able to say that I have finally released a new game The game is called Twinz! and is based on an game I wrote back on the Commodore Amiga back in 1996 [...]]]></description>
			<content:encoded><![CDATA[<p><a class="thickbox" title="" href="http://www.andykellett.com/wp-content/gallery/twinz-for-mobiletablet/screenshot1.png" rel=""><img class="ngg-singlepic ngg-left alignleft" src="http://www.andykellett.com/wp-content/gallery/twinz-for-mobiletablet/thumbs/thumbs_screenshot1.png" alt="Twinz Loading Screen" /></a>It has been a long time since I last worked on one of my own game projects, so it is nice to be able to say that I have finally released a new game <img src='http://www.andykellett.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  The game is called Twinz! and is based on an game I wrote back on the Commodore Amiga back in 1996 (<a href="http://hol.abime.net/4479" target="_blank">HOL Link</a>). The original game it was based on was written by Theo Develegas on the ZX Spectrum (<a href="http://www.worldofspectrum.org/infoseekid.cgi?id=0005486" target="_blank">WOS LINK</a>) back in 1991, it was a covertape game that I liked to play and back then, I wanted to have a go at doing one myself. If you asked people to load games from cassette tape nowadays, they would have a heart attack! hehe.</p>
<p>The objective of the game is very simple, you turn over 2 tiles at a time to see if the pictures behind them match. If they do, then they stay open and you keep going. If they don&#8217;t match, they turn back over. The logic to the game comes from remembering the images behind each tile, so when you find it somewhere else you can turn it over at the right place. Points are awarded for better playing tactics (tiles that are not checked underneath lots of times) and pairs that are found in sequence (one after the other). The game features 5 levels, three difficulties, and an online high score sharing system where you can post your best scores directly from within the game.</p>
<p>Twinz is compatible on any mobile or tablet device. Releases coming for Kindle fire soon, along with iPhone/iPad and other markets. Stay tuned!</p>
<h3><span style="text-decoration: underline;"><strong>Twinz! Screenshots &#8211; Click any thumbnail to make it larger</strong></span></h3>

<div class="ngg-galleryoverview" id="ngg-gallery-23-504">

	<!-- Slideshow link -->
	<div class="slideshowlink">
		<a class="slideshowlink" href="http://www.andykellett.com/2012/02/13/twinz-free-version-released-for-android/nggallery/slideshow">
			[Show as slideshow]		</a>
	</div>

	<!-- Piclense link -->
	<div class="piclenselink">
		<a class="piclenselink" href="javascript:PicLensLite.start({feedUrl:'http://www.andykellett.com/wp-content/plugins/nextgen-gallery/xml/media-rss.php?gid=23&amp;mode=gallery'});">
			[View with PicLens]		</a>
	</div>
	
	<!-- Thumbnails -->
		
	<div id="ngg-image-187" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.andykellett.com/wp-content/gallery/twinz-for-mobiletablet/screenshot1.png" title=" " class="thickbox" rel="set_23" >
								<img title="Twinz Loading Screen" alt="Twinz Loading Screen" src="http://www.andykellett.com/wp-content/gallery/twinz-for-mobiletablet/thumbs/thumbs_screenshot1.png" width="56" height="100" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-188" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.andykellett.com/wp-content/gallery/twinz-for-mobiletablet/screenshot2.png" title=" " class="thickbox" rel="set_23" >
								<img title="screenshot2" alt="screenshot2" src="http://www.andykellett.com/wp-content/gallery/twinz-for-mobiletablet/thumbs/thumbs_screenshot2.png" width="59" height="100" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-189" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.andykellett.com/wp-content/gallery/twinz-for-mobiletablet/screenshot3.png" title=" " class="thickbox" rel="set_23" >
								<img title="screenshot3" alt="screenshot3" src="http://www.andykellett.com/wp-content/gallery/twinz-for-mobiletablet/thumbs/thumbs_screenshot3.png" width="56" height="100" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-190" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.andykellett.com/wp-content/gallery/twinz-for-mobiletablet/screenshot4.png" title=" " class="thickbox" rel="set_23" >
								<img title="screenshot4" alt="screenshot4" src="http://www.andykellett.com/wp-content/gallery/twinz-for-mobiletablet/thumbs/thumbs_screenshot4.png" width="56" height="100" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-191" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.andykellett.com/wp-content/gallery/twinz-for-mobiletablet/screenshot5.png" title=" " class="thickbox" rel="set_23" >
								<img title="screenshot5" alt="screenshot5" src="http://www.andykellett.com/wp-content/gallery/twinz-for-mobiletablet/thumbs/thumbs_screenshot5.png" width="56" height="100" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-192" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.andykellett.com/wp-content/gallery/twinz-for-mobiletablet/screenshot6.png" title=" " class="thickbox" rel="set_23" >
								<img title="screenshot6" alt="screenshot6" src="http://www.andykellett.com/wp-content/gallery/twinz-for-mobiletablet/thumbs/thumbs_screenshot6.png" width="56" height="100" />
							</a>
		</div>
	</div>
	
		
 	 	
	<!-- Pagination -->
 	<div class='ngg-clear'></div>
 	
</div>


<h3><span style="text-decoration: underline;"><strong>Download Twinz! Now!</strong></span></h3>
<p><a href="https://market.android.com/details?id=com.fishguygames.TwinzFree"><img class="alignnone" title="Android Market" src="http://www.fishguygames.com/images/AndroidMarketLarge.jpg" alt="" width="342" height="148" /></a></p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.andykellett.com%2F2012%2F02%2F13%2Ftwinz-free-version-released-for-android%2F&amp;title=Twinz%21%20Free%20Version%20Released%20For%20Android" id="wpa2a_4"><img src="http://www.andykellett.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.andykellett.com/2012/02/13/twinz-free-version-released-for-android/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Commodore C64 Birthday Cake FTW!</title>
		<link>http://www.andykellett.com/2011/12/04/commodore-c64-birthday-cake-ftw/</link>
		<comments>http://www.andykellett.com/2011/12/04/commodore-c64-birthday-cake-ftw/#comments</comments>
		<pubDate>Sun, 04 Dec 2011 15:59:36 +0000</pubDate>
		<dc:creator>FishGuy876</dc:creator>
				<category><![CDATA[Commodore 64/128/Plus 4]]></category>
		<category><![CDATA[64]]></category>
		<category><![CDATA[awesome]]></category>
		<category><![CDATA[birthday]]></category>
		<category><![CDATA[cake.commodore]]></category>
		<category><![CDATA[design]]></category>

		<guid isPermaLink="false">http://www.andykellett.com/?p=496</guid>
		<description><![CDATA[For my last birthday, my wife thought it would be pretty cool to make me a Commodore C64 cake at the last minute! I thought it was a pretty awesome idea anyways! She made the whole thing from scratch, even down to the keys and the bits that go on top for the colour strip [...]]]></description>
			<content:encoded><![CDATA[<p>For my last birthday, my wife thought it would be pretty cool to make me a Commodore C64 cake at the last minute! I thought it was a pretty awesome idea anyways!</p>
<p>She made the whole thing from scratch, even down to the keys and the bits that go on top for the colour strip and the power light. She likes to make a lot of fancy cake designs, and I have been bugging her for months now that she needs to set up a website or something to show off some of the fancy designs that she does.</p>
<p>I almost didn&#8217;t want to eat it at first, but eventually the kids helped me along by cutting into it and enjoying the Commodore flavour <img src='http://www.andykellett.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Thanks, baby <img src='http://www.andykellett.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>I have attached some of the other pictures for your viewing pleasure <img src='http://www.andykellett.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  Sorry I couldn&#8217;t save you a bit of the cake &#8230;</p>

<div class="ngg-galleryoverview" id="ngg-gallery-22-496">

	<!-- Slideshow link -->
	<div class="slideshowlink">
		<a class="slideshowlink" href="http://www.andykellett.com/2011/12/04/commodore-c64-birthday-cake-ftw/nggallery/slideshow">
			[Show as slideshow]		</a>
	</div>

	<!-- Piclense link -->
	<div class="piclenselink">
		<a class="piclenselink" href="javascript:PicLensLite.start({feedUrl:'http://www.andykellett.com/wp-content/plugins/nextgen-gallery/xml/media-rss.php?gid=22&amp;mode=gallery'});">
			[View with PicLens]		</a>
	</div>
	
	<!-- Thumbnails -->
		
	<div id="ngg-image-182" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.andykellett.com/wp-content/gallery/commodore-c64-cake/commodore-c64-cake-1.jpg" title="Here is my ugly mug holding my awesome Commodore 64 cake!" class="thickbox" rel="set_22" >
								<img title="commodore-c64-cake-1" alt="commodore-c64-cake-1" src="http://www.andykellett.com/wp-content/gallery/commodore-c64-cake/thumbs/thumbs_commodore-c64-cake-1.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-183" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.andykellett.com/wp-content/gallery/commodore-c64-cake/commodore-c64-cake-2.jpg" title="The finished Commodore 64 cake!" class="thickbox" rel="set_22" >
								<img title="commodore-c64-cake-2" alt="commodore-c64-cake-2" src="http://www.andykellett.com/wp-content/gallery/commodore-c64-cake/thumbs/thumbs_commodore-c64-cake-2.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-184" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.andykellett.com/wp-content/gallery/commodore-c64-cake/commodore-c64-cake-3.jpg" title="The finished Commodore 64 cake!" class="thickbox" rel="set_22" >
								<img title="commodore-c64-cake-3" alt="commodore-c64-cake-3" src="http://www.andykellett.com/wp-content/gallery/commodore-c64-cake/thumbs/thumbs_commodore-c64-cake-3.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-185" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.andykellett.com/wp-content/gallery/commodore-c64-cake/commodore-c64-cake-4.jpg" title="My wife working away on my Commodore 64 cake" class="thickbox" rel="set_22" >
								<img title="commodore-c64-cake-4" alt="commodore-c64-cake-4" src="http://www.andykellett.com/wp-content/gallery/commodore-c64-cake/thumbs/thumbs_commodore-c64-cake-4.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-186" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.andykellett.com/wp-content/gallery/commodore-c64-cake/commodore-c64-cake-5.jpg" title="My wife working away on my Commodore 64 cake" class="thickbox" rel="set_22" >
								<img title="commodore-c64-cake-5" alt="commodore-c64-cake-5" src="http://www.andykellett.com/wp-content/gallery/commodore-c64-cake/thumbs/thumbs_commodore-c64-cake-5.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 	 	
	<!-- Pagination -->
 	<div class='ngg-clear'></div>
 	
</div>


<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.andykellett.com%2F2011%2F12%2F04%2Fcommodore-c64-birthday-cake-ftw%2F&amp;title=Commodore%20C64%20Birthday%20Cake%20FTW%21" id="wpa2a_6"><img src="http://www.andykellett.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.andykellett.com/2011/12/04/commodore-c64-birthday-cake-ftw/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New Tool In Development &#8211; Litecoin Miner Status &#8211; Monitor Multiple Litecoin Miners At Multiple Pools!</title>
		<link>http://www.andykellett.com/2011/11/01/new-tool-in-development-litecoin-miner-status-monitor-multiple-litecoin-miners-at-multiple-pools/</link>
		<comments>http://www.andykellett.com/2011/11/01/new-tool-in-development-litecoin-miner-status-monitor-multiple-litecoin-miners-at-multiple-pools/#comments</comments>
		<pubDate>Tue, 01 Nov 2011 13:41:17 +0000</pubDate>
		<dc:creator>FishGuy876</dc:creator>
				<category><![CDATA[BitCoin Mining]]></category>
		<category><![CDATA[C / C++]]></category>
		<category><![CDATA[Litecoin Mining]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[ElitistJerks]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[Litecoin]]></category>
		<category><![CDATA[LTC]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[Mining]]></category>
		<category><![CDATA[Monitor]]></category>
		<category><![CDATA[OzCoin]]></category>
		<category><![CDATA[Pool]]></category>
		<category><![CDATA[Pool-X]]></category>
		<category><![CDATA[Tool]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.andykellett.com/?p=448</guid>
		<description><![CDATA[Project Update This project has now been officially released. You can visit the project page (and download the tool) Here or get to it throught Discography tab at the top of the page. Thanks! I have been working on a new tool for the last couple of weeks to assist Litecoin miners in their quest of [...]]]></description>
			<content:encoded><![CDATA[<table width="25%" border="0" align="right">
<tbody>
<tr>
<th>Project Update</th>
</tr>
<tr>
<td>This project has now been officially released. You can visit the project page (and download the tool) <a href="http://www.andykellett.com/discography/litecoin-miner-status/">Here</a> or get to it throught Discography tab at the top of the page. Thanks!</td>
</tr>
</tbody>
</table>
<p><img class="ngg-singlepic ngg-left alignleft" src="http://www.andykellett.com/wp-content/gallery/litecoin-miner-status/elitist_screenshot.png" alt="LTC Miner Status Screenshot" />I have been working on a new tool for the last couple of weeks to assist Litecoin miners in their quest of mining. As a Litecoin miner myself in this new coin, a few pools started to pop up here and there and there was not much of a way to track what was going on. Hence my tool came along!</p>
<p>A common thing with any coin mining process is hopping, or switching from one pool to another. With my tool, you can see what you are doing across multiple pools, including how much LTC you have mined and how much you have been paid.</p>
<p>The interface is split into 3 main portions. The top part is a &#8220;ticker&#8221; of sorts that pages through the supported mining pools, showing you the current overall stats of that individual pool such as it&#8217;s overall mining speed, and the number of individual miners currently working there (and their combined KH/s speed). The middle field view shows the miners you have listed in that specific pool (If any) and what your miners are currently doing there. The base view is an overall view of your current mining summary across all of the supported pools. The tool is quick, easy to use, and sits quietly in the background keeping itself updated.</p>
<p>The tool is currently going through the last few days worth of testing with some close friends and miners, and I hope to have it released in the next couple of weeks once all the fine tuning has been done to it. If you are interested in testing out the tool, feel free to get in touch with me at andy [at] andykellett.com with your information. You can also find me on IRC , irc.freenode.net in #elitist, #litecoin and #rfcpool</p>
<h3><span style="text-decoration: underline;">Support For Many Pools!</span></h3>
<p>At the time of the release, or unless someone suggests otherwise, the following mining pools will be supported from the initial launch of the application:</p>
<ul>
<li><span class="Apple-style-span" style="line-height: 18px;">Elitist Jerks</span></li>
<li><span class="Apple-style-span" style="line-height: 18px;">Pool-X.eu</span></li>
<li><span class="Apple-style-span" style="line-height: 18px;">OzCoin </span></li>
</ul>
<h3><span style="text-decoration: underline;"><span class="Apple-style-span" style="line-height: 18px;">Additional Mining Pools</span></span></h3>
<p>If you own/run/reccomend another litecoin mining pool that you would like to see added to this program, let me know either by email or in the comments of this post and I will see what I can do to get it in. Your pool must support JSON statistics that can easily be accessed via the web. The tool supports all mmcfe-based pools, I just need to know your details.</p>
<h3><span style="text-decoration: underline;">The Program Is Beerware!</span></h3>
<p>The program itself will be released as BeerWare, meaning if you like it and you find it extremely handy, you should donate some coin towards a beer or two for the developer! Pool owners who want their pools listed within the app are encouraged to donate a couple of extra beers as well, especially if your pool requires a lot of work to get added (custom JSON etc.) There will not be a charge to buy the program ever, and anyone who does try to sell it for money are trying to rip people off. It will always work the same if you choose to donate or not. Donation addresses to send coin to will be in the About section of the program in various different formats. All donations are truly appreciated <img src='http://www.andykellett.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<h3>Donation Addresses</h3>
<p>Some people are already asking for donation addresses to bribe with, they are as follows:</p>
<p>LiteCoin: LfrxgdK1PgJQPRkPVDqopQt3FaYVswmp74<br />
BitCoin: 15s2vduLZSBUYDHPANgXVC9DPKz6BesZLj</p>
<p>More details will be released for the program as soon as they are available. Versions will also be made available for Mac &amp; Linux in time. Feel free to comment or ask any questions in the comments section on this post. Initial testing only available to Windows users. Thanks! FishGuy876</p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.andykellett.com%2F2011%2F11%2F01%2Fnew-tool-in-development-litecoin-miner-status-monitor-multiple-litecoin-miners-at-multiple-pools%2F&amp;title=New%20Tool%20In%20Development%20%E2%80%93%20Litecoin%20Miner%20Status%20%E2%80%93%20Monitor%20Multiple%20Litecoin%20Miners%20At%20Multiple%20Pools%21" id="wpa2a_8"><img src="http://www.andykellett.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.andykellett.com/2011/11/01/new-tool-in-development-litecoin-miner-status-monitor-multiple-litecoin-miners-at-multiple-pools/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Dennis Ritchie, father of Unix and C, Has Passed Away</title>
		<link>http://www.andykellett.com/2011/10/13/dennis-ritchie-father-of-unix-and-c-has-passed-away/</link>
		<comments>http://www.andykellett.com/2011/10/13/dennis-ritchie-father-of-unix-and-c-has-passed-away/#comments</comments>
		<pubDate>Thu, 13 Oct 2011 16:19:43 +0000</pubDate>
		<dc:creator>FishGuy876</dc:creator>
				<category><![CDATA[C / C++]]></category>
		<category><![CDATA[Computers]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[c++]]></category>
		<category><![CDATA[DennisRitchie]]></category>
		<category><![CDATA[Unix]]></category>

		<guid isPermaLink="false">http://www.andykellett.com/?p=441</guid>
		<description><![CDATA[Dennis Ritchie, creator of the C programming language and co-creator of the Unix operating system, has died aged at the age of 70. Thank-you for giving us a superior language, and being a pioneer in the age of computing. Rest in peace! /* for Dennis Ritchie */ #include &#60;stdio.h&#62; main()  { printf("Goodbye World"); } ZD [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.andykellett.com/wp-content/uploads/2011/10/dennisritchie-220x284.jpg"><img class="alignleft size-full wp-image-443" title="dennisritchie-220x284" src="http://www.andykellett.com/wp-content/uploads/2011/10/dennisritchie-220x284.jpg" alt="Dennis Ritchie" width="220" height="284" /></a>Dennis Ritchie, creator of the C programming language and co-creator of the Unix operating system, has died aged at the age of 70.</p>
<p>Thank-you for giving us a superior language, and being a pioneer in the age of computing. Rest in peace!</p>
<pre>/* for Dennis Ritchie */
#<a href="http://twitter.com/search?q=#include" rel="hashtag">include</a> &lt;stdio.h&gt; 

main() 
{
    printf("Goodbye World");
}</pre>
<p>ZD Net Article: <a href="http://www.zdnet.com/news/dennis-ritchie-father-of-unix-and-c-dies/6314570">http://www.zdnet.com/news/dennis-ritchie-father-of-unix-and-c-dies/6314570</a></p>
<p>Wiki entry on C: <a href="http://en.wikipedia.org/wiki/C_%28programming_language%29">http://en.wikipedia.org/wiki/C_%28programming_language%29</a><a href="http://www.zdnet.com/news/dennis-ritchie-father-of-unix-and-c-dies/6314570"> </a></p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.andykellett.com%2F2011%2F10%2F13%2Fdennis-ritchie-father-of-unix-and-c-has-passed-away%2F&amp;title=Dennis%20Ritchie%2C%20father%20of%20Unix%20and%20C%2C%20Has%20Passed%20Away" id="wpa2a_10"><img src="http://www.andykellett.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.andykellett.com/2011/10/13/dennis-ritchie-father-of-unix-and-c-has-passed-away/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Telling Git To Ignore File Permissions</title>
		<link>http://www.andykellett.com/2011/09/21/telling-git-to-ignore-file-permissions/</link>
		<comments>http://www.andykellett.com/2011/09/21/telling-git-to-ignore-file-permissions/#comments</comments>
		<pubDate>Wed, 21 Sep 2011 16:09:08 +0000</pubDate>
		<dc:creator>FishGuy876</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[git]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[permissions]]></category>
		<category><![CDATA[samba]]></category>
		<category><![CDATA[subversion]]></category>
		<category><![CDATA[SVN]]></category>

		<guid isPermaLink="false">http://www.andykellett.com/?p=436</guid>
		<description><![CDATA[So, I have been having issues with git and repos. Im still extremely new to git (having used subversion for years) so every once in a while I run into something that makes me want to keep going back to svn. Today was such a day when I discovered that git didn&#8217;t like that some [...]]]></description>
			<content:encoded><![CDATA[<p>So, I have been having issues with git and repos. Im still extremely new to git (having used subversion for years) so every once in a while I run into something that makes me want to keep going back to svn. Today was such a day when I discovered that git didn&#8217;t like that some of the permissions had changed on the files within my repos.</p>
<p>Most of this problem for me occurs from working on files both in Linux and Windows, so its natural that samba will change some of these permissions. So, after reading the manual for a while, I discovered I could issue the following:</p>
<pre>git config core.filemode false</pre>
<p>This will instruct git to ignore changes to file permissions! Yay! Migraine easing. And according to the git manual:</p>
<pre>core.fileMode
    If false, the executable bit differences between the index and the
    working copy are ignored; useful on broken filesystems like FAT.
    See git-update-index(1). True by default.</pre>
<p><span class="Apple-style-span" style="font-family: 'Lucida Grande', 'Lucida Sans Unicode', verdana, arial, Tahoma, Verdana, sans-serif; font-size: 13px; line-height: 18px; white-space: normal;">And there you have it <img src='http://www.andykellett.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  Pretty straight forward, and saved me from having to buy more headache pills <img src='http://www.andykellett.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </span></p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.andykellett.com%2F2011%2F09%2F21%2Ftelling-git-to-ignore-file-permissions%2F&amp;title=Telling%20Git%20To%20Ignore%20File%20Permissions" id="wpa2a_12"><img src="http://www.andykellett.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.andykellett.com/2011/09/21/telling-git-to-ignore-file-permissions/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Moving To A New House!</title>
		<link>http://www.andykellett.com/2011/09/20/moving-to-a-new-house/</link>
		<comments>http://www.andykellett.com/2011/09/20/moving-to-a-new-house/#comments</comments>
		<pubDate>Wed, 21 Sep 2011 01:05:14 +0000</pubDate>
		<dc:creator>FishGuy876</dc:creator>
				<category><![CDATA[Misc]]></category>
		<category><![CDATA[Adamstown]]></category>
		<category><![CDATA[Amiga]]></category>
		<category><![CDATA[Atari]]></category>
		<category><![CDATA[house]]></category>
		<category><![CDATA[moving]]></category>

		<guid isPermaLink="false">http://www.andykellett.com/?p=432</guid>
		<description><![CDATA[This weekend is going to be crazy as I plan to move into a new house in the Adamstown, PA area. Its a single-floor rancher house, with a basement the entire size of the house. The new house has a lot more room, as it has a nice garage that will hold 1 car and [...]]]></description>
			<content:encoded><![CDATA[<p>This weekend is going to be crazy as I plan to move into a new house in the Adamstown, PA area. Its a single-floor rancher house, with a basement the entire size of the house.</p>
<p>The new house has a lot more room, as it has a nice garage that will hold 1 car and all my tools, a huge basement thats at least 3x the size of the current one (which means more room to hold all my Commodore Amiga &amp; Atari machines!) and plenty of other things that the family can enjoy, such as a huge deck in the back. Great for keg parties!</p>
<p>Attached below are some pictures I took of the house, before it becomes full of computer parts!</p>

<div class="ngg-galleryoverview" id="ngg-gallery-20-432">

	<!-- Slideshow link -->
	<div class="slideshowlink">
		<a class="slideshowlink" href="http://www.andykellett.com/2011/09/20/moving-to-a-new-house/nggallery/slideshow">
			[Show as slideshow]		</a>
	</div>

	<!-- Piclense link -->
	<div class="piclenselink">
		<a class="piclenselink" href="javascript:PicLensLite.start({feedUrl:'http://www.andykellett.com/wp-content/plugins/nextgen-gallery/xml/media-rss.php?gid=20&amp;mode=gallery'});">
			[View with PicLens]		</a>
	</div>
	
	<!-- Thumbnails -->
		
	<div id="ngg-image-155" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.andykellett.com/wp-content/gallery/new-house-09-20-2011/img_1616.jpg" title=" " class="thickbox" rel="set_20" >
								<img title="img_1616" alt="img_1616" src="http://www.andykellett.com/wp-content/gallery/new-house-09-20-2011/thumbs/thumbs_img_1616.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-156" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.andykellett.com/wp-content/gallery/new-house-09-20-2011/img_1617.jpg" title=" " class="thickbox" rel="set_20" >
								<img title="img_1617" alt="img_1617" src="http://www.andykellett.com/wp-content/gallery/new-house-09-20-2011/thumbs/thumbs_img_1617.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-157" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.andykellett.com/wp-content/gallery/new-house-09-20-2011/img_1618.jpg" title=" " class="thickbox" rel="set_20" >
								<img title="img_1618" alt="img_1618" src="http://www.andykellett.com/wp-content/gallery/new-house-09-20-2011/thumbs/thumbs_img_1618.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-158" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.andykellett.com/wp-content/gallery/new-house-09-20-2011/img_1619.jpg" title=" " class="thickbox" rel="set_20" >
								<img title="img_1619" alt="img_1619" src="http://www.andykellett.com/wp-content/gallery/new-house-09-20-2011/thumbs/thumbs_img_1619.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-159" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.andykellett.com/wp-content/gallery/new-house-09-20-2011/img_1620.jpg" title=" " class="thickbox" rel="set_20" >
								<img title="img_1620" alt="img_1620" src="http://www.andykellett.com/wp-content/gallery/new-house-09-20-2011/thumbs/thumbs_img_1620.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-160" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.andykellett.com/wp-content/gallery/new-house-09-20-2011/img_1621.jpg" title=" " class="thickbox" rel="set_20" >
								<img title="img_1621" alt="img_1621" src="http://www.andykellett.com/wp-content/gallery/new-house-09-20-2011/thumbs/thumbs_img_1621.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-161" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.andykellett.com/wp-content/gallery/new-house-09-20-2011/img_1622.jpg" title=" " class="thickbox" rel="set_20" >
								<img title="img_1622" alt="img_1622" src="http://www.andykellett.com/wp-content/gallery/new-house-09-20-2011/thumbs/thumbs_img_1622.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-162" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.andykellett.com/wp-content/gallery/new-house-09-20-2011/img_1626.jpg" title=" " class="thickbox" rel="set_20" >
								<img title="img_1626" alt="img_1626" src="http://www.andykellett.com/wp-content/gallery/new-house-09-20-2011/thumbs/thumbs_img_1626.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-163" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.andykellett.com/wp-content/gallery/new-house-09-20-2011/img_1628.jpg" title=" " class="thickbox" rel="set_20" >
								<img title="img_1628" alt="img_1628" src="http://www.andykellett.com/wp-content/gallery/new-house-09-20-2011/thumbs/thumbs_img_1628.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-164" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.andykellett.com/wp-content/gallery/new-house-09-20-2011/img_1629.jpg" title=" " class="thickbox" rel="set_20" >
								<img title="img_1629" alt="img_1629" src="http://www.andykellett.com/wp-content/gallery/new-house-09-20-2011/thumbs/thumbs_img_1629.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-165" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.andykellett.com/wp-content/gallery/new-house-09-20-2011/img_1630.jpg" title=" " class="thickbox" rel="set_20" >
								<img title="img_1630" alt="img_1630" src="http://www.andykellett.com/wp-content/gallery/new-house-09-20-2011/thumbs/thumbs_img_1630.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-166" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.andykellett.com/wp-content/gallery/new-house-09-20-2011/img_1632.jpg" title=" " class="thickbox" rel="set_20" >
								<img title="img_1632" alt="img_1632" src="http://www.andykellett.com/wp-content/gallery/new-house-09-20-2011/thumbs/thumbs_img_1632.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-167" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.andykellett.com/wp-content/gallery/new-house-09-20-2011/img_1634.jpg" title=" " class="thickbox" rel="set_20" >
								<img title="img_1634" alt="img_1634" src="http://www.andykellett.com/wp-content/gallery/new-house-09-20-2011/thumbs/thumbs_img_1634.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-168" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.andykellett.com/wp-content/gallery/new-house-09-20-2011/img_1635.jpg" title=" " class="thickbox" rel="set_20" >
								<img title="img_1635" alt="img_1635" src="http://www.andykellett.com/wp-content/gallery/new-house-09-20-2011/thumbs/thumbs_img_1635.jpg" width="100" height="74" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-169" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.andykellett.com/wp-content/gallery/new-house-09-20-2011/img_1637.jpg" title=" " class="thickbox" rel="set_20" >
								<img title="img_1637" alt="img_1637" src="http://www.andykellett.com/wp-content/gallery/new-house-09-20-2011/thumbs/thumbs_img_1637.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-170" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.andykellett.com/wp-content/gallery/new-house-09-20-2011/img_1638.jpg" title=" " class="thickbox" rel="set_20" >
								<img title="img_1638" alt="img_1638" src="http://www.andykellett.com/wp-content/gallery/new-house-09-20-2011/thumbs/thumbs_img_1638.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-171" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.andykellett.com/wp-content/gallery/new-house-09-20-2011/img_1639.jpg" title=" " class="thickbox" rel="set_20" >
								<img title="img_1639" alt="img_1639" src="http://www.andykellett.com/wp-content/gallery/new-house-09-20-2011/thumbs/thumbs_img_1639.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-172" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.andykellett.com/wp-content/gallery/new-house-09-20-2011/img_1640.jpg" title=" " class="thickbox" rel="set_20" >
								<img title="img_1640" alt="img_1640" src="http://www.andykellett.com/wp-content/gallery/new-house-09-20-2011/thumbs/thumbs_img_1640.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-173" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.andykellett.com/wp-content/gallery/new-house-09-20-2011/img_1641.jpg" title=" " class="thickbox" rel="set_20" >
								<img title="img_1641" alt="img_1641" src="http://www.andykellett.com/wp-content/gallery/new-house-09-20-2011/thumbs/thumbs_img_1641.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-174" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.andykellett.com/wp-content/gallery/new-house-09-20-2011/img_1642.jpg" title=" " class="thickbox" rel="set_20" >
								<img title="img_1642" alt="img_1642" src="http://www.andykellett.com/wp-content/gallery/new-house-09-20-2011/thumbs/thumbs_img_1642.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 	 	
	<!-- Pagination -->
 	<div class='ngg-navigation'><span class="current">1</span><a class="page-numbers" href="http://www.andykellett.com/2011/09/20/moving-to-a-new-house/nggallery/page-2">2</a><a class="next" id="ngg-next-2" href="http://www.andykellett.com/2011/09/20/moving-to-a-new-house/nggallery/page-2">&#9658;</a></div> 	
</div>


<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.andykellett.com%2F2011%2F09%2F20%2Fmoving-to-a-new-house%2F&amp;title=Moving%20To%20A%20New%20House%21" id="wpa2a_14"><img src="http://www.andykellett.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.andykellett.com/2011/09/20/moving-to-a-new-house/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Finally Finished Working On My Amiga A1200</title>
		<link>http://www.andykellett.com/2011/09/15/finally-finished-working-on-my-amiga-a1200/</link>
		<comments>http://www.andykellett.com/2011/09/15/finally-finished-working-on-my-amiga-a1200/#comments</comments>
		<pubDate>Thu, 15 Sep 2011 11:50:08 +0000</pubDate>
		<dc:creator>FishGuy876</dc:creator>
				<category><![CDATA[Amiga]]></category>
		<category><![CDATA[AmigaOS]]></category>
		<category><![CDATA[Computers]]></category>
		<category><![CDATA[030]]></category>
		<category><![CDATA[1240]]></category>
		<category><![CDATA[68030]]></category>
		<category><![CDATA[6882]]></category>
		<category><![CDATA[A1200]]></category>
		<category><![CDATA[AmiKit]]></category>
		<category><![CDATA[Catweasel]]></category>
		<category><![CDATA[Commodore]]></category>
		<category><![CDATA[DKB]]></category>
		<category><![CDATA[Miami]]></category>
		<category><![CDATA[Netgear]]></category>
		<category><![CDATA[OS3.9]]></category>
		<category><![CDATA[Prism2.device]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Scandy]]></category>
		<category><![CDATA[TCP]]></category>

		<guid isPermaLink="false">http://www.andykellett.com/?p=421</guid>
		<description><![CDATA[I Spent quite a bit of time this weekend working on my Amiga. It has been a few years since I used it for anything other than recording music (for CVGM.net) and thought it was about time I got it working again. For quite a while now I have had the itch to get back [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.andykellett.com/wp-content/uploads/2011/09/logo_amiga_1204940093.jpg"><img class="alignright size-full wp-image-424" title="Amiga Logo" src="http://www.andykellett.com/wp-content/uploads/2011/09/logo_amiga_1204940093.jpg" alt="AMIIGGGAAHH!" width="150" height="130" /></a>I Spent quite a bit of time this weekend working on my Amiga. It has been a few years since I used it for anything other than recording music (for <a href="http://www.cvgm.net/demovibes">CVGM.net</a>) and thought it was about time I got it working again. For quite a while now I have had the itch to get back into programming on the Amiga, and couldn&#8217;t think of a better time. Its also not that often lately that I have a few hours of downtime to actually devote to filling the entire kitchen with old computer stuff <img src='http://www.andykellett.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Over the years as a programmer on the Amiga, I have accumulated a fair amount of Amigas, and also bought a few bits here and there. All my Amiga 1200&#8242;s are PAL, and every time I fly home to the UK I always bring one back with me if I can find one. On my trip last year, I was able to find an &#8220;Desktop Dynamite&#8221; pack for 50 quid, so I threw away a bunch of closes and packed my suitcase with wonderful Amiga goodness instead. The machine I had been using previously had a broken pin on the PCMCIA slot, which seems to be a common thing to break on all my Amiga machines over the years.</p>
<p><a class="thickbox" title="Catweasel board for the A1200 which connects to the HD port." href="http://www.andykellett.com/wp-content/gallery/a1200restore2011/IMG_1608.JPG" rel=""><img class="ngg-singlepic ngg-left alignleft" src="http://www.andykellett.com/wp-content/gallery/a1200restore2011/thumbs/thumbs_IMG_1608.JPG" alt="Amiga 1200 Catweasel HD" /></a>The most useful device I ever bought for my Amiga was my Catweasel A1200, it lets me hook up all kinds of drives to the system, and access them natively. In this modification, I will be replacing the built-in floppy with a PC drive. It will prevent me from booting via floppy disk, but the benefits of being able to read Amiga and PC disks while in Workbench are worth it. I also have a Scandy VGA ScanDoubler device thingy that clips over top of some of the chips in the Amiga and lets me connect it directly to a VGA monitor, though I tend to run into a few problems from time to time with it (it might be because my PAL Amiga doesn&#8217;t like it, I bought it in the US so it might be NTSC based) such as the screen flickering green or with a tint of blue. For this particular project, I have decided to leave it out of the system and I will put it back in another time. For now, I will settle for my 1084S and a nice Interlaced screen.</p>
<p><a class="thickbox" title="Here is the Amiga hard drive connected to the PC. UAE is using this hard disk drive like it is a native Amiga drive, instead of a HDF file." href="http://www.andykellett.com/wp-content/gallery/a1200restore2011/IMG_1611.JPG" rel=""><img class="ngg-singlepic ngg-right alignright" src="http://www.andykellett.com/wp-content/gallery/a1200restore2011/thumbs/thumbs_IMG_1611.JPG" alt="Amiga Hard Drive In The PC" /></a>The hardest part about working on the Amiga is getting the hard drive working. By default, the Amiga has a size limit of 4gb. I had bought 2 4Gb IBM HD&#8217;s online for $1 through Ebay just for this. Now we had to get them working on the Amiga! This is where UAE comes in. One of the nice new features of the newer UAE is the ability to connect Amiga hard drives natively and use them like a real hard drive, instead of the traditional HDF files. It does however still have some problems. It cannot yet (at the time of writing anyways) partition the drive correctly, so all the partition work must be done on the real Amiga. This was a bit of a ballache for me, as I have every Workbench disk except the Install disk (that contained HDToolbox) so I ended up connecting my A2000HD and using an old version from there, just to get the partitions going. From there, I could connect to the drive to the PC and mount it natively.</p>
<p>To begin with, I tried to copy a version of AmiKit to the drive. The copy process went very well, however I ran into a lot of problems getting it to work on the real Amiga. After a few hours of trying to get it to boot, and never reahing the desktop, I decided to take another approach and instead I went with a more simplified Workbench from ClassicWB (<a href="http://classicwb.abime.net/">http://classicwb.abime.net/</a>) which only required my OS 3.9 CD. The bare basic programs and tools were installed, which was enough to get me started at this point. I added some more games and demos for WHDLoad, and that&#8217;s all I really needed. I also took advantage of being online with UAE, and added the newest Catweasel drivers, and a few other tools.</p>
<p>My Amiga has a wireless Netgear card, and I need to use the prism2.device to get it to connect to the network. Once I get moved into my new place next week, I will get that all set up and working. I tried briefly with the Genesis TCP stack and just couldn&#8217;t get it to see the card. Nothing like browsing the web on a 16 colour Amiga Interlaced screen! Oh how modern day kids are spoiled!</p>
<p>Detailed Amiga Specs: Commodore Amiga 1200 (PAL, Personally Purchased From the UK), DKB 1240 &amp; 32Mb RAM (030 &amp; 6882 FPU), Catweasel A1200, 4Gb IBM HD, OS 3.9 w/Boing Bag 1 &amp; 2, ClassicWB Image.</p>
<p>Some Pictures Of Beauty:</p>

<div class="ngg-galleryoverview" id="ngg-gallery-19-421">

	<!-- Slideshow link -->
	<div class="slideshowlink">
		<a class="slideshowlink" href="http://www.andykellett.com/2011/09/15/finally-finished-working-on-my-amiga-a1200/nggallery/slideshow">
			[Show as slideshow]		</a>
	</div>

	<!-- Piclense link -->
	<div class="piclenselink">
		<a class="piclenselink" href="javascript:PicLensLite.start({feedUrl:'http://www.andykellett.com/wp-content/plugins/nextgen-gallery/xml/media-rss.php?gid=19&amp;mode=gallery'});">
			[View with PicLens]		</a>
	</div>
	
	<!-- Thumbnails -->
		
	<div id="ngg-image-147" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.andykellett.com/wp-content/gallery/a1200restore2011/AmigaRestore.jpg" title="First running attempt on the real Amiga after transferring a bunch of stuff, running 'State of the Art' by Spaceballs via WHDLoad." class="thickbox" rel="set_19" >
								<img title="AMIGGAAH!!" alt="AMIGGAAH!!" src="http://www.andykellett.com/wp-content/gallery/a1200restore2011/thumbs/thumbs_AmigaRestore.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-148" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.andykellett.com/wp-content/gallery/a1200restore2011/IMG_1607.JPG" title="Here is the Catweasel board connected to a PC floppy drive. Cable is removed so you can see the board." class="thickbox" rel="set_19" >
								<img title="Finished Motherboard &amp; PC Floppy Drive" alt="Finished Motherboard &amp; PC Floppy Drive" src="http://www.andykellett.com/wp-content/gallery/a1200restore2011/thumbs/thumbs_IMG_1607.JPG" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-149" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.andykellett.com/wp-content/gallery/a1200restore2011/IMG_1608.JPG" title="Catweasel board for the A1200 which connects to the HD port." class="thickbox" rel="set_19" >
								<img title="Amiga 1200 Catweasel HD" alt="Amiga 1200 Catweasel HD" src="http://www.andykellett.com/wp-content/gallery/a1200restore2011/thumbs/thumbs_IMG_1608.JPG" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-151" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.andykellett.com/wp-content/gallery/a1200restore2011/IMG_1610.JPG" title="Screenshot of UAE running directly from the Amiga hard drive." class="thickbox" rel="set_19" >
								<img title="UAE Running Via Native Amiga HD" alt="UAE Running Via Native Amiga HD" src="http://www.andykellett.com/wp-content/gallery/a1200restore2011/thumbs/thumbs_IMG_1610.JPG" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-152" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.andykellett.com/wp-content/gallery/a1200restore2011/IMG_1611.JPG" title="Here is the Amiga hard drive connected to the PC. UAE is using this hard disk drive like it is a native Amiga drive, instead of a HDF file." class="thickbox" rel="set_19" >
								<img title="Amiga Hard Drive In The PC" alt="Amiga Hard Drive In The PC" src="http://www.andykellett.com/wp-content/gallery/a1200restore2011/thumbs/thumbs_IMG_1611.JPG" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-153" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.andykellett.com/wp-content/gallery/a1200restore2011/IMG_1612.JPG" title="The catweasel board connects to the A1200 HD port, and has a passthrough for the Amiga HD to connect to. It also has a few extra benefits to the standard Amiga HD port as I remember." class="thickbox" rel="set_19" >
								<img title="Amiga Hard Drive &amp; Catweasel A1200 Board" alt="Amiga Hard Drive &amp; Catweasel A1200 Board" src="http://www.andykellett.com/wp-content/gallery/a1200restore2011/thumbs/thumbs_IMG_1612.JPG" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 	 	
	<!-- Pagination -->
 	<div class='ngg-clear'></div>
 	
</div>


<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.andykellett.com%2F2011%2F09%2F15%2Ffinally-finished-working-on-my-amiga-a1200%2F&amp;title=Finally%20Finished%20Working%20On%20My%20Amiga%20A1200" id="wpa2a_16"><img src="http://www.andykellett.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.andykellett.com/2011/09/15/finally-finished-working-on-my-amiga-a1200/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>rfcpool Bitcoin Miner Status Tool Released</title>
		<link>http://www.andykellett.com/2011/09/01/rfcpool-bitcoin-miner-status-tool-released/</link>
		<comments>http://www.andykellett.com/2011/09/01/rfcpool-bitcoin-miner-status-tool-released/#comments</comments>
		<pubDate>Thu, 01 Sep 2011 18:45:01 +0000</pubDate>
		<dc:creator>FishGuy876</dc:creator>
				<category><![CDATA[BitCoin Mining]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[5830]]></category>
		<category><![CDATA[6970]]></category>
		<category><![CDATA[BitCoin]]></category>
		<category><![CDATA[BTC]]></category>
		<category><![CDATA[MinerStatus]]></category>
		<category><![CDATA[Mining]]></category>
		<category><![CDATA[Mining Rig]]></category>
		<category><![CDATA[PPLNS]]></category>
		<category><![CDATA[PPS]]></category>
		<category><![CDATA[rfcpool]]></category>

		<guid isPermaLink="false">http://www.andykellett.com/?p=410</guid>
		<description><![CDATA[This last couple of weeks I have been working on my Bitcoin Miner status API for rfcpool, and finally got around to releasing the first versions of my status tool. The API itself can do more than monitor the status of one mining pool, and in the future it will connect to multiple pools and [...]]]></description>
			<content:encoded><![CDATA[<p>This last couple of weeks I have been working on my Bitcoin Miner status API for rfcpool, and finally got around to releasing the first versions of my status tool. The API itself can do more than monitor the status of one mining pool, and in the future it will connect to multiple pools and display the results together in the same window. Originally, it was started when I began working on an alternative to the GUIMiner application, which I hope to finish one day.</p>
<p><img class="ngg-singlepic ngg-left" src="http://www.andykellett.com/wp-content/gallery/rfcpool-miner-status/rfcminerstatus020.png" alt="Rfcpool Miner status - Main Screen" /></p>
<p>If you are into BitCoin mining, why not check out <a href="https://www.rfcpool.com" target="_blank">rfcpool </a>with their no-fee PPLNS payout system and give the app a whirl <img src='http://www.andykellett.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>I have set up a dedicated project page for the app, you can find more detailed information about it <a href="http://www.andykellett.com/discography/rfcpool-miner-status/">HERE</a>.</p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.andykellett.com%2F2011%2F09%2F01%2Frfcpool-bitcoin-miner-status-tool-released%2F&amp;title=rfcpool%20Bitcoin%20Miner%20Status%20Tool%20Released" id="wpa2a_18"><img src="http://www.andykellett.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.andykellett.com/2011/09/01/rfcpool-bitcoin-miner-status-tool-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>You Cannot Arrest an Idea</title>
		<link>http://www.andykellett.com/2011/08/01/you-cannot-arrest-an-idea/</link>
		<comments>http://www.andykellett.com/2011/08/01/you-cannot-arrest-an-idea/#comments</comments>
		<pubDate>Mon, 01 Aug 2011 13:52:22 +0000</pubDate>
		<dc:creator>FishGuy876</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[Anonymous]]></category>
		<category><![CDATA[atopiary]]></category>
		<category><![CDATA[hacking]]></category>
		<category><![CDATA[LulzSec]]></category>
		<category><![CDATA[Topiary]]></category>

		<guid isPermaLink="false">http://www.andykellett.com/?p=370</guid>
		<description><![CDATA[You cannot arrest an idea. Sail on strong, atopiary.]]></description>
			<content:encoded><![CDATA[<p><img class="ngg-singlepic ngg-left" src="http://www.andykellett.com/wp-content/gallery/media-images/atopiary.jpg" alt="@atopiary leaving City of Westminster Magistrates’ Court. 8/1/2011" /></p>
<p>You cannot arrest an idea. Sail on strong, <a href="http://twitter.com/#!/atopiary" target="_blank">atopiary</a>.</p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.andykellett.com%2F2011%2F08%2F01%2Fyou-cannot-arrest-an-idea%2F&amp;title=You%20Cannot%20Arrest%20an%20Idea" id="wpa2a_20"><img src="http://www.andykellett.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.andykellett.com/2011/08/01/you-cannot-arrest-an-idea/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

