Tagged Questions
The modular tag has no wiki summary.
16
votes
5answers
778 views
Why is −1 > sizeof(int)?
Consider the following code:
template<bool> class StaticAssert;
template<> class StaticAssert<true> {};
StaticAssert< (-1 < sizeof(int)) > xyz1; // Compile error
...
11
votes
3answers
222 views
“Modular” Scala guidelines
Recently I've become confused how to organize my Scala code, because there are a lot of options.
Are there any guidelines for Scala how/when to use packages, objects, package objects for organizing ...
10
votes
1answer
660 views
How to create a modular JSF 2.0 application?
I have an application with a well defined interface. It uses CDI for resolution of the modules, (Specifically it uses Instance<> injection points on API interfaces to resolve modules) and passes ...
10
votes
6answers
289 views
Is it possible to get the original value of a number, after several multiplications **with overflow**?
Summary: Is there a way to do that? Here's what I mean: suppose I have an unsigned int number. Then I multiply it several times(and there's overflow, which is expected). Then is it possible to ...
7
votes
2answers
7k views
How can I create C header files
I want to be able to create a collection of functions in a header file that I could #include in one of my C Programs.
5
votes
5answers
3k views
Compile multiple C files with make
(I am running Linux Ubuntu 9.10, so the extension for an executable is executablefile.out) I am just getting into modular programming (programming with multiple files) in C and I want to know how to ...
4
votes
3answers
143 views
How to manage dummy data for unit tests in a modular application stack
How do you manage dummy data used for tests? Keep them with their respective entities? In a separate test project? Load them with a Serializer from external resources? Or just recreate them wherever ...
4
votes
3answers
232 views
How do you build an application in c++ modularly
This is a question more about how to build a c++ application than it is about c++, per se
I'm building an application that was envisioned as a Graphical application, but the specifics of the ...
4
votes
8answers
605 views
Modular data structure in C with dynamic data type
For my upcoming university C project, I'm requested to have modular code as C allows it. Basically, I'll have .c file and a corresponding .h file for some data structure, like a linked list, binary ...
3
votes
2answers
248 views
What is the diffrence between a function and a module?
I am very new to c++ and confused between what is the difference between modular programming and function oriented programming.I have never done modular programming so I just know modules by ...
3
votes
3answers
162 views
Techniques for Modular CSS
I want to start using modular CSS, but I'm having trouble figuring out the best way to implement it. I was thinking I could just use a bridging technique, where I have one in my HTML and then @import ...
3
votes
3answers
545 views
How to write a flexible modular program with good interaction possibilities between modules?
I went through answers on similar topics here on SO but could't find a satisfying answer. Since i know this is a rather large topic, i will try to be more specific.
I want to write a program which ...
2
votes
1answer
310 views
Working with multilanguage routers in Zend
I'm developing a multilanguage Zend application with two modules (admin and public), I wanna pass the language code in the url so, in my bootstrap I have:
protected function _initAutoload() {
...
2
votes
1answer
210 views
Modular Extensions CI anchors to assets
So, I'm making a CMS at the mo, and using the modular extensions HMVC CI 2.0. It's lovely. I'm wondering the correct method for keeping my assets (js, css, img) related to a module within the module ...
2
votes
2answers
320 views
Numpy Modular arithmetic
How can I define in numpy a matrix that uses operations modulo 2?
For example:
0 0 1 0 1 0
1 1 + 0 1 = 1 0
Thanks!
2
votes
4answers
466 views
2
votes
5answers
224 views
how do i edit a running python program?
scenario: a modular app that loads .py modules on the fly as it works. programmer (me) wishes to edit the code of a module and then re-load it into the program without halting execution.
can this be ...
2
votes
3answers
880 views
Zend_ACL with modular structure?
I created a MVC with Zend by reading http://framework.zend.com/manual/en/zend.controller.modular.html.
The problem is that I can't find a way to use Zend_ACL with modular structure. Zend_Acl simply ...
1
vote
2answers
63 views
Modular design patterns for non-object oriented code?
I am looking for an article or other articles about a form of modular design. Unfortunately I didn't fully read the article before I lost it so this might be kind of vague but I will try to be as ...
1
vote
2answers
127 views
Java modular division
Once again I find myself stuck with Java and modular division.
To cut a long story short, I'm doing some error correcting, and I need to divide two digits under mod 11.
Now this I know: (from using ...
1
vote
2answers
132 views
2^n mod (m) algorithm
In class, we were presented with an algorithm for 2^n mod(m).
to find 2^n mod(m){
if n=0 {return 1;}
r=2^(n-1)mod(m);
if 2r < m {return 2r;}
if 2r > =m ...
1
vote
1answer
165 views
Unique instances of Javascript self-executing anonymous functions
I have created the PHP side of a modular AJAX/PHP framework and now I am trying to implement the client side.
From my previous experience with modular web applications I know that sometimes multiple ...
1
vote
0answers
110 views
Modular programming to accomodate future changes (software for scraping websites)
I had developed a software in C# using Windows Forms to scrape selected websites for images.
First problem I have is that the websites I monitor constantly change their look and feel, thus making my ...
1
vote
6answers
121 views
Modular addition in python
I want to add a number y to x, but have x wrap around to remain between zero and 48. Note y could be negative but will never have a magnitude greater than 48. Is there a better way of doing this than:
...
1
vote
3answers
191 views
Modular Arithmetic in Haskell
How would I go about making a function so that x has a range of values from x=0 to x=19 and if the x value exceeds 19 or is below zero how can I get it to wrap around
from:
x=20, x=21, x=22 and ...
1
vote
2answers
466 views
Sinatra Modular Application not working
I am new to sinatra, so I just follow the readme file.
When I want to create a modular application like shown here:
http://www.sinatrarb.com/intro#Serving%20a%20Modular%20Application
My application ...
1
vote
2answers
437 views
ASP.NET Completely modular design - how?
Technology: ASP.NET 4.0, C#, forms/mvc
I am a .NET web designer and I wish to create a modular based website for people, similar to what DNN does (but I want to create my own cut down version).
The ...
1
vote
3answers
1k views
Can i have multiple layouts in Zend Framework?
I have a flashy page with image rotators in the front end for the clients.
For back-end I want to have different layout. Can i have multiple layout?
A little hint would be appreciable
1
vote
1answer
202 views
Zend doesn't seem to want to load the form I've created
Hey,
I seem to be climbing a pretty horrible learning curve. It's taking me hours to even get to the point where I can structure/write code. I originally wanted to be able to store a form or a ...
1
vote
1answer
252 views
Modular system architecture
I'm trying to implement modularity in my POS system to allow 3rd parties to do some kind of modules/plugins/add ons. I have started implementing a SPI and an API, my question is: the access to the ...
1
vote
1answer
1k views
codeigniter modular extensions
I'm trying to implement modular extensions into a codeigniter 2 setup but am having a few problems. I followed the installation instructions on the wiki and everything was working fine. Then I started ...
1
vote
1answer
282 views
JSF modular web application
talking about a modular web application like a Content Management System, where you can upload and install separated modules, I would like to know what is the best way to develop separeted modules ...
1
vote
2answers
312 views
Putting UIView with alpha 1 on top of UIView with alpha 0.5
I'm trying to have a modular uiview that will be placed on top of another view. The modular view has an alpha value of 0.5, and appears in the middle of the main view.
Now, I would like for text to ...
1
vote
1answer
318 views
How to write modular code in netbeans java swing apllications?
I am creating my java Swing application in Netbeans. At present there are more than 2000 lines of code. Is it right to have these many number of lines in a single file. Moreover the IDE has become ...
1
vote
2answers
169 views
iPhone application - additional chargeable content
I was considering developing an application which would:
1) form part of a suite of similar applications; and
2) allow the user to download additional chargeable content.
I would be extremely ...
1
vote
1answer
137 views
In search of Module Web Design architecture
I'm designing a large web application and I would like to finally be able to modularize the different elements on the page. I'm using the Zend Framework.
I would like to create independent modules ...
1
vote
5answers
975 views
setting rowspan on colgroup?
Simple (I hope), HTML question.
Let's say I have a column group that spans 3 columns. But it also spans 9 rows. But in actuality, I want there to be 3 levels of columns (so basically, 3 columns, ...
1
vote
2answers
75 views
Reconstruction User based Modular Website
I am developing a website in Ruby on Rails, MySQL, and Javascript.
The website is modular, meaning that a user can customize their homepage and drag and drop one module to another area where it will ...
0
votes
0answers
18 views
How to design a plugin based web-application (CMS)? [closed]
I'm trying to design a plugin-based application (almost CMS), but I'm getting hard times picking up an approach.
My core idea is to build an application, where I'd be able to enable or disable all of ...
0
votes
0answers
52 views
Modular multi-tenant full-ajax web application
I'm planning to develop a modular multi-tenant full-ajax enterprise web application, and I'm evaluating different technologies and languages. The application should be highly modular, and the UI ...
0
votes
1answer
106 views
CodeIgniter 2.0 with Modular Extensions (HMVC) not showing anything in Linux
*edited to be more clearly
I'm deploying CI 2.0.3 with Modular Extensions (HMVC) in two environments, one is Windows -for development- and the other is Linux -for production-. Both environment has ...
0
votes
5answers
71 views
java modular division sanity check
If my modular division is right; 1 / 5 mod 11 = 9. Can someone confirm this?
However, in Java; 1 / 5 % 11 = 0;
I'm not sure what's going on here, is it my syntax, do I need to bracket it in ...
0
votes
1answer
67 views
SVN - How to keep core source code confidential and give freelancers access to modules only
I'm developing a modular propietary PHP application. As a project leader and owner, I want to keep the core engine confidential. The freelancers will work on modules (say 1 freelancer for 1 module ...
0
votes
1answer
127 views
Code Igniter Modular Extensions Default_controller
I am currently designing an application that needs to be modular - for this i am using the Modular Extensions - HMVC for code igniter.
I am trying to change the default_controller as defined in the ...
0
votes
1answer
91 views
How to write modular Android code
I have 5 activities that each display 10 buttons. The buttons are shown or hidden based on data out of a database. Currently, I have the exact same code in all 5 activities. How do I create a ...
0
votes
3answers
213 views
DefaultController in Yii. Question of naming
I create two modules for Yii framework with gii. Each module creates its own default controller class called "DefaultController".
But I think its wrong, I believe it should be ...
0
votes
1answer
193 views
Modular JSF applications with Jboss
We are trying to build a modular jsf application. The application consists of a war file and several jar files. Each jar file contains .xhtml pages , associated beans and configuration files like ...
0
votes
1answer
265 views
Dojo lightbox problem
I made a custom basic lightbox with Dojo to be used with forms and data. Not really dealing with images or such.
The problem that I seem to be facing is this. When Dojo makes a call via AJAX to ...
0
votes
3answers
56 views
How can a function use variables generated by other (fuctions) as parameters for itself in python?
I'm learning python and I would like to separate the different processes of my code into different functions. To do that I need to give variables of previous function as a parameter to an other ...
0
votes
1answer
169 views
How to combine numerous programs into one code?
I have a program that opens numerous other programs.
How can I combine the code from the other programs into this code so that instead of 10 sets of code i will only have one?
Code for app that I ...