<?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"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:creativeCommons="http://backend.userland.com/creativeCommonsRssModule"
	>
<channel>
	<title>Comments on: Slides from Flash and the City Presentation on Robotlegs AS3</title>
	<atom:link href="http://joelhooks.com/2010/05/18/slides-from-flash-and-the-city-presentation-on-robotlegs-as3/feed/" rel="self" type="application/rss+xml" />
	<link>http://joelhooks.com/2010/05/18/slides-from-flash-and-the-city-presentation-on-robotlegs-as3/</link>
	<description>[without unit tests] you&#039;re not refactoring; you&#039;re just changing shit. -Hamlet D&#039;Arcy</description>
	<lastBuildDate>Mon, 14 May 2012 21:01:00 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
	<item>
		<title>By: Danilo Figueiredo</title>
		<link>http://joelhooks.com/2010/05/18/slides-from-flash-and-the-city-presentation-on-robotlegs-as3/comment-page-1/#comment-673</link>
		<dc:creator>Danilo Figueiredo</dc:creator>
		<pubDate>Thu, 03 Feb 2011 17:55:22 +0000</pubDate>
		<guid isPermaLink="false">http://joelhooks.com/?p=510#comment-673</guid>
		<description>Hi Joel, thanks a lot for the presentation.&lt;br&gt;&lt;br&gt;In order to help myself to better visualize the whole framework I’ve created a PDF based on your slides. Hope it can help others as well:&lt;br&gt; &lt;a href=&quot;http://blog.grifo.tv/2011/02/03/robotlegs-pdf-for-download&quot; rel=&quot;nofollow&quot;&gt;http://blog.grifo.tv/2011/02/0...&lt;/a&gt;/&lt;br&gt;&lt;br&gt;Cheers&lt;br&gt;Danilo</description>
		<content:encoded><![CDATA[<p>Hi Joel, thanks a lot for the presentation.</p>
<p>In order to help myself to better visualize the whole framework I’ve created a PDF based on your slides. Hope it can help others as well:<br /> <a href="http://blog.grifo.tv/2011/02/03/robotlegs-pdf-for-download" rel="nofollow">http://blog.grifo.tv/2011/02/0&#8230;</a>/</p>
<p>Cheers<br />Danilo</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Joel Hooks</title>
		<link>http://joelhooks.com/2010/05/18/slides-from-flash-and-the-city-presentation-on-robotlegs-as3/comment-page-1/#comment-392</link>
		<dc:creator>Joel Hooks</dc:creator>
		<pubDate>Wed, 19 May 2010 19:17:51 +0000</pubDate>
		<guid isPermaLink="false">http://joelhooks.com/?p=510#comment-392</guid>
		<description>1. It really depends on how portable you need your service to be. Some coupling is not necessarily bad.&lt;br&gt;&lt;br&gt;&quot;you should not target low coupling, instead target appropriate coupling&quot; - Mike Labriola (@mlabriola)&lt;br&gt;&lt;br&gt;I&#039;ve always liked that quote on the subject.&lt;br&gt;&lt;br&gt;2. I have no issues with creating lots of extra classes for expressiveness. Extending Signal has several benefits. You can type the expected value objects in the Super constructor, and it eliminated the need to use named injections in your mappings. I don&#039;t use named injections at all. Ever. I will always favor extending a base class, even if it is to simply &quot;mark&quot; a class for injection. I find this to be much cleaner in general, and I don&#039;t mind the extra classes in my structure.</description>
		<content:encoded><![CDATA[<p>1. It really depends on how portable you need your service to be. Some coupling is not necessarily bad.</p>
<p>&#8220;you should not target low coupling, instead target appropriate coupling&#8221; &#8211; Mike Labriola (@mlabriola)</p>
<p>I&#39;ve always liked that quote on the subject.</p>
<p>2. I have no issues with creating lots of extra classes for expressiveness. Extending Signal has several benefits. You can type the expected value objects in the Super constructor, and it eliminated the need to use named injections in your mappings. I don&#39;t use named injections at all. Ever. I will always favor extending a base class, even if it is to simply &#8220;mark&#8221; a class for injection. I find this to be much cleaner in general, and I don&#39;t mind the extra classes in my structure.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: John Stone</title>
		<link>http://joelhooks.com/2010/05/18/slides-from-flash-and-the-city-presentation-on-robotlegs-as3/comment-page-1/#comment-391</link>
		<dc:creator>John Stone</dc:creator>
		<pubDate>Wed, 19 May 2010 19:02:41 +0000</pubDate>
		<guid isPermaLink="false">http://joelhooks.com/?p=510#comment-391</guid>
		<description>Nice Presentation (I couldn&#039;t stop laughing at slide 29).  I&#039;m a big fan of the framework and preach it regularly to my co workers.&lt;br&gt;&lt;br&gt;A couple of questions: &lt;br&gt;&lt;br&gt;1.  I always thought that services shouldn&#039;t be coupled to models (slide 126?)&lt;br&gt;&lt;br&gt;2.  On a recent project i used a service to load up xml data and pass eventually to the &lt;br&gt;     view. It seemed though for a very long runaround  to get the data to the view.  &lt;br&gt;     (command asks service to load data,service loads parses data dispatches event, &lt;br&gt;     command takes event and transfers data to the model -&gt; command dispatches that &lt;br&gt;     model has been updated,mediator updates view with data) vs. mediator listens for &lt;br&gt;     service event and transferring the data to the view.   In this case all the model was &lt;br&gt;     doing is carrying a bunch of public vars.  I don&#039;t know if i&#039;m doing this right.  Any &lt;br&gt;     thoughts/suggestions?&lt;br&gt;&lt;br&gt;3.  On your as3signals demo it seemed that you still had to create a custom class for your &lt;br&gt;     signal. I thought that signals was suppose to get rid of that need.  what&#039;s the benefit of &lt;br&gt;     using signals in the robotlegs framework over events -i guess besides the strict typing?</description>
		<content:encoded><![CDATA[<p>Nice Presentation (I couldn&#39;t stop laughing at slide 29).  I&#39;m a big fan of the framework and preach it regularly to my co workers.</p>
<p>A couple of questions: </p>
<p>1.  I always thought that services shouldn&#39;t be coupled to models (slide 126?)</p>
<p>2.  On a recent project i used a service to load up xml data and pass eventually to the <br />     view. It seemed though for a very long runaround  to get the data to the view.  <br />     (command asks service to load data,service loads parses data dispatches event, <br />     command takes event and transfers data to the model -&gt; command dispatches that <br />     model has been updated,mediator updates view with data) vs. mediator listens for <br />     service event and transferring the data to the view.   In this case all the model was <br />     doing is carrying a bunch of public vars.  I don&#39;t know if i&#39;m doing this right.  Any <br />     thoughts/suggestions?</p>
<p>3.  On your as3signals demo it seemed that you still had to create a custom class for your <br />     signal. I thought that signals was suppose to get rid of that need.  what&#39;s the benefit of <br />     using signals in the robotlegs framework over events -i guess besides the strict typing?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Joel Hooks</title>
		<link>http://joelhooks.com/2010/05/18/slides-from-flash-and-the-city-presentation-on-robotlegs-as3/comment-page-1/#comment-371</link>
		<dc:creator>Joel Hooks</dc:creator>
		<pubDate>Wed, 19 May 2010 13:17:51 +0000</pubDate>
		<guid isPermaLink="false">http://joelhooks.com/?p=510#comment-371</guid>
		<description>1. It really depends on how portable you need your service to be. Some coupling is not necessarily bad.&lt;br&gt;&lt;br&gt;&quot;you should not target low coupling, instead target appropriate coupling&quot; - Mike Labriola (@mlabriola)&lt;br&gt;&lt;br&gt;I&#039;ve always liked that quote on the subject.&lt;br&gt;&lt;br&gt;2. I have no issues with creating lots of extra classes for expressiveness. Extending Signal has several benefits. You can type the expected value objects in the Super constructor, and it eliminated the need to use named injections in your mappings. I don&#039;t use named injections at all. Ever. I will always favor extending a base class, even if it is to simply &quot;mark&quot; a class for injection. I find this to be much cleaner in general, and I don&#039;t mind the extra classes in my structure.</description>
		<content:encoded><![CDATA[<p>1. It really depends on how portable you need your service to be. Some coupling is not necessarily bad.</p>
<p>&#8220;you should not target low coupling, instead target appropriate coupling&#8221; &#8211; Mike Labriola (@mlabriola)</p>
<p>I&#39;ve always liked that quote on the subject.</p>
<p>2. I have no issues with creating lots of extra classes for expressiveness. Extending Signal has several benefits. You can type the expected value objects in the Super constructor, and it eliminated the need to use named injections in your mappings. I don&#39;t use named injections at all. Ever. I will always favor extending a base class, even if it is to simply &#8220;mark&#8221; a class for injection. I find this to be much cleaner in general, and I don&#39;t mind the extra classes in my structure.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: John Stone</title>
		<link>http://joelhooks.com/2010/05/18/slides-from-flash-and-the-city-presentation-on-robotlegs-as3/comment-page-1/#comment-370</link>
		<dc:creator>John Stone</dc:creator>
		<pubDate>Wed, 19 May 2010 13:02:41 +0000</pubDate>
		<guid isPermaLink="false">http://joelhooks.com/?p=510#comment-370</guid>
		<description>Nice Presentation (I couldn&#039;t stop laughing at slide 29).  I&#039;m a big fan of the framework and preach it regularly to my co workers.&lt;br&gt;&lt;br&gt;A couple of questions: &lt;br&gt;&lt;br&gt;1.  I always thought that services shouldn&#039;t be coupled to models (slide 126?)&lt;br&gt;&lt;br&gt;2.  On a recent project i used a service to load up xml data and pass eventually to the &lt;br&gt;     view. It seemed though for a very long runaround  to get the data to the view.  &lt;br&gt;     (command asks service to load data,service loads parses data dispatches event, &lt;br&gt;     command takes event and transfers data to the model -&gt; command dispatches that &lt;br&gt;     model has been updated,mediator updates view with data) vs. mediator listens for &lt;br&gt;     service event and transferring the data to the view.   In this case all the model was &lt;br&gt;     doing is carrying a bunch of public vars.  I don&#039;t know if i&#039;m doing this right.  Any &lt;br&gt;     thoughts/suggestions?&lt;br&gt;&lt;br&gt;3.  On your as3signals demo it seemed that you still had to create a custom class for your &lt;br&gt;     signal. I thought that signals was suppose to get rid of that need.  what&#039;s the benefit of &lt;br&gt;     using signals in the robotlegs framework over events -i guess besides the strict typing?</description>
		<content:encoded><![CDATA[<p>Nice Presentation (I couldn&#39;t stop laughing at slide 29).  I&#39;m a big fan of the framework and preach it regularly to my co workers.</p>
<p>A couple of questions: </p>
<p>1.  I always thought that services shouldn&#39;t be coupled to models (slide 126?)</p>
<p>2.  On a recent project i used a service to load up xml data and pass eventually to the <br />     view. It seemed though for a very long runaround  to get the data to the view.  <br />     (command asks service to load data,service loads parses data dispatches event, <br />     command takes event and transfers data to the model -&gt; command dispatches that <br />     model has been updated,mediator updates view with data) vs. mediator listens for <br />     service event and transferring the data to the view.   In this case all the model was <br />     doing is carrying a bunch of public vars.  I don&#39;t know if i&#39;m doing this right.  Any <br />     thoughts/suggestions?</p>
<p>3.  On your as3signals demo it seemed that you still had to create a custom class for your <br />     signal. I thought that signals was suppose to get rid of that need.  what&#39;s the benefit of <br />     using signals in the robotlegs framework over events -i guess besides the strict typing?</p>
]]></content:encoded>
	</item>
</channel>
</rss>

