商品描述
ABOUT THE BOOK Jeff Atwood began the Coding Horror blog in 2004, and is convinced that it changed his life. He needed a way to keep track of software development over time - whatever he was thinking about or working on. He researched subjects he found interesting, then documented his research with a public blog post, which he could easily find and refer to later. Over time, increasing numbers of blog visitors found the posts helpful, relevant and interesting. Now, approximately 100,000 readers visit the blog per day and nearly as many comment and interact on the site. Effective Programming: More Than Writing Code is your one-stop shop for all things programming. Jeff writes with humor and understanding, allowing for both seasoned programmers and newbies to appreciate the depth of his research. From such posts as "The Programmer's Bill of Rights" and "Why Cant Programmers... Program?" to "Working With the Chaos Monkey," this book introduces the importance of writing responsible code, the logistics involved, and how people should view it more as a lifestyle than a career. TABLE OF CONTENTS - Introduction - The Art of Getting Shit Done - Principles of Good Programming - Hiring Programmers the Right Way - Getting Your Team to Work Together - The Batcave: Effective Workspaces for Programmers - Designing With the User in Mind - Security Basics: Protecting Your Users' Data - Testing Your Code, So it Doesn't Suck More Than it Has To - Building, Managing and Benefiting from a Community - Marketing Weasels and How Not to Be One - Keeping Your Priorities Straight EXCERPT FROM THE BOOK As a software developer, you are your own worst enemy. The sooner you realize that, the better off you'll be.I know you have the best of intentions. We all do. We're software developers; we love writing code. It's what we do. We never met a problem we couldn't solve with some duct tape, a jury-rigged coat hanger and a pinch of code. But Wil Shipley argues that we should rein in our natural tendencies to write lots of code: The fundamental nature of coding is that our task, as programmers, is to recognize that every decision we make is a trade-off. To be a master programmer is to understand the nature of these trade-offs, and be conscious of them in everything we write.In coding, you have many dimensions in which you can rate code: Brevity of codeFeaturefulnessSpeed of executionTime spent codingRobustnessFlexibility Now, remember, these dimensions are all in opposition to one another. You can spend three days writing a routine which is really beautiful and fast, so you've gotten two of your dimensions up, but you've spent three days, so the "time spent coding" dimension is way down.So, when is this worth it? How do we make these decisions? The answer turns out to be very sane, very simple, and also the one nobody, ever, listens to: Start with brevity. Increase the other dimensions as required by testing. I couldn't agree more. I've given similar advice when I exhorted developers to Code Smaller. And I'm not talking about a reductio ad absurdum contest where we use up all the clever tricks in our books to make the code fit into less physical space. I'm talking about practical, sensible strategies to reduce the volume of code an individual programmer has to read to understand how a program works. Here's a trivial little example of what I'm talking about: if (s == String.Empty)if (s == "") It seems obvious to me that the latter case is... ...buy the book to read more!
商品描述(中文翻譯)
關於本書
Jeff Atwood 在 2004 年開始了 Coding Horror 部落格,並深信這改變了他的生活。他需要一種方式來追蹤軟體開發的過程——無論是他在思考還是工作的內容。他研究了自己感興趣的主題,然後用公開的部落格文章記錄他的研究,這樣他可以輕鬆找到並在以後參考。隨著時間的推移,越來越多的部落格訪客發現這些文章有幫助、相關且有趣。現在,大約有 100,000 名讀者每天造訪這個部落格,幾乎同樣多的人在網站上留言和互動。
《有效的程式設計:不僅僅是寫程式》是你所有程式設計相關事物的一站式商店。Jeff 以幽默和理解的方式寫作,讓資深程式設計師和新手都能欣賞他研究的深度。從《程式設計師的權利法案》和《為什麼程式設計師不能... 程式?》到《與混沌猴子合作》,這本書介紹了撰寫負責任程式碼的重要性、相關的後勤問題,以及人們應該如何將其視為一種生活方式而非職業。
目錄
- 引言
- 完成工作的藝術
- 良好程式設計的原則
- 正確聘用程式設計師
- 讓你的團隊協同工作
- 蝙蝠洞:程式設計師的有效工作空間
- 以使用者為中心的設計
- 安全基礎:保護用戶數據
- 測試你的程式碼,讓它不會比必要的更糟
- 建立、管理並從社群中受益
- 行銷狡猾者及如何不成為其中之一
- 明確你的優先事項
書摘
作為一名軟體開發者,你是自己最大的敵人。你越早意識到這一點,你就會越好。我知道你有最好的意圖。我們都是。我們是軟體開發者;我們喜歡寫程式。這就是我們的工作。我們從未遇到過一個無法用一些膠帶、一根臨時改裝的衣架和一小撮程式碼解決的問題。但 Wil Shipley 認為我們應該控制自己寫大量程式碼的自然傾向:
程式設計的根本特性在於,我們作為程式設計師的任務是認識到我們所做的每一個決策都是一種取捨。成為一名大師級程式設計師就是要理解這些取捨的本質,並在我們所寫的每一行程式碼中意識到它們。
在程式設計中,你可以從多個維度來評估程式碼:
- 程式碼的簡潔性
- 功能性
- 執行速度
- 編碼所花的時間
- 穩健性
- 靈活性
現在,請記住,這些維度彼此是對立的。你可以花三天時間寫一個非常美觀且快速的例程,這樣你就提高了兩個維度,但你花了三天時間,因此「編碼所花的時間」這個維度就大幅下降了。
那麼,這樣的付出何時是值得的?我們如何做出這些決策?答案非常理智、非常簡單,並且也是沒有人會聽的:從簡潔開始。根據測試的需要提高其他維度。
我完全同意。我曾經給出過類似的建議,鼓勵開發者寫出更小的程式碼。我不是在談論一場荒謬的比賽,在這場比賽中,我們用盡所有巧妙的技巧來讓程式碼適應更小的物理空間。我在談論的是實用、合理的策略,以減少個別程式設計師必須閱讀的程式碼量,以理解一個程式是如何運作的。這裡有一個我所談論的微不足道的例子:
if (s == String.Empty)
if (s == '')
對我來說,後者的情況似乎顯而易見……
……購買本書以了解更多!