Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

38
votes
21answers
2k views

How to make my programming designs better? [closed]

I'm currently stuck how I should make designing skills as a programmer better. I've seen over a dozen questions about (algorithmic) programming challenges. Defining and verifying a good design isn't ...
16
votes
15answers
2k views

I've heard of DRY and KISS, what other maxims do I need?

Being a self taught programmer, I base most of what I do on KISS and DRY. For me they encapsulate complex ideas well and DO help me to write better code. What else should I know?
10
votes
11answers
399 views

Should software be designed with performance in mind?

Is it advisable to zero-in on design of a component or architecture of a software with performance in mind? What I mean is, how ready should the design/architecture be to used in a ...
10
votes
27answers
750 views

What features any good application should care about 'By-Design'

I know that the default answer is "it depends", but I want to know the feature list you are working from in developing a good application. I'm particularly interested in features that need to be ...
9
votes
7answers
301 views

Is using Java's instanceOf compatible with the “program to an interface” design principle?

As you know the 'program to an interface' design principle broadly prefers supertypes instead of concrete types or implementations. Is it consistent with the principle to use instanceof in a Java ...
9
votes
5answers
1k views

Liskov substitution principle - no overriding/virtual methods?

My understanding of the Liskov substitution principle is that some property of the base class that is true or some implemented behaviour of the base class, should be true for the derived class as ...
8
votes
3answers
1k views

Does Scala's pattern matching violate the Open/Closed Principle?

If I add a new case class, does that mean I need to search through all of the pattern matching code and find out where the new class needs to be handled? I've been learning the language recently, and ...
7
votes
4answers
201 views

Is AJAX push a HTTP protocol aberration?

Develop a elegant Pub-Sub architecture in web-oriented-apps is a real challenge. Although there are some very interesting solutions using long-polling-connections (e.g. COMET) and repetitive-timeouts ...
7
votes
3answers
368 views

UI Advice: how to design a form with a lot of data

I'm re-writing an app that is a data-entry tool. The existing app is in Access and consists of a form with multiple grids, with each grid containing many columns that requires the user to scroll ...
6
votes
7answers
310 views

Calling the variable property directly vs getter/setters - OOP Design

I know this is probably subjective but I read this optimization page from Google for PHP and they suggest use the variable property directly without the need of getters and setters. Understandably I ...
6
votes
2answers
253 views

Should object-oriented principles be applied in procedural languages?

I know that it's possible in principle to turn even procedural languages such as C or MATLAB into object-oriented ones. This question has been fairly well discussed here and here. What I found ...
5
votes
8answers
281 views

Should I favour IEnumerable<T> or Arrays?

In many projects I work on, whenever I have to return a read only collection, I use the IEnumerable<T> interface and make it type specific like so: Public ReadOnly Property GetValues() As ...
5
votes
6answers
271 views

(Programming to an interface v/s working with concrete class) when there is just one concrete class

In an OO component, when you have only one implementation available for an class and that class is not 'published' to other components, is it still advisable to have an interface and work with the ...
4
votes
1answer
91 views

Why oop languages don't support separate access modifiers for reading and writing?

