The design-decisions tag has no wiki summary.
0
votes
0answers
14 views
What are the open source projects with thorough documentation of their architectural decisions?
Many open source projects lack documentation. The projects which have some documentation tend to have very little content on their architectural decisions.
Here is a template for documenting ...
0
votes
1answer
93 views
A lambda expression with a statement body cannot be converted to an expression tree
There are several questions on StackOverlow about statement body expressions. I am just wondering why it is not possible to do this in C#? (Where is the complexity why it was not implemented in the ...
0
votes
0answers
125 views
Will my project benefit from 3-tier architecture with a separate web service?
We have a client who needs a business Web application (it's an intranet application but it might be used from many offices worldwide). For now, it is known only that it will be used by at least 2000 ...
3
votes
2answers
189 views
Why are System.Drawing Rectangle, Point, Size etc mutable structs and not classes?
Is there a reason Microsoft decided to make these structs?
All three are mutable. I would find them much easier to deal with if they were either immutable, or if they were reference types.
If there ...
0
votes
2answers
63 views
Javascript - Distance (in pixels) - Decision
I have a simple javascript animation, where two cowboys (iamges) 'race' each other based on a random interval number.
What I can't find out how to do is for the script to take a decision on who is ...
1
vote
1answer
75 views
Why was “immediate” property added to the EditableValueHolders?
Initially immediate flag was only intended for ActionSource interface. But later on it was added to the EditableValueHolder interface also. What was the reason for design decision ?
2
votes
2answers
337 views
Why did Playframework 2 use a custom Scala Template Engine instead of scalas build in xml mode?
Play 2.0 uses a custom scala based template engine that allows to use a subset of scala inside html code.
Why was this design decision made instead of using scalas build-in xml mode?
The play ...
0
votes
1answer
162 views
Database schema for multiple checkboxes
I currently have a Users table and now want to add other user-related information for a particular user. The form that accepts this information has fields like languages and OS each with a list of ...
0
votes
2answers
55 views
MVC - Datasource container in the view
In clean MVC, I would gather the data from the database and pass it over to the view to be rendered.
Even if the view logic chooses not to render some elements. Which raises the following question:
...
0
votes
3answers
358 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,
...
0
votes
3answers
166 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 ...
2
votes
1answer
52 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 ...
6
votes
8answers
298 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 ...
1
vote
1answer
195 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 ...
3
votes
2answers
232 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 ...
5
votes
2answers
111 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
6answers
11k views
How to decide on WebForms vs ASP.NET MVC 3 for new project? [duplicate]
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 ...
1
vote
3answers
956 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 ...
0
votes
8answers
438 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 ...
2
votes
4answers
1k 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 ...
2
votes
5answers
416 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 ...
0
votes
2answers
126 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 ...
1
vote
4answers
406 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 ...
3
votes
4answers
2k 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 ...
5
votes
3answers
353 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
555 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 ...
16
votes
6answers
1k 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 ...
0
votes
0answers
283 views
Programming languages where indexing starts at 1? [duplicate]
Possible Duplicate:
List of 1-indexed programming languages?
Besides AWK, are there other programming languages where indexing starts at 1 instead of 0?
1
vote
4answers
372 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 ...
7
votes
6answers
538 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 ...
1
vote
1answer
185 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
108 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 ...
2
votes
1answer
402 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 ...
4
votes
7answers
726 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 ...
2
votes
2answers
143 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 ...
5
votes
3answers
546 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
3answers
182 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 ...
5
votes
1answer
504 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 ...
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.
...
0
votes
3answers
180 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 ...
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
780 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 ...
3
votes
7answers
4k 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
810 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
...
1
vote
5answers
368 views
What are the uses for Joomla? [closed]
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 ...
0
votes
7answers
129 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 ...
3
votes
6answers
1k 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 ...
2
votes
2answers
717 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
2answers
361 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 ...
2
votes
3answers
137 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 ...
