modularization

How important is modularization of software projects

Modularization is obviously important in software projects, but I want to know people's opinions on how important and for what reasons it is important. I've obviously got my own ideas since I'm asking this, but think of it like a "common brainstorm" of the reasons one should modularize one's software projects... ...

ASP.net MVC views in class library

I'm developing a framework application, and I want individual implementations to have the possibility to add new functionality simply. For controllers this is easy, just compile it and drop it in the bin directory, but what about views? Is it possible to embed a view as a resource in a class library or something? How? ...

how does information hiding helps in modularization?

How does information hiding decouples the modules that compromise a system? ...

Validating XHTML elements with XML children

G'day guys, I've tried reading the XML Modularization recommendation which promises to allow custom XHTML extensions but can't make heads nor tails from it. I need an XML document containing a mix of XHTML and user-defined XML elements to validate and having trouble doing so. Unfortunately I'm using an XSD and not a DTD, a la XSL which v...

When is abstraction and modularization a bad practice in programming?

just saw this comment in a "what JS lib do you use" poll "@Xanti - yes, yes, modularization and abstraction in programming is a terrible practice. Functions that call other functions? Wasteful." And that left me curious because I am using Kohana framework for PHP and Jquery library for javascript. Why do some people consider abstract...

How to modularize a JSF/Facelets/Spring application with OSGi?

I'm working with very large JSF/Facelets applications which use Spring for DI/bean management. My applications have modular structure and I'm currently looking for approaches to standardize the modularization. My goal is to compose a web application from a number of modules (possibly depending on each other). Each module may contain the...

C++ modularization framework (like OSGI) ?

I found one SOF http://www.codeproject.com/KB/library/SOF_.aspx , Are there anyother stable frameworks for modularization in C++ ? ...

Learning to write organized and modular programs

I'm a computer science student, and I'm just starting to write relatively larger programs for my coursework (between 750 - 1500 lines). Up until now, it's been possible to get by with any reasonable level of modularization and object oriented design. However, now that I'm writing more complex code for my assignments I'd like to learn to...