Tagged Questions
The patterns tag has no wiki summary.
359
votes
15answers
60k 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 ...
162
votes
13answers
28k 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?
116
votes
10answers
49k views
Repository pattern tutorial in C#
Can anyone recommend good tutorial on repository pattern usage, in C#?
73
votes
17answers
29k views
Efficient way to implement singleton pattern in Java
Efficient way to implement singleton pattern in Java?
57
votes
11answers
10k 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 ...
54
votes
28answers
12k views
Lua Patterns,Tips and Tricks [closed]
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 ...
52
votes
15answers
3k views
Long list of if statements in Java
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 commands ...
33
votes
6answers
11k views
Singletons vs. Application Context in Android?
Recalling this post enumerating several problems of using singletons
and having seen several examples of Android applications using singleton pattern, I wonder if it's a good idea to use Singletons ...
28
votes
7answers
787 views
In JavaScript, what is the advantage of !function(){}() over (function () {})()? [closed]
Possible Duplicate:
What does the exclamation mark do before the function?
I've long used the following for self-executing, anonymous functions in JavaScript:
(function () { /* magic ...
25
votes
15answers
720 views
Are there any Debugging Patterns?
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 ...
23
votes
7answers
3k views
What's the difference between the Dependency Injection and Service Locator patterns?
Both patterns seem like an implementation of the principle of inversion of control. That is, that an object should not know how to construct its dependencies.
Dependency Injection (DI) seems to use ...
22
votes
9answers
4k 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.
...
21
votes
7answers
7k views
Tips for writing fluent interfaces in C# 3
I'm after some good tips for fluent interfaces in C#. I'm just learning about it myself but keen to hear what others think outside of the articles I am reading. In particular I'm after:
when is ...
20
votes
22answers
2k 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 ...
18
votes
5answers
597 views
Real World Functional Programming in Scala
Soooo...
Semigroups, Monoids, Monads, Functors, Lenses, Catamorphisms, Anamorphisms, Arrows... These all sound good, and after an exercise or two (or ten), you can grasp their essence. And with ...
18
votes
2answers
1k views
Guice best practices and anti-patterns
I'm not sure if there is merit to this question or not, but are there any best practices and anti-patterns specific to Google Guice?
Please direct any generic DI patterns to this question.
18
votes
5answers
3k 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.?
17
votes
13answers
2k views
Why do we need immutable class?
I am unable to get what are the scenarios where we need an immutable class.
Have you ever faced any such requirement? or can you please give us any real example where we should use this pattern.
17
votes
6answers
1k 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" % ...
17
votes
10answers
3k 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 ...
16
votes
10answers
864 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 ...
16
votes
3answers
4k views
DCI - Data, Context and Interaction (Successor to MVC?)
What is the best description of Data, Context and Interaction (DCI) to pitch it to an organization?
It's created by Trygve Reenskaug, the creator of the MVC-pattern.
Is it really the successor to ...
14
votes
6answers
7k views
Best Practices For Mapping DTO to Domain Object?
I've seen a lot of questions related to mapping DTOs to Domain Objects, but I didn't feel they answered my question. I've used many methods before and have my own opinions but I'm looking for ...
13
votes
8answers
889 views
when do we need Decorator Pattern?
when do we need to go for Decorator pattern? If possible give me a real world example that suits that pattern...
12
votes
7answers
909 views
Where can I learn advanced Haskell?
In a comment to one of my answers, SO user sdcwc essentially pointed out that the following code:
comb 0 = [[]]
comb n =
let rest = comb (n-1)
in map ('0':) rest
++ map ('1':) rest
...
12
votes
6answers
2k views
Parallel programming patterns for C#?
With Intel's launch of a Hexa-Core(6) processor for the desktop, it looks like we can no longer wait for Microsoft to make many-core programming "easy". I just order a copy of Joe Duffy's book ...
12
votes
3answers
4k views
Caching Data Objects when using Repository/Service Pattern and MVC
I have an MVC-based site, which is using a Repository/Service pattern for data access.
The Services are written to be using in a majority of applications (console, winform, and web). Currently, the ...
12
votes
9answers
7k views
Word frequency algorithm for natural language processing
Without getting a degree in information retrieval, I'd like to know if there exists any algorithms for counting the frequency that words occur in a given body of text. The goal is to get a "general ...
10
votes
7answers
257 views
Patterns for JavaScript security with back-end authorization?
I'm looking for some good resources, patterns and practices on how to handle basic security needs, such as authorization, in client side JavaScript.
I'm building a website with a back-end system ...
10
votes
2answers
243 views
C# unusual inheritance syntax w/ generics
I happened upon this in an NHibernate class definition:
public class SQLiteConfiguration : PersistenceConfiguration<SQLiteConfiguration>
So this class inherits from a base class that is ...
10
votes
2answers
768 views
jQuery code organization and performance
After doing some research on the subject, I've been experimenting a lot with patterns to organize my jQuery code (Rebecca Murphy did a presentation on this at the jQuery Conference for example).
...
10
votes
3answers
4k views
Are we all looking for the same IRepository?
I've been trying to come up with a way to write generic repositories that work against various data stores:
public interface IRepository
{
IQueryable<T> GetAll<T>();
void ...
9
votes
2answers
193 views
“Master” associative table?
Consider a model for matching clients and sevices. Clients may be both providers of and consumers of services at various times. Clients may be individuals or groups (companies), the latter having ...
9
votes
3answers
310 views
JavaScript Best Practices: How to implement long-lived apps (one-page web apps)?
Are there any best practices for implementing a long-lived JavaScript app, i.e. a web app that consists of a single page and loads other pages into the content area via AJAX? (Gmail is a good example ...
9
votes
3answers
1k views
Popular JavaScript Inheritance Patterns
I'm working on an ebook on GitHub on TDD JavaScript and I'm wondering if I'm missing any popular inheritance patterns. If you know of any additional patterns I'd love to see them. They should have the ...
8
votes
3answers
140 views
Is there a name for this pattern of using generics?
//this class (or interface if you like) is set up as generic...
public abstract class GenericBase<T>
{
public T PerformBasicTask(T in) { ... }
}
//... but is intended to be inherited by ...
8
votes
5answers
187 views
Objective-C - Is !!BOOL Beneficial
I'm looking over the diffs submitted to a project by another developer, and they have a lot of code that does !!<some BOOL value>. In fact, this seems to be their standard pattern for ...
8
votes
3answers
331 views
Why doesn't Closure Compiler recognize type declarations inside a self-executing anonymous function?
I'm getting a lot of "Unknown type" warnings when running a fairly large library through Closure Compiler, and they seem to occur when my types are declared in self-executing anonymous functions. ...
8
votes
6answers
356 views
What is the best approach to generalize and aggregate XML dumps in C#?
Here is the business part of the issue:
Several different companies send a
XML dump of the information to be
processed.
The information sent by the companies
are similar ... not exactly same.
...
8
votes
3answers
3k views
android model view presenter/controller examples
are there any good examples or tutorials on how best to structure an android applications anywhere?
am new to java and android and i've built winforms apps using passive and supervising controller ...
8
votes
1answer
253 views
Creating custom events - Object Sender or Typed Sender?
I searched through the archives and I found lots of questions about what sender is and why you should use the pattern but I didn't see anything about a custom event and the type if sender.
Say I am ...
8
votes
2answers
3k views
Best practice for DAO pattern?
I've seen a lot of codes use a service-dao pattern , I don't know the origin of this pattern . It force the front layer call service , then delegates some of the service task to dao.
I want to ask : ...
8
votes
2answers
1k views
Repository Pattern and multiple related core entities or business objects - one repository or more?
I am looking at implementing the repository pattern (since what I came up with was 90% an implementation of it anyway), and have come across a design question - where I have two or more core business ...
8
votes
8answers
227 views
Is a Class special when it has no members?
I just realize some of my classes have no members. It has several public functions and maybe private functions and everything is passes through params. I realize functional programmers do this all the ...
8
votes
4answers
436 views
Where should django manager code live?
This is a pretty simple django patterns question. My manager code usually lives in models.py, but what happens when models.py is really huge? Is there any other alternative pattern to letting your ...
8
votes
9answers
1k views
C# Auto Property - Is this 'pattern' best practice?
I seem to be using this sort of pattern in my code a lot , I know that it is not a simple Autoproperty any more as that would be:
public IList<BCSFilter> BCSFilters { get; set; }
The code I ...
8
votes
11answers
6k views
What are some advantages to using an interface in C#?
I was forced into a software project at work a few years ago, and was forced to learn C# quickly. My programming background is weak (Classic ASP).
I've learned quite a bit over the years, but due to ...
8
votes
11answers
748 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 ...
8
votes
2answers
2k views
Parallel Programming and C++
I've been writing a lot recently about Parallel computing and programming and I do notice that there are a lot of patterns that come up when it comes to parallel computing. Noting that Microsoft ...
8
votes
4answers
424 views
Architectual design patterns
I am looking for some architectual design patterns for enterprise application development. I am aware of the all of the GoF patterns, and MVC, and such things, but I am looking for patterns that ...