Tagged Questions
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.
15
votes
4answers
533 views
Can OSGi help reduce complexity?
I saw lots of presentations on OSGi and i think it sounds promising for enforcing better modularization. Apparently "hotdeployment" and "running different versions of x in parallel" are mayor selling ...
15
votes
8answers
4k views
Modular web apps
I've been looking into OSGi recently and think it looks like a really good idea for modular Java apps.
However, I was wondering how OSGi would work in a web application, where you don't just have ...
13
votes
9answers
1k views
Some solid OOP criticism?
I want to ask you to provide me with some articles (maybe books), which you possibly have found very convincing criticising the OOP methodology.
I have read some in the WWW on this topic and I didn't ...
12
votes
4answers
392 views
Approach to handle javascript on bigger projects?
After discovering jQuery a few years ago, I realized how easy it was to really make interactive and user friendly websites without writing books of code. As the projects increased in size, so did also ...
12
votes
7answers
1k views
How to modularize a (large) Java App?
I have a rather large (several MLOC) application at hand that I'd like to split up into more maintainable separate parts. Currently the product is comprised of about 40 Eclipse projects, many of them ...
10
votes
6answers
2k views
How to design an application in a modular way?
I am looking for pointers, suggestions, links, warnings, ideas and even anecdotical accounts about "how to design an application in a modular way". I am going to use python for this project, but ...
9
votes
3answers
2k views
Lua and C++: separation of duties
Please help to classify ways of organizing C++/Lua game code and to separate their duties. What are the most convenient ways, which one do you use?
For example, Lua can be used for initializing C++ ...
8
votes
2answers
289 views
Why using functions defined in the same module faster than the same function defined in another?
Consider this block of code:
isPrime primes' n = foldr (\p r -> p * p > n || (n `rem` p /= 0 && r)) True primes'
primes = 2 : filter (isPrime primes) [3..]
main = putStrLn $ show $ ...
8
votes
3answers
178 views
Programming in the large with prolog
I'm trying to keep my Prolog code modular, and I was wondering if anyone had any advice as to how to do this. The way I was doing this with simple consults, but that is getting cumbersome as the ...
8
votes
3answers
176 views
Should I create DLLs for modularity?
I'm working on creating an app that will parse MSDN articles for meta-information such as the article title and other articles that are in the same collection. This app also has a GUI front-end.
I'm ...
8
votes
2answers
200 views
The best way to separate admin functionality from a public site?
I'm working on a site that's grown both in terms of user-base and functionality to the point where it's becoming evident that some of the admin tasks should be separate from the public website. I was ...
8
votes
9answers
333 views
Overcoming bad habit of “fixing it later”
When I start writing code from scratch, I have a bad habit of quickly writing everything in one function, the whole time thinking "I'll make it more modular later". Then when later comes along, I ...
7
votes
3answers
540 views
CMake: how best to build multiple (optional) subprojects?
Imagine an overall project with several components:
basic
io
web
app-a
app-b
app-c
Now, let's say web depends on io which depends on basic, and all those things are in one repo and have a ...
7
votes
3answers
254 views
Refactoring: Making a game engine more modular and how
My game engine consists of a range of loosely coupled modules, which can be loaded and unloaded.
Some examples are: The base module, handling window management and responding to OS events, entity ...
7
votes
5answers
146 views
I'm using SQL UDF's to encapsulate simple reporting/business logic. Should I avoid this?
I'm building up a new database in SQL Server 2008 for some reporting, and there are many common business rules pertaining to this data that go into different types of reports. Currently these rules ...
7
votes
9answers
215 views
How to implement code in a manner that lessens the possibility of complete re-works
I had a piece of work thrown out due to a single minor spec change that turned out not to have been spec'ed correctly. If it had been done right at the start of the project then most of that work ...
7
votes
4answers
1k views
database schema design tools / modular database design
I'm developing applications which can be build partly from modules. For example I would be able to develop some online community which contains the modules 'forum', 'blog', 'gallery', etc.
Currently ...
6
votes
1answer
72 views
Best option for managing module classes
My game base consists of a series of modules, organized as classes, that are created, updated and interact when needed.
A few examples could be: CWindowManager, CGraphicsManager, CPhysicsManager, and ...
6
votes
4answers
536 views
Recommended book for OSGi
Here is how I arrived to this question. I wasn't really looking for OSGi, but I was reseaching for a technology that I can incorporate in my next Java based web developement project, so that I can ...
6
votes
4answers
233 views
Best approaches for designing a well organised ASP.NET application with modularity
I am trying to think about a web application development framework for our product development. I want to build an ASP.NET application which has many sub modules in it. My requirements are like:
...
6
votes
1answer
1k views
OSGI runtime inside traditional J2EE server
I understand it should probably be other way round (OSGI runtime hosting J2EE servers), as it is apparently already possible with glassfish.
However, our clients have extensive experience in ...
6
votes
2answers
570 views
Newman's modularity clustering for graphs
I am interested in running Newman's modularity clustering algorithm on a large graph. If you can point me to a library (or R package, etc) that implements it I would be most grateful.
best
~lara
6
votes
2answers
273 views
Advice for keeping large C++ project modular?
Our team is moving into much larger projects in size, many of which use several open source projects within them.
Any advice or best practices to keep libraries and dependancies relatively modular ...
5
votes
7answers
288 views
Objective-C build system that can do modules
I'm working on a small hobby project of mine where I have a big structure that takes care of all core tasks. This core won't do much by itself, it needs a dozen subsystems that actually do the hard ...
5
votes
3answers
187 views
Modularity in Java: top level vs. nested classes
The Java tutorials that I read, like to use nested classes to demonstrate a concept, a feature or use.
This led me to initially implement a sample project I created just like that: Lots of nested ...
5
votes
1answer
121 views
How Can I Make My Highly Modular Project Easy for End Users to Compile?
I am working on a relatively large set of serial code C-code libraries, which will then be parallelized in CUDA by my collaborators.
For this project my code essentially boils down to
#include ...
5
votes
4answers
207 views
How do you carry out modularized development in c/c++?
I can deal with only the easiest case, when there are only 2 modules A and B
A is dependant on B, so I build B as a library and include B's header file in A, also link to B library when building A.
...
5
votes
3answers
182 views
Book on rendering e-book/document formats
I'm looking for guidelines/best practices for building software architecture of a document rendering software. For example, something on how to create a modular software to be able to parse/render ...
5
votes
4answers
796 views
What is the best way to manage configuration data
hello
i am working on a product suite which has 4 products. Right now, all the configuration data is either in the xml or properties files.This approach is not maintainable as we have to have to ...
5
votes
7answers
2k views
Extending Java Web Applications with plugins
I have this web application that has grown to an unmanageable mess.
I want to split it into a common "framework" part (that still includes web stuff like pages and images) and several modules that ...
4
votes
2answers
117 views
How to use the decoupled symfony components?
Any information on how to use symfony's decoupled components?
I'm rereading the docs but there's nothing on the topic besides a general message of "They are very very decoupled" and 1 tutorial that ...
4
votes
1answer
97 views
Dealing with legacy django project in new localized projects
I am right now in the situation to plan the internationalization of a django project that contains mainly legacy code. The old project itself has different applications which have a strong dependency ...
4
votes
1answer
398 views
Modular applications with Entity Framework Code Only and ASP.NET MVC
By modular applications I mean applications in which base functionality and data model can be extended without modifying core application code.
It's a popular approach with eg. open source CRMs like ...
4
votes
2answers
341 views
Creating a modular and organized javascript heavy website
I'm looking for some general tips on how to keep my Javascript organized and modular.
The latest javascript heavy project i've worked on looks like the following (formatted ...
4
votes
1answer
155 views
Best strategy to modularize android applications
I am building some applications in Android that have some common parts. For that reason I am extracting many common parts into separate classes. The problem I am finding is that I don't know really ...
4
votes
2answers
145 views
Implementing extensible code in C++
I am currently busy with a project where the main focus of the application is to be extensible (allow 3rd party developers to write plugins / their own implementations of interfaces).
Until now, I ...
4
votes
2answers
347 views
Best/standard method for slowing down Silverlight Prism module loading (for testing)
During localhost testing of modular Prism-based Silverlight applications, the XAP modules download too fast to get a feel for the final result. This makes it difficult to see where progress, ...
4
votes
8answers
404 views
Looking for a project idea [closed]
I am a tutor in a software development project that includes of 60 bachelor students, for this project the students have to choose a software project and develop it using C# or Java programming ...
4
votes
6answers
133 views
What is the golden rule for when to split code up into functions?
It's good to split code up into functions and classes for modularity / decoupling, but if you do it too much, you get really fragmented code which is also not good.
What is the golden rule for when ...
4
votes
3answers
706 views
How to find unneccesary dependencies in a maven multi-project?
If you are developing a large evolving multi module maven project it seems inevitable that there are some dependencies given in the poms that are unneccesary, since they are transitively included by ...
4
votes
1answer
540 views
How to achieve modularity structure of app subcomponents on Android?
My Android main application will consist in a main program, with a few pre-installed modules.
Then I want to offer different modules later, best would be as separate files. Modules like: location, ...
4
votes
2answers
1k views
EventAggregator vs CompositeCommand
I worked my way through the Prism guidance and think I got a grasp of most of their communication vehicles.
Commanding is very straightforward, so it is clear that the DelegateCommand will be used ...
4
votes
7answers
1k views
How to make a desktop application modular?
How do you make a Java desktop application modular? How should the modules be classified?
4
votes
5answers
234 views
What are the best resources if you wanted to create an application with modularization?
In my analysis of the newer web platforms/applications, such as Drupal, Wordpress, and Salesforce, many of them create their software based on the concept of modularization: Where developers can ...
3
votes
1answer
42 views
Creating CustomViews as a modular & reusable component which can be used across projects
I'm currently in the process of creating quite a large scale Android application. As part of the application I've created a Custom View (one of many).
The Custom View in question is quite wide ...
3
votes
1answer
57 views
Ruby & Modularization - Are there any clean & easy ways to exclude included||extended modules/mixins from classes?
Stackoverflowers!
I've recently begun dabbling in Ruby, and I have a few questions. First some background: I'm used to C++ and Java inheritance, and have always had a dislike for how inheritance ...
3
votes
4answers
69 views
How to remove repeating code in this method?
private static Game[] getMostPlayedGamesDo(int Fetch, int CategoryID)
{
Game[] r;
using (MainContext db = new MainContext())
{
if (CategoryID == 0)
{
var q = ...
3
votes
1answer
151 views
ANTLR: call a rule from a different grammar
is it possible to invoke a rule from a different grammar?
the purpose is to have two languages in the same file, the second language starting by an (begin ...) where ... is in the second language. ...
3
votes
4answers
200 views
C++ and modularity: Where am I supposed to draw the line?
According to widely spread advice, I should watch out to keep my larger software projects as modular as possible. There are of course various ways to achieve this, but I think that there is no way ...
3
votes
2answers
111 views
Efficiently maintain slightly different (logging/non-logging) functions
I have a number of algorithms for community detection on graphs that I want to now visualise them. This visualisation requires me to 'hijack' these algorithms while they execute and log what they are ...