Questions tagged [modular]
347 questions
0
votes
2 answers
codeigniter modules for backend , frontend, members, etc
i'm going to be creating a complex ecommerce application and wanted to know if setting each login panel and area as a module into CI.
for example:
application
modules/
- backend/
-- config
-- controllers
-- models
-- views
- frontend/
-- config
--…

Exploit
- 6,278
- 19
- 70
- 103
0
votes
1 answer
Web Application Architecture Approach CodeIgniter
I've been searching for a good architecture models for some time. I think that in a good application should have controllers and modules which should be repeatable parts on different pages. For example a shopping cart - if you are working on an…

Itay Grudev
- 7,055
- 4
- 54
- 86
0
votes
1 answer
modular with Zend Router doesn't work
I'm new guys on Zend Framework
I have a problem with router and modular on Zend
I have a router.ini to route with friendly URL rewrite:
routers.prod-cat-details.type = Zend_Controller_Router_Route_Regex
routers.prod-cat-details.route …

Nguyen Le Thinh
- 11
- 2
-1
votes
1 answer
Modular program in C does not seems to work
I am trying to make a program import a function to another however after following the steps I saw in a tutorial I can't make it work
here's the main program:
#include
#include
#include
#include
#include…

furie_noire
- 9
- 3
-1
votes
3 answers
How to overlay a popup on top of MaterialApp navigator in a flutter App?
In case of internet connectivity loss I want to show a widget which informs the user on connectivity issues. I want this widget to show when connectivity status changes, no matter which route is present right now.
The issue is that I can't find a…

Rahul Kavati
- 3,800
- 3
- 7
- 15
-1
votes
2 answers
I want to add multi-language support for my modularly implemented project
I want to add multi-language support for my modularly implemented project. What is the best way or method you suggest to do this? General in one module)
Please help me.

Asghar Hosseini
- 239
- 1
- 5
- 14
-1
votes
1 answer
How do I subtract 11 from a list and mod 121 the same list all at once?
This is for prime number theory. This theory which actually shows up as an axiom factors numbers like 2^n-1 where n=11 or n=23 or n=29. Of course it would not factor n=7 or n=31 when those are Mersenne prime numbers.
Hopefully I can get help here…

Tom E. O'Neil
- 527
- 4
- 10
-1
votes
2 answers
How do I use modular arithmetic on a list, I wish to mod 121 after each enumerated number?
I have a list that's is enumerated and I wish to use modular arithmetic on each number, but not the enumerated numbers. How do I do this?
This question regards only list modular arithmetic not a simple operation.
How do I mod 121 each of these…

Tom E. O'Neil
- 527
- 4
- 10
-1
votes
1 answer
Split C# application into module parts
I have a completly working application which have a main application and seperate modules/program functions stored in dll files. Forms stored in dll files are loaded into FlowLayoutPanel dinamicaly. I would be interested that, are there any downside…

David Cery
- 123
- 1
- 9
-1
votes
1 answer
Phone Number Formatting Python
Whenever i run my program is print the number 10 randomly and i don't know where its coming from. Anyone help me out?
def main():
phoneNumber=int(input("Enter a 10 digit unformatted telephone number in the format ##########: "))
…

polskiebmw
- 1
- 4
-1
votes
1 answer
Making so that my get python-requests are faster
I have a python-script with a lot of exceptions. I'm trying to make around 50,000 requests. And it is very slow as of now also I'd like for my script to be running therefore I added almost all the exceptions request has which has mostly to do with…

Biplov Dahal
- 47
- 7
-1
votes
1 answer
Python code output isn't displaying properly
My code seems fine but when i run it and input the sales it wont show the commission.
this is python btw.
keep_going = "y"
while keep_going == "y":
sales = float(input("Enter the amount of sales: "))
comm_rate = 10
commission…

polskiebmw
- 1
- 4
-1
votes
1 answer
Modular Python output problems
So i had to convert my pseudocode to python but my output isnt coming out the way it should be.
i enter the 40 hours work and 20 pay rate but the gross pay isnt coming out (gross pay should be 800). can anyone tell me whats wrong?
BASE_HOURS =…

polskiebmw
- 1
- 4
-1
votes
1 answer
Approach and recommendations to implement a modular web application in php
I'm looking at implementing a hospital application in php with a couple of sub applications within it as modules. The application will have modules like pharmacy for handling issues of stocking, dispensing and sale of drugs; laboratory for handling…

Ambrose Chieke
- 11
- 5
-1
votes
1 answer
Modular iOS app
I'm considering a way to make an easy extensible iOS app. Let me explain, a client want's an app which is easy extensible with modules, so we can make separate modules and add them as wished to a base app. It have to be a possibility to make de…

KNV
- 631
- 4
- 19