<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>&#34;Fuckin&#039; defrag and wank wank&#34;</title>
	<atom:link href="http://theodoreiii.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://theodoreiii.wordpress.com</link>
	<description>- Jan, age ~ 55, on computers</description>
	<lastBuildDate>Thu, 26 Jan 2012 07:16:48 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='theodoreiii.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>&#34;Fuckin&#039; defrag and wank wank&#34;</title>
		<link>http://theodoreiii.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://theodoreiii.wordpress.com/osd.xml" title="&#34;Fuckin&#039; defrag and wank wank&#34;" />
	<atom:link rel='hub' href='http://theodoreiii.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Better URL Cloaking</title>
		<link>http://theodoreiii.wordpress.com/2012/01/26/better-url-cloaking/</link>
		<comments>http://theodoreiii.wordpress.com/2012/01/26/better-url-cloaking/#comments</comments>
		<pubDate>Thu, 26 Jan 2012 07:00:00 +0000</pubDate>
		<dc:creator>theodoreiii</dc:creator>
				<category><![CDATA[Zephyr PC]]></category>

		<guid isPermaLink="false">https://theodoreiii.wordpress.com/?p=133</guid>
		<description><![CDATA[When I signed up for url cloaking with my domain provider, I was a bit disappointed to find that all the service offered was a frame pointing to the url I had designated to cloak. Like this: This was done in such a way that I couldn’t do anything else with the zephyrpc address. For [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=theodoreiii.wordpress.com&amp;blog=30249478&amp;post=133&amp;subd=theodoreiii&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>When I signed up for url cloaking with my domain provider, I was a bit disappointed to find that all the service offered was a frame pointing to the url I had designated to cloak. Like this:</p>
<p><a href="http://theodoreiii.files.wordpress.com/2012/01/image.png"><img style="background-image:none;padding-left:0;padding-right:0;display:block;float:none;margin-left:auto;margin-right:auto;padding-top:0;border:0;" title="image" src="http://theodoreiii.files.wordpress.com/2012/01/image_thumb.png?w=204&#038;h=154" alt="image" width="204" height="154" border="0" /></a></p>
<p>This was done in such a way that I couldn’t do anything else with the zephyrpc address. For example I wanted users to be able to go to <a href="http://zephyrpc.co.nz/fixmypc?referrer=theodoreiii" target="_blank">zephyrpc.co.nz/fixmypc</a>, which would take them straight to the form they needed to fill out. However it would just take them to the main page instead.</p>
<p>I emailed the support channel asking if anything could be done about this, but they said that they did not control that part of the service and therefore couldn’t fix it for me.</p>
<p>So i took the matter into my own hands and wrote a bit of code that would provide the functionality i wanted, and that i could place on my own server.</p>
<p>I changed the masked url to special location that only contained my script. When the frame was loaded into that location, the script looks at the url that was typed in and takes out the parts that come after the base address.</p>
<p>For example if I go to <a href="http://zephyrpc.co.nz/fixmypc?referrer=theodoreiii" target="_blank">zephyrpc.co.nz/fixmypc</a>, the script will extract the /fixmypc part. Then it appends this onto the masked url, thereby changing the location being loaded to the correct page.</p>
<h2>Extra for experts</h2>
<p>Not only does the script extract the path of the url, it gets any variables sent as well. For example <a href="http://zephyrpc.co.nz?referrer=theodoreiii" target="_blank">zephyrpc.co.nz?referrer=theodoreiii</a>. The referrer variable will be passed on to the webpage loaded in the frame as well.</p>
<p>Here is the code for the script if anyone is interested:</p>
<p>Index.php:<br />
<pre class="brush: php;">
&lt;?php

$refer = $_SERVER['HTTP_REFERER']; //Get the referrer URL

//Extract the path and query parts of the url
$parse = parse_url($refer);
$path = $parse['path'];
$query = $parse['query'];

//If there is a query, then it needs to begin with a ? in the url
if (strlen($query)&gt;0)
	$query = &quot;?&quot; . $query;

$destination = $path . $query;

//This is so the script is called every time, and not cached. Otherwise if you changed the URL, it would point to the previous page
header(&quot;Cache-Control: no-cache, must-revalidate&quot;); // HTTP/1.1
header(&quot;Expires: Sat, 26 Jul 1997 05:00:00 GMT&quot;); // Date in the past

//A 301 redirect changes the fame's contents to the new address
header(&quot;HTTP/1.1 301 Moved Permanently&quot;);
header(&quot;Location: http://theodoreiii.nightingale.feralhosting.com/website&quot; . $destination );

?&gt;
</pre></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/theodoreiii.wordpress.com/133/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/theodoreiii.wordpress.com/133/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/theodoreiii.wordpress.com/133/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/theodoreiii.wordpress.com/133/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/theodoreiii.wordpress.com/133/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/theodoreiii.wordpress.com/133/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/theodoreiii.wordpress.com/133/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/theodoreiii.wordpress.com/133/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/theodoreiii.wordpress.com/133/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/theodoreiii.wordpress.com/133/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/theodoreiii.wordpress.com/133/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/theodoreiii.wordpress.com/133/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/theodoreiii.wordpress.com/133/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/theodoreiii.wordpress.com/133/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=theodoreiii.wordpress.com&amp;blog=30249478&amp;post=133&amp;subd=theodoreiii&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://theodoreiii.wordpress.com/2012/01/26/better-url-cloaking/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7be9d67ea72084db1c149bccc06fc0a3?s=96&#38;d=retro&#38;r=G" medium="image">
			<media:title type="html">theodoreiii</media:title>
		</media:content>

		<media:content url="http://theodoreiii.files.wordpress.com/2012/01/image_thumb.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>
	</item>
		<item>
		<title>New domain name for my website</title>
		<link>http://theodoreiii.wordpress.com/2012/01/23/new-domain-name-for-my-website/</link>
		<comments>http://theodoreiii.wordpress.com/2012/01/23/new-domain-name-for-my-website/#comments</comments>
		<pubDate>Mon, 23 Jan 2012 01:07:59 +0000</pubDate>
		<dc:creator>theodoreiii</dc:creator>
				<category><![CDATA[Zephyr PC]]></category>

		<guid isPermaLink="false">https://theodoreiii.wordpress.com/?p=124</guid>
		<description><![CDATA[Recently I gave my technical help website a domain name! http://zephyrpc.co.nz So if you need any tech stuff done just go there<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=theodoreiii.wordpress.com&amp;blog=30249478&amp;post=124&amp;subd=theodoreiii&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Recently I gave my technical help website a domain name!</p>
<p><a href="http://zephyrpc.co.nz?referrer=theodoreiii">http://zephyrpc.co.nz</a> </p>
<p>So if you need any tech stuff done just go there <img style="border-style:none;" class="wlEmoticon wlEmoticon-smile" alt="Smile" src="http://theodoreiii.files.wordpress.com/2012/01/wlemoticon-smile.png?w=497" /></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/theodoreiii.wordpress.com/124/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/theodoreiii.wordpress.com/124/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/theodoreiii.wordpress.com/124/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/theodoreiii.wordpress.com/124/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/theodoreiii.wordpress.com/124/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/theodoreiii.wordpress.com/124/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/theodoreiii.wordpress.com/124/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/theodoreiii.wordpress.com/124/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/theodoreiii.wordpress.com/124/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/theodoreiii.wordpress.com/124/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/theodoreiii.wordpress.com/124/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/theodoreiii.wordpress.com/124/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/theodoreiii.wordpress.com/124/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/theodoreiii.wordpress.com/124/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=theodoreiii.wordpress.com&amp;blog=30249478&amp;post=124&amp;subd=theodoreiii&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://theodoreiii.wordpress.com/2012/01/23/new-domain-name-for-my-website/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7be9d67ea72084db1c149bccc06fc0a3?s=96&#38;d=retro&#38;r=G" medium="image">
			<media:title type="html">theodoreiii</media:title>
		</media:content>

		<media:content url="http://theodoreiii.files.wordpress.com/2012/01/wlemoticon-smile.png" medium="image">
			<media:title type="html">Smile</media:title>
		</media:content>
	</item>
		<item>
		<title>I will fix your computer!</title>
		<link>http://theodoreiii.wordpress.com/2012/01/15/i-will-fix-your-computer/</link>
		<comments>http://theodoreiii.wordpress.com/2012/01/15/i-will-fix-your-computer/#comments</comments>
		<pubDate>Sun, 15 Jan 2012 07:27:40 +0000</pubDate>
		<dc:creator>theodoreiii</dc:creator>
				<category><![CDATA[Zephyr PC]]></category>

		<guid isPermaLink="false">http://theodoreiii.wordpress.com/?p=114</guid>
		<description><![CDATA[I&#8217;ve made a new website advertising my technical knowledge to people who might need help with stuff: http://eddietechsupport.net63.net/ Edit: new server: http://theodoreiii.nightingale.feralhosting.com/website/ Edit: new domain name: http://zephyrpc.co.nz  It&#8217;s in its first steps at the moment but I think it has a lot of potential! So yeah if your computer breaks or you need anything set [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=theodoreiii.wordpress.com&amp;blog=30249478&amp;post=114&amp;subd=theodoreiii&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve made a new website advertising my technical knowledge to people who might need help with stuff: <del datetime="2012-01-16T03:42:44+00:00">http://eddietechsupport.net63.net/</del><br />
<del><strong>Edit:</strong> new server: http://theodoreiii.nightingale.feralhosting.com/website/</del><br />
<strong>Edit:</strong> new domain name:<a href="http://zephyrpc.co.nz?referrer=theodoreiii" target="_blank"> http://zephyrpc.co.nz </a></p>
<p>It&#8217;s in its first steps at the moment but I think it has a lot of potential! <img src='http://s0.wp.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
<p>So yeah if your computer breaks or you need anything set up just give me a shout!</p>
<p>(Yes i will give it some sort of proper domain name eventually)</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/theodoreiii.wordpress.com/114/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/theodoreiii.wordpress.com/114/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/theodoreiii.wordpress.com/114/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/theodoreiii.wordpress.com/114/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/theodoreiii.wordpress.com/114/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/theodoreiii.wordpress.com/114/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/theodoreiii.wordpress.com/114/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/theodoreiii.wordpress.com/114/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/theodoreiii.wordpress.com/114/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/theodoreiii.wordpress.com/114/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/theodoreiii.wordpress.com/114/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/theodoreiii.wordpress.com/114/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/theodoreiii.wordpress.com/114/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/theodoreiii.wordpress.com/114/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=theodoreiii.wordpress.com&amp;blog=30249478&amp;post=114&amp;subd=theodoreiii&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://theodoreiii.wordpress.com/2012/01/15/i-will-fix-your-computer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7be9d67ea72084db1c149bccc06fc0a3?s=96&#38;d=retro&#38;r=G" medium="image">
			<media:title type="html">theodoreiii</media:title>
		</media:content>
	</item>
		<item>
		<title>PC Control &#8211; Core Temp status on server</title>
		<link>http://theodoreiii.wordpress.com/2011/12/26/pc-control-core-temp-status-on-server/</link>
		<comments>http://theodoreiii.wordpress.com/2011/12/26/pc-control-core-temp-status-on-server/#comments</comments>
		<pubDate>Sun, 25 Dec 2011 19:00:00 +0000</pubDate>
		<dc:creator>theodoreiii</dc:creator>
				<category><![CDATA[Mobile Apps]]></category>
		<category><![CDATA[PC Controller]]></category>
		<category><![CDATA[coretemp]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[pyqt]]></category>
		<category><![CDATA[python]]></category>
		<category><![CDATA[qt]]></category>
		<category><![CDATA[QTimer]]></category>
		<category><![CDATA[thread]]></category>
		<category><![CDATA[threading]]></category>

		<guid isPermaLink="false">https://theodoreiii.wordpress.com/?p=106</guid>
		<description><![CDATA[Just a small improvement to the server form today, I made it also show whether or not core temp is running: Extra for Experts This was actually a lot harder than I expected, I had a separate thread running to check the status of core temp every so often but it ended up crashing the [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=theodoreiii.wordpress.com&amp;blog=30249478&amp;post=106&amp;subd=theodoreiii&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Just a small improvement to the server form today, I made it also show whether or not core temp is running:</p>
<p><a href="http://theodoreiii.files.wordpress.com/2011/12/coretemp-form.png"><img style="background-image:none;border-bottom:0;border-left:0;padding-left:0;padding-right:0;display:block;float:none;margin-left:auto;border-top:0;margin-right:auto;border-right:0;padding-top:0;" title="coretemp form" border="0" alt="coretemp form" src="http://theodoreiii.files.wordpress.com/2011/12/coretemp-form_thumb.png?w=390&#038;h=349" width="390" height="349" /></a></p>
<h3>Extra for Experts</h3>
<p>This was actually a lot harder than I expected, I had a separate thread running to check the status of core temp every so often but it ended up crashing the app. </p>
<p>Turns out python’s threading module doesn’t work very well when you try to call a QWidget.repaint() on a pyqt form from within it. Long story short I ended up using a QTimer object to poll for core temp instead, and calling repaint from in there was no problem.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/theodoreiii.wordpress.com/106/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/theodoreiii.wordpress.com/106/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/theodoreiii.wordpress.com/106/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/theodoreiii.wordpress.com/106/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/theodoreiii.wordpress.com/106/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/theodoreiii.wordpress.com/106/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/theodoreiii.wordpress.com/106/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/theodoreiii.wordpress.com/106/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/theodoreiii.wordpress.com/106/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/theodoreiii.wordpress.com/106/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/theodoreiii.wordpress.com/106/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/theodoreiii.wordpress.com/106/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/theodoreiii.wordpress.com/106/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/theodoreiii.wordpress.com/106/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=theodoreiii.wordpress.com&amp;blog=30249478&amp;post=106&amp;subd=theodoreiii&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://theodoreiii.wordpress.com/2011/12/26/pc-control-core-temp-status-on-server/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7be9d67ea72084db1c149bccc06fc0a3?s=96&#38;d=retro&#38;r=G" medium="image">
			<media:title type="html">theodoreiii</media:title>
		</media:content>

		<media:content url="http://theodoreiii.files.wordpress.com/2011/12/coretemp-form_thumb.png" medium="image">
			<media:title type="html">coretemp form</media:title>
		</media:content>
	</item>
		<item>
		<title>PC Controller&#8211;UI for computer list</title>
		<link>http://theodoreiii.wordpress.com/2011/12/24/pc-controllerui-for-computer-list/</link>
		<comments>http://theodoreiii.wordpress.com/2011/12/24/pc-controllerui-for-computer-list/#comments</comments>
		<pubDate>Sat, 24 Dec 2011 01:27:08 +0000</pubDate>
		<dc:creator>theodoreiii</dc:creator>
				<category><![CDATA[Mobile Apps]]></category>
		<category><![CDATA[PC Controller]]></category>
		<category><![CDATA[android]]></category>
		<category><![CDATA[appcelerator]]></category>
		<category><![CDATA[control computer]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[pc]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[python]]></category>
		<category><![CDATA[socket's dont work on android]]></category>
		<category><![CDATA[sockets]]></category>
		<category><![CDATA[source code]]></category>

		<guid isPermaLink="false">https://theodoreiii.wordpress.com/?p=92</guid>
		<description><![CDATA[I’ve finally&#160; finished the UI for the PC controller app that allows you do add, remove and control different computers: Here’s what it looks like on android: and iPhone: [Edit: oops i forgot to actualy add the iphone screenshots] Also I managed to convert the app to use socket communication instead of http, so it [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=theodoreiii.wordpress.com&amp;blog=30249478&amp;post=92&amp;subd=theodoreiii&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I’ve finally&#160; finished the UI for the PC controller app that allows you do add, remove and control different computers:</p>
<p>Here’s what it looks like on android:</p>
<p><a href="http://theodoreiii.files.wordpress.com/2011/12/sc20111224-141228.png"><img style="background-image:none;padding-left:0;padding-right:0;display:inline;padding-top:0;border-width:0;" title="SC20111224-141228" border="0" alt="SC20111224-141228" src="http://theodoreiii.files.wordpress.com/2011/12/sc20111224-141228_thumb.png?w=160&#038;h=265" width="160" height="265" /></a><a href="http://theodoreiii.files.wordpress.com/2011/12/sc20111224-141244.png"><img style="background-image:none;padding-left:0;padding-right:0;display:inline;padding-top:0;border-width:0;" title="SC20111224-141244" border="0" alt="SC20111224-141244" src="http://theodoreiii.files.wordpress.com/2011/12/sc20111224-141244_thumb.png?w=161&#038;h=265" width="161" height="265" /></a><a href="http://theodoreiii.files.wordpress.com/2011/12/sc20111224-141252.png"><img style="background-image:none;padding-left:0;padding-right:0;display:inline;padding-top:0;border-width:0;" title="SC20111224-141252" border="0" alt="SC20111224-141252" src="http://theodoreiii.files.wordpress.com/2011/12/sc20111224-141252_thumb.png?w=161&#038;h=266" width="161" height="266" /></a></p>
<p>and iPhone:</p>
<p><a href="http://theodoreiii.files.wordpress.com/2011/12/screenshot_3.png"><img style="background-image:none;border-bottom:0;border-left:0;padding-left:0;padding-right:0;display:inline;border-top:0;border-right:0;padding-top:0;" title="Screenshot_3" border="0" alt="Screenshot_3" src="http://theodoreiii.files.wordpress.com/2011/12/screenshot_3_thumb.png?w=165&#038;h=235" width="165" height="235" /></a><a href="http://theodoreiii.files.wordpress.com/2011/12/screenshot_4.png"><img style="background-image:none;border-bottom:0;border-left:0;padding-left:0;padding-right:0;display:inline;border-top:0;border-right:0;padding-top:0;" title="Screenshot_4" border="0" alt="Screenshot_4" src="http://theodoreiii.files.wordpress.com/2011/12/screenshot_4_thumb.png?w=165&#038;h=236" width="165" height="236" /></a><a href="http://theodoreiii.files.wordpress.com/2011/12/screenshot_5.png"><img style="background-image:none;border-bottom:0;border-left:0;padding-left:0;padding-right:0;display:inline;border-top:0;border-right:0;padding-top:0;" title="Screenshot_5" border="0" alt="Screenshot_5" src="http://theodoreiii.files.wordpress.com/2011/12/screenshot_5_thumb.png?w=166&#038;h=237" width="166" height="237" /></a></p>
<p><strong>[Edit: oops i forgot to actualy add the iphone screenshots]</strong></p>
<p>Also I managed to convert the app to use socket communication instead of http, so it is running much faster now!</p>
<h3>Extra for Experts</h3>
<p>I ran into a lot of trouble trying to get sockets actually working correctly in android. I am using Appcelerator’s Titanium SDK to build the app, and in theory what worked on iPhone should have worked in Android too, except it took me hours and hours to figure out why it wasn’t.</p>
<p>The trick was that Android was a bit slower at sending the data than iPhone was, and the server was rejecting the connection because no data had been sent.</p>
<p>Once I figured it out, I changed a section in the server so that it would keep trying to read the data until there was some, or it timed out. After that android sockets ran perfectly!</p>
<p>Hopefully someone in the same boat will come across this and be saved a ton of work trying to figure out what the problem was, so in order to help that along, here’s what I typed in to google when I was trying to figure it out:</p>
<p>“appcelerator socket.write doesn’t work android”</p>
<p>&#160;</p>
<p><pre class="brush: python;">
def ProcessRequests():
    &quot;&quot;&quot;Accepts and acts on any incoming requests to the server
    &quot;&quot;&quot;
    global s
    try:
        conn, addr = s.accept()
    except socket.error: #No requests at this time
        return
        
    print 'Connected by', addr

    data = None
    success=False
    TIMEOUT = False
    timeStarted = time.time()
    while success==False and TIMEOUT==False:        
        timeNow = time.time()
        if timeNow-timeStarted &gt; 1: #Wait one second for some data, then timeout
            TIMEOUT = True
            print &quot;Timed out waiting for data&quot;
        
        try:
            data = conn.recv(1024)
            success=True
        except: #If there is no data yet, this will fail and success will still be False
            pass
            
    if not data: 
        print &quot;no data recieved&quot;
        return #No data
    
    ###
    Rest of the data handling done here
    ###
</pre></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/theodoreiii.wordpress.com/92/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/theodoreiii.wordpress.com/92/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/theodoreiii.wordpress.com/92/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/theodoreiii.wordpress.com/92/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/theodoreiii.wordpress.com/92/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/theodoreiii.wordpress.com/92/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/theodoreiii.wordpress.com/92/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/theodoreiii.wordpress.com/92/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/theodoreiii.wordpress.com/92/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/theodoreiii.wordpress.com/92/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/theodoreiii.wordpress.com/92/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/theodoreiii.wordpress.com/92/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/theodoreiii.wordpress.com/92/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/theodoreiii.wordpress.com/92/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=theodoreiii.wordpress.com&amp;blog=30249478&amp;post=92&amp;subd=theodoreiii&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://theodoreiii.wordpress.com/2011/12/24/pc-controllerui-for-computer-list/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7be9d67ea72084db1c149bccc06fc0a3?s=96&#38;d=retro&#38;r=G" medium="image">
			<media:title type="html">theodoreiii</media:title>
		</media:content>

		<media:content url="http://theodoreiii.files.wordpress.com/2011/12/sc20111224-141228_thumb.png" medium="image">
			<media:title type="html">SC20111224-141228</media:title>
		</media:content>

		<media:content url="http://theodoreiii.files.wordpress.com/2011/12/sc20111224-141244_thumb.png" medium="image">
			<media:title type="html">SC20111224-141244</media:title>
		</media:content>

		<media:content url="http://theodoreiii.files.wordpress.com/2011/12/sc20111224-141252_thumb.png" medium="image">
			<media:title type="html">SC20111224-141252</media:title>
		</media:content>

		<media:content url="http://theodoreiii.files.wordpress.com/2011/12/screenshot_3_thumb.png" medium="image">
			<media:title type="html">Screenshot_3</media:title>
		</media:content>

		<media:content url="http://theodoreiii.files.wordpress.com/2011/12/screenshot_4_thumb.png" medium="image">
			<media:title type="html">Screenshot_4</media:title>
		</media:content>

		<media:content url="http://theodoreiii.files.wordpress.com/2011/12/screenshot_5_thumb.png" medium="image">
			<media:title type="html">Screenshot_5</media:title>
		</media:content>
	</item>
		<item>
		<title>PC Controller &#8211; Making the server run faster</title>
		<link>http://theodoreiii.wordpress.com/2011/12/22/pc-controller-making-the-server-run-faster/</link>
		<comments>http://theodoreiii.wordpress.com/2011/12/22/pc-controller-making-the-server-run-faster/#comments</comments>
		<pubDate>Thu, 22 Dec 2011 00:00:24 +0000</pubDate>
		<dc:creator>theodoreiii</dc:creator>
				<category><![CDATA[Mobile Apps]]></category>
		<category><![CDATA[PC Controller]]></category>
		<category><![CDATA[cherrypy]]></category>
		<category><![CDATA[control computer]]></category>
		<category><![CDATA[multi-threading]]></category>
		<category><![CDATA[pc]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[python]]></category>
		<category><![CDATA[sockets]]></category>
		<category><![CDATA[thread]]></category>
		<category><![CDATA[threading]]></category>

		<guid isPermaLink="false">https://theodoreiii.wordpress.com/?p=82</guid>
		<description><![CDATA[Today I was playing around with my PC controller app, and I noticed that it was taking quite a while for the host computer to respond to my requests. I figure that this is because the server makes use of a fully functional web server. In reality that is overkill for the job the server [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=theodoreiii.wordpress.com&amp;blog=30249478&amp;post=82&amp;subd=theodoreiii&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Today I was playing around with my PC controller app, and I noticed that it was taking quite a while for the host computer to respond to my requests. I figure that this is because the server makes use of a fully functional web server. In reality that is overkill for the job the server needs to perform, there’s way too much going on in the webserver that is just unnecessary.</p>
<p>So with this in mind, today I changed the way the server works. I ditched the webserver module cherrypy and rolled my own implementation using sockets. A socket is just a basic connection between computers, used to send and receive data. This is much more suited to my project, where the phone app just has to send a very simple command to the computer (e.g. Lock) and get a reply back that it worked.</p>
<p>Because the implementation is much more basic in terms of operation than before, I am expecting that the performance of the server will dramatically increase. I haven’t got around to changing the phone app to the new sockets protocol yet but I will shortly</p>
<h3>Extra For Experts</h3>
<p>If you want to see how I implemented the new server using sockets, here is the python source code:</p>
<p><pre class="brush: python;">
from coretemp import *
from commands import *
import select
import threading
import time
from urlparse import parse_qs
import json
import socket


HOST = ''                 # Symbolic name meaning all available interfaces
PORT = 50007              # Arbitrary non-privileged port

s = None
t = None
EXIT = False
def StartServer():
    &quot;&quot;&quot;Set up the socket for listening and start the recieving thread
    &quot;&quot;&quot;
    global s,t, EXIT
    s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
    s.bind((HOST, PORT))
    s.setblocking(0)
    s.listen(1) #Listen with a queue of 1
    
    EXIT = False
    #Socket recieves requests in another thread, so that the UI can continue to update
    t = threading.Thread(target = recv)
    t.start()

def recv():
    &quot;&quot;&quot;Function run in another thread, it constantly processes any waiting requests
    &quot;&quot;&quot;
    global s, EXIT
    while not EXIT:
        ProcessRequests()
        time.sleep(0.1) #Wait a bit so the thread doesn't thrash the CPU
        
def StopServer():
    &quot;&quot;&quot;Stops the recieving thread and closes the socket
    &quot;&quot;&quot;
    global s, EXIT, t
    EXIT = True; #Tells the thread to exit
    t.join()     #Waits for the thread to exit
    s.close()
    
    
def ExtractArguments(request, data):
    &quot;&quot;&quot;Takes data in the form request?var1=x&amp;var2=y (URL format) and returns a dictionary of the keyword arguments
    &quot;&quot;&quot;
    dict = parse_qs(data.replace(request+&quot;?&quot;, &quot;&quot;))
    return dict
    
    
def ProcessRequests():
    &quot;&quot;&quot;Accepts and acts on any incoming requests to the server
    &quot;&quot;&quot;
    global s
    try:
        conn, addr = s.accept()
    except socket.error: #No requests at this time
        return
        
    print 'Connected by', addr


    data = conn.recv(1024)
    if not data: return #No data
    
    #The default reply
    reply = json.dumps({
        &quot;error&quot;: &quot;Malformed request&quot;
    })
    
    if data == &quot;MyName&quot;:
        reply = socket.gethostname().upper()
    elif data == &quot;CoreTempInfo&quot;:
        UpdateCoreTemp()
        reply = json.dumps(ReturnCoreTempInfo());
    elif data == &quot;Lock&quot;:
        Lock()
        reply = &quot;SUCCESS&quot;
    elif data == &quot;LogOff&quot;:
        LogOff()
        reply = &quot;SUCCESS&quot;
    elif data == &quot;Restart&quot;:
        Restart()
        reply = &quot;SUCCESS&quot;
    elif data == &quot;Shutdown&quot;:
        Shutdown()
        reply = &quot;SUCCESS&quot;
    elif data == &quot;Sleep&quot;:
        Sleep()
        reply = &quot;SUCCESS&quot;
    elif data == &quot;Hibernate&quot;:
        Hibernate()
        reply = &quot;SUCCESS&quot;
    elif data == &quot;VolumeUp&quot;:
        VolumeUp()
        reply = &quot;SUCCESS&quot;
    elif data == &quot;VolumeDown&quot;:
        VolumeDown()
        reply = &quot;SUCCESS&quot;
    elif data.startswith(&quot;SetVolume&quot;):
        dict = ExtractArguments(&quot;SetVolume&quot;, data)
        if dict.has_key(&quot;vol&quot;):
            SetVolume(float(dict['vol'][0]))
            reply = &quot;SUCCESS&quot;
        else:
            reply = json.dumps({
                'error':'vol keyword argument not included in request'
            })
            
            
    conn.send(reply) #Reply to the client
    conn.close() #Close the connection
</pre></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/theodoreiii.wordpress.com/82/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/theodoreiii.wordpress.com/82/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/theodoreiii.wordpress.com/82/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/theodoreiii.wordpress.com/82/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/theodoreiii.wordpress.com/82/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/theodoreiii.wordpress.com/82/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/theodoreiii.wordpress.com/82/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/theodoreiii.wordpress.com/82/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/theodoreiii.wordpress.com/82/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/theodoreiii.wordpress.com/82/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/theodoreiii.wordpress.com/82/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/theodoreiii.wordpress.com/82/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/theodoreiii.wordpress.com/82/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/theodoreiii.wordpress.com/82/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=theodoreiii.wordpress.com&amp;blog=30249478&amp;post=82&amp;subd=theodoreiii&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://theodoreiii.wordpress.com/2011/12/22/pc-controller-making-the-server-run-faster/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7be9d67ea72084db1c149bccc06fc0a3?s=96&#38;d=retro&#38;r=G" medium="image">
			<media:title type="html">theodoreiii</media:title>
		</media:content>
	</item>
		<item>
		<title>Some cool pictures for the day!</title>
		<link>http://theodoreiii.wordpress.com/2011/12/19/some-cool-pictures-for-the-day/</link>
		<comments>http://theodoreiii.wordpress.com/2011/12/19/some-cool-pictures-for-the-day/#comments</comments>
		<pubDate>Mon, 19 Dec 2011 09:28:36 +0000</pubDate>
		<dc:creator>theodoreiii</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">https://theodoreiii.wordpress.com/?p=78</guid>
		<description><![CDATA[Some pictures of Freddie Mercury doing the awesome meme pose IN A CAPE &#160; And here’s an adorable penguin chick!<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=theodoreiii.wordpress.com&amp;blog=30249478&amp;post=78&amp;subd=theodoreiii&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Some pictures of Freddie Mercury doing the awesome meme pose</p>
<p><a href="http://theodoreiii.files.wordpress.com/2011/12/freddie1.png"><img style="background-image:none;border-bottom:0;border-left:0;padding-left:0;padding-right:0;display:inline;border-top:0;border-right:0;padding-top:0;" title="freddie1" border="0" alt="freddie1" src="http://theodoreiii.files.wordpress.com/2011/12/freddie1_thumb.png?w=204&#038;h=244" width="204" height="244" /></a></p>
<p><a href="http://theodoreiii.files.wordpress.com/2011/12/freddie2.png"><img style="background-image:none;border-bottom:0;border-left:0;padding-left:0;padding-right:0;display:inline;border-top:0;border-right:0;padding-top:0;" title="freddie2" border="0" alt="freddie2" src="http://theodoreiii.files.wordpress.com/2011/12/freddie2_thumb.png?w=219&#038;h=244" width="219" height="244" /></a></p>
<p>IN A CAPE</p>
<p><a href="http://theodoreiii.files.wordpress.com/2011/12/freddie4.png"><img style="background-image:none;border-bottom:0;border-left:0;padding-left:0;padding-right:0;display:inline;border-top:0;border-right:0;padding-top:0;" title="freddie4" border="0" alt="freddie4" src="http://theodoreiii.files.wordpress.com/2011/12/freddie4_thumb.png?w=244&#038;h=232" width="244" height="232" /></a></p>
<p>&#160;</p>
<p>And here’s an adorable penguin chick!</p>
<p><a href="http://theodoreiii.files.wordpress.com/2011/12/omfg.png"><img style="background-image:none;border-bottom:0;border-left:0;padding-left:0;padding-right:0;display:inline;border-top:0;border-right:0;padding-top:0;" title="OMFG" border="0" alt="OMFG" src="http://theodoreiii.files.wordpress.com/2011/12/omfg_thumb.png?w=244&#038;h=139" width="244" height="139" /></a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/theodoreiii.wordpress.com/78/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/theodoreiii.wordpress.com/78/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/theodoreiii.wordpress.com/78/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/theodoreiii.wordpress.com/78/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/theodoreiii.wordpress.com/78/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/theodoreiii.wordpress.com/78/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/theodoreiii.wordpress.com/78/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/theodoreiii.wordpress.com/78/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/theodoreiii.wordpress.com/78/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/theodoreiii.wordpress.com/78/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/theodoreiii.wordpress.com/78/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/theodoreiii.wordpress.com/78/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/theodoreiii.wordpress.com/78/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/theodoreiii.wordpress.com/78/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=theodoreiii.wordpress.com&amp;blog=30249478&amp;post=78&amp;subd=theodoreiii&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://theodoreiii.wordpress.com/2011/12/19/some-cool-pictures-for-the-day/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7be9d67ea72084db1c149bccc06fc0a3?s=96&#38;d=retro&#38;r=G" medium="image">
			<media:title type="html">theodoreiii</media:title>
		</media:content>

		<media:content url="http://theodoreiii.files.wordpress.com/2011/12/freddie1_thumb.png" medium="image">
			<media:title type="html">freddie1</media:title>
		</media:content>

		<media:content url="http://theodoreiii.files.wordpress.com/2011/12/freddie2_thumb.png" medium="image">
			<media:title type="html">freddie2</media:title>
		</media:content>

		<media:content url="http://theodoreiii.files.wordpress.com/2011/12/freddie4_thumb.png" medium="image">
			<media:title type="html">freddie4</media:title>
		</media:content>

		<media:content url="http://theodoreiii.files.wordpress.com/2011/12/omfg_thumb.png" medium="image">
			<media:title type="html">OMFG</media:title>
		</media:content>
	</item>
		<item>
		<title>Googolpede: Doors!</title>
		<link>http://theodoreiii.wordpress.com/2011/12/14/googolpede-doors/</link>
		<comments>http://theodoreiii.wordpress.com/2011/12/14/googolpede-doors/#comments</comments>
		<pubDate>Tue, 13 Dec 2011 23:04:17 +0000</pubDate>
		<dc:creator>theodoreiii</dc:creator>
				<category><![CDATA[Games]]></category>
		<category><![CDATA[Googolpede]]></category>
		<category><![CDATA[game development]]></category>
		<category><![CDATA[game maker]]></category>
		<category><![CDATA[googolpede]]></category>

		<guid isPermaLink="false">https://theodoreiii.wordpress.com/?p=67</guid>
		<description><![CDATA[So I’ve done a bit more work on Googolpede, now it has doors that are unlocked by a corresponding key. Red key unlocks red door, blue key unlocks blue door etc: Also you can die in the lava now. Although in this level you’ll have to be pretty quick to reach it in time. Anyway [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=theodoreiii.wordpress.com&amp;blog=30249478&amp;post=67&amp;subd=theodoreiii&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>So I’ve done a bit more work on Googolpede, now it has doors that are unlocked by a corresponding key. Red key unlocks red door, blue key unlocks blue door etc:</p>
<p><a href="http://theodoreiii.files.wordpress.com/2011/12/image2.png"><img style="background-image:none;border-bottom:0;border-left:0;padding-left:0;padding-right:0;display:inline;border-top:0;border-right:0;padding-top:0;" title="image" border="0" alt="image" src="http://theodoreiii.files.wordpress.com/2011/12/image_thumb2.png?w=494&#038;h=251" width="494" height="251" /></a></p>
<p>Also you can die in the lava now. Although in this level you’ll have to be pretty quick to reach it in time.</p>
<p>Anyway here’s the link if you want to have a play around:</p>
<p><a href="http://dl.dropbox.com/u/10037049/Googolpede/googolpede%20v0.02.zip" target="_blank">Download Googolpede v0.02</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/theodoreiii.wordpress.com/67/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/theodoreiii.wordpress.com/67/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/theodoreiii.wordpress.com/67/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/theodoreiii.wordpress.com/67/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/theodoreiii.wordpress.com/67/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/theodoreiii.wordpress.com/67/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/theodoreiii.wordpress.com/67/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/theodoreiii.wordpress.com/67/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/theodoreiii.wordpress.com/67/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/theodoreiii.wordpress.com/67/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/theodoreiii.wordpress.com/67/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/theodoreiii.wordpress.com/67/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/theodoreiii.wordpress.com/67/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/theodoreiii.wordpress.com/67/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=theodoreiii.wordpress.com&amp;blog=30249478&amp;post=67&amp;subd=theodoreiii&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://theodoreiii.wordpress.com/2011/12/14/googolpede-doors/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7be9d67ea72084db1c149bccc06fc0a3?s=96&#38;d=retro&#38;r=G" medium="image">
			<media:title type="html">theodoreiii</media:title>
		</media:content>

		<media:content url="http://theodoreiii.files.wordpress.com/2011/12/image_thumb2.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>
	</item>
		<item>
		<title>PC Controller &#8211; Host UI</title>
		<link>http://theodoreiii.wordpress.com/2011/12/11/pc-controller-host-ui/</link>
		<comments>http://theodoreiii.wordpress.com/2011/12/11/pc-controller-host-ui/#comments</comments>
		<pubDate>Sun, 11 Dec 2011 01:23:30 +0000</pubDate>
		<dc:creator>theodoreiii</dc:creator>
				<category><![CDATA[Mobile Apps]]></category>
		<category><![CDATA[PC Controller]]></category>
		<category><![CDATA[android]]></category>
		<category><![CDATA[cherrypy]]></category>
		<category><![CDATA[control computer]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[pyqt]]></category>
		<category><![CDATA[python]]></category>
		<category><![CDATA[qt]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">https://theodoreiii.wordpress.com/?p=61</guid>
		<description><![CDATA[Today I created the window that will be displayed on the host computer when it is running the cherrypy server: There’s not much to it, and eventually all that you will see usually will be a small task bar icon. I’m also going to add basic control for common media players (start, stop, pause) to [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=theodoreiii.wordpress.com&amp;blog=30249478&amp;post=61&amp;subd=theodoreiii&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Today I created the window that will be displayed on the host computer when it is running the cherrypy server:</p>
<p><a href="http://theodoreiii.files.wordpress.com/2011/12/image1.png"><img style="background-image:none;padding-left:0;padding-right:0;display:block;float:none;margin-left:auto;margin-right:auto;padding-top:0;border:0;" title="image" src="http://theodoreiii.files.wordpress.com/2011/12/image_thumb1.png?w=424&#038;h=344" alt="image" width="424" height="344" border="0" /></a></p>
<p>There’s not much to it, and eventually all that you will see usually will be a small task bar icon.</p>
<p>I’m also going to add basic control for common media players (start, stop, pause) to the app so that lazy people like me don’t even have to get up off the couch to pause their video <img class="wlEmoticon wlEmoticon-openmouthedsmile" style="border-style:none;" src="http://theodoreiii.files.wordpress.com/2011/12/wlemoticon-openmouthedsmile.png?w=497" alt="Open-mouthed smile" /></p>
<p>Soon I will probably put the app and server up here for beta testing. Currently it only works in windows but I may expand it to work on Mac OSX and Linux if it’s popular enough.</p>
<p>Time to get on with some paid work so I can make rent yay!</p>
<p>Any suggestions on either the host software or <a href="http://theodoreiii.wordpress.com/2011/12/08/new-app-pc-controller/" target="_blank">mobile app</a> are most welcome.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/theodoreiii.wordpress.com/61/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/theodoreiii.wordpress.com/61/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/theodoreiii.wordpress.com/61/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/theodoreiii.wordpress.com/61/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/theodoreiii.wordpress.com/61/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/theodoreiii.wordpress.com/61/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/theodoreiii.wordpress.com/61/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/theodoreiii.wordpress.com/61/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/theodoreiii.wordpress.com/61/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/theodoreiii.wordpress.com/61/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/theodoreiii.wordpress.com/61/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/theodoreiii.wordpress.com/61/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/theodoreiii.wordpress.com/61/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/theodoreiii.wordpress.com/61/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=theodoreiii.wordpress.com&amp;blog=30249478&amp;post=61&amp;subd=theodoreiii&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://theodoreiii.wordpress.com/2011/12/11/pc-controller-host-ui/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7be9d67ea72084db1c149bccc06fc0a3?s=96&#38;d=retro&#38;r=G" medium="image">
			<media:title type="html">theodoreiii</media:title>
		</media:content>

		<media:content url="http://theodoreiii.files.wordpress.com/2011/12/image_thumb1.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://theodoreiii.files.wordpress.com/2011/12/wlemoticon-openmouthedsmile.png" medium="image">
			<media:title type="html">Open-mouthed smile</media:title>
		</media:content>
	</item>
		<item>
		<title>New game &#8211; Googolpede</title>
		<link>http://theodoreiii.wordpress.com/2011/12/09/new-game-googolpede/</link>
		<comments>http://theodoreiii.wordpress.com/2011/12/09/new-game-googolpede/#comments</comments>
		<pubDate>Thu, 08 Dec 2011 19:00:00 +0000</pubDate>
		<dc:creator>theodoreiii</dc:creator>
				<category><![CDATA[Games]]></category>
		<category><![CDATA[Googolpede]]></category>
		<category><![CDATA[game maker]]></category>
		<category><![CDATA[games]]></category>
		<category><![CDATA[googolpede]]></category>

		<guid isPermaLink="false">https://theodoreiii.wordpress.com/?p=45</guid>
		<description><![CDATA[Recently I’ve been getting back into game development, and this is what I’m working on currently: You play as the “googolpede”, a creature who has so many legs, that your body is effectively infinite. The idea behind this game is that you need to navigate each level while never crossing your own body. In this [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=theodoreiii.wordpress.com&amp;blog=30249478&amp;post=45&amp;subd=theodoreiii&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Recently I’ve been getting back into game development, and this is what I’m working on currently:</p>
<p><a href="http://theodoreiii.files.wordpress.com/2011/12/image.png"><img style="background-image:none;padding-left:0;padding-right:0;display:inline;padding-top:0;border-width:0;" title="image" border="0" alt="image" src="http://theodoreiii.files.wordpress.com/2011/12/image_thumb.png?w=489&#038;h=249" width="489" height="249" /></a></p>
<p>You play as the “googolpede”, a creature who has so many legs, that your body is effectively infinite. The idea behind this game is that you need to navigate each level while never crossing your own body. In this very early version, the player is represented by the white blocks (its feet are the red line). </p>
<p>I am liking the idea of having different types of terrain (brown = dirt, blue = water, red = lava etc.), and that these types of terrain can interact with other types. For instance if a water block falls onto a lava block, it will cool the lava down to create solid lava (the black blocks). However if a lava block touches a water block in any other way, the water is evaporated.</p>
<p>There will be collectables (maybe stars, or your lost eggs) which will be placed in such positions that make it harder to complete the level while still not crossing your body.</p>
<p>Currently the game consists of one level. The objective is to reach the golden exit point.</p>
<p>Oh and you can’t actually die yet, so swimming in the lava is ok!</p>
<p><a href="http://dl.dropbox.com/u/10037049/Googolpede/googolpede%20v0.01alpha.zip" target="_blank">download googolpede.exe v0.01alpha</a></p>
<p>Also lol i found <a href="http://www.classicdosgames.com/game/Googolpede_for_Windows.html" target="_blank">googolpede for windows 3.1</a>… old school ftw</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/theodoreiii.wordpress.com/45/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/theodoreiii.wordpress.com/45/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/theodoreiii.wordpress.com/45/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/theodoreiii.wordpress.com/45/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/theodoreiii.wordpress.com/45/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/theodoreiii.wordpress.com/45/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/theodoreiii.wordpress.com/45/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/theodoreiii.wordpress.com/45/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/theodoreiii.wordpress.com/45/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/theodoreiii.wordpress.com/45/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/theodoreiii.wordpress.com/45/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/theodoreiii.wordpress.com/45/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/theodoreiii.wordpress.com/45/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/theodoreiii.wordpress.com/45/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=theodoreiii.wordpress.com&amp;blog=30249478&amp;post=45&amp;subd=theodoreiii&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://theodoreiii.wordpress.com/2011/12/09/new-game-googolpede/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7be9d67ea72084db1c149bccc06fc0a3?s=96&#38;d=retro&#38;r=G" medium="image">
			<media:title type="html">theodoreiii</media:title>
		</media:content>

		<media:content url="http://theodoreiii.files.wordpress.com/2011/12/image_thumb.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>
	</item>
	</channel>
</rss>
