<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0"> <channel><title>Comments for The Inquisitive Coder - Davy Brion's Blog</title> <link>http://davybrion.com/blog</link> <description>inquisitive: adjective. given to inquiry, research, or asking questions; eager for knowledge; intellectually curious</description> <lastBuildDate>Wed, 22 Feb 2012 17:27:00 +0000</lastBuildDate> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <generator>http://wordpress.org/?v=3.3.1</generator> <atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/davybrioncomments" /><feedburner:info uri="davybrioncomments" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item><title>Comment on MVP In Silverlight/WPF: Architectural Overview by Dan M</title><link>http://feedproxy.google.com/~r/davybrioncomments/~3/mMekXyLwZcc/</link> <dc:creator>Dan M</dc:creator> <pubDate>Wed, 22 Feb 2012 17:27:00 +0000</pubDate> <guid isPermaLink="false">http://davybrion.com/blog/?p=2420#comment-104754</guid> <description> Thanks, Davy. I'll look forward to it :)</description> <content:encoded><![CDATA[<p> Thanks, Davy. I&#8217;ll look forward to it <img
src='http://d18sni7re4ly7f.cloudfront.net/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /></p> <img src="http://feeds.feedburner.com/~r/davybrioncomments/~4/mMekXyLwZcc" height="1" width="1"/>]]></content:encoded> <feedburner:origLink>http://davybrion.com/blog/2010/08/mvp-in-silverlightwpf-architectural-overview/comment-page-1/#comment-104754</feedburner:origLink></item> <item><title>Comment on MVP In Silverlight/WPF: Architectural Overview by Davy Brion</title><link>http://feedproxy.google.com/~r/davybrioncomments/~3/VmuWVdVz-w8/</link> <dc:creator>Davy Brion</dc:creator> <pubDate>Wed, 22 Feb 2012 09:05:00 +0000</pubDate> <guid isPermaLink="false">http://davybrion.com/blog/?p=2420#comment-104752</guid> <description>interesting question... i'm gonna turn that into its own post in a few days :)</description> <content:encoded><![CDATA[<p>interesting question&#8230; i&#8217;m gonna turn that into its own post in a few days <img
src='http://d18sni7re4ly7f.cloudfront.net/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /></p> <img src="http://feeds.feedburner.com/~r/davybrioncomments/~4/VmuWVdVz-w8" height="1" width="1"/>]]></content:encoded> <feedburner:origLink>http://davybrion.com/blog/2010/08/mvp-in-silverlightwpf-architectural-overview/comment-page-1/#comment-104752</feedburner:origLink></item> <item><title>Comment on MVP In Silverlight/WPF: Architectural Overview by Dan M</title><link>http://feedproxy.google.com/~r/davybrioncomments/~3/nduhfkYr_Vs/</link> <dc:creator>Dan M</dc:creator> <pubDate>Wed, 22 Feb 2012 00:42:00 +0000</pubDate> <guid isPermaLink="false">http://davybrion.com/blog/?p=2420#comment-104750</guid> <description>I guess this comment is rather late, but I want to thank you for all the hard work you put into this series, especially the sample project. I've read a little about MPV before, but I think this is the first time I really got a feel for how it would work with a WPF/Silverlight app.I can definitely see how this nicely decouples the binding model from the service layer, though it does seem a little awkward to me that you have to go through the code-behind to get to the presenter. It would be nice if you could somehow use commands to directly execute methods on the presenter, rather than having to go through a "middle man". I don't think there's any straightforward way to do it, though. If there were a CommandContext to go along with the DataContext, maybe then it would be feasible.I wonder if you have any thoughts on whether there is a size/complexity point where your MVP-BM architecture is overkill vs MVVM. For example, I tend to work on small to medium sized desktop apps that have a local database. While my view models do still have two responsibilities (data and commands), it just doesn't feel like they're "doing too much". In addition, I've recently started using &lt;a href="code.google.com/p/notifypropertyweaver/" rel="nofollow"&gt;NotifyPropertyWeaver&lt;/a&gt;, which makes the data aspect of my view models almost trivially easy in many cases. Finally, even if I did have a remote data source/web service, I wonder if the new async features of .NET 4.5 wouldn't simplify the code enough to still not warrant the more complex architecture.</description> <content:encoded><![CDATA[<p>I guess this comment is rather late, but I want to thank you for all the hard work you put into this series, especially the sample project. I&#8217;ve read a little about MPV before, but I think this is the first time I really got a feel for how it would work with a WPF/Silverlight app.</p><p>I can definitely see how this nicely decouples the binding model from the service layer, though it does seem a little awkward to me that you have to go through the code-behind to get to the presenter. It would be nice if you could somehow use commands to directly execute methods on the presenter, rather than having to go through a &#8220;middle man&#8221;. I don&#8217;t think there&#8217;s any straightforward way to do it, though. If there were a CommandContext to go along with the DataContext, maybe then it would be feasible.</p><p>I wonder if you have any thoughts on whether there is a size/complexity point where your MVP-BM architecture is overkill vs MVVM. For example, I tend to work on small to medium sized desktop apps that have a local database. While my view models do still have two responsibilities (data and commands), it just doesn&#8217;t feel like they&#8217;re &#8220;doing too much&#8221;. In addition, I&#8217;ve recently started using <a
href="code.google.com/p/notifypropertyweaver/" rel="nofollow">NotifyPropertyWeaver</a>, which makes the data aspect of my view models almost trivially easy in many cases. Finally, even if I did have a remote data source/web service, I wonder if the new async features of .NET 4.5 wouldn&#8217;t simplify the code enough to still not warrant the more complex architecture.</p> <img src="http://feeds.feedburner.com/~r/davybrioncomments/~4/nduhfkYr_Vs" height="1" width="1"/>]]></content:encoded> <feedburner:origLink>http://davybrion.com/blog/2010/08/mvp-in-silverlightwpf-architectural-overview/comment-page-1/#comment-104750</feedburner:origLink></item> <item><title>Comment on DTO’s Should Transfer Data, Not Entities by Frank Vega</title><link>http://feedproxy.google.com/~r/davybrioncomments/~3/4_k94DbdO-Y/</link> <dc:creator>Frank Vega</dc:creator> <pubDate>Tue, 21 Feb 2012 23:08:00 +0000</pubDate> <guid isPermaLink="false">http://davybrion.com/blog/?p=3907#comment-104749</guid> <description>"I think it makes a lot more sense to use DTO's per service operation which are optimized for the use case that that service operation is meant to implement."
Good advice! Even if syntactic coupling doesn't bite you (by going heavily toward an entity-mimicking-DTO-route), the resulting semantic coupling might (maybe even worse?).</description> <content:encoded><![CDATA[<p>&#8220;I think it makes a lot more sense to use DTO&#8217;s per service operation which are optimized for the use case that that service operation is meant to implement.&#8221;<br
/> Good advice! Even if syntactic coupling doesn&#8217;t bite you (by going heavily toward an entity-mimicking-DTO-route), the resulting semantic coupling might (maybe even worse?).</p> <img src="http://feeds.feedburner.com/~r/davybrioncomments/~4/4_k94DbdO-Y" height="1" width="1"/>]]></content:encoded> <feedburner:origLink>http://davybrion.com/blog/2012/02/dtos-should-transfer-data-not-entities/comment-page-1/#comment-104749</feedburner:origLink></item> <item><title>Comment on Prefixing Input Elements Of Partial Views With ASP.NET MVC by Just</title><link>http://feedproxy.google.com/~r/davybrioncomments/~3/PUY5u3Y58ro/</link> <dc:creator>Just</dc:creator> <pubDate>Tue, 21 Feb 2012 06:37:00 +0000</pubDate> <guid isPermaLink="false">http://davybrion.com/blog/?p=3047#comment-104744</guid> <description>This doesn't work with data annotations when rendering a model that fails validation because this data is in the ViewData dictionary.  None of the validation messages will be sent into the partial, so validation won't happen.  In fact, you'll likely wind up with a broken page as a result as the rendering pipeline gets hosed up by the changed view data dictionary.</description> <content:encoded><![CDATA[<p>This doesn&#8217;t work with data annotations when rendering a model that fails validation because this data is in the ViewData dictionary.  None of the validation messages will be sent into the partial, so validation won&#8217;t happen.  In fact, you&#8217;ll likely wind up with a broken page as a result as the rendering pipeline gets hosed up by the changed view data dictionary.</p> <img src="http://feeds.feedburner.com/~r/davybrioncomments/~4/PUY5u3Y58ro" height="1" width="1"/>]]></content:encoded> <feedburner:origLink>http://davybrion.com/blog/2011/01/prefixing-input-elements-of-partial-views-with-asp-net-mvc/comment-page-1/#comment-104744</feedburner:origLink></item> <item><title>Comment on Introducing AgUnit: Silverlight Unit Testing With Resharper by termit</title><link>http://feedproxy.google.com/~r/davybrioncomments/~3/_EzxTzhfaE0/</link> <dc:creator>termit</dc:creator> <pubDate>Mon, 20 Feb 2012 14:57:00 +0000</pubDate> <guid isPermaLink="false">http://davybrion.com/blog/2010/05/introducing-agunit-silverlight-unit-testing-with-resharper/#comment-104742</guid> <description>Still doesn't work for Resharper 6.1</description> <content:encoded><![CDATA[<p>Still doesn&#8217;t work for Resharper 6.1</p> <img src="http://feeds.feedburner.com/~r/davybrioncomments/~4/_EzxTzhfaE0" height="1" width="1"/>]]></content:encoded> <feedburner:origLink>http://davybrion.com/blog/2010/05/introducing-agunit-silverlight-unit-testing-with-resharper/comment-page-1/#comment-104742</feedburner:origLink></item> <item><title>Comment on DTO’s Should Transfer Data, Not Entities by The Morning Brew - Chris Alcock » The Morning Brew #1047</title><link>http://feedproxy.google.com/~r/davybrioncomments/~3/ic0AAVBHe9c/</link> <dc:creator>The Morning Brew - Chris Alcock » The Morning Brew #1047</dc:creator> <pubDate>Mon, 20 Feb 2012 09:32:09 +0000</pubDate> <guid isPermaLink="false">http://davybrion.com/blog/?p=3907#comment-104739</guid> <description>[...] DTO’s Should Transfer Data, Not Entities - Davy Brion discusses a common Data Transfer Object anti-patern where the DTO starts to look a lot like the entity it is modelling, sharing some recommendations along they way. [...]</description> <content:encoded><![CDATA[<p>[...] DTO&#8217;s Should Transfer Data, Not Entities &#8211; Davy Brion discusses a common Data Transfer Object anti-patern where the DTO starts to look a lot like the entity it is modelling, sharing some recommendations along they way. [...]</p> <img src="http://feeds.feedburner.com/~r/davybrioncomments/~4/ic0AAVBHe9c" height="1" width="1"/>]]></content:encoded> <feedburner:origLink>http://davybrion.com/blog/2012/02/dtos-should-transfer-data-not-entities/comment-page-1/#comment-104739</feedburner:origLink></item> <item><title>Comment on Think Twice Before You Map Entities To DTOs by DTO’s Should Transfer Data, Not Entities</title><link>http://feedproxy.google.com/~r/davybrioncomments/~3/-K13t4WmE-0/</link> <dc:creator>DTO’s Should Transfer Data, Not Entities</dc:creator> <pubDate>Mon, 20 Feb 2012 09:20:22 +0000</pubDate> <guid isPermaLink="false">http://davybrion.com/blog/?p=2607#comment-104738</guid> <description>[...] Populating those DTO's can then simply be done through straight SQL, a view, a stored procedure, a projection through your ORM, a map/reduce operation, or whatever else that makes sense. The point is that in most cases, you [...]</description> <content:encoded><![CDATA[<p>[...] Populating those DTO&#039;s can then simply be done through straight SQL, a view, a stored procedure, a projection through your ORM, a map/reduce operation, or whatever else that makes sense. The point is that in most cases, you [...]</p> <img src="http://feeds.feedburner.com/~r/davybrioncomments/~4/-K13t4WmE-0" height="1" width="1"/>]]></content:encoded> <feedburner:origLink>http://davybrion.com/blog/2010/09/think-twice-before-you-map-entities-to-dtos/comment-page-1/#comment-104738</feedburner:origLink></item> <item><title>Comment on DTO’s Should Transfer Data, Not Entities by Davy Brion</title><link>http://feedproxy.google.com/~r/davybrioncomments/~3/tXSEiGy4PH0/</link> <dc:creator>Davy Brion</dc:creator> <pubDate>Mon, 20 Feb 2012 09:10:00 +0000</pubDate> <guid isPermaLink="false">http://davybrion.com/blog/?p=3907#comment-104737</guid> <description>depends on the use case... if there's an order screen where they can see the general details of a selection of orders, and then select an order to see the orderlines, i'd just return an array of dto's containing the orderline data when it needs to be shownif an order has to be shown in its entirety, i'd go with 2 DTO's... one for the general order data, and another containing the data of all linesthere really is no one answer to that question... it all depends on the use case, which is the point of the post :)</description> <content:encoded><![CDATA[<p>depends on the use case&#8230; if there&#8217;s an order screen where they can see the general details of a selection of orders, and then select an order to see the orderlines, i&#8217;d just return an array of dto&#8217;s containing the orderline data when it needs to be shown</p><p>if an order has to be shown in its entirety, i&#8217;d go with 2 DTO&#8217;s&#8230; one for the general order data, and another containing the data of all lines</p><p>there really is no one answer to that question&#8230; it all depends on the use case, which is the point of the post <img
src='http://d18sni7re4ly7f.cloudfront.net/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /></p> <img src="http://feeds.feedburner.com/~r/davybrioncomments/~4/tXSEiGy4PH0" height="1" width="1"/>]]></content:encoded> <feedburner:origLink>http://davybrion.com/blog/2012/02/dtos-should-transfer-data-not-entities/comment-page-1/#comment-104737</feedburner:origLink></item> <item><title>Comment on DTO’s Should Transfer Data, Not Entities by Daniel Fernandes</title><link>http://feedproxy.google.com/~r/davybrioncomments/~3/X7uiAGoufKs/</link> <dc:creator>Daniel Fernandes</dc:creator> <pubDate>Mon, 20 Feb 2012 06:59:00 +0000</pubDate> <guid isPermaLink="false">http://davybrion.com/blog/?p=3907#comment-104736</guid> <description>Mmmh got confused by that guest posting</description> <content:encoded><![CDATA[<p>Mmmh got confused by that guest posting</p> <img src="http://feeds.feedburner.com/~r/davybrioncomments/~4/X7uiAGoufKs" height="1" width="1"/>]]></content:encoded> <feedburner:origLink>http://davybrion.com/blog/2012/02/dtos-should-transfer-data-not-entities/comment-page-1/#comment-104736</feedburner:origLink></item> <item><title>Comment on DTO’s Should Transfer Data, Not Entities by Blog</title><link>http://feedproxy.google.com/~r/davybrioncomments/~3/XDYPDU6-0lA/</link> <dc:creator>Blog</dc:creator> <pubDate>Mon, 20 Feb 2012 06:57:00 +0000</pubDate> <guid isPermaLink="false">http://davybrion.com/blog/?p=3907#comment-104735</guid> <description>Indeed.
DTO or in general message types should ideally be both meaningful and intentional.
The only reuse is through composition but that needs to be used carefully to avoid confusion.</description> <content:encoded><![CDATA[<p>Indeed.<br
/> DTO or in general message types should ideally be both meaningful and intentional.<br
/> The only reuse is through composition but that needs to be used carefully to avoid confusion.</p> <img src="http://feeds.feedburner.com/~r/davybrioncomments/~4/XDYPDU6-0lA" height="1" width="1"/>]]></content:encoded> <feedburner:origLink>http://davybrion.com/blog/2012/02/dtos-should-transfer-data-not-entities/comment-page-1/#comment-104735</feedburner:origLink></item> <item><title>Comment on DTO’s Should Transfer Data, Not Entities by Mrdec</title><link>http://feedproxy.google.com/~r/davybrioncomments/~3/_w3-mkfKJN4/</link> <dc:creator>Mrdec</dc:creator> <pubDate>Mon, 20 Feb 2012 00:26:00 +0000</pubDate> <guid isPermaLink="false">http://davybrion.com/blog/?p=3907#comment-104734</guid> <description>I'm interested in how You map an Order to DTOs. Reference from OrderDto to CustomerDto is not necessary, but how you map Order Lines?</description> <content:encoded><![CDATA[<p>I&#8217;m interested in how You map an Order to DTOs. Reference from OrderDto to CustomerDto is not necessary, but how you map Order Lines?</p> <img src="http://feeds.feedburner.com/~r/davybrioncomments/~4/_w3-mkfKJN4" height="1" width="1"/>]]></content:encoded> <feedburner:origLink>http://davybrion.com/blog/2012/02/dtos-should-transfer-data-not-entities/comment-page-1/#comment-104734</feedburner:origLink></item> <item><title>Comment on NHibernate and virtual methods/properties by Daniel Marbach</title><link>http://feedproxy.google.com/~r/davybrioncomments/~3/-GWmh-6kl_8/</link> <dc:creator>Daniel Marbach</dc:creator> <pubDate>Sun, 19 Feb 2012 23:41:00 +0000</pubDate> <guid isPermaLink="false">http://davybrion.com/blog/?p=123#comment-104733</guid> <description>Hy
I know this post is a little old. But just wanted to mention that there is a post sharp static proxy extension for NHibernate which removes the need to declare virtual members.See:  https://github.com/Zoubi/NHibernate.StaticProxy</description> <content:encoded><![CDATA[<p>Hy<br
/> I know this post is a little old. But just wanted to mention that there is a post sharp static proxy extension for NHibernate which removes the need to declare virtual members.</p><p>See:  <a
href="https://github.com/Zoubi/NHibernate.StaticProxy" rel="nofollow">https://github.com/Zoubi/NHibernate.StaticProxy</a></p> <img src="http://feeds.feedburner.com/~r/davybrioncomments/~4/-GWmh-6kl_8" height="1" width="1"/>]]></content:encoded> <feedburner:origLink>http://davybrion.com/blog/2008/05/nhibernate-and-virtual-methodsproperties/comment-page-1/#comment-104733</feedburner:origLink></item> <item><title>Comment on Why You Shouldn’t Expose Your Entities Through Your Services by DTO’s Should Transfer Data, Not Entities</title><link>http://feedproxy.google.com/~r/davybrioncomments/~3/YeK0ASBQNho/</link> <dc:creator>DTO’s Should Transfer Data, Not Entities</dc:creator> <pubDate>Sun, 19 Feb 2012 19:32:21 +0000</pubDate> <guid isPermaLink="false">http://davybrion.com/blog/?p=2318#comment-104732</guid> <description>[...] making those entities available outside of the service boundary for reasons that I've discussed earlier. That doesn't mean that you should go the entity-mimicking-DTO-route though. In fact, [...]</description> <content:encoded><![CDATA[<p>[...] making those entities available outside of the service boundary for reasons that I&#039;ve discussed earlier. That doesn&#039;t mean that you should go the entity-mimicking-DTO-route though. In fact, [...]</p> <img src="http://feeds.feedburner.com/~r/davybrioncomments/~4/YeK0ASBQNho" height="1" width="1"/>]]></content:encoded> <feedburner:origLink>http://davybrion.com/blog/2010/05/why-you-shouldnt-expose-your-entities-through-your-services/comment-page-1/#comment-104732</feedburner:origLink></item> <item><title>Comment on Storing data in the HttpSession by MN.BS</title><link>http://feedproxy.google.com/~r/davybrioncomments/~3/syCJlpo6XV0/</link> <dc:creator>MN.BS</dc:creator> <pubDate>Sat, 18 Feb 2012 18:35:00 +0000</pubDate> <guid isPermaLink="false">http://davybrion.com/blog/?p=124#comment-104731</guid> <description>Thank you for sharing this knowledge, i was looking for this answer for a very long time. Probably i was not searching with the right key word.Could you give one example how to access HttpSession with some kind of class.</description> <content:encoded><![CDATA[<p>Thank you for sharing this knowledge, i was looking for this answer for a very long time. Probably i was not searching with the right key word.</p><p>Could you give one example how to access HttpSession with some kind of class.</p> <img src="http://feeds.feedburner.com/~r/davybrioncomments/~4/syCJlpo6XV0" height="1" width="1"/>]]></content:encoded> <feedburner:origLink>http://davybrion.com/blog/2008/05/storing-data-in-the-httpsession/comment-page-1/#comment-104731</feedburner:origLink></item> <item><title>Comment on Using SQL Functions in Criteria Restrictions by Rizwan Akram</title><link>http://feedproxy.google.com/~r/davybrioncomments/~3/bqbijGIG6Rc/</link> <dc:creator>Rizwan Akram</dc:creator> <pubDate>Wed, 15 Feb 2012 13:11:00 +0000</pubDate> <guid isPermaLink="false">http://davybrion.com/blog/?p=1348#comment-104710</guid> <description>how to use function's parameters like TO_CHAR(date_column, 'dd-mon-yyyy'), how I supply 'dd-mon-yyyy' as parameter in the example?</description> <content:encoded><![CDATA[<p>how to use function&#8217;s parameters like TO_CHAR(date_column, &#8216;dd-mon-yyyy&#8217;), how I supply &#8216;dd-mon-yyyy&#8217; as parameter in the example?</p> <img src="http://feeds.feedburner.com/~r/davybrioncomments/~4/bqbijGIG6Rc" height="1" width="1"/>]]></content:encoded> <feedburner:origLink>http://davybrion.com/blog/2009/04/using-sql-functions-in-criteria-restrictions/comment-page-1/#comment-104710</feedburner:origLink></item> <item><title>Comment on Of Course NHibernate Is Slow When You Use It Incorrectly by 最想要的实体框架功能 | chainding</title><link>http://feedproxy.google.com/~r/davybrioncomments/~3/TFqQgb5Umx8/</link> <dc:creator>最想要的实体框架功能 | chainding</dc:creator> <pubDate>Mon, 13 Feb 2012 03:20:37 +0000</pubDate> <guid isPermaLink="false">http://davybrion.com/blog/?p=1511#comment-104700</guid> <description>[...] 对于业务线（LOB，即Line of Business）应用程序而言，批量创建/更新/删除是一关键功能，而在大多数对象关系映射（ORM）工具中大概都没有此功能。像DBase和PowerBuilder等一些早期编程语言在几十年前已有此种能力。一些人甚至提出，对象关系映射（ORM）工具不适用于大容量事务，而更适合于在线交易处理（OLTP）及非批处理操作。 [...]</description> <content:encoded><![CDATA[<p>[...] 对于业务线（LOB，即Line of Business）应用程序而言，批量创建/更新/删除是一关键功能，而在大多数对象关系映射（ORM）工具中大概都没有此功能。像DBase和PowerBuilder等一些早期编程语言在几十年前已有此种能力。一些人甚至提出，对象关系映射（ORM）工具不适用于大容量事务，而更适合于在线交易处理（OLTP）及非批处理操作。 [...]</p> <img src="http://feeds.feedburner.com/~r/davybrioncomments/~4/TFqQgb5Umx8" height="1" width="1"/>]]></content:encoded> <feedburner:origLink>http://davybrion.com/blog/2009/08/of-course-nhibernate-is-slow-when-you-use-it-incorrectly/comment-page-1/#comment-104700</feedburner:origLink></item> <item><title>Comment on Hosting A Node.js Site Through Apache by Aloofpanda</title><link>http://feedproxy.google.com/~r/davybrioncomments/~3/I3DqmPN_Myw/</link> <dc:creator>Aloofpanda</dc:creator> <pubDate>Sun, 12 Feb 2012 05:42:00 +0000</pubDate> <guid isPermaLink="false">http://davybrion.com/blog/?p=3869#comment-104696</guid> <description>Why do you still want to use Apache? Its slow and only has a max concurrent connection of 20k.</description> <content:encoded><![CDATA[<p>Why do you still want to use Apache? Its slow and only has a max concurrent connection of 20k.</p> <img src="http://feeds.feedburner.com/~r/davybrioncomments/~4/I3DqmPN_Myw" height="1" width="1"/>]]></content:encoded> <feedburner:origLink>http://davybrion.com/blog/2012/01/hosting-a-node-js-site-through-apache/comment-page-1/#comment-104696</feedburner:origLink></item> <item><title>Comment on Everybody Wins In The Certification Game by Nathan Smith</title><link>http://feedproxy.google.com/~r/davybrioncomments/~3/7UdRVBnV2BU/</link> <dc:creator>Nathan Smith</dc:creator> <pubDate>Fri, 10 Feb 2012 21:17:00 +0000</pubDate> <guid isPermaLink="false">http://davybrion.com/blog/2010/03/everybody-wins-in-the-certification-game/#comment-104686</guid> <description>That's not accurate. You did not HAVE to get certified. While Avanade's publicly stated policy is that you need a certification in a year, the fact of the matter is that it's not enforced. It may be used as an aid to construct an improvement plan to get someone fired that you know can't complete it, but that policy was laughable. At best, 10% of people in the Desert region at the time had a premier ceritifcation, if that. In fact, I'm pretty sure it was just two people (me being one of them).</description> <content:encoded><![CDATA[<p>That&#8217;s not accurate. You did not HAVE to get certified. While Avanade&#8217;s publicly stated policy is that you need a certification in a year, the fact of the matter is that it&#8217;s not enforced. It may be used as an aid to construct an improvement plan to get someone fired that you know can&#8217;t complete it, but that policy was laughable. At best, 10% of people in the Desert region at the time had a premier ceritifcation, if that. In fact, I&#8217;m pretty sure it was just two people (me being one of them).</p> <img src="http://feeds.feedburner.com/~r/davybrioncomments/~4/7UdRVBnV2BU" height="1" width="1"/>]]></content:encoded> <feedburner:origLink>http://davybrion.com/blog/2010/03/everybody-wins-in-the-certification-game/comment-page-1/#comment-104686</feedburner:origLink></item> <item><title>Comment on The Non-Typical .NET Job by Stuart</title><link>http://feedproxy.google.com/~r/davybrioncomments/~3/-FKkEXdA5Pg/</link> <dc:creator>Stuart</dc:creator> <pubDate>Fri, 10 Feb 2012 11:30:00 +0000</pubDate> <guid isPermaLink="false">http://davybrion.com/blog/2011/10/the-non-typical-net-job/#comment-104685</guid> <description>@9599ffd81cd03f5c34610ce13caf1ca3:disqus  - yeah it has been addressed already but no steps has been take yet to fix it.http://www.tatvasoft.co.uk/microsoft-dot-net-development.php</description> <content:encoded><![CDATA[<p>@9599ffd81cd03f5c34610ce13caf1ca3:disqus  &#8211; yeah it has been addressed already but no steps has been take yet to fix it.</p><p><a
href="http://www.tatvasoft.co.uk/microsoft-dot-net-development.php" rel="nofollow">http://www.tatvasoft.co.uk/microsoft-dot-net-development.php</a></p> <img src="http://feeds.feedburner.com/~r/davybrioncomments/~4/-FKkEXdA5Pg" height="1" width="1"/>]]></content:encoded> <feedburner:origLink>http://davybrion.com/blog/2011/10/the-non-typical-net-job/comment-page-1/#comment-104685</feedburner:origLink></item> </channel> </rss><!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk: basic
Page Caching using disk: enhanced
Database Caching 5/42 queries in 0.023 seconds using disk: basic
Object Caching 650/684 objects using disk: basic
Content Delivery Network via Amazon Web Services: CloudFront: d18sni7re4ly7f.cloudfront.net

Served from: davybrion.com @ 2012-02-22 18:40:48 -->

