What are the best programming articles? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-21T19:51:44Z http://stackoverflow.com/feeds/question/316461 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/316461/what-are-the-best-programming-articles 97 What are the best programming articles? lillq 2008-11-25T05:46:59Z 2009-10-25T00:41:49Z <p>Part of being a good software developer is keeping current with what people are saying in the community. There are many good articles out there on the internet about the wide subject of computer programming. What articles have you found worth your time?</p> <p>Please provide the article's title, author and a link if possible.</p> http://stackoverflow.com/questions/316461/what-are-the-best-programming-articles/316470#316470 7 Answer by chromakode for What are the best programming articles? chromakode 2008-11-25T05:54:28Z 2008-11-25T05:54:28Z <p><a href="http://www.norvig.com/spell-correct.html" rel="nofollow">"How to Write a Spelling Corrector"</a> in Python by Peter Norvig</p> http://stackoverflow.com/questions/316461/what-are-the-best-programming-articles/316495#316495 7 Answer by grigy for What are the best programming articles? grigy 2008-11-25T06:23:31Z 2009-03-25T18:30:56Z <p><a href="http://www.paulgraham.com/hp.html" rel="nofollow">Hackers and Painters</a> by Paul Graham.</p> http://stackoverflow.com/questions/316461/what-are-the-best-programming-articles/316498#316498 24 Answer by Firas for What are the best programming articles? Firas 2008-11-25T06:25:05Z 2008-11-25T06:25:05Z <p>Fred Brooks's <a href="http://www.lips.utexas.edu/ee382c-15005/Readings/Readings1/05-Broo87.pdf" rel="nofollow">No Silver Bullet - Essence and Accidents of Software Engineering</a>.</p> http://stackoverflow.com/questions/316461/what-are-the-best-programming-articles/316503#316503 50 Answer by Baget for What are the best programming articles? Baget 2008-11-25T06:29:26Z 2009-01-22T13:45:47Z <p><a href="http://norvig.com/21-days.html" rel="nofollow">Teach Yourself Programming in Ten Years</a> by Peter Norvig.</p> <p>A good article on what it takes to become a great programer and Peter Norvig's recipe for programming success.</p> http://stackoverflow.com/questions/316461/what-are-the-best-programming-articles/316512#316512 17 Answer by yesraaj for What are the best programming articles? yesraaj 2008-11-25T06:37:03Z 2009-01-22T15:44:48Z <p><a href="http://www.gotw.ca/publications/concurrency-ddj.htm" rel="nofollow">The Free Lunch Is Over: A Fundamental Turn Toward Concurrency in Software</a> by Herb Sutter.</p> <p>The biggest sea change in software development since the OO revolution is knocking at the door, and its name is Concurrency.</p> http://stackoverflow.com/questions/316461/what-are-the-best-programming-articles/317607#317607 25 Answer by lillq for What are the best programming articles? lillq 2008-11-25T14:56:37Z 2008-12-29T16:03:06Z <p>Painless Functional Specifications, by Joel Spolsky. It's in four parts and all are good.</p> <ul> <li><a href="http://www.joelonsoftware.com/articles/fog0000000036.html" rel="nofollow">Why Bother?</a></li> <li><a href="http://www.joelonsoftware.com/articles/fog0000000035.html" rel="nofollow">What's a Spec?</a></li> <li><a href="http://www.joelonsoftware.com/articles/fog0000000034.html" rel="nofollow">But... How?</a></li> <li><a href="http://www.joelonsoftware.com/articles/fog0000000033.html" rel="nofollow">Tips</a></li> </ul> http://stackoverflow.com/questions/316461/what-are-the-best-programming-articles/317661#317661 0 Answer by joveha for What are the best programming articles? joveha 2008-11-25T15:13:30Z 2008-12-01T07:47:46Z <p><a href="http://www.securecoding.cert.org/confluence/display/seccode/CERT+Secure+Coding+Standards" rel="nofollow">Cert Secure Coding Standards</a> is a gem</p> <p>Edit: fixed the link.</p> http://stackoverflow.com/questions/316461/what-are-the-best-programming-articles/317775#317775 1 Answer by Buu Nguyen for What are the best programming articles? Buu Nguyen 2008-11-25T15:47:39Z 2008-11-25T15:47:39Z <p><a href="http://www.developerdotstar.com/printable/mag/articles/reeves_design.html" rel="nofollow">"What is Software Design"</a> by Jack W. Reeves</p> http://stackoverflow.com/questions/316461/what-are-the-best-programming-articles/318092#318092 7 Answer by cwick for What are the best programming articles? cwick 2008-11-25T16:54:39Z 2009-07-15T18:24:20Z <p><a href="http://www.paulgraham.com/gh.html" rel="nofollow">Great Hackers</a> by Paul Graham</p> http://stackoverflow.com/questions/316461/what-are-the-best-programming-articles/318112#318112 4 Answer by Tim for What are the best programming articles? Tim 2008-11-25T17:02:20Z 2008-11-25T17:02:20Z <p>Smashing Magazine's <a href="http://www.smashingmagazine.com/2008/01/31/10-principles-of-effective-web-design/" rel="nofollow">10 Principles Of Effective Web Design</a></p> http://stackoverflow.com/questions/316461/what-are-the-best-programming-articles/318135#318135 17 Answer by Bill the Lizard for What are the best programming articles? Bill the Lizard 2008-11-25T17:10:31Z 2008-11-25T17:10:31Z <p><a href="http://tomayko.com/writings/rest-to-my-wife" rel="nofollow">How I Explained REST to My Wife</a></p> http://stackoverflow.com/questions/316461/what-are-the-best-programming-articles/318147#318147 26 Answer by Cory House for What are the best programming articles? Cory House 2008-11-25T17:13:25Z 2008-11-25T17:13:25Z <p>The <a href="http://www.indiangeek.net/wp-content/uploads/Programmer%20competency%20matrix.htm" rel="nofollow">Programmer Competency Matrix</a> is an excellent reference to gauge your development skills.</p> <p>It's a reminder that everyone has areas they can improve.</p> http://stackoverflow.com/questions/316461/what-are-the-best-programming-articles/318329#318329 13 Answer by coledot for What are the best programming articles? coledot 2008-11-25T18:08:27Z 2008-11-25T18:08:27Z <p><a href="http://www.laputan.org/mud/" rel="nofollow">Big Ball of Mud</a> by Brian Foote and Joseph Yoder</p> http://stackoverflow.com/questions/316461/what-are-the-best-programming-articles/318362#318362 -7 Answer by XC He for What are the best programming articles? XC He 2008-11-25T18:17:06Z 2008-11-25T18:17:06Z <p>An article? But a book I recommend this: Code Complete 2nd Edition</p> http://stackoverflow.com/questions/316461/what-are-the-best-programming-articles/318379#318379 3 Answer by Piotr Lesnicki for What are the best programming articles? Piotr Lesnicki 2008-11-25T18:21:59Z 2009-10-25T00:41:49Z <p>You have a really a bunch of very good ones <a href="http://www.prairienet.org/~dsb/artcls.htm" rel="nofollow">here</a></p> <p>Notably some of the already cited here ones, but also:</p> <ul> <li>The lambda papers (difficult but profound)</li> <li>The kingdom of Nouns (more distracting)</li> <li>...</li> </ul> <p>Looking back at them now, they're mostly oriented on functional programming, but I don't see <a href="http://www.md.chalmers.se/~rjmh/Papers/whyfp.html" rel="nofollow">Why functional programming matters</a>. If I remember other ones on another topic, I'll put them in another post.</p> http://stackoverflow.com/questions/316461/what-are-the-best-programming-articles/318400#318400 0 Answer by Renato Soffiatto for What are the best programming articles? Renato Soffiatto 2008-11-25T18:26:10Z 2008-11-25T18:26:10Z <p>I do found many of the Object Mentor articles immensely useful.<br/> <a href="http://www.objectmentor.com/resources/publishedArticles.html" rel="nofollow">Object Mentor Articles</a></p> http://stackoverflow.com/questions/316461/what-are-the-best-programming-articles/318656#318656 10 Answer by phil for What are the best programming articles? phil 2008-11-25T19:56:18Z 2009-02-03T15:14:07Z <p><a href="http://steve.yegge.googlepages.com/being-the-averagest" rel="nofollow">Being the Averagest </a> by Steve Yegge on competition in programming</p> http://stackoverflow.com/questions/316461/what-are-the-best-programming-articles/320943#320943 4 Answer by Tim for What are the best programming articles? Tim 2008-11-26T14:46:40Z 2008-11-26T14:46:40Z <p><a href="http://catb.org/~esr/writings/cathedral-bazaar/cathedral-bazaar/" rel="nofollow">The Cathedral and the Bazaar</a> has several fun articles about the pioneering of Linux in the 90's.</p> http://stackoverflow.com/questions/316461/what-are-the-best-programming-articles/324350#324350 17 Answer by barfoon for What are the best programming articles? barfoon 2008-11-27T17:50:45Z 2008-11-27T17:50:45Z <p>I really liked <a href="http://www.codinghorror.com/blog/archives/001150.html" rel="nofollow">Coding Without Comments</a>, from Jeff Atwood</p> http://stackoverflow.com/questions/316461/what-are-the-best-programming-articles/335005#335005 0 Answer by lillq for What are the best programming articles? lillq 2008-12-02T18:44:16Z 2009-01-21T23:12:39Z <p><a href="http://www.codinghorror.com/blog/archives/001184.html" rel="nofollow">Coding: It's Just Writing</a> by Jeff Attwood.</p> <p>A short article on writing style.</p> http://stackoverflow.com/questions/316461/what-are-the-best-programming-articles/335962#335962 9 Answer by Matt for What are the best programming articles? Matt 2008-12-03T01:10:28Z 2008-12-03T03:48:51Z <p><a href="http://www.joelonsoftware.com/articles/Wrong.html" rel="nofollow">Making Wrong Code Look Wrong</a> by Joel Spolsky on Hungarian Notation.</p> http://stackoverflow.com/questions/316461/what-are-the-best-programming-articles/336200#336200 4 Answer by Windows programmer for What are the best programming articles? Windows programmer 2008-12-03T04:11:16Z 2008-12-05T03:03:09Z <p><a href="http://www.u.arizona.edu/~rubinson/copyright_violations/Go_To_Considered_Harmful.html" rel="nofollow">Go To Statement Considered Harmful</a> by Edsger W. Dijkstra</p> http://stackoverflow.com/questions/316461/what-are-the-best-programming-articles/342531#342531 2 Answer by Matt for What are the best programming articles? Matt 2008-12-05T00:29:39Z 2008-12-05T00:29:39Z <p><a href="http://www.codinghorror.com/blog/archives/000749.html" rel="nofollow">Code Tells You How, Comments Tell You Why</a> by Jeff Atwood.</p> http://stackoverflow.com/questions/316461/what-are-the-best-programming-articles/342620#342620 2 Answer by RoadWarrior for What are the best programming articles? RoadWarrior 2008-12-05T01:15:07Z 2008-12-05T01:15:07Z <p>Eric Sink's <a href="http://www.ericsink.com/articles/Four_Questions.html" rel="nofollow">My life as a code economist</a>.</p> http://stackoverflow.com/questions/316461/what-are-the-best-programming-articles/342627#342627 1 Answer by RoadWarrior for What are the best programming articles? RoadWarrior 2008-12-05T01:18:12Z 2008-12-05T01:18:12Z <p>Chris Brumme's excellent essay on <a href="http://blogs.msdn.com/cbrumme/archive/2004/02/20/77460.aspx" rel="nofollow">finalization in .NET</a>.</p> http://stackoverflow.com/questions/316461/what-are-the-best-programming-articles/342633#342633 1 Answer by RoadWarrior for What are the best programming articles? RoadWarrior 2008-12-05T01:22:04Z 2008-12-05T01:22:04Z <p>Another excellent essay by Chris Brumme, this time on the <a href="http://blogs.msdn.com/cbrumme/archive/2003/10/01/51524.aspx" rel="nofollow">gory inner details of the exception model in .NET</a>.</p> http://stackoverflow.com/questions/316461/what-are-the-best-programming-articles/342647#342647 1 Answer by RoadWarrior for What are the best programming articles? RoadWarrior 2008-12-05T01:27:53Z 2009-04-10T21:27:15Z <p><a href="http://www.interact-sw.co.uk/iangblog/2004/09/23/threadless" rel="nofollow">Doing Work Without Threads</a> by Ian Griffiths.</p> http://stackoverflow.com/questions/316461/what-are-the-best-programming-articles/342654#342654 1 Answer by RoadWarrior for What are the best programming articles? RoadWarrior 2008-12-05T01:29:50Z 2008-12-05T01:29:50Z <p>Ian Griffiths again on <a href="http://www.interact-sw.co.uk/iangblog/2004/04/20/whatlocks" rel="nofollow">deadlock complexities</a>.</p> http://stackoverflow.com/questions/316461/what-are-the-best-programming-articles/342659#342659 3 Answer by RoadWarrior for What are the best programming articles? RoadWarrior 2008-12-05T01:34:14Z 2008-12-05T01:34:14Z <p>Raymond Chen on <a href="http://blogs.msdn.com/oldnewthing/archive/2005/08/22/454487.aspx" rel="nofollow">software development taxes</a>.</p> http://stackoverflow.com/questions/316461/what-are-the-best-programming-articles/342670#342670 2 Answer by RoadWarrior for What are the best programming articles? RoadWarrior 2008-12-05T01:39:04Z 2009-01-09T20:33:39Z <p><a href="http://www.bluegraybox.com/blog/2004/12/02/picture-hanging/" rel="nofollow">Picture Hanging</a> by Colin MacDonald.</p> <p>This wonderful essay on picture hanging as an analogy to software development made a huge impression on me when I first read it. The relentless accumulation of facts is just as important as talent or skill.</p> http://stackoverflow.com/questions/316461/what-are-the-best-programming-articles/342676#342676 3 Answer by RoadWarrior for What are the best programming articles? RoadWarrior 2008-12-05T01:41:59Z 2008-12-05T01:41:59Z <p>Jan Mikovsky on <a href="http://miksovsky.blogs.com/flowstate/2005/10/the_fractal_nat.html" rel="nofollow">the fractal nature of UI design problems</a>. I spent a while writing code to deal with this :-)</p> http://stackoverflow.com/questions/316461/what-are-the-best-programming-articles/342679#342679 2 Answer by J.F. Sebastian for What are the best programming articles? J.F. Sebastian 2008-12-05T01:44:13Z 2008-12-05T01:44:13Z <p><a href="http://steve-yegge.blogspot.com/2008/10/programmers-view-of-universe-part-1.html" rel="nofollow">A programmer's view of the Universe, part 1: The fish</a> by Steve Yegge</p> http://stackoverflow.com/questions/316461/what-are-the-best-programming-articles/342683#342683 3 Answer by RoadWarrior for What are the best programming articles? RoadWarrior 2008-12-05T01:46:19Z 2009-01-21T22:43:53Z <p><a href="http://steve-yegge.blogspot.com/2006/03/execution-in-kingdom-of-nouns.html" rel="nofollow">Execution in the Kingdom of Nouns</a> by Steve Yegge. </p> <p>An essay that made me re-think my attitude towards OOP.</p> http://stackoverflow.com/questions/316461/what-are-the-best-programming-articles/342733#342733 3 Answer by J.F. Sebastian for What are the best programming articles? J.F. Sebastian 2008-12-05T02:21:37Z 2008-12-05T02:21:37Z <p><a href="http://www.cs.utexas.edu/users/EWD/transcriptions/EWD08xx/EWD831.html" rel="nofollow">Why numbering should start at zero</a> by E.W. Dijkstra</p> http://stackoverflow.com/questions/316461/what-are-the-best-programming-articles/342747#342747 1 Answer by J.F. Sebastian for What are the best programming articles? J.F. Sebastian 2008-12-05T02:31:13Z 2008-12-05T02:31:13Z <p><a href="http://www.lospadres.info/thorg/lbb.html" rel="nofollow">Secrets of the Little Blue Box</a> by Ron Rosenbaum</p> http://stackoverflow.com/questions/316461/what-are-the-best-programming-articles/342753#342753 6 Answer by J.F. Sebastian for What are the best programming articles? J.F. Sebastian 2008-12-05T02:35:47Z 2008-12-05T02:35:47Z <p><a href="http://people.redhat.com/drepper/cpumemory.pdf" rel="nofollow">What Every Programmer Should Know About Memory [pdf]</a> by Ulrich Drepper</p> http://stackoverflow.com/questions/316461/what-are-the-best-programming-articles/342763#342763 1 Answer by J.F. Sebastian for What are the best programming articles? J.F. Sebastian 2008-12-05T02:45:22Z 2008-12-05T02:45:22Z <p><a href="http://steve-yegge.blogspot.com/2007/01/pinocchio-problem.html" rel="nofollow">The Pinocchio Problem</a> by Steve Yegge</p> http://stackoverflow.com/questions/316461/what-are-the-best-programming-articles/343832#343832 9 Answer by Loki for What are the best programming articles? Loki 2008-12-05T13:29:16Z 2008-12-05T14:38:38Z <p><a href="http://docs.sun.com/source/806-3568/ncg_goldberg.html" rel="nofollow">What Every Computer Scientist Should Know About Floating-Point Arithmetic</a> by Goldberg.</p> <p>There is a PDF around</p> <p>Personally, everyone should know about this one and What Every Programmer Should Know About Memory. They should make a yellow cover series with those!</p> http://stackoverflow.com/questions/316461/what-are-the-best-programming-articles/353179#353179 8 Answer by lillq for What are the best programming articles? lillq 2008-12-09T15:43:01Z 2008-12-09T15:43:01Z <p><a href="http://www.randsinrepose.com/archives/2004/07/10/what_to_do_when_youre_screwed.html" rel="nofollow">What to do when you're screwed</a> by Rands</p> http://stackoverflow.com/questions/316461/what-are-the-best-programming-articles/353885#353885 0 Answer by lwoodyiii for What are the best programming articles? lwoodyiii 2008-12-09T19:17:36Z 2008-12-09T19:17:36Z <p>"Being a Software Engineer in the Software Century" By: Barry Boehm Truly Inspirational</p> http://stackoverflow.com/questions/316461/what-are-the-best-programming-articles/354661#354661 1 Answer by lillq for What are the best programming articles? lillq 2008-12-09T23:54:06Z 2009-01-19T17:58:35Z <p>This is a good article on getting your first job offers.</p> <p><a href="http://www.joelonsoftware.com/items/2008/11/26.html" rel="nofollow">Exploding Offer Season</a> by Joel Spolsky.</p> http://stackoverflow.com/questions/316461/what-are-the-best-programming-articles/354683#354683 2 Answer by ykaganovich for What are the best programming articles? ykaganovich 2008-12-10T00:03:20Z 2008-12-10T00:03:20Z <p><a href="http://alistair.cockburn.us/Characterizing+people+as+non-linear,+first-order+components+in+software+development" rel="nofollow">Characterizing people as non-linear, first-order components in software development</a> by Alistair Cockburn</p> http://stackoverflow.com/questions/316461/what-are-the-best-programming-articles/357073#357073 1 Answer by ykaganovich for What are the best programming articles? ykaganovich 2008-12-10T18:31:05Z 2008-12-10T18:31:05Z <p>This is very specific to Java development, but an excellent overview of memory management issues by Attila Szegedi. Makes me want to buy him a beer :)</p> <p><a href="http://www.szegedi.org/articles/memleak2.html" rel="nofollow">A day in the life of a memory leak hunter</a> </p> <p><a href="http://www.szegedi.org/articles/memleak2.html" rel="nofollow">Yet another day in the life of a memory leak hunter</a></p> <p><a href="http://www.szegedi.org/articles/memleak3.html" rel="nofollow">Memory leak hunting still doesn't end, or: Serialization also requires a bit of manually imposed amnesia</a></p> http://stackoverflow.com/questions/316461/what-are-the-best-programming-articles/364135#364135 1 Answer by John Dunagan for What are the best programming articles? John Dunagan 2008-12-12T21:04:40Z 2008-12-12T21:04:40Z <p>Anything in <a href="http://www.hanselminutes.com" rel="nofollow">Hanselminutes</a>, or <a href="http://www.hanselman.com" rel="nofollow">Scott's Blog</a>. Saved my ass ongoing quite a few times.</p> http://stackoverflow.com/questions/316461/what-are-the-best-programming-articles/372089#372089 12 Answer by Matt for What are the best programming articles? Matt 2008-12-16T17:45:08Z 2008-12-16T17:45:08Z <p><a href="http://www.joelonsoftware.com/articles/LeakyAbstractions.html" rel="nofollow">The Law of Leaky Abstractions</a> by Joel Spolsky.</p> http://stackoverflow.com/questions/316461/what-are-the-best-programming-articles/373472#373472 1 Answer by lillq for What are the best programming articles? lillq 2008-12-17T02:13:52Z 2008-12-17T02:13:52Z <p><a href="http://www.smashingmagazine.com/2008/12/15/10-useful-techniques-to-improve-your-user-interface-designs/" rel="nofollow">10 Useful Techniques To Improve Your User Interface Designs</a> by Dmitry Fadeyev.</p> http://stackoverflow.com/questions/316461/what-are-the-best-programming-articles/398085#398085 3 Answer by Thorsten79 for What are the best programming articles? Thorsten79 2008-12-29T16:45:12Z 2008-12-29T16:45:12Z <p><a href="http://www.fastcompany.com/magazine/06/writestuff.html" rel="nofollow">They Write The Right Stuff</a>, a timeless article by Charles Fishman published in FastCompany 1996.</p> http://stackoverflow.com/questions/316461/what-are-the-best-programming-articles/398751#398751 0 Answer by lillq for What are the best programming articles? lillq 2008-12-29T21:36:08Z 2008-12-29T21:36:08Z <p><a href="http://se.ethz.ch/~meyer/publications/computer/quality_first.pdf" rel="nofollow">Practice To Perfect: The Quality First Model</a> by Bertrand Meyer.</p> http://stackoverflow.com/questions/316461/what-are-the-best-programming-articles/398772#398772 0 Answer by lillq for What are the best programming articles? lillq 2008-12-29T21:42:15Z 2008-12-29T21:42:15Z <p><a href="http://www.acm.org/ubiquity/views/t_burns_1.html" rel="nofollow">Effective Unit Testing</a> by Tim Burns.</p> http://stackoverflow.com/questions/316461/what-are-the-best-programming-articles/400176#400176 2 Answer by Roberto Russo for What are the best programming articles? Roberto Russo 2008-12-30T12:44:26Z 2009-01-18T19:05:53Z <p><strong><a href="http://samizdat.mines.edu/howto/HowToBeAProgrammer.html?p=1" rel="nofollow">How to be a Programmer: A Short, Comprehensive, and Personal Summary</a> by Robert L. Read</strong></p> <p><em>«To be a good programmer is difficult and noble. The hardest part of making real a collective vision of a software project is dealing with one's coworkers and customers. Writing computer programs is important and takes great intelligence and skill. But it is really child's play compared to everything else that a good programmer must do to make a software system that succeeds for both the customer and myriad colleagues for whom she is partially responsible. In this essay I attempt to summarize as concisely as possible those things that I wish someone had explained to me when I was twenty-one.»</em></p> http://stackoverflow.com/questions/316461/what-are-the-best-programming-articles/455737#455737 1 Answer by mangst for What are the best programming articles? mangst 2009-01-18T19:18:18Z 2009-01-18T19:18:18Z <p>This blog post by a Google employee named Ben Sussman talks about how, due to the anonymous nature of the Internet, we programmers will accept nothing but perfection from ourselves and eachother. This is very different from other professions, where mistakes are expected to happen and people are expected to learn from them.</p> <p><a href="http://blog.red-bean.com/sussman/?p=96" rel="nofollow">http://blog.red-bean.com/sussman/?p=96</a></p> http://stackoverflow.com/questions/316461/what-are-the-best-programming-articles/473318#473318 2 Answer by JDKing for What are the best programming articles? JDKing 2009-01-23T15:28:06Z 2009-01-23T15:28:06Z <p>Awesome article on unicode and character sets.</p> <p><a href="http://www.joelonsoftware.com/articles/Unicode.html" rel="nofollow">The Absolute Minimum Every Software Developer Absolutely, Positively Must Know About Unicode and Character Sets (No Excuses!) by Joel Spolsky</a></p> http://stackoverflow.com/questions/316461/what-are-the-best-programming-articles/473413#473413 1 Answer by Jonik for What are the best programming articles? Jonik 2009-01-23T15:53:46Z 2009-01-23T15:53:46Z <p>An insightful article about good software development practices - not strictly about programming as in writing code. </p> <p><a href="http://martinfowler.com/articles/continuousIntegration.html" rel="nofollow">Continuous Integration</a> by Martin Fowler</p> <p>I remember this was somewhat eye-opening when first reading it a few years ago, and have later come to consider this stuff quite essential.</p> http://stackoverflow.com/questions/316461/what-are-the-best-programming-articles/474671#474671 1 Answer by Matt for What are the best programming articles? Matt 2009-01-23T21:35:30Z 2009-01-23T21:35:30Z <p><a href="http://www.paulgraham.com/hundred.html" rel="nofollow">The Hundred-Year Language</a> by Paul Graham.</p> http://stackoverflow.com/questions/316461/what-are-the-best-programming-articles/474691#474691 1 Answer by Matt for What are the best programming articles? Matt 2009-01-23T21:38:56Z 2009-01-23T21:38:56Z <p><a href="http://computerprogramming.suite101.com/article.cfm/xp_software_programming_paradigm" rel="nofollow">XP Software Programming Paradigm</a> by Guy Lecky-Thompson.</p> http://stackoverflow.com/questions/316461/what-are-the-best-programming-articles/474808#474808 0 Answer by John Nilsson for What are the best programming articles? John Nilsson 2009-01-23T22:08:48Z 2009-01-23T22:08:48Z <p><a href="http://www.ics.uci.edu/~fielding/pubs/dissertation/top.htm" rel="nofollow">Architectural Styles and the Design of Network-based Software Architectures</a></p> <p>At least chapter 5 and 6 should be read by anyone in doing anything web related.</p> http://stackoverflow.com/questions/316461/what-are-the-best-programming-articles/474832#474832 0 Answer by John Nilsson for What are the best programming articles? John Nilsson 2009-01-23T22:15:05Z 2009-01-23T22:15:05Z <p><a href="http://www.vpri.org/pdf/tr2007008_steps.pdf" rel="nofollow">STEPS Toward The Reinvention of Programming</a></p> <p>"The STEPS project is setting out to create “Moore’s Law Software”: a high-risk high-reward exploratory research effort to create a large-scope-and-range software system in 3-4 orders of magnitude less code than current practice."</p> http://stackoverflow.com/questions/316461/what-are-the-best-programming-articles/475164#475164 0 Answer by Jonik for What are the best programming articles? Jonik 2009-01-24T00:17:15Z 2009-01-24T00:17:15Z <p>Here's another article about good development practices, namely version control:</p> <p><a href="http://www.infoq.com/articles/agile-version-control" rel="nofollow">Version Control for Multiple Agile Teams</a> by Henrik Kniberg, posted at <a href="http://www.infoq.com" rel="nofollow">InfoQ</a></p> <p>From the introduction:</p> <blockquote> <p>If we have several agile development teams working on the same codebase, how do we minimize the risk of stumbling over each other? How do we ensure that there always is a clean, releasable version at the end of each iteration? This paper describes an example of how to handle version control in an agile environment with multiple teams - it is the scheme that we migrated to at the company described in "<a href="http://www.infoq.com/news/2007/06/scrum-xp-book" rel="nofollow">Scrum and XP from the Trenches</a>".</p> </blockquote> <p>The article talks about using short-lived devel branches to achieve <em>stable trunk</em>, into which goes only stuff that is <em>done</em>. At my work, we've generally had good experiences of applying these ideas, with two scrum teams working on one codebase. There's some overhead about the extra branching and merging (some of which can be automated away), but having stable trunk, from where a release could be made at any time, is a big plus.</p> http://stackoverflow.com/questions/316461/what-are-the-best-programming-articles/517886#517886 1 Answer by Matt for What are the best programming articles? Matt 2009-02-05T21:00:03Z 2009-02-05T21:00:03Z <p><a href="http://www.joelonsoftware.com/items/2007/10/26.html" rel="nofollow">Evidence Based Scheduling</a> by Joel Spolsky.</p> http://stackoverflow.com/questions/316461/what-are-the-best-programming-articles/568650#568650 2 Answer by jsha for What are the best programming articles? jsha 2009-02-20T08:00:23Z 2009-02-20T08:00:23Z <p><a href="http://www.catb.org/~esr/faqs/hacker-howto.html" rel="nofollow">How to become a hacker</a> by Eric Steven Raymond.</p> http://stackoverflow.com/questions/316461/what-are-the-best-programming-articles/620541#620541 1 Answer by Comptrol for What are the best programming articles? Comptrol 2009-03-06T21:41:29Z 2009-03-06T21:41:29Z <p>Notes on the Foundations of Programming <a href="http://blazer.dreamhosters.com/papers/PAM.pdf" rel="nofollow">I</a> and <a href="http://blazer.dreamhosters.com/papers/FOP2.pdf" rel="nofollow">II</a></p> <p>By <a href="http://en.wikipedia.org/wiki/Alexander%5FStepanov" rel="nofollow">Alexander Stepanov</a></p> http://stackoverflow.com/questions/316461/what-are-the-best-programming-articles/735333#735333 1 Answer by lillq for What are the best programming articles? lillq 2009-04-09T18:16:19Z 2009-04-10T21:25:59Z <p><strong><a href="http://blog.stackoverflow.com/2009/04/what-stack-overflow-can-teach-you/" rel="nofollow">What Stack Overflow Can Teach You</a></strong> by Jeff Atwood.</p> <p>This article describes eloquently the way that feedback helps you grow as a programmer, and shows how that is a key to success. </p> http://stackoverflow.com/questions/316461/what-are-the-best-programming-articles/738919#738919 0 Answer by lillq for What are the best programming articles? lillq 2009-04-10T21:25:02Z 2009-04-10T21:25:02Z <p><strong><a href="http://www.itu.dk/~slauesen/Papers/SixStyles.pdf" rel="nofollow">Six Styles for Usability Requirements</a></strong> by Soren Lauesen &amp; Houman Younessi</p> <p>I was looking into how to define usability as a requirement and came across this article. It is well written and was very helpful.</p> <p><strong>Abstract.</strong> A system can have adequate functionality, but inadequate usability because it is too difficult to use. The purpose of usability requirements is to guard against that. This paper shows six styles for usability requirements seen in practice or recommended by experts. For each style we discuss how we can verify the requirements, how we can use them during development, how we elicit the data for the specification, and to what extent the style covers the essence of usability.</p> http://stackoverflow.com/questions/316461/what-are-the-best-programming-articles/921997#921997 1 Answer by Comptrol for What are the best programming articles? Comptrol 2009-05-28T16:56:12Z 2009-05-28T17:01:14Z <p>Any article published in <a href="http://www.ericsink.com/archive%5Findex.html" rel="nofollow">Eric.Weblog</a> by Eric Sink.</p> <p>For instance, one of the worthwhile articles is <a href="http://www.ericsink.com/articles/Four%5FQuestions.html" rel="nofollow">My Life as a Code Economist</a>, which briefly describes when to fix a bug. Following picture summarizes his point of view on this topic:</p> <p><img src="http://www.ericsink.com/articles/1564%5Fimage001.jpg" alt="alt text" /></p> http://stackoverflow.com/questions/316461/what-are-the-best-programming-articles/1216141#1216141 1 Answer by Comptrol for What are the best programming articles? Comptrol 2009-08-01T08:09:29Z 2009-08-01T08:09:29Z <p><a href="http://www.sans.org/top25errors/" rel="nofollow">Top 25 Most Dangerous Programming Errors</a></p> <p>additionally: <a href="http://stackoverflow.com/questions/438073/do-stackoverflow-users-agree-with-the-cwe-sans-top-25-most-dangerous-programming">Do stackoverflow users agree with the CWE/SANS Top 25 most dangerous programming mistakes?</a></p> http://stackoverflow.com/questions/316461/what-are-the-best-programming-articles/1292958#1292958 1 Answer by yeyeyerman for What are the best programming articles? yeyeyerman 2009-08-18T10:03:20Z 2009-08-18T10:03:20Z <p>The beginning of Google. This must be the research with the biggest ROI of all times:</p> <p><a href="http://infolab.stanford.edu/~backrub/google.html" rel="nofollow">The Anatomy of a Large-Scale Hypertextual Web Search Engine</a></p> http://stackoverflow.com/questions/316461/what-are-the-best-programming-articles/1449433#1449433 1 Answer by asdi for What are the best programming articles? asdi 2009-09-19T20:25:05Z 2009-09-19T20:25:05Z <p><a href="http://www.joelonsoftware.com/articles/fog0000000339.html" rel="nofollow">Fire And Motion by Joel Spolsky</a></p> <p>It’s brief but true inspiration. Remember, long lines of code does not mean it’s a good programs</p> http://stackoverflow.com/questions/316461/what-are-the-best-programming-articles/1619596#1619596 0 Answer by Cape Cod Gunny for What are the best programming articles? Cape Cod Gunny 2009-10-25T00:29:28Z 2009-10-25T00:29:28Z <p>The ones that appeared in PC Techniques... Jeff Duntemann's magazine.</p>