Tagged Questions

0
votes
3answers
50 views

Pull-up refactoring, Objective-C

I have two similar classes, MultiSlotBlock and SingleSlotBlock. They have started to share a lot of common code so I have decided to do some refactoring and pull some of the methods up to a new …
0
votes
1answer
21 views

is it possible to use MVP pattern with Codesmith Ntier or PLINQO Template

Currently we are working on ASP .net application and i would prefer to go ahead with MVP pattern (for UI) due to several advantage it provides, But the con of going ahead with that approach is too …
0
votes
2answers
45 views

Difference between a factory, provider and a service?

What is the difference between the terms factory, provider and service? Just getting into nhibernate and its repository pattern (POCO classes, etc).
5
votes
3answers
171 views

Pattern name for create in constructor, delete in destructor (C++)

Traditionally, in C++, you would create any dependencies in the constructor and delete them in the destructor. class A { public: A() { m_b = new B(); } ~A() { delete m_b; } private: B* …
2
votes
3answers
63 views

Does anyone know of a computer programming work patterns site?

There are all those Design Patterns wikis -- you know, with Singleton, Iterator and all that. I'm not looking for that. I'm looking for one level up from that: computer programming working patterns. …
2
votes
1answer
39 views

A better design? Same object, different possible states

Hello, I have a very simple application which consists of an ASP.NET front end site, with a WCF Windows Service doing the heavy lifting back-end logic. The user has one simple page where he selects …
0
votes
2answers
57 views

Understanding hibernate internals

Hi, Im trying to understand how hibernate works under the hood, how it manages lazy load, transactions, data mappers, unit of work, identity maps, etc. I wrote a small object model, and im …
0
votes
1answer
31 views

creating API using adapter pattern

I am working on an API for several web services, which all return a list of products. However, the objects returned are quite different. They have some overlap in member variables and methods, but …
0
votes
3answers
78 views

Caching ideas anyone?

Hi, I have the following, very interesting class... pubilc class Thing{ public Thing() { DoSomethingThatTakesALongTime(); } pubic boolean CheckSomething(string criteria) { return criteria == …
1
vote
1answer
17 views

Template pattern violates encapsulation?

Hi guys, Please take a look at this piece of code I came up with. abstract class Command { public void Execute(string[] commandParameters) { CommandResult result = …
7
votes
9answers
273 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 …
1
vote
3answers
72 views

PHP check to see if a string matches a pattern

If I need a string to match this pattern: "word1,word2,word3", how would I check the string to make sure it fits that, in PHP? I want to make sure the string fits any of these patterns: word …
2
votes
1answer
48 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 the GOF Design …
22
votes
15answers
504 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 …
0
votes
5answers
93 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 '.*svn*' -exec grep …

1 2 3 4 5 16 next
15 30 50 per page