Search Results

48
votes

What real life bad habits has programming given you?

One thing I've noticed lately is that many engineers in different fields (EE, ME) don't try to simplify and automate things as much as software people do. I'm not sure why that is, or even if it's …
1
vote

How do you plan an application’s architecture before writing any code?

I'm not convinced anything can be planned in advance before implementation. I've got 10 years experience, but that's only been at 4 companies (including 2 sites at one company, that were …
0
votes

Where do you keep your code?

/home/myusername When using cygwin on windows, it's equivalent to c:\cygwin\home\myusername (depending on how you set up your mount point) …
9
votes

Is it a bad practice to randomly-generate test data?

I'm surprised no one in this topic or in the one Jason Baker linked to mentioned …
0
votes

Approaches to a GUI for a Large C Program

Depending on the nature of the program, you could create an entirely separate GUI application (in any language you prefer), and fork/execute the existing program from it, redirecting it's stdin and …
0
votes

boolean parameters — do they smell?

I agree with other posters, it's not the boolean value that's the problem, it's the lack of context for the hard-coded constant. One thing I did recently in an embedded C++ progam when call …