锘??xml version="1.0" encoding="utf-8" standalone="yes"?>97久久精品无码一区二区,狠狠精品久久久无码中文字幕,26uuu久久五月天http://www.shnenglu.com/zft19/鍋氳嚜宸卞枩嬈㈢殑浜嬫儏zh-cnSat, 28 Jun 2025 12:42:20 GMTSat, 28 Jun 2025 12:42:20 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 鍙戣〃璇勮
]]>
2021国内久久精品| 狠狠色丁香婷婷久久综合不卡| 情人伊人久久综合亚洲| 97r久久精品国产99国产精| 国产成人久久久精品二区三区| 亚洲一本综合久久| 亚洲&#228;v永久无码精品天堂久久| 久久久国产视频| 好属妞这里只有精品久久| 国产精品免费久久久久影院| 一本大道久久香蕉成人网| 蜜臀久久99精品久久久久久小说| 国产精品久久免费| 日本久久久久久久久久| 国产精品99久久免费观看| 亚洲&#228;v永久无码精品天堂久久| 久久久久久久人妻无码中文字幕爆| 国产成人精品久久亚洲| 亚洲国产精品无码久久一区二区| 青青热久久综合网伊人| 久久不见久久见免费视频7| 午夜视频久久久久一区 | 亚洲国产精品久久久天堂 | 人妻精品久久久久中文字幕69 | 久久se精品一区精品二区国产| 99精品国产免费久久久久久下载| 久久99国产精品久久| 久久综合精品国产二区无码| 中文字幕久久精品| 久久影院亚洲一区| 久久久久国产| 久久99精品久久久久久齐齐| 久久久久久免费一区二区三区| 看久久久久久a级毛片| 18禁黄久久久AAA片| 亚洲国产成人精品无码久久久久久综合 | 国产亚洲婷婷香蕉久久精品| 中文字幕久久精品无码| 伊人精品久久久久7777| 欧美精品丝袜久久久中文字幕| 国产一区二区精品久久凹凸|