<?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>dasman's World</title>
	<atom:link href="http://blogs.asman-it.com.au/dasman/index.php/feed" rel="self" type="application/rss+xml" />
	<link>http://blogs.asman-it.com.au/dasman</link>
	<description>The things that matter: Computing, Cycling, Java, the Environment, etc, etc (list liable to change...!)</description>
	<lastBuildDate>Sat, 22 Jan 2011 06:26:01 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Experimenting with HTML5 features &#8211; announcing WebLife</title>
		<link>http://blogs.asman-it.com.au/dasman/index.php/20110122/experimenting-with-html5-features-announcing-weblife</link>
		<comments>http://blogs.asman-it.com.au/dasman/index.php/20110122/experimenting-with-html5-features-announcing-weblife#comments</comments>
		<pubDate>Sat, 22 Jan 2011 06:23:34 +0000</pubDate>
		<dc:creator>dasman</dc:creator>
				<category><![CDATA[computing]]></category>
		<category><![CDATA[IT Stuff]]></category>

		<guid isPermaLink="false">http://blogs.asman-it.com.au/dasman/?p=89</guid>
		<description><![CDATA[In the process of furthering my Javascript and HTML5 knowledge, I picked as a project an old favourite of mine: an implementation of Conway&#8217;s &#8220;Life&#8221;. &#8220;Life&#8221; is an example of cellular automata. All the activity takes place on a 2D grid of cells, where each cell is either &#8220;alive&#8221; or &#8220;dead&#8221;. Then from generation to [...]]]></description>
			<content:encoded><![CDATA[<p>In the process of furthering my Javascript and HTML5 knowledge, I picked as a project an old favourite of mine: an implementation of Conway&#8217;s &#8220;Life&#8221;.</p>
<p>&#8220;Life&#8221; is an example of cellular automata.  All the activity takes place on a 2D grid of cells, where each cell is either &#8220;alive&#8221; or &#8220;dead&#8221;.  Then from generation to generation whether a cell is born, lives or dies depends on some very simple rules:</p>
<ul>
<li>If a cell is alive and has 2 or 3 neighbours, it survives</li>
<li>If a cell is alive and has less than 2 or more than 3 neighbours, it dies</li>
<li>If a cell is empty, and has 3 neighbours, a new cell is born</li>
</ul>
<p>From these simple rules, a huge array of patterns quickly coalesce out of even a random grouping of cells.  Patterns like &#8220;traffic lights&#8221; which switch from 3 cells in a row horizontally, to 3 cells in a row vertically.  Or &#8220;gliders&#8221; a shape that seems to &#8220;roll&#8221; in a way that means it moves one cell across, and one cell down ever 4 generations.  Some people have even implemented simple adding computers using patterns on a &#8220;Life&#8221; grid, using gliders like electrical signals.  Admittedly, probably not the fastest computer ever built&#8230; <img src='http://blogs.asman-it.com.au/dasman/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>So, I&#8217;ve now built a web page called &#8220;WebLife!&#8221; that gives you a random grid of cells and lets you single-step or automatically fast-forward through the generations that result.  You can access it here:</p>
<p><a href="http://www.asman-it.com.au/weblife/">http://www.asman-it.com.au/weblife/</a></p>
<p>And the page looks like this:<br />
<div id="attachment_91" class="wp-caption alignnone" style="width: 410px"><a href="http://blogs.asman-it.com.au/dasman/wp-content/uploads/2011/01/WebLife-Screenshot.png"><img src="http://blogs.asman-it.com.au/dasman/wp-content/uploads/2011/01/WebLife-Screenshot.png" alt="" title="WebLife-Screenshot" width="400" height="228" class="size-full wp-image-91" /></a><p class="wp-caption-text">Screenshot for the WebLife! web page</p></div><br />
The page is implemented using an HTML5 canvas as the drawing surface for the grid, and Javascript and JQuery for the logic.  As the canvas component is still fairly new, this won&#8217;t work on older browsers.  I&#8217;ve tested it on Firefox 3.6 and Chrome, though, and it works fine there.  I haven&#8217;t yet tried Internet Explorer, but I suspect it probably won&#8217;t work right now.</p>
<p>Using the site is simple enough (if only because the functionality is pretty limited!).  Refresh the page to get a &#8220;fresh&#8221; random grid, then use the Play icon to advance one generation at a time, or the Fast Forward icon to step through generations until the Stop icon is clicked.</p>
<p>I have a few features planned over the coming weeks, including:</p>
<ul>
<li>Ability to edit and &#8220;draw&#8221; your own patterns on the grid</li>
<li>Ability to change the speed of &#8220;fast forward&#8221; playback</li>
<li>Ability to set the grid to &#8220;wrap-around&#8221; so one side of the grid wraps around to the other side</li>
<li>Ability to set your own rules, to explore the different patterns that result</li>
</ul>
<p>As the WebLife page says, any feedback or suggestions are welcome.  Happy exploring!</p>
<p><script type="text/javascript"><!--
google_ad_client = "pub-2080207984545284";
google_ad_width = 468;
google_ad_height = 60;
google_ad_format = "468x60_as";
google_ad_type = "text";
google_ad_channel ="";
//--></script>
<script type="text/javascript"
  src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.asman-it.com.au/dasman/index.php/20110122/experimenting-with-html5-features-announcing-weblife/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Kindle not playing nice with a Billion router</title>
		<link>http://blogs.asman-it.com.au/dasman/index.php/20101029/kindle-not-playing-nice-with-a-billion-router</link>
		<comments>http://blogs.asman-it.com.au/dasman/index.php/20101029/kindle-not-playing-nice-with-a-billion-router#comments</comments>
		<pubDate>Fri, 29 Oct 2010 06:42:21 +0000</pubDate>
		<dc:creator>dasman</dc:creator>
				<category><![CDATA[computing]]></category>
		<category><![CDATA[IT Stuff]]></category>

		<guid isPermaLink="false">http://blogs.asman-it.com.au/dasman/?p=81</guid>
		<description><![CDATA[My latest new gadget is a Kindle e-book reader. The lack of ePUB support still concerns me, but that aside, the Kindle is proving to be a fantastic tool. The speed with which I&#8217;m getting through my backlog of technical PDFs was worth the investment alone&#8230;although my mate Glen Smith&#8217;s site &#8220;thriftebook.com&#8221; (which shows you [...]]]></description>
			<content:encoded><![CDATA[<p>My latest new gadget is a Kindle e-book reader.  The lack of ePUB support still concerns me, but that aside, the Kindle is proving to be a fantastic tool.  The speed with which I&#8217;m getting through my backlog of technical PDFs was worth the investment alone&#8230;although my mate Glen Smith&#8217;s site &#8220;<a href="http://www.thriftebook.com/latest">thriftebook.com</a>&#8221; (which shows you all the current discounts for technical eBooks) is doing its bit to make sure that the backlog never goes away entirely! <img src='http://blogs.asman-it.com.au/dasman/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>I did encounter an issue early on, though.  My Kindle is the 6&#8243; WiFi only model.  When I first unpacked it, I connected it to my home wifi network, registered it, and downloaded a few books without any problems.  By the end of the first night, though, it refused to connect to the network.  Attempting to connect manually through &#8220;Settings&#8221; results in an error message:</p>
<blockquote><p>&#8220;Your Kindle is unable to connect to the Wifi network.  Would you like to enter the password again or manually set up this network?&#8221;</p></blockquote>
<p>After trying a whole host of fixes, a factory reset seemed to clear things up.  But the next time I went to use the Kindle, the problem re-occurred.  Even upgrading to the latest Kindle firmware (3.02 beta) had no effect.</p>
<p>Finally clutching at straws, I looked at the other half of the wifi equation &#8211; my Wifi router.  I have a Billion Wifi router (a BiPAC 7401VGPR3).  It was running firmware 5.53.s5.  Checking out the Billion web page, I found that a few releases had occurred since then, and the latest was 6.02c.  I also noticed that the release notes for the 6.01 firmware mentioned &#8220;Updated wireless 11N driver to 2.2.0.3&#8243;.</p>
<p>Thirty minutes later and I had updated my router, and the Kindle was again connecting flawlessly.  Moral of the story (as always) is to make sure that when bugs surface, you&#8217;re running the latest and greatest of the relevant pieces of software.</p>
<p>Hopefully this will come in handy for any similarly frustrated souls who are googling for a solution!</p>
<p><script type="text/javascript"><!--
google_ad_client = "pub-2080207984545284";
google_ad_width = 468;
google_ad_height = 60;
google_ad_format = "468x60_as";
google_ad_type = "text";
google_ad_channel ="";
//--></script>
<script type="text/javascript"
  src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.asman-it.com.au/dasman/index.php/20101029/kindle-not-playing-nice-with-a-billion-router/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Running JIRA under a multi-level context on Tomcat 6</title>
		<link>http://blogs.asman-it.com.au/dasman/index.php/20100515/running-jira-under-a-multi-level-context-on-tomcat-6</link>
		<comments>http://blogs.asman-it.com.au/dasman/index.php/20100515/running-jira-under-a-multi-level-context-on-tomcat-6#comments</comments>
		<pubDate>Sat, 15 May 2010 07:21:27 +0000</pubDate>
		<dc:creator>dasman</dc:creator>
				<category><![CDATA[computing]]></category>
		<category><![CDATA[IT Stuff]]></category>
		<category><![CDATA[java]]></category>

		<guid isPermaLink="false">http://blogs.asman-it.com.au/dasman/?p=74</guid>
		<description><![CDATA[I&#8217;ve recently started trialling JIRA &#8211; the issue tracking system from Atlassian. Fantastic looking product so far &#8211; I&#8217;ve done a lot of work with Bugzilla in the past, but it doesn&#8217;t compare when it comes to the sizzle that JIRA offers. The installation documentation is incredibly extensive. Alas, I work in IT which means [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve recently started trialling <a href="http://www.atlassian.com/software/jira/">JIRA</a> &#8211; the issue tracking system from Atlassian.  Fantastic looking product so far &#8211; I&#8217;ve done a lot of work with Bugzilla in the past, but it doesn&#8217;t compare when it comes to the sizzle that JIRA offers.</p>
<p>The installation documentation is incredibly extensive.  Alas, I work in IT which means Murphy&#8217;s Law guarantees that the environment I&#8217;m given to work in will be unique, complex, and a million miles from a &#8220;Standard&#8221; setup.  Consequently, I was dealing with reverse proxies, apache front-ends, https issues and more besides! <img src='http://blogs.asman-it.com.au/dasman/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> </p>
<p>One issue that I did spend a while on was this one:  <a href="http://jira.atlassian.com/browse/JRA-19051">http://jira.atlassian.com/browse/JRA-19051</a>.  Basically, JIRA has problems when installing on Tomcat 6 if you want to use a Context that is multi-level.  So, something like &#8220;/servlets/JIRA&#8221; rather than &#8220;/JIRA&#8221;.  </p>
<p>The fault is actually with Sitemesh that JIRA makes use of.  Tomcat 6 uses a naming standard based on hashes as separators to specify a multi-level context.  So, in the example above, the context XML and exploded WAR file is stored as &#8220;servlets#JIRA&#8221;.  Unfortunately, this confuses Sitemesh who tries to drill into the expected Context directory structure and complains that directory &#8220;servlets&#8221; does not exist.</p>
<p>The issue linked to above is still unresolved and was raised in September 2009, so I suspect it&#8217;s probably a pretty low priority.  I was able to work around it however by inserting the &#8220;&lt;context&gt;&#8221; stanza for JIRA in the main server.xml file rather than in a file of its own.</p>
<p>While this isn&#8217;t the preferred Tomcat way of doing things (any changes I make will require a Tomcat restart), doing the Context entry this way allows you to use the path attribute, where you specify the full Context path.  Using a standalone Context file, you can&#8217;t use this attribute &#8211; it is inferred from the (special, hash-separated) file name.</p>
<p>I also used the docBase attribute to point to the exploded WAR file.  I placed the exploded WAR file under the standard webapps directory, but nested to match the multi-level context path (so, something like &#8230;/webapps/servlets/jira, rather than the more Tomcat-6-normal /webapps/servlets#jira).</p>
<p>This was enough to get me up and running.  I suspect it might also be possible to do something using an Apache proxy, whereby Tomcat thinks it is running single level contexts (/jira) and Apache proxies the requests to those single levels (so it converts requests for /servlet/jira to simply /jira).  Unfortunately this wasn&#8217;t possible in the environment I was running in, so I haven&#8217;t pursued it any further.</p>
<p>Hopefully this run-down is helpful to anyone else who hits this issue!</p>
<p><!--adsense--></p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.asman-it.com.au/dasman/index.php/20100515/running-jira-under-a-multi-level-context-on-tomcat-6/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Installing the Scala Eclipse plugin in Eclipse Europa</title>
		<link>http://blogs.asman-it.com.au/dasman/index.php/20080115/installing-the-scala-eclipse-plugin-in-eclipse-europa</link>
		<comments>http://blogs.asman-it.com.au/dasman/index.php/20080115/installing-the-scala-eclipse-plugin-in-eclipse-europa#comments</comments>
		<pubDate>Mon, 14 Jan 2008 19:06:51 +0000</pubDate>
		<dc:creator>dasman</dc:creator>
				<category><![CDATA[computing]]></category>
		<category><![CDATA[java]]></category>
		<category><![CDATA[scala]]></category>
		<category><![CDATA[eclipse]]></category>

		<guid isPermaLink="false">http://blogs.asman-it.com.au/dasman/index.php/20080115/installing-the-scala-eclipse-plugin-in-eclipse-europa</guid>
		<description><![CDATA[This post falls squarely in the camp of &#8220;this was a gotcha that caught me, so I&#8217;ll blog about it so that I can Google the solution later&#8221;! I&#8217;m in the process of getting my head around Scala, but when installing the Scala Eclipse plugin into my standard Eclipse Europa setup, I got the message [...]]]></description>
			<content:encoded><![CDATA[<p>This post falls squarely in the camp of &#8220;this was a gotcha that caught me, so I&#8217;ll blog about it so that I can Google the solution later&#8221;! <img src='http://blogs.asman-it.com.au/dasman/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>I&#8217;m in the process of getting my head around Scala, but when installing the Scala Eclipse plugin into my standard Eclipse Europa setup, I got the message that Scala Plugin couldn&#8217;t be installed because it required &#8220;org.eclipse.pde.runtime&#8221;.</p>
<p>I found a few references on Google, suggesting a full installation of Eclipse (i.e not a standard install), or reverting to Eclipse 3.2.</p>
<p>Instead I had success by:</p>
<ol>
<li>Go to search for new plugins with &#8220;Help&#8221; -> &#8220;Software Updates&#8221; -> &#8220;Find and Install&#8221;</li>
<li>Choose &#8220;Search for new features to install&#8221;</li>
<li>Select the &#8220;The Eclipse Project Updates&#8221; repository&#8221;</li>
<li>Expand the &#8220;Eclipse SDK Eclipse 3.3.1.1&#8243; category, and select the &#8220;Eclipse Plugin Development Environment&#8221;</li>
</ol>
<p>This plugin includes the required &#8220;org.eclipse.pde.runtime&#8221; package, so once installed you should be able to get the Scala plugin up and running.</p>
<p>Now all I need to do is to relearn functional programming from my Uni days&#8230; <img src='http://blogs.asman-it.com.au/dasman/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p><!--adsense--></p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.asman-it.com.au/dasman/index.php/20080115/installing-the-scala-eclipse-plugin-in-eclipse-europa/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Yet another Ubuntu convert!</title>
		<link>http://blogs.asman-it.com.au/dasman/index.php/20070825/yet-another-ubuntu-convert</link>
		<comments>http://blogs.asman-it.com.au/dasman/index.php/20070825/yet-another-ubuntu-convert#comments</comments>
		<pubDate>Sat, 25 Aug 2007 07:02:28 +0000</pubDate>
		<dc:creator>dasman</dc:creator>
				<category><![CDATA[computing]]></category>
		<category><![CDATA[IT Stuff]]></category>
		<category><![CDATA[java]]></category>

		<guid isPermaLink="false">http://blogs.asman-it.com.au/dasman/index.php/20070825/yet-another-ubuntu-convert</guid>
		<description><![CDATA[I can only take so many mysterious disappearances of my wireless network. It turns out, exactly 146 disappearances! So, when my Vista laptop decided for the 147th time that I was connected to my wireless network &#8220;kind of&#8221;, I decided enough was enough! There was a time when I was a Linux guy through-and-through. I [...]]]></description>
			<content:encoded><![CDATA[<p>I can only take so many mysterious disappearances of my wireless network.  It turns out, exactly 146 disappearances! <img src='http://blogs.asman-it.com.au/dasman/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />   So, when my Vista laptop decided for the 147th time that I was connected to my wireless network &#8220;kind of&#8221;, I decided enough was enough!</p>
<p>There was a time when I was a Linux guy through-and-through.  I moved back to Windows on the desktop when I got a new machine (although my servers stayed Linux&#8230;of course!).  So, its fair to say I&#8217;ve been out of the scene for a while and didn&#8217;t really know where the state of the Linux art was at.</p>
<p>But thinking about it, 95% of my time on the laptop is spent surfing the web, doing email, and writing the odd document &#8211; Linux can do all those with ease.  So, with nothing to lose, I used the new Vista functionality to shrink my C: drive, and went about installing <a href="http://www.ubuntu.com">Ubuntu</a> Linux on the newly created space.</p>
<p>Wow! <img src='http://blogs.asman-it.com.au/dasman/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>So straightforward!  I downloaded the ISO image, burnt a CD, and booted off it.  30 seconds or so later, I was looking at a Gnome desktop with a fairly full complement of available applications, and an &#8220;Install Ubuntu&#8221; icon.  Great way to do things &#8211; you can try out the OS, see if your machine has any incompatible hardware, and if not, proceed with actually installing it to your hard drive.</p>
<p>Seeing no obvious problems, I hit install, and 20 minutes or so later I had a laptop which let you choose Vista or Linux at bootup, and proceeded from there.</p>
<p>The experience has been fantastic.  From the get-go, my Dell Inspiron 6400 laptop could see all the surrounding wireless networks, handle sound (even the custom volume up/down buttons work a treat!) and had all the software installed to surf the web, read email, and write documents and spreadsheets.</p>
<p>Thats not to say it was all smooth sailing &#8211; getting the laptop to actually talk to my WPA-protected wireless LAN took a bit of work &#8211; the built in graphical client didn&#8217;t want to connect, but once I put the appropriate details in /etc/network/interfaces it was all good.  That&#8217;s pretty much been the only hiccup!</p>
<p><img src='http://blogs.asman-it.com.au/dasman/wp-content/uploads/2007/08/screenshot.png' alt='Ubuntu running Eclipse' /></p>
<p>I&#8217;ve installed a few more things now &#8211; Google Earth is up and running (way to go Google, for supporting Linux!), the latest JDK is in, and my one indispensable piece of software &#8211; <a href="http://www.eclipse.org">the Eclipse IDE</a> <img src='http://blogs.asman-it.com.au/dasman/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  &#8211; is up and running (pictured).  This is one of the joys of doing Java development &#8211; the Operating System I choose to use is almost irrelevant &#8211; I don&#8217;t necessarily need to be running a system identical to my clients.</p>
<p>Since I&#8217;ve installed Ubuntu, there has yet to be a single reason to boot into Windows.  Ubuntu even lets me read my Vista NTFS-formatted partition, so I can still get to all my music and documents.  I suspect that what I may end up doing is setting up the laptop as a pure Linux system, with a VMWare image if I do come across something which absolutely requires Windows.</p>
<p><!--adsense--></p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.asman-it.com.au/dasman/index.php/20070825/yet-another-ubuntu-convert/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>WordPress 2.1&#8230;and announcing a new Blog!</title>
		<link>http://blogs.asman-it.com.au/dasman/index.php/20070128/wordpress-21and-announcing-a-new-blog</link>
		<comments>http://blogs.asman-it.com.au/dasman/index.php/20070128/wordpress-21and-announcing-a-new-blog#comments</comments>
		<pubDate>Sun, 28 Jan 2007 05:05:20 +0000</pubDate>
		<dc:creator>dasman</dc:creator>
				<category><![CDATA[computing]]></category>
		<category><![CDATA[Environment]]></category>
		<category><![CDATA[general]]></category>
		<category><![CDATA[Green]]></category>
		<category><![CDATA[IT Stuff]]></category>

		<guid isPermaLink="false">http://blogs.asman-it.com.au/dasman/index.php/20070128/wordpress-21and-announcing-a-new-blog</guid>
		<description><![CDATA[Had some fun last week installing the latest and greatest version of WordPress &#8211; version 2.1. And in related news, I&#8217;m announcing a new blog! So, the technical details first &#8211; the installation was a snap. Just like the 2.0 series, a quick unzip and point your browser to a particular page, and minutes later [...]]]></description>
			<content:encoded><![CDATA[<p>Had some fun last week installing the latest and greatest version of WordPress &#8211; version 2.1.  And in related news, I&#8217;m announcing a new blog!</p>
<p>So, the technical details first &#8211; the installation was a snap.  Just like the 2.0 series, a quick unzip and point your browser to a particular page, and minutes later the blog is up and running.  From the admin perspective it feels like an incremental improvement &#8211; things seem a bit snazzier and smoother, but its hard to put your finger on any one &#8220;knock-your-socks-off&#8221; feature.</p>
<p>One item worthy of note is that the editor is much improved, so you can do your posts in the WYSIWYG editor reliably (I found the earlier incarnation a little flaky &#8211; so much so that I turned it off, and did my posts &#8220;manually&#8221;).</p>
<p>In terms of the new blog, this setup was all about bringing the latest incarnation Low Impact to life.  A while back, I&#8217;d noticed that more and more of my posts had an environmental leaning which, while not clashing particularly, were starkly different from my tech-related posts.  So, as an experiment, I setup a blog on Blogger called <a href="http://www.low-impact.net">Low Impact</a>.</p>
<p>I got a lot out of the experience &#8211; enough to know that:</p>
<ul>
<li>I liked the setup of having a specific blog for environmental topics, freeing up dasman&#8217;s World for more tech-related postings, and</li>
<li>While Blogger is a great site, nothing beats having full control of your own website!</li>
</ul>
<p>So, the domain was registered, a webserver setup, and WordPress 2.1 installed.</p>
<p>Low Impact&#8217;s purpose is to provide postings specifically about reducing our impact on the environment.  If that&#8217;s a topic that interests you, <a href="http://www.low-impact.net">you might want to check it out</a>!</p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.asman-it.com.au/dasman/index.php/20070128/wordpress-21and-announcing-a-new-blog/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>3 months of news</title>
		<link>http://blogs.asman-it.com.au/dasman/index.php/20070120/3-months-of-news</link>
		<comments>http://blogs.asman-it.com.au/dasman/index.php/20070120/3-months-of-news#comments</comments>
		<pubDate>Sat, 20 Jan 2007 00:19:02 +0000</pubDate>
		<dc:creator>dasman</dc:creator>
				<category><![CDATA[computing]]></category>
		<category><![CDATA[IT Stuff]]></category>
		<category><![CDATA[j2me]]></category>
		<category><![CDATA[java]]></category>

		<guid isPermaLink="false">http://blogs.asman-it.com.au/dasman/index.php/20070120/3-months-of-news</guid>
		<description><![CDATA[Certain nameless colleagues have been curious as to whether some sort of terrible car accident had severed my fingers, thus preventing me from writing blog entries over the last 3 months, so this post is all about the incredible things I&#8217;ve been getting up to since then on the computer front. Hmmmm. Let me think&#8230;.. [...]]]></description>
			<content:encoded><![CDATA[<p>Certain nameless colleagues have been curious as to whether some sort of terrible car accident had severed my fingers, thus preventing me from writing blog entries over the last 3 months, so this post is all about the incredible things I&#8217;ve been getting up to since then on the computer front.</p>
<p>Hmmmm.  Let me think&#8230;.. *scratches head*  There must be <i>something</i>&#8230;.</p>
<ul>
<li>
I&#8217;ve continued to spend far too much time cursing at J2ME.  When it comes to UIs, you either have full, low-level control where you draw every single pixel yourself, or you have almost no control where you populate a Form with Items and wonder what on earth it will look like on the various platforms.  If only there was a happy medium&#8230; <img src='http://blogs.asman-it.com.au/dasman/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' />   And yet, despite my complaints I can&#8217;t walk away &#8211; the lure of knowing your program can run on potentially <u>so</u> many devices is too much!
</li>
</ul>
<ul>
<li>
I gave NetBeans another shot for my J2ME development with version 5.5, and decided all is forgiven.  It feels way &#8220;snappier&#8221; than version 5, and I haven&#8217;t had it hang on me while using the Visual Designer part of the Mobility Pack (which is the killer feature for me).  Good work guys!
</li>
</ul>
<ul>
<li>
I&#8217;ve upgraded WordPress around 50 times to cope with all the dot releases that have been coming out.  I&#8217;m actually getting a bit excited about the big 2.1 version due out soon &#8211; I have a sister working overseas who has been a blogger in the past and toys with getting back into it &#8211; perhaps a snazzy new piece of software will be the impetus she needs!
</li>
</ul>
<ul>
<li>
I finally decided to sit down and tick off something thats been on my To Do list for about 6 months now, and upgrade the <a href="http://www.asman-it.com.au/search.html">search page at www.asman-it.com.au</a> to use the new &#8220;inline&#8221; Google search results.  And, like all things you put off for ages, it took around 10 minutes (although admittedly my page won&#8217;t win any prizes for aesthetic or robust web design!).
</li>
</ul>
<p>So, we&#8217;re back up to date.  Perhaps my next post will be a little more on-time! <img src='http://blogs.asman-it.com.au/dasman/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><!--adsense--></p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.asman-it.com.au/dasman/index.php/20070120/3-months-of-news/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Upgrade to SpamAssassin 3.1.5 a big success</title>
		<link>http://blogs.asman-it.com.au/dasman/index.php/20061002/upgrade-to-spamassassin-315-a-big-success</link>
		<comments>http://blogs.asman-it.com.au/dasman/index.php/20061002/upgrade-to-spamassassin-315-a-big-success#comments</comments>
		<pubDate>Sun, 01 Oct 2006 22:57:56 +0000</pubDate>
		<dc:creator>dasman</dc:creator>
				<category><![CDATA[computing]]></category>
		<category><![CDATA[IT Stuff]]></category>

		<guid isPermaLink="false">http://blogs.asman-it.com.au/dasman/index.php/20061002/upgrade-to-spamassassin-315-a-big-success</guid>
		<description><![CDATA[It was around a year ago that I put SpamAssassin into my site-wide email setup, and at the time had been pretty happy with the results. The combination of SpamAssassin at the server, and Thunderbird&#8217;s spam detection at the client was pretty effective. But over the last 6-8 months especially, the spam situation had been [...]]]></description>
			<content:encoded><![CDATA[<p>It was around a year ago that I put <a href="http://spamassassin.apache.org/">SpamAssassin</a> into my site-wide email setup, and at the time had been pretty happy with the results.  The combination of SpamAssassin at the server, and Thunderbird&#8217;s spam detection at the client was pretty effective.  But over the last 6-8 months especially, the spam situation had been getting a lot worse &#8211; around 100 spam messages were making it past the mail server each day.  Thunderbird did its best, but there were still 20 or so spam messages that ended up appearing in my Inbox.</p>
<p>So, taking advantage of a long weekend here, I decided to upgrade SpamAssassin.</p>
<p>Wow.</p>
<p>This morning, I opened my Inbox to find 0 spam messages.  And a quick look at my &#8220;Spam&#8221; folder showed that 65 spam messages had been caught &#8211; the majority of which had been caught at the server.  The new setup has only been running for 10 hours, but that certainly looks promising!</p>
<p>Upgrading to the latest engine no doubt helped, but there have been two specific &#8220;extras&#8221; that I think are making a big difference.</p>
<ul>
<li>I&#8217;ve added the Net::DNS perl module to my system &#8211; I gather SpamAssassin uses this for RBL lookups and the like.  When I first installed SpamAssassin, I didn&#8217;t bother with this &#8211; it lists a pile of optional modules you&#8217;re missing, but is happy to build without them.  Net::DNS is one of these &#8220;optional modules&#8221;.  I&#8217;d recommend you consider it mandatory! <img src='http://blogs.asman-it.com.au/dasman/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </li>
<li>I&#8217;ve enabled Bayesian filtering.  This is the feature that allows SpamAssassin to &#8220;learn&#8221; which messages are spam.  It is a bit of a fiddle &#8211; permissions in particular are the big gotcha &#8211; but I&#8217;m hoping that this will also help keep my spam defences &#8220;ahead of the curve&#8221;.</li>
</ul>
<p><!--adsense--></p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.asman-it.com.au/dasman/index.php/20061002/upgrade-to-spamassassin-315-a-big-success/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>A BBQ Shape&#8230;with the Lot</title>
		<link>http://blogs.asman-it.com.au/dasman/index.php/20060928/a-bbq-shapewith-the-lot</link>
		<comments>http://blogs.asman-it.com.au/dasman/index.php/20060928/a-bbq-shapewith-the-lot#comments</comments>
		<pubDate>Thu, 28 Sep 2006 08:58:19 +0000</pubDate>
		<dc:creator>dasman</dc:creator>
				<category><![CDATA[computing]]></category>
		<category><![CDATA[general]]></category>
		<category><![CDATA[humour]]></category>
		<category><![CDATA[IT Stuff]]></category>
		<category><![CDATA[java]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blogs.asman-it.com.au/dasman/index.php/20060928/a-bbq-shapewith-the-lot</guid>
		<description><![CDATA[Forgive the indulgence &#8211; this posting can&#8217;t be described as informative or even useful in any way&#8230;.but I couldn&#8217;t resist! So, as all serious programmers know, you need fuel when your churning out top-quality code. Salty, calorie-laden fuel! Some swear by pizza. Others are into chips. BBQ Shapes are my programming snack of choice. I [...]]]></description>
			<content:encoded><![CDATA[<p>Forgive the indulgence &#8211; this posting can&#8217;t be described as informative or even useful in any way&#8230;.but I couldn&#8217;t resist!</p>
<p>So, as all serious programmers know, you need fuel when your churning out top-quality code.  Salty, calorie-laden fuel!  Some swear by pizza.  Others are into chips.  <a href="http://www.arnotts.com.au/varieties/ShapesBBQ.aspx">BBQ Shapes</a> are my programming snack of choice.  I love it when you get one that has a lot of the &#8220;topping&#8221; &#8211; that salty red powder that gives &#8216;em their flavour!</p>
<p>But you can have too much of a good thing.  Tonight, I reached into the box and pulled out a handful of Shapes to find, well&#8230;.this:</p>
<p><img id="image66" src="http://blogs.asman-it.com.au/dasman/wp-content/uploads/2006/09/bbqshapewiththelot.jpg" alt="BBQ Shape with the lot" /></p>
<p>(I promise, the biscuit is not a setup, thats how it came out of the box, and that spice &#8220;stuff&#8221; is packed on there like cement!)</p>
<p>Wow.  Next step is to put it up on EBay, right?  Surely there&#8217;s people who&#8217;d pay good money for that sort of &#8220;flavour explosion&#8221;! <img src='http://blogs.asman-it.com.au/dasman/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><!--adsense--></p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.asman-it.com.au/dasman/index.php/20060928/a-bbq-shapewith-the-lot/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>My life as a Power Tyrant&#8230;</title>
		<link>http://blogs.asman-it.com.au/dasman/index.php/20060910/my-life-as-a-power-tyrant</link>
		<comments>http://blogs.asman-it.com.au/dasman/index.php/20060910/my-life-as-a-power-tyrant#comments</comments>
		<pubDate>Sun, 10 Sep 2006 08:19:04 +0000</pubDate>
		<dc:creator>dasman</dc:creator>
				<category><![CDATA[Environment]]></category>
		<category><![CDATA[Green]]></category>

		<guid isPermaLink="false">http://blogs.asman-it.com.au/dasman/index.php/20060910/my-life-as-a-power-tyrant</guid>
		<description><![CDATA[Somewhere, sometime, without even realising it, I crossed the line into &#8220;Power Tyrant&#8221;. Not a tyrant who is a fan of time management, personal productivity and &#8220;getting things done&#8221;, you understand &#8211; more one of those people who always has one metaphorical eye on the electrical meter. Part of the blame (or thanks?) has to [...]]]></description>
			<content:encoded><![CDATA[<p>Somewhere, sometime, without even realising it, I crossed the line into &#8220;Power Tyrant&#8221;.  Not a tyrant who is a fan of time management, personal productivity and &#8220;getting things done&#8221;, you understand &#8211; more one of those people who always has one metaphorical eye on the electrical meter.</p>
<p>Part of the blame (or thanks?) has to go to the centameter &#8211; a device telling you your current household power consumption, which I&#8217;ve blogged about before.  The old adage &#8220;out of sight, out of mind&#8221; was never truer than for electricity consumption.  I turn on the electric wall heater (I know, I know, don&#8217;t get me started), and the centameter tells me my power consumption has shot up from a modest 0.3 kW to a planet-destroying 5.9 kW.  Eeeek!</p>
<p>But I&#8217;ve found the power tyrant lifestyle requires surprisingly few concessions.  When I had the urge to make this blog entry, I fired up the laptop.  Even when plugged in, it only uses 50 to 80 watts or so.  In the past I would have fired up my high-powered &#8220;beast&#8221; PC &#8211; gigs of RAM, masses of harddrive, and around 200 watts of awesome processing power&#8230;.none of which is needed when typing in a few paragraphs of text into a blog!</p>
<p>Never one for self-sacrifice, I still use my planet destroying electric heater (I live in Canberra after all &#8211; anyone who knows Canberra will understand the heating requirements!).  But the heater no longer gets turned on by reflex just because I&#8217;ve walked in the door after work.  I come home, I get changed into reasonably warm clothes, look at the temperature guage and actually <u>think</u> about whether I&#8217;m cold.  And whether, perhaps, a pair of daggy slippers wouldn&#8217;t do the job just as well!</p>
<p>There are other examples too &#8211; like not filling my 8 cup kettle to the brim to boil water for one cup of tea.  Or, after my centameter smugly pointed out my climate-change-inducing 3.8kW power draw when the hot water heater goes on, making sure my washing machine was doing cold washes.  All easy stuff, and requires next to no lifestyle-sacrificing either!</p>
<p>There&#8217;s no rocket science, obviously.  And (having undeservedly acquired the &#8220;hippie&#8221; nickname at work much earlier <img src='http://blogs.asman-it.com.au/dasman/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  ), I was already aware of all these little power-saving tips.  But its amazing what incentive you have to improve when there&#8217;s a little white digital meter metaphorically tsk-tsking at you from the kitchen bench.</p>
<p><!--adsense--></p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.asman-it.com.au/dasman/index.php/20060910/my-life-as-a-power-tyrant/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

