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

<channel>
	<title>Myoddweb.com</title>
	<atom:link href="http://www.myoddweb.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.myoddweb.com</link>
	<description>Myoddweb.com Home of Courseplanner - Flight planner for Flight Simulator</description>
	<lastBuildDate>Wed, 25 Nov 2009 21:04:35 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>The &#8220;Hello Dolly&#8221; of piger</title>
		<link>http://www.myoddweb.com/2009/11/25/the-hello-dolly-of-piger/</link>
		<comments>http://www.myoddweb.com/2009/11/25/the-hello-dolly-of-piger/#comments</comments>
		<pubDate>Wed, 25 Nov 2009 21:01:52 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Piger]]></category>
		<category><![CDATA[development]]></category>

		<guid isPermaLink="false">http://www.myoddweb.com/?p=145</guid>
		<description><![CDATA[I created a small c++ plugin to show the basic architecture of the piger plugin.
Wordpress has a very simple plugin that they called &#8216;Hello Dolly&#8217;, this plugin does not really do much apart from randomly displaying a lyric from &#8220;Hello Dolly&#8221;
First things first, download the latest source code of the plugin and we will talk [...]]]></description>
			<content:encoded><![CDATA[<p>I created a small c++ plugin to show the basic architecture of the piger plugin.<br />
<a href="http://wordpress.org/">Wordpress</a> has a very simple plugin that they called &#8216;Hello Dolly&#8217;, <a href="http://codex.wordpress.org/Plugins#Default_Plugins">this plugin</a> does not really do much apart from randomly displaying a lyric from &#8220;<a href="http://en.wikipedia.org/wiki/Hello,_Dolly!_%28song%29">Hello Dolly</a>&#8221;</p>
<p>First things first,<a href="https://sourceforge.net/projects/unixpiger/files/"> download the latest source code</a> of the plugin and we will talk about each files in a bit more details.</p>
<p><strong>The file type</strong>:<br />
The file is nothing more than a DLL with an <em>&#8216;.amp&#8217;</em> extension. So when you create your plugin make sure that the output file has a <em>&#8216;.amp&#8217;</em> extension.</p>
<p><strong>The files to include</strong>:<br />
You need to include 2 files, a header(h) file and a library(.lib) file.<br />
<span id="more-145"></span></p>
<pre>// support for PluginAPI
#include "../../api/amplugin/amplugin.h"

// add the libs
#ifdef _DEBUG
#pragma comment(lib, "../../debug/amplugin.lib" )
#else
#pragma comment(lib, "../../release/amplugin.lib" )
#endif</pre>
<p>And in the cpp file, the one and only function.</p>
<pre>PLUGIN_API
AM_RESPONSE am_Msg( AM_MSG msg, WPARAM wParam, LPARAM lParam  )
{
  return AM_RESP_NOT_SUPPORTED;
}</pre>
<p>Some important messages&#8230;</p>
<pre>...
  <span style="color: #3366ff;">switch</span>( msg )
  {
  <span style="color: #3366ff;">case </span>AM_MSG_INIT:   <span style="color: #339966;">// called when the plugin is first loaded.</span>
  <span style="color: #3366ff;">case </span>AM_MSG_DEINIT: <span style="color: #339966;">// called when we are closing the app</span>
  <span style="color: #3366ff;">case </span>AM_MSG_MAIN:   <span style="color: #339966;">// called when one, (or more), of the commands we </span>
                      <span style="color: #339966;">// registered are called.</span>
  }</pre>
<p>When the message &#8216;AM_MSG_INIT&#8217; is called you can add an action using the &#8216;<em>addAction( &#8230; )</em>&#8216; function.</p>
<p>AM_MSG_MAIN will be called when that action is entered.</p>
<p><strong>Things to note</strong>:</p>
<ul>
<li>Place your plugin in the __in folder, (normally found in %appdata%\MyOddWeb\ActionMonitor_d\RootCommands\__in).</li>
<li><strong>Don&#8217;t mix debug and release builds</strong>, to debug your plugin you will need to run it again the debug version of Action monitor, (and the folder is %appdata%\MyOddWeb\<strong>ActionMonitor_d</strong>\RootCommands\__in).</li>
<li>Have a look at the file &#8220;<span style="color: #3366ff;">#include</span><span style="color: #800000;"> &#8220;am_plugins.h&#8221;</span>&#8220;, it explains what most messages do.</li>
<li>Call <strong>[Caps lock] this.reload</strong> to reload <strong><em>everything</em></strong>.</li>
<li>Download <a href="https://sourceforge.net/projects/unixpiger/files/">the plugin code here</a>.</li>
</ul>
<p>Visit <a href="http://forum.myoddweb.com">the forum</a> if you have any technical questions.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.myoddweb.com/2009/11/25/the-hello-dolly-of-piger/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New Piger fourm</title>
		<link>http://www.myoddweb.com/2009/11/18/new-piger-fourm/</link>
		<comments>http://www.myoddweb.com/2009/11/18/new-piger-fourm/#comments</comments>
		<pubDate>Wed, 18 Nov 2009 12:10:54 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Piger]]></category>
		<category><![CDATA[development]]></category>

		<guid isPermaLink="false">http://www.myoddweb.com/?p=142</guid>
		<description><![CDATA[I finally got around to creating a new forum for Piger, the main purpose of Piger is to make my life easier  . I hate using my keyboard more than I have to, and I hate having to do the same thing over and over again.
So a while ago, (a year ago I think), [...]]]></description>
			<content:encoded><![CDATA[<p>I finally got around to creating a <a href="http://forum.myoddweb.com/viewforum.php?f=9">new forum</a> for <a href="https://sourceforge.net/projects/unixpiger/">Piger</a>, the main purpose of Piger is to make my life easier <img src='http://www.myoddweb.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> . I hate using my keyboard more than I have to, and I hate having to do the same thing over and over again.</p>
<p>So a while ago, (a year ago I think), I created a small tool that simply takes your keyboard input and runs a pre-programmed script accordingly, it can be anything, from launching calculator to login into your favourite website using another browser that your favourite one.</p>
<p>You can write your scripts in <a href="http://en.wikipedia.org/wiki/Lua_(programming_language)">LUA</a>, C++, <a href="http://en.wikipedia.org/wiki/Python_(programming_language)">Python</a>, or even DOS (batch).</p>
<p><strong>Note</strong>, by default the tool does not write scripts for you, it comes with a few basic scripts but nothing too exiting. So please use <a href="http://forum.myoddweb.com/viewforum.php?f=9">the forums</a> if you have any scripting questions.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.myoddweb.com/2009/11/18/new-piger-fourm/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Install Ubuntu 9 on Virtual PC 2007 &#8211; part trois</title>
		<link>http://www.myoddweb.com/2009/09/22/install-ubuntu-9-on-virtual-pc-2007-part-trois/</link>
		<comments>http://www.myoddweb.com/2009/09/22/install-ubuntu-9-on-virtual-pc-2007-part-trois/#comments</comments>
		<pubDate>Tue, 22 Sep 2009 08:02:55 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[development]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[Update]]></category>
		<category><![CDATA[Virtual PC]]></category>

		<guid isPermaLink="false">http://www.myoddweb.com/?p=129</guid>
		<description><![CDATA[There is one last problem with the Ubuntu install, when you update the Kernel it will remove the noreplace-paravirt vga=771 that you added.
This is probably because Ubuntu assumes you made a mistake. Whatever the reason you need to update the menu.lst file.
First of all lets make sure that you read all the previous articles so [...]]]></description>
			<content:encoded><![CDATA[<p>There is one last problem with the Ubuntu install, when you update the Kernel it will remove the <em>noreplace-paravirt vga=771</em> that you added.</p>
<p>This is probably because Ubuntu assumes you made a mistake. Whatever the reason you need to update the <em>menu.lst</em> file.</p>
<p>First of all lets make sure that you read all the previous articles so we are all talking about the same thing.</p>
<ol>
<li><a href="http://www.myoddweb.com/2009/07/03/install-ubuntu-9-on-virtual-pc-2007/">Install Ubuntu 9 on Virtual PC 2007</a>.</li>
<li><a href="http://www.myoddweb.com/2009/07/04/install-ubuntu-9-on-virtual-pc-2007-part-deux/">Update the menu.lst after install</a>.</li>
<li>Update the <em>menu.lst</em> again after updating the kernel.</li>
</ol>
<p>From time to time Ubuntu will update various software, (or you can do it your self,  <em>System &gt; Administration &gt; Update Manager</em>. Any one of those update might be a brand new kernel update, in that case you will need to edit the menu all over again.</p>
<ol>
<li>Open the terminal , (‘<em>Applications&gt;Accessories&gt;Terminal’)</em></li>
<li>At the cursor type ‘<em>gksudo gedit /boot/grub/menu.lst</em>‘, (without the quotes), press enter.</li>
<li>Enter your password if you have to.</li>
<li>Look for the first boot option
<pre>## ## End Default Options ##
title ...
uuid ...
kernel ...</pre>
</li>
<li>look for the entry that mentions <em>&#8216;<em>Kernel&#8217;</em></em>.</li>
<li>Add &#8216;<em>noreplace-paravirt</em>‘ at the end of it.</li>
<li>Save the file</li>
<li>Close the editor.</li>
<li>Tell Ubuntu that you changed the file:
<pre>sudo update-grub</pre>
</li>
<li>Reboot and everything should be back to normal &#8230; until you update again.</li>
</ol>
<p><strong>NB</strong>: If you cannot boot at all, (because your screen is black or throwing some errors), simply follow the same instructions <a href="http://www.myoddweb.com/2009/07/03/install-ubuntu-9-on-virtual-pc-2007/">in the first article</a> on booting up Ubuntu.</p>
<p><strong>NB2: </strong>If you still have a question, feel free to go <a href="http://forum.myoddweb.com/viewforum.php?f=6">to the forum</a> and I&#8217;ll try to help as much as I can.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.myoddweb.com/2009/09/22/install-ubuntu-9-on-virtual-pc-2007-part-trois/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Back in the flying seat</title>
		<link>http://www.myoddweb.com/2009/08/23/back-in-the-flying-seat/</link>
		<comments>http://www.myoddweb.com/2009/08/23/back-in-the-flying-seat/#comments</comments>
		<pubDate>Sun, 23 Aug 2009 16:45:12 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Courseplanner]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[automatic flight]]></category>
		<category><![CDATA[waypoint]]></category>

		<guid isPermaLink="false">http://www.myoddweb.com/?p=123</guid>
		<description><![CDATA[I finally managed to get back to flying a little over the week-end, I am working on some new features for Courseplanner, namely the ability to turn into a waypoint, (or past a waypoint depending on the one you want to visit).
All the coding is done, I am just testing with various aircraft if everything [...]]]></description>
			<content:encoded><![CDATA[<div id="attachment_122" class="wp-caption alignleft" style="width: 160px"><img class="size-thumbnail wp-image-122" title="tracking" src="http://www.myoddweb.com/wp-content/uploads/2009/08/tracking-150x150.jpg" alt="Courseplanner tracking a waypoint" width="150" height="150" /><p class="wp-caption-text">Courseplanner tracking a waypoint</p></div>
<p>I finally managed to get back to flying a little over the week-end, I am working on some new features for <a title="Courseplanner" href="http://www.myoddweb.com/courseplanner/">Courseplanner</a>, namely the ability to turn into a waypoint, (or past a waypoint depending on the one you want to visit).</p>
<p>All the coding is done, I am just testing with various aircraft if everything works as expected. With all the small aircraft, (Cessna, Mooney and so on), it works well, but it is another story for the heavies. It is just very hard to remain on course without having some wild turns in order to remain on course.</p>
<p>I also added some small features to see where the automatic flight management of Courseplanner is aiming.</p>
<p>But all in all it is fun to get back to flying again.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.myoddweb.com/2009/08/23/back-in-the-flying-seat/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Install Ubuntu 9 on Virtual PC 2007 &#8211; part deux</title>
		<link>http://www.myoddweb.com/2009/07/04/install-ubuntu-9-on-virtual-pc-2007-part-deux/</link>
		<comments>http://www.myoddweb.com/2009/07/04/install-ubuntu-9-on-virtual-pc-2007-part-deux/#comments</comments>
		<pubDate>Sat, 04 Jul 2009 05:46:28 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[development]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[Virtual PC]]></category>

		<guid isPermaLink="false">http://www.myoddweb.com/?p=118</guid>
		<description><![CDATA[Part 2 of installing Ubuntu 9.04 on Vrtual PC 2007, Editing the menu.lst file so that it always works.]]></description>
			<content:encoded><![CDATA[<p>Ok, so you <a title="Install Ubuntu 9.0.4 on Virtual PC" href="http://www.myoddweb.com/2009/07/03/install-ubuntu-9-on-virtual-pc-2007/">installed Ubuntu</a> 9.04 on Virtual PC 2007, and it now asks you to reboot, (or you already tried to reboot, cursed me, and came back here to see if you missed something).<br />
If you are lucky, everything works fine, if not you cannot see anything or you get a bunch of errors. This is because, once again, Ubuntu is trying to guess your virtual screen resolution and it is guessing it wrong.</p>
<p>So you need to edit the &#8216;boot&#8217; file once and for all so that from now on it boots into the right screen.</p>
<p>You need to do 2 things, first you need to edit the boot, one more time to get into Ubuntu and then you will need to update the boot file so that you no longer have to do this again.</p>
<p>So, reboot Ubuntu, when you see something like &#8216;<em>grub loading&#8230;</em>&#8216;, press esc and you will see a menu.</p>
<p>Select the first line, it will say something along the lines of &#8216;<em>Ubuntu 9.0.4, Kernel &#8230;&#8217;</em>. The other lines should say almost the same with extra words like, &#8216;<em>Recovery mode</em>&#8216; and &#8216;<em>memtest86+</em>&#8216; don&#8217;t choose those.<br />
Press &#8216;e&#8217; to edit the boot commands.</p>
<p>Select the line that says something like &#8220;<em>Kernel &#8230;</em>&#8220;, (normally the first one, but sometimes the second line).<br />
Press &#8216;e&#8217; again, (to edit that line).<br />
At the end of that line simply add</p>
<pre><em>noreplace-paravirt</em> vga=771</pre>
<p>or</p>
<pre><em>noreplace-paravirt</em> vga=791</pre>
<p>Press &#8216;<em>enter</em>&#8216;.<br />
Press &#8216;b&#8217; to start the boot sequence.</p>
<p>Now you are back in business, Ununtu is up and running again.<br />
The last thing you need to do is make sure the changes you just did are saved so you don&#8217;t have to do the same thing over and over.</p>
<p>So, once Ubuntu is up and running select the menu option, &#8216;<em>Applications&gt;Accessories&gt;Terminal&#8217;</em> and you should get a white window with a blinking cursor.<br />
Next to that cursor type the following, &#8216;<em>gksudo gedit /boot/grub/menu.lst</em>&#8216;, press enter, give your password.</p>
<pre>## ## End Default Options ##
title ...
uuid ...
kernel ...</pre>
<p>At the end of the line that says &#8216;<em>Kernel</em>&#8216; add &#8216;<em>noreplace-paravirt</em>&#8216;, (without the quotes of course).<br />
Save the file.<br />
Close the editor</p>
<p>Back at the command prompt simply update the grub, (in other words tell Ubuntu that you changed the file).</p>
<pre>sudo update-grub</pre>
<p>And that&#8217;s all, you can now reboot into your Virtual PC Ubuntu and all should be fine.</p>
<p>Note: If like me you are lazy and you don&#8217;t want to type everything, simply copy the text, place your cursor where you want the text to go and in Virtual PC select &#8216;<em>Edit&gt;Paste</em>&#8216; and it will &#8216;type&#8217; everything for you.</p>
<div id="_mcePaste" style="overflow: hidden; position: absolute; left: -10000px; top: 171px; width: 1px; height: 1px;">modprobe s</div>
]]></content:encoded>
			<wfw:commentRss>http://www.myoddweb.com/2009/07/04/install-ubuntu-9-on-virtual-pc-2007-part-deux/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>Install Ubuntu 9 on Virtual PC 2007</title>
		<link>http://www.myoddweb.com/2009/07/03/install-ubuntu-9-on-virtual-pc-2007/</link>
		<comments>http://www.myoddweb.com/2009/07/03/install-ubuntu-9-on-virtual-pc-2007/#comments</comments>
		<pubDate>Fri, 03 Jul 2009 14:03:12 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[development]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[Virtual PC]]></category>

		<guid isPermaLink="false">http://www.myoddweb.com/?p=113</guid>
		<description><![CDATA[A very simple step by step on how to install Ubuntu 9.0 on a Virtual PC 2007.]]></description>
			<content:encoded><![CDATA[<p>I have been using <a href="www.microsoft.com/windows/virtual-pc/">Virtual PC</a> to test reported problems, as a windows developer we only ever had to use Virtual PC for Windows OS, (Vista, XP and so on), but now I wanted to use it to install <a href="http://www.ubuntu.com/">Ubuntu</a>. If you don&#8217;t know what Ubuntu is, Wikipedia has a nice <a href="http://en.wikipedia.org/wiki/Ubuntu">little article about it</a>, basically it is a Linux operating system that has all the pretty desktop feature that most of us Windows users have grown to love.</p>
<p>This is what I used to install Ubuntu on my virtual server.</p>
<ul>
<li>Virtual PC2007 sp1, (get it <a href="www.microsoft.com/windows/virtual-pc/">here</a>).</li>
<li>Ubuntu <span style="text-decoration: underline;"><strong>Alternate</strong></span> CD, (get it <a href="http://www.ubuntu.com/GetUbuntu/download">here</a>).</li>
</ul>
<p>Create a virtual machine with enough resource, I chose 1024Mb of memory and 30Gb disk space. I think the minimum requirement is 256Mb of memory or something like that but if you can spare 1Gb of memory, use it .</p>
<p>Start the virtual machine and go to CD-&gt;Capture ISO image&#8230;, (you might need to reset the virtual machine afterwards if, like me, you are not quick enough).</p>
<p>When Ubuntu start it should pickup your &#8216;CD/ISO image&#8217;, you then choose your language<br />
At this point if you try to do the install it will not work, this is because the install program does not &#8216;guess&#8217; what your video mode is, (after all it is a virtual machine, so you cannot blame Ubuntu for guessing wrong).<br />
So you need to tell it what to use.</p>
<p>To do that when you see the <em>Install Ubuntu </em>menu, (make sure that it is highlighted) . Press F6 and then press esc again to close the menu, (I know, I know there are other ways of doing it, but this way is good enough).</p>
<p>You will see a new line at the bottom that will say &#8216;<em>Boot Options</em>&#8216; at move your cursor, (with the arrows), to the end of the line. It should say something like &#8220;<em><strong>&#8230; quiet &#8211;</strong></em>&#8220;, delete that and replace it with &#8220;<em> <strong>noreplace-paravirt vga=791</strong></em>&#8221; and press enter to start the install.<br />
The rest of the install should be fairly straight forward.</p>
<p><span style="text-decoration: underline;">A couple of notes</span>:</p>
<p>Select &#8216;No&#8217; when asked to setup the keyboad, it will then ask you what country you are in and what country your keyboard comes from, otherwise Ubuntu will ask you to test your keyboad.</p>
<p>Be careful when choosing a username and password, remember that this is all case sensitive and the username must start lower case.</p>
<p>I chose not to encrypt the directory.</p>
<p>That&#8217;s it, enjoy Ubuntu 9.0.4.</p>
<div id="_mcePaste" style="overflow: hidden; position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px;"><cite>www.microsoft.com/windows/<strong>virtual</strong>-<strong>pc</strong>/</cite></div>
]]></content:encoded>
			<wfw:commentRss>http://www.myoddweb.com/2009/07/03/install-ubuntu-9-on-virtual-pc-2007/feed/</wfw:commentRss>
		<slash:comments>21</slash:comments>
		</item>
		<item>
		<title>Recovering from a crash</title>
		<link>http://www.myoddweb.com/2009/06/20/recovering-from-a-crash/</link>
		<comments>http://www.myoddweb.com/2009/06/20/recovering-from-a-crash/#comments</comments>
		<pubDate>Sat, 20 Jun 2009 07:26:36 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Real life news]]></category>
		<category><![CDATA[crash]]></category>
		<category><![CDATA[hard drive]]></category>

		<guid isPermaLink="false">http://www.myoddweb.com/?p=110</guid>
		<description><![CDATA[I finnally managed to bring my computer back to life, it was a hard drive faillure and none of the data could be recovered, (well, hardly anything worthwhile anyway).
I am normally really careful when it comes to backing up my data so I did not really loose anything important, but I still lost a lot [...]]]></description>
			<content:encoded><![CDATA[<p>I finnally managed to bring my computer back to life, it was a hard drive faillure and none of the data could be recovered, (well, hardly anything worthwhile anyway).<br />
I am normally really careful when it comes to backing up my data so I did not really loose anything important, but I still lost a lot of time re-installing everything, looking for passwords I forgot I even had and so on.<br />
Outlook alone took forever, I use <a href="http://getpopfile.org/">popfile </a>as a spam filter, but it takes a while to &#8216;teach&#8217; it what is spam and what is not. I also have to check every emails to make sure that it did not report something as that is not spam, (and it did a couple of time), I get in the region of 3500 emails a day, (almost all spam), but I cannot really afford to miss one email.<br />
Then there is firefox and all the passwords that it saved over the years and so on.</p>
<p>I also descided to update my computer so now I have a x64 machine with 4Gb of memory, truth be told, I have not really noticed anything &#8216;outstanding&#8217; with it yet, maybe my old computer was not so bad after all.</p>
<p>Maybe one day I&#8217;ll write myself a little app to backup all those settings so in case of a crash not as much data is lost.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.myoddweb.com/2009/06/20/recovering-from-a-crash/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>System crash</title>
		<link>http://www.myoddweb.com/2009/06/16/system-crash/</link>
		<comments>http://www.myoddweb.com/2009/06/16/system-crash/#comments</comments>
		<pubDate>Tue, 16 Jun 2009 06:29:46 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Real life news]]></category>
		<category><![CDATA[bug]]></category>
		<category><![CDATA[windows crash]]></category>

		<guid isPermaLink="false">http://www.myoddweb.com/?p=107</guid>
		<description><![CDATA[Last night I cam home to find that my good old windows Vista machine would no longer boot properly. It works for a few minutes and then crashes, (with the famous blue screen/memory dump).
So now I am wasting a lot of time trying to recover my system before I can do any &#8216;real&#8217; work, as [...]]]></description>
			<content:encoded><![CDATA[<p>Last night I cam home to find that my good old windows Vista machine would no longer boot properly. It works for a few minutes and then crashes, (with the famous blue screen/memory dump).<br />
So now I am wasting a lot of time trying to recover my system before I can do any &#8216;real&#8217; work, as luck would have it I was planning on getting some of the more <a href="http://bugs.myoddweb.com">difficult bugs</a> done.</p>
<p>I am actually quite happy that I copy all my code in 3 different locations, imagine if I had lost all my code, that would not have been fun.</p>
<p>But anyway, I guess it happens from time to time, I just have to re-install everything and I should be ready to go.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.myoddweb.com/2009/06/16/system-crash/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>New bugtracker</title>
		<link>http://www.myoddweb.com/2009/06/12/new-bugtracker/</link>
		<comments>http://www.myoddweb.com/2009/06/12/new-bugtracker/#comments</comments>
		<pubDate>Fri, 12 Jun 2009 14:55:38 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Courseplanner]]></category>
		<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://www.myoddweb.com/?p=105</guid>
		<description><![CDATA[I finally got around to implement a new bug tracking system. The main reason for that is because I was starting to loose track between requests and bugs, my roadmap was also starting to look a bit like a bug tracking tool as well.  I was also starting to loose track of what I had [...]]]></description>
			<content:encoded><![CDATA[<p>I finally got around to implement a new <a href="http://bugs.myoddweb.com">bug tracking</a> system. The main reason for that is because I was starting to loose track between requests and bugs, my <a href="http://wiki.myoddweb.com/Courseplanner_Roadmap">roadmap</a> was also starting to look a bit like a bug tracking tool as well.  I was also starting to loose track of what I had done when it came time <a href="http://wiki.myoddweb.com/Revision_History">to do releases</a>.</p>
<p>Everybody is more than welcome to create an account and log new bugs, I chose <a href="http://www.mantisbt.org/">Mantis</a> as it seems to be a fairly &#8216;up-to-date&#8217;  online application.<br />
I am new it, so I might make some mistakes as I go along, so please, bear with me.</p>
<p>I am very keen to do another stable release, but I first have to finish the database import application as it is still a bit &#8216;clunky&#8217;, I want the users to be able to click on one button only to load the database, (a bit like <a href="http://wiki.myoddweb.com/Courseplanner_Import-Export">the aircrafts are been imported</a> curently).</p>
]]></content:encoded>
			<wfw:commentRss>http://www.myoddweb.com/2009/06/12/new-bugtracker/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Finally completed the courseplanner import function</title>
		<link>http://www.myoddweb.com/2009/06/03/finally-completed-the-courseplanner-import-function/</link>
		<comments>http://www.myoddweb.com/2009/06/03/finally-completed-the-courseplanner-import-function/#comments</comments>
		<pubDate>Wed, 03 Jun 2009 17:45:42 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Beta]]></category>
		<category><![CDATA[Courseplanner]]></category>
		<category><![CDATA[Flight Simulator]]></category>
		<category><![CDATA[Courseplanner beta]]></category>
		<category><![CDATA[database]]></category>
		<category><![CDATA[FS9]]></category>
		<category><![CDATA[fsx]]></category>
		<category><![CDATA[import]]></category>

		<guid isPermaLink="false">http://www.myoddweb.com/?p=102</guid>
		<description><![CDATA[I finally found some time to complete the database import function in Courseplanner.
The database can be created with data from FSX and FS9. I must admit that I am a bit disappointed with the result, it seems that Microsoft flight simulator relies on graphics a lot more than I thought, the data on the .bgl [...]]]></description>
			<content:encoded><![CDATA[<p>I finally found some time to complete the database import function in Courseplanner.<br />
The database can be created with data from FSX and FS9. I must admit that I am a bit disappointed with the result, it seems that Microsoft flight simulator relies on graphics a lot more than I thought, the data on the .bgl files is not enough to display nice clean airports.<br />
But I am working on ways of building proper curves in taxipath, (and I am also working on improving the general look of surfaces).</p>
<p>I am very busy at work and sadly I cannot work on Courseplanner as much as I would like. But once most of the bugs have been ironed out of the import function I will be able to continue working on various other bugs/features that have been reported on the <a href="http://forum.myoddweb.com">forum</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.myoddweb.com/2009/06/03/finally-completed-the-courseplanner-import-function/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
