<?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: 10 Papers Every Programmer Should Read (At Least Twice)</title>
    <link>http://blog.objectmentor.com/articles/2009/02/26/10-papers-every-programmer-should-read-at-least-twice</link>
    <language>en-us</language>
    <ttl>40</ttl>
    <description></description>
    <item>
      <title>10 Papers Every Programmer Should Read (At Least Twice)</title>
      <description>&lt;p&gt;I spent most of yesterday afternoon working on a paper I&#8217;m co-writing.  It was one of those days when the writing came easy.  I was moving from topic to topic, but then I realized that I was reaching too far backward &amp;#8211; I was explaining things which I shouldn&#8217;t have had to explain to the audience I was trying to reach.&lt;/p&gt;

&lt;p&gt;When I first started writing, one of the pieces of advice that I heard was that you should always imagine that you are writing to a particular person.  It gets your juices going &amp;#8211; you&#8217;re automatically in an explanatory state of mind and you know what you can expect from your audience.  I was doing that, but I noticed that I was drifting.  I was losing my sense of audience. I started to explain one thing, and then I realized that I would have to explain something else to help it make sense. I couldn&#8217;t imagine that person any more. How could I know what they know and what they don&#8217;t?&lt;/p&gt;

&lt;p&gt;
The problem I was experiencing is only getting worse. People come into programming from many different directions.  Some started in other fields, and others started programming as teens.  Some started with &lt;span class="caps"&gt;BASIC&lt;/span&gt;, others started with Ruby or C.  The industry is filled with knowledge, but it isn&#8217;t common knowledge. It isn&#8217;t knowledge that we all share. We have to dig for it because of a peculiar fact about our industry: we reinvent our languages and notations every ten years.  It&#8217;s hard to find deeply technical books and articles which stand the test of time in software: they are all Latin within 20 years.&lt;/p&gt;

&lt;p&gt;So, I was thinking about this and trying to not to get too glum.  I realized that instead of complaining, I could help by pointing to some papers which are easily available online and which (to me at least) point to some of the most interesting ideas about software.  To me, these are classic papers which contain deep &#8220;things you oughta know&amp;#8221; about code &amp;#8211; the material you work with.&lt;/p&gt;

&lt;p&gt;
We&#8217;ve taken an interesting turn in the industry over the past ten years.  We&#8217;ve come to value experiential learning much more, and we&#8217;ve regained a strong pragmatic focus, but I think it would be a shame if we lost sight of some of the deeper things which people have learned over the past 50 years.  Rediscovering them would be painful, and (to me) not knowing them would be a shame.&lt;/p&gt;

&lt;p&gt;Here&#8217;s the original list.  It&#8217;s a rather personal list of foundational papers and papers with deep ideas. I wrote it &amp;#8220;off the cuff&amp;#8221; and threw it into a tumblr blog the other day and I got responses from people who suggested others.  I&#8217;ll add those in a later blog.&lt;/p&gt;

