<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet href="http://feeds.feedburner.com/~d/styles/atom10full.xsl" type="text/xsl" media="screen"?><?xml-stylesheet href="http://feeds.feedburner.com/~d/styles/itemcontent.css" type="text/css" media="screen"?><feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<title type="text">Comments for Roop says</title>
	<subtitle type="text">I created gravity?</subtitle>

	<updated>2008-09-01T06:17:44Z</updated>
	<generator uri="http://wordpress.org/" version="2.3.3">WordPress</generator>

	<link rel="alternate" type="text/html" href="http://danielroop.com/blog" />
	
	<id>http://danielroop.com/blog/comments/feed/atom/</id>

	<link rel="self" href="http://feeds.feedburner.com/CommentsForRoopSays" type="application/atom+xml" /><entry>
		<title>Comment on Java to Coldfusion HashMap by Elliott Sprehn</title>
		<link rel="alternate" href="http://danielroop.com/blog/2007/02/12/java-to-coldfusion-hashmap/#comment-13766" type="text/html" />

		<author>
			<name>Elliott Sprehn</name>
			<uri>http://enfinitystudios.thaposse.net/</uri>
		</author>

		<id>http://danielroop.com/blog/2007/02/12/java-to-coldfusion-hashmap/#comment-13766</id>
		<updated>2008-09-01T06:17:44Z</updated>
		<published>2008-09-01T06:17:44Z</published>
		<content type="html" xml:base="http://danielroop.com/blog/2007/02/12/java-to-coldfusion-hashmap/#comment-13766"><![CDATA[<p>This is because CF uppercases struct keys that are accessed using dot notation.</p>
<p>map = createObject(&#8221;java&#8221;,&#8221;java.util.HashMap&#8221;).init();<br />
map.put(&#8221;foo&#8221;,1);<br />
map.put(&#8221;BAR&#8221;,1);</p>
<p>// this won&#8217;t work<br />
map.foo;</p>
<p>// this will<br />
map[&#8221;foo&#8221;]</p>
<p>// this will too, since we inserted it in upper case<br />
map.bar</p>
]]></content>
	</entry>
	<entry>
		<title>Comment on Program to an interface not an Interface by Daniel Roop</title>
		<link rel="alternate" href="http://danielroop.com/blog/2008/06/28/program-to-an-interface-not-an-interface/#comment-11384" type="text/html" />

		<author>
			<name>Daniel Roop</name>
			<uri>http://danielroop.com</uri>
		</author>

		<id>http://danielroop.com/blog/2008/06/28/program-to-an-interface-not-an-interface/#comment-11384</id>
		<updated>2008-07-14T02:06:47Z</updated>
		<published>2008-07-14T02:06:47Z</published>
		<content type="html" xml:base="http://danielroop.com/blog/2008/06/28/program-to-an-interface-not-an-interface/#comment-11384"><![CDATA[<p>@Russ</p>
<p>Very good point, I agree you don&#8217;t lose much by creating the interface, but it does clutter up your packages, and increase the files you need to maintain in your software.  And we all know the more lines of code, the more bugs in the code ;-).</p>
<p>Regardless, that is a good point, I just wish more seasoned developers would speak out, so that the new developers don&#8217;t get stuck believing the interface advocates are the only seasoned train of thought.</p>
]]></content>
	</entry>
	<entry>
		<title>Comment on Program to an interface not an Interface by Russ</title>
		<link rel="alternate" href="http://danielroop.com/blog/2008/06/28/program-to-an-interface-not-an-interface/#comment-11356" type="text/html" />

		<author>
			<name>Russ</name>
			
		</author>

		<id>http://danielroop.com/blog/2008/06/28/program-to-an-interface-not-an-interface/#comment-11356</id>
		<updated>2008-07-13T04:18:05Z</updated>
		<published>2008-07-13T04:18:05Z</published>
		<content type="html" xml:base="http://danielroop.com/blog/2008/06/28/program-to-an-interface-not-an-interface/#comment-11356"><![CDATA[<p>I think its probably part of the learning experience.  Everyone goes through a collection of practices until they learn what&#8217;s useless and what&#8217;s not. The mix up in nomenclature from the GoF book is likely the cause&#8230; but the end result of making an interface for everything in your system isn&#8217;t entirely bad. Its a tedious way of learning how to think about the (lowercase) interface (as opposed to the uppercase one). Once you learn that you can make better concrete classes and only extract interfaces when you need them. The debate will continue, though, because there&#8217;s always someone who doesn&#8217;t know any better.</p>
]]></content>
	</entry>
	<entry>
		<title>Comment on Actionscript 3.0 Object Equality by Ryan Christiansen</title>
		<link rel="alternate" href="http://danielroop.com/blog/2007/09/02/actionscript-30-object-equality/#comment-11161" type="text/html" />

		<author>
			<name>Ryan Christiansen</name>
			<uri>http://www.funit.org</uri>
		</author>

		<id>http://danielroop.com/blog/2007/09/02/actionscript-30-object-equality/#comment-11161</id>
		<updated>2008-07-07T12:23:04Z</updated>
		<published>2008-07-07T12:23:04Z</published>
		<content type="html" xml:base="http://danielroop.com/blog/2007/09/02/actionscript-30-object-equality/#comment-11161"><![CDATA[<p>I&#8217;ve been developing a FlexUnit alternative called FUnit and came across this issue this weekend. Through my research, I found that FlexUnit is definitely an exception to the rule. The result of my findings can be found here:</p>
<p><a href="http://blog.funit.org/?p=13" rel="nofollow">http://blog.funit.org/?p=13</a></p>
<p>Pending community feedback, Assert.areEqual() will support member-wise value comparison like what has been suggested here, and NOT reference comparison. A second Assert.areSame() will be available for that purpose.</p>
]]></content>
	</entry>
	<entry>
		<title>Comment on Program to an interface not an Interface by Theo Briscoe</title>
		<link rel="alternate" href="http://danielroop.com/blog/2008/06/28/program-to-an-interface-not-an-interface/#comment-11039" type="text/html" />

		<author>
			<name>Theo Briscoe</name>
			
		</author>

		<id>http://danielroop.com/blog/2008/06/28/program-to-an-interface-not-an-interface/#comment-11039</id>
		<updated>2008-07-04T02:10:55Z</updated>
		<published>2008-07-04T02:10:55Z</published>
		<content type="html" xml:base="http://danielroop.com/blog/2008/06/28/program-to-an-interface-not-an-interface/#comment-11039"><![CDATA[<p>I concur, the idea of creating all the interfaces up front (before they are needed) does not make sense. All the modern IDE can generate interfaces later in the development process when they are needed.</p>
]]></content>
	</entry>
	<entry>
		<title>Comment on Program to an interface not an Interface by Bucky Schwarz</title>
		<link rel="alternate" href="http://danielroop.com/blog/2008/06/28/program-to-an-interface-not-an-interface/#comment-10928" type="text/html" />

		<author>
			<name>Bucky Schwarz</name>
			<uri>http://buckyschwarz.net</uri>
		</author>

		<id>http://danielroop.com/blog/2008/06/28/program-to-an-interface-not-an-interface/#comment-10928</id>
		<updated>2008-06-30T14:41:00Z</updated>
		<published>2008-06-30T14:41:00Z</published>
		<content type="html" xml:base="http://danielroop.com/blog/2008/06/28/program-to-an-interface-not-an-interface/#comment-10928"><![CDATA[<p>Great post. I feel like I don&#8217;t have much to add to this discussion right now, so I&#8217;ll leave it at good job.</p>
]]></content>
	</entry>
	<entry>
		<title>Comment on Program to an interface not an Interface by Michael Sica</title>
		<link rel="alternate" href="http://danielroop.com/blog/2008/06/28/program-to-an-interface-not-an-interface/#comment-10908" type="text/html" />

		<author>
			<name>Michael Sica</name>
			<uri>http://www.michaelsica.com</uri>
		</author>

		<id>http://danielroop.com/blog/2008/06/28/program-to-an-interface-not-an-interface/#comment-10908</id>
		<updated>2008-06-30T01:57:53Z</updated>
		<published>2008-06-30T01:57:53Z</published>
		<content type="html" xml:base="http://danielroop.com/blog/2008/06/28/program-to-an-interface-not-an-interface/#comment-10908"><![CDATA[<p>I agree, even in scenarios where you&#8217;re implementing an interface in your class (like the threading stuff in java - what is it, runnable?) the only thing you&#8217;re getting from an Interface is the compiler saying, &#8220;hey, you did this wrong&#8221;&#8230; Like you weren&#8217;t going to ever run the code until it&#8217;s in a production/mission critical/life threatening situation?</p>
<p>If I&#8217;ve got an API doc - I&#8217;m good.</p>
]]></content>
	</entry>
	<entry>
		<title>Comment on What makes a great developer? by A New Look at Development</title>
		<link rel="alternate" href="http://danielroop.com/blog/2008/05/09/what-makes-a-great-developer/#comment-10263" type="text/html" />

		<author>
			<name>A New Look at Development</name>
			<uri>http://www.adamfortuna.com/2008/06/05/a-new-look-at-development/</uri>
		</author>

		<id>http://danielroop.com/blog/2008/05/09/what-makes-a-great-developer/#comment-10263</id>
		<updated>2008-06-06T03:56:26Z</updated>
		<published>2008-06-06T03:56:26Z</published>
		<content type="html" xml:base="http://danielroop.com/blog/2008/05/09/what-makes-a-great-developer/#comment-10263"><![CDATA[<p>[&#8230;] to programming though, what matters is problem solving, core programming concepts and most of all passion. While staying up to date with what interests you may not be hard, most would agree it&#8217;s [&#8230;]</p>
]]></content>
	</entry>
	<entry>
		<title>Comment on What makes a great developer? by Russ</title>
		<link rel="alternate" href="http://danielroop.com/blog/2008/05/09/what-makes-a-great-developer/#comment-9537" type="text/html" />

		<author>
			<name>Russ</name>
			
		</author>

		<id>http://danielroop.com/blog/2008/05/09/what-makes-a-great-developer/#comment-9537</id>
		<updated>2008-05-18T20:25:14Z</updated>
		<published>2008-05-18T20:25:14Z</published>
		<content type="html" xml:base="http://danielroop.com/blog/2008/05/09/what-makes-a-great-developer/#comment-9537"><![CDATA[<p>In my case, I think passion = anger.</p>
]]></content>
	</entry>
	<entry>
		<title>Comment on What makes a great developer? by Daniel Roop</title>
		<link rel="alternate" href="http://danielroop.com/blog/2008/05/09/what-makes-a-great-developer/#comment-9424" type="text/html" />

		<author>
			<name>Daniel Roop</name>
			<uri>http://danielroop.com</uri>
		</author>

		<id>http://danielroop.com/blog/2008/05/09/what-makes-a-great-developer/#comment-9424</id>
		<updated>2008-05-16T12:01:41Z</updated>
		<published>2008-05-16T12:01:41Z</published>
		<content type="html" xml:base="http://danielroop.com/blog/2008/05/09/what-makes-a-great-developer/#comment-9424"><![CDATA[<p>@Brian</p>
<p>Yes that is all I need and, correct you are an ampersat dollar dollar.  </p>
<p>Thanks for the comment, so far I have been lucky in finding places that will tolerate my&#8230;passion.  Every once in  a while though you have to go through the growing pains of something new though.</p>
]]></content>
	</entry>
</feed><!-- Dynamic Page Served (once) in 0.360 seconds --><!-- Cached page served by WP-Cache -->
