489 questions
1
vote
2
answers
142
views
Where does the actual source code belong in an Eclipse IDE Gradle project?
I have just picked up Java with Gradle again with the intention to recall my skills with a social-network backend practice project. As I've neither used Gradle nor Eclipse IDE for long, I'm stuck on a ...
Best practices
1
vote
8
replies
205
views
Why shouldn't I `inline` every function in my C++ project to get out of having to bother with cpp files?
Say I'm developing a C++ command line tool of moderate scope. I have a couple dozen classes, and a main() driver function that lets the user do a few things with the tool.
I could have one .hpp and ...
Best practices
1
vote
5
replies
137
views
How should I structure a Django backend with a Vue 3 frontend for a news application?
I’m building a small “newsroom” application where Django handles the backend (API, authentication, admin) and Vue 3 handles the frontend UI. I’m still fairly new to combining Django with a modern ...
0
votes
0
answers
67
views
Module not found Next JS 15
I have created a project in nextjs 15 and using src folder.
Inside src, I have app and components folder and in jsconfig.json I have define
{
"compilerOptions": {
"paths": {
&...
3
votes
2
answers
277
views
Flutter project shows only Android folder in Android Studio; other platform folders like iOS and macOS are missing
In Android Studio, after reopening my Flutter project, only the Android folder is shown, and I can’t see other Flutter directories like lib, ios, macos, or linux. How do I view the full Flutter ...
-1
votes
1
answer
61
views
Jupyter notebook import issues [duplicate]
I have a notebook running in a docker container that has the following abbreviated project structure:
/usr/src/root/
├── folderA/
│ └── __init__.py
│ └── folderB/
│ └── __init__.py
│ └─...
0
votes
2
answers
129
views
flutter import/export
Due to the missing concept of namespaces in dart ¯\(ツ)/¯ one have to fight with imports/exports in flutter. Maybe I was not searching long enough but I didn't find any simple and good explanation on ...
2
votes
1
answer
375
views
R8 keeps preventing build due to `lombok.NonNull` annotation
When I attempt to Generate Signed App Bundle / APK... of my perfectly building and running app, I get the following error:
Missing classes detected while running R8. Please add the missing classes or ...
0
votes
1
answer
75
views
Python Project import structure [closed]
I am currently working on a Python Project in VSCode and after several hours of work I am wondering how I can improve my import structure.
Currently I have the following structure:
\API
---\__init__....
0
votes
0
answers
32
views
Android studio cannot find modules even though the folder is open. what is the problem?
i have no idea why the red highlights are there and i can't run the file either
this is a flutter project. my flutter path is added. flutter doctor has only two issues, chrome executable(i use brave) ...
0
votes
1
answer
69
views
How to organize a Python project when migrating from sql queries to API requests? [closed]
I am working on a project that used to fetch all the required data from an external DB. Soon the DB won't be accesable anymore and is going to be replaced by endpoints.
Assuming that I have a ...
0
votes
1
answer
101
views
Organizing an Azure ML project with multiple step scripts and shared modules
Starting Point
I am setting up a codebase for an Azure ML with Python project. The project has a main.py script that builds the pipeline and triggers its execution on Azure. The pipeline consists of ...
0
votes
2
answers
212
views
Import doesn't work > ModuleNotFoundError: No module named 'qt_py'
When I try to run my pyqt5 application, the compiler throws this Traceback with couple errors:
Traceback (most recent call last):
File "d:\College\stuff\proj\simulation_proj\app.py", line ...
0
votes
0
answers
173
views
Correct Maven project execution plugin configuration when using multimodule application
I have application that has multiple module (about 20 modules). These modules are libraries except 2. One of the module is wrapper that specifies which module to use. There is also module that has ...
2
votes
3
answers
1k
views
Why can't VS Code directly run Python unittest .py's or discover in testing tab
I was having issues with this when learning Python unittest for a larger project, so I reproduced it for a simple boilerplate project. I make a folder structure like this and have the project open in ...