The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
0answers
67 views

Is it a best practice to separate logic from presentation more? [duplicate]

This should be a fairly simple question, but I can't seem to find a good answer on the internet. I've been looking into Java FX and i find it interesting, although I'm having troubles being content ...
10
votes
8answers
442 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 ...
2
votes
1answer
43 views

Separation of concerns - how to achieve with this code

I have the following scenario (this fits into a larger mvc framework) There is a large xml config which defines model types that are available to a specific feature of the system: ...
1
vote
0answers
48 views

PHP Pattern to Decouple UI Markup from Static Content

I deal with a website that is composed of a lot of static content. One of the things that bothers me about the site is the amount of duplicate/one-off markup and that every time I have to change or ...
2
votes
2answers
127 views

Decoupled architecture

I'm working on a system where I'd like to have my layers decoupled as much as possible, you know, some kind of modular application to be able to switch databases and stuff without a serious ...
1
vote
1answer
33 views

How to keep different views decoupled with MVVM

My application is designed to load up an XML file and display an error(s) (if any). The problem I have is how to display both (the XML and Errors) on screen without coupling (my application does ...
0
votes
2answers
100 views

C++: How to get decoupled polymorphic behavior

In a Qt project in C++, I am writing an interface for dynamically loaded plugins using QtPlugin. This interface should allow plugins to register their different parameters, and while a plugin is ...
0
votes
1answer
40 views

Refactoring and dependencies issue

I've got a number of SMS providers, each in a separate directory in the file system. The main class inside each provider directory extends abstract class ProviderAbstract.php which is located ...
3
votes
2answers
152 views

Decoupling Entity Framework in MVC3 Application

I have a few questions regarding decoupling my domain layer and data layer in an MVC3 web application using entity framework as the data access layer. As it stands right now my controllers are ...
0
votes
1answer
36 views

When two objects are dependent on each other? How to de-couple them?

Bit of a generic question but non the less I am in a situation where I do not know what to do and google has failed me! I am trying to re-write a grid array collision with canvas that I built. Now ...
0
votes
0answers
48 views

automatic split csproj to multiple assemblies

i have a very large csproj written with .net 3.5 which i'd like to automaticaly decompose to multiple assemblies where each assembly will contain the code for a single windows form (instead of doing ...
1
vote
0answers
125 views

Rails apps that decouple ActiveRecord from Business Logic

I recently came across Robert Martin's (Uncle Bob) keynote on how to structure a rails app based on use-cases. I found this very interesting. Here is the link to the keynote: Architecture: the Lost ...
3
votes
1answer
88 views

Should all objects be decoupled [closed]

I have one question that I can't seem to get answered anywhere. It's in regards to decoupling your code with interfaces. The question is - should ALL objects inside other objects (being created and ...
0
votes
2answers
168 views

Decoupling business logic from data source

I have an application that depends on a dll (named datalib) intended to store data in xml format. There is a tight couple between my app and that dll. All over the code my app retrieve data using ...
0
votes
1answer
83 views

How to store data from an XML file in a way to reduce coupling

So in my C# program, I am reading in a series of commands that a user wants this program to perform from a file. I am currently using XML to store this data. I am having a hard time thinking of a ...
0
votes
1answer
160 views

Decoupling service classes from the Rails environment

Lets say I have a service class in my rails app. It doesn't really matter what it does but lets assume that it can be used for pushing notifications to clients. # lib/services/event_pusher.rb class ...
0
votes
3answers
85 views

Avoiding global state without cluttering constructors

I have a project that is in need of refactoring. It is a Java desktop SWT/JFace application with approximately 40 GUI components with major components controlling the lifecycle of minor components. I ...
0
votes
1answer
110 views

Using deferred with jquery ajax calls and async processes along with user confirmation reading in between

Background This is in continuation to my question Correct way to set up a sequence of synchronous/asynchronous functions all of which can stop form submission and further processing? I got the answer ...
0
votes
1answer
69 views

How to properly decouple computation from rendering

I'm working on an astronomy project, making one of those gravity simulator programs. I have a Uni class, which represents a universe filled with celestial bodies (instances of the Body class). This ...
0
votes
3answers
302 views

Proper way to retrive HTML textbox data using JavaScript

Assuming I have a simple HTML page like the following: <html> <head>...</head> <body> <input type="text" id="mytextarea" /> <input type="button" ...
1
vote
1answer
364 views

Backbone, rails, cross-domain and front-end / back-end decoupling?

I need to decouple front-end and back-end. I am using Rails for back-end and Backbone for front-end. After a couple days of trial and error I was able to setup CORS on the server. All thanks to this ...
0
votes
1answer
198 views

Scaling a Rails application on EC2. Is this the right way?

So I have a Rails application. It currently runs separate as front-end and back-end + database. I need to scale it to have several back-end servers. The backend server has Resque background ...
2
votes
1answer
188 views

Spring 3 in maven multi-module configuration, wise or not?

Could you recommend me the way good way how to split web application and API+db stuff into two maven modules (with one parent) ? I am struggling mainly with Spring configuration. <Parent ...
4
votes
1answer
838 views

Combining Node.js with C++

I'm currently making an evolution simulator that runs on the server and displays some data in the browser. For serving files, communication and things like that, I'm using Node.js. But, I'm not sure ...
3
votes
2answers
114 views

jQuery $.when() where one of its parameters comes via an asynchronous “Deferred pipe”

One use of jQuery's Deferred system is with the $.when() function. It takes a variable number of Promise's and will do something when they allresolve(or when the firstreject`s.) So if you wanted to ...
0
votes
5answers
136 views

What are the symptomps of tightly coupled objects? [closed]

When designing an application, when do you know that your objects are tightly coupled? What are the symptomps of tightly coupled objects/codes?
0
votes
1answer
123 views

Splitting a large c++ program into several components

I have a c++ program that consists of many .cpp & .h files. I'd like to introduce some physical decoupling by taking a bunch of .cpp files for a certain feature of the program, and compile that ...
3
votes
2answers
108 views

How to avoid class coupling when the specs insist on it

I have two coupled classes DhcpServer and SessionManager. I got the following requirements in my specs that led to that coupling: DhcpServer must not issue an IP address lease if SessionManager ...
2
votes
2answers
148 views

how to use interface in C#

Using C# .NET 4.0, Visual Studio 2010. Well at the moment I'm looking into de-coupling of Classes and using interfaces. I've implemented a Solution from another post to test if I could get it working ...
1
vote
1answer
186 views

Separating back end and front end servers in Rails application?

I have a Rails application that does a lot of media encoding. I am handling it via background processes, but I see that CPU gets overloaded and the front end loading times are definitely slower than ...
0
votes
1answer
90 views

Google App Engine: Orchestrating Multiple Apps to Deliver a Composite Service

To my knowledge, GAE does not allow you to upload different Java apps (WARs) to different instances and have them all be part of the same "GAE app". However, it would be nice to have a modularized ...
0
votes
1answer
95 views

Do the static property values in Oracle's modified MVC example break the intended decoupling?

I have been following the modified Model View Controller example presented in this article by Oracle. Java SE Application Design with MVC In this example the DefaultController class declares property ...
0
votes
0answers
41 views

Decoupling profile data from a user account

I was watching a documentary showing a hacker accessing the database of a site using some publicly available tools. From what I could see the tables had a phpbb prefix which hinted that some flaw ...
6
votes
4answers
166 views

C# Passing a collection as a collection of interfaces

I have simplified and reproduced my problem in the code below. The error that I am receiving is: Argument 1: cannot convert from 'System.Collections.ObjectModel.Collection' to ...
2
votes
1answer
49 views

Poking around in parent's internal state

tl:dr how does decoupling work? could need some little example I'm reading Programming Ruby - The Pragmatic Programmer's Guide. (http://ruby-doc.org/docs/ProgrammingRuby/html/tut_classes.html) There ...
0
votes
1answer
164 views

How to define the EF connection string only once and re-use it in other projects?

I am building a web application that makes use of Entity Framework. I have moved the Entity Model and generated classes to a separate project, because it will be used by more than one consumer. But ...
3
votes
5answers
235 views

Is it bad practice to echo javascript with php

I have a php application that makes use of a Listener class, which basically just sets up an ajax request with jquery (example below). But for some reason, echoing the javascript just seems inelegant. ...
0
votes
1answer
329 views

Decoupling Java Application using Queue: is is a best practice?

I have two applications (classic java program and a batch) that have to deal with each other. In order to decouple them as much as possible the communication, i'm thinking about using a queue between ...
0
votes
1answer
90 views

Good ways to decouple GUIs from SOAP/WS-API update/write calls?

Let's assume we have some configuration GUI that in its current form uses direct DB transactions to submit new configurations for more than one configurable component in a consistent manner. Now ...
1
vote
3answers
613 views

Reducing coupling simple example needed for beginner

Just out of college and am coming across some code where I need to reduce coupling. But I don’t understand fully all the concepts and would like a simple example to help me. To get you started I have ...
1
vote
1answer
101 views

Looking for proponents of tightly coupled design versus SOA

This is kind of a weird question which I inflicted on myself. We're having a bit of a debate at work about how to implement what is in effect pretty much a Service-Oriented Architecture (SOA), with ...
2
votes
2answers
110 views

How can I decouple $_POST/$_GET handling code from html forms/urls? (PHP-OOP)

In a class I have a handling method which performs actions based on what post/get variables are available. Here is a simplified example: public function handleAll(array $vars) { if ...
0
votes
1answer
137 views

Decoupling the database CODE for real

Im in a project creating a web application. Writing in php5. As I was creating the user system (login, register new users and stuff) I all of a sudden had database code all over the place. Dont get ...
38
votes
3answers
5k views

When should I use jQuery deferred's “then” method and when should I use the “pipe” method?

jQuery's Deferred has two functions which can be used to implement asynchronous chaining of functions: then() deferred.then( doneCallbacks, failCallbacks ) Returns: Deferred doneCallbacks ...
2
votes
1answer
169 views

Bus and REST services with fast response for decoupling?

Having several backend modules exposing a REST API, one of the module needs to call other modules through their API and have an immediate response. A solution is to directly call the REST API from ...
0
votes
3answers
550 views

register a class in objective c

lets say i have classA which is a class of audio,that sample the audio input many times. each time class A get a new data (can happen many times in second), he needs to inform another class, which is ...
1
vote
0answers
82 views

Decoupling Jquery Mobile on Windows

Has anyone actually managed this? I've seen post after post stating you CAN do it, but am finding it nigh on impossible to find instructions on HOW to do it. All I want from Jquery mobile is the ...
1
vote
2answers
127 views

How should I handle lookups in my ViewModel?

My database table for buildings stores the building type as a code. In a separate lookup table the description for that code is stored. How should I design my ViewModel and where will I need to make ...
1
vote
1answer
50 views

Preventing State-Coupling?

I have the following objects and relationships, Lecture >- Tests Test >- Questions Business rules When the lecture is started, a test can be given If a test is being given, questions can be ...
0
votes
2answers
142 views

How can I decouple this JavaScript code further?

I have a JavaScript object. And you can see the line: window.gv.borderiseTDCell(this); Is tigthly coupled to the window (if gv is not initialised it crashes). However what I really want is to be ...

1 2 3