&lt;p&gt;Most are easy to read but some are rough going &amp;#8211; they drop off into math after the first few pages.   Take the math to tolerance and then move on. The ideas are the important thing.&lt;/p&gt; 

	&lt;ol&gt;
	&lt;li&gt;&lt;a href="http://sunnyday.mit.edu/16.355/parnas-criteria.html"&gt;On the criteria to be used in decomposing systems into modules&lt;/a&gt; &amp;#8211; David Parnas&lt;/li&gt;
		&lt;li&gt;&lt;a href="http://research.sun.com/techrep/1994/abstract-29.html"&gt;A Note On Distributed Computing&lt;/a&gt; &amp;#8211; Jim Waldo, Geoff Wyant, Ann Wollrath, Sam Kendall&lt;/li&gt;
		&lt;li&gt;&lt;a href="http://portal.acm.org/citation.cfm?id=365257"&gt;The Next 700 Programming Languages&lt;/a&gt; &amp;#8211; P. J. Landin&lt;/li&gt;
		&lt;li&gt;&lt;a href="http://portal.acm.org/citation.cfm?id=359579"&gt;Can Programming Be Liberated from the von Neumann Style?&lt;/a&gt; &amp;#8211; John Backus&lt;/li&gt;
		&lt;li&gt;&lt;a href="http://cm.bell-labs.com/who/ken/trust.html"&gt;Reflections on Trusting Trust&lt;/a&gt; &amp;#8211; Ken Thompson&lt;/li&gt;
		&lt;li&gt;&lt;a href="http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.50.6083"&gt;Lisp: Good News, Bad News, How to Win Big&lt;/a&gt; &amp;#8211; Richard Gabriel&lt;/li&gt;
		&lt;li&gt;&lt;a href="http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.29.363"&gt;An experimental evaluation of the assumption of independence in multiversion programming&lt;/a&gt; &amp;#8211; John Knight and Nancy Leveson&lt;/li&gt;
		&lt;li&gt;&lt;a href="http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.50.7565"&gt;Arguments and Results&lt;/a&gt; &amp;#8211; James Noble&lt;/li&gt;
		&lt;li&gt;&lt;a href="http://c2.com/doc/oopsla89/paper.html"&gt;A Laboratory For Teaching Object-Oriented Thinking&lt;/a&gt; &amp;#8211; Kent Beck, Ward Cunningham&lt;/li&gt;
		&lt;li&gt;&lt;a href="http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.31.562"&gt;Programming as an Experience: the inspiration for Self&lt;/a&gt; &amp;#8211; David Ungar, Randall B. Smith&lt;/li&gt;
	&lt;/ol&gt;


&lt;p&gt;&lt;i&gt;(edit: Added a brief synopsis of each of them and why I think they are special):&lt;/i&gt;&lt;/p&gt;

&lt;p&gt;&lt;b&gt;On the criteria to be used in decomposing systems into modules &amp;#8211; Parnas&lt;/b&gt;&lt;/p&gt;
&lt;p&gt;This is a very old paper, but it is more than a classic.  In in it, Parnas introduces a forerunner to the &lt;i&gt;Single Responsibility Principle&lt;/i&gt;.  He introduces the idea that we should use modularity to hide design decisions &amp;#8211; things which could change.  People still don&amp;#8217;t consider this as often as they should.&lt;/p&gt;

&lt;p&gt; Another thing I really like in the paper is his comment on the &lt;span class="caps"&gt;KWIC&lt;/span&gt; system which he used as an example.  He mentioned that it would take a good programmer a week or two to code. Today, it would take practically no time at all.  Thumbs up for improved skills and better tools.  We have made progress.&lt;/p&gt;

&lt;p&gt;&lt;b&gt;A Note On Distributed Computing &#8211; Waldo, Wyant, Wollrath, Kendall&lt;/b&gt;&lt;/p&gt;&lt;p&gt; Abstraction is great but it can only go so far.  In this paper, the authors lay to rest what was once a pervasive myth &amp;#8211; that we could design a distributed system and make distribution transparent.  Ever wonder why you had to implement specific interfaces to do remoting in Java?  This is why. &lt;/p&gt;&lt;p&gt; In the aftermath it might seem hard to believe that people thought this was possible.  I think we can we partially thank this paper for that.
&lt;/p&gt;
&lt;p&gt;&lt;b&gt;
The Next 700 Programming Languages &amp;#8211; Landin&lt;/b&gt;&lt;/p&gt;&lt;p&gt; Most of us have spent a lot of time working in traditional programming languages, but functional programming languages are slowly seeing an uptick and many OO languages are gaining functional features. This paper (which reads like a tutorial) makes an argument for an expression-oriented style of programming. It also lays the foundation for lazy evaluation. &lt;/p&gt;
&lt;p&gt;One of the other neat things about this paper, from a historical point of view, is that there is a discussion section at the end in which there a number of questions and comments about whether making indentation significant in a language is a good idea.  I was thrown to see people asking whether or not this would be a problem for functions which span over several pages(!).&lt;/p&gt;