I often find myself writing getters and setters just because getting and setting would require different access level. And those getters and setters are trivial (getter only returns, setter only sets ...
4
votes
4answers
168 views

Should I care that passing in a class representation of an XML settings file violates the law of demeter?

I'm using a tool to automatically generate a class representation of a hierarchically organized XML file. The XML file is a settings file my app need to be able to access (read-only). If I pass in ...
4
votes
6answers
157 views

Returning a new Object vs modifying one passed in as a parameter

I came across the following piece of code during a code review. My intuition is telling me that this isn't following proper OOP. I'm thinking that instead the LoadObject method should return a new ...
4
votes
8answers
335 views

What are the list of Patterns and Principles a programmer must/should know?

I have been coding for a few years and still feel that my knowledge is not broad enough to become a professional. I have studied some books related to design patterns, but I know there are many ...
4
votes
3answers
214 views

Concrete Types or Interfaces for return types?

Today I came to a fundamental paradox of the object programming style, concrete types or interfaces. Whats the better election for a method's return type: a concrete type or an interface? In most ...
4
votes
5answers
196 views

Does the Liskov Substitution Principle apply to subtype which inherited from abstract class?

loosely speaking, Liskov Substitution Principle states that a derived class can be substitute in place of the base class without affecting the user. In the case when the base class is an abstract ...
4
votes
5answers
292 views

Newest Agile Design Methods for code construction

Hallo everybody Recently I've been reading the book: "Agile software development, Principles, Patterns and Practices" by Bob Martin The following (S.O.L.I.D) agile-design-principles are listed ...
3
votes
4answers
102 views

Web programming principles

Coming from a bit of a conventional (if rusty) programming background, I am busy getting to grips with the "stateless" nature of web sites. It is quite a mindset change! I've created a small web ...
3
votes
0answers
243 views

Graph database design principles, general principles and granularity issue

In relational database design, there are normal forms to guide the design process. Are there similar prinicples that apply to the design of graph databases like neo4j? In particular, I'm puzzled by ...
3
votes
2answers
245 views

UML help C# Design Principles

Could anyone please point out the meaning of the graph below: What is the relationship between PolicyLayer and PolicyServiceInterface What is the relationship between PolicyServiceInterface and ...
3
votes
2answers
287 views

UOM (units of measure) design patterns

Looking for general design patterns principles with respect to storing and converting known values (i.e. meters to feet). Been googling with no luck so I must be missing something. Assuming many ...
3
votes
2answers
75 views

Need repository layout references

I am anticipating a battle over Subversion repositories: currently we have a single web application that was checked in as 3 main projects and 2 reports projects (when I started 6 months ago), is now ...
3
votes
2answers
217 views

What does “dependency inversion principle” mean in OOP?

What is meant by the "dependency inversion principle" in object-oriented programming? What does it do?
3
votes
3answers
664 views

What are the most important structured software design principles?

Today I saw a job description that requires "significant experience coding in C++ and a thorough grounding in structured design principles", so I thought about what these principles are. First I felt ...
3
votes
8answers
329 views

When to stop DRYing up the code?

So DRYing up code is supposed to be good thing right? There was a situation in one of the projects I was working on where there were certain models/entities that were more-or-less the same except the ...
3
votes
8answers
1k views

OO Software Design Principles

I am a huge fan of software design principles such as SOLID and DRY. What other principles exist for OO software design? Note. I’m not looking for answers like "comment your code" but instead ...
3
votes
6answers
905 views

Having trouble understanding User Controls in C#

I'm new to usercontrols, having only created one so far, so bear with me. I've been reading today that usercontrols are supposed to be self-contained and not rely on any information from the parent ...
3
votes
2answers
117 views

Why not all form controls could be rendered via HtmlHelper?

Does anybody know why could some HTML form controls be rendered using System.Web.Mvc.HtmlHelper (hidden, checkbox, password, textbox) and some couldn't and should be explicitly written in HTML (file, ...
2
votes
1answer
77 views

Is Interface segregation principle only a substitue for Single responsibility principle?

Is interface segregation principle only a substitue for single responsibility principle ? I think that if my class fulfill SRP there is no need to extract more than one interface. So ISP looks like ...
2
votes
3answers
71 views

Is adding attributes dynamically frowned upon in Python?

In Python, you can assign an arbitrary attribute from outside the defining class: class Profile(models.Model): user = models.OneToOneField(User) name = models.CharField(max_length=140) p = ...
2
votes
2answers
93 views

Help choosing my DDD aggregate roots within a provided scenerio?

I'm fairly new to DDD and have read a few articles about the concept so pardon if I'm lacking some knowledge. I'm curious on how this example should be modeled with aggregate roots. The basis is: ...
2
votes
7answers
98 views

What is an effective way to validate a bunch of variables before moving on?

I've been reading about the ideal size of methods and the single responsibility principle then I go look at some of my code. I feel I can break up a lot (>90%) of my stuff to be small manageable ...
2
votes
3answers
143 views

REST API question on how to handle collections as effective as possible while still conforming to the REST principles

Im pretty new to REST but as far as i have gathered i understand that the following URL's conform to the REST principles. Where the resources are laid out as follows: ...
2
votes
3answers
143 views

Trying to understand MVC - am I already doing it?

I'm quickly getting knee-deep in larger and larger applications so I thought it'd be a good idea to learn what patterns are and how they work, etc. So, I'm watching some tutorials on youtube and ...
2
votes
3answers
66 views

Java - Should I use a field or a class for the problem as follows:

I have two tables in the DB FuelStation (fuel_station_id: int (PK), fuel_station_name: varchar, fuel_brand_id: int(FK)) FuelBrand (fuel_brand_id: int (PK), fuel_brand_name: varchar) As we can see, ...
2
votes
3answers
145 views

How to manage interface segregation when using an IoC container? [closed]

Possible Duplicate: StructureMap singleton usage (A class implementing two interface) I'm currently designing a small system and i'm currently using structureMap as IoC. I just recently got ...
2
votes
3answers
230 views

Is having Message Box in business class wrong?

Is having reference to System.Windows.Forms in a business class and using MessageBox.Show wrong? Currently have a event processing decorator class decorating a service class. When certain events ...
1
vote
7answers
248 views

Java Program Design - Card Shuffler

I am trying to write a card shuffler, and I know the method by which I wish to shuffle the cards. However, I am at a loss of the best object-oriented way in which to write it. The method, a rather ...
1
vote
1answer
57 views

When is it reasonable to violate the Single Responsibility Principle?

After refactoring some service-layer classes in our java web application, i was asking myself at which point it is reasonable to stop adhering to the Single Responsibility Principle (SRP) and to keep ...
1
vote
4answers
72 views

Objects Without Behaviour

I have a question related to general OOP than specific to a language. I was trying out a simple application (in java) and I was trying to model it like a real world scenario. While re-factoring I ...
1
vote
3answers
59 views

Good Sources for simple/gradual exposure to Design Patterns

I would like to set myself a goal to introduce myself to a new design pattern every week. Because I work at an internship right now, its hard to get me to do this because I always feel guilty that I ...
1
vote
2answers
1k views

Rules Engines User Interface Design

At work, we have optimization engines, and one of the inputs used by these engines are business rules, which we create and edit with a proprietary rule editor. These rules are of our own proprietary ...
1
vote
3answers
925 views

Strategy Pattern - multiple return types/values

We are working on an image processing project using C# and EmguCV. Our team is composed of 3 people. To make faster progress, the 3 of us work on different sub-problems or experiment with different ...
1
vote
8answers
184 views

Which design option is more suitable for auto-correction on construction?

Trying to decipher an appropriate OO design to implement. The basic scenario is that you have a PstnNumber which is essentially a 10 digit phone number that always starts with 0 (e.g. 0195550000). A ...
1
vote
4answers
366 views

what are “Meta-Data design principles”?

I'm looking at a job description that I'm considering applying for, and one of the requirements listed is "Familiar with Meta-Data design principles". Can some give a brief explanation? I'm probably ...
1
vote
4answers
130 views

What is an elegant way to track the size of a set of objects without a single authoritative collection to reference?

Update: Please read this question in the context of design principles, elegance, expression of intent, and especially the "signals" sent to other programmers by design choices. I have two "views" of ...
0
votes
5answers
138 views

UML help C# Design Principles

I have a problem understanding an UML below: Specifically, what is the relationship between PersistentSet and ThirdPartyPersistentSet? What is the relationship between PersistentObject and ...

1 2