Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

25
votes
20answers
2k views

How can I learn to REALLY design software? [closed]

First off, my focus is web development (ASP.net webforms up to now), using C#. But, I am interested in learning design principles that will carry into any technology or language. I have been ready ...
19
votes
9answers
3k views

What PHP application design/design patterns do you use?

Please share your favorite application design / design patterns for use in PHP with me. Some things I'd like to know: How your folders are designed How you use object oritentation in your PHP ...
14
votes
1answer
441 views

Repository and Data Mapper pattern

After a lots of read about Repository and Data Mapper I decided to implement those patterns in a test project. Since I'm new to these I'd like to get your views about how did I implement those in a ...
14
votes
8answers
286 views

Keeping track of utility classes

I've recently been more and more frustrated with a problem I see emerging in my projects code-base. I'm working on a large scale java project that has >1M lines of code. The interfaces and class ...
12
votes
8answers
3k views

How To Make a Tetris Clone?

I am working on coding a Tetris clone in XNA C# and am unsure of the best way to approach the data structure side of the game on a high level. I am totally fine with the collision detection, ...
11
votes
5answers
245 views

How to catch DB errors and translate them into meaningful information for the business layer?

Usually I have to insert some data in a DB and it can't be inserted because the table has constraints preventing me from doing that. With the app I'm developing, some business rules (like "there are ...
10
votes
3answers
358 views

Books specifically on Software Architecture and not Software Design [closed]

Can you please suggest some books on Software Architecture, which should talk about how to design software at module level and how those modules will interact. There are numerous books which talks ...
10
votes
18answers
795 views

Design principles for complete noobs?

I've been programming for around a year now, and all the stuff that I've written works - it's just extremely poorly written from my point of view. I'd like to know if there are any (free) good books ...
10
votes
6answers
2k views

How to design an application in a modular way?

I am looking for pointers, suggestions, links, warnings, ideas and even anecdotical accounts about "how to design an application in a modular way". I am going to use python for this project, but ...
9
votes
12answers
1k views

What are some situations where Agile is inappropriate?

I have been hearing and reading about Agile for years. I own a book or two on it and I like the idea. I am finally in a position where I could roll something like this out where I work, but I have ...
9
votes
5answers
2k views

Online UML Guide

My software design experience only goes as far as SSADM with C, so when I started Java I knew I'd have to learn UML somewhere along the line, but alas, now that I need to use it I don't know much of ...
8
votes
9answers
222 views

Minimal API v. Convenience

I am trying to design the interface that will be used internally for my application. Following Google's example, I strive to reduce public API clutter. However, there are some convenience methods that ...
8
votes
7answers
1k views

When to call the gang of four? [When to use design patterns?]

In The Guerilla Guide to Interviewing Joel says that guys who want to get things done, but are not smart will do stupid things like using a visitor design pattern where a simple array would be ...
7
votes
2answers
215 views

How do I choose heap allocation vs. stack allocation in C++?

One of the C++ features that sets it apart from other languages is the ability to allocate complex objects as member variables or local variables instead of always having to allocate them with new. ...
7
votes
1answer
180 views

Well designed / high-quality open source software [closed]

Asked on Programmers: Well designed / high-quality open source software I'm taking a software design class where I should choose an open source software to analyze from the Software Design ...
7
votes
2answers
213 views

How are software and game templates designed?

please don't mind my question since I don't know much about software because I come from a web perspective.. For example, in web css is used for the design and appearance so.. How are the designs, ...
7
votes
1answer
125 views

Easy to read software design book similar to 'The Art of the Metaobject Protocol'

Alan Kay in his 1997 talk at OOPSLA, 'The Computer Revolution Hasn't Happened Yet' calls the book 'The Art of the Metaobject protocol' "the best book written in ten years," but was dismayed that it ...
7
votes
2answers
514 views

C#/.NET equivalent to John Lakos - Large Scale C++ Software Design?

I own and have read most of this book, a while back. Now I'm about to embark on a pretty large project and was wanting a refresher. Anyone got a recommendation of something similar that has a focus ...
7
votes
16answers
657 views

Predictive vs Reactive software design

I know that for me I first got started following the waterfall method of project management and along with that I went with the predictive approach to software design. In this I mean we had huge ...
6
votes
2answers
60 views

Architecture: Best practices for manipulating models without polluting the POJOs? And without repeating boiler-plate code everywhere

This is a problem we encounter often. There must be some best practices to address this... Simplified Question Where's the best place to put common code that manipulates POJOs? such that: ...
6
votes
1answer
104 views

When to split an MVC view into two?

I discussed best practices in MVC the other day with a colleague and he asked me how to best separate views. He was maintaining an MVC solution which had a common input form with a controller with two ...
6
votes
2answers
238 views

SW-Design: Adapters for Class Hierarchy in Delphi (Generics vs. Downcast)

I would like to have some suggestions for the following problem: Let's say you want to write adapters for the VCL controls. All Adapters should have the same base class, but differ in wrapping special ...
6
votes
3answers
516 views

Best practices for documenting software design and architecture?

What are the best practices and software tools for documenting software design and architecture? Because our software is very large and complex that I think a tool which support drill down in details ...
6
votes
3answers
241 views

What design pattern shall I use in this question?

To be frank, this is a homework question, so I'll tell you my opinion. Can you let me know my mistakes rather than giving me the solution? This is the question : Assume a restaurant that only ...
6
votes
3answers
214 views

Guidelines For Designing Clean Interface

When I read articles on software development, I often heard of the phrase "clean interface". People talked about clean interface for APIs, and classes. How do you define "clean interface"? Is there ...
6
votes
7answers
444 views

What's the best way to resolve a combinatorial explosion of interactions?

One of the things I'm working on right now has some similarities to a game. For purposes of illustration, I'm going to explain my problem using an example drawn from a fictitious, hypothetical game. ...
5
votes
2answers
133 views

Delegates as Properties: Bad Idea?

Consider the following control (snipped for brevity): public partial class ConfigurationManagerControl : UserControl { public Func<string, bool> CanEdit { get; set;} public ...
5
votes
2answers
168 views

Software-design only with interfaces?

Is it good approach when in software-designing the class interactions are describe only with interfaces? If yes, should I always use this approach? I must design class library that should have a high ...
5
votes
1answer
147 views

Implementing Dynamic Process Map for win32 Application using Delphi

Delphi XE , Win32 Application , SQL Server 2005 Database. I am implementing a Quality Management System. I have some predefined Process Maps to apply them inside my application/system. I am requested ...
5
votes
4answers
228 views

is this a passable software design?

I'm currently working on a game in c++. since there's no garbage collector one has always to carefully delete the objects and also make sure that such objects are not accessed anymore once they got ...
5
votes
4answers
207 views

Software Design & Web Service Design

I'm about to design my Web service API, most of the functions of my API is basically very simular to my web application. Now the question is, should I create 1 single method and reuse them for both ...
5
votes
8answers
330 views

Never throw software away?

Is it never ok to throw out software? Joel concludes companies should never toss out software. I try to be a good little programmer and follow this rule. I've come into a five year old project ...
5
votes
4answers
160 views

Designing a flexible and extensible bonus system for a Scrabble's game implementation

Let's say I'm implementing my own version of Scrabble. I currently have a Board class that contains lots of Squares. A Square in turn is composed of a IBonus and a Piece. The bonus implementations are ...
5
votes
2answers
147 views

How to organise the file structure of my already working plugin system?

I am working on a project whose main design guiding principle is extensibility. I implemented a plugin system by defining a metaclass that register - with a class method - the class name of any ...
5
votes
8answers
685 views

Utility classes are evil?

I saw this thread http://stackoverflow.com/questions/3339929/if-a-utilities-class-is-evil-where-do-i-put-my-generic-code and thought why are utility classes evil? edit -- here is a specific ...
5
votes
7answers
426 views

Good Data Structure for Unit Conversion?

StackOverflow crowd. I have a very open-ended software design question. I've been looking for an elagant solution to this for a while and I was wondering if anyone here had some brilliant insight ...
5
votes
8answers
474 views

Is it worth converting my functional JavaScript code to an object-oriented design?

I'm currently building a small web application that includes a fair amount of JavaScript. When I was prototyping the initial idea, I just hacked together a few functions to demonstrate how the ...
4
votes
3answers
52 views

Coupling between public functions

Lets say I have a function called do3() In order for that function to work I need the functions do1() and do2() be executed. However, do1() and do2() could also be needed for other stuff (maybe for ...
4
votes
2answers
244 views

Understanding domain objects/services

What are domain objects and domain services in software architecture and design? How are they different from Business Logic Layer?
4
votes
4answers
124 views

About software design: Where I must check parameters?

Imagine I have an application that request to the user a name, a category list. When user click on save button, application will save name and category to a database. I have a layer that get name and ...
4
votes
5answers
121 views

where in class hierarchy should instance methods be written?

Here's a part of a class "hierarchy" that I use for a simulation model (my code is in Python, but I think my question isn't language dependent): class World: # highest-level class, which "knows" ...
4
votes
4answers
154 views

Pros and Cons on where to place business logic: app level or DB

I always again encounter discussions about where to place the business logic: inside a business layer in the application code or down in the DB in terms of stored procedures. Personally I'd tend to ...
4
votes
7answers
3k views

Tools for software architecture and design

I want to know if there exist different tools to develop software architecture and software design.. If so how do they differ and can you please mention few tools for software design and software ...
3
votes
4answers
120 views

Java Anonymous Class as Utility Functions ? To design Arguments that are actually used, or one Argument (the bigger obj)

The Situation is that I have to use Function pointers for so many functions in Java (so I did it this way) and saved each anonymous class to a static variable of the Interface, so that I could use ...
3
votes
3answers
408 views

python: abstract base class' __init__(): initializion or validation?

class ABC is an "abstract base class". class X is its subclass. There's some work that needs to be done in any subclass of ABC, which is easy to forget or do incorrectly. I'd like ABC.__init__() to ...
3
votes
7answers
925 views

Avoiding Circular Dependencies of header files

Do you have any good advice on how to avoid circular dependencies of header files, please? Of course, from the beginning, I try to design the project as transparent as possible. However, as more and ...
3
votes
3answers
177 views

Just in Time compilation always faster?

Greetings to all the compiler designers here on Stack Overflow. I am currently working on a project, which focuses on developing a new scripting language for use with high-performance computing. The ...
3
votes
3answers
299 views

How to write technical paper on software development

I have created a standalone java application. Now I want to write a technical paper on it. I have already written introduction and also about various functionalities that my app. provides. Can anyone ...
3
votes
1answer
470 views

Twitter-like app using MongoDB

I'm making an app that uses the classic "follow" mechanism (the one used by Twitter and a lot of other apps around the web). I'm using MongoDB. My system has a difference, though: an user can follow ...
3
votes
3answers
882 views

What's the difference between Architectural Patterns and Architectural Styles?

In Software Architecture - Foundations, Theory and Practice, I can find definitions for both. The problem is that I don't get what each one of them means in plain english: Architectural Pattern. ...

1 2 3 4 5