Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

54
votes
9answers
2k views

Is Using Tuples in my .NET 4.0 Code a Poor Design Decision?

With the addition of the Tuple class in .net 4, I have been trying to decide if using them in my design is a bad choice or not. The way I see it, a Tuple can be a shortcut to writing a result class ...
38
votes
17answers
3k views

What is the best “forgot my password” method?

I'm programming a community website. I want to build a "forgot my password" feature. Looking around at different sites, I've found they employ one of three options: send the user an email with a ...
15
votes
3answers
2k views

Hibernate lazy-load application design

I tend to use Hibernate in combination with Spring framework and it's declarative transaction demarcation capabilities (e.g., @Transactional). As we all known, hibernate tries to be as non-invasive ...
8
votes
2answers
210 views

What, specifically, belongs in a Model, a View, and a Controller?

I've been learning about the Model-View-Controller paradigm ("MVC"), but I'm quite confused since some tutorials contradict other tutorials. My current understanding of the process looks something ...
8
votes
6answers
316 views

How do you run your unit tests? Compiler flags? Static libraries?

I'm just getting started with TDD and am curious as to what approaches others take to run their tests. For reference, I am using the google testing framework, but I believe the question is applicable ...
7
votes
1answer
821 views

Working with Node.JS

Last night I dump windows 7 and formatted my hard driver to port to a Linux based operating system, Purely for the reasons that I wanted to start working with Node.JS So I have installed Node.JS and ...
7
votes
9answers
4k views

Designing iPhone iOS4 application behavior: running in background vs. terminating application

We're developing iPhone GPS application for car drivers. As you probably know, iOS4 introduced multitasking, so our application can run in background - and it is. It's part of its functionality. The ...
7
votes
8answers
419 views

Web Pages That Just Do Too Much Stuff

Concerning pages that build a web application: Lately, I have found myself creating web pages that are simpler than the ones I used to. Before, I would try to jam as much functionality into a single ...
6
votes
3answers
233 views

Inplace Editing vs. Edit Page

When you develop web applications, especially ones that deal with a good amount of data management (e.g. contacts, addresses, orders and so forth), do you usually create the interface as in-place edit ...
6
votes
2answers
749 views

Large application design (WPF/Silverlight)

Aside from the MVVM, as well as MVC patterns for the overall structure of a WPF app, how exactly do you break up the model/controller aspect of an app into subcomponents? The reason I ask is that I ...
4
votes
1answer
130 views

API Versioning within web applications

I am currently in the process of designing a versioned API for a new website. I understand how to namespace the routes but I am stuck on the best way to implement versioned methods within a model. ...
4
votes
4answers
391 views

Is having an empty base class bad design?

I need a base class for my DTO classes which will be used in my generic interfaces. But the DTO classes have nothing in common. They are just dumb classes containing some properties. public void ...
4
votes
3answers
147 views

Looking for advice for implementing a versioning feature in our application

I am starting a project to create an "object versioning" feature for our software (.NET 3.5 / SQL Server 2008), basically it needs to do this: a user is looking at a customer: last name is ...
4
votes
8answers
618 views

Are sequential numbers necessary?

I am working on a winform (.NET) application which includes Orders, Invoices, Service Orders, Ticketing etc. It it necessary for these enities to be sequential when numbering their IDs? IMO no. Take ...
4
votes
3answers
4k views

How to pass information from one WPF UserControl to another WPF UserControl?

I've got a WPF application. On the left side there is a stackpanel full of buttons. On the right side there is an empty dockpanel. When user clicks a button, it loads the corresponding UserControl ...
3
votes
1answer
942 views

Writing a Snow Leopard Service for Finder.app

I am currently looking into solving the problem with the inability to quickly create new files in the Finder. I will open source what I write because I think the Mac community needs this solved. On ...
3
votes
9answers
248 views

Application design for 5 years

My question is not technical. It's more of a philosophical and really down to individual preference. I am designing and developing an application (web + desktop) and this just occurred to me and was ...
3
votes
5answers
101 views

Design decisions

I have been asked to choose between Web Forms and MVC for a minor internal company project. I do not know MVC. How much of MVC do i have to know to be able to make a decision? Note: 1. I have read up ...
3
votes
1answer
154 views

Django: Chicken or Egg question

I am building an application that will send an API call and save the resulting information after processing the information in a APIRecord(models.Model) class. 1) Should I build a separate class in ...
2
votes
2answers
37 views

How to handle lots of application resources in .net application?

I'm developing a wpf app which contains a dashboard with buttons ordered by category. Each button opens a resource, this can be a PDF, a video, etc. In total there are 12 categories with 60 subjects ...
2
votes
1answer
39 views

Rails best practices to build activable (or not) features?

OK let's assume I have an awesome looking rails app with somes Posts, which can be commented and voted on. It's online and people love it. Now imagine a client comes up and tells me "Hey, this app ...
2
votes
4answers
156 views

WPF Designers : What is your design process?

I am going to totally re-ask this question. So this is one big edit I was looking for a little feedback from WPF professionals, about their design process. For example, when I design a website, ...
2
votes
3answers
69 views

Pitfalls to avoid when writing project specs

I'm currently trying to write up some software specs for a large-ish project that I'd like to bid out on oDesk (maybe 3k-6k). I have a classical education in computer science, but minimal work ...
2
votes
2answers
344 views

What's the most common scenario for Cocoa app setup during first launch?

I am creating an app and I would like a user to set some obligatory preferences during first app launch. What is the most common scenario to achieve this? Should I set some user defaults to see if the ...
2
votes
4answers
165 views

Unique Key Constraint

