Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

15
votes
14answers
9k views

C++ code in header files

My personal style with C++ has always to put class declarations in an include file, and definitions in a .cpp file, very much like stipulated in Martin York's answer to C++ Header Files, Code ...
10
votes
5answers
6k views

C++ Header Files, Code Separation

I am new to C++ and I had a few general questions about code separation. I have currently built a small application, all in one file. What I want to do now is covert this into separate files such ...
8
votes
2answers
763 views

Implementation of achievement systems in modern, complex games

Many games that are created these days come with their own achievement system that rewards players/users for accomplishing certain tasks. The badges system here on stackoverflow is exactly the same. ...
4
votes
4answers
196 views

how to separate sql from php code

I have a class that helps me to handle users. For example: $user = new User("login","passw"); $name = $user->getName(); $surname = $user->getSurname(); $table = $user->showStats(); All ...
3
votes
4answers
176 views

Prompt user for confirmation in the middle of a process

I'm looking for a good approach to sometimes pause an action (function/method call) until the user confirms that he wants to do a specific part of that action. I need to do this in an environment that ...
3
votes
8answers
1k views

Separating UI and logic in C#

Does anyone have any advice on keeping logic out of my GUI classes? I try to use good class design and keep as much separated as possible, but my Form classes usually ends up with more non-UI stuff ...
3
votes
3answers
2k views

Multiple Singleton Instances

I am writing a library of utility classes, many of which are singletons. I have implemented them as such using inheritance: template <class T> class Singleton { public: T& ...
2
votes
2answers
53 views

In JQuery how can I keep HTML OUT of my javascript?

I think JQuery is great but I also like the idea of keeping the HTML in the HTML document and virtually none of it in the javascript. What do I mean? You know like, say you are creating a dynamic ...
2
votes
2answers
230 views

ASP.Net MVC - What replaces events to support loose coupling?

What feature(s) of ASP.Net MVC can replace the way events can be used in Webforms to support loosely coupled components? For example, take a simple pager control in Webforms: A page number is ...
2
votes
1answer
42 views

PHP: Where should I store the text for info & warning messages

I have a question concerning the design of my project's Code. In most cases, it is important to separate content from code (HTML mixed with PHP in bigger apps=No good idea, etc.) but how should I ...
2
votes
1answer
918 views

Code Separation Paradox: Create HTML Tree from Multi-Dimensional Array AND Keep the HTML Outside of the Recursive Function

This working code seems to be the typical solution to this problem. It takes a multi-dimensional array that holds categories and their subcategories (with no implied limitation on how many levels ...
1
vote
1answer
283 views

Debug class, c++, linker error

I am trying to write a debug class for a project I am working on, and I do not want to have to pass a debug object around so I was trying to do it this way. However, I do not know why my compiler or ...
0
votes
2answers
54 views

Separation of logic and GUI in Android app. Service has knowledge of app and shouldn't

I'm a relative novice to Android programming (I mostly do C# on Windows). I inherited some code that consists of a service and app. I'd like to reuse the service and some of the app in another app. ...
0
votes
2answers
49 views

Flex has Components. What is similar in HTML?

Something that is very handy in flex is that you can create a component, code it, skin it and then you can reuse it as you like. This means that the code is independent from each one of the copies ...
0
votes
0answers
47 views

How to convert dynamic inline javascript to event handlers in an asp.net repeater

In order to better sepparate structure from behaviour, I would like to convert inline javascript written out by an asp.net repeater to event handlers specified in an external file. Eg. ...
0
votes
1answer
79 views

asp.net static content in separate project. now how to refer?

Project1.csproj is the website project and StaticContent.csproj is the static content project to hold all .css, .js and image files. I am keeping it separate so that designers can work without ...
0
votes
2answers
44 views

Determining the representation-class for a data object based on its specialized type?

I tend to have a class to describe a general concept and subclasses to describe variances in that concept. For example, Polygon <|-- {Rectangle, Triangle, etc.}. However, I often find I have ...
0
votes
1answer
110 views

.net mvc single admin section multiple sites

Desired outcome: 4 customer facing sites as separated projects 1 set of admin code used by all four sites My current setup is 4 Projects: Core for models/entities Data for repositories Controllers ...