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

0
votes
0answers
19 views

how to handle methods of serialized object which are dependent on transient state

I have two closely related issues with serializing objects. This is part of a major refactor where I'm already 'locked in' to some design behaviors. I'm considering taking previously mutable objects ...
0
votes
2answers
21 views

Ways to gracefully have a 2d world interact

Say I have a 2d world full of different moving entities. The world is a simple matrix, and each "tile" can only contain one entity at a time. The world will updated in ticks, where all entities will ...
3
votes
4answers
28 views

image animation jquery on hover

OK, I want that when I hover the <li> elements containing the images, the image grows up (just like in google image thumbnail <div> <ul class="images"> ...
0
votes
0answers
12 views

5grid flush rows

I'm trying to build some nested rows in a 5grid layout and have the whole thing flush (the main row and all the nested rows) so it creates one continuous element (they contain various branding colors ...
4
votes
3answers
43 views

What RESTful HTTP request for executing actions on the server?

I have a RESTFul server API which I've built. Some parts of it is not controlling resources and I'm having trouble mapping the relevant URL + HTTP-method to the actions that are executed on the ...
10
votes
8answers
389 views

Why do we pass objects rather than object members to functions?

I have a method FOO() in class A that takes as its arguments input from data members of class B among other things (let's say they are two floats and one int). The way I understand this, it is ...
0
votes
0answers
5 views

When to Use a Predominantly Polled or Event-Driven Architecture for Embedded Solutions

I've been developing embedded projects for a number of years now and, without an RTOS, I generally design them to use as much event-/interrupt-driven functionality as possible so that I maximise the ...
0
votes
2answers
18 views

Android Layout like Legend and Fieldset

I have a design requirement to show a part as shown in the figure. I have tried the following XML <LinearLayout android:layout_width="match_parent" ...
0
votes
1answer
23 views

Is there a design pattern to manage “cascading choices” easily?

I'm making a GUI for some browser application in HTML and javascript. At the moment, I'm facing the challenge of implementing a page where a three-level deep "cascading choice" needs to be made. I ...
0
votes
1answer
22 views

transition laterally to anchor inside page

I am not an web developer, but normally I can figure out how stuff works on a website. Today I was browsing http://www.massivehealth.com/ and I lost a good couple of minutes to try to understand how ...
1
vote
1answer
9 views

Does viewport filtering affect the file size of the webpage downloaded?

We have been having a discussion about how web page responsiveness is quite effective in eliminating the need to do a mobile version of a website but we are wondering; yes the other elements viewed on ...
-1
votes
3answers
43 views

Creating a full width image

I would just like the edges of my image to stretch the width of the screen. Not looking for it to be a full background. My website is www.jobspark.ca <div class="fullWidthSectionBG"> <div ...
-2
votes
0answers
26 views

Beautiful HTML Templates [closed]

Im seeing lot of websites, especially those where the important thing of the site is an application, so they make realy nice introduction pages. Here are some examples: http://summly.com/index.html ...
1
vote
0answers
20 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
16 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
96 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
32 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
19 views

How to avoid breaking API consumers when underlying protocol changes? [closed]

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
40 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
34 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
80 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
26 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% ...
4
votes
2answers
51 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
19 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 ...
-1
votes
0answers
37 views

TPL creating 30 threads and not executing more than 2 threads [closed]

As part of a project, I had to create a program that would compile a set of c# files from a folder at runtime. I managed to do this by placing the same in a for loop. I tried to parallelize using ...
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
12 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
17 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 ...
-1
votes
0answers
23 views

a web application with a lot of form elements [closed]

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
29 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
71 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
82 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
68 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
30 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
42 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
26 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
59 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 ...

1 2 3 4 5 244