Design in programming is the act of making particular choices about how best to structure a program, to achieve goals of reliability, maintainability, correctness or ease of use.

learn more… | top users | synonyms

1
vote
0answers
5 views

Ormlite with android and desktop sqlite access

I'm trying to set up a design for my android and desktop project which allows me to access the sqlite database with ORMLite on my android server and on my desktop server as well. Sounds a bit strange ...
-1
votes
0answers
12 views

Notifying a user of unsaved changes [closed]

I have some settings that the user of my software can change via a GUI. The settings reflect both the current state of the underlying properties, and the state of the user interaction. Example: A ...
3
votes
2answers
72 views

In Clojure, how can I better design this code that needs to be polymorphic?

I'm writing this program that is like a web crawler for online forums. For each forum I crawl, I need to do the same thing: login find the boards find the posts find the permalink to the post find ...
1
vote
1answer
20 views

Apply Visitor Pattern as an Extensibilty Mechanism for a single class

Let's say in my program I have a class called Robot that inherits from some other class. Until now I have some methods inside Robot like addPart or getCost. Now I'm asked to add a new module of ...
0
votes
1answer
17 views

How to avoid breaking API consumers when underlying protocol changes?

I have a bunch of servers (which I have no control over) with an XML-based API (no control here either) which doesn't guarantee complete backwards compatibility across versions, although the data ...
0
votes
4answers
31 views

How to include duplicate markup in every web page

If all my web pages have the same navigation and footer markup, what is the best way of avoid hard-coding this in every page, so if it needs changing it's only changed in one place so as not to have ...
0
votes
1answer
32 views

Database table design with money and periods