What's the best practice in handling data insertion/update on a table with unique key constraints at the application level? These are what I came up with: 1. Run a query on the table before inserting ...
2
votes
4answers
259 views

Circular dependencies in foreign keys: use it or avoid it?

My application loads lots of data from a database into a complex data structure. The in-memory data structure ressembles the structure of the database, which means that if the database contains the ...
2
votes
3answers
55 views

When is it appropriate to intentionally delay an application's actions?

I was in a discussion in another forum where I disagreed with the purpose of intentionally delaying an application's actions, and I'm hoping someone can clarify where doing would be considered ...
2
votes
4answers
194 views

architecthure for a large data driven website

I know how to create small data driven websites but want to get an idea on how to convert them to handle large data flow. The questions are based on a site that would act mostly like stack overflow, ...
2
votes
2answers
115 views

Which source control paradigm and solution to embed in a custom editor application?

I am building an application that manages a number of custom objects, which may be edited concurrently by multiple users (using different instances of the application). These objects have an ...
2
votes
7answers
214 views

Creating a dummy design before the development starts

How can i create a dummy design of an application before the actual development starts? How to simulate the UI of the application. After completing the analysis phase do i need to start the design ...
2
votes
1answer
74 views

N-Tiered application design tool

I'm beginning the design of a medium-sized web application. I usually like to design from the top down, i.e., start at the highest level and design my way down. I am planning to have the following ...
2
votes
1answer
177 views

What are the major challenges of building an iPhone application that synchronizes data with a server via web APIs?

I want to build an application that utilizes the data from a server, and it needs to synchronize the data in the application with the data entered by other client applications. So, there are some ...
2
votes
3answers
138 views

Should draft records be kept in a separate table?

We're building a simple web based system whereby somebody adds a record, a CMS page for example, that gets approved by someone in charge before being shown on website. If the author then decides to ...
2
votes
2answers
193 views

iphone data migration and application design

I'm working on an application that has a read-only database shipped with it. The user will run the application and be able to select a series of "favourites" from the database which will appear in ...
2
votes
10answers
250 views

what is the best UX for non-programmer users? comma-separated tags or space-separated tags?

I'm creating a social site for teachers (non-programmers) on which teachers can add events, links, exercises, tips, lesson plans, books, etc. Each of these items I want them to be able to add tags to ...
1
vote
3answers
88 views

Change color of only the label for TextField in Blackberry

I am trying to a add a TextField. I am using EditField _textBox = new EditField("Subject", "Some text"); for creating a textbox with label as Subject. I want to change the color of only the ...
1
vote
2answers
81 views

disadvantage of using web services for business layer and data access layer?

for web based business application, is it good to develop business layer, data access layer using web service? what are the disadvantages? UI Layer (ASp.Net) --> Business Layer (WCF Web service) ...
1
vote
4answers
67 views

Storing global immutable data in static classes

I have a WinForms project, which uses a lot of user controls. Some of these user controls use classes from business logic layer. These classes are mainly performing CRUD operation to a database ...
1
vote
2answers
79 views

Is it insecure to reveal a row's primary key to the user?

Why do many applications replace the primary key of a database with a seemingly random alternative id when revealing the record to the user? My guess is that it prevents users from guessing other ...
1
vote
1answer
44 views

Tagging system design issues

I'm working on a news site and I'm thinking of implementing a tagging system (similar to this site) where you'll be able to categorize news by different category types such as: newscategory (economy, ...
1
vote
3answers
82 views

What is the best language/framework for this app [closed]

So I've been developing a screenwriting app for the last 8 months... For the first few months I was using HTML5, jquery and php... but found that I was having to build all my own ui controls from ...
1
vote
5answers
129 views

should the user's Account balance be stored in the database or calculated dynamically?

Should the user's Account balance be stored in the database or calculated dynamically? For accurate results calculating it dynamically make sense but then it might be a problem, when there are many ...
1
vote
2answers
168 views

Database design - Help desk application

I cant decide weather or not to keep the help desk application in the same database as the rest of the corporate applications or completely separate it. Help desk application can log support request ...
1
vote
1answer
51 views

Storing database pk IDs in php code alternative?

We have hundreds of thousands of lookup values and since the product is still in dev the IDs are not fixed. So anytime an ID is updated we have to go back and updated thousands of IDs all over the ...
1
vote
1answer
74 views

semi-static data design question

I'm designing a project that will be developed in Django and I had a design philosophy question. In my app I need to track information like current week. This is related to the current week in the ...
1
vote
2answers
148 views

Localization via database or flat file?

For multi-language PHP application assume labels/phrases will be translated into multiple languages. Those labels can be placed in language specific files (e.g. one file per language) or can be loaded ...
1
vote
5answers
157 views

Should I queue emails in a database before sending, instead of on the fly?

I'm developing a site that sends email notifications to users after certain events/user actions (tagged in a photo, added as a friend, etc.) From my experience, sending emails from a web server can ...
1
vote
3answers
96 views

Application design - When should interfaces be used?

I kind of understand an interface as being a contract that can be applied to classes that would otherwise have nothing in common (ex: Comparable in Java). However, in what situation(s) would you have ...
1
vote
3answers
131 views

Designing For Lookup Values

I am wondering what the protocol is in your development shop or project for dealing with lookup values, such as countries of the world or states in the United States of America. I have seen it done ...
1
vote
1answer
164 views

Can I use a WinForms VB.NET application to access a database on a centralized server?

I want to connect a database that is located on centralized server. How can I use a windows form VB.NET application to access it? Is this possible? How can I maintain a single user entry (e.x== used ...

1 2 3