98
votes
15answers
8k views
What are MVP and MVC and what is the difference?
When looking beyond the RAD (drag-drop and configure) way of building User Interfaces that many tools encourage you are likely to come across 2 design patterns called Model-View-Controller and …
34
votes
15answers
1k views
Long list of if statements in Java
Hi,
Sorry I can't find a question answering this, I'm almost certain someone else has raised it before.
My problem is that I'm writing some system libraries to run embedded devices. I have …
33
votes
11answers
2k views
What is Inversion of Control?
Inversion of Control (or IoC) can be quite confusing when it is first encountered.
What is it?
What problems does it solve?
When is it appropriate and when not?
23
votes
21answers
3k views
Lua Patterns,Tips and Tricks
This is a Tips & Tricks question with the purpose of letting people accumulate their patterns, tips and tricks for Lua.
Lua is a great scripting language, however there is a lack of documented …
20
votes
15answers
466 views
Are there any Debugging Patterns?
Hi,
I know there are many popular and useful Design Patters.
Are there something like them for debugging scenarios? Maybe not patterns but methodologies which are categorized and that can be used …
19
votes
19answers
5k views
Efficient way to implement singleton pattern in Java
Efficient way to implement singleton pattern in Java?
17
votes
9answers
2k views
Dependency Injection vs Factory Pattern
Most of the examples quoted for usage of Dependency Injection, we can solve using the factory pattern as well. Looks like when it comes to usage/design the difference between dependency injection and …
14
votes
10answers
559 views
Do we need a new GoF book?
Someone asked What is a Wrapper? and it got me thinking - where would I point a new developer in search of some foundational description of useful patterns?
The GoF book has long been a foundational …
13
votes
22answers
962 views
What are common concurrency pitfalls?
I'm looking into educating our team on concurrency. What are the most common pitfalls developers fall into surrounding concurrency. For instance, in .Net the keyword static opens the door to a lot of …
12
votes
6answers
4k views
Repository pattern tutorial in C#
Can anyone recommend good tutorial on repository pattern usage, in C#?
10
votes
9answers
1k views
Zero SQL deadlock by design - any coding patterns?
I am encountering very infrequent yet annoying SQL deadlocks on a .NET 2.0 webapp running on top of MS SQL Server 2005. In the past, we have been dealing with the SQL deadlocks in the very empirical …
9
votes
5answers
220 views
Python: is using “..%(var)s..” % locals() a good practice ?
I discovered this pattern (or anti-pattern) and I am very happy with it.
I feel it is very agile:
def example():
age = ...
name = ...
print "hello %(name)s you are %(age)s years old" % …
9
votes
5answers
661 views
data structure used to implement UNDO and REDO option
I want to implement UNDO and REDO option(as we see in MS word etc). Can you suggest me a data structure for it, and how can i implement it.?
8
votes
8answers
227 views
Java Web Application Configuration Patterns
Are there any patterns or best practices that can be used to simplify changing configuration profiles for java web applications across multiple environments. e.g. JDBC URLs, SOAP end-points, etc.
…
8
votes
11answers
555 views
Programmatically detecting “most important content” on a page…
What work, if any, has been done to automatically determine the most important data within an html document? As an example, think of your standard news/blog/magazine-style website, containing …
