Modularity describes the degree to which a system’s components may be separated and recombined. It refers to both the tightness of coupling between components, and the degree to which the “rules” of the system architecture enable (or prohibit) the mixing and matching of components.
0
votes
1answer
31 views
How to separate out the context-free part of a language from the context-sensitive part?
I read this fantastic post on the comp.theory list:
http://coding.derkeiler.com/Archive/General/comp.theory/2004-03/0189.html
The poster makes the point that most programming languages define a ...
1
vote
3answers
25 views
Any book to teach how to build websites? [closed]
I am a MS Computer Science student. I know programming techniques (PHP, Java), databases, & algorithms and the list goes on.
But I want to start learning how to build from scratch a website that ...
0
votes
0answers
13 views
looking to create pluggable Java Server Faces web application similar to Rails Plugins
I am planning to create an product in that basic functionalities should be an open source version and certain module should be closed source. If product emerges with success then I will create an ...
-3
votes
1answer
31 views
what's “long thin community”? [closed]
My work title is "Community structure with long thin communities", but i don't what is it?
Abstract:
There has been considerable recent interest in community structure in networks, this is the idea ...
1
vote
1answer
74 views
Using modularization in Android
The objective is to be able to develop modules / plugins (apks) to a main application.
I've googled and found that there is the use of intents through broadcast receivers ...
0
votes
0answers
20 views
Split composer package locations?
We are wanting to create a composer installer for packages for our custom cms.
For this we are wanting to have two types of packages.
our-cms-package
These are generic packages developed by anyone ...
2
votes
1answer
42 views
component builder with PHP or Nodejs
How does jquery.ui or modernizr generate code on the fly after you select which modules you need to include?
Is it grunt with plugins like this https://npmjs.org/package/assemble or nodejs or PHP ?
...
1
vote
2answers
60 views
How to correctly modularize a node.js project?
I'm creating a node.js project following the class constructor pattern:
function my_class(x,y){
this.x = x;
this.y = y;
}
The starting point of the project is the main.js file. Any class of ...
0
votes
1answer
24 views
Structuring a JavaScript app using a modular approach
I am trying to write a javaScript application that is of sufficient size that modularity is probably a good idea. I am using the famous inherit function to enable objects to inherit from constructors ...
2
votes
2answers
123 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 ...
0
votes
2answers
43 views
OSGi package export behavior of the bundles with same symbolic name
Consider I have two OSGi bundles with the same symbolic name but a different version. Both bundles export the same unversioned package (e.g., my.package). Makes OSGi any guarantees which bundle will ...
0
votes
1answer
20 views
How to write in a membership vector to use in modularity() function with R
I have a membership vector created with another software and I am stuck to write it into R so that I can use iGraph' modularity function to calculate modularity of this community division.
Can ...
4
votes
3answers
174 views
Efficiency passing variables to modules in a embedded c programming background
I am programming C in an embedded target. Due to the increasing complexity and testability issues, modularity is a must.
At a glance, the program is a control loop. Read physical inputs using ...
3
votes
1answer
59 views
Clojure module dependencies
I'm trying to create a modular application in clojure.
Lets suppose that we have a blog engine, which consists of two modules, for example - database module, and article module (something that stores ...
1
vote
1answer
56 views
Sharing MEF Parts/Exports for Reusability Between Modules
I am writing a WPF MEF application. In the past I have written WPF IoC based applications and structures modules of code using PRISM like so:
Shell - Main executable
BusinessArea.Module.Interface - ...
3
votes
1answer
171 views
How to write modular network code? [closed]
I have an assignment in which I have to implement a few network protocols. The assignment includes communication over ideal connections (that do not lose or corrupt data) and connections that do ...
-1
votes
2answers
72 views
Why write modular javascript? [closed]
The benefits of well-factored and modular code, in my understanding are re-usability and organization. Code written in a big chunk all in one file is difficult to read, and re-using small portions of ...
0
votes
1answer
47 views
module dependencies in prism wpf
i am trying to code something similar to the project 'Modularity with unity'.
i built 2 modules: Module A (loaded via code) and Module D (loaded from directory).
both are loaded successfully.
but ...
2
votes
1answer
109 views
Modularity in Android application [closed]
I'm developing Android application in which complexity and features are incrising. Since my I'm new I android develop (object programming in general) I need some methods for building modular android ...
0
votes
2answers
34 views
How to create a list of actions which corresponds to commands in Java
I want to control my server by typing commands in the console, but since it is not modular to write something like
switch(command)
{
case 'command1':
command1();
break;
/* And so on */
}
...
0
votes
0answers
13 views
Global Lets in Schematron
Is there a way a defining a global let in Schematron?
The reason why I'm asking this is because in every rule I specify, I keep repeating some code and it would be nice to have that code just in one ...
0
votes
1answer
132 views
Ideas for setting out an MVC 4 template for future projects with shared views and code
I'm trying to setup a mvc template/framework for future development work. What I want to do is have a way of using shared resources such as the layout and common nuget packages so that starting new ...
0
votes
0answers
48 views
Code reusability in frontend project [closed]
Are there any client frameworks that deal with code reusability in a modular way, structuring the codebase by components instead of the classic folder structure where all the controllers, models, ...
3
votes
1answer
27 views
Error when apply 'apply' function to 'modularity' function
Today I fail to apply apply function to modularity function, where the latter function is in the 'igraph' package. Followings are the codes and results"
> library(igraph)
> g = graph.full(2)
...
1
vote
1answer
155 views
One script tag per AngularJS Controller?
Just started with angularjs. It's really great.
I would like to have my app to be as modular as possible.
My question: Should I have one script tag per angularjs controller (service etc)?
Is there a ...
-5
votes
2answers
88 views
Code usability in c++ [closed]
Is it possible to write a function in a file and then use it inside code that is contained in another file ? I am using c++ . If it is,can anyone give an example ? Thanks !
0
votes
0answers
153 views
MutiTenancy and modularity in mvc4 with ninject
I have a multi tenant application mvc4 with modules. What I want to do is to hide complexity from modules. I want to not having some references like ninject in modules and manage dependency injection ...
1
vote
1answer
29 views
Nested trunks in svn for modules?
Lets say I'm developing a product A which is modular so I have modules B1, B2, B3 which all can build on their own.
I have this SVN structure
svn
|-----branches
|-----tags
...
3
votes
4answers
116 views
PHP: Can I store a logical comparison in a string?
I am trying to modularise a lengthy if..else function.
$condition = "$a < $b";
if($condition)
{
$c++;
}
Is there any way of translating the literal string into a logical expression?
Thanks ...
0
votes
0answers
43 views
Is multiple source-file programming outdated? [closed]
Our lecturer (I will not disclose his name because of safety reasons) told us:
I think all projects should consist of a single source file.
Now stop, calm down, take a deep breath, arrange all ...
3
votes
3answers
170 views
Object oriented design in Node.js
I'm struggling with the async flow of Node.js. Assume you have class below:
function myClass() {
var property = 'something';
var hasConnected = false;
this.connect = function(params) {
...
4
votes
2answers
338 views
Javascript requirejs in development but compiled in production
I'm beginning to evaluate javascript module tools like RequireJS for javascript modularization. This seems useful, especially during development, so I don't need to recompile all of the js files into ...
0
votes
0answers
136 views
Explanation needed of Prism MefBootstrapper ModuleCatalog and AggregateCatalog
I am using Silverlight, Prism and MEF (with prism extensions). I have an XAP MyApp with the App.xaml/.cs, Bootstrapper.cs, and MainPage.xaml/.cs. The Bootstrapper derives from MefBootstrapper in ...
2
votes
3answers
532 views
Laravel modular structure
I am developing an application using Laravel. However I have question about the modular structure of the application.
Here's an example.
Suppose I need a module called "featured items";
This is a ...
0
votes
1answer
34 views
In Prism, how can I allow modules to fill a control?
I know I have to build a region adapter, but I don't have the slightest idea where to start. What I want is the ability to have modules populate a grid dynamically.
For example, think of it as little ...
1
vote
1answer
37 views
Creating Sinatra Extension That Depends On Another Sinatra Extension
I'm extracting functionality from a sinatra application into an extension. My extension module (ExtensionBar) depends on the existence of class-level dsl extensions created by another extension module ...
1
vote
1answer
68 views
Modular android application - hide sub-APKs in Google Play
My idea is to have one core application with a list of modules. Modules will be sub-APKs, downloaded from Google Play. User selects a module and proper application will be run (using intent) or ...
0
votes
2answers
32 views
ASP.NET MVC control similar to forms
first let me say, I have started my first ASP.NET MVC (4) application. Before that, I was a forms developer. I love the MVC concept, even though I have not yet fully understood.
In ASP forms times, ...
0
votes
1answer
36 views
Newman Modularity
I have computed a Newman modularity for a graph which is Q = 0.67 but I do not know what this value states? Can anyone explain the range of of Q that is from [0;1]? In other words: what does Q = 0.67 ...
3
votes
2answers
255 views
How do I deal with Lua libraries that don't coroutine.yield()?
I want to download a large file and concurrently handle other things.
However, luasocket.http never calls coroutine.yield(). Everything else freezes while the file downloads.
Here's an illustrative ...
0
votes
2answers
66 views
Modular approach to client-side applications
This is a follow-up to my previous question.
Suppose there is a single web page with a login form and sign-up link. When a user clicks on the link a new sign-up form is displayed. Suppose also I ...
1
vote
1answer
130 views
Prevent method execution and property and variable access/modification
I am unexperienced with Aspect-Oriented Programming. However, I've read a fair amount of PDFs and documentation available from PostSharp, and I think that I understand the gist of the paradigm. I ...
0
votes
2answers
95 views
Customizable modular GUI developed in Java [closed]
For my final project in a bachelor's degree I want to develop an instant messenger with a fully customisable GUI. I hope to have an application with modular components that can be added and removed at ...
0
votes
0answers
44 views
Does using a library like Backbone.js hurt module portability?
I am working to become a better front end developer and increase my skill set in various aspects of this particular area. As I code more I am learning different design patterns and how to apply them ...
0
votes
0answers
134 views
Module Dependency for Directory Catalog - Microsoft PRISM
I am using DirectoryModuleCalatog to load the modules.
What I am trying to implement is all the modules needs to be dependent on some specific module. For example, I have one MainModule and several ...
-1
votes
2answers
192 views
MFC Best practice and modularity
In MFC, certain mechanisms provided allow the programmer to bypass modularity and encapsulation and information hiding, arguable the most desirable features of an Object Oriented framework.
One (of ...
1
vote
1answer
190 views
Java web application modularize with spring
I'm trying to build a project structure like this:
Project
|--Web_module.war
|--Data_module.jar(Spring)
|--Util_module.jar
|--other public api...
which means, different modules should ...
1
vote
0answers
84 views
JavaScript Modular Function help for an onclick event
How do I create the function that I need to do the example outlined below?
This needs to be done using pure javascript. The HTML and CSS cannot be edited at all and jQuery or innerHTML or ...
0
votes
1answer
93 views
javascript removeChild then replace this with new text using insertBefore
I want to create a function in an external javascript file that I can reuse later (i.e. a modular function that is general enough to be used in whatever javascript it is needed in). I want to do this ...
0
votes
0answers
252 views
JavaScript Call Function that makes onclick return false and adds new paragraph
I have a HTML file that has a link. Using only javascript inside an external file, how do I call a new function that when the link is clicked the function is called and does the following:
Cancels ...


