<?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 niksilver.com</title>
	<atom:link href="http://niksilver.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://niksilver.com</link>
	<description>Mostly about the management of software development</description>
	<pubDate>Fri, 04 Jul 2008 19:08:51 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5.1</generator>
		<item>
		<title>Comment on Lightweight versus heavyweight: The cost is in the management by Nik</title>
		<link>http://niksilver.com/2007/12/27/lightweight-versus-heavyweight-the-cost-is-in-the-management/#comment-33904</link>
		<dc:creator>Nik</dc:creator>
		<pubDate>Mon, 19 May 2008 16:35:24 +0000</pubDate>
		<guid isPermaLink="false">http://niksilver.com/2007/12/27/lightweight-versus-heavyweight-the-cost-is-in-the-management/#comment-33904</guid>
		<description>Hi Alex, there's none that I could recommend, because I've not used any sufficiently. The reason we built our own (twice) is that nothing out there met for our needs, although of course our needs will not be the same as yours.</description>
		<content:encoded><![CDATA[<p>Hi Alex, there&#8217;s none that I could recommend, because I&#8217;ve not used any sufficiently. The reason we built our own (twice) is that nothing out there met for our needs, although of course our needs will not be the same as yours.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Lightweight versus heavyweight: The cost is in the management by Alex</title>
		<link>http://niksilver.com/2007/12/27/lightweight-versus-heavyweight-the-cost-is-in-the-management/#comment-33903</link>
		<dc:creator>Alex</dc:creator>
		<pubDate>Mon, 19 May 2008 13:51:15 +0000</pubDate>
		<guid isPermaLink="false">http://niksilver.com/2007/12/27/lightweight-versus-heavyweight-the-cost-is-in-the-management/#comment-33903</guid>
		<description>Dear Nik, is there an open source heavyweight cms you could recommend?

Kind regards from Switzerland.
Alex</description>
		<content:encoded><![CDATA[<p>Dear Nik, is there an open source heavyweight cms you could recommend?</p>
<p>Kind regards from Switzerland.<br />
Alex</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Big lessons from a little project by Nick</title>
		<link>http://niksilver.com/2008/04/06/big-lessons-from-a-little-project/#comment-33463</link>
		<dc:creator>Nick</dc:creator>
		<pubDate>Wed, 23 Apr 2008 13:11:36 +0000</pubDate>
		<guid isPermaLink="false">http://niksilver.com/2008/04/06/big-lessons-from-a-little-project/#comment-33463</guid>
		<description>Probably should mention this in person but have you tried the &lt;a href="http://www.aptana.com" rel="nofollow"&gt;Aptana&lt;/a&gt; plug-in for eclipse. It has code completion for JavaScript amongst a whole heap of other helpful features a front-end developer might want.</description>
		<content:encoded><![CDATA[<p>Probably should mention this in person but have you tried the <a href="http://www.aptana.com" rel="nofollow">Aptana</a> plug-in for eclipse. It has code completion for JavaScript amongst a whole heap of other helpful features a front-end developer might want.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Big lessons from a little project by Nik</title>
		<link>http://niksilver.com/2008/04/06/big-lessons-from-a-little-project/#comment-29841</link>
		<dc:creator>Nik</dc:creator>
		<pubDate>Mon, 07 Apr 2008 18:16:43 +0000</pubDate>
		<guid isPermaLink="false">http://niksilver.com/2008/04/06/big-lessons-from-a-little-project/#comment-29841</guid>
		<description>Ajay: Yes, Javascript is powerful, and a line-for-line count comparison isn't really fair.

Firebug is indeed very useful, but as I'm writing a Firefox extension my Javascript isn't seen by Firebug. On the IDE, I want to type one character, hit Ctrl-Space, cursor-down twice, Enter -- rather than type an entire variable name. I suspect I might be lazy.</description>
		<content:encoded><![CDATA[<p>Ajay: Yes, Javascript is powerful, and a line-for-line count comparison isn&#8217;t really fair.</p>
<p>Firebug is indeed very useful, but as I&#8217;m writing a Firefox extension my Javascript isn&#8217;t seen by Firebug. On the IDE, I want to type one character, hit Ctrl-Space, cursor-down twice, Enter &#8212; rather than type an entire variable name. I suspect I might be lazy.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Big lessons from a little project by Ajay</title>
		<link>http://niksilver.com/2008/04/06/big-lessons-from-a-little-project/#comment-29819</link>
		<dc:creator>Ajay</dc:creator>
		<pubDate>Mon, 07 Apr 2008 16:16:42 +0000</pubDate>
		<guid isPermaLink="false">http://niksilver.com/2008/04/06/big-lessons-from-a-little-project/#comment-29819</guid>
		<description>To #6.
I code both Java and JS. I generally do all my java work in one stretch and then the JS work - kindaf helps me context switch to the JS pradigm (which I crib about but still love).
One thing is I do not have the need of an IDE when I do JS - my functions are short, modules are short - cruft free. I feel 200 LOC in JS equals anywhere between 600-700 lines in Java for trivial code and the factor is like 5x when it gets more complex (especially if I need more nested structures). 

However I use the IDE for things like version control, syntax highlighting but never wanted more out of it. Also have to mention -FireBug is your friend for JS :)</description>
		<content:encoded><![CDATA[<p>To #6.<br />
I code both Java and JS. I generally do all my java work in one stretch and then the JS work - kindaf helps me context switch to the JS pradigm (which I crib about but still love).<br />
One thing is I do not have the need of an IDE when I do JS - my functions are short, modules are short - cruft free. I feel 200 LOC in JS equals anywhere between 600-700 lines in Java for trivial code and the factor is like 5x when it gets more complex (especially if I need more nested structures). </p>
<p>However I use the IDE for things like version control, syntax highlighting but never wanted more out of it. Also have to mention -FireBug is your friend for JS <img src='http://niksilver.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Big lessons from a little project by Devolio</title>
		<link>http://niksilver.com/2008/04/06/big-lessons-from-a-little-project/#comment-29689</link>
		<dc:creator>Devolio</dc:creator>
		<pubDate>Mon, 07 Apr 2008 04:20:00 +0000</pubDate>
		<guid isPermaLink="false">http://niksilver.com/2008/04/06/big-lessons-from-a-little-project/#comment-29689</guid>
		<description>&lt;strong&gt;Big lessons from a little project...&lt;/strong&gt;

Iâ€™ve just finished a fortnightâ€™s holiday which I (foolishly) spent mostly in front of a PC developing a never-ending little application. But unexpectedly, despite the trivial nature of my project, I rediscovered a number of important lessons more u...</description>
		<content:encoded><![CDATA[<p><strong>Big lessons from a little project&#8230;</strong></p>
<p>Iâ€™ve just finished a fortnightâ€™s holiday which I (foolishly) spent mostly in front of a PC developing a never-ending little application. But unexpectedly, despite the trivial nature of my project, I rediscovered a number of important lessons more u&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on QCon London 2008: A Michelin-starred deli by James Governor&#8217;s Monkchips &#187; links for 2008-03-18</title>
		<link>http://niksilver.com/2008/03/17/qcon-london-2008-a-michelin-starred-deli/#comment-26524</link>
		<dc:creator>James Governor&#8217;s Monkchips &#187; links for 2008-03-18</dc:creator>
		<pubDate>Tue, 18 Mar 2008 23:28:55 +0000</pubDate>
		<guid isPermaLink="false">http://niksilver.com/2008/03/17/qcon-london-2008-a-michelin-starred-deli/#comment-26524</guid>
		<description>[...] niksilver.com Â» QCon London 2008: A Michelin-starred deli some nice praise for a couple of contributors to case study track at QCON, managed by yours truly (tags: qconlondon2008) [...]</description>
		<content:encoded><![CDATA[<p>[...] niksilver.com Â» QCon London 2008: A Michelin-starred deli some nice praise for a couple of contributors to case study track at QCON, managed by yours truly (tags: qconlondon2008) [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on We (heart) UAT by Nik</title>
		<link>http://niksilver.com/2007/12/09/we-heart-uat/#comment-25562</link>
		<dc:creator>Nik</dc:creator>
		<pubDate>Wed, 05 Mar 2008 08:48:42 +0000</pubDate>
		<guid isPermaLink="false">http://niksilver.com/2007/12/09/we-heart-uat/#comment-25562</guid>
		<description>Sonny, no, I don't have such a diagram, and I suspect it will vary depending on the organisation.

For me the key function is to get final feature approval from the business user, controls will be the originally defined acceptance criteria, inputs will include a piece of functionality that's QA-approved tp sufficiently justify the business's time working on it, and outputs will include the thumbs-up from the business user, or comments on what needs to be changed.</description>
		<content:encoded><![CDATA[<p>Sonny, no, I don&#8217;t have such a diagram, and I suspect it will vary depending on the organisation.</p>
<p>For me the key function is to get final feature approval from the business user, controls will be the originally defined acceptance criteria, inputs will include a piece of functionality that&#8217;s QA-approved tp sufficiently justify the business&#8217;s time working on it, and outputs will include the thumbs-up from the business user, or comments on what needs to be changed.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on We (heart) UAT by Sonny Matharu</title>
		<link>http://niksilver.com/2007/12/09/we-heart-uat/#comment-25510</link>
		<dc:creator>Sonny Matharu</dc:creator>
		<pubDate>Tue, 04 Mar 2008 17:00:21 +0000</pubDate>
		<guid isPermaLink="false">http://niksilver.com/2007/12/09/we-heart-uat/#comment-25510</guid>
		<description>Hi, this article/information is very helpful - many thanks. I was looking for some diagrammatic representation of a UAT function within a large organsiation. Something describing the function, its key controls, inputs/outputs to the team, etc.  Do you have any material/diagrams that might help me in illustrating this pictorially? 

Regards,
Sonny.</description>
		<content:encoded><![CDATA[<p>Hi, this article/information is very helpful - many thanks. I was looking for some diagrammatic representation of a UAT function within a large organsiation. Something describing the function, its key controls, inputs/outputs to the team, etc.  Do you have any material/diagrams that might help me in illustrating this pictorially? </p>
<p>Regards,<br />
Sonny.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Guardian.co.uk: Steps to a smooth launch by links for 2008-02-13 &#171; David Black</title>
		<link>http://niksilver.com/2008/02/11/guardiancouk-steps-to-a-smooth-launch/#comment-24320</link>
		<dc:creator>links for 2008-02-13 &#171; David Black</dc:creator>
		<pubDate>Wed, 13 Feb 2008 02:23:30 +0000</pubDate>
		<guid isPermaLink="false">http://niksilver.com/2008/02/11/guardiancouk-steps-to-a-smooth-launch/#comment-24320</guid>
		<description>[...] Guardian.co.uk: Steps to a smooth launch - niksilver.com &#8220;The secret is that the weekendâ€™s work was only the final step after a great many before it, all of which were safely out of the way before the weekendâ€¦&#8221; (tags: internet newspapers newspapersites webdesign redesign guardian) [...]</description>
		<content:encoded><![CDATA[<p>[...] Guardian.co.uk: Steps to a smooth launch - niksilver.com &#8220;The secret is that the weekendâ€™s work was only the final step after a great many before it, all of which were safely out of the way before the weekendâ€¦&#8221; (tags: internet newspapers newspapersites webdesign redesign guardian) [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>
