The patterns-and-practices tag has no wiki summary.
10
votes
4answers
614 views
Design/Architecture Patterns & Practices for Web Development [closed]
Edited for brevity:
What software engineering tools/practices and design/architectural patterns are used in web application development? What tools and practices would large companies or large web ...
16
votes
9answers
392 views
What to do as a new team lead on a project with maintainability problems?
I have just been put in charge of a code project with maintainability problems. What things can I do to get the project on a stable footing?
I find myself in a place where we are working with a very ...
17
votes
12answers
935 views
What design patterns are the worst or most narrowly defined?
For every programming project, Managers with past programming experience try to shine when they recommend some design patterns for your project. I like design patterns when they make sense or if you ...
6
votes
3answers
302 views
What is the pattern name for using method chaining to build an object?
I frequently use a pattern where I using method chaining to setup an object, similar to a Builder or Prototype pattern, but not creating new objects with each method call, instead modifying the ...
1
vote
1answer
97 views
How do you deal with errors in enumeration / list processing (lowish-level API)
Ive struggled with variants of this problem many times, experimenting with different solutions, happy with none.
Abstract: Enumerating a list of items, an error for one item does not affect the ...