download zip of files only
Fri Jan 06 03:17:18 GMT 2023
From /weblog/design
i wonder if it makes sense to refactor from this: public void someMethod(SomeClass someObject) { if(someObject != null){ do something ... } } to this: public void someMethod(SomeClass someObject) { if(someObject == null) return; do something ... }
http://groups.yahoo.com/group/refactoring/message/3385 The other discussion about flow control presentation - http://www.artima.com/forums/flat.jsp?forum=106&thread=211172 A Response to “Stop Using If-Else Statements” - https://betterprogramming.pub[..]op-using-if-else-statements-c3d4c64c69af
(google search)
(amazon search)
Thu Nov 03 23:37:56 GMT 2022
From /weblog/design
When XP says "go for the simplest possible design", what does that mean? 1. Simplest possible design to IMPLEMENT? 1. Simplest possible design to UNDERSTAND LATER? An thread discuss how far should we go. Seen most people agree what should be done is "Simplest possible design to TEST and IMPLEMENT" http://groups.yahoo.com/group/extremeprogramming/message/90466 It apply on feature, not on quality - http://martinfowler.com/bliki/Yagni.html Don’t write reusable code - https://medium.com[..]sb/dont-write-reusable-code-a857e925b683
(google search)
(amazon search)
Sun Sep 18 21:04:57 GMT 2022
From /weblog/design
Generally, how a search engine work - http://horicky.blogspot.com/2010/03/search-engine-basics.html Search engine logic - http://www.infoq.com[..]ne-scheduling-architecture-for-reference Don't tell me everything you know - limit to specific set of datas , like ameture / professional Ask me the next most reasonable question Offer me to establish my search identity http://jooto.com[..]008/01/05/how-to-improve-search-engines/ https://advancedweb.hu/intro-to-lucene/
(google search)
(amazon search)
Tue Jun 21 00:19:50 GMT 2022
From /weblog/design
A nice table:
Do
|
Don't
|
1. Focus on interfaces. |
2. Be worried about the implementation. |
3. Mention semantic contract using interfaces. |
4. Let subtypes break this semantic contract of their parent types. |
5. Service decoupling using interfaces. |
6. Be coupled with specific concrete implementation. |
7. Family extension using interfaces. |
8. Break the family relationship using concrete implementation. |
9. Establish a family rule by abstract classes. |
10. Impose your own rule through concrete classes. |
11. Let interfaces answer all "what" about the system. |
12. Forget to mention "how" are you answering all "what" from interfaces. |
Also a good introduction of Strategy pattern
http://today.java.net[..]/03/28/testing-java-object-oriented.html
How to determine the levels of abstraction - http://programmers.stackexchange.com[..]w-to-determine-the-levels-of-abstraction
Simple and clear, good design -> Correct, clear, easy to change - http://randomartifacts.blogspot.com.au[..]rrectness-clarity-and-changeability.html
Data Oriented Programming in Java - https://www.infoq.com/articles/data-oriented-programming-java/
(google search)
(amazon search)
|
Sat May 21 13:06:44 GMT 2022 From /weblog/design/examples
socialmedia
Open Sourcing Twitter’s Algorithm Part 1: How Twitter Works - https://transitivebullsh.it/oss-twitter-algorithm-part-1 https://www.infoq.cn/article/Es2BoMREB9JofbzQ2SBU
(google search) (amazon search)