<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	>
<channel>
	<title>Comments for Andy@Gigantiq</title>
	<atom:link href="http://www.gigantiq.com/blogs/andy/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.gigantiq.com/blogs/andy</link>
	<description>Andy's Gigantiq blog.</description>
	<pubDate>Tue, 09 Mar 2010 22:09:05 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.2</generator>
		<item>
		<title>Comment on Rules of structured programming and Scala by James Iry</title>
		<link>http://www.gigantiq.com/blogs/andy/2008/10/16/rules-of-structured-programming-and-scala/#comment-421</link>
		<dc:creator>James Iry</dc:creator>
		<pubDate>Fri, 17 Oct 2008 14:44:57 +0000</pubDate>
		<guid isPermaLink="false">http://www.gigantiq.com/blogs/andy/?p=41#comment-421</guid>
		<description>I think the "only one return" notion is a bit over strong for Scala, depending on what you mean by a return.  Taken literally it might mean I can't write this

def evenOdd(n:Int) = if(n%2==0) "even" else "odd"

Instead I would have to write this

def evenOdd(n:Int) = {val result = if(n%2==0) "even" else "odd"; result}

In my mind the later is less significantly harder to read.  Similar things go for pattern matching where you often write def foo(x:Bar) = x match {case ...

A better guideline for Scala is "avoid the 'return' keyword."  It's usually (though not always) a code smell in Scala to have explicit 'return.'</description>
		<content:encoded><![CDATA[<p>I think the &#8220;only one return&#8221; notion is a bit over strong for Scala, depending on what you mean by a return.  Taken literally it might mean I can&#8217;t write this</p>
<p>def evenOdd(n:Int) = if(n%2==0) &#8220;even&#8221; else &#8220;odd&#8221;</p>
<p>Instead I would have to write this</p>
<p>def evenOdd(n:Int) = {val result = if(n%2==0) &#8220;even&#8221; else &#8220;odd&#8221;; result}</p>
<p>In my mind the later is less significantly harder to read.  Similar things go for pattern matching where you often write def foo(x:Bar) = x match {case &#8230;</p>
<p>A better guideline for Scala is &#8220;avoid the &#8216;return&#8217; keyword.&#8221;  It&#8217;s usually (though not always) a code smell in Scala to have explicit &#8216;return.&#8217;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on  by Aaron</title>
		<link>http://www.gigantiq.com/blogs/andy/2007/05/07/4/#comment-44</link>
		<dc:creator>Aaron</dc:creator>
		<pubDate>Fri, 29 Jun 2007 01:14:18 +0000</pubDate>
		<guid isPermaLink="false">http://www.gigantiq.com/blogs/andy/?p=4#comment-44</guid>
		<description>Hey guys

Quick suggestion, how about topic mapping your research page.  There are some good links there and grouping them would make it more powerful to a visitor.</description>
		<content:encoded><![CDATA[<p>Hey guys</p>
<p>Quick suggestion, how about topic mapping your research page.  There are some good links there and grouping them would make it more powerful to a visitor.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on System Monitoring on the Mac by Aaron</title>
		<link>http://www.gigantiq.com/blogs/andy/2007/05/19/system-monitoring-on-the-mac/#comment-43</link>
		<dc:creator>Aaron</dc:creator>
		<pubDate>Fri, 29 Jun 2007 01:06:20 +0000</pubDate>
		<guid isPermaLink="false">http://www.gigantiq.com/blogs/andy/?p=8#comment-43</guid>
		<description>Yeah iStat is awesome!  Downloaded iStat Nano a year ago because I found my system performance was been sucked up when opening Photoshop CS.  Discovered that my 512M of RAM wasn't handling well, so I upgraded it with a 1G chip (bring it to 1.25G of RAM).  Sweet as now...  :)</description>
		<content:encoded><![CDATA[<p>Yeah iStat is awesome!  Downloaded iStat Nano a year ago because I found my system performance was been sucked up when opening Photoshop CS.  Discovered that my 512M of RAM wasn&#8217;t handling well, so I upgraded it with a 1G chip (bring it to 1.25G of RAM).  Sweet as now&#8230;  <img src='http://www.gigantiq.com/blogs/andy/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Gigantiq are Hiring by Aaron</title>
		<link>http://www.gigantiq.com/blogs/andy/2007/05/10/gigantiq-are-hiring/#comment-42</link>
		<dc:creator>Aaron</dc:creator>
		<pubDate>Fri, 29 Jun 2007 01:02:57 +0000</pubDate>
		<guid isPermaLink="false">http://www.gigantiq.com/blogs/andy/?p=6#comment-42</guid>
		<description>Andy, are you guys looking at Mac OS X developers?  I'm studying this at present and wouldn't mind considering a career path back into programming.

Don't get me wrong, project management and my next career step here at work is executive level, but I don't always find it fun.</description>
		<content:encoded><![CDATA[<p>Andy, are you guys looking at Mac OS X developers?  I&#8217;m studying this at present and wouldn&#8217;t mind considering a career path back into programming.</p>
<p>Don&#8217;t get me wrong, project management and my next career step here at work is executive level, but I don&#8217;t always find it fun.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Making Simple things Complex by Aaron</title>
		<link>http://www.gigantiq.com/blogs/andy/2007/05/08/making-simple-things-complex/#comment-41</link>
		<dc:creator>Aaron</dc:creator>
		<pubDate>Fri, 29 Jun 2007 01:00:20 +0000</pubDate>
		<guid isPermaLink="false">http://www.gigantiq.com/blogs/andy/?p=5#comment-41</guid>
		<description>Hey Andy

Yeah I know what you mean with finding a open source CMS that is simple.  While working for the Australian Local Government Association and developing MetaNode (http://www.metanode.net/), was to at all times make the system powerful and simple.  The challenge we faced was creating that powerful system online that had a simple user interface and acceptable performance.  We managed to accomplish the first two but performance would always be impacted.

Open Source CMS (http://www.opensourcecms.com/) is a good portal.

Good to see Joomla is CSS and XHTML valid.  WAI is a shame though.  :(  Could also do with Dublin Core metadata to enrich the site.

What approach are you taking to UAT the UI?  Recommend invest in a consultant that professionalises in that field.

BTW a nice tool for Mac OS X Andy - Rapidweaver (http://www.realmacsoftware.com/rapidweaver/).  It has a simple interface and some powerful plugins.  Only downside is the pathetic cheap price... ;)</description>
		<content:encoded><![CDATA[<p>Hey Andy</p>
<p>Yeah I know what you mean with finding a open source CMS that is simple.  While working for the Australian Local Government Association and developing MetaNode (http://www.metanode.net/), was to at all times make the system powerful and simple.  The challenge we faced was creating that powerful system online that had a simple user interface and acceptable performance.  We managed to accomplish the first two but performance would always be impacted.</p>
<p>Open Source CMS (http://www.opensourcecms.com/) is a good portal.</p>
<p>Good to see Joomla is CSS and XHTML valid.  WAI is a shame though.  <img src='http://www.gigantiq.com/blogs/andy/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' />  Could also do with Dublin Core metadata to enrich the site.</p>
<p>What approach are you taking to UAT the UI?  Recommend invest in a consultant that professionalises in that field.</p>
<p>BTW a nice tool for Mac OS X Andy - Rapidweaver (http://www.realmacsoftware.com/rapidweaver/).  It has a simple interface and some powerful plugins.  Only downside is the pathetic cheap price&#8230; <img src='http://www.gigantiq.com/blogs/andy/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on  by Aaron</title>
		<link>http://www.gigantiq.com/blogs/andy/2007/05/07/4/#comment-40</link>
		<dc:creator>Aaron</dc:creator>
		<pubDate>Fri, 29 Jun 2007 00:43:34 +0000</pubDate>
		<guid isPermaLink="false">http://www.gigantiq.com/blogs/andy/?p=4#comment-40</guid>
		<description>Congratulations on starting the business Andy and Mike!!!  Since chatting the day after my wedding Andy, I've had a look for your website and found it quite easily.

My only comment, maybe hire a professional content publisher and marketing publisher.  Donâ€™t get me wrong, but we geeks donâ€™t always publish content that sells... ;)

Besides that, again, congratulations and well done.  I look forward to reading further blogs on how you guys come along in the business.</description>
		<content:encoded><![CDATA[<p>Congratulations on starting the business Andy and Mike!!!  Since chatting the day after my wedding Andy, I&#8217;ve had a look for your website and found it quite easily.</p>
<p>My only comment, maybe hire a professional content publisher and marketing publisher.  Donâ€™t get me wrong, but we geeks donâ€™t always publish content that sells&#8230; <img src='http://www.gigantiq.com/blogs/andy/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /><br />
Besides that, again, congratulations and well done.  I look forward to reading further blogs on how you guys come along in the business.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