&lt;p&gt;&lt;b&gt;Can Programming Be Liberated from the von Neumann Style? &#8211; Backus&lt;/b&gt;&lt;/p&gt;&lt;p&gt; John Backus is known for a number of achievements in computer science.  He received the &lt;span class="caps"&gt;ACM&lt;/span&gt; Turing Award for his work on Fortran.  This paper, which he presented at the award ceremony was rather shocking at the time because it said, in essence, &#8220;we got it wrong.&#8221;  Backus took the opportunity to make a plea for pure functional programming.  His arguments were convincing and they helped to set a research agenda which is just now starting to make some waves in the mainstream.&lt;/p&gt;

&lt;p&gt;&lt;b&gt;Reflections on Trusting Trust &#8211; Thompson&lt;/b&gt;&lt;/p&gt;&lt;p&gt; I once heard that when this paper was presented, people in attendance rushed back to de-compile their C compilers and look for, er, problems.  This paper unveiled a hard problem at the heart of computer security.  If you&#8217;ve spent any time at all thinking about security, you need to read it.&lt;/p&gt;

&lt;p&gt;&lt;b&gt;Lisp: Good News, Bad News, How to Win Big &#8211; Gabriel&lt;/b&gt;&lt;/p&gt;&lt;p&gt; This paper is a bit atypical in this list.  It&#8217;s aimed at the Lisp community and it comes off as a bit of a lament.  But, hidden deep within it is the Gabriel&#8217;s description of the &#8216;Worse is Better&#8217; philosophy &amp;#8211; an idea with profound implications for the acceptance and spread of technology.&lt;/p&gt;

&lt;p&gt;&lt;b&gt;An experimental evaluation of the assumption of independence in multiversion programming &#8211; John Knight and Nancy Leveson&lt;/b&gt;&lt;/p&gt;&lt;p&gt; Behind this dry title lies something very interesting. I first heard about this paper from Ralph Johnson in a newsgroup discussion about program correctness.  It turns out that one of the avenues that engineers in other disciplines take to make their products stronger &amp;#8211; redundancy &amp;#8211; doesn&#8217;t really work in software.  Multi-version programming was the idea that you could decrease faults in critical systems by handing the spec to several teams, having them develop the software independently, and then having the systems run in parallel.  A monitoring process verifies their results and if there is any discrepancy it picks the most common result.  Sounds like it should work, right? Well..&lt;/p&gt;

&lt;p&gt;&lt;b&gt;Arguments and Results &#8211; Noble&lt;/b&gt;&lt;/p&gt;&lt;p&gt; I think that all of the other papers in this list are rather well known in some circles. This one isn&#8217;t, or if it is, I just haven&#8217;t found that circle yet.  What I like about this paper is that it takes something which we deal with every day &amp;#8211; the set of arguments and results of functions &amp;#8211; and it works them through a series of variations which just don&#8217;t occur to many people.  The fact is, every function that you work with has a number of possible directions if could evolve in.  Not all of them are appropriate, but if you know the possible directions, you&#8217;re richer for it.&lt;/p&gt;

&lt;p&gt;&lt;b&gt;A Laboratory For Teaching Object-Oriented Thinking &#8211;  Beck, Cunningham&lt;/b&gt;&lt;/p&gt;&lt;p&gt; There are an incredible number of papers about there about object orientation.  The thing which makes this one great is its directness.  OO went through a number of stages.  It was once fresh and novel, then it was ornate, and then it became matter-of-fact.  This paper hits upon key ideas which many people don&#8217;t talk about much any more: anthropomorphism and dropping the top/down perspective.  It also shows you how you can design with index cards. It may not sound cool but it is incredibly effective.&lt;/p&gt;

