Most voted "project-organization" questions
31 questions
Sort by count of
-
21
votes1
answer1446
viewsOrganizing packages in a java project
When creating a project on Android, the IDE itself suggests that the main package has its own naming type (with.example.namepackaging), and also creates a whole hierarchy of directories already…
-
10
votes3
answers1210
viewsHow to organize a project in Ode
I would like some idea of how I could organize a project in Node.js, currently the files are this way: - router.js - controller L controllerUser.js L controllerAuth.js L ... - service L…
-
9
votes1
answer1543
viewsWhat exactly is "Clean Architecture"? How and where to use?
I have seen several times in replies and in other pages the term Clean Architecture. What exactly is this? How was it created? Where and how should it be used? There are alternatives or…
-
7
votes1
answer1729
viewsWhat are the modules?
Whenever I read about Java 9, I see assertions that the big change in the next version of Java will be native module support through Jigsaw Project. Then comes the criticism of adopting a new…
-
7
votes1
answer514
viewsIs there any project organization standard for C++?
In Java and Actionscript3.0 we use namespaces based by directory path, I see much use of namespace, but are not based on the "location" path of the class in the folder. I searched a lot if there was…
-
6
votes2
answers332
viewsDesigns of a C#Solution
I have a question about projects and solutions in visual studio. Suppose I have a solution that has three projects, being two Winforms projects (exe) and one of class libraries. It is correct that I…
-
5
votes2
answers142
viewsDelete all references that are not in use in Visual Studio?
I wish to exclude all references (I am not talking about using in the class files) that are not being used. For this, of course, I need at least an effective way to find out which references are not…
visual-studio visual-studio-2013 project-organizationasked 7 years, 10 months ago Bruno Heringer 1,338 -
4
votes1
answer907
viewsWhat is the best way to fragment a Django project into apps?
I’m doing a study project to apply what I’ve learned so far with Django. My question is: what is the best way to segment the project in apps? If you want to give an example so that something…
-
4
votes2
answers118
viewsCan I have more than one Views directory in MVC?
I’m transferring my project to MVC, and I was wondering if there could be more than one folder Views in the project, or if you can load a CSS outside the BundleConfig, have a static page that kind…
-
3
votes3
answers553
viewsWhat is the difference between a web service in the same project and a different project in the same project?
Everyone tells me to create a REST and not SOAP. I know I’ll only get it well doing. I picked up an old project at the company where I’m with a web service in the same project. As I’m using MVC, I…
-
3
votes1
answer518
viewsDesign structure
I have a project being developed with VRaptor and I have a question about the structure of project. The project I’m developing will be installed in several clients, each with a different structure.…
-
3
votes1
answer1028
viewsOrganize Javascript files for a project
I am working on a Web System with multiple screens and they have different functions in Javascript and several apply to only one page. How do I organize Javascript files? Best practice? Create a…
-
3
votes0
answers127
viewsHow to structure the development of a program?
I’m about to start on the software I’m going to develop for TCC (C# + Mysql). The problem (for now) is not code, but how I will develop my project in a structured way, and without "curling up" too…
software-project project-management project-organizationasked 9 years, 2 months ago Diego Oliveira 31 -
2
votes3
answers1444
viewsOrganize XML’s layout in the Android project’s Resources(res)
Problem My project is growing and with it, the amount of files in the layout folder, and it is already becoming somewhat difficult to find a specific file, since they are not grouped in any way,…
-
2
votes0
answers134
viewsWhat are the project organization standards?
Large companies use methodologies in the development of projects that result in an organization of software (packages, classes, interfaces). There are various patterns that a programmer can use, but…
-
2
votes1
answer630
viewsAsp.net MVC class structure
Hello, I’ve been studying for a while asp.net mvc, and developing small projects, evolving and gaining knowledge every day more. One question I have, and I didn’t find much subject on the internet,…
-
2
votes1
answer171
viewsHow to organize namespaces?
I heard that namespaces should be organized by layer, in case using some Pattern design which makes it possible, as Projeto.Controller, Projeto.UI, Projeto.Model, however, if we look at the…
-
2
votes2
answers490
viewsOrganization of PHP code
I’m working on a PHP project where several tables relate to several tables, so how should I organize the controllers and Daos, split files by table - employees, sales, customers, ... or group by…
-
1
votes1
answer151
viewsFile lost in Xcode
When I copy a Swift file and paste it from my folder, it does not appear in Xcode.…
-
1
votes0
answers61
viewsWhat is the best way to select and organize R data?
I have a project that consists of performing non-linear regressions to various data sets from different sources. After performing all these operations, I usually save the results in files. txt, so…
-
0
votes1
answer32
viewsRuby - How to hit LOAD_PATH at development time?
First: I’m a newcomer to Ruby. I have a Ruby project that obeys the design pattern of the vast majority of projects. Therefore, the main executable is in bin/. bin/exec lib/ | -- library.rb --…
-
0
votes0
answers148
viewsModularize Winforms
I have the following scenario, 1 System Containing several functionalities, these functionalities, have some that are similar (Changes according to the User Profile). Only I’m having a hard time…
-
0
votes1
answer400
viewsSeveral CRUD in the same PHP project
Hello, I have a question about structuring a project, in case it is in PHP. Let’s say I have 3 CRUD to make, one would be products, the other customer and the last order. In that case, I would have…
php characteristic-language pattern-design crud project-organizationasked 6 years, 7 months ago Luiz Miguel 27 -
0
votes2
answers1982
viewsAccess files outside public_html
It is possible to consistently access files outside the public_html folder on the server to render a View? What I need is to call files js and css and point out the images that are inside the layer…
-
0
votes0
answers151
viewsFriendly Urls and Folder Structure
I am developing a system for ordinary users (these do not need to log) and users with permissions (registered in the database). Let’s assume that the system is for registering phone numbers and that…
-
0
votes2
answers74
viewsHow to edit gigantic codes?
It’s a question I’ve had since I started reading codes. I see some classes with a thousand, two thousand, thousands of lines. How a programmer can edit so much without "getting lost" in the middle…
-
0
votes1
answer96
viewsWhere should I put the model classes (POCO) in a C#Solution?
Currently my Solution is organized more or less like this: View (Windows Forms) DAL (Data access, return business entities) BLL (business rules in general) Model (POCO’s representing any business…
-
-1
votes1
answer34
viewsDoubt about images on Android
images should be in the drawable or mipmap folder in my Android project? I’ve been using the mipmap folder. There is some difference in using these folders in an Android project?
-
-1
votes1
answer267
viewsWhat parts of a project are part of the infrastructure layer?
My goal is to know if the classes related to the topics below fit into this infrastructure category to separate them into layers within a project. Follow the topics: Database Log Dependency…
-
-2
votes1
answer59
viewsIs it correct to use bootstrap when finishing a project?
Hello, so hear many say they use bootstrap in the completion of a project and wrong, I particularly do not like to work with front-end then I try to skip this part seeking some responsive theme…
-
-3
votes5
answers1659
viewsWhat is the best way to pass data between php files
What is the best way to pass data between back-end and front-end, for example, send a form to the back-end, it executes an SQL script and returns an array of data that must be shown, what is the…