4,823 questions
0
votes
1
answer
37
views
Next/React project structure design
I have a question about Next/React structure for folders and files.
I have mycomponents folder that contain folders for each section in the webpage, for example, inside this folder there is projects ...
0
votes
0
answers
18
views
error: Environment variable not found: DATABASE_URL (EDIT:::: A silly mistake)
So i was initializing the backend for my project using ,
Hono, Prisma , postgres and cloudfare workers as serverless backend.
I am getting this error,
Ps : this is my index ts file
import { Hono } ...
-3
votes
0
answers
23
views
Enviroment setup for Bsc final project [closed]
for studies final project me and my team want to build a ML project using python (streamlit) and PostgreSQL/MongoDB.
I have no clue about how should we setup the enviroment, the purpose is to connect ...
0
votes
0
answers
51
views
How to Add html page dynamically in my Spring Boot project and save them also
I am a Computer Science student working on a project of my WEB Development Course in my university , my project is about the University's Club Management System , my project supervisor has asked me to ...
0
votes
0
answers
11
views
how can i check that the jwt is expired or not on the frontend, how the real world websites check it on frontend
Actually i want my jwt to get expired after a day but the problem is, I can't use the verify function on frontend, so i decided to store another field as expiry_date which will store the current date ...
0
votes
0
answers
33
views
Hiding Subfolders in Qt Creator Project Tree View for CMake Project
Is it possible to make Qt Creator to show only project files without their subfolders in the Projects tree view? I'm curious about CMake projects.
Given the following project structure on a disk:
...
0
votes
1
answer
23
views
Added mp3 files to my Android project raw folder but it broke all my Drawable folder resources
Need help to fix my project.
I added some mp3 files to my raw folder. The folder already holds many .json files.
The mp3 file names were wrongly structured, they had capitals letters. After adding ...
1
vote
0
answers
88
views
How to properly use c++ header files across projects
Say I have two projects, one that is sort of like an 'application engine' and one that is the actual application. The engine takes care of things like window management, and I should be able to switch ...
0
votes
0
answers
18
views
How can I calculate the development time for my GitHub project and estimate time for new tasks?
I'm looking for a way to calculate the total time spent developing my project on GitHub. Additionally, I would like to estimate the time required for future tasks based on my current workflow.
Is ...
1
vote
0
answers
52
views
Prettytable field spacing [closed]
How do I fix a misaligned table in pretty table?
This is what I typed
t.add_column('CHOICE',[1,2,3,4,5,6,7,8,9],'r')
t.add_column('MENU',['View BOD','View Doctors','View Nurses','View Helpers','View ...
2
votes
2
answers
81
views
Bulk Java Project Module Import in Intellij IDEA
I have 71 plain Java projects in a folder. In Eclipse, I can use the 'import existing projects into workspace' feature to load all Java projects into my Eclipse instance at once.
Is there a similar ...
-4
votes
1
answer
40
views
How can i convert python project into exe file with directory [duplicate]
I made python project for my university. It is kinda big, has stockfish in its content
How can i make an exe game?
I tried auto-to-py exe and it didt work (maybe because of this PyTask_chess/PyTask/...
0
votes
2
answers
124
views
Real world project structure with .C and .H
So when we make a C program we just need one .C file right? We can include additional C files and H files to our main .C file but I'm not sure what the difference between them is.
Why would one ...
1
vote
1
answer
128
views
Why am I getting a "duplicate source root" error in IntelliJ when the folder is not marked as a source root?
I'm getting the following error in IntelliJ:
Source root '/path/to/project/src/main/resources' is duplicated in module 'myModule'.
However, when I check the "Project Structure" under the ...
0
votes
1
answer
50
views
How do I best layout a kivy project so it can be built for multiple platforms?
I'm trying to figure out a project layout for a kivy app that will allow it to be built as:
a python module (so it can be distributed via pypi and thus 'pipx install')
an android app
a windows app (...