&lt;p&gt;&lt;b&gt;Programming as an Experience: the inspiration for Self &#8211; Ungar, Smith&lt;/b&gt;&lt;/p&gt;&lt;p&gt; How many people know about the Self Project? Not enough in my opinion.  Self was an attempt to take two ideas in computing and push them as far as humanly possible.  The first was minimalism: the Self programming language was thoroughly in the Lisp and Smalltalk vein &amp;#8211; everything was defined in terms of the smallest number of primitives possible.  The other idea was direct manipulation &amp;#8211; the idea that the object metaphor could be pushed all the way in the user interface &amp;#8211; the programmer and user sit with a mouse in a sea of directly clickable objects and use them for everything.  If they could&#8217;ve gotten away with dropping the keyboard, I think they would&#8217;ve.&lt;/p&gt;

&lt;p&gt;The amount of technology which the Self project threw off is terrifying also.  Self broke ground in dynamic language optimization and VM design.  Chances are, your VM uses technology it pioneered.  It&#8217;s also one of the more perverse ironies that the most widely distributed programming language today (JavaScript) is a prototype-based programming language which borrowed ideas from the hyper-research-y Self.&lt;/p&gt;

&lt;p&gt;What would you add to the list?&lt;/p&gt;</description>
      <pubDate>Thu, 26 Feb 2009 20:49:00 -0600</pubDate>
      <guid isPermaLink="false">urn:uuid:2a8b62cf-d3ae-4c95-9105-32548762637b</guid>
      <author>Michael Feathers</author>
      <link>http://blog.objectmentor.com/articles/2009/02/26/10-papers-every-programmer-should-read-at-least-twice</link>
      <category>Michaels Musings</category>
    </item>
    <item>
      <title>"10 Papers Every Programmer Should Read (At Least Twice)" by Valentine Gift Pakistan</title>
      <description>&lt;p&gt;Really Nice Blog, Keep Sharing, I&#8217;ll post his to my blog&lt;/p&gt;</description>
      <pubDate>Wed, 08 Feb 2012 05:08:59 -0600</pubDate>
      <guid isPermaLink="false">urn:uuid:47a0c5fb-9efc-44d7-9236-2a6312dd62b2</guid>
      <link>http://blog.objectmentor.com/articles/2009/02/26/10-papers-every-programmer-should-read-at-least-twice#comment-202344</link>
    </item>
    <item>
      <title>"10 Papers Every Programmer Should Read (At Least Twice)" by ???????? ?????????</title>
      <description>&lt;p&gt;nice psot thank you so much&lt;/p&gt;</description>
      <pubDate>Sat, 04 Feb 2012 08:00:14 -0600</pubDate>
      <guid isPermaLink="false">urn:uuid:fa617a17-1424-4e73-a094-bda9dc76c950</guid>
      <link>http://blog.objectmentor.com/articles/2009/02/26/10-papers-every-programmer-should-read-at-least-twice#comment-201731</link>
    </item>
    <item>
      <title>"10 Papers Every Programmer Should Read (At Least Twice)" by Miami family attorney</title>
      <description>&lt;p&gt;I had spent a good deal of my time looking for someone to explain this subject clearly and you&#8217;re the only one that ever did that as well as I do a lot of research online on a daily basis and for the most part, people lack substance but, I just wanted to make a quick comment to say I&amp;#8217;m glad I found your blog.&lt;/p&gt;</description>
      <pubDate>Fri, 03 Feb 2012 06:01:04 -0600</pubDate>
      <guid isPermaLink="false">urn:uuid:721aedfa-7d22-48c7-a699-ab5e718a099a</guid>
      <link>http://blog.objectmentor.com/articles/2009/02/26/10-papers-every-programmer-should-read-at-least-twice#comment-201566</link>
    </item>
    <item>
      <title>"10 Papers Every Programmer Should Read (At Least Twice)" by emaar mgf palm hills gurgaon</title>
      <description>&lt;p&gt;emaar mgf palm hills gurgaon visit emaar mgf new launch.&lt;/p&gt;</description>
      <pubDate>Thu, 02 Feb 2012 05:54:45 -0600</pubDate>
      <guid isPermaLink="false">urn:uuid:f39905fa-761c-4f93-9cc4-1340e1e7a16a</guid>
      <link>http://blog.objectmentor.com/articles/2009/02/26/10-papers-every-programmer-should-read-at-least-twice#comment-200960</link>
    </item>
    <item>
      <title>"10 Papers Every Programmer Should Read (At Least Twice)" by Monokini Swimsuits</title>
      <description>&lt;p&gt;Monokini Swimsuits are the most fashionable swimsuits on the market right now.  Victoria&amp;#8217;s Secret just issued a brand new early spring lineup which has been modeled by the likes of Heidi Klum, Gisele, and even Jessica Biel.&lt;/p&gt;</description>
      <pubDate>Tue, 31 Jan 2012 15:21:04 -0600</pubDate>
      <guid isPermaLink="false">urn:uuid:59175016-3188-49a3-b64a-62120b5259b6</guid>
      <link>http://blog.objectmentor.com/articles/2009/02/26/10-papers-every-programmer-should-read-at-least-twice#comment-200407</link>
    </item>
    <item>
      <title>"10 Papers Every Programmer Should Read (At Least Twice)" by &lt;a href="http://cheapsnapbackhats.com/snakeskin-strapbacks-hats/"&gt;strapbacks&lt;/a&gt;</title>
      <description>&lt;p&gt;Strapback hats just recently became big in the US and strapbacks, especially, snakeskin strapbacks hats are becoming really popular in Europe. Check out some great ones online.&lt;/p&gt;</description>
      <pubDate>Tue, 31 Jan 2012 14:52:25 -0600</pubDate>
      <guid isPermaLink="false">urn:uuid:2449dbd2-a1b5-44f0-905a-378c79f69d1e</guid>
      <link>http://blog.objectmentor.com/articles/2009/02/26/10-papers-every-programmer-should-read-at-least-twice#comment-200404</link>
    </item>
    <item>
      <title>"10 Papers Every Programmer Should Read (At Least Twice)" by  christian louboutin</title>
      <description>&lt;p&gt;It is a good post , I like it and please keep writing .&lt;/p&gt;</description>
      <pubDate>Mon, 30 Jan 2012 23:27:27 -0600</pubDate>
      <guid isPermaLink="false">urn:uuid:6658700e-63e4-4dea-84f9-3a4c431df744</guid>
      <link>http://blog.objectmentor.com/articles/2009/02/26/10-papers-every-programmer-should-read-at-least-twice#comment-200302</link>
    </item>
    <item>
      <title>"10 Papers Every Programmer Should Read (At Least Twice)" by restaurants in savannah ga</title>
      <description>&lt;p&gt;Thanks for the article! i really appreciate the efforts of yours!&lt;/p&gt;</description>
      <pubDate>Mon, 30 Jan 2012 12:25:05 -0600</pubDate>
      <guid isPermaLink="false">urn:uuid:3122040f-7539-42b1-8b30-b104b42ebbd5</guid>
      <link>http://blog.objectmentor.com/articles/2009/02/26/10-papers-every-programmer-should-read-at-least-twice#comment-200263</link>
    </item>
    <item>
      <title>"10 Papers Every Programmer Should Read (At Least Twice)" by crack</title>
      <description>&lt;p&gt;Gostaria de saber se algu&#233;m poderia me ajudar,n&#227;o consigo de jeito nenhum instalar o adobe em meu computador ,quando entro no baixaki clico em instalar mais sempre aparece a informa&#231;&#227;o ocorreu um erro.)))&lt;/p&gt;</description>
      <pubDate>Sun, 29 Jan 2012 04:43:15 -0600</pubDate>
      <guid isPermaLink="false">urn:uuid:caf2969c-76a0-4ced-95b2-e59427cb1e69</guid>
      <link>http://blog.objectmentor.com/articles/2009/02/26/10-papers-every-programmer-should-read-at-least-twice#comment-200069</link>
    </item>
    <item>
      <title>"10 Papers Every Programmer Should Read (At Least Twice)" by Laalz</title>
      <description>&lt;p&gt;This can get way better as I believe man. &lt;a href="http://www.thesisdom.com/" rel="nofollow"&gt;Theses&lt;/a&gt; | &lt;a href="http://www.assignmentdom.co.uk/" rel="nofollow"&gt;Assignments&lt;/a&gt; | &lt;a href="http://www.courseworkdom.co.uk/" rel="nofollow"&gt;Courseworks&lt;/a&gt;&lt;/p&gt;</description>
      <pubDate>Fri, 27 Jan 2012 13:16:46 -0600</pubDate>
      <guid isPermaLink="false">urn:uuid:1e2e61fe-c215-4466-adae-bb2d0140364d</guid>
      <link>http://blog.objectmentor.com/articles/2009/02/26/10-papers-every-programmer-should-read-at-least-twice#comment-199382</link>
    </item>
    <item>
      <title>"10 Papers Every Programmer Should Read (At Least Twice)" by sconce wall lights</title>
      <description>&lt;p&gt;Gostaria de saber se algu&#233;m poderia me ajudar,n&#227;o consigo de jeito nenhum instalar o adobe em meu computador ,quando entro no baixaki clico em instalar mais sempre aparece a informa&#231;&#227;o ocorreu um erro.&lt;/p&gt;</description>
      <pubDate>Fri, 27 Jan 2012 11:50:21 -0600</pubDate>
      <guid isPermaLink="false">urn:uuid:7ac816ad-86b3-4074-bf5d-f31b444b8463</guid>
      <link>http://blog.objectmentor.com/articles/2009/02/26/10-papers-every-programmer-should-read-at-least-twice#comment-199365</link>
    </item>
    <item>
      <title>"10 Papers Every Programmer Should Read (At Least Twice)" by the energy egg</title>
      <description>&lt;p&gt;Is this really a mandatory, I&amp;#8217;m programmer and haven&amp;#8217;t heard this one.&lt;/p&gt;</description>
      <pubDate>Fri, 27 Jan 2012 01:47:59 -0600</pubDate>
      <guid isPermaLink="false">urn:uuid:49f7d008-0600-4111-97ca-bddb7b5fed88</guid>
      <link>http://blog.objectmentor.com/articles/2009/02/26/10-papers-every-programmer-should-read-at-least-twice#comment-199292</link>
    </item>
    <item>
      <title>"10 Papers Every Programmer Should Read (At Least Twice)" by executive cars london</title>
      <description>&lt;p&gt;I am happy to find so many useful information here in the post.&lt;/p&gt;</description>
      <pubDate>Thu, 26 Jan 2012 05:17:21 -0600</pubDate>
      <guid isPermaLink="false">urn:uuid:0812ce61-0cd2-4626-9113-a22d09e03845</guid>
      <link>http://blog.objectmentor.com/articles/2009/02/26/10-papers-every-programmer-should-read-at-least-twice#comment-199230</link>
    </item>
    <item>
      <title>"10 Papers Every Programmer Should Read (At Least Twice)" by ps</title>
      <description>&lt;p&gt;Good stufff&amp;#8230;
