2
votes
5answers
141 views
Singleton or not
Hi there..
I have a windows service running.Inside this service I have hosted some service (WCF).
I need to have some kind of a "in memory data holder" class. The purpose of this class is to hold …
0
votes
1answer
29 views
Linux patterns and practices for hosting web application
I work mostly on desktop application on Windows platform. Now I am focusing on Linux platform to host web applications.
While hosting the application on Linux, I don't follow any procedure. I …
0
votes
1answer
19 views
Is it possible to make a pattern for a CGContext Path using a png
I want to make a path that has a png as it's pattern, or if you could or think it would be easier to make my own pattern, then tell me that also. I will be greatful to anyone who can put up some code. …
1
vote
3answers
121 views
What’s a pattern for getting two “deep” parts of a multi-threaded program talking to each other?
I have this general problem in design, refactoring or "triage":
I have an existing multi-threaded C++ application which searches for data using a number of plugin libraries. With the current search …
6
votes
4answers
97 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 …
2
votes
1answer
45 views
HTML: table of forms?
I frequently find myself wanting to make a table of forms -- a bunch of rows, each row being a separate form with its own fields and submit button. For instance, here's an example pet shop application …
0
votes
1answer
26 views
Any patterns for high availability of a Windows Service?
Situation
I have a windows service which I would like to make highly available.
I have two unclustered servers (Windows server 2003 standard edition).
The question is:
What options do I have to …
22
votes
15answers
533 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 …
5
votes
3answers
182 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* …
0
votes
3answers
58 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
27 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 …
7
votes
9answers
294 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 …
0
votes
6answers
116 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 …
2
votes
3answers
70 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. …
5
votes
7answers
352 views
Patterns for functional, dynamic and aspect-oriented programming
We have a very nice GoF book (Design Patterns: Elements of Reusable Object-Oriented Software) about patterns in Object Oriented Programming, and plenty of articles and resources in the web on this …
