Tagged Questions

Design in programming is the act of making particular choices about how best to structure a program, to achieve goals of reliability, maintainability, correctness or ease of use.

learn more… | top users | synonyms

613
votes
90answers
70k views

Why not use tables for layout in HTML? [closed]

It seems to be the general opinion that tables should not be used for layout in HTML. Why? I have never (or rarely to be honest) seen good arguments for this. The usual answers are: It's good to ...
252
votes
34answers
5k views

Paralyzed by Design Decision (Junior Software Developer)

I am a junior software developer at my company. I am given a great deal of independence with supervision being limited to ensuring I am meeting deadlines and design goals. I enjoy the independence and ...
232
votes
34answers
6k views

OK, so I'm not a beginner anymore. What comes next?

In a certain sense, I'm still very much a beginner, but I don't need to read C++ Primer or Learn C++ in 21 Days, or at least, I only take a peek every now and then for reference's sake. So what is my ...
208
votes
65answers
21k views

Why is good UI design so hard for some Developers? [closed]

Some of us just have a hard time with the softer aspects of UI design (myself especially). Are "back-end coders" doomed to only design business logic and data layers? Is there something we can do to ...
164
votes
6answers
12k views

Large-scale design in Haskell?

What is a good way to design/structure large functional programs, especially in Haskell? I've been through a bunch of the tutorials (Write Yourself a Scheme being my favorite, with Real World Haskell ...
99
votes
22answers
3k views

Overengineering - How to avoid it

Sometimes I find myself designing my classes for a certain project. I start with some entities, some interfaces, but after some time I think: Hey what about creating a handler for the classes using a ...
92
votes
10answers
9k views

When should I use a struct instead of a class?

MSDN says that you should use structs when you need lightweight objects. Are there any other scenarios when a struct is preferable over a class? Edit: Some people have forgotten that: 1. structs can ...
90
votes
10answers
30k views

Component based game engine design

I have been looking at game engine design (specifically focused on 2d game engines, but also applicable to 3d games), and am interested in some information on how to go about it. I have heard that ...
87
votes
4answers
7k views

How to decide when to use NodeJS?

I am a n00b in this kind of stuff but lately I've been hearing a lot about how good NodeJS is. Considering how much I love working with jQuery and Javascript in general, I can't help but wonder how to ...
82
votes
12answers
42k views

Are there free iPhone navigation bar icon sets available?

I want to use up/down icons like the ones used by "mail" in the upper-right corner when you're viewing a specific message. Are these icons available for free anywhere? Beyond that, are there any ...
77
votes
19answers
16k views

C state-machine design

I am crafting a small project in mixed C and C++. I am building one small-ish state-machine at the heart of one of my worker thread. I was wondering if you gurus on SO would share your state-machine ...
77
votes
16answers
8k views

Websites like projecteuler.net

Sometimes I'm solving problems on projecteuler.net. Almost all problems are solvable with programs, but these tasks are more mathematical than programmatical. Maybe someone knows similar sites with: ...
72
votes
18answers
9k views

What's your 'no framework' PHP framework?

Even with a ton of PHP frameworks out there to choose from, I know many people prefer a minimal, personal set of libraries. What is your method when it comes to 'rolling your own' framework for PHP ...
70
votes
19answers
2k 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 number of pages? If ...
67
votes
15answers
8k views

What are good resources for CSS templates or templated layout sites?

Does not have to be free, I'm just not a designer and loathe starting from scratch. Any suggestions would be appreciated.
63
votes
9answers
22k views

Well designed Django example code to learn from

Does anyone know of good, well designed open sourced Django applications? I'm really curious about different designs and I'd like to look at some good examples in order to learn about good design in a ...
61
votes
32answers
6k views

C# (.NET) Design Flaws

What do you think are the biggest design flaws in C# or the .NET Framework in general? My favorites are that there's no non-nullable string type and that you have to check for DBNull when fetching ...
57
votes
30answers
16k views

What program should I use to mock up GUIs?

I want to mockup a GUI system so that I can figure out how best to represent what I need. Normally, I would design a GUI in something like glade and then write a quick mockup in Python which ...
55
votes
29answers
5k views

What is the opposite of 'parse'?

I have a function, parseQuery, that parses a SQL query into an abstract representation of that query. I'm about to write a function that takes an abstract representation of a query and returns a SQL ...
54
votes
8answers
2k views

Who architected / designed C++'s IOStreams, and would it still be considered well-designed by today's standards?

First off, it may seem that I'm asking for subjective opinions, but that's not what I'm after. I'd love to hear some well-grounded arguments on this topic. In the hope of getting some insight into ...
54
votes
7answers
12k views

RESTful URL design for search

I'm looking for a reasonable way to represent searches as a RESTful URLs. The setup: I have two models, Cars and Garages, where Cars can be in Garages. So my urls look like: /car/xxxx xxx == car ...
53
votes
17answers
2k views

Any good examples of inheriting from a concrete class?

Background: As a Java programmer, I extensively inherit (rather: implement) from interfaces, and sometimes I design abstract base classes. However, I have never really felt the need to subclass a ...
53
votes
30answers
4k views

What are the best web design sites?

I just wanted to know what are the best websites about web design? I'm looking for websites about either web design, CSS, Photoshop for the web or web development in general (like new web ...
53
votes
24answers
7k views

Using “final” modifier whenever applicable in java

In Java, there is a practice of declaring every variable (local or class), parameter final if they really are. Though this makes the code a lot more verbose, this helps in easy reading/grasping of ...
53
votes
23answers
3k views

Icons: How does a developer with no design skill make his/her application icons look pretty?

I probably spend far too much time trying to make my visual interfaces look good, and while I'm pretty adept at finding the right match between usability and style one area I am hopeless at is making ...
50
votes
3answers
2k views

