锘??xml version="1.0" encoding="utf-8" standalone="yes"?>久久久欧美精品,久久欧美肥婆一二区,久久久青草青青国产亚洲免观http://m.shnenglu.com/zft19/鍋氳嚜宸卞枩嬈㈢殑浜嬫儏zh-cnSun, 24 Aug 2025 10:28:33 GMTSun, 24 Aug 2025 10:28:33 GMT60浜屾墜涔︿究瀹滃嚭鍞?/title><link>http://m.shnenglu.com/zft19/archive/2014/08/21/208075.html</link><dc:creator>Smile</dc:creator><author>Smile</author><pubDate>Wed, 20 Aug 2014 23:50:00 GMT</pubDate><guid>http://m.shnenglu.com/zft19/archive/2014/08/21/208075.html</guid><wfw:comment>http://m.shnenglu.com/zft19/comments/208075.html</wfw:comment><comments>http://m.shnenglu.com/zft19/archive/2014/08/21/208075.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://m.shnenglu.com/zft19/comments/commentRss/208075.html</wfw:commentRss><trackback:ping>http://m.shnenglu.com/zft19/services/trackbacks/208075.html</trackback:ping><description><![CDATA[@import url(http://m.shnenglu.com/CuteSoft_Client/CuteEditor/Load.ashx?type=style&file=SyntaxHighlighter.css);@import url(/css/cuteeditor.css); 鍑哄敭濡備笅浜屾墜涔︼細@import url(http://m.shnenglu.com/CuteSoft_Client/CuteEditor/Load.ashx?type=style&file=SyntaxHighlighter.css);@import url(/css/cuteeditor.css); <div> <div>銆婁竴涓搷浣滅郴緇熺殑瀹炵幇銆?/div> <div>銆奝hotoshop璁捐瀹濆吀銆?/div> <div>銆奜penGL緙栫▼鎸囧崡銆?/div> <div>銆奙ore Effective C++銆?/div> <div>銆奓inux緋葷粺綆$悊鎵嬪唽銆?/div> <div>銆奍mperfect C錛嬶紜銆?/div> <div>銆奊RE璇嶆眹綺鵑夈?/div> <div>銆奃SP宓屽叆寮忕郴緇熷紑鍙戝吀鍨嬫渚嬨?/div> <div>銆婃繁搴︽帰绱錛嬶紜瀵硅薄妯″瀷銆?/div> <div>銆夾dvanced C++銆?/div> </div> <div><br /> </div> <div><br /> </div> <div>灝侀潰鎴浘瑙侊細<a >http://pan.baidu.com/s/1mgDliDq</a></div> <div>鑱旂郴QQ錛?21475490</div><img src ="http://m.shnenglu.com/zft19/aggbug/208075.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://m.shnenglu.com/zft19/" target="_blank">Smile</a> 2014-08-21 07:50 <a href="http://m.shnenglu.com/zft19/archive/2014/08/21/208075.html#Feedback" target="_blank" style="text-decoration:none;">鍙戣〃璇勮</a></div>]]></description></item><item><title>Readme椹卞姩寮鍙?杞?http://m.shnenglu.com/zft19/archive/2011/08/11/153079.htmlSmileSmileThu, 11 Aug 2011 10:20:00 GMThttp://m.shnenglu.com/zft19/archive/2011/08/11/153079.htmlhttp://m.shnenglu.com/zft19/comments/153079.htmlhttp://m.shnenglu.com/zft19/archive/2011/08/11/153079.html#Feedback0http://m.shnenglu.com/zft19/comments/commentRss/153079.htmlhttp://m.shnenglu.com/zft19/services/trackbacks/153079.html

鍘熸枃鍦板潃錛?/h1>http://tom.preston-werner.com/2010/08/23/readme-driven-development.html


Readme Driven Development

23 August 2010 - San Francisco

I hear a lot of talk these days about TDD and BDD and Extreme Programming and SCRUM and stand up meetings and all kinds of methodologies and techniques for developing better software, but it's all irrelevant unless the software we're building meets the needs of those that are using it. Let me put that another way. A perfect implementation of the wrong specification is worthless. By the same principle a beautifully crafted library with no documentation is also damn near worthless. If your software solves the wrong problem or nobody can figure out how to use it, there's something very bad going on.

Fine. So how do we solve this problem? It's easier than you think, and it's important enough to warrant its very own paragraph.

Write your Readme first.

First. As in, before you write any code or tests or behaviors or stories or ANYTHING. I know, I know, we're programmers, dammit, not tech writers! But that's where you're wrong. Writing a Readme is absolutely essential to writing good software. Until you've written about your software, you have no idea what you'll be coding. Between The Great Backlash Against Waterfall Design and The Supreme Acceptance of Agile Development, something was lost. Don't get me wrong, waterfall design takes things way too far. Huge systems specified in minute detail end up being the WRONG systems specified in minute detail. We were right to strike it down. But what took its place is too far in the other direction. Now we have projects with short, badly written, or entirely missing documentation. Some projects don't even have a Readme!

