Tagged Questions
The program-design tag has no wiki summary.
78
votes
44answers
8k views
GOTO still considered harmful?
Everyone is aware of Dijkstra's Letters to the editor: go to statement considered harmful (also here .html transcript and here .pdf) and there has been a formidable push since that time to eschew the ...
36
votes
27answers
7k views
Useful alternative control structures?
Sometimes when I am programming, I find that some particular control structure would be very useful to me, but is not directly available in my programming language. I think my most common desire is ...
6
votes
5answers
4k views
What is Functional Decomposition?
Functional Decomposition, what is it useful for and what are it's pros/cons? Where are there some worked examples of how it is used?
5
votes
5answers
244 views
java Properties - to expose or not to expose?
This might be an age old problem and I am sure everyone has their own ways.
Suppose I have some properties defined such as
secret.user.id=user
secret.password=password
...
4
votes
6answers
1k views
What language should I use for an automatic gear shifting program?
I was thinking about writing a program to automatically change the gear of my bike. It may require a microprocessor, so the question which I had in my mind was: is there any different language for ...
4
votes
3answers
624 views
Help with C# program design implementation: multiple array of lists or a better way?
I'm creating a 2D tile-based RPG in XNA and am in the initial design phase. I was thinking of how I want my tile engine to work and came up with a rough sketch. Basically I want a grid of tiles, but ...
4
votes
7answers
168 views
How to approach structuring functions / procedures for a newbie
I am a hobbyist programmer and am trying to improve my skills. To that end, I have been reading 'The Pragmatic Programmer' and 'Code Complete' as recommended by some in this forum and I have to say ...
3
votes
3answers
67 views
A custom file class. Is this feasible?
Currently I'm reading and writing binary files and am calling the struct pack/unpack functions frequently. Rather than constantly having to write something like
struct.unpack("3f", myFile.read(12))
...
3
votes
2answers
139 views
Managing thread and memory usage while working with a blocking process
I have a bunch of files (on the order of 10 per second) coming into a system (stored into a database). Each file contains an entry for somewhere between 1 and 500 devices. A given device will appear ...
2
votes
6answers
54 views
How should I format this piece of code?
Here are two ways of calling callscript (in pseudocode):
using duplicate calls
if flag == true
flag = false
callscript
flag = true
else
callscript
endif
using an extra ...
2
votes
2answers
519 views
Signals and threads - good or bad design decision?
I have to write a program that performs highly computationally intensive calculations. The program might run for several days.
The calculation can be separated easily in different threads without the ...
2
votes
3answers
577 views
Conventions for the behavior of double or triple “click to select text” features?
Almost any mature program that involves text implements "double click to select the word" and, in some cases, "triple click to select additional stuff like an entire line" as a feature. I find these ...
1
vote
2answers
58 views
Learning Exception Handling Patterns
One thing that has always mystified me in programming is the use of appropriate exception handling. Code Complete points out that often times 90% of code is focused on handling exceptions. While I ...
1
vote
1answer
124 views
How can I improve this program design for a simple todo list manager?
For a simple command-line todo manager (that is to be implemented in C), this is what I have thought of the design:
The utility would support multiple users by storing the todo's in different files ...
1
vote
2answers
158 views
How can I maintain a list of mail recipients in my Perl script?
My Perl script to monitor a directory on Unix, stores a list of users to whom a notification mail is sent when the directory it is monitoring is updated.
This is the construct used
dirmon.pl
my ...
1
vote
4answers
86 views
EDITED: How should I separate closely related programs in C#? (user client, admin, and common class library)
I have a suite of programs that are related. One is a user client, one is an admin program, and another is a set of library classes that reside in a Class library.
How should I separate the projects?
...
1
vote
9answers
1k views
Coding Standards for pure C (not C++)
I come from a java background (from my CS classes) and a semester of C++. I am just finishing up a OpenCV project for my Co-Op that's in pure C, so I'm a bit late in asking this question.
What are ...
0
votes
1answer
19 views
how to judge a page edited or not from server client
a input asp.net page,you can image many input fields and a button named submit on it.
before user submit the page ,I want to compare all the fields values with default values . if anyting didn't ...
0
votes
2answers
127 views
Android: When and how to save application data
I'm writing a little recipe management app. On the main screen there is a button called "Add recipe". When clicked, a new activity is created that consists of a TabHost with several tabs.
The first ...
0
votes
1answer
13 views
Uploading a document upon demand
I am creating a logging system which will log errors to a remote server from an user pc/client. occasionly we may need to get some ppt/doc files which will be created by the user at the user ...
0
votes
1answer
111 views
Visually structure PHP programs
I use mysql workbench, to visually structure my relational database tables.
Does a similar program exist to visually structure PHP programs? i.e. visually structure and connect classes, functions, ...