锘??xml version="1.0" encoding="utf-8" standalone="yes"?>亚洲AV日韩AV天堂久久,7777久久亚洲中文字幕,国产精品一久久香蕉国产线看观看http://www.shnenglu.com/zft19/鍋氳嚜宸卞枩嬈㈢殑浜嬫儏zh-cnSat, 28 Jun 2025 12:13:36 GMTSat, 28 Jun 2025 12:13:36 GMT60浜屾墜涔︿究瀹滃嚭鍞?/title><link>http://www.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://www.shnenglu.com/zft19/archive/2014/08/21/208075.html</guid><wfw:comment>http://www.shnenglu.com/zft19/comments/208075.html</wfw:comment><comments>http://www.shnenglu.com/zft19/archive/2014/08/21/208075.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.shnenglu.com/zft19/comments/commentRss/208075.html</wfw:commentRss><trackback:ping>http://www.shnenglu.com/zft19/services/trackbacks/208075.html</trackback:ping><description><![CDATA[@import url(http://www.shnenglu.com/CuteSoft_Client/CuteEditor/Load.ashx?type=style&file=SyntaxHighlighter.css);@import url(/css/cuteeditor.css); 鍑哄敭濡備笅浜屾墜涔︼細@import url(http://www.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://www.shnenglu.com/zft19/aggbug/208075.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.shnenglu.com/zft19/" target="_blank">Smile</a> 2014-08-21 07:50 <a href="http://www.shnenglu.com/zft19/archive/2014/08/21/208075.html#Feedback" target="_blank" style="text-decoration:none;">鍙戣〃璇勮</a></div>]]></description></item><item><title>Readme椹卞姩寮鍙?杞?http://www.shnenglu.com/zft19/archive/2011/08/11/153079.htmlSmileSmileThu, 11 Aug 2011 10:20:00 GMThttp://www.shnenglu.com/zft19/archive/2011/08/11/153079.htmlhttp://www.shnenglu.com/zft19/comments/153079.htmlhttp://www.shnenglu.com/zft19/archive/2011/08/11/153079.html#Feedback0http://www.shnenglu.com/zft19/comments/commentRss/153079.htmlhttp://www.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://www.shnenglu.com/zft19/archive/2007/12/10/38182.htmlSmileSmileMon, 10 Dec 2007 09:30:00 GMThttp://www.shnenglu.com/zft19/archive/2007/12/10/38182.htmlhttp://www.shnenglu.com/zft19/comments/38182.htmlhttp://www.shnenglu.com/zft19/archive/2007/12/10/38182.html#Feedback0http://www.shnenglu.com/zft19/comments/commentRss/38182.htmlhttp://www.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无码AV| 一本一道久久综合狠狠老| 久久成人国产精品免费软件| 久久久久AV综合网成人| 国产三级观看久久| 亚洲AV无码久久精品蜜桃| 久久综合狠狠综合久久| 久久精品国产亚洲AV不卡| 久久人人爽人人爽人人片AV麻烦| AV狠狠色丁香婷婷综合久久 | 国产精品无码久久综合网| 久久国产成人亚洲精品影院| 亚洲国产精品高清久久久| 91精品日韩人妻无码久久不卡| 国产精品99久久久精品无码 | 亚洲国产精品久久久久婷婷软件| 蜜桃麻豆www久久国产精品| 久久亚洲AV成人无码电影| 久久伊人亚洲AV无码网站| 四虎国产精品免费久久5151| 午夜欧美精品久久久久久久| 亚洲精品无码久久不卡| 国产精品免费看久久久香蕉| 国产精品对白刺激久久久| 亚洲国产精品无码久久久秋霞2| 久久强奷乱码老熟女| 天天久久狠狠色综合| 久久久久亚洲av无码专区导航| 亚洲欧洲精品成人久久奇米网| 久久99久久99小草精品免视看| 热99RE久久精品这里都是精品免费 | 无码国产69精品久久久久网站| 日韩一区二区三区视频久久| 国产精品热久久毛片| 久久国产成人午夜aⅴ影院 | 久久久久这里只有精品 | 久久99亚洲网美利坚合众国| 亚洲中文字幕久久精品无码APP|