What is the correct pattern to use in this case?
I’m sure this scenario has arisen before, and I want to know what experience has taught to be the best solution.
Would Using a PHP Framework Be Beneficial in My Context?
I’ve just started work at a small start-up company who mainly uses PHP to develop their front-end apps. I had no prior PHP experience before joining, and this has led to my apps becoming large pieces of spaghetti code. I essentially started by adding code to implement an initial feature, and then continued to hack in more code to implement further features – without much thought for the overall design.
Help to understand the abstract factory pattern
I’m learning the 23 design patterns of the GoF.
How can I bind an interface to a class decided by an xml or database configuration at the launch of the application?
I’m re-working on the design of an existing application which is build using WebForms. Currently the plan is to work it into a MVP pattern application while using Ninject as the IoC container.
Looking for some OO design advice
I’m developing an app that will be used to open and close valves in an industrial environment, and was thinking of something simple like this:-
Best Creational Pattern for loggers in a multi-threaded system?
This is a follow up question on my past questions :
Concurrency pattern of logger in multithreaded application
How should I implement the repository pattern for complex object models?
Our data model has almost 200 classes that can be separated out into about a dozen functional areas. It would have been nice to use domains, but the separation isn’t that clean and we can’t change it.
Modular enterprise architecture using MVC and Orchard CMS
I’m making a large scale MVC application using Orchard. And I’m going to be separating my logic into modules. I’m also trying to heavily decouple the application for maximum extensibility and testability.
Distinguishing repetitive code with the same implementation
Given this sample code
Access functions from user control without events?
On some generic functions, it seems that accessing a function on mainform directly from the usercontrol is easier than raising an event. For example: A function on main form that displays one desired usercontrol centered and tweaked.