锘??xml version="1.0" encoding="utf-8" standalone="yes"?>亚洲AV日韩AV天堂久久,7777久久亚洲中文字幕,国产精品一久久香蕉国产线看观看http://m.shnenglu.com/zft19/鍋氳嚜宸卞枩嬈㈢殑浜嬫儏zh-cnSat, 28 Jun 2025 12:13:36 GMTSat, 28 Jun 2025 12:13:36 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 鍙戣〃璇勮
]]>
亚洲伊人久久成综合人影院 | 精品久久久久久久久久中文字幕 | 国产精品日韩深夜福利久久| 欧美亚洲国产精品久久蜜芽| 精品久久久久中文字幕一区| 亚洲国产欧美国产综合久久| 狠狠色丁香久久综合婷婷| 久久精品中文字幕第23页| 亚洲国产另类久久久精品黑人| 久久久久久久尹人综合网亚洲| 亚洲国产小视频精品久久久三级| 久久精品九九亚洲精品| 无码任你躁久久久久久久| 久久精品成人免费网站| 久久亚洲国产精品成人AV秋霞| 久久精品国产免费| 欧美噜噜久久久XXX| 久久久久国产日韩精品网站| 久久99免费视频| 色婷婷综合久久久中文字幕| 综合久久精品色| 777久久精品一区二区三区无码| 日韩乱码人妻无码中文字幕久久| 午夜精品久久久久久影视riav| 91秦先生久久久久久久| 996久久国产精品线观看| 久久人妻无码中文字幕| 欧美麻豆久久久久久中文| 91精品无码久久久久久五月天| 久久午夜伦鲁片免费无码| 99精品国产99久久久久久97| 亚洲美日韩Av中文字幕无码久久久妻妇| 久久精品免费一区二区三区| 久久精品人成免费| 久久99精品久久久久久hb无码| 国产成人精品综合久久久久| 狠狠综合久久AV一区二区三区| 777午夜精品久久av蜜臀 | 美女久久久久久| 最新久久免费视频| 久久精品国产男包|