Tagged Questions
The design-decisions tag has no wiki summary.
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 ...
13
votes
5answers
466 views
Is it wrong to use the hand cursor for clickable items such as buttons?
I've always thought the hand cursor to be the ideal visual indicator for "you may click here" to the user. We are used to see it in this context daily because of it's usage on hyperlinks and hence all ...
7
votes
8answers
227 views
Bad design decision to throw an exception from an accessor?
I have read some answers re the pro's and con's of throwing an exception within an accessor, but I thought I would broach my specific question with an example:
public class App {
static class Test ...
7
votes
6answers
375 views
What scripting language for our .NET based IDE?
We have an IDE for machine automation that allows its users to develop solutions by connecting objects and components visually. They can also write "plugins" using C++ and C#. The IDE is written using ...
6
votes
2answers
53 views
Why is CompareTo on short implemented this way?
Consider the following code:
namespace ConsoleApplication1 {
class Program
{
static void Main(string[] args)
{
Console.WriteLine(100.CompareTo(200)); // prints -1
...
5
votes
3answers
277 views
Windows Services — High availability scenarios and design approach
Let's say I have a standalone windows service running in a windows server machine. How to make sure it is highly available?
1). What are all the design level guidelines that you can propose?
2). ...
5
votes
4answers
158 views
Why isn't the Type class in the System.Reflection namespace?
Everything about Type is reflective in nature. Is it because Type is used more often than the rest of the classes in System.Reflection? Or because it functions more like a system class than a ...
4
votes
3answers
190 views
Design decisions: Why and when to make an interface private?
Are private interfaces ever used in design decisions ? If so, what are the reasons and when do you know the need for a private interface?
4
votes
1answer
364 views
Sphinx for writing “parallel text”
Problem: I am trying to write "parallel text" using reStructuredText. By "parallel text", I mean something like annotated works of fiction, where the text is in two columns. The left column contains ...
4
votes
7answers
357 views
Best way to implement plugin framework - are DLLs the only way (C/C++ project)?
Introduction:
I am currently developing a document classifier software in C/C++ and I will be using Naive-Bayesian model for classification. But I wanted the users to use any algorithm that they ...
4
votes
1answer
332 views
Credit card system implementation?
My site is going to have a credit system that basically works a lot like a credit card. Each user has an unlimited credit limit, but at the end of each week, they have to pay it off. For example, a ...
4
votes
1answer
1k views
Web vs Desktop Development (Online vs. Smart-Client)
I work at a company with a large SAP investment, and we also have dozens of large .Net systems (mostly internally for engineering systems), and Java platforms (mostly for external web applications). ...
3
votes
6answers
865 views
Primary Keys - Native, Sequence, or GUID keys?
In reading this and this and then reading this (which references the other two ironically) I find myself wondering just how big the discussion of this topic is? I am a SQL Server guy and so I tend to ...
3
votes
5answers
262 views
What should I do with an object that should no longer be used in Perl?
I am writing a class that is linked to an external resource. One of the methods is a delete method that destroys the external resource. No further method calls should be made on that object. I was ...
3
votes
6answers
1k views
IdbConnection vs. SqlConnection
When I write an app, I use the System.Data interfaces (IDbConnection, IDbCommand, IDataReader, IDbDataParameter, etc...). I do this to reduce vendor dependencies. Unless, I'm doing a simple test ...
2
votes
1answer
32 views
A wizard's logical behavior
The question I have is about the general functionality of the back button in wizards. I was thinking about the possible behaviors of this button and I couldn't find any clue which one is the right ...
2
votes
2answers
99 views
Hosting multiple sites via rails - Should I use one rails instance, or many?
I am building a rails app that will host multiple archery league websites. Lets call it myarchery.com, and say I have 2 sites: billsleague.myarchery.com and jimsleague.myarchery.com.
Now when I ...
2
votes
6answers
2k views
How to decide on WebForms vs ASP.NET MVC 3 for new project? [closed]
Possible Duplicate:
MVC versus WebForms
ASP.NET MVC Performance
I'll be starting a new web project in the coming weeks. It's a public facing web site for a somewhat famous person. I have 2 ...
2
votes
4answers
650 views
What is the difference between using cfinvoke and createObject to run a component function?
In my company's code, I've often seen component files used by initializing an object of that component and calling the methods off the object. However, it seems to me somewhat more straightforward to ...
2
votes
1answer
239 views
Algorithm to represent Decision tables
What would be the best algorithm to use if you wanted to store Decision tables in code, i've looked at the Adjacency matrix and Binary tree would anyone consider this to be the right direction? What ...
2
votes
2answers
90 views
Repeated properties design pattern
I have a DownloadManager class that manages multiple DownloadItem objects. Each DownloadItem has events like ProgressChanged and DownloadCompleted. Usually you want to use the same event handler for ...
2
votes
3answers
1k views
Should I use Rails 3 for my application
I have been a user of Rails for a while and used version 2.3.4 recently.
Rails 3 Beta just came out recently and it seems have significant performance improvement especially with the merge with Merb.
...
2
votes
6answers
2k views
Is there any reason to use PHP when starting a new SaaS project?
I'm a PHP developer, so when I started working on a new SaaS project I naturally planned from day 1 to do it in PHP.
However, I would like to be a bit more pragmatic about this decision since it's ...
2
votes
7answers
2k views
C# byte[] substring? (design)
I'm downloading some files asynchronously into a large byte array, and I have a callback that fires off periodically whenever some data is added to that array. If I want to give developers the ability ...
2
votes
2answers
546 views
SVN externals and export for framework
I'm currently working on a framework for a client. The framework is based upon Zend Framework. The directory structure is:
application : Application specific code
...
2
votes
2answers
318 views
What was the design decision for variadic functions needing an array?
I am curious and hopefully someone can shed somelight on this - but why do the C# functions that take 'params' have to be an array?
I get that the objects in the parameters list are entered into an ...
1
vote
1answer
176 views
What kind of on-line / real-time applications have you deployed using R?
R can be very useful for prototyping and some exploratory work. However, I'd like to know what kind of on-line or real-time applications have you (the SO reader) successfully deployed using R and why ...
1
vote
3answers
704 views
Add simple business logic to repository in ASP>NET MVC 3 C#
I have a question concerning an issue that has already been disputed many times in stackoverflow (I apologize for this) but no general answer has ever been given because of the subjectivity of the ...
1
vote
4answers
245 views
Use Django User-Model or create a own Model?
I'm currently designing a Django based site. For simplicity lets assume that it is a simple community site where users can log in and write messages to other users.
My current choice is wether to use ...
1
vote
5answers
139 views
Why does WPF use attached properties for things like positioning in a grid?
Why do we need "attached properties"? The concept of it bugs me a bit, since you can conceivably set values of properties that don't even exist on a particular DependencyObject (and they will just be ...
1
vote
4answers
286 views
chose .NET IoC container for a long living project
I find that when it comes to plain features the IoC containers out there for .NET are more or less interchangeable. Because our project has been and most likely will be alive for a very long time, we ...
1
vote
4answers
215 views
Is there a reason that ASP.NET's CheckBoxList doesn't have a SelectedItems member?
Whenever I want to get selected items I have to loop through each item and see if it's selected. They even have a SelectedItem (no "s" at the end) member which seems odd for a CheckBoxList. It seems ...
1
vote
1answer
106 views
Conditionally required fields and disabled inputs
My form has a bunch of address fields (street, city, country, province, postal code) that need to be filled out over and over again. To make it easier for the user, I've added a "copy from" selector ...
1
vote
2answers
90 views
What's the proper approach for writing multi-path “story” flows?
I wonder if you can help me.
I'm writing a game (2d) which allows players to take multiple routes, some of which branch/merge - perhaps even loop. Each section of the game will decide which section ...
1
vote
5answers
1k views
C# Battleships Class/Structure
greetings, im am new to programming and at the moment developing a clone of the game battleships. i need to implement a fleet of 5 ships. this is what i have done so far:
class Cell holds the status ...
1
vote
4answers
578 views
Class Diagram with aggregation and generalization
I am working on a university project and i have the following problem i can not figure out.
I have a class Called Employee
from this i generalize two classes Contractor employee and Permanent ...
1
vote
4answers
271 views
What are the uses for Joomla?
I've taken over development for a site that was started to be built in Joomla. So far, there is just a few static pages and user registration. The specs state it will basically be a file-sharing ...
1
vote
2answers
327 views
confusion C# duck typing, implicit conversion and inconsistencies
Everyone seems to love duck typing, if it looks like duck, acts like a duck, treat it like a duck. C# 4.0 allows duck typing and current supports it in a few situations (see "C# has used duck typing ...
1
vote
3answers
130 views
How do I know when to and whether to have a separate controller for a piece of code?
So I am in a situation where I have to decide whether or not to have a separate controller for a particular piece of code. We have a home page that acts like a hub for the rest of the site. The page ...
1
vote
5answers
270 views
Product Development Decision Methodology
What is the best method you have found for deciding whether or not to implement features into your software product?
EDIT: Can you recommend some reading material (online or book) for me on this ...
0
votes
3answers
53 views
If we have @Override why is there not @Implementation or @Implements`?
I'm curious as to why we have the @Overrides annotation, but there is not a similar idiom for interfaces (such as @Implements or @Implementation). It seems like it'd be a useful feature, as you could ...
0
votes
7answers
172 views
In Java, why are class members accessible to members of the same package by default?
I understand that unlike in C++, if I don't specify "public" or "private" when declaring a data member, it can be accessed from anywhere in the same package.
The designers of the Java language could ...
0
votes
2answers
84 views
Is DB Replication a proper solution for this scenario/problem?
I'm investigating wheter the use of a replication operation mode is a
way of tackling the following design problem.
I have no prior experience with replication of MySQL databases, keep
this in mind ...
0
votes
0answers
279 views
Programming languages where indexing starts at 1? [closed]
Possible Duplicate:
List of 1-indexed programming languages?
Besides AWK, are there other programming languages where indexing starts at 1 instead of 0?
0
votes
3answers
133 views
Tough inheritance database/model design decision
I have Users which can be either TypeS, TypeC, or TypeA. I have models for each of these types to store additional information. Now, in the Users table, should I have
3 nullable foreign-key fields ...
0
votes
7answers
127 views
What should be the expected behavior on this user decision?
I have this application where the users can change text files and when they forget to save them, a little message pops up reminding them that the changes are not saved and asks them if they want to ...
0
votes
4answers
754 views
EpiServer CMS 5 R2: Custom Page Providers - The right choice?
I'm using EpiServer CMS 5R2 on a new project. I've been tasked with creating a CustomPageProvider to link to an existing back end store which we don't have control of. However looking at the sample ...
-1
votes
3answers
79 views
Why iterator::end( ) are non-static members and not similar as string::npos?
While iterating through a std::map or std::vector or any container which has iterator in it, is checked against the variable.end() and not something like container<>::end. For example,
...