Top "Modular" questions

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 …

c function header-files modular
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 …

c makefile compilation modular
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 …

python math modular
Fast n choose k mod p for large n?

What I mean by "large n" is something in the millions. p is prime. I've tried http://apps.topcoder.com/…

c++ algorithm modular binomial-coefficients
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.…

functional-programming modular
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 …

java jsf-2 cdi jboss-weld modular
modular multiplication of large numbers in c++

I have three integers A, B (less than 10^12) and C (less than 10^15). I want to calculate (A * B) % C. I …

c++ algorithm multiplication modular
How do I access module variables using requireJS?

I have been using Javascript for a while and I have just tried using modules and requireJS for the first …

javascript design-patterns requirejs amd modular
undefined method `run' for main:Object (NoMethodError) Sinatra

require 'sinatra/base' class Foo < Sinatra::Base get('/foo') { 'foo' } end class Bar < Sinatra::Base get('/…

sinatra modular
Sinatra doesn't know this ditty even when default route is implemented with modular style

I'm running MacOS mavericks whith jruby and am trying to write a basic modular sinatra app. Here's what my config.…

ruby sinatra jruby modular