Top "Decoupling" questions

Decoupling is the reduction of dependencies between computational parts.

Type List vs type ArrayList in Java

(1) List<?> myList = new ArrayList<?>(); (2) ArrayList<?> myList = new ArrayList<?>(); I understand that with (1), …

java list interface decoupling
Best practice for embedding arbitrary JSON in the DOM?

I'm thinking about embedding arbitrary JSON in the DOM like this: <script type="application/json" id="stuff"> { "unicorns": "…

javascript json dom embedding decoupling
Cohesion and Decoupling, what do they represent?

What are Cohesion and Decoupling? I found information about coupling but not about decoupling.

oop decoupling coupling cohesion
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 ) …

jquery asynchronous jquery-deferred decoupling jquery-chaining
Managing resources in a Python project

I have a Python project in which I am using many non-code files. Currently these are all images, but I …

python resources setuptools distutils decoupling
Best practice for Android MVVM startActivity

I am building an Android App using MVVM and DataBinding. And I have a function inside my ViewModel that starts …

android mvvm android-databinding decoupling
Difference between "Inversion of Control", "Dependency inversion" and "Decoupling"

I'm reading theory about dependency inversion and decoupling and I can't see the difference between the two. Dependency inversion talks …

dependency-injection ioc-container decoupling
CBO coupling between object

I don't understand what "CBO-Coupling between object classes" really means. The definition I found is so short that I think …

oop decoupling coupling
Model Using Modules in Rails Application

I have a model that requires loading external data from an auxiliary source. A number of web services exist that …

ruby-on-rails ruby coupling decoupling
What does decoupling two classes at the interface level mean?

Lets say we have class A in package A and class B in package B . If object of class A …

java spring inversion-of-control decoupling