Suppose I have database table like Employee and each employee has associated wage. Wages can be different in different periods of time. How can I design a table storing these wages? ("wage periods" ...
-5
votes
2answers
76 views

Why does Java's Collections library say that methods “may throw” exceptions instead of “will throw”? [closed]

In [java.util.Collections][1] in Java SE 6, it says: The "destructive" algorithms contained in this class, that is, the algorithms that modify the collection on which they operate, are ...
-1
votes
0answers
14 views

Which Design Method Should Use For Big Screens (SPRING)

When we develop a big screen with a lot of tabs and a lot popups (for example in banking projects) what methodology is used for saving. Is it a single save or multiple save?. Which design pattern we ...
-1
votes
0answers
25 views

Should the design take longer than code development? [migrated]

I once heard that if you spend 90% of your time developing the design of your program the coding part will only take a trivial 10% of the time. I have found a lot more success in spending about 30% ...
3
votes
2answers
47 views

REST Api Implementation Using Spring

One of the best practices of writing RESTFul api application, is to add versioning. for example: http://my-server/api/v1/getData http://my-server/api/v2/getData Our application exposes REST api ...
0
votes
0answers
12 views

PayPal Extras MasterCard Design My Card feature

As a customer, with some programming background, I figured after fruitless searches on the web for an answer I hope you guys have some sort of info on this matter. When I try clicking 'Personalize my ...
0
votes
2answers
38 views

TimerTask design issue

Basically I have 2 classes: Main and Population. What I'm trying to do is to increase Population.total by 100 using Population.grow() every second. Population already extends another class so I can't ...
-1
votes
0answers
11 views

Design decompotabilities and evolution [closed]

As the diagram shows, the company currently operates using two systems, one for loans and one for insurance sales. The systems were originally completely independent, but at some time in the past, ...
0
votes
0answers
17 views

Java modularizing code

I was wondering the best way to make use of IntelliJ modules in a Java webapp. We are suffering where I work because of circular dependencies and code being used where it shouldn't be. I came up with ...
0
votes
1answer
61 views

Virtual parent and child relationship

The code snippets underneath are from my Keyboard.h and Keyboard.cpp. My question is, how would i implement a layered parent and child relationship? So that if the child dose not implement any of the ...
0
votes
0answers
14 views

Apply Border-Radius To Scrollbars with CSS

To put it simple, this is what i want (obtained on a Webkit Browser using -webkit-scrollbar) : And this is what I get on Opera (Firefox doesn't apply the border radius to the scrollbar either, but ...
0
votes
0answers
21 views

a web application with a lot of form elements

I am designing a web application that has a lot of form elements (i.e. a combination of text boxes and combo boxes). I am trying to redesign it so that the design is less cluttered and I am looking ...
0
votes
1answer
28 views

Design approach for static data requirement in a library

I am supposed to design a re-usable component. It will be a Java library with a API interface, hiding all implementation details including internal data dependency. It requires a set of static data ...
2
votes
4answers
68 views

Error handling: Exceptions vs Error method

I'm creating a 3-tier app and I have a problem dealing with error handling. I don't know if I should throw an exception or call a method to communicate the problem to the other layers. Here is a ...
-1
votes
0answers
50 views

Java application Design [closed]

I am considering the options for designing a system in java which accepts data files from different systems applies some transformations to the data, concats data from multiple files to produce some ...
0
votes
2answers
20 views

Searching/filtering design

I have an asp.net mvc4 application to (for purposes of this question) manage work requests. The main area of this application is just a list of all the work requests in the system, simple enough. The ...
0
votes
0answers
71 views

Building online shop using signalr, asp.net mvc, backbone.js

I'm looking for any complex example (book, article, video training) of how can I combine these tools and create a shop application. I started developing online shop using examples from A. Freeman, S. ...
-4
votes
2answers
66 views

What is the best way to study design patterns in C++ which deals with real-life situations? [closed]

eg. if i have to design a basic prototype of robot or any basic gadget , which book or blog/sites provide info pertaining to mainly design oriented programming not the ones with complex problem or ...
0
votes
1answer
29 views

SQL Server referencing a foreign key to a non-primary key column

Recently we ran into the situation as following: We are designing a database and predicting that data will grow significantly to millions records within 6 months. And we want each row should have a ...
1
vote
0answers
41 views

CSS of a slide in swipe view

I am working in Phone Gap using java script,html and css. I have implemented a swipeview using this. my doubt is how should the CSS be.The CSS i implemented is as follows. .swiper-threshold { ...
0
votes
0answers
24 views

manage parameter configurations for algorithms

I have the following task: first identify an object and find the category it belongs to. Then, depending on the category found parameterize various algorithms and analyze further. The last version of ...
0
votes
3answers
44 views

A pattern for categories of objects with the same data?

I've been working on a project and have come across a puzzling question about how to approach a design (object-oriented). I have different categories of objects, for example, Employee, Groundskeeper, ...
1
vote
1answer
15 views

How do I 'attach' objects to a page

I am new to programming, so pardon my ignorance. I am currently designing a website. However I have come across the problem of different screen dimensions. For example, when you zoom out of the page ...
2
votes
3answers
123 views

C# class design issue

Right now I have a wrapper class which contains around 10 methods out of which 8 methods provides functionality for ClassA & 2 methods provides functionality for ClassB so I am planning to ...
0
votes
1answer
22 views

Should I change the structure of my .Net MVC app when using Azure

In my current development models, I typically use the following solution structure: D a t ---- Presentation (MVC, WCF, WPF) a | --- Business Logic M | ...
0
votes
2answers
56 views

What is the best approach to try different variations of an iOS app [closed]

Quite often design decisions should be user tested or digested by the designers comparing different variations of the solution. I am interested in knowing which method people think is the most ...
0
votes
1answer
21 views

drawing Media Player UI for Android

I am realizing my own media player am using ffmpeg for decoding and libjnigraphics(Bitmap,SurfaceView,...) for rendering. I got it working now i want to get an attractive UI i want to display ...
-1
votes
1answer
46 views

white spaces in design

this code not working, i need the white spaces to be removed i want to have a square like design but the are white spaces that cat between images white space between header and the column style1 ...
0
votes
1answer
58 views

Creating a window that inheritate from an interface/abstract class and Window

I'm creating a WPF application and I encountered a problem with the inheritance. I have a class called DataHandler that make a link between GUI class and data class. The code need to stay open, ...
-3
votes
0answers
30 views

Design for structure of sending/recieving a varaible length message [closed]

I'm just designing an application to send some commands and information through SMS messages, so it is important for me to optimize the number of characters used in the message. My current application ...
0
votes
1answer
38 views

REST questions: advantages of REST over XML-RPC

What is the advantage of using the REST verbs GET, POST, PUT, DELETE instead of just using POST and embedding an XML-RPC operation description in the POST body describing what we want to insert, ...
-5
votes
4answers
94 views

CSS: Can a div “float:middle” rather than “float:left;” with margin-left?

i would like div 1 to float on the left div 2 to float in the center div 3 to float on the right. but there is no such thing as "float in the center" solutions ?
1
vote
0answers
34 views

Architecture for a recurring workorder system [closed]

I'm hoping for advice on designing a workorder system that has to support recurring workorders. For example, An administrator needs to be able to set a workorder to repeat in a unit of time like every ...
0
votes
1answer
14 views

How to maintain follow list like in Instagram?

I am trying to make a network similar to Instagram / Facebook principle; i.e. there will be many users and they might be connected to one another in uni-directional way. Something like a graph. A ...
1
vote
2answers
47 views

What is the rationale behind the (probably undocumented) cases of .NET suppressing exceptions?

I am trying to grasp the the .NET criterion where, when .NET exceptions are suppressed, swallowed or passed unnoticed in order to detect/suspect/prevent/be on alert about such incidents. The MSDN ...
0
votes
1answer
23 views

design approach for ERP database [closed]

i must re-build an ERP app that did about 7 years ago. the old database design was: 1 document -> 1 table. as an example: invoices have there table. i search other's database design, such as ...
0
votes
3answers
64 views

Android: What's the best hierarchy for this app?

I have an ImageButton and I want its image to change every time that onResume() or onCreate() is called. I have a method which changes the image, called mUpdateBackground, but I'm having trouble ...
0
votes
0answers
27 views

Expression evaluation and optimization

I was given the following function h = A.B' + C + B.C'.D + B.E + B'.C.D'.F and was told to construct it in the most optimal way using only any size NOR gate and also by applying distributive law. ...
-1
votes
2answers
27 views

Building a design for an android app [closed]

im working on a design for an android app right now can someone please give me the exact designs for PSDs i have to make? I Understood that there are 3-4 different sizes and DP i have to work with - ...
0
votes
3answers
45 views

Is it generally considered a bad practice to alter the object's state via its getter method?

I've been thinking about this for a while during my past development. I am kind of against doing such things, I've normally declared a separate method that explicitly handle the logic. E.g. If a ...
0
votes
1answer
26 views

difficulty applying a tumblr CSS

I'm trying to block all posts from my home page and I have the code to do it but I don't know how to make it work. Any help would be great! {block:IndexPage} <p> This will be printed on the ...
0
votes
0answers
7 views

Extract and replace encrypted images from LWP APK

I did extract the APK and replaced the images using 'Easy APK disassembler', but i got the images as corrupt, and when i replaced the image with one of mine (It was a LWP) the app crashed.
0
votes
1answer
40 views

How to correctly plan a Windows Phone app

I'm trying to make my first WP app and I'm running into some design problems as I'm coming from Java and I'm not used to XAML and stuff like that. Let's say that I have a structure like this: ...
2
votes
2answers
43 views

Correcting implementation of a Factory Method with parameters

I'm making a solution for a program that builds robots with different types of parts(C#). In this case I have two types that share some attributes and both types of part inherit from an abstract ...

1 2 3 4 5 243