Ordering of parameters to make use of currying

I have twice recently refactored code in order to change the order of parameters because there was too much code where hacks like flip or \x -> foo bar x 42 were happening. When designing a ...
50
votes
35answers
7k views

How many parameters are too many?

Routines can have parameters, that's no news. You can define as many parameters as you may need, but too many of them will make your routine difficult to understand and maintain. Of course, you could ...
49
votes
23answers
4k views

How do you design object oriented projects?

I'm working on a large project (for me) which will have many classes and will need to be extensible, but I'm not sure how to plan out my program and how the classes need to interact. I took an OOD ...
48
votes
46answers
4k views

Your personal, successful coding practices [closed]

I've been thinking lately about a few practices that I have kind of adopted. Not things you see listed all the times, but patterns that you've looked back and said "I'm glad I did that", then adopted ...
48
votes
4answers
17k views

Mutable vs immutable objects

I'm trying to get my head around mutable vs immutable objects. Using mutable objects gets a lot of bad press (e.g. returning an array of strings from a method) but I'm having trouble understanding ...
46
votes
15answers
983 views

Is non-programmatic software development feasible?

I'm currently faced with a very unusual design problem, and hope that a developer wiser than myself might be able to offer some insight. Background Without being too specific, I've been hired by a ...
46
votes
11answers
11k views

Is it time to start using HTML5? [closed]

Is it time to start using HTML5? Someone has to start sometime but is now the time? Is it possible to to use the new HTML5 tags and code in such a way as to degrade gracefully?
46
votes
23answers
2k views

Can a Programmer Become a Decent Graphic Designer?

As a developer completely void of artistic skills, it's frustrating building applications from scratch. I know there are several open-source template web sites to draw from, but are there any good ...
45
votes
10answers
2k views

Is an “infinite” iterator bad design?

Is it generally considered bad practice to provide Iterator implementations that are "infinite"; i.e. where calls to hasNext() always(*) return true? Typically I'd say "yes" because the calling code ...
45
votes
19answers
24k views

Web UI prototyping tools

Can anyone recomend me a simple web UI prototyping tool, so I could quicky prototype the look of a my web site. I have tried to use MS Visio for this, but found it very "user un-friendly". What I ...
44
votes
14answers
31k views

How to inherit constructors?

Imagine a base class with many constructors and a virtual method public class Foo { ... public Foo() {...} public Foo(int i) {...} ... public virtual void SomethingElse() {...} ... ...
44
votes
23answers
4k views

GUI design techniques to enhance user experience [closed]

What techniques do you know\use to create user-friendly GUI ? I can name following techniques that I find especially useful: Non-blocking notifications (floating dialogs like in Firefox3 or ...
43
votes
13answers
1k views

Why doesn't jQuery bomb if your selector object is invalid?

Was recently using some code along the lines of $("#divMenuContainer:visible").hide("explode"); However after some time spent trying to get it to work I realized my selector was referencing a div ...
43
votes
9answers
1k views

Do you use Styrofoam balls to model your systems?

[Objective-C] Do you still use Styrofoam balls to model your systems, where each ball represents a class? Tom Love: We do, actually. We've also done a 3D animation version of it, ...
42
votes
12answers
996 views

Recommendations for a scripting or plugin language for highly math-dependent user coding?

I have started a bounty for this question ...because I really want the community's input. I can (and have) looked at several languages / frameworks and think 'well, this will probably ...
42
votes
4answers
8k views

prototype based vs. class based inheritance

In javascript, every object is at the same time instance and class. To do inheritance, you can use any object instance as a prototype. In python, C++, etc.. there are classes, and instances, as ...
41
votes
14answers
1k views

TDD: Does it get in the way of good API design?

I've never written TDD code, but I've seen a decent amount of discussion about it here on SO. My biggest concern with it is that it seems like general good API design (for flexibility, ease of use, ...
41
votes
24answers
3k views

How do you test layout design across multiple browsers/OSs?

What is a good method for testing website layout designs across multiple browsers and operating systems?
40
votes
18answers
5k views

Why are empty catch blocks a bad idea?

I've just seen a question on try-catch, which people (including Jon Skeet) say empty catch blocks are a really bad idea? Why this? Is there no situation where an empty catch is not a wrong design ...
38
votes
2answers
928 views

How do you write data structures that are as efficient as possible in GHC?

So sometimes I need to write a data structure I can't find on Hackage, or what I find isn't tested or quality enough for me to trust, or it's just something I don't want to be a dependency. I am ...
37
votes
17answers
989 views

What has been your most helpful Software Design/OOP Metaphor?

I am re-reading Code Complete (Second Edition) since I read it in College. I got to the Second Chapter about the importance of metaphors and was curious what metaphor is/was most helpful to you in ...
37
votes
5answers
26k views

HTTP POST with URL query parameters — good idea or not?

I'm designing an API to go over HTTP and I am wondering if using the HTTP POST command, but with URL query parameters only and no request body, is a good way to go. Considerations: "Good Web ...
37
votes
11answers
16k views

What free software can I use to create UI mockups?

What are good Open Source / Free software packages that let you design GUIs quickly, like "on a napkin" style, but also give a bit of polish that you could throw into a slide deck? Preference would ...
36
votes
14answers
19k views

Is there a typical state machine implementation pattern?

We need to implement a simple state machine in C. Is a standard switch statement the best way to go? We have a current state (state) and a trigger for the transition. switch(state) { case STATE_1: ...
35
votes
4answers
587 views

API design and jQuery

I have often heard that jQuery has made some poor API decisions. Although jQuery is not my favourite library it's the library I've used most often and I find it hard to point out specific mistakes in ...

1 2 3 4 5 162