modular

Modular arithmetic

I'm new to cryptography and modular arithmetic. So, I'm sure it's a silly question, but I can't help it. How do I calculate a from      pow(a,q) = 1 (mod p), where p and q are known? I don't get the "1 (mod p)" part, it equals to 1, doesn't it? If so, than what is "mod p" about? Is this the same as      pow(a,-q) (mod p) = 1? ...

asp.net mvc modular application howto/recommendations

Does anybody have a recommenation for building ASP.Net MVC application in pluggable modular way? I mean some blog-posts/tutorials etc. I just read Hammet's MEF and ASP.NET MVC sample blogpost, but I dont find MEF mature enough to use it in production yet. I wasn't able to google out any other relevant posts on this topic... I know I cou...

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 live. there are three columns where the module can be dropped. (Think iGoogle or Netvibes) What is the best way to store this data, so th...

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, split across 9 rows). The only objectives really are: a) avoid embedding tables (for various reasons) b) keep the sections modular. c) allow ...

In search of Module Web Design architecture

Hi All, 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 that I can combine to create a page(e.g. Contact box, Search Box, Latest blog comments...), sort of how Drupal would do it. These ...

Modular Extension

I came accross the term Modular Extension as a requirement of an application of I am developing. Any body know what a Modular Extension is all about? ...

Zend_ACL with modular structure?

Hello, 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 does not have a method to add modules. It only allows me to add controller and action. How do I use Zend_Acl with modular structru...

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 grateful if somebody could point me in the direction of any resources where this approach is discussed programatically and practically (i.e. App...

What is the definition of modular scripting in the FileMaker world?

How do you define modular scripting in the FileMaker context? I am not providing my definition yet on purpose. I want to know what you think. Thanks! ...

Simple modular guide in C/++?

I think modular is the correct term; to give a basic example if I was to create an encryption application which you could type in like notepad, and then save encrypted, however under the save menu there are options to save for the encryption methods that you have plugins for like AES, Blowfish etc, and also allow new methods to be coded ...

Modular data structure in C with dynamic data type

Hi, 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 tree, hash table, whatever... Using a linked list as an example, I have this: typedef struct sLinkedList { int value; struct s...

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 compile multiple files in a single makefile. For example, what would be the makefile to compile these files: main.c, dbAdapter.c, dbAdapte...

How to design app to be modular / support plugins

I'm currently in the process of refactoring my webplayer so that we'll be more easily able to run it on our other internet radio stations. Much of the setup between these players will be very similar, however, some will need to have different UI plugins / other plugins. Currently in the webplayer I do something like this in it's init():...

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 slow when i am editing this file. Is there any way to overcome this? ...

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. ...

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 and then re-load it into the program without halting execution. can this be done? i have tried running import a second time on an updated module.py, but the changes are not picked up ...

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 processes files. The processing is nontrivial, so the best way is to split different phases into standalone modules which then would be used ...

C++ program design

How to effectively design a C++ modular program? How to learn? ...

Modular programming in C++

Possible Duplicate: C++ program design I want to know how modular programs are written in C++ i.e. how they are analysed, designed etc. Also names of reference books will be helpful. ...

Problem with url rewriting within a zend modular cms

Hi guys, In the process of building a modular cms I have come to a point where I am standardising certain parts of the system into the "core" and leaving all extras as modules. I never had any issues when I was accessing content pages via example.com/content/about-us however it looks a little messy to have the content at a url removed ...