2,524 questions
0
votes
1
answer
48
views
How to set up a MinIO to use virtual-hosted–style URLs for local development?
I have faced with the following problem:
I use aws s3 as media storage. Since some moment aws was made path-style urls (e.g. http://s3.aws.com/bucket-name/object-key) deprecated and now the correct ...
1
vote
0
answers
86
views
Include code in dev mode, but not in production in Vite.js site
I'm making a website using Vite.js and React.js. I do checks on the data in development mode. I use the zod library for this code. I can do this using the statement let zod = await import('zod'). This ...
-2
votes
2
answers
312
views
VS Code Setup for Multi Root Workspace with Different Environments
When using VS Code for Developing an App that is made up of Two Separate Apps, for example :
.Net API Server
/dev/apiServer/ApiServer.csproj
NodeJs ReactJs Web Ui
/dev/webUi/package.json
I am able ...
2
votes
1
answer
106
views
Uniswap swapping tokens issue
I am trying to swap two tokens A and B for which I have created the pool on the Uniswap testnet Sepolia. But in Remix, when I try to execute the swap, it gives an error.
Everything else is working ...
1
vote
0
answers
144
views
Image printing on TSC Printer
I’m trying to print a bitmap image using TSPL commands for a thermal label printer. I have this setup:
I convert a PNG/JPEG image into bitmap format and a byte array. Then I convert that byte array ...
0
votes
1
answer
108
views
Expo Go crashing after starting expo
after I start the expo in my vscode terminal using this command npx expo start, it displays the QrCode in the vscode terminal normally and some other lines, but when I launch the app that I developed ...
0
votes
1
answer
45
views
Are there Nim 2.0 compiler environment variables like for Perl PERL5LIB or Python PYTHONPATH
I am running a programming multi language repository for different languages under ~/Libraries like
~/Libraries/Emacs
~/Libraries/Perl5
~/Libraries/Python311
...
under Debian Linux. Usually it is ...
3
votes
1
answer
378
views
CSS Modules not working in development with Next.js 15.3.0
I'm experiencing an issue with Next.js 15.3.0: CSS Modules are not working in development mode, although they work fine in production.
For example, the generated class name like class="style-...
-2
votes
1
answer
154
views
pipreqs fails with SyntaxError when scanning Python 2 code in a Python 3 environment
I am doing a Python environment setup practice in which given the code(cannot modify), I need to generate a requirements.txt and install the packages to pass the tests.
I am in a python3.6 virtual ...
0
votes
1
answer
195
views
How to setup Swift on macOS?
I followed the Build a Command-line Tool instructions and found that it does not work.
I want to write only CLI programs, so Xcode is not installed.
I didn't use Install Swift because I found that ...
4
votes
5
answers
320
views
How to use Jupyter notebooks or IPython for development without polluting the venv?
Best practice for Python is to use venv to isolate to the imports you really need. I use python -m venv.
For development, it's very convenient to use IPython and notebooks for exploring code ...
1
vote
0
answers
48
views
How to enable HMR for a private React component library during development?
I’m currently developing a React component library that’s built with Rollup and released as a private npm package. This library is used across multiple applications.
The issue I’m facing is that ...
-3
votes
1
answer
55
views
Best Way to Organize My Development Workflow with Docker, CI/CD and ...? [closed]
I'm new to Docker and containerization, and I’m trying to set up a structured environment for multiple projects on my own server. Here’s what I’m aiming for:
Project Groups – I want different groups ...
1
vote
0
answers
84
views
Issue While Navigation in the Angular application
this.router.navigate(['/d/admin', this.uuid], {
state: { username: this.user.username },
});
I'm using this to navigate to a different page in an Angular project, but the issue that I'm facing is ...
0
votes
0
answers
24
views
Using IntelliJ inside Docker
I'm new to Docker so I don't know if this is stricly possible.
We are researching ways of having an image of our Development environment, so everytime a new developer incorporate to the company he can ...