keep it up..&lt;/p&gt;</description>
      <pubDate>Mon, 23 Jan 2012 23:02:38 -0600</pubDate>
      <guid isPermaLink="false">urn:uuid:6a1a5fc6-b78d-4e91-8024-c3e736e57d2d</guid>
      <link>http://blog.objectmentor.com/articles/2009/02/26/10-papers-every-programmer-should-read-at-least-twice#comment-198971</link>
    </item>
    <item>
      <title>"10 Papers Every Programmer Should Read (At Least Twice)" by Ernst Birke</title>
      <description>&lt;p&gt;Mich hat es beeindruckt wie schnell man was gutes finden kann. Ich habe mir auch schon &lt;a href="http://gratisporno.blogoom.com/" rel="nofollow"&gt;gratisporno.blogoom.com&lt;/a&gt; durchgelesen. Sehr informativ und leicht erk&#228;rt. Spitzen Arbeit&lt;/p&gt;</description>
      <pubDate>Sat, 21 Jan 2012 09:45:25 -0600</pubDate>
      <guid isPermaLink="false">urn:uuid:7ee8f593-7706-4b5a-afac-2534f0c08ffd</guid>
      <link>http://blog.objectmentor.com/articles/2009/02/26/10-papers-every-programmer-should-read-at-least-twice#comment-198756</link>
    </item>
    <item>
      <title>"10 Papers Every Programmer Should Read (At Least Twice)" by Klara Suppenkoch</title>
      <description>&lt;p&gt;Wer nicht heute dazu kommen sollte, der kann auch noch morgen auf &lt;a href="http://porno.bloglabel.com/" rel="nofollow"&gt;porno.bloglabel.com&lt;/a&gt; etwas neues lesen&lt;/p&gt;</description>
      <pubDate>Sat, 21 Jan 2012 09:40:49 -0600</pubDate>
      <guid isPermaLink="false">urn:uuid:799c014a-b2d2-430e-b99b-99c77f8986d1</guid>
      <link>http://blog.objectmentor.com/articles/2009/02/26/10-papers-every-programmer-should-read-at-least-twice#comment-198755</link>
    </item>
    <item>
      <title>"10 Papers Every Programmer Should Read (At Least Twice)" by dog shock collars</title>
      <description>&lt;p&gt;I was extremely pleased to find this website this has really tremendous impacts on readers and I admire the writing skill of the author great information to us and we will wait for your next update. We should keep the better method when we are doing such things.
