20
votes
15answers
390 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 …
2
votes
1answer
39 views
Patterns used in WPF
I have been getting more involved with WPF for about a year now. A lot of things are new and sometimes it is hard to get my head wrapped around it.
At the same time I am rereading …
4
votes
9answers
366 views
Is it confusing to call this class a “factory”?
My understanding of a factory is that it encapsulates instantiation of concrete classes that all inherit a common abstract class or interface. This allows the client to be decouple …
0
votes
5answers
60 views
Using grep to find files that doesn’t contain a given string pattern
I'm using the following command in my web application to find all files in the current directory that contain the string foo (leaving out svn directories).
find . -not -ipath '. …
0
votes
1answer
44 views
List of suspected Malicious patterns
I am doing an anti-virus project by disassembling its code and analyzing it.
So i want a list of the Suspected Malicious pattern codes, so i can observe which is suspected and whic …
1
vote
3answers
111 views
Strategy Pattern - multiple return types/values
We are working on an image processing project using C# and EmguCV. Our team is composed of 3 people. To make faster progress, the 3 of us work on different sub-problems or experime …
1
vote
2answers
40 views
Builder vs Flyweight Pattern
What is the difference between Builder Pattern and Flyweight Pattern in terms of usage, as both of them deals with large number of objects?
0
votes
6answers
86 views
Looking for a PHP MVC framework that just implements architectural goals and design patterns, nothing more
Hello, I have been looking for a good PHP MVC framework that is interested primarily in speed, security, and implementing the MVC design architectural style.
Some of the biggest b …
3
votes
4answers
124 views
Fowler Null Object Pattern: Why use inheritance?
Why does Fowler PoEAA p. 498 define the null-object pattern in the following way (sample shortened, language is c# but doesn't matter):
public class Customer
{
public virtual st …
1
vote
2answers
49 views
Patterns for functional, dynamic and aspect-oriented programming
Hello everybody,
We have a very nice GoF book (Design Patterns: Elements of Reusable Object-Oriented Software) about patterns in Object Oriented Programming, and plenty of article …
0
votes
2answers
37 views
nhibernate - display order - pattern/solution?
hey
I have a collection of ReportColumns in a Report object.
The ReportColumns has a DisplayOrder field which sets where abouts in the report the column is displayed. these colum …
4
votes
2answers
91 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 …
3
votes
5answers
81 views
Need some help sorting out a major abstract pattern headache within my DAL
I've caused myself a bit of an issue with my Data Access Layer. In this particular instance, I have a table that contains potentially 5 types of 'entity'. These are basically Compa …
1
vote
2answers
43 views
What is the best strategy for Dependency Injection of User Input?
I've used a fair amount of dependency injection, but I'd like to get input on how to handle information from the user at runtime.
I have a class that connects to a com port. I all …
2
votes
5answers
140 views
Tic Tac Toe Design Pattern
Hey everyone,
I was wondering if I could get your thoughts and advice as to what would be the best/most advantageous design pattern for a networked Tic Tac Toe game?
I have been …
