Design principle that comprises the process of separating a computer program into distinct features that overlap in functionality as little as possible.

learn more… | top users | synonyms

1
vote
2answers
97 views

Embedding vs. including Javascript for DOM interaction?

Every beginners guide to Javascript talks about the evils of embedded scripts. And I get it: definitely good advice for novices who have no concept of modular design. But every rule has an ...
-3
votes
2answers
175 views

Replacing hard-coded Textarea with something clearer? Separating Styles and Logic?

CODE-SMELL <textarea rows=3 id="help">ask: bsd: vim: ... </textarea> WANT SIMPLICITY LIKE <textarea src="./Data/help"></textarea> $ cat ./Data/help ask: bsd: vim: How ...
2
votes
1answer
234 views

JPA model validation and transaction handling

I'm currently refactoring an application that already uses JPA but the JPA EnitytManager (and the transactions) are currently scoped to the DAO layer. There is also a repository layer and a service ...
1
vote
1answer
273 views

How to separate CoreData management from the AppDelegate in OSX applications

If you are not interested in my story, jump to the two numbered questions on the bottom now. In this Question, it is discussed whether or not to separate the CoreData handling from the AppDelegate. I ...
1
vote
1answer
45 views

Storing notifications appropriately, based on the corresponding input channel

I have the following problem. In my application, every user could execute actions through a web client, as well as through email. Every action (a method in a controller class) has to implicitly store ...
1
vote
1answer
200 views

How to implement reading default object settings from a database with oop and soc

I have a class which looks like this: public class Location { private int id; private String name = "noname"; ... // other properties public Location(int locationId) { ...
0
votes
1answer
37 views

Add extra margin to the 960.gs framework without breaking it's purpose

I have a design I want to accomplish and found 2 ways to achieve it using the 960gs framework. Although I don't know which one is better and there's not so much information about best practices in CSS ...
0
votes
1answer
137 views

Does Entity Framework DB First (EDMX) prevent proper Separation of Concerns?

I am new to entity framework and MVC, and trying to understand what constitutes a good design approach for a new application. There are several ways of using Entity Framework. However, for my ...
0
votes
1answer
101 views

Proper separation of concerns natively in node.js?

I am a total node.js noobie and trying to figure out the best way to structure my application with proper separation of concerns. I am using mongodb via mongoose and have successfully gotten my ...
0
votes
1answer
128 views

How do I separate my entities from database model?

I need some help to organize my data model well. I am writing an app which will be a simple notebook. I use a three-tier architecture = business-logic, data-logic, database access. I`d like to use ...
1
vote
0answers
61 views

Creating lots of user controls in WPF?

Is it normal in a WPF app to create a lot of user controls in order to separate concerns that would otherwise be crammed in a single window with a huge XAML hierarchy? I'm finding that I keep making ...
1
vote
0answers
61 views

Separating model concerns

Any given model in my application might implement the IHasOpenGraphMetadata, if that's the case, a call to @Html.Partial("_OpenGraphMetadata") in my layout will render the related metadata, by ...
0
votes
0answers
23 views

@Inject in a Java EE application client does not work?

Problem Injecting an enterprise java bean with @EJB in an application client, launched with Java web start and from a GlassFish 3.1.2.2 (build 5) server.. works as long as the requirements are ...
0
votes
0answers
12 views

Separation of concerns within an Application Router?

First of all, let me be clear: I'm not here to reinvent the wheel, nor am I to create yet another MVC framework. Just wanted to learn a bit more about how things work under the hood. Oh, and yeah, my ...
0
votes
0answers
232 views

Row level permissions and Laravel app structuring

I'd like to ask other opinions about code structuring of business logic on Laravel applications, mainly regarding permissions at the row level. For those that don't know it, Laravel is a MVC ...
0
votes
0answers
76 views

Calendar style output?

I'm working on a very basic, primitive 'task log' application in Symfony2. Only two things are required when entering a task, the date/time and the what the task was. I'd like the list to render ...
0
votes
0answers
121 views

Amount of on-page JS, async, linked resources & lazy-loading

Finishing up a redesign of my website and at the end of the page, right before the closing body tag looks like a mess of scripts to me: <script ...
0
votes
0answers
51 views

Ideas to limit Model awareness (MVC)? (Mongoose, but is generic to asynchronous queries)

For example I have a Job and a Worker: When I start a Job I want to make the Worker busy. Just this. Remember, this is asynchronous (Node js). How I might do: The jobs.start service is called, ...
0
votes
0answers
35 views

Where to interpret query string from a RESTful interface in a 3-layer architecture?

I'm doing initial design of a 3-layer system that includes a RESTful service as one interface. Several of the resources will be searchable via query string, about 6-10 parms like this: ...
0
votes
0answers
44 views

SOA Separating business domains (admin vs. public, etc.)

I have an online game. There are 3 areas of concern: Players Inter-server/service communication Development services In a strongly typed language, i don't want players getting the dll that ...
0
votes
0answers
449 views

How to organize business logic (domain model)

Let's say you have good separation of concerns for a given application such that you have all of your business logic in a single project (let's call it MyApp.Core) and that project has no explicit ...
0
votes
0answers
348 views

Learning New Concepts or syntax

I want to learn new concepts in .NET. I have taken my old ecommerce website and reimplemented it using different concepts. Its one "Hello World" Website for each technology. I am hoping to learn ...
0
votes
0answers
139 views

c# - what would be the best way to package/abstract a topology map API with persistance?

Background - I'm looking to create a reusable library that allows one to work with a topology map of data. That is data that consists of nodes and relationships between them. The API's would include ...
0
votes
0answers
50 views

Which validation tags are appropriate for the model?

For proper separation of concerns on a domain/business assembly/layer it seems to me that a good practice would be to go ahead and system.ComponentModel.DataAnnotations mark up my fields in the domain ...