0
votes
1answer
9 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. …
0
votes
1answer
20 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 …
0
votes
0answers
4 views
ValueListHandler dependencies
Was just struck by a thought after looking through the ValueListHandler JEE pattern on the corej2eepatterns site:
Why does the valuelisthandler require a reference to a data access object?
Based on …
2
votes
4answers
301 views
Hierachical data in TreeViews and TreeView updating technique
I have lots of (hierachical) data that I show in a TreeView (could be around 20K items or more, including children items). The peculiar problem with my data is that each object shown in the treeview …
1
vote
3answers
114 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 …
0
votes
1answer
10 views
Calling ThreadPool.QueueUserWorkItem from Global.Asax Application_Startup
Is it a good pattern to call ThreadPool.QueueUserWorkItem from Application_Startup in
Global.Asax .
My intention is to call some Lucene indexing tasks.
2
votes
1answer
44 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 …
6
votes
4answers
96 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 …
33
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 …
0
votes
3answers
56 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
24 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 …
5
votes
3answers
175 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
2answers
48 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).
2
votes
3answers
67 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
347 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 …
