Skip to main content
Filter by
Sorted by
Tagged with
0 votes
1 answer
57 views

I use CDK to generate a CloudFormation stack. When I run cdk synth and cdk deploy, the ECR image and the Task definition don't get updated. In order to force the update, I have to: delete the built ...
Gabriele's user avatar
  • 781
0 votes
0 answers
47 views

Well, I found that flask-restx may no longer be maintained (last commit was 10 months ago as of this post). That's too bad seeing as I spent a decent amount of time learning it and overall thought it ...
AKA_Tom's user avatar
  • 95
0 votes
1 answer
480 views

I'm trying to create a basic FastAPI application. Initially, my project directory looked like this: .venv/ main.py where .venv/ is my virtual environment with FastAPI installed, while main.py has the ...
Ethan Alwaise's user avatar
0 votes
2 answers
193 views

I’m working on a Java Spring Boot project in IntelliJ IDEA. My folder structure is like this: src/main/java/com/discordbot/sentry The problem is: The src/main/java folder is marked as Sources Root (...
Abhishek.'s user avatar
1 vote
0 answers
24 views

I'm using Fluent UI's GroupedList component in a React app to build a file/folder browser UI. The structure I'm rendering is hierarchical, where each group represents a folder, and it can contain both ...
Abhishek More's user avatar
0 votes
1 answer
29 views

I use VS code with PyLint for my python coding. My main coding language is Matlab but want to transition to Python for doing my scientific computing. This is my first attempt. I have the following ...
seaphd's user avatar
  • 1
0 votes
0 answers
33 views

I have developed a WordPress plugin that is now live on the WordPress Plugin Directory. However, I'm facing an issue with managing different folder structures between my development environment and ...
Hi10's user avatar
  • 15
0 votes
1 answer
468 views

I'm a newbie in Django Python and I need to create an API backend for a frontend done in React. I'm forced by the customer to use Django Python, no options on this! The project is very simple: it ...
Giox's user avatar
  • 5,183
0 votes
0 answers
71 views

I am having an issue with getting some thumbnail jpeg images to pop-up when I click on point locations I have in a kml. I know that I need to set the image location and when I use the full file path ...
GeoMonkey's user avatar
  • 1,679
2 votes
2 answers
181 views

I was trying to organize my previously done C project (Uni project), I used Header files at then, but now i wanted to make it more clean, so went on dividing it into directories. But... Help me.. ...
dizziedbliss's user avatar
1 vote
1 answer
101 views

I am using HTML Bundler Webpack Plugin and following the documentation to keep the directory structure for assets: https://github.com/webdiscus/html-bundler-webpack-plugin?tab=readme-ov-file#how-to-...
jguneratne's user avatar
0 votes
1 answer
41 views

I have the following code structure in python: Application ├── app │ ├── data/ │ ├── utils/ │ │ └── utils.py │ └── main.py ├── utils2/ │ └── utils2.py └── main2.py I downloaded ...
Jeet Sensarma's user avatar
4 votes
1 answer
323 views

When I search the internet for design examples how to structure my code, I frequently find setups with main.rs only containing the main function and usages of lib, while lib.rs contains all the actual ...
Skru's user avatar
  • 135
0 votes
1 answer
88 views

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 (...
pjz's user avatar
  • 43.4k
1 vote
1 answer
63 views

I'm trying to loud a jpg logo in angular app, using <img> tag in the HTML of header component. If i click on my path in VS CODE it gets to my image but on the browser I get error 404. this is ...
Hadasa Sh's user avatar
0 votes
1 answer
56 views

I have a package called "library". The directory structure looks like this: -library +src *pkg1.py *pkg2.py -pyproject.toml -__init__.py Currently, the import looks ...
tbickford's user avatar
-2 votes
1 answer
142 views

Good day stackers, Can anyone help me figure out why a simple javascript onchange function works in one folder but does not work in another folder on the same webserver (cPanel v120.0.16). The links ...
user1565795's user avatar
0 votes
1 answer
118 views

I am working on a batch script that takes user input of a source folder and a destination folder. I want my script to iterate through both folder structures and log which folders are not present in ...
denseTurtle's user avatar
1 vote
1 answer
105 views

I know the answer to this question has been answered in dozen of SO questions but I'm still getting an issue. I've followed the steps from this: In a Git repository, how to properly rename a directory?...
lkartono's user avatar
  • 2,403
0 votes
1 answer
148 views

I try to write a script that does the following: determine folders that contain PDF files from a source dir create the full original directory structure down to these folders to a destination dir ...
Jozef_van_Thom's user avatar
0 votes
1 answer
39 views

I am building a cli tool and it has a folder named template which contains all the js templates required to create certain files. I install my tool globally with npm install -g. I created a separate ...
Viraj Doshi's user avatar
1 vote
1 answer
137 views

I'm working on a Python package with the following structure: cfkit/ │ ├── README.md ├── setup.py ├── .gitignore ├── LICENSE.txt ├── src/ │ ├── problem.py │ ├── contest.py │ ├── __init__.py │ ├...
Ghoudiy's user avatar
  • 13
-3 votes
2 answers
198 views

I have started working with terraform recently, I just want to understand the directory structure for design where we have common/different components as below and need to be integrated with ADO. I ...
RavitejaDanda's user avatar
0 votes
1 answer
333 views

I want to use FSD v2 with Expo application. As Expo application uses file based routing like a next.js, there is some conflicts. However, I found that there is possibilities to solve according to ...
an8ar's user avatar
  • 67
0 votes
1 answer
48 views

I want to import a csv list of file servers and shares ... "\fileserver1\share" "\fileserver2\share" "\fileserver3\share" Then export only the top-level directory path (...
DuhMan's user avatar
  • 9
1 vote
1 answer
222 views

I just finished reading an article about the recommended folder structure in an Angular project. The part about the feature modules caught my attention because it recommended to include a "top ...
Bayes-T's user avatar
  • 85
1 vote
1 answer
622 views

I hope someone might be able to help. I have this page structure in my NextJS 14 app: app/ (admin)/ layout.tsx (web)/ layout.tsx page.tsx not-found.tsx Note that ...
Gilles's user avatar
  • 21
0 votes
0 answers
28 views

When I run my Django project, why does it check for site packages in a folder other than where my project is located? The correct location where the project and package files are located is: C:\Users\...
Condado's user avatar
  • 65
1 vote
1 answer
399 views

I have the current folder structure ├── files/ │ └── utils.ts │ └── index.ts ├── api/ │ ├── api.ts │ ├── utils.ts │ └── index.ts Content: // files/utils.ts import api from 'api' // ...
Oki's user avatar
  • 3,367
0 votes
1 answer
886 views

The default folder that the Visual Studio installs the extensions is the following: %LocalAppData%\Microsoft\VisualStudio<Visual Studio version>\Extensions. So I want to change the folder to a ...
nkelidhs's user avatar
0 votes
0 answers
76 views

I have a folder structure as follows: lib | | |-MainScriptsDir | | | |-subDir | | | |- Mod_1 -> Importing Numpy | |- Mod_2 -> Importing Mod_4 | |- Mod_3 -&...
Devarapalli Vamsi's user avatar
0 votes
0 answers
26 views

I'm trying to clean up my site a little bit and I am running into a bit of an issue with .htaccess rewrites with dynamic/unknown subfolders. What i'm trying to achieve is the following Accessing /...
Fran922784's user avatar
1 vote
1 answer
45 views

I am working on a python app using VS Code. I work with the following structure: my_app ├── venv ├── my_app │ ├── __init__.py │ ├── main.py │ ├── module_1 │ │ ├── __init__.py │ │ ├── ...
Matthias's user avatar
  • 108
0 votes
1 answer
69 views

I'm working on a C# application and need to store application-wide values in a MVVM project, such as the path to its AppData folder. What is the recommended approach to achieve this? I'm very new to C#...
display_name_is_displayed_here's user avatar
0 votes
1 answer
46 views

I'm attempting to create a 5 level folder having an Excel sheet as the source. NOTE: Excel sheet is column organized by levels on each column as shown. Reference VB script from: https://superuser.com/...
BertMG's user avatar
  • 5
-1 votes
1 answer
264 views

When you create a new project in Flutter v3.19, it creates a default app in /lib/main.dart /lib/main.dart contains three classes: class MyApp extends StatelessWidget class MyHomePage extends ...
user23524156's user avatar
0 votes
1 answer
228 views

I have some variables that need to be inputted for my app and I wanted to move that file from the resources folder to the base directory to make it more user friendly. However, I am having trouble ...
dbrewster's user avatar
  • 703
1 vote
1 answer
615 views

I have a MERN project with the following folder structure. backend is an express,mongo backend. With the following structure. frontend is folder of 3 vite react projects. each has the following folder ...
Mohammed Mehdi's user avatar
2 votes
2 answers
2k views

I have a MERN project with the following folder structure. backend is an express,mongo backend. With the following structure. frontend is folder of 3 vite react projects. each has the following folder ...
Mohammed Mehdi's user avatar
0 votes
1 answer
61 views

I'm creating a source code evaluater platform using React and Django. Basically an user is going to upload a source file of his choice, my frontend sends the file to backend, which is working fine, ...
Leandro Libério's user avatar
0 votes
1 answer
43 views

I have a folder structure like this: - ConditionA - Subcondition1 - data1.Rds - data2.Rds - Subcondition2 - data1.Rds - data2.Rds - ConditionB - ...
J. Doe's user avatar
  • 1,882
1 vote
1 answer
96 views

I'm working on a Ruby script, specifically with a method named copy2tmp, (copy pasted method definition) define_singleton_method(:copy2tmp) do |files| files.each do |f| if File.symlink?(f) ...
Foad S. Farimani's user avatar
-1 votes
3 answers
2k views

I'm trying try create a folder structure of multiple folders within another folder. The below script creates the same subfolders but not what I need. @ECHO ON SET RootDir=C:\Main SET SubA=A,B SET SubB=...
aza01's user avatar
  • 131
0 votes
1 answer
733 views

I would like to copy only certain subfolder tree from S3 to my local disk. We have multiple JDBC source connectors for each table in the database and an S3 sink connector. I want to copy the file ...
adbdkb's user avatar
  • 2,269
1 vote
1 answer
75 views

So I have gene files named 1, 2, ... 19500.fa and want to sort them into folders 200, 400, 600... 19600 for a downstream pipeline. I have an idea of how to do this but it's pretty gruesome: for file ...
Amanda's user avatar
  • 17
0 votes
0 answers
248 views

Maybe someone has a good idea for the following problem. In our company, we just went through a take-over of our Microsoft 365 domain. During that process, all data from the old sharepoint was ...
hacori's user avatar
  • 1
2 votes
0 answers
64 views

I have an embedded systems project which needs to be developed and adapted easily for other microcontrollers. There are 3 types of files: Type-1: Hardware related files which will be independent of ...
alig24's user avatar
  • 33
1 vote
1 answer
683 views

So i have this Link which passing a href { name: "Action", cell: (row) => ( <div className="flex items-center space-x-5"> <Link href={`/...
Awoooooooooooooooooooo's user avatar
0 votes
0 answers
46 views

I have the following project structure: └── myProject ├── folder1 (package) ├── __init__.py │ ├── file1.py │ ├── file2.py │ ├── file3.py ├── file6.py ├── file7.py My friend added this ...
Silvermyst's user avatar
0 votes
1 answer
84 views

I am currently working on a Pygame project and would like to seek your advice on best practices for organizing my code, particularly when it comes to creating additional scripts. I find myself ...
r'ouster's user avatar

1
2 3 4 5
34