Skip to main content
Filter by
Sorted by
Tagged with
0 votes
2 answers
72 views

I'm developing a website that uses some complex computations (NLP-related). My customer wants to have "debugging" webpages for some of these computations where he can run them with arbitrary input and ...
Fixpoint's user avatar
  • 9,896
1 vote
1 answer
56 views

Probably a very poorly named title, but anyway... I am using the command pattern on a hierarchical data set. So basically I need a method that returns an object that describes the changes that will ...
Ocelot20's user avatar
  • 10.8k
0 votes
2 answers
56 views

Lets say I have a bunch of methods in a class which call a Webservice and, as a result, I need to check the "response" of the Webservice each time one of these methods is called. But I don't want to ...
brumScouse's user avatar
  • 3,246
0 votes
1 answer
58 views

I have a 3 layer design. (UI / BLL / DAL) UI = ASP.NET MVC In my view I have collection of products for a category. Example: Product 1, Product 2 etc.. A user able to select or remove (by selecting ...
Aval's user avatar
  • 1
0 votes
2 answers
87 views

I have a server which takes some messages x and outputs some messages Y. Currently the x to y mapping is fixed. So x1 will always generate y1 with corresponding fields. But now I want to be able to ...
VNarasimhaM's user avatar
  • 1,584
0 votes
1 answer
92 views

Let’s say I have to use an unstable assembly that I cannot refractor. My code is supposed to be the client of a CustomerCollection that is (surprise) a collection of Customer instances. Each customer ...
Alex Janzik's user avatar
  • 3,872
0 votes
1 answer
49 views

In a desktop application that uses MVC, what object should be responsible for switching from one view to another? A controller at the next highest level of abstraction? (Conceptual question not ...
user avatar
0 votes
1 answer
72 views

im trying to implement the Data Gateway / Domain Pattern. I understand the basics and its a fantastic pattern to separate domain logic from the persistent data layer. Now i have following requirement: ...
michaelm's user avatar
0 votes
3 answers
82 views

What do you care most in the loading process of your site Statistical Data ,Performance , ... We know that always we need to make a balance between Quality & performance , so for you as an ...
Kasrak's user avatar
  • 1,583
1 vote
1 answer
68 views

Writing a sound control applet with GUI that communicates with a device via USB. There are several type of controls being used, faders, knobs, on/off switches. Although there are functional ...
Gio's user avatar
  • 4,229
0 votes
1 answer
28 views

I want to design an object for loading and showing customized data, for example, the object firstly loads all employees in database, then look up whether login user in the list, if so then show the ...
jason's user avatar
  • 1,631
0 votes
1 answer
60 views

public class MyController { public object CreateByEnum(DataModelType modeltype) { string enumText = modeltype.ToString(); // will return for example "Company" ...
loki's user avatar
  • 2,976
0 votes
1 answer
43 views

I would like to know the best practices/design patterns of layouting in 2D. Must have reference to: absolute layout vertical layout horizontal layout Components properties can be: width height ...
Totty.js's user avatar
  • 15.9k
1 vote
1 answer
41 views

Say I have a query that fetches [type][show_name]. For all [type]==5 records, I need to join them with another table. What would be the best approach for that: Join for all records between the ...
Itay Moav -Malimovka's user avatar
-1 votes
1 answer
54 views

I am rewriting a client's application from a crappy built as one huge blob of a project into a MVC application for obvious reasons. In doing a view for pieces of it I am noticing the original ...
Khirok's user avatar
  • 537
1 vote
2 answers
60 views

An app has a Foo class that is a concrete class with all business logic and behaviour properly defined. That said, one need to get the collection of all the Foos that are persisted at this app. ...
Pedro's user avatar
  • 2,320
0 votes
1 answer
32 views

Assume we have the following interface: @interface ColoredView : NSView { NSColor *color; } @property (copy) NSColor *color; - (id)initWithColor:(NSColor *)aColor; @end And we want view to show ...
Kentzo's user avatar
  • 4,009
2 votes
1 answer
37 views

I have an object can be compose by components but each components has a type and should be unique : Class Client{ Set<IComposite> elements } interface IComposite{ String getType(); } ...
Jonathan Lebrun's user avatar
0 votes
1 answer
25 views

I'm refactoring a website I build. It's a website for a travel agency. I'm thinking of implementing the repository pattern. The travel agency has two divisions, that have their own website and target ...
Decent Dabbler's user avatar

1
639 640 641 642
643