<?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>markallanson.net</title>
	<atom:link href="http://markallanson.net/blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://markallanson.net/blog</link>
	<description>Technologist</description>
	<lastBuildDate>Sun, 06 Jan 2013 22:54:37 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5</generator>
		<item>
		<title>Running IBM&#8217;s Really Small Message Broker on Windows</title>
		<link>http://markallanson.net/blog/2009/running-ibms-really-small-message-broker-on-windows/</link>
		<comments>http://markallanson.net/blog/2009/running-ibms-really-small-message-broker-on-windows/#comments</comments>
		<pubDate>Tue, 02 Jun 2009 16:29:08 +0000</pubDate>
		<dc:creator>Mark</dc:creator>
				<category><![CDATA[MQTT]]></category>
		<category><![CDATA[RSMB]]></category>
		<category><![CDATA[Sensors]]></category>

		<guid isPermaLink="false">http://markallanson.net/wordpress/?p=244</guid>
		<description><![CDATA[Since getting a CurrentCost CC128 &#8220;smart&#8221; electricity meter a few weeks ago the hacker in me has had a resurgence and I have started writing hobby-code again on top of my day job. There seems to be a small industry of software for interacting with these smart meters, and publishing and recording the data to [...]]]></description>
				<content:encoded><![CDATA[<p class="winerlinks-enabled"><a name="p0"></a>Since getting a <a href="http://currentcost.com/product-cc128.html">CurrentCost CC128</a> &#8220;smart&#8221; electricity meter a few weeks ago the hacker in me has had a resurgence and I have started writing hobby-code again on top of my day job. There seems to be a small industry of software for interacting with these smart meters, and publishing and recording the data to various sources such as <a href="http://pachube.com">Pachube</a> that allow you to share your electricity consumption data with others. At the consumer/home level things seem to still be targeting tinkerer&#8217;s like myself, rather than the general consumer. Most of the tools seem to be centered around the linux and java community, which is all well and good, but why can&#8217;t us Microsoft .Net folks get in on some of the action. <a ref="permalink" title="Permalink to this paragraph" class="winerlink" href="http://markallanson.net/blog/2009/running-ibms-really-small-message-broker-on-windows/#p0">#</a><p class="winerlinks-enabled"><a name="p1"></a>
Microsoft&#8217;s Windows Home Server is a perfect platform to act as a hub for this type of stuff. It&#8217;s designed to be always on, with an add-in model that allows extensions, so I decided to embark on using my HP MediaSmart EX470 to publish the CC128 sensor data in a variety of ways. <a ref="permalink" title="Permalink to this paragraph" class="winerlink" href="http://markallanson.net/blog/2009/running-ibms-really-small-message-broker-on-windows/#p1">#</a><p class="winerlinks-enabled"><a name="p2"></a>
As part of IBM&#8217;s work surrounding telemetry and sensor messaging they have made, freely available, what they are calling a &#8220;nano broker&#8221;, the <a href="http://alphaworks.ibm.com/tech/rsmb">Really Small Message Broker (RSMB)</a>. This broker talks the <a href="http://mqtt.org">Message Queue Telemetry Transport (MQTT)</a> protocol, designed again, by IBM (the brainchild of <a href="http://stanford-clark.com/">Andy Stanford-Clark</a>, IBM Master Inventor and illustrious enough to have his own <a href="http://en.wikipedia.org/wiki/Andy_Stanford-Clark">wikipedia page</a>). The idea is that you can publish data on a specific <strong>Topic</strong> to the RSMB via MQTT, and the RSMB will then distribute that data to any &#8220;client&#8221; that is <strong>subscribed</strong> to that topic. Being IBM, the code is primarily targeted at the linux community, however they are also nice enough to provide a Windows console application binary. <a ref="permalink" title="Permalink to this paragraph" class="winerlink" href="http://markallanson.net/blog/2009/running-ibms-really-small-message-broker-on-windows/#p2">#</a><p class="winerlinks-enabled"><a name="p3"></a>
Getting a console application to run when Windows Home Server boots is not as simple as putting it in the Start menu, or in one of the myriad of &#8220;Run&#8221; registry sections. Fortunately, Microsoft provides two executables, instsrv.exe (service installer) and srvany.exe (run any program as a service) as part of the <a href="http://www.microsoft.com/downloads/details.aspx?familyid=9d467a69-57ff-4ae7-96ee-b18c4790cffd&amp;displaylang=en">Windows Server 2003 Resource Kit</a>, and these can be used to run any program as a service, which means that you can get IBM&#8217;s RSMB running at server boot without having to have a user logon session. <a ref="permalink" title="Permalink to this paragraph" class="winerlink" href="http://markallanson.net/blog/2009/running-ibms-really-small-message-broker-on-windows/#p3">#</a><p class="winerlinks-enabled"><a name="p4"></a>
The following steps will allow you to run the RSMB on Windows Home Server so that it starts up at server boot. These instructions assume you have installed the Windows Server 2003 Resource Kit in the standard location, and you have unzipped the RSMB to C:\RSMB. Alter the instructions for your paths if they vary. You&#8217;ll have to do all this by logging onto the server using the remote desktop client, not the standard windows home server console. <a ref="permalink" title="Permalink to this paragraph" class="winerlink" href="http://markallanson.net/blog/2009/running-ibms-really-small-message-broker-on-windows/#p4">#</a><p class="winerlinks-enabled"><a name="p5"></a>
<strong>1. Use InstSvc.exe to install an SvrAny.exe based service.</strong> <a ref="permalink" title="Permalink to this paragraph" class="winerlink" href="http://markallanson.net/blog/2009/running-ibms-really-small-message-broker-on-windows/#p5">#</a><p class="winerlinks-enabled"><a name="p6"></a>
<em>32bit Windows Server (ie, HP MediaSmart EX470 etc)</em> <a ref="permalink" title="Permalink to this paragraph" class="winerlink" href="http://markallanson.net/blog/2009/running-ibms-really-small-message-broker-on-windows/#p6">#</a><p class="winerlinks-enabled"><a name="p7"></a>
<pre>"C:\Program Files\Windows Resource Kits\Tools\instsrv" RSMB "C:\program files\Windows Resource Kits\Tools\srvany.exe"</pre>
<em>64bit Windows Server</em> <a ref="permalink" title="Permalink to this paragraph" class="winerlink" href="http://markallanson.net/blog/2009/running-ibms-really-small-message-broker-on-windows/#p7">#</a><p class="winerlinks-enabled"><a name="p8"></a>
<pre>"C:\Program Files (x86)\Windows Resource Kits\Tools\instsrv" RSMB "C:\program files (x86)\Windows Resource Kits\Tools\srvany.exe"</pre>
<strong>2. Alter the registry to let SrvAny.exe know that it should run the broker.</strong> <a ref="permalink" title="Permalink to this paragraph" class="winerlink" href="http://markallanson.net/blog/2009/running-ibms-really-small-message-broker-on-windows/#p8">#</a><p class="winerlinks-enabled"><a name="p9"></a>
Note the important part here is setting the AppDirectory, without which the RSMB will mysteriously start and then immediately stop because it can&#8217;t find it&#8217;s Messages file. <a ref="permalink" title="Permalink to this paragraph" class="winerlink" href="http://markallanson.net/blog/2009/running-ibms-really-small-message-broker-on-windows/#p9">#</a><p class="winerlinks-enabled"><a name="p10"></a>
Windows Registry Editor Version 5.00 <a ref="permalink" title="Permalink to this paragraph" class="winerlink" href="http://markallanson.net/blog/2009/running-ibms-really-small-message-broker-on-windows/#p10">#</a><p class="winerlinks-enabled"><a name="p11"></a>
<pre>[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\services\RSMB\Parameters]
"Application"="C:\\rsmb\\broker.exe"
"AppDirectory"="C:\\rsmb\\"</pre>
<a href="http://markallanson.net/wordpress/wp-content/uploads/2009/06/setupreg.zip">Registry File</a> <a ref="permalink" title="Permalink to this paragraph" class="winerlink" href="http://markallanson.net/blog/2009/running-ibms-really-small-message-broker-on-windows/#p11">#</a><p class="winerlinks-enabled"><a name="p12"></a>
That&#8217;s all there is to it. If you go into Computer Manager and the services browser, you should be able to start the RSMB service and the broker will be running silently in the background. You can check this out by looking at Task Manager, Processes Tab, where you will see both the SrvAny.exe and Broker.exe processes. You can also run <em>netstat -an</em> in a powershell or cmd.exe window to check that the server is listening on port 1883. <a ref="permalink" title="Permalink to this paragraph" class="winerlink" href="http://markallanson.net/blog/2009/running-ibms-really-small-message-broker-on-windows/#p12">#</a><p class="winerlinks-enabled"><a name="p13"></a>
The only thing that you should do on top of this is to change the service to run with a non administrative account with locked down settings (read/write access to the RSMB folder and the ability to listen to connections on port 1883 should do the trick). <a ref="permalink" title="Permalink to this paragraph" class="winerlink" href="http://markallanson.net/blog/2009/running-ibms-really-small-message-broker-on-windows/#p13">#</a>]]></content:encoded>
			<wfw:commentRss>http://markallanson.net/blog/2009/running-ibms-really-small-message-broker-on-windows/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Updated to WP 2.7 in preparation for server move</title>
		<link>http://markallanson.net/blog/2009/updated-to-wp-27-in-preparation-for-server-move/</link>
		<comments>http://markallanson.net/blog/2009/updated-to-wp-27-in-preparation-for-server-move/#comments</comments>
		<pubDate>Wed, 20 May 2009 21:48:29 +0000</pubDate>
		<dc:creator>Mark</dc:creator>
				<category><![CDATA[Me]]></category>

		<guid isPermaLink="false">http://markallanson.net/wordpress/?p=229</guid>
		<description><![CDATA[Thats all Nothing fancy. # Looks like I messed up doing the upgrade by copying over old images etc.  So be it, I&#8217;ll be starting a-fresh on the new server. #]]></description>
				<content:encoded><![CDATA[<p class="winerlinks-enabled"><a name="p0"></a>Thats all <img src='http://markallanson.net/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  Nothing fancy. <a ref="permalink" title="Permalink to this paragraph" class="winerlink" href="http://markallanson.net/blog/2009/updated-to-wp-27-in-preparation-for-server-move/#p0">#</a><p class="winerlinks-enabled"><a name="p1"></a>
Looks like I messed up doing the upgrade by copying over old images etc.  So be it, I&#8217;ll be starting a-fresh on the new server. <a ref="permalink" title="Permalink to this paragraph" class="winerlink" href="http://markallanson.net/blog/2009/updated-to-wp-27-in-preparation-for-server-move/#p1">#</a>]]></content:encoded>
			<wfw:commentRss>http://markallanson.net/blog/2009/updated-to-wp-27-in-preparation-for-server-move/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using GMail with Windows Mobile 6 IMAP</title>
		<link>http://markallanson.net/blog/2008/using-gmail-with-windows-mobile-6-imap/</link>
		<comments>http://markallanson.net/blog/2008/using-gmail-with-windows-mobile-6-imap/#comments</comments>
		<pubDate>Sat, 16 Feb 2008 23:04:39 +0000</pubDate>
		<dc:creator>Mark</dc:creator>
				<category><![CDATA[Me]]></category>
		<category><![CDATA[Stuff]]></category>
		<category><![CDATA[Tech]]></category>

		<guid isPermaLink="false">http://markallanson.net/wordpress/?p=228</guid>
		<description><![CDATA[If you are a software engineer then most likely you subscribe to a number of email lists, or get regular daily / periodical email updates that can clog up your email inbox.Â  Also most likely you use Outlook, connected via POP to download your email, and have a myriad of rules that move messages into [...]]]></description>
				<content:encoded><![CDATA[<p class="winerlinks-enabled"><a name="p0"></a>If you are a software engineer then most likely you subscribe to a number of email lists, or get regular daily / periodical email updates that can clog up your email inbox.Â  Also most likely you use Outlook, connected via POP to download your email, and have a myriad of rules that move messages into folders to keep everything as organized as possible. <a ref="permalink" title="Permalink to this paragraph" class="winerlink" href="http://markallanson.net/blog/2008/using-gmail-with-windows-mobile-6-imap/#p0">#</a><p class="winerlinks-enabled"><a name="p1"></a>
Late last year I moved email hosting for @markallanson.net emails over to <a title="Google apps for your domain" href="http://google.com/a">Google Apps For Your Domain</a> in order to make use of GMails excellent online client, search ability and also to ensure reliable and *fast* email access both online and offline. When I switched to Google Apps I altered my Outlook client to use POP to download the mail, and kept all of my rules in Outlook. This has been working perfectly since, but a few weeks ago I got myself a <a title="HTC Europe - Touch Dual" href="http://www.europe.htc.com/en/products/htctouchdual.html">HTC Touch Dual</a> and wanted to get it to sync with my mail hosted on Google. <a ref="permalink" title="Permalink to this paragraph" class="winerlink" href="http://markallanson.net/blog/2008/using-gmail-with-windows-mobile-6-imap/#p1">#</a><p class="winerlinks-enabled"><a name="p2"></a>
Ever since moving to Google Apps and using their online client the one thing that bugged me was that all mailing lists appeared in my main inbox. I switched outlook to connect via IMAP and sure enough the same thing happens, all emails were being synchronized to the single inbox folder. I synchronized Windows Mobile on the Touch Dual via IMAP and the same thing happens, as expected. The noise is too much to deal with on a mobile device so it&#8217;s time to start categorizing email &#8211; but on the server side in GMail &#8211; not using Outlook. <a ref="permalink" title="Permalink to this paragraph" class="winerlink" href="http://markallanson.net/blog/2008/using-gmail-with-windows-mobile-6-imap/#p2">#</a><p class="winerlinks-enabled"><a name="p3"></a>
GMail supports filters and labels for categorizing email. You can tag an email with as many labels as you like and then view slice and dice via a labels. When tagging an email with a GMail label it appears in Outlook as a separate folder. The same thing happens on your windows mobile device. I tagged all emails from the WiX-Users mailing list and a WiX-Users folder appears in Outlook and Windows Mobile. Unfortunately however the same email also stays in your inbox and the noise is still there. <a ref="permalink" title="Permalink to this paragraph" class="winerlink" href="http://markallanson.net/blog/2008/using-gmail-with-windows-mobile-6-imap/#p3">#</a><p class="winerlinks-enabled"><a name="p4"></a>
GMail also allows you to perform actions on arriving email in a similar way to Outlook rules so assigning labels automatically upon email arrival was trivial using the Filters functionality. Still this does not solve the noise problem. <a ref="permalink" title="Permalink to this paragraph" class="winerlink" href="http://markallanson.net/blog/2008/using-gmail-with-windows-mobile-6-imap/#p4">#</a><p class="winerlinks-enabled"><a name="p5"></a>
In order to remove the noise, there is an option you must set on each incoming message filter. Once the filter criteria has been set up you must also check the box that tells GMail to archive the email once the filter has been applied.Â  Now archiving to me originally sounded like too much of a &#8220;Final&#8221; operation, so I ignored the option, but in effect ticking the archive box just removes it from your inbox. The labels applied via the filter are still usable, and the email can still be searched, but the noise is removed from the inbox. <a ref="permalink" title="Permalink to this paragraph" class="winerlink" href="http://markallanson.net/blog/2008/using-gmail-with-windows-mobile-6-imap/#p5">#</a><p class="winerlinks-enabled"><a name="p6"></a>
So, to have a usable version of your email on WinMo6 via GMail you need to do the following. <a ref="permalink" title="Permalink to this paragraph" class="winerlink" href="http://markallanson.net/blog/2008/using-gmail-with-windows-mobile-6-imap/#p6">#</a><p class="winerlinks-enabled"><a name="p7"></a>
<ol>
<li>Switch to using IMAP to synchronize Windows Mobile and GMail.</li>
<li>Move your Outlook rules into GMail, adding a Filter for each rule, and applying labels in order to categorize.</li>
<li>Ensure that your filters archive all email that is labeled to remove it from the inbox as part of the filtering process</li>
</ol>
One final thing: When you set up a sync in Windows Mobile by default only the last N days of headers are synced from the server. I had some emails that I needed to have available at all times, such as all emails relating to my upcoming trip to Florida. The way I did this was to apply a Holiday_Orlando label to each of the emails that I needed to have on the phone always. At the next sync Windows Mobile created a new folder called Holiday_Orlando with no messages (none were newer than 3 days). I then had to modify the Holiday_Orlando folder synchronization options to add an override for that folder which told it to sync all messages in the folder.Â  Voila, all messages about the vacation are now available, with their attachments! <a ref="permalink" title="Permalink to this paragraph" class="winerlink" href="http://markallanson.net/blog/2008/using-gmail-with-windows-mobile-6-imap/#p7">#</a><p class="winerlinks-enabled"><a name="p8"></a>
God knows how non-techies are supposed to ever figure this stuff out! (and apologies for the random rambling format of this post, I just *had* to write this down for others wanting to do the same thing.) <a ref="permalink" title="Permalink to this paragraph" class="winerlink" href="http://markallanson.net/blog/2008/using-gmail-with-windows-mobile-6-imap/#p8">#</a>]]></content:encoded>
			<wfw:commentRss>http://markallanson.net/blog/2008/using-gmail-with-windows-mobile-6-imap/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Your hard drive capacity has increase. This is NOT an error.</title>
		<link>http://markallanson.net/blog/2007/your-hard-drive-capacity-has-increase-this-is-not-an-error/</link>
		<comments>http://markallanson.net/blog/2007/your-hard-drive-capacity-has-increase-this-is-not-an-error/#comments</comments>
		<pubDate>Thu, 08 Feb 2007 09:37:37 +0000</pubDate>
		<dc:creator>Mark</dc:creator>
				<category><![CDATA[Tech]]></category>

		<guid isPermaLink="false">http://markallanson.net/wordpress/?p=227</guid>
		<description><![CDATA[Helpfull, this. # # So, why exactly are you bothering me with this dialog that I can only Cancel? I&#8217;m not going to even start to go into what is wrong with this error message and how it could confuse new computer users. # Hooray for leased computers and the junky software that is installed [...]]]></description>
				<content:encoded><![CDATA[<p class="winerlinks-enabled"><a name="p0"></a>Helpfull, this. <a ref="permalink" title="Permalink to this paragraph" class="winerlink" href="http://markallanson.net/blog/2007/your-hard-drive-capacity-has-increase-this-is-not-an-error/#p0">#</a><p class="winerlinks-enabled"><a name="p1"></a>
<img title="Your hard drive capacity has increase. This is NOT an error." src="/blog/wp-content/uploads/2007/02/what.png" alt="Your hard drive capacity has increase. This is NOT an error." /> <a ref="permalink" title="Permalink to this paragraph" class="winerlink" href="http://markallanson.net/blog/2007/your-hard-drive-capacity-has-increase-this-is-not-an-error/#p1">#</a><p class="winerlinks-enabled"><a name="p2"></a>
So, why exactly are you bothering me with this dialog that I can only Cancel? I&#8217;m not going to even start to go into what is wrong with this error message and how it could confuse new computer users. <a ref="permalink" title="Permalink to this paragraph" class="winerlink" href="http://markallanson.net/blog/2007/your-hard-drive-capacity-has-increase-this-is-not-an-error/#p2">#</a><p class="winerlinks-enabled"><a name="p3"></a>
Hooray for leased computers and the junky software that is installed on them. <a ref="permalink" title="Permalink to this paragraph" class="winerlink" href="http://markallanson.net/blog/2007/your-hard-drive-capacity-has-increase-this-is-not-an-error/#p3">#</a>]]></content:encoded>
			<wfw:commentRss>http://markallanson.net/blog/2007/your-hard-drive-capacity-has-increase-this-is-not-an-error/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Priory Park, Southend-on-Sea</title>
		<link>http://markallanson.net/blog/2007/priory-park-southend-on-sea/</link>
		<comments>http://markallanson.net/blog/2007/priory-park-southend-on-sea/#comments</comments>
		<pubDate>Sun, 04 Feb 2007 19:30:17 +0000</pubDate>
		<dc:creator>Mark</dc:creator>
				<category><![CDATA[Me]]></category>
		<category><![CDATA[Photography Workshop]]></category>

		<guid isPermaLink="false">http://markallanson.net/wordpress/?p=225</guid>
		<description><![CDATA[On Saturday morning I was lucky enough to spend some time walking around Priory Park, in Southend with my camera and tripod in tow. I only had an hour, and didn&#8217;t get to explore even close to half of the park so I will have to take a trip back there this spring and this [...]]]></description>
				<content:encoded><![CDATA[<p class="winerlinks-enabled"><a name="p0"></a>On Saturday morning I was lucky enough to spend some time walking around <a title="Priory Park" href="http://www.visitsouthend.co.uk/ParksGardens/PrioryPark.htm">Priory Park</a>, in Southend with my camera and tripod in tow. I only had an hour, and didn&#8217;t get to explore even close to half of the park so I will have to take a trip back there this spring and this time allow more time for the visit. <a ref="permalink" title="Permalink to this paragraph" class="winerlink" href="http://markallanson.net/blog/2007/priory-park-southend-on-sea/#p0">#</a><p class="winerlinks-enabled"><a name="p1"></a>
<div class="wlWriterSmartContent" id="84E294D0-71C9-4bd0-A0FE-95764E0368D9:0a82b8c0-f9e0-4b95-9f66-57106dc4c75b" contenteditable="false" style="padding-right: 0px; display: inline; padding-left: 0px; float: none; padding-bottom: 0px; margin: 0px; width: 448px; padding-top: 0px"><a href="http://local.live.com/default.aspx?v=2&amp;cp=51.55365~0.7048309&amp;lvl=16&amp;style=h&amp;scene=7725137&amp;sp=aN.51.5537_0.7052708_Priory%2520Park_" id="map-a861c375-180c-4bec-beb1-c4f387a6ab5f" alt="Click to view this map on Live.com" title="Click to view this map on Live.com"><img src="/blog/wp-content/uploads/2007/02/WindowsLiveWriter/PrioryParkSouthendonSea_1123F/map59814ff3a5b9.jpg" width="448" height="349"></a><br /><label for="map-a861c375-180c-4bec-beb1-c4f387a6ab5f" style="font-size:.8em;">Map of Priory Park</label></div>
Here&#8217;s a sample of the photographs that came out of the cold morning. I can&#8217;t wait to revisit in spring! <a ref="permalink" title="Permalink to this paragraph" class="winerlink" href="http://markallanson.net/blog/2007/priory-park-southend-on-sea/#p1">#</a><p class="winerlinks-enabled"><a name="p2"></a>
<a title="Two of a Kind - Day 32" href="http://www.flickr.com/photos/33063906@N00/378471422/"><img alt="Two of a Kind - Day 32" src="http://static.flickr.com/182/378471422_83df593bc4.jpg" border="0"></a> <a ref="permalink" title="Permalink to this paragraph" class="winerlink" href="http://markallanson.net/blog/2007/priory-park-southend-on-sea/#p2">#</a><p class="winerlinks-enabled"><a name="p3"></a>
<a title="Aspire" href="http://www.flickr.com/photos/33063906@N00/378470309/"><img alt="Aspire" src="http://static.flickr.com/136/378470309_7984c8c2a3.jpg" border="0"></a> <a ref="permalink" title="Permalink to this paragraph" class="winerlink" href="http://markallanson.net/blog/2007/priory-park-southend-on-sea/#p3">#</a><p class="winerlinks-enabled"><a name="p4"></a>
<a title="Texturizer" href="http://www.flickr.com/photos/33063906@N00/378476850/"><img alt="Texturizer" src="http://static.flickr.com/119/378476850_c0bfea4baa.jpg" border="0"></a> <a ref="permalink" title="Permalink to this paragraph" class="winerlink" href="http://markallanson.net/blog/2007/priory-park-southend-on-sea/#p4">#</a><p class="winerlinks-enabled"><a name="p5"></a>
The full set can be found @ Flickr in my <a title="Priory Park @ My Flickr Photostream" href="http://flickr.com/photos/markallanson/sets/72157594515722294/">Priory Park set</a>. <a ref="permalink" title="Permalink to this paragraph" class="winerlink" href="http://markallanson.net/blog/2007/priory-park-southend-on-sea/#p5">#</a>]]></content:encoded>
			<wfw:commentRss>http://markallanson.net/blog/2007/priory-park-southend-on-sea/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>I&#8217;ve gone Pro!</title>
		<link>http://markallanson.net/blog/2007/ive-gone-pro/</link>
		<comments>http://markallanson.net/blog/2007/ive-gone-pro/#comments</comments>
		<pubDate>Sun, 14 Jan 2007 13:18:46 +0000</pubDate>
		<dc:creator>Mark</dc:creator>
				<category><![CDATA[Me]]></category>
		<category><![CDATA[Photography Workshop]]></category>

		<guid isPermaLink="false">http://markallanson.net/wordpress/?p=224</guid>
		<description><![CDATA[I decided that it was time to purchase a Pro account on Flickr. No, I&#8217;m not abandoning Zooomr. At least not yet. Thankfully, because jUploader can post to Zooomr and Flickr I will continue to cross-post to both sites, however I will not be doing things such as geotagging my photos on Zooomr. # What [...]]]></description>
				<content:encoded><![CDATA[<p class="winerlinks-enabled"><a name="p0"></a>I decided that it was time to purchase a Pro account on Flickr. No, I&#8217;m not abandoning Zooomr. At least not yet. Thankfully, because jUploader can post to Zooomr and Flickr I will continue to cross-post to both sites, however I will not be doing things such as geotagging my photos on Zooomr. <a ref="permalink" title="Permalink to this paragraph" class="winerlink" href="http://markallanson.net/blog/2007/ive-gone-pro/#p0">#</a><p class="winerlinks-enabled"><a name="p1"></a>
What inspired me to go Pro on Flickr? <a ref="permalink" title="Permalink to this paragraph" class="winerlink" href="http://markallanson.net/blog/2007/ive-gone-pro/#p1">#</a><p class="winerlinks-enabled"><a name="p2"></a>
<ol>
<li>The community features are brilliant, the more I have played with Flickr, the more I see just how valuable groups are.
<li>Geotagging in Flickr is an absolute pleasure &#8211; it&#8217;s such a slick implementation it blows Zooomr&#8217;s implementation&nbsp;to pieces and it&#8217;s fast fast fast which is an added bonus!
<li>In fact, the entire Organizer in Flickr is so slick its pleasurable to use.
<li>I have never, ever, ever received timeouts from Flickr. The site just works.
<li>Its so cheap its laughable, especially given the $-Â£ exchange rate at the moment.
<li>[Updated] Exposure. So many more people will see my photographs on Flickr.</li>
</ol>
The only thing I am absolutely dreading is moving all my images posted to Zooomr into Flickr. As far as I can tell there is no way to export metadata from Zooomr, and no way to import it into Flickr. This sounds similar to the comments that Thomas Hawk wrote way-back-when when he wanted to transition from Flickr to other photo sharing sites. This is the type of thing that photo sharing sites should be offering out of the box, now.&nbsp;Shame on both Zooomr and Flickr for not making this easier, especially Flickr as they are so big and have the resources available to solve this problem if they really wanted to. <a ref="permalink" title="Permalink to this paragraph" class="winerlink" href="http://markallanson.net/blog/2007/ive-gone-pro/#p2">#</a><p class="winerlinks-enabled"><a name="p3"></a>
Now, my first cross-posted image, a portrait of my gorgeous Sarah, taken during breakfast over the Christmas &#8211; New Year break, one of the first Photos with my new Fuji compact. <a ref="permalink" title="Permalink to this paragraph" class="winerlink" href="http://markallanson.net/blog/2007/ive-gone-pro/#p3">#</a><p class="winerlinks-enabled"><a name="p4"></a>
<a title="Photo Sharing" href="http://www.flickr.com/photos/markallanson/356847229/"><img height="337" alt="GI Jane" src="http://farm1.static.flickr.com/139/356847229_6309f19aaf.jpg" width="450"></a> <a ref="permalink" title="Permalink to this paragraph" class="winerlink" href="http://markallanson.net/blog/2007/ive-gone-pro/#p4">#</a>]]></content:encoded>
			<wfw:commentRss>http://markallanson.net/blog/2007/ive-gone-pro/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Project 365</title>
		<link>http://markallanson.net/blog/2007/project-365/</link>
		<comments>http://markallanson.net/blog/2007/project-365/#comments</comments>
		<pubDate>Wed, 03 Jan 2007 21:11:54 +0000</pubDate>
		<dc:creator>Mark</dc:creator>
				<category><![CDATA[Me]]></category>

		<guid isPermaLink="false">http://markallanson.net/wordpress/?p=223</guid>
		<description><![CDATA[I&#8217;ve decided to join Project 365. It&#8217;s a Flickr group. Each member of the group has to take one picture, every day, for one year. # Here&#8217;s Day 1. # Photo&#8217;s will be taken with one of my cams, either the EOS 350D, FinePix F650 or a cameraphone. Lets see if I can keep this [...]]]></description>
				<content:encoded><![CDATA[<p class="winerlinks-enabled"><a name="p0"></a>I&#8217;ve decided to join <a title="Project 365 Flickr Group" href="http://flickr.com/groups/28845821@N00/">Project 365</a>. It&#8217;s a Flickr group. Each member of the group has to take one picture, every day, for one year. <a ref="permalink" title="Permalink to this paragraph" class="winerlink" href="http://markallanson.net/blog/2007/project-365/#p0">#</a><p class="winerlinks-enabled"><a name="p1"></a>
Here&#8217;s Day 1. <a ref="permalink" title="Permalink to this paragraph" class="winerlink" href="http://markallanson.net/blog/2007/project-365/#p1">#</a><p class="winerlinks-enabled"><a name="p2"></a>
<a title="Photo Sharing" href="http://www.flickr.com/photos/markallanson/344484102/"><img style="border-left-color: black; border-bottom-color: black; border-top-color: black; border-right-color: black" height="338" alt="Day 1" src="http://farm1.static.flickr.com/136/344484102_1625a2de7e.jpg" width="450" border="1"></a>
Photo&#8217;s will be taken with one of my cams, either the EOS 350D, FinePix F650 or a cameraphone. Lets see if I can keep this up for the year. Anyone want to start taking bets? <img src='http://markallanson.net/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> <a ref="permalink" title="Permalink to this paragraph" class="winerlink" href="http://markallanson.net/blog/2007/project-365/#p2">#</a><p class="winerlinks-enabled"><a name="p3"></a>
I probably won&#8217;t post the images every day, but I will definately take one every day, and might post them up every few days, or week. I definately won&#8217;t post all the photo&#8217;s here, so you&#8217;ll have to checker Flickr intermittantly to keep up to date. <a ref="permalink" title="Permalink to this paragraph" class="winerlink" href="http://markallanson.net/blog/2007/project-365/#p3">#</a><p class="winerlinks-enabled"><a name="p4"></a>
The PhotoSet with all photo&#8217;s <a title="All my Project 365 Photographs" href="http://flickr.com/photos/markallanson/sets/72157594457397188/">can be found here</a>. <a ref="permalink" title="Permalink to this paragraph" class="winerlink" href="http://markallanson.net/blog/2007/project-365/#p4">#</a>]]></content:encoded>
			<wfw:commentRss>http://markallanson.net/blog/2007/project-365/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>And we were waiting for aaaages</title>
		<link>http://markallanson.net/blog/2006/and-we-were-waiting-for-aaaages/</link>
		<comments>http://markallanson.net/blog/2006/and-we-were-waiting-for-aaaages/#comments</comments>
		<pubDate>Sun, 31 Dec 2006 10:40:47 +0000</pubDate>
		<dc:creator>Mark</dc:creator>
				<category><![CDATA[Photography Workshop]]></category>

		<guid isPermaLink="false">http://markallanson.net/wordpress/?p=222</guid>
		<description><![CDATA[And we were waiting for aaaages Hosted on Zooomr Remember to keep up to date with all of my photographs at my Zooomr Page, or subscribe to my Zooomr photostreams RSS feed. #]]></description>
				<content:encoded><![CDATA[<p class="winerlinks-enabled"><a name="p0"></a><div style="width: 450px; text-align: right"><a title="Zooomr Photo Sharing :: Photo Sharing" href="http://beta.zooomr.com/photos/MarkAllanson/583160/"><img style="border-right: #000 1px solid; border-top: #000 1px solid; border-left: #000 1px solid; border-bottom: #000 1px solid" height="290" alt="And we were waiting for aaaages" src="http://static.zooomr.com/images/583160_3859547ad2.jpg" width="450" border="0"></a><span style="float: left">And we were waiting for aaaages</span> Hosted on <strong>Zooom<span style="color: #9eae15">r</span></strong></div>
Remember to keep up to date with all of my photographs at <a title="Mark's Photographs" href="http://zooomr.com/photos/markallanson">my Zooomr Page</a>, or subscribe to my Zooomr photostreams <a title="Mark's Photos via RSS" href="http://beta.zooomr.com/bluenote/feeds:rss/people/MarkAllanson">RSS feed</a>. <a ref="permalink" title="Permalink to this paragraph" class="winerlink" href="http://markallanson.net/blog/2006/and-we-were-waiting-for-aaaages/#p0">#</a>]]></content:encoded>
			<wfw:commentRss>http://markallanson.net/blog/2006/and-we-were-waiting-for-aaaages/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Windows Vista on an Alienware Area-51 m5550</title>
		<link>http://markallanson.net/blog/2006/windows-vista-on-an-alienware-area-51-m5550/</link>
		<comments>http://markallanson.net/blog/2006/windows-vista-on-an-alienware-area-51-m5550/#comments</comments>
		<pubDate>Wed, 27 Dec 2006 17:23:23 +0000</pubDate>
		<dc:creator>Mark</dc:creator>
				<category><![CDATA[Tech]]></category>

		<guid isPermaLink="false">http://markallanson.net/wordpress/?p=221</guid>
		<description><![CDATA[I have been using the RTM of Windows Vista on my Alienware since it was released to MSDN in November &#8217;06. Generally, everything has gone smoothly, however there are a few problems. As I find the solutions to these problems I will post them up here for the benefit of others. # The official Alienware [...]]]></description>
				<content:encoded><![CDATA[<p class="winerlinks-enabled"><a name="p0"></a>I have been using the RTM of Windows Vista on my Alienware since it was released to MSDN in November &#8217;06. Generally, everything has gone smoothly, however there are a few problems. As I find the solutions to these problems I will post them up here for the benefit of others. <a ref="permalink" title="Permalink to this paragraph" class="winerlink" href="http://markallanson.net/blog/2006/windows-vista-on-an-alienware-area-51-m5550/#p0">#</a><p class="winerlinks-enabled"><a name="p1"></a>
The official Alienware support channels are pretty bad from experience so far, especially their drivers section, so generally don&#8217;t expect a solution from them. <a ref="permalink" title="Permalink to this paragraph" class="winerlink" href="http://markallanson.net/blog/2006/windows-vista-on-an-alienware-area-51-m5550/#p1">#</a><p class="winerlinks-enabled"><a name="p2"></a>
<strong>Problem: The headphone jack doesn&#8217;t work when using a normal set of headphones with a phono plug.</strong> <a ref="permalink" title="Permalink to this paragraph" class="winerlink" href="http://markallanson.net/blog/2006/windows-vista-on-an-alienware-area-51-m5550/#p2">#</a><p class="winerlinks-enabled"><a name="p3"></a>
Solution: You are correct, this did not work for me either with the out-of-the-box Vista drivers. The chipset seems to be a Realtek chipset, and Vista installs generic &#8220;High Definition Audio Device&#8221; drivers, which don&#8217;t work with headphones (The inbuilt speakers work fine, and I have not tested the S/PDIF output, so im unsure as to whether they work or not). <a ref="permalink" title="Permalink to this paragraph" class="winerlink" href="http://markallanson.net/blog/2006/windows-vista-on-an-alienware-area-51-m5550/#p3">#</a><p class="winerlinks-enabled"><a name="p4"></a>
The Alienware website doesn&#8217;t have drivers for this Realtek chipset&nbsp;- so the way I got this working was to install the Realtek drivers supplied on the &#8220;m5550i &#8211; R3 Series Support CD Revision 1.1&#8243; disk (the title of yours might vary). After the install of these drivers (and system reboot), you will get a warning about program compatibility of the Realtek control panel application that loads at startup. This program isn&#8217;t needed for operation of the soundcard, so you can just stop it from loading at startup using Windows Defender. <a ref="permalink" title="Permalink to this paragraph" class="winerlink" href="http://markallanson.net/blog/2006/windows-vista-on-an-alienware-area-51-m5550/#p4">#</a><p class="winerlinks-enabled"><a name="p5"></a>
<strong>Question: Does the&nbsp;hardware&nbsp;Fan button (reduce performance to reduce fan noise) do anything in Vista?</strong> <a ref="permalink" title="Permalink to this paragraph" class="winerlink" href="http://markallanson.net/blog/2006/windows-vista-on-an-alienware-area-51-m5550/#p5">#</a><p class="winerlinks-enabled"><a name="p6"></a>
Answer: I&#8217;m not entirely sure based on evidence I have seen so far about how much of an impact this button actually has. I specced my laptop with a 2Ghz Core&nbsp; 2 Duo processor, and when running normally the <a title="H-Oda's WCUID Homepage" href="http://www.h-oda.com/">WCPIDCLK</a> application reports the speed as circa 1995Mhz. <a ref="permalink" title="Permalink to this paragraph" class="winerlink" href="http://markallanson.net/blog/2006/windows-vista-on-an-alienware-area-51-m5550/#p6">#</a><p class="winerlinks-enabled"><a name="p7"></a>
<a href="/blog/wp-content/uploads/2006/12/WindowsLiveWriter/WindowsVistaonanAlienwareArea51m5550_F40A/WCPUIDCLK_Before.jpg" atomicselection="true"><img style="border-right: 0px; border-top: 0px; margin: 0px 25px; border-left: 0px; border-bottom: 0px" height="140" src="/blog/wp-content/uploads/2006/12/WindowsLiveWriter/WindowsVistaonanAlienwareArea51m5550_F40A/WCPUIDCLK_Before_thumb.jpg" width="392" border="0"></a>
After pressing the Fan button, WCPUIDCLK reports a slight drop in CPU performance, circa 1932Mhz. <a ref="permalink" title="Permalink to this paragraph" class="winerlink" href="http://markallanson.net/blog/2006/windows-vista-on-an-alienware-area-51-m5550/#p7">#</a><p class="winerlinks-enabled"><a name="p8"></a>
<a href="/blog/wp-content/uploads/2006/12/WindowsLiveWriter/WindowsVistaonanAlienwareArea51m5550_F40A/WCPUIDCLK_After.jpg" atomicselection="true"><img style="border-right: 0px; border-top: 0px; margin: 0px 25px; border-left: 0px; border-bottom: 0px" src="http://markallanson.net/wordpress/wp-content/uploads/2006/12/WindowsLiveWriter/WindowsVistaonanAlienwareArea51m5550_F40A/WCPUIDCLK_After_thumb.jpg" border="0"></a> <a ref="permalink" title="Permalink to this paragraph" class="winerlink" href="http://markallanson.net/blog/2006/windows-vista-on-an-alienware-area-51-m5550/#p8">#</a><p class="winerlinks-enabled"><a name="p9"></a>
I also ran a few tests using <a title="CPU-Z Homepage" href="http://www.cpuid.com/cpuz.php">CPU-Z</a> and it comes up with the same results &#8211; so it seems like it does do something, but not&nbsp;a lot, and certainly not enough to make the laptop turn off the fan.&nbsp; I&nbsp;haven&#8217;t run these tests on WindowsXP&nbsp;however, so am unsure as to whether&nbsp;it has more of an effect on that OS.&nbsp; <a ref="permalink" title="Permalink to this paragraph" class="winerlink" href="http://markallanson.net/blog/2006/windows-vista-on-an-alienware-area-51-m5550/#p9">#</a>]]></content:encoded>
			<wfw:commentRss>http://markallanson.net/blog/2006/windows-vista-on-an-alienware-area-51-m5550/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Bloody Impulse Buys &#8211; Prime Lenses</title>
		<link>http://markallanson.net/blog/2006/bloody-impulse-buys-prime-lenses/</link>
		<comments>http://markallanson.net/blog/2006/bloody-impulse-buys-prime-lenses/#comments</comments>
		<pubDate>Sat, 09 Dec 2006 23:47:36 +0000</pubDate>
		<dc:creator>Mark</dc:creator>
				<category><![CDATA[Photography Workshop]]></category>

		<guid isPermaLink="false">http://markallanson.net/wordpress/?p=220</guid>
		<description><![CDATA[So I heard about how good the Canon EF 50mm f/1.8 MkII lens was for its price, and, despite the cons of the lens (plastic lens mount and reported noisy auto focus) I decided the pros (such good value, f/1.8 aperature, good reviews especially surrouning image sharpness, really, really light) outweighed it enough to pony [...]]]></description>
				<content:encoded><![CDATA[<p class="winerlinks-enabled"><a name="p0"></a><center><a style="border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" href="http://www.canon.co.uk/For_Home/Product_Finder/Cameras/EF_Lenses/Fixed_Focal_Length/EF_50mm_f18II/index.asp?ComponentID=25525&amp;SourcePageID=26126#1"><img style="margin: 10px 15px 10px 10px" alt="Picture of Canon EF50mm f/1.8 MkII Lens" src="http://www.canon.co.uk/Images/14_27040.gif" align="left"></a> </center>
So I heard about how good the Canon EF 50mm f/1.8 MkII lens was for its price, and, despite the cons of the lens (plastic lens mount and reported noisy auto focus) I decided the pros (such good value, f/1.8 aperature, good reviews especially surrouning image sharpness, really, really light) outweighed it enough to pony up the cash and have my first forey into the world of prime lenses. I look forward to the photos that come out of this lens. <a ref="permalink" title="Permalink to this paragraph" class="winerlink" href="http://markallanson.net/blog/2006/bloody-impulse-buys-prime-lenses/#p0">#</a><p class="winerlinks-enabled"><a name="p1"></a>
Bloody Impulse Buys. <a ref="permalink" title="Permalink to this paragraph" class="winerlink" href="http://markallanson.net/blog/2006/bloody-impulse-buys-prime-lenses/#p1">#</a>]]></content:encoded>
			<wfw:commentRss>http://markallanson.net/blog/2006/bloody-impulse-buys-prime-lenses/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Dynamic page generated in 0.477 seconds. -->
<!-- Cached page generated by WP-Super-Cache on 2013-01-07 01:31:34 -->

<!-- Compression = gzip -->