Thank you please keep it up.&lt;/p&gt;</description>
      <pubDate>Thu, 19 Jan 2012 04:48:56 -0600</pubDate>
      <guid isPermaLink="false">urn:uuid:1605c2cc-62a8-465f-b9cc-d86d84d9c1a0</guid>
      <link>http://blog.objectmentor.com/articles/2009/02/26/10-papers-every-programmer-should-read-at-least-twice#comment-198581</link>
    </item>
    <item>
      <title>"10 Papers Every Programmer Should Read (At Least Twice)" by http://www.lastkingssnapbacks.com/vice-snapback-hats</title>
      <description>&lt;p&gt;Choose this fashion &lt;a href="http://www.lastkingssnapbacks.com/" rel="nofollow"&gt;Last Kings Snapback&lt;/a&gt; as a gift which give people the spirit of sport, which done together for create the atmosphere of joy and happiness.  &lt;a href="http://www.lastkingssnapbacks.com/american-needle-snapback" rel="nofollow"&gt;American Needle Snapback&lt;/a&gt; is a style hat where size of the hat is adjustable by a snap on the back. You will a lot of &lt;a href="http://www.lastkingssnapbacks.com/vice-snapback-hats" rel="nofollow"&gt;Vice Snapback&lt;/a&gt; in all anticipation be adored with.&lt;/p&gt;</description>
      <pubDate>Wed, 18 Jan 2012 20:53:47 -0600</pubDate>
      <guid isPermaLink="false">urn:uuid:88da22e8-ec9c-4561-9127-4ca878219666</guid>
      <link>http://blog.objectmentor.com/articles/2009/02/26/10-papers-every-programmer-should-read-at-least-twice#comment-198536</link>
    </item>
    <item>
      <title>"10 Papers Every Programmer Should Read (At Least Twice)" by Modellbau RC Modelle</title>
      <description>&lt;p&gt;I have notice that you have done a good job and really must read again to understand all that precious infos you give.&lt;/p&gt;</description>
      <pubDate>Sun, 15 Jan 2012 10:25:06 -0600</pubDate>
      <guid isPermaLink="false">urn:uuid:1c543ef8-8031-4ac9-a654-83073b370cf6</guid>
      <link>http://blog.objectmentor.com/articles/2009/02/26/10-papers-every-programmer-should-read-at-least-twice#comment-198032</link>
    </item>
    <item>
      <title>"10 Papers Every Programmer Should Read (At Least Twice)" by Survey Review</title>
      <description>&lt;p&gt;i am first time to visiting on this site and this site give such great information to us and we will wait for your next update .thanks for it&#8230;&#8230;&amp;#8230;.........!!!!!!!&lt;/p&gt;</description>
      <pubDate>Sat, 14 Jan 2012 17:56:44 -0600</pubDate>
      <guid isPermaLink="false">urn:uuid:3a36e77a-7585-4e67-8df1-4c45f9002b58</guid>
      <link>http://blog.objectmentor.com/articles/2009/02/26/10-papers-every-programmer-should-read-at-least-twice#comment-197876</link>
    </item>
    <item>
      <title>"10 Papers Every Programmer Should Read (At Least Twice)" by Microsoft Office 2010</title>
      <description>&lt;p&gt;This article is GREAT it can be EXCELLENT JOB and what a great tool!&lt;/p&gt;</description>
      <pubDate>Fri, 13 Jan 2012 19:42:43 -0600</pubDate>
      <guid isPermaLink="false">urn:uuid:d8e187bb-75bc-4d3f-9b4f-40a6b2e78ce1</guid>
      <link>http://blog.objectmentor.com/articles/2009/02/26/10-papers-every-programmer-should-read-at-least-twice#comment-197737</link>
    </item>
    <item>
      <title>"10 Papers Every Programmer Should Read (At Least Twice)" by av</title>
      <description>&lt;p&gt;I like this concept. I visited your blog for the first time and just been your fan. Keep posting as I am gonna come to read it everyday. Thanks for sharing.&lt;/p&gt;</description>
      <pubDate>Thu, 12 Jan 2012 03:07:36 -0600</pubDate>
      <guid isPermaLink="false">urn:uuid:fc8cad40-b831-4753-9ec0-b1f1130168b1</guid>
      <link>http://blog.objectmentor.com/articles/2009/02/26/10-papers-every-programmer-should-read-at-least-twice#comment-197335</link>
    </item>
    <item>
      <title>"10 Papers Every Programmer Should Read (At Least Twice)" by STOCK MARKET | SHARE MARKET</title>
      <description>&lt;p&gt;Great one dude its always awesome to read your post and even today I felt the same after reading your post.&lt;/p&gt;</description>
      <pubDate>Wed, 11 Jan 2012 22:09:36 -0600</pubDate>
      <guid isPermaLink="false">urn:uuid:c9a4b2a1-4a28-489d-a22c-2632a1df1172</guid>
      <link>http://blog.objectmentor.com/articles/2009/02/26/10-papers-every-programmer-should-read-at-least-twice#comment-197251</link>
    </item>
    <item>
      <title>"10 Papers Every Programmer Should Read (At Least Twice)" by ithemes coupon code</title>
      <description>&lt;p&gt;i am first time to visiting on this site and this site give such great information to us and we will wait for your next update .thanks for it&#8230;&amp;#8230;............!!!!!!!&lt;/p&gt;</description>
      <pubDate>Wed, 11 Jan 2012 15:43:34 -0600</pubDate>
      <guid isPermaLink="false">urn:uuid:e6b9fbad-4994-44ed-8064-2c3bf95a1077</guid>
      <link>http://blog.objectmentor.com/articles/2009/02/26/10-papers-every-programmer-should-read-at-least-twice#comment-197009</link>
    </item>
    <item>
      <title>"10 Papers Every Programmer Should Read (At Least Twice)" by 24 hour plumber brooklyn ny</title>
      <description>&lt;p&gt;If you want to see the mind blowing article with real facts and figures, this has really tremendous impacts on readers and I admire the writing skill of the author.&lt;/p&gt;</description>
      <pubDate>Tue, 10 Jan 2012 20:53:28 -0600</pubDate>
      <guid isPermaLink="false">urn:uuid:ea63a761-fdc8-44b5-bdaf-54466d4633dd</guid>
      <link>http://blog.objectmentor.com/articles/2009/02/26/10-papers-every-programmer-should-read-at-least-twice#comment-196834</link>
    </item>
  </channel>
</rss>

