1
vote
1answer
27 views
designing a flexible user lookup mechanism
So there is an internal email application, that has different installations in the company (various departments).
When an email comes into the system, I need to perform a lookup b …
0
votes
1answer
14 views
Tips for good division of labor between Design, Development, and HCI
I'm curious how other large-scale development shops (web-focused) divvy up the work between Designers, Developers, and HCI/Consumability Experts.
Obviously:
Developers will be w …
1
vote
3answers
46 views
how do you go about charging for building a website
Someone has approached me to build a website for their small business. What is the protocol for laying out an offer for building a website in terms of pricing?
Do i charge for num …
0
votes
2answers
33 views
Design Real-Time Product Stock Management
Hi,
I need to design a real-time product stock management engine (C# & WCF) but i don't know how to proceed in order to handle concurrency access and data integrity.
Here is …
1
vote
6answers
114 views
Is there a free website prototype designing tool?
Anyone can recommend?
1
vote
7answers
101 views
Adding publicly but inheriting private
I want to add a class directly into a new class by avoiding public inheritance. For example I have a class like
class size {
private:
int width;
int height;
public:
vo …
2
votes
4answers
75 views
How can I inheriting from a concrete class in Perl?
Our software represents each device as a concrete class. So let's say I have a class named Cpu-Version-1, which is derived from a abstract baseclass called Device. Now, the CPU ven …
2
votes
1answer
68 views
Embedding Python Design
There are lots of tutorials/instructions on how to embed python in an application, but nothing (that I've seen) on overall design for how the embedded interpreter should be used an …
2
votes
3answers
104 views
C# enum that depends upon another enum [or maybe this is more design related]
I might be going in the wrong direction, so let me try to sort out my thoughts (and hopefully get some tips from you guys):
Imagine an enum:
public enum ReportType
{
Performan …
0
votes
2answers
60 views
Class design ideas for state machine like object.
I'm writing a state machine like object. Looks like
Class A:
vector<Actions> m_enter_actions;
vector<Actions> m_exit_actions;
public:
ClassA....
~ClassA
Se …
17
votes
11answers
612 views
C state-machine design
I am crafting a small project in mixed C and C++. I building one small-ish state-machine at the heart of one of my worker threads.
I was wondering if you gurus on SO would share …
0
votes
3answers
54 views
AS3: How to organize code, in case remote services are called
Hi!
In my flex application I use services a lot. I need them to update my data in the application, so call them quite often. Currently I implemented it in the following way:
1) T …
0
votes
3answers
28 views
UML diagrams from ASP.net Application design specs.
I work in a mid size company as a intermediate developer and work on developing web projects. I got a situtation where i need to develop UML out of the design specs and this will …
1
vote
2answers
45 views
Implementing article revision history for Java based web application
Any ideas of how best i can implement article revision history for a Java based web application and save it in AuditLog
StackOverflow already has such a feature allowing one to se …
2
votes
5answers
114 views
Tic Tac Toe Design Pattern
Hey everyone,
I was wondering if I could get your thoughts and advice as to what would be the best/most advantageous design pattern for a networked Tic Tac Toe game?
I have been …
