I am busy with R&D with osgi and its role in the technology stack. I buy into the whole modularity and benefits this gives from a software component standpoint. Now, what I am battling to get my h
I have applications built on Spring 3 + JPA 2 + JSF 2/Vaadin running on servlet container (Tomcat/Jetty).
I make a lot of rails applications, and there seems to be lots of way to make code reusable. Among the things I reuse are the following:
I have an application under development that is following a modular application design.There is a \'core\' vertical stack that provides common, central services such as authentication/authorization, l
Consider this block of code: isPrime primes\' n = foldr (\\p r -> p * p > n || (n `rem` p /= 0 && r)) True primes\'
OK let\'s assume I have an awesome looking rails app with somes Posts, which can be commented and voted on. It\'s online and people love it.
I am asking this for Ruby, but I guess this principle can be applied to every project with multiple files. Say I have a main file e.g. application that requires some other modules model1 and model2. B
My application has a couple of modules which am loading as thus in my application. <local:moduleloader url=\"Module1.swf\" id=\"modulel\" />
I am developing an application using PRISM in C# and WPF. I am new to this and would like to implement the Presenter. Basically, I would like to register a Presenter instead of View in my Module.
My game base consists of a series of modules, organized as classes, that are created, updated and interact when needed.