0
votes
1answer
16 views
Document-level forking and version controlled wikis (theoretical/design)
This is a problem I've come across for a couple different projects I'm working on.
Since the projects are still under stealth development, and the problem itself is of potentially broader interest …
0
votes
4answers
103 views
a good book about software design
i'm looking for a book that talks about sofware decision like :
when should i use thread pool and shouldn't. and in the first case, explains how.
how should i acess my DB , how big my transactions …
1
vote
4answers
97 views
TCP/IP and designing networking application
i'm reading about way to implemnt client-server in the most efficient manner, and i bumped into that link :
http://msdn.microsoft.com/en-us/library/ms740550%28VS.85%29.aspx
saying :
"Concurrent …
1
vote
4answers
28 views
How to deal with currently unavailable options? Locking vs. Hiding vs. Error messages
What is the best way to deal with input elements that are currently not available, or locked to a default value, e.g. a "state" field that is only relevant to some countries, a button for …
3
votes
9answers
219 views
Always check malloc’ed memory?
I often catch myself doing the following (in non-critical components):
some_small_struct *ptr=(some_small_struct *) malloc(sizeof(some_small_struct));
ptr->some_member= ...;
In words, I allocate …
7
votes
11answers
373 views
Coming from C to C++
HI all.
I have started a new job recently where I am supposed to work with C++/ I have been doing programming in C language for past 5 years. I am looking for ways to get me up to an acceptable level …
1
vote
4answers
43 views
How to organize a database in Django with multiple, distinct apps?
I'm new to Django (and databases in general), and I'm not sure how to structure the following. The sources of data I'll have for my site are:
a blog
for a few different games:
a high score list
…
1
vote
5answers
113 views
Web application design
I have a project that I have recently started working on seriously but had a bit of a design discussion with a friend and I think he raised some interesting points.
The project is designed to be …
1
vote
4answers
102 views
ASP.Net project, one big dll and my poor design decision
Once upon a time I had a little .net project called Intranet. It simply served up web pages, and displayed some data retrieved from a database. Over time a monster has grown out of this little .net …
17
votes
7answers
336 views
How to design a C / C++ library to be usable in many client languages?
I'm planning to code a library that should be usable by a large number of people in on a wide spectrum of platforms. What do I have to consider to design it right? To make this questions more …
3
votes
5answers
99 views
Inspirations for Software UI
Do you know any source for nice looking software designs? (non Web).
1
vote
4answers
145 views
C++ design question
Suppose I have a class Base which has a member variable A* my_hash.
I also have class Extended which inherits from class Base. I also have a class B
which extends A.
class Base{
Base(): my_hash(new …
0
votes
0answers
22 views
Data Archiving [Design]
I am developing an archive module for an application using Dotnet and SQL Server as back end. From multiple approaches of archiving we've decided to build a custom application to archive the complete …
0
votes
1answer
30 views
What is the best way to represent an XML file in a Design document?
What is the best way to represent an XML file in a design document?
For table we typically show it as
Name Type
CustomerID {GUID}
For XML do we just paste the XML in the document?
1
vote
9answers
200 views
C++ design: How to cache most recent used
Hi
We have a C++ application for which we try to improve performance. We identified that data retrieval takes a lot of time, and want to cache data. We can't store all data in memory as it is huge. We …