This is not acceptable. There must be some middle ground between reams of technical specifications and no specifications at all. And in fact there is. That middle ground is the humble Readme.

It's important to distinguish Readme Driven Development from Documentation Driven Development. RDD could be considered a subset or limited version of DDD. By restricting your design documentation to a single file that is intended to be read as an introduction to your software, RDD keeps you safe from DDD-turned-waterfall syndrome by punishing you for lengthy or overprecise specification. At the same time, it rewards you for keeping libraries small and modularized. These simple reinforcements go a long way towards driving your project in the right direction without a lot of process to ensure you do the right thing.

By writing your Readme first you give yourself some pretty significant advantages:

  • Most importantly, you're giving yourself a chance to think through the project without the overhead of having to change code every time you change your mind about how something should be organized or what should be included in the Public API. Remember that feeling when you first started writing automated code tests and realized that you caught all kinds of errors that would have otherwise snuck into your codebase? That's the exact same feeling you'll have if you write the Readme for your project before you write the actual code.

  • As a byproduct of writing a Readme in order to know what you need to implement, you'll have a very nice piece of documentation sitting in front of you. You'll also find that it's much easier to write this document at the beginning of the project when your excitement and motivation are at their highest. Retroactively writing a Readme is an absolute drag, and you're sure to miss all kinds of important details when you do so.

  • If you're working with a team of developers you get even more mileage out of your Readme. If everyone else on the team has access to this information before you've completed the project, then they can confidently start work on other projects that will interface with your code. Without any sort of defined interface, you have to code in serial or face reimplementing large portions of code.

  • It's a lot simpler to have a discussion based on something written down. It's easy to talk endlessly and in circles about a problem if nothing is ever put to text. The simple act of writing down a proposed solution means everyone has a concrete idea that can be argued about and iterated upon.

Consider the process of writing the Readme for your project as the true act of creation. This is where all your brilliant ideas should be expressed. This document should stand on its own as a testament to your creativity and expressiveness. The Readme should be the single most important document in your codebase; writing it first is the proper thing to do.



Smile 2011-08-11 18:20 鍙戣〃璇勮
]]>ubuntu 7.10涓媑++鐨勭枒闂?http://m.shnenglu.com/zft19/archive/2007/12/10/38182.htmlSmileSmileMon, 10 Dec 2007 09:30:00 GMThttp://m.shnenglu.com/zft19/archive/2007/12/10/38182.htmlhttp://m.shnenglu.com/zft19/comments/38182.htmlhttp://m.shnenglu.com/zft19/archive/2007/12/10/38182.html#Feedback0http://m.shnenglu.com/zft19/comments/commentRss/38182.htmlhttp://m.shnenglu.com/zft19/services/trackbacks/38182.html    瑁呭畬ubuntu 7.10鍚庯紝鍦ㄥ畠涓嬮潰鍐欎簡涓涓熀鏈殑C++紼嬪簭錛岀敤g++ 4.1緙栬瘧鍚庡彂鐜頒簡涓涓護鎴戞劅鍒拌糠鎯戠殑鍦版柟銆傚涓嬬殑紼嬪簭:
   int main(int argc, char* argv[])
    {
      std::cout << "hello" << std::endl;
    }
鍦╣++涓嬫病鏈夋姤浠諱綍閿欒鍜岃鍛婏紒

Smile 2007-12-10 17:30 鍙戣〃璇勮
]]>
亚洲AV无码久久精品狠狠爱浪潮| 伊人久久大香线蕉亚洲| 久久亚洲国产精品五月天婷| 色播久久人人爽人人爽人人片aV| 中文字幕乱码久久午夜| 国产欧美久久一区二区| 久久精品国产亚洲一区二区三区| 久久精品一本到99热免费| 夜夜亚洲天天久久| 亚洲AV日韩精品久久久久久 | 一本色综合久久| 久久中文字幕一区二区| 久久精品亚洲AV久久久无码| 国产激情久久久久影院老熟女| 伊人久久精品无码av一区| 久久久受www免费人成| 亚洲国产精品久久久久| 久久强奷乱码老熟女网站| 久久久WWW免费人成精品| 国产成年无码久久久久毛片| 精品久久久久久久久免费影院| 99久久伊人精品综合观看| 99久久国产综合精品麻豆| 97精品依人久久久大香线蕉97| 久久996热精品xxxx| 女人香蕉久久**毛片精品| 97久久综合精品久久久综合| 久久精品国产亚洲精品2020 | 亚洲一区精品伊人久久伊人| 99久久无码一区人妻| 大蕉久久伊人中文字幕| 久久这里只有精品久久| 一本久久久久久久| 精品国产一区二区三区久久蜜臀| 狠狠综合久久综合中文88| 国内精品久久久久久久影视麻豆| 成人精品一区二区久久久| 久久综合伊人77777| 久久久久亚洲AV片无码下载蜜桃| 国产精品久久久久久久久久影院| 国产69精品久久久久观看软件|