<?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>CannoNerd&#039;s shots</title>
	<atom:link href="http://cannonerd.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://cannonerd.wordpress.com</link>
	<description>Susanna Huhtanen adventuring in software</description>
	<lastBuildDate>Wed, 18 Jan 2012 11:02:11 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='cannonerd.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>CannoNerd&#039;s shots</title>
		<link>http://cannonerd.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://cannonerd.wordpress.com/osd.xml" title="CannoNerd&#039;s shots" />
	<atom:link rel='hub' href='http://cannonerd.wordpress.com/?pushpress=hub'/>
		<item>
		<title>JavaScript and GNOME 3: Referring to files and asynchronous HTTP requests using async libsoup</title>
		<link>http://cannonerd.wordpress.com/2012/01/11/javascript-and-gnome-3-referring-to-files-and-asynchronous-http-requests-using-async-libsoup/</link>
		<comments>http://cannonerd.wordpress.com/2012/01/11/javascript-and-gnome-3-referring-to-files-and-asynchronous-http-requests-using-async-libsoup/#comments</comments>
		<pubDate>Wed, 11 Jan 2012 06:08:21 +0000</pubDate>
		<dc:creator>cannonerd</dc:creator>
				<category><![CDATA[GNOME]]></category>

		<guid isPermaLink="false">http://cannonerd.wordpress.com/?p=143</guid>
		<description><![CDATA[Working with small JavaScript apps for GNOME3 has led me to a wild exploration around internet, the quest for knowledge. The quest led me to trying to figure out two things &#8211; how to use different files from the same folder in your JavaScript app, and how to make asynchronous HTTP requests. I can tell [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=cannonerd.wordpress.com&amp;blog=13724811&amp;post=143&amp;subd=cannonerd&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Working with small JavaScript apps for GNOME3 has led me to a wild exploration around internet, the quest for knowledge. The quest led me to trying to figure out two things &#8211; how to use different files from the same folder in your JavaScript app, and how to make asynchronous HTTP requests. I can tell the quest was a tricky one but now I can present you (queue dramatic music) my findings:</p>
<p>The first problem was brought up by wanting to separate asychronous calls to a different file. How can I reference the other file in my gjs code? The solution ended up being very simple. Just replace the normal gjs yourapp.js with this:<br />
<code>$ GJS_PATH=`pwd` gjs yourapp.js</code></p>
<p>in terminal in the folder your files are. Then the file can be included simply with:<br />
<code>const SomeClass = imports.myotherfile;</code></p>
<p>Where SomeClass is the variable that will hold any functions exported by the other file (by having those functions defined into the global namespace there), and myotherfile.js would be the name of the file.</p>
<p>You can see what keys are available through imports by running this JavaScript code through gjs:</p>
<pre><code>for (i in imports) {
  print(i);
}</code></pre>
<p>If you want to distribute your files in different folders the GJS_PATH environment variable must contain the correct path.</p>
<p>As we see, pretty easy but hard to come by amongst all the information of internet. Maybe one more post about it will ease the search for the next person trying to figure this out <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Then we get onwards with our asynchronous calls. HTTP get, using async libsoup. Yet again a simple thing but hard to find.</p>
<p>first you need to import Soup to your code:</p>
<pre><code>const Soup = imports.gi.Soup;</code></pre>
<p>then prepare one asynchronous soup session</p>
<pre><code>const _httpSession = new Soup.SessionAsync();
Soup.Session.prototype.add_feature.call(_httpSession, new Soup.ProxyResolverDefault());</code></pre>
<p>then you decide what you want to get and where. Here I&#8217;m getting weather information for Helsinki Malmi airport (ICAO: EFHF) using the <a href="http://www.geonames.org/">GeoNames</a> web service:</p>
<pre><code>function getWeather(callback) {
  var request = Soup.Message.new('GET',
   'http://api.geonames.org/weatherIcaoJSON?ICAO=EFHF&amp;username=demo');</code></pre>
<p>Once you&#8217;ve prepared a request Soup message, you need to queue it, and provide a callback that will fire once the request has been handled.</p>
<p>It is good manners to handle both successful and failed requests. And when the information is in your hands, it is a good idea to parse it to proper JavaScript data structures:</p>
<pre><code>
    _httpSession.queue_message(request, function(_httpSession, message) {
      if (message.status_code !== 200) {
        callback(message.status_code, null);
        return;
      }
      var weatherJSON = request.response_body.data;
      var weather = JSON.parse(weatherJSON);
      callback(null, weather);
}</code></pre>
<p>A successful response looks like this:</p>
<pre><code>{
    "weatherObservation": {
        "clouds": "few clouds",
        "weatherCondition": "light snow",
        "observation": "EFHF 101150Z 14002KT 9999 -SN FEW040 BKN050 BKN070 M05/M06 Q1016",
        "windDirection": 140,
        "ICAO": "EFHF",
        "elevation": 28,
        "countryCode": "FI",
        "lng": 25.05,
        "temperature": "-5",
        "dewPoint": "-6",
        "windSpeed": "02",
        "humidity": 92,
        "stationName": "Helsinki-Malmi",
        "datetime": "2012-01-10 11:50:00",
        "lat": 60.25,
        "hectoPascAltimeter": 1016
    }
}</code></pre>
<p>And then it is just the question of how to use the information.</p>
<p>This post has been updated according to Owen&#8217;s suggestions in the comments below.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/cannonerd.wordpress.com/143/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/cannonerd.wordpress.com/143/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/cannonerd.wordpress.com/143/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/cannonerd.wordpress.com/143/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/cannonerd.wordpress.com/143/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/cannonerd.wordpress.com/143/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/cannonerd.wordpress.com/143/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/cannonerd.wordpress.com/143/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/cannonerd.wordpress.com/143/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/cannonerd.wordpress.com/143/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/cannonerd.wordpress.com/143/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/cannonerd.wordpress.com/143/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/cannonerd.wordpress.com/143/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/cannonerd.wordpress.com/143/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=cannonerd.wordpress.com&amp;blog=13724811&amp;post=143&amp;subd=cannonerd&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://cannonerd.wordpress.com/2012/01/11/javascript-and-gnome-3-referring-to-files-and-asynchronous-http-requests-using-async-libsoup/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/15809ced1c56027baf5043d03ebc2051?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">cannonerd</media:title>
		</media:content>
	</item>
		<item>
		<title>Hack GNOME3 like your browser</title>
		<link>http://cannonerd.wordpress.com/2011/12/22/hack-gnome3-like-browser/</link>
		<comments>http://cannonerd.wordpress.com/2011/12/22/hack-gnome3-like-browser/#comments</comments>
		<pubDate>Thu, 22 Dec 2011 19:58:05 +0000</pubDate>
		<dc:creator>cannonerd</dc:creator>
				<category><![CDATA[GNOME]]></category>

		<guid isPermaLink="false">http://cannonerd.wordpress.com/?p=135</guid>
		<description><![CDATA[My first reaction to the new GNOME 3.2 was that I hate it! Resistance to anything new lives strong in me, apparently. Then the realization kicked in: I can make it work exactly like I want. Modifying the JavaScript-powered GNOME Shell is as easy as hacking a web page. And here came the extensions, and [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=cannonerd.wordpress.com&amp;blog=13724811&amp;post=135&amp;subd=cannonerd&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>My first reaction to the new <a href="http://www.gnome.org/gnome-3/">GNOME 3.2</a> was that I hate it! Resistance to anything new lives strong in me, apparently. Then the realization kicked in: I can make it work exactly like I want. Modifying the JavaScript-powered GNOME Shell is as easy as hacking a web page.</p>
<p>And here came the <a href="https://extensions.gnome.org/">extensions</a>, and then the modified versions of <a href="https://github.com/siefkenj/gnome-shell-windowlist/network">existing extensions</a>!</p>
<p>All of a sudden, after an hour of first whining and then hacking, GNOME 3.2 feels like home and I&#8217;m actually liking this ease of modifying my desktop to my preferences. This desktop is mine and I could have pink flying ponies in it if I wanted to. Brilliant!</p>
<p>To get all things going you just need a few easy steps.</p>
<ol>
<li>Load and install an extension from <a href="https://extensions.gnome.org">https://extensions.gnome.org</a></li>
<li>Fork the extension project that you want to modify from git or wherever</li>
<li>Make it your own</li>
<li>Save your progress</li>
<li>Run <em>$ cp -r file_where_your_extension_is ~/.local/share/gnome-shell/extensions/</em> on terminal</li>
<li>Reload your desktop with Alt-F2 and to the prompt <em>r</em>. If Alt-F2 doesn&#8217;t launch the prompt, <a href="http://www.mjfox.ch/wordpress/gnome-shell-3-2-alt-f2-reactivate/">fix it with this</a>.<br />
<a href="http://cannonerd.files.wordpress.com/2011/12/screenshot-at-2011-12-19-140844.png"><img class="aligncenter size-medium wp-image-136" title="Reload your extension with alt F2 and r" src="http://cannonerd.files.wordpress.com/2011/12/screenshot-at-2011-12-19-140844.png?w=300&#038;h=175" alt="" width="300" height="175" /></a></li>
<li>After few iterations enjoy your own modifications to your desktop!<br />
<a href="http://cannonerd.files.wordpress.com/2011/12/screenshot-at-2011-12-22-214449.png"><img class="aligncenter size-medium wp-image-137" title="Modified extension at work" src="http://cannonerd.files.wordpress.com/2011/12/screenshot-at-2011-12-22-214449.png?w=300&#038;h=175" alt="" width="300" height="175" /></a></li>
</ol>
<p>The looking glass debugger is a useful additional tool that can also be launched from command prompt. So, Alt-F2 yet again and then just type <em>lg</em>.</p>
<p>And there you have your tools to hack your browser-like desktop an inspector and a reloader. <a href="https://extensions.gnome.org/about/">Happy hacking</a>, everyone!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/cannonerd.wordpress.com/135/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/cannonerd.wordpress.com/135/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/cannonerd.wordpress.com/135/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/cannonerd.wordpress.com/135/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/cannonerd.wordpress.com/135/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/cannonerd.wordpress.com/135/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/cannonerd.wordpress.com/135/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/cannonerd.wordpress.com/135/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/cannonerd.wordpress.com/135/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/cannonerd.wordpress.com/135/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/cannonerd.wordpress.com/135/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/cannonerd.wordpress.com/135/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/cannonerd.wordpress.com/135/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/cannonerd.wordpress.com/135/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=cannonerd.wordpress.com&amp;blog=13724811&amp;post=135&amp;subd=cannonerd&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://cannonerd.wordpress.com/2011/12/22/hack-gnome3-like-browser/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/15809ced1c56027baf5043d03ebc2051?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">cannonerd</media:title>
		</media:content>

		<media:content url="http://cannonerd.files.wordpress.com/2011/12/screenshot-at-2011-12-19-140844.png?w=300" medium="image">
			<media:title type="html">Reload your extension with alt F2 and r</media:title>
		</media:content>

		<media:content url="http://cannonerd.files.wordpress.com/2011/12/screenshot-at-2011-12-22-214449.png?w=300" medium="image">
			<media:title type="html">Modified extension at work</media:title>
		</media:content>
	</item>
		<item>
		<title>GNOME and JavaScript</title>
		<link>http://cannonerd.wordpress.com/2011/12/14/gnome-and-javascript/</link>
		<comments>http://cannonerd.wordpress.com/2011/12/14/gnome-and-javascript/#comments</comments>
		<pubDate>Wed, 14 Dec 2011 14:40:43 +0000</pubDate>
		<dc:creator>cannonerd</dc:creator>
				<category><![CDATA[GNOME]]></category>

		<guid isPermaLink="false">http://cannonerd.wordpress.com/?p=128</guid>
		<description><![CDATA[The plans for the JavaScripter&#8217;s guide to GNOME 3.  (or the cookbook as I call my project now) are advancing.  The initial roadmap was layed this morning with Cosimo Cecci. Looks like I shall first dive into GNOME, explore the platform, read a lot of code and try to identify some patterns which are more common [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=cannonerd.wordpress.com&amp;blog=13724811&amp;post=128&amp;subd=cannonerd&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>The plans for the JavaScripter&#8217;s guide to GNOME 3.  (or the cookbook as I call my project now) are advancing.  The initial roadmap was layed this morning with <a href="http://blogs.gnome.org/cosimoc/">Cosimo Cecci</a>. Looks like I shall first dive into GNOME, explore the platform, read a lot of code and try to identify some patterns which are more common or important than others. Based on my views I will make a draft of what should be included in the cookbook.</p>
<p>On Tuesday I participated in Helsinki&#8217;s first <a href="http://lanyrd.com/2011/helsinkijs-december/">JSmeetup</a>. The thing that suprised me a lot was the fact that nearly no one knew of the possibility to write programs for GNOME with JavaScript. I promised to give a small presentation about the subject in February when my cookbook is looking a bit better.  Making all the different possibilities known to developers out there is an important task we have to deal with.</p>
<p>First week on work is finally happening and I&#8217;m happy to work with this project. Taking a plunge to GNOME with a wide smile on my face!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/cannonerd.wordpress.com/128/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/cannonerd.wordpress.com/128/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/cannonerd.wordpress.com/128/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/cannonerd.wordpress.com/128/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/cannonerd.wordpress.com/128/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/cannonerd.wordpress.com/128/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/cannonerd.wordpress.com/128/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/cannonerd.wordpress.com/128/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/cannonerd.wordpress.com/128/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/cannonerd.wordpress.com/128/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/cannonerd.wordpress.com/128/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/cannonerd.wordpress.com/128/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/cannonerd.wordpress.com/128/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/cannonerd.wordpress.com/128/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=cannonerd.wordpress.com&amp;blog=13724811&amp;post=128&amp;subd=cannonerd&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://cannonerd.wordpress.com/2011/12/14/gnome-and-javascript/feed/</wfw:commentRss>
		<slash:comments>12</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/15809ced1c56027baf5043d03ebc2051?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">cannonerd</media:title>
		</media:content>
	</item>
		<item>
		<title>Shots towards GNOME 3.</title>
		<link>http://cannonerd.wordpress.com/2011/11/17/shots-towards-gnome-3/</link>
		<comments>http://cannonerd.wordpress.com/2011/11/17/shots-towards-gnome-3/#comments</comments>
		<pubDate>Thu, 17 Nov 2011 15:23:17 +0000</pubDate>
		<dc:creator>cannonerd</dc:creator>
				<category><![CDATA[GNOME]]></category>

		<guid isPermaLink="false">http://cannonerd.wordpress.com/?p=116</guid>
		<description><![CDATA[New and exiting adventures ahead. I got GNOME Outreach Program for Women internship. I&#8217;ll be making a &#8220;JavaScripter&#8217;s Guide to GNOME&#8221; starting on December 12. The idea behind the guide is to enable web developers to utilize their skills in GNOME 3. development. I would explain how to structure an app, how to create windows, add content and functionality to [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=cannonerd.wordpress.com&amp;blog=13724811&amp;post=116&amp;subd=cannonerd&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>New and exiting adventures ahead. I got <a title="GnomeWomen" href="http://live.gnome.org/GnomeWomen/OutreachProgram2011">GNOME Outreach Program for Women internship</a>. I&#8217;ll be making a &#8220;JavaScripter&#8217;s Guide to GNOME&#8221; starting on December 12. The idea behind the guide is to enable web developers to utilize their skills in GNOME 3. development. I would explain how to structure an app, how to create windows, add content and functionality to them, and how to connect with various services of the platform, and build the necessary project templates to support it.</p>
<p>I believe that with the help of my mentors Cosimo Cecchi and Johannes Schmid I&#8217;ll be able to make a guide that will truly ease the way towards GNOME 3.  And as a bonus I&#8217;ll have a chance to get to know a new community and make some new friends.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/cannonerd.wordpress.com/116/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/cannonerd.wordpress.com/116/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/cannonerd.wordpress.com/116/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/cannonerd.wordpress.com/116/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/cannonerd.wordpress.com/116/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/cannonerd.wordpress.com/116/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/cannonerd.wordpress.com/116/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/cannonerd.wordpress.com/116/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/cannonerd.wordpress.com/116/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/cannonerd.wordpress.com/116/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/cannonerd.wordpress.com/116/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/cannonerd.wordpress.com/116/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/cannonerd.wordpress.com/116/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/cannonerd.wordpress.com/116/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=cannonerd.wordpress.com&amp;blog=13724811&amp;post=116&amp;subd=cannonerd&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://cannonerd.wordpress.com/2011/11/17/shots-towards-gnome-3/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/15809ced1c56027baf5043d03ebc2051?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">cannonerd</media:title>
		</media:content>
	</item>
		<item>
		<title>Hello Android</title>
		<link>http://cannonerd.wordpress.com/2011/02/13/hello-android/</link>
		<comments>http://cannonerd.wordpress.com/2011/02/13/hello-android/#comments</comments>
		<pubDate>Sun, 13 Feb 2011 18:48:30 +0000</pubDate>
		<dc:creator>cannonerd</dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[MeeGo]]></category>

		<guid isPermaLink="false">http://cannonerd.wordpress.com/?p=108</guid>
		<description><![CDATA[And all of a sudden after Friday my Uni project with Java is much more meaningful: porting my last summer&#8217;s GSoC project The Tablet of Adventure to Android. Here is how it looks now: What works: Getting (and following) user&#8217;s location Calculating the day&#8217;s geohash for the location Displaying the geohash and user&#8217;s location on [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=cannonerd.wordpress.com&amp;blog=13724811&amp;post=108&amp;subd=cannonerd&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>And all of a sudden after Friday my Uni project with Java is <a title="Elopocalypse" href="http://bethesignal.org/blog/2011/02/11/elopocalypse-nokia-chooses-microsoft/">much more meaningful</a>: porting my last summer&#8217;s GSoC project <a href="http://cannonerd.wordpress.com/the-tablet-of-adventure/">The Tablet of Adventure</a> to Android. Here is how it looks now:</p>
<p><a href="http://cannonerd.files.wordpress.com/2011/02/20110213_003.jpg"><img class="aligncenter size-medium wp-image-109" title="Adventure Tablet for Android" src="http://cannonerd.files.wordpress.com/2011/02/20110213_003.jpg?w=300&#038;h=168" alt="" width="300" height="168" /></a></p>
<p>What works:</p>
<ul>
<li>Getting (and following) user&#8217;s location</li>
<li>Calculating the day&#8217;s geohash for the location</li>
<li>Displaying the geohash and user&#8217;s location on the map</li>
</ul>
<p>What is still missing:</p>
<ul>
<li>Social features</li>
</ul>
<p>You can follow the progress <a href="https://github.com/cannonerd/AdventureTablet">on GitHub</a>.</p>
<p>I have to say testing location based games is more fun in the summer time <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><a href="http://cannonerd.files.wordpress.com/2011/02/5442884886_16614e9841.jpg"><img class="aligncenter size-medium wp-image-112" title="testing" src="http://cannonerd.files.wordpress.com/2011/02/5442884886_16614e9841.jpg?w=225&#038;h=300" alt="" width="225" height="300" /></a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/cannonerd.wordpress.com/108/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/cannonerd.wordpress.com/108/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/cannonerd.wordpress.com/108/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/cannonerd.wordpress.com/108/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/cannonerd.wordpress.com/108/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/cannonerd.wordpress.com/108/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/cannonerd.wordpress.com/108/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/cannonerd.wordpress.com/108/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/cannonerd.wordpress.com/108/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/cannonerd.wordpress.com/108/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/cannonerd.wordpress.com/108/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/cannonerd.wordpress.com/108/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/cannonerd.wordpress.com/108/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/cannonerd.wordpress.com/108/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=cannonerd.wordpress.com&amp;blog=13724811&amp;post=108&amp;subd=cannonerd&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://cannonerd.wordpress.com/2011/02/13/hello-android/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/15809ced1c56027baf5043d03ebc2051?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">cannonerd</media:title>
		</media:content>

		<media:content url="http://cannonerd.files.wordpress.com/2011/02/20110213_003.jpg?w=300" medium="image">
			<media:title type="html">Adventure Tablet for Android</media:title>
		</media:content>

		<media:content url="http://cannonerd.files.wordpress.com/2011/02/5442884886_16614e9841.jpg?w=225" medium="image">
			<media:title type="html">testing</media:title>
		</media:content>
	</item>
		<item>
		<title>Someone half way around the world</title>
		<link>http://cannonerd.wordpress.com/2010/11/25/someone-on-the-other-side-of-the-world/</link>
		<comments>http://cannonerd.wordpress.com/2010/11/25/someone-on-the-other-side-of-the-world/#comments</comments>
		<pubDate>Thu, 25 Nov 2010 02:57:21 +0000</pubDate>
		<dc:creator>cannonerd</dc:creator>
				<category><![CDATA[Maemo]]></category>

		<guid isPermaLink="false">http://cannonerd.wordpress.com/?p=102</guid>
		<description><![CDATA[Sleepless, browsing through the internet. Noticing that someone in  Singapore is on their way home. Joining the adventure just for the fun of it, not moving out from my bedroom Wishing the adventurer nice journey to destination.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=cannonerd.wordpress.com&amp;blog=13724811&amp;post=102&amp;subd=cannonerd&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Sleepless, browsing through the internet. Noticing that someone in  Singapore is on their way home. Joining the adventure just for the fun of it, not moving out from my bedroom <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  Wishing the adventurer nice journey to destination.</p>
<p><a href="http://cannonerd.files.wordpress.com/2010/11/5205299549_aebe06874a.jpg"><img class="aligncenter size-medium wp-image-103" title="adventuring" src="http://cannonerd.files.wordpress.com/2010/11/5205299549_aebe06874a.jpg?w=300&#038;h=180" alt="" width="300" height="180" /></a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/cannonerd.wordpress.com/102/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/cannonerd.wordpress.com/102/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/cannonerd.wordpress.com/102/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/cannonerd.wordpress.com/102/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/cannonerd.wordpress.com/102/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/cannonerd.wordpress.com/102/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/cannonerd.wordpress.com/102/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/cannonerd.wordpress.com/102/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/cannonerd.wordpress.com/102/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/cannonerd.wordpress.com/102/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/cannonerd.wordpress.com/102/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/cannonerd.wordpress.com/102/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/cannonerd.wordpress.com/102/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/cannonerd.wordpress.com/102/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=cannonerd.wordpress.com&amp;blog=13724811&amp;post=102&amp;subd=cannonerd&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://cannonerd.wordpress.com/2010/11/25/someone-on-the-other-side-of-the-world/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/15809ced1c56027baf5043d03ebc2051?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">cannonerd</media:title>
		</media:content>

		<media:content url="http://cannonerd.files.wordpress.com/2010/11/5205299549_aebe06874a.jpg?w=300" medium="image">
			<media:title type="html">adventuring</media:title>
		</media:content>
	</item>
		<item>
		<title>Install Tablet of Adventure for the MeeGo Conference</title>
		<link>http://cannonerd.wordpress.com/2010/11/11/install-tablet-of-adventure-for-the-meego-conference/</link>
		<comments>http://cannonerd.wordpress.com/2010/11/11/install-tablet-of-adventure-for-the-meego-conference/#comments</comments>
		<pubDate>Thu, 11 Nov 2010 11:57:17 +0000</pubDate>
		<dc:creator>cannonerd</dc:creator>
				<category><![CDATA[Maemo]]></category>
		<category><![CDATA[MeeGo]]></category>

		<guid isPermaLink="false">http://cannonerd.wordpress.com/?p=94</guid>
		<description><![CDATA[Whoa. I&#8217;m going to Dublin to MeeGo Conference! This will be my first conference ever. I&#8217;m not quite sure what to expect.&#160; One thing is sure. There will be a getaway quest for MeeGons using Tablet of Adventure. When or where, i haven&#8217;t decided yet, but there will be one, probably targeting beer<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=cannonerd.wordpress.com&amp;blog=13724811&amp;post=94&amp;subd=cannonerd&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Whoa. I&#8217;m going to Dublin to MeeGo Conference!</p>
<p>This will be my first conference ever. I&#8217;m not quite sure what to expect.&nbsp; One thing is sure. There will be a getaway quest for MeeGons using <a href="http://maemo.org/downloads/product/Maemo5/adventure-tablet/">Tablet of Adventure</a>. When or where, i haven&#8217;t decided yet, but there will be one, probably targeting beer <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><a href="http://cannonerd.files.wordpress.com/2010/11/mego.jpg"><img class="aligncenter size-medium wp-image-95" title="MeeGo?" src="http://cannonerd.files.wordpress.com/2010/11/mego.jpg?w=300&#038;h=180" alt="" height="180" width="300"></a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/cannonerd.wordpress.com/94/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/cannonerd.wordpress.com/94/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/cannonerd.wordpress.com/94/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/cannonerd.wordpress.com/94/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/cannonerd.wordpress.com/94/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/cannonerd.wordpress.com/94/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/cannonerd.wordpress.com/94/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/cannonerd.wordpress.com/94/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/cannonerd.wordpress.com/94/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/cannonerd.wordpress.com/94/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/cannonerd.wordpress.com/94/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/cannonerd.wordpress.com/94/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/cannonerd.wordpress.com/94/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/cannonerd.wordpress.com/94/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=cannonerd.wordpress.com&amp;blog=13724811&amp;post=94&amp;subd=cannonerd&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://cannonerd.wordpress.com/2010/11/11/install-tablet-of-adventure-for-the-meego-conference/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/15809ced1c56027baf5043d03ebc2051?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">cannonerd</media:title>
		</media:content>

		<media:content url="http://cannonerd.files.wordpress.com/2010/11/mego.jpg?w=300" medium="image">
			<media:title type="html">MeeGo?</media:title>
		</media:content>
	</item>
		<item>
		<title>A complete Adventure.</title>
		<link>http://cannonerd.wordpress.com/2010/08/02/a-complete-adventure/</link>
		<comments>http://cannonerd.wordpress.com/2010/08/02/a-complete-adventure/#comments</comments>
		<pubDate>Mon, 02 Aug 2010 06:43:53 +0000</pubDate>
		<dc:creator>cannonerd</dc:creator>
				<category><![CDATA[Maemo]]></category>

		<guid isPermaLink="false">http://cannonerd.wordpress.com/?p=62</guid>
		<description><![CDATA[That&#8217;s it. I claim my GSoC10 project finished. And what did I actually do? I coded like a mad person at times, slept much too little, found myself in odd places, took some time off and did nothing related to my project, swam in the sea of despair, learned a lot and had fun. The [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=cannonerd.wordpress.com&amp;blog=13724811&amp;post=62&amp;subd=cannonerd&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><!-- 		@page { margin: 0.79in } 		P { margin-bottom: 0.08in } -->That&#8217;s it. I claim my GSoC10 project finished.</p>
<p><a href="http://cannonerd.files.wordpress.com/2010/08/4847324040_b456899d9b.jpg"><img class="aligncenter size-medium wp-image-63" title="4847324040_b456899d9b" src="http://cannonerd.files.wordpress.com/2010/08/4847324040_b456899d9b.jpg?w=300&#038;h=180" alt="" width="300" height="180" /></a></p>
<p>And  what did I actually do? I coded like a mad person at times, slept much too little, found myself in odd places, took some time off and did nothing related to my project, swam in the sea of despair, learned a lot and had fun.</p>
<p>The application is not in all parts what I planned it to be and in some parts it&#8217;s more than I expected. Now the <a href="http://maemo.org/packages/view/adventure-tablet/">version 1.0 is in extras-testing</a>. It would be nice to hear some testing reports, the <a href="http://github.com/cannonerd/adventure_tablet/issues">bug tracker can be found in GitHub</a> . Hopefully soon enough I&#8217;ll have the opportunity to just lay back and watch people going on their adventures. A short introduction to the application can be found in the <a href="http://cannonerd.wordpress.com/the-tablet-of-adventure/">tab the Tablet of Adventure</a>.</p>
<p><a href="http://cannonerd.files.wordpress.com/2010/08/4851228856_7f06ccc573.jpg"><img class="aligncenter size-medium wp-image-64" title="4851228856_7f06ccc573" src="http://cannonerd.files.wordpress.com/2010/08/4851228856_7f06ccc573.jpg?w=300&#038;h=180" alt="" width="300" height="180" /></a></p>
<p>Although the GsoC10 project is finished, the work with the Tablet of Adventure is not.  I have couple of ideas of how I could make my software more versatile. And then there will be the versions. First an Ubuntu desktop version, so you can watch where your friends are going.  And if I get to an agreement with my University I&#8217;ll make my software run on Android too. And so on. This was only the beginning.</p>
<p><a href="http://cannonerd.files.wordpress.com/2010/08/splash.jpg"></a></p>
<div id="attachment_90" class="wp-caption aligncenter" style="width: 310px"><a href="http://cannonerd.files.wordpress.com/2010/08/splash2.jpg"><img class="size-medium wp-image-90" title="splash" src="http://cannonerd.files.wordpress.com/2010/08/splash2.jpg?w=300&#038;h=180" alt="" width="300" height="180" /></a><p class="wp-caption-text">artwork by Nina Mutik (nina.mutik (a) gmail.com)</p></div>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/cannonerd.wordpress.com/62/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/cannonerd.wordpress.com/62/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/cannonerd.wordpress.com/62/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/cannonerd.wordpress.com/62/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/cannonerd.wordpress.com/62/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/cannonerd.wordpress.com/62/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/cannonerd.wordpress.com/62/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/cannonerd.wordpress.com/62/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/cannonerd.wordpress.com/62/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/cannonerd.wordpress.com/62/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/cannonerd.wordpress.com/62/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/cannonerd.wordpress.com/62/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/cannonerd.wordpress.com/62/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/cannonerd.wordpress.com/62/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=cannonerd.wordpress.com&amp;blog=13724811&amp;post=62&amp;subd=cannonerd&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://cannonerd.wordpress.com/2010/08/02/a-complete-adventure/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/15809ced1c56027baf5043d03ebc2051?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">cannonerd</media:title>
		</media:content>

		<media:content url="http://cannonerd.files.wordpress.com/2010/08/4847324040_b456899d9b.jpg?w=300" medium="image">
			<media:title type="html">4847324040_b456899d9b</media:title>
		</media:content>

		<media:content url="http://cannonerd.files.wordpress.com/2010/08/4851228856_7f06ccc573.jpg?w=300" medium="image">
			<media:title type="html">4851228856_7f06ccc573</media:title>
		</media:content>

		<media:content url="http://cannonerd.files.wordpress.com/2010/08/splash2.jpg?w=300" medium="image">
			<media:title type="html">splash</media:title>
		</media:content>
	</item>
		<item>
		<title>no play?</title>
		<link>http://cannonerd.wordpress.com/2010/07/30/no-play/</link>
		<comments>http://cannonerd.wordpress.com/2010/07/30/no-play/#comments</comments>
		<pubDate>Fri, 30 Jul 2010 11:34:02 +0000</pubDate>
		<dc:creator>cannonerd</dc:creator>
		
		<guid isPermaLink="false">http://cannonerd.wordpress.com/?p=58</guid>
		<description><![CDATA[What was I thinking,  all work and no play? It&#8217;s a game, it&#8217;s fun! And now some testing. My destination is a nearby beach<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=cannonerd.wordpress.com&amp;blog=13724811&amp;post=58&amp;subd=cannonerd&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>What was I thinking,  all work and no play? It&#8217;s a game, it&#8217;s fun!</p>
<p>And now some testing. My destination is a nearby beach <img src='http://s0.wp.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/cannonerd.wordpress.com/58/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/cannonerd.wordpress.com/58/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/cannonerd.wordpress.com/58/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/cannonerd.wordpress.com/58/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/cannonerd.wordpress.com/58/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/cannonerd.wordpress.com/58/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/cannonerd.wordpress.com/58/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/cannonerd.wordpress.com/58/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/cannonerd.wordpress.com/58/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/cannonerd.wordpress.com/58/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/cannonerd.wordpress.com/58/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/cannonerd.wordpress.com/58/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/cannonerd.wordpress.com/58/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/cannonerd.wordpress.com/58/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=cannonerd.wordpress.com&amp;blog=13724811&amp;post=58&amp;subd=cannonerd&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://cannonerd.wordpress.com/2010/07/30/no-play/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/15809ced1c56027baf5043d03ebc2051?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">cannonerd</media:title>
		</media:content>
	</item>
		<item>
		<title>Almost there</title>
		<link>http://cannonerd.wordpress.com/2010/07/29/almost-there/</link>
		<comments>http://cannonerd.wordpress.com/2010/07/29/almost-there/#comments</comments>
		<pubDate>Thu, 29 Jul 2010 12:14:54 +0000</pubDate>
		<dc:creator>cannonerd</dc:creator>
				<category><![CDATA[Maemo]]></category>

		<guid isPermaLink="false">http://cannonerd.wordpress.com/?p=54</guid>
		<description><![CDATA[The project is nearing it&#8217;s end. Social features are forming up, the UI is getting more refined forms and the amount of rows in my code is building up. At this point in my code I&#8217;m making things work rather than making the code look good. There is some refactoring ahead. The program itself has [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=cannonerd.wordpress.com&amp;blog=13724811&amp;post=54&amp;subd=cannonerd&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><!-- 		@page { margin: 0.79in } 		P { margin-bottom: 0.08in } --><a href="http://cannonerd.files.wordpress.com/2010/07/final.jpg"><img class="aligncenter size-medium wp-image-56" title="final" src="http://cannonerd.files.wordpress.com/2010/07/final.jpg?w=300&#038;h=180" alt="" width="300" height="180" /></a></p>
<p>The project is nearing it&#8217;s end. Social features are forming up, the UI is getting more refined forms and the amount of rows in my code is building up. At this point in my code I&#8217;m making things work rather than making the code look good. There is some refactoring ahead.</p>
<p>The program itself has gotten an adventure editor, where you can form your own adventures. Click on the map and a headline and you are on your way.  In settings you can change your buttons colour and soon enough you can read comments and see where other participants are.</p>
<p><a href="http://cannonerd.files.wordpress.com/2010/07/adventure.jpg"><img class="aligncenter size-medium wp-image-55" title="adventure" src="http://cannonerd.files.wordpress.com/2010/07/adventure.jpg?w=300&#038;h=180" alt="" width="300" height="180" /></a></p>
<p>The next release will probably happen during the weekend. Before that it&#8217;s work work work and no play.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/cannonerd.wordpress.com/54/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/cannonerd.wordpress.com/54/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/cannonerd.wordpress.com/54/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/cannonerd.wordpress.com/54/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/cannonerd.wordpress.com/54/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/cannonerd.wordpress.com/54/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/cannonerd.wordpress.com/54/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/cannonerd.wordpress.com/54/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/cannonerd.wordpress.com/54/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/cannonerd.wordpress.com/54/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/cannonerd.wordpress.com/54/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/cannonerd.wordpress.com/54/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/cannonerd.wordpress.com/54/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/cannonerd.wordpress.com/54/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=cannonerd.wordpress.com&amp;blog=13724811&amp;post=54&amp;subd=cannonerd&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://cannonerd.wordpress.com/2010/07/29/almost-there/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/15809ced1c56027baf5043d03ebc2051?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">cannonerd</media:title>
		</media:content>

		<media:content url="http://cannonerd.files.wordpress.com/2010/07/final.jpg?w=300" medium="image">
			<media:title type="html">final</media:title>
		</media:content>

		<media:content url="http://cannonerd.files.wordpress.com/2010/07/adventure.jpg?w=300" medium="image">
			<media:title type="html">adventure</media:title>
		</media:content>
	</item>
	</channel>
</rss>
