<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/css" href="/stylesheets/rss.css"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/">
  <channel>
    <title>Object Mentor Blog: Is the Supremacy of Object-Oriented Programming Over?</title>
    <link>http://blog.objectmentor.com/articles/2009/04/20/is-the-supremacy-of-object-oriented-programming-over</link>
    <language>en-us</language>
    <ttl>40</ttl>
    <description></description>
    <item>
      <title>Is the Supremacy of Object-Oriented Programming Over?</title>
      <description>&lt;p&gt;I never expected to see this. When I started my career, Object-Oriented Programming (OOP) was going mainstream. For many problems, it was and still is a natural way to &lt;em&gt;modularize&lt;/em&gt; an application. It grew to (mostly) rule the world. Now it seems that the supremacy of objects may be coming to an end, of sorts.&lt;/p&gt;


	&lt;p&gt;I say this because of recent trends in our industry and my hands-on experience with many enterprise and Internet applications, mostly at client sites. You might be thinking that I&amp;#8217;m referring to the mainstream breakout of Functional Programming (FP), which is happening right now. The &lt;em&gt;killer app&lt;/em&gt; for FP is concurrency. We&amp;#8217;ve all heard that more and more applications must be concurrent these days (which doesn&amp;#8217;t necessarily mean multithreaded). When we remove side effects from functions and disallow mutable variables, our concurrency issues largely go away. The success of the Actor model of concurrency, as used to great effect in &lt;a href="http://erlang.org/"&gt;Erlang&lt;/a&gt;, is one example of a functional-style approach. The rise of &lt;a href="http://labs.google.com/papers/mapreduce.html"&gt;map-reduce&lt;/a&gt; computations is another example of a functional technique going mainstream. A related phenomenon is the emergence of key-value store databases, like &lt;a href="http://labs.google.com/papers/bigtable.html"&gt;BigTable&lt;/a&gt; and &lt;a href="http://couchdb.apache.org/"&gt;CouchDB&lt;/a&gt;, is a reaction to the overhead of &lt;span class="caps"&gt;SQL&lt;/span&gt; databases, when the performance cost of the Relational Model isn&amp;#8217;t justified. These databases are typically managed with functional techniques, like map-reduce.&lt;/p&gt;


	&lt;p&gt;But actually, I&amp;#8217;m thinking of something else. Hybrid languages like &lt;a href="http://scala-lang.org"&gt;Scala&lt;/a&gt;, &lt;a href="http://research.microsoft.com/en-us/um/cambridge/projects/fsharp/"&gt;F#&lt;/a&gt;, and &lt;a href="http://caml.inria.fr/ocaml/index.en.html"&gt;OCaml&lt;/a&gt; have demonstrated that &lt;span class="caps"&gt;OOP&lt;/span&gt; and FP can complement each other. In a given context, they let you use the idioms that make the most sense for your particular needs. For example, immutable &amp;#8220;objects&amp;#8221; and functional-style pattern matching is a killer combination.&lt;/p&gt;


	&lt;p&gt;What&amp;#8217;s really got me thinking that objects are losing their supremacy is a very mundane problem. It&amp;#8217;s a problem that isn&amp;#8217;t new, but like concurrency, it just seems to grow worse and worse.&lt;/p&gt;


	&lt;p&gt;The problem is that there is never a stable, clear object model in applications any more. What constitutes a &lt;code&gt;BankAccount&lt;/code&gt; or &lt;code&gt;Customer&lt;/code&gt; or whatever is fluid. It changes with each iteration. It&amp;#8217;s different from one subsystem to another even within the &lt;em&gt;same&lt;/em&gt; iteration! I see a lot of misfit object models that try to be all things to all people, so they are bloated and the teams that own them can&amp;#8217;t be agile. The other extreme is &amp;#8220;balkanization&amp;#8221;, where each subsystem has its own model. We tend to think the latter case is bad. However, is lean and mean, but non-standard, worse than bloated, yet standardized?&lt;/p&gt;


	&lt;p&gt;The fact is, for a lot of these applications, it&amp;#8217;s just data. The ceremony of object wrappers doesn&amp;#8217;t carry its weight. Just put the data in a hash map (or a list if you don&amp;#8217;t need the bits &amp;#8220;labeled&amp;#8221;) and then process the collection with your iterate, map, and reduce functions. This may sound heretical, but how much Java code could you delete today if you replaced it with a stored procedure?&lt;/p&gt;


	&lt;p&gt;These alternatives won&amp;#8217;t work for all situations, of course. Sometimes polymorphism carries its weight. Unfortunately, it&amp;#8217;s too tempting to use objects as if more is always better, like &lt;a href="http://www.google.com/search?client=safari&amp;#38;rls=en-us&amp;#38;q=more+cowbell&amp;#38;ie=UTF-8&amp;#38;oe=UTF-8"&gt;cow bell&lt;/a&gt;.&lt;/p&gt;


	&lt;p&gt;So what would replace objects for supremacy? Well, my point is really that there is no one true way. We&amp;#8217;ve led ourselves down the wrong path. Or, to be more precise, we followed a single, very good path, but we didn&amp;#8217;t know when to take a different path.&lt;/p&gt;


	&lt;p&gt;Increasingly, the best, most nimble designs I see use objects with a light touch; shallow hierarchies, small objects that try to obey the Single Responsibility Principle, composition rather than inheritance, &lt;em&gt;etc.&lt;/em&gt; Coupled with a liberal use of functional idioms (like iterate, map, and reduce), these designs strike the right balance between the protection of data hiding &lt;em&gt;vs.&lt;/em&gt; openness for easy processing. By the way, you can build these designs in almost any of our popular languages. Some languages make this easier than others, of course.&lt;/p&gt;


	&lt;p&gt;Despite the hype, I think &lt;a href="http://www.martinfowler.com/bliki/DomainSpecificLanguage.html"&gt;Domain-Specific Languages&lt;/a&gt; (DSLs) are also very important and worth mentioning in this context. (&lt;a href="http://en.wikipedia.org/wiki/Language-oriented_programming"&gt;Language-Oriented Programming&lt;/a&gt; &amp;#8211; &lt;span class="caps"&gt;LOP&lt;/span&gt; &amp;#8211; generalizes these ideas). It&amp;#8217;s true that people drink the &lt;span class="caps"&gt;DSL&lt;/span&gt; Kool-Aid and create a mess. However, when used appropriately, DSLs reduce a program to its &lt;a href="http://en.wikipedia.org/wiki/Essential_complexity"&gt;essential complexity&lt;/a&gt;, while hiding and modularizing the &lt;a href="http://en.wikipedia.org/wiki/Accidental_complexity"&gt;accidental complexity&lt;/a&gt; of the implementation. When it becomes easy to write a user story in code, we won&amp;#8217;t obsess as much over the details of a &lt;code&gt;BankAccount&lt;/code&gt; as they change from one story to another. We will embrace more flexible data persistence models, too.&lt;/p&gt;


	&lt;p&gt;Back to &lt;span class="caps"&gt;OOP&lt;/span&gt; and FP, I see the potential for their combination to lead to a rebirth of the old vision of &lt;em&gt;software components&lt;/em&gt;, but that&amp;#8217;s a topic for another blog post.&lt;/p&gt;</description>
      <pubDate>Mon, 20 Apr 2009 21:45:00 -0500</pubDate>
      <guid isPermaLink="false">urn:uuid:69ac398f-694c-4e0b-bc13-a8765608f6cf</guid>
      <author>Dean Wampler</author>
      <link>http://blog.objectmentor.com/articles/2009/04/20/is-the-supremacy-of-object-oriented-programming-over</link>
      <category>Dean's Deprecations</category>
      <category>Agile Methods</category>
      <category>Design Principles</category>
      <category>Clean Code</category>
      <category>design</category>
      <category>OOP</category>
      <category>FP</category>
      <category>polyglot</category>
      <category>Polyparadigm</category>
      <category>Scala</category>
      <category>F</category>
      <category>OCaml</category>
      <category>MapReduce</category>
      <category>BigTable</category>
      <category>CouchDB</category>
      <category>SQL</category>
      <category>dsl</category>
      <category>LOP</category>
    </item>
    <item>
      <title>"Is the Supremacy of Object-Oriented Programming Over?" by Straight Valve</title>
      <description>&lt;p&gt;&lt;a href="http://www.fullrain.cn/products_info/Straight-Valve-160371.html" rel="nofollow"&gt;Straight Valve&lt;/a&gt;&lt;/p&gt;</description>
      <pubDate>Sun, 05 Feb 2012 20:45:52 -0600</pubDate>
      <guid isPermaLink="false">urn:uuid:143d7b42-60ab-418b-8284-73104869debd</guid>
      <link>http://blog.objectmentor.com/articles/2009/04/20/is-the-supremacy-of-object-oriented-programming-over#comment-201851</link>
    </item>
    <item>
      <title>"Is the Supremacy of Object-Oriented Programming Over?" by Rosuvastatin Heart Failures</title>
      <description>&lt;p&gt;Absolutely great topic, thanks so much for this.&lt;/p&gt;</description>
      <pubDate>Mon, 30 Jan 2012 11:02:42 -0600</pubDate>
      <guid isPermaLink="false">urn:uuid:08a7009a-ea17-4036-9acb-f32dd630acde</guid>
      <link>http://blog.objectmentor.com/articles/2009/04/20/is-the-supremacy-of-object-oriented-programming-over#comment-200253</link>
    </item>
    <item>
      <title>"Is the Supremacy of Object-Oriented Programming Over?" by san antonio cosmetic dentists</title>
      <description>&lt;p&gt;I am very enjoyed for this blog. Its an informative topic. It help me very much to solve some problems. Its opportunity are so fantastic and working style so speedy. I think it may be help all of you. Thanks a lot for enjoying this beauty blog with me. I am appreciating it very much! Looking forward to another great blog. Good luck to the author! all the best!&lt;/p&gt;</description>
      <pubDate>Wed, 25 Jan 2012 13:08:38 -0600</pubDate>
      <guid isPermaLink="false">urn:uuid:b7929bae-d059-4953-9fee-5bc97f4a76ed</guid>
      <link>http://blog.objectmentor.com/articles/2009/04/20/is-the-supremacy-of-object-oriented-programming-over#comment-199188</link>
    </item>
    <item>
      <title>"Is the Supremacy of Object-Oriented Programming Over?" by houston dentist</title>
      <description>&lt;p&gt;Considerably, this post is really the sweetest on this notable topic. I harmonise with your tongue.conclusions and will thirstily look forward to your incoming updates. Saying thanks will not just be sufficient, for the phenomenal clarity in your writing. I will directly grab your rss feed to stay informed of any updates. Admirable work and much success in your business dealings!  Please excuse my poor English as it is not my first .&lt;/p&gt;</description>
      <pubDate>Wed, 25 Jan 2012 12:58:24 -0600</pubDate>
      <guid isPermaLink="false">urn:uuid:71100d2a-3235-43bd-9da3-2101c87ce3e4</guid>
      <link>http://blog.objectmentor.com/articles/2009/04/20/is-the-supremacy-of-object-oriented-programming-over#comment-199186</link>
    </item>
    <item>
      <title>"Is the Supremacy of Object-Oriented Programming Over?" by Forfait mobile</title>
      <description>&lt;p&gt;Engagement buy cartier love bracelets is very auspicious and all of us want this moment to be highly memorable and unforgettable.For this purpose,one has to buy highly attractive cartier love necklaces of her choice.Since,many couples prefer to go to buy the cartier diamond necklace online store for gifting the same on the day of engagement so buying rings of her choice is not difficult but both have to look budget which usually create confusion.Sometimes you choose the cartier but that does not fit in your budget so while see ring you must the ring of your budget.So during choosing diamond engagement rings for your beloved must look at every aspect of cartier rings.&lt;/p&gt;</description>
      <pubDate>Wed, 25 Jan 2012 07:38:56 -0600</pubDate>
      <guid isPermaLink="false">urn:uuid:ac8409d4-0d2d-41d0-8d74-54657da0a0ea</guid>
      <link>http://blog.objectmentor.com/articles/2009/04/20/is-the-supremacy-of-object-oriented-programming-over#comment-199163</link>
    </item>
    <item>
      <title>"Is the Supremacy of Object-Oriented Programming Over?" by digital led displays</title>
      <description>&lt;p&gt;No. I really think the supremacy of object oriented programming era is not over.But I really love your thought and way of sharing.Really nice content with great explanation.&lt;/p&gt;</description>
      <pubDate>Thu, 19 Jan 2012 01:04:11 -0600</pubDate>
      <guid isPermaLink="false">urn:uuid:7f6a1716-685d-4107-8790-82a840059a8c</guid>
      <link>http://blog.objectmentor.com/articles/2009/04/20/is-the-supremacy-of-object-oriented-programming-over#comment-198552</link>
    </item>
    <item>
      <title>"Is the Supremacy of Object-Oriented Programming Over?" by e1dorado</title>
      <description>&lt;p&gt;&amp;#8220;I will eat a week&amp;#8217;s pay if OOP is still in vogue in 2015&amp;#8221;, from:
&lt;a href="http://reocities.com/tablizer/oopbad.htm" rel="nofollow"&gt;http://reocities.com/tablizer/oopbad.htm&lt;/a&gt; . 
 That dude was right. About 5 years ago I said he&amp;#8217;s a complete idiot.&lt;/p&gt;</description>
      <pubDate>Wed, 21 Dec 2011 13:33:54 -0600</pubDate>
      <guid isPermaLink="false">urn:uuid:08a3daaf-e244-4900-91d1-936ea36cc75f</guid>
      <link>http://blog.objectmentor.com/articles/2009/04/20/is-the-supremacy-of-object-oriented-programming-over#comment-190235</link>
    </item>
    <item>
      <title>"Is the Supremacy of Object-Oriented Programming Over?" by tv show</title>
      <description>&lt;p&gt;thanks a lot. as always great stuff!&lt;/p&gt;</description>
      <pubDate>Sat, 26 Nov 2011 09:59:32 -0600</pubDate>
      <guid isPermaLink="false">urn:uuid:18aaa8d0-f4a1-4786-bb9f-d6468ada0dbf</guid>
      <link>http://blog.objectmentor.com/articles/2009/04/20/is-the-supremacy-of-object-oriented-programming-over#comment-178751</link>
    </item>
    <item>
      <title>"Is the Supremacy of Object-Oriented Programming Over?" by Louis Vuitton  bags on sale</title>
      <description>&lt;p&gt;Hopefully with the tips above, you would not go wrong in choosing the authentic . Well, as one of the most professional  online supplier, PandaHall providing you with plenty choices allow you to design and wear a unique piece of Pandora jewelry to expresses your style and image.&lt;a href="http://www.bagsales.org/" rel="nofollow"&gt;Louis Vuitton  bags on sale&lt;/a&gt;&lt;a href="http://www.bagsales.org/" rel="nofollow"&gt;charming Louis Vuitton  wallet&lt;/a&gt;&lt;a href="http://www.bagsales.org/Louis Vuitton -Women-Bags-Handbags_2_1.htm" rel="nofollow"&gt;Louis Vuitton  Women Handbags&lt;/a&gt;&lt;a href="http://www.bagsales.org/Louis Vuitton -Women-Wallets-Coin-Purses_3_1.htm" rel="nofollow"&gt;Louis Vuitton  Women Wallets&lt;/a&gt;&lt;a href="http://www.bagsales.org/Louis Vuitton -Men-Wallets-Coin-Purses_1_1.htm" rel="nofollow"&gt;Louis Vuitton  Wallets for wallts&lt;/a&gt;&lt;/p&gt;</description>
      <pubDate>Sun, 20 Nov 2011 23:46:05 -0600</pubDate>
      <guid isPermaLink="false">urn:uuid:e69bfae8-d176-4ce6-b6ce-bee6e9b489fd</guid>
      <link>http://blog.objectmentor.com/articles/2009/04/20/is-the-supremacy-of-object-oriented-programming-over#comment-176090</link>
    </item>
    <item>
      <title>"Is the Supremacy of Object-Oriented Programming Over?" by tissot gents watches</title>
      <description>&lt;p&gt;Thank you for sharing this post.Now i introduct our website to you, and in this website you can find some very good watches .&lt;a href="http://www.timeadmin.org/" rel="nofollow"&gt;tissot gents watches&lt;/a&gt;&lt;a href="http://www.timeadmin.org/" rel="nofollow"&gt;tissot ladies watches&lt;/a&gt;&lt;a href="http://www.timeadmin.org/" rel="nofollow"&gt;tissot alarm watches&lt;/a&gt;&lt;a href="http://www.timeadmin.org/Tissot-Gents-Strap-Watches_6_1.htm" rel="nofollow"&gt;Tissot Gents Strap Watches &lt;/a&gt;&lt;a href="http://www.timeadmin.org/Tissot-Chronograph-Watches_2_1.htm" rel="nofollow"&gt;Tissot Chronograph Watches &lt;/a&gt;&lt;a href="http://www.timeadmin.org/Tissot-Ladies-Classic-Watches_15_1.htm" rel="nofollow"&gt;Tissot Ladies Classic Watches &lt;/a&gt;&lt;a href="http://www.timeadmin.org/Tissot-Ladies-Fashion-Watches_17_1.htm" rel="nofollow"&gt;Tissot Ladies Fashion Watches &lt;/a&gt;&lt;a href="http://www.timeadmin.org/Tissot-Alarm-Watches_24_1.htm" rel="nofollow"&gt;Tissot Alarm Watches &lt;/a&gt;&lt;a href="http://www.timeadmin.org/Tissot-Diamond-Watches_30_1.htm" rel="nofollow"&gt;Tissot Diamond Watches &lt;/a&gt;&lt;a href="http://www.timeadmin.org/Tissot-Divers-Watches_32_1.htm" rel="nofollow"&gt;Tissot Divers Watches &lt;/a&gt;&lt;/p&gt;</description>
      <pubDate>Sun, 20 Nov 2011 23:45:47 -0600</pubDate>
      <guid isPermaLink="false">urn:uuid:a3e74f96-c430-46bd-b057-04bc1c2224d0</guid>
      <link>http://blog.objectmentor.com/articles/2009/04/20/is-the-supremacy-of-object-oriented-programming-over#comment-176089</link>
    </item>
    <item>
      <title>"Is the Supremacy of Object-Oriented Programming Over?" by Thomas Sabo jewerly</title>
      <description>&lt;p&gt;make sure you are purchasing the genuine thing. Always go to a trusted jewelry and if you are buying online please check the track history of the company first. Always check at a genuine Thomas Sabo jewerly store locator for &lt;a href="http://www.beautyjewelry.org/Bracelets_4_1.htm" rel="nofollow"&gt;Thomas Sabo Bracelets&lt;/a&gt;&lt;a href="http://www.beautyjewelry.org/Thomas-Sabo-Earrings_8_1.htm" rel="nofollow"&gt;Thomas Sabo Earrings&lt;/a&gt;&lt;a href="http://www.beautyjewelry.org/Thomas-Sabo-Necklaces_21_1.htm" rel="nofollow"&gt;Thomas Sabo Necklaces&lt;/a&gt;&lt;a href="http://www.beautyjewelry.org/Thomas-Sabo-Asia_2_1.htm" rel="nofollow"&gt;Thomas Sabo Asia&lt;/a&gt;&lt;a href="http://www.beautyjewelry.org/Thomas-Sabo-Birthstones_3_1.htm" rel="nofollow"&gt;Thomas Sabo Birthstones&lt;/a&gt;&lt;a href="http://www.beautyjewelry.org/Thomas-Sabo-Disney_7_1.htm" rel="nofollow"&gt;Thomas Sabo Disney&lt;/a&gt;&lt;/p&gt;</description>
      <pubDate>Sun, 20 Nov 2011 23:23:38 -0600</pubDate>
      <guid isPermaLink="false">urn:uuid:ce47f980-994e-410c-8f64-5d24f1e9f9f8</guid>
      <link>http://blog.objectmentor.com/articles/2009/04/20/is-the-supremacy-of-object-oriented-programming-over#comment-176085</link>
    </item>
    <item>
      <title>"Is the Supremacy of Object-Oriented Programming Over?" by replica cartier love bangles in 14karats gold</title>
      <description>&lt;p&gt;Engagement buy cartier love bracelets is very auspicious and all of us want this moment to be highly memorable and unforgettable.For this purpose,one has to buy highly attractive cartier love necklaces of her choice.Since,many couples prefer to go to buy the cartier diamond necklace online store for gifting the same on the day of engagement so buying rings of her choice is not difficult but both have to look budget which usually create confusion.Sometimes you choose the cartier but that does not fit in your budget so while see ring you must the ring of your budget.So during choosing diamond engagement rings for your beloved must look at every aspect of cartier rings for getting the best one.&lt;/p&gt;</description>
      <pubDate>Tue, 15 Nov 2011 20:02:44 -0600</pubDate>
      <guid isPermaLink="false">urn:uuid:c9706961-0061-4926-a7f8-bfe17f0dcccd</guid>
      <link>http://blog.objectmentor.com/articles/2009/04/20/is-the-supremacy-of-object-oriented-programming-over#comment-173476</link>
    </item>
    <item>
      <title>"Is the Supremacy of Object-Oriented Programming Over?" by Cheap Beats By Dre</title>
      <description>&lt;p&gt;bus today, make them &lt;a href="http://www.cheap-monsterbeatsbydrdre.co.uk" rel="nofollow"&gt;Cheap Beats By Dre&lt;/a&gt;miserable. One said: &amp;#8220;I ??am really unlucky it! I was packed &lt;a href="http://www.cheap-monsterbeatsbydrdre.co.uk/beats-by-drdre-studio-c-89.html" rel="nofollow"&gt;Beats By Dre Studio&lt;/a&gt;in the car to flow production.&amp;#8221; One said: &amp;#8220;I ??called &lt;a href="http://www.cheap-monsterbeatsbydrdre.co.uk/beats-by-drdre-solo-c-91.html" rel="nofollow"&gt;Beats By Dre Solo&lt;/a&gt;it bad luck! In I was packed car are pregnant.&lt;a href="http://www.cheap-monsterbeatsbydrdre.co.uk/beats-by-drdre-pro-c-90.html" rel="nofollow"&gt;Beats By Dre Pro&lt;/a&gt;
Classic joke: I TVU
A university student&lt;a href="http://www.drdrebeatsheadphones-australia.com" rel="nofollow"&gt;beats by dr dre&lt;/a&gt; caught by the enemy, the enemy tied him at the poles,&lt;a href="http://www.drdrebeatsheadphones-australia.com/justbeats-solo-purple-onear-headphones-with-controltalk-p-234.html" rel="nofollow"&gt;just beats solo headphones purple&lt;/a&gt; and then asked him: say, where are you? You do not say it electrocuted! S&lt;a href="http://www.drdrebeatsheadphones-australia.com/cheap-drdre-beats-studio-limited-edition-headphones-blackyellow-p-185.html" rel="nofollow"&gt;cheap dr.dre beats studio headphones balck/yellow&lt;/a&gt;tudents back to the enemy a word, the result was electrocuted, he said: I am TVU.&lt;a href="http://www.drdrebeatsheadphones-australia.com/cheap-beats-by-drdre-pro-performance-professional-headphones-white-p-192.html" rel="nofollow"&gt;Hot sale beats by dr dre pro  headphones&lt;/a&gt;&lt;/p&gt;</description>
      <pubDate>Tue, 15 Nov 2011 01:41:48 -0600</pubDate>
      <guid isPermaLink="false">urn:uuid:f8333ce5-eca4-4274-a938-3c4765b7648c</guid>
      <link>http://blog.objectmentor.com/articles/2009/04/20/is-the-supremacy-of-object-oriented-programming-over#comment-172922</link>
    </item>
    <item>
      <title>"Is the Supremacy of Object-Oriented Programming Over?" by Austin Computer Repair</title>
      <description>&lt;p&gt;Yeah, I agree with this. OOP seems to be facing its end, but it should not be like that. It was mainstream, it needed to be preserved, who knows which knowledge can help us&lt;/p&gt;</description>
      <pubDate>Mon, 07 Nov 2011 23:37:57 -0600</pubDate>
      <guid isPermaLink="false">urn:uuid:c91fd927-c546-4169-8d0f-d580462ef872</guid>
      <link>http://blog.objectmentor.com/articles/2009/04/20/is-the-supremacy-of-object-oriented-programming-over#comment-169611</link>
    </item>
    <item>
      <title>"Is the Supremacy of Object-Oriented Programming Over?" by Austin Computer Repair</title>
      <description>&lt;p&gt;Yeah, I agree with this. OOP seems to be facing its end, but it should not be like that. It was mainstream, it needed to be preserved, who knows which knowledge can help us&lt;/p&gt;</description>
      <pubDate>Mon, 07 Nov 2011 23:35:42 -0600</pubDate>
      <guid isPermaLink="false">urn:uuid:805950a2-a8fb-4e15-9baf-9eab112fc361</guid>
      <link>http://blog.objectmentor.com/articles/2009/04/20/is-the-supremacy-of-object-oriented-programming-over#comment-169606</link>
    </item>
    <item>
      <title>"Is the Supremacy of Object-Oriented Programming Over?" by   cartier replica necklaces</title>
      <description>&lt;p&gt;If we want to reduce opioid addiction, it might help to try to figure out why so many people&lt;a &gt;cartier replica necklaces &lt;/a rel="nofollow"&gt;feel the need to escape. And if we want to reduce opioid overdose, it might make sense to distribute the antidote, naloxone (Narcan), with prescriptions and make it available over the counter. Unlike efforts to restrict prescribing, this won&amp;#8217;t hamper appropriate pain care, and unlike rhetoric about epidemics &lt;a href="http://www.cartiersupply.com/Cartier-Necklaces_35_1.htm" rel="nofollow"&gt;cartier replica necklaces&lt;/a&gt;and associated crackdowns on supply, there&amp;#8217;s actually a growing body of literature suggesting that Narcan saves lives.&lt;/p&gt;</description>
      <pubDate>Thu, 03 Nov 2011 22:36:06 -0500</pubDate>
      <guid isPermaLink="false">urn:uuid:31f461a9-be67-45f8-83c7-67a59694e3cd</guid>
      <link>http://blog.objectmentor.com/articles/2009/04/20/is-the-supremacy-of-object-oriented-programming-over#comment-167873</link>
    </item>
    <item>
      <title>"Is the Supremacy of Object-Oriented Programming Over?" by www.crafts-work.com</title>
      <description>&lt;p&gt;Wow~hard to say&lt;/p&gt;


	&lt;p&gt;&lt;a href="http://www.crafts-work.com/products_info/Porcelain-Candy-Plate-Flower-Design-151870.html" rel="nofollow"&gt;Porcelain Candy Plate Flower Design&lt;/a&gt;&lt;/p&gt;</description>
      <pubDate>Wed, 02 Nov 2011 23:02:42 -0500</pubDate>
      <guid isPermaLink="false">urn:uuid:4fcb6fa3-0248-4e2b-8aaa-2c203a5fbfed</guid>
      <link>http://blog.objectmentor.com/articles/2009/04/20/is-the-supremacy-of-object-oriented-programming-over#comment-167224</link>
    </item>
    <item>
      <title>"Is the Supremacy of Object-Oriented Programming Over?" by Designstoria</title>
      <description>&lt;p&gt;So do I.&lt;/p&gt;</description>
      <pubDate>Sun, 30 Oct 2011 04:22:44 -0500</pubDate>
      <guid isPermaLink="false">urn:uuid:81a21608-07b2-4373-b3e7-7026e97541dc</guid>
      <link>http://blog.objectmentor.com/articles/2009/04/20/is-the-supremacy-of-object-oriented-programming-over#comment-165671</link>
    </item>
    <item>
      <title>"Is the Supremacy of Object-Oriented Programming Over?" by Pandora jewelry on sale</title>
      <description>&lt;p&gt;We have now entered a new year, which means a new year &lt;a href="http://www.pandoracharm4u.com" rel="nofollow"&gt;Pandora jewelry on sale&lt;/a&gt; full of fresh fashions, styles and colours. Trying to staying ahead of trends and styles always helps when designing jewellery pieces.&lt;/p&gt;</description>
      <pubDate>Tue, 25 Oct 2011 01:41:46 -0500</pubDate>
      <guid isPermaLink="false">urn:uuid:904fbda0-4682-442c-a1c4-7bf60984e0f3</guid>
      <link>http://blog.objectmentor.com/articles/2009/04/20/is-the-supremacy-of-object-oriented-programming-over#comment-162948</link>
    </item>
    <item>
      <title>"Is the Supremacy of Object-Oriented Programming Over?" by Trottinette &#233;lectrique</title>
      <description>&lt;p&gt;Thanks !&lt;/p&gt;</description>
      <pubDate>Sun, 23 Oct 2011 03:40:54 -0500</pubDate>
      <guid isPermaLink="false">urn:uuid:4bd40c9d-9a20-4de6-97bd-447b53d465e0</guid>
      <link>http://blog.objectmentor.com/articles/2009/04/20/is-the-supremacy-of-object-oriented-programming-over#comment-161102</link>
    </item>
    <item>
      <title>"Is the Supremacy of Object-Oriented Programming Over?" by Ashley Bowling</title>
      <description>&lt;p&gt;While there&amp;#8217;s life there&amp;#8217;s hope&lt;/p&gt;</description>
      <pubDate>Sat, 15 Oct 2011 15:35:02 -0500</pubDate>
      <guid isPermaLink="false">urn:uuid:f5aa87da-f3d2-4c17-aaa0-522f53f579c3</guid>
      <link>http://blog.objectmentor.com/articles/2009/04/20/is-the-supremacy-of-object-oriented-programming-over#comment-157195</link>
    </item>
    <item>
      <title>"Is the Supremacy of Object-Oriented Programming Over?" by entrepreneur ideas</title>
      <description>&lt;p&gt;Thanks for sharing this great article! That is very interesting I love reading and I am always searching for informative information like this.&lt;/p&gt;</description>
      <pubDate>Fri, 07 Oct 2011 04:03:56 -0500</pubDate>
      <guid isPermaLink="false">urn:uuid:b9de071a-354d-4dae-924b-db6f777e0cc1</guid>
      <link>http://blog.objectmentor.com/articles/2009/04/20/is-the-supremacy-of-object-oriented-programming-over#comment-152323</link>
    </item>
    <item>
      <title>"Is the Supremacy of Object-Oriented Programming Over?" by webmarketing nantes</title>
      <description>&lt;p&gt;Really interisting post and i think it is directly linked with webmakerting in Nantes city !&lt;/p&gt;</description>
      <pubDate>Mon, 03 Oct 2011 08:26:24 -0500</pubDate>
      <guid isPermaLink="false">urn:uuid:6034e82e-0d42-4af8-aba7-e4124e05a079</guid>
      <link>http://blog.objectmentor.com/articles/2009/04/20/is-the-supremacy-of-object-oriented-programming-over#comment-149571</link>
    </item>
    <item>
      <title>"Is the Supremacy of Object-Oriented Programming Over?" by Tungsten Rings for men</title>
      <description>&lt;p&gt;Excellent post. I merely came across your site and wished to say that I have really loved reading through your blog posts. Any ways I&amp;#8217;ll be subscribing for your feed and I hope you post again soon. &lt;a href="http://www.savorystone.com/" rel="nofollow"&gt; Tungsten Rings for men&lt;/a&gt;&lt;/p&gt;</description>
      <pubDate>Wed, 21 Sep 2011 06:15:16 -0500</pubDate>
      <guid isPermaLink="false">urn:uuid:5fe88053-8a4f-418a-b9f6-bdc025f3b54d</guid>
      <link>http://blog.objectmentor.com/articles/2009/04/20/is-the-supremacy-of-object-oriented-programming-over#comment-143772</link>
    </item>
    <item>
      <title>"Is the Supremacy of Object-Oriented Programming Over?" by http://www.opticienonline.com/lunettes de soleil</title>
      <description>&lt;p&gt;C&amp;#8217;est tr&#232;s int&#233;ressent. Je vais suivre votre blog.&lt;/p&gt;</description>
      <pubDate>Tue, 06 Sep 2011 10:39:07 -0500</pubDate>
      <guid isPermaLink="false">urn:uuid:2823b270-8dde-4e0b-8152-4da9050bf157</guid>
      <link>http://blog.objectmentor.com/articles/2009/04/20/is-the-supremacy-of-object-oriented-programming-over#comment-137674</link>
    </item>
  </channel>
</rss>

