2,522 questions
0
votes
1
answer
163
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
votes
2
answers
453
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 ...
1
vote
0
answers
154
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
51
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 ...
-2
votes
1
answer
161
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 ...
4
votes
5
answers
332
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 ...
-3
votes
1
answer
56
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 ...
0
votes
1
answer
498
views
DevPod desktop (macOS)... `fatal error retrieving container status: find dev container: docker ps: exec: "docker": executable file not found in $PATH`
PROBLEM
Pullin’ me hair out. DevPod desktop on macOS 15.1 won’t fire up. I'm getting this error...
fatal error retrieving container status: find dev container: docker ps: exec: "docker": ...
0
votes
2
answers
476
views
Opening locally running Angular Site on other devices in Network?
I'm running Angular Web Site on my local machine.
I run the command on vs code terminal
ng serve -o
Its automatically bundles my website and open the link http://localhost:4200/
Is there any way, that ...
0
votes
1
answer
53
views
Node.js does not read env variable set in Mac native Terminal
I am running Node.js application from VS Code. I wanted to save my Database password in an env variable. I exported the data on my Mac native Terminal app and on echo, I was able to retrieve the data.
...
3
votes
1
answer
1k
views
Manage edge functions in a multi-environment development setup using webhooks on supabase
I’m currently working on a project that uses Supabase with multiple environments (local, staging, and production). My development workflow involves:
Developing locally with Supabase CLI.
Deploying ...
0
votes
0
answers
38
views
Redirect URL using python requests behaving differently on local vs server
I have a shortened url:
https://dl.flipkart.com/s/XermJqNNNN
which expands to:
https://www.flipkart.com/beatxp-prime-deep-tissue-electric-massage-gun-machine-full-body-pain-relief-percussion-massager/...
0
votes
0
answers
356
views
Poetry installs `--without` group
I'm using poetry to handle my project dependencies.
Here is an example of my pyproject.toml:
[tool.poetry]
name = "my-package"
version = "0.1.0"
description = "My project"...
0
votes
1
answer
284
views
OAuth2 in development (Sandbox)
I'm currently developing OAuth2 integration for a website of an organization which internally uses Google Workspace (for Non-Profits). Login to the website should only be possible with Google accounts ...
0
votes
0
answers
45
views
How to know the right SDK environment for every imported project
I'm downloading a lot of Java Spring and JavaFX files from Github to continue my learning trajectory. But only seldom can I create the right environment to view other people's work.
I've got about 7 ...
2
votes
0
answers
172
views
Flutter generative AI sample API_KEY problem in Project IDX environment
I'm trying to practice Flutter generative AI sample in Project IDX environment. It needs Gemini API key. Readme says,
"
When running the app, include your API key using the --dart-define flag:
$ ...
1
vote
2
answers
2k
views
Shiprocket API - test environment, test shipment
For my client I am integrating Shiprocket services with his system.
I rely on the documentation (ApiDocs) and the Postman collection (Postman Collection).
The main problem for me is the lack of a test ...
0
votes
1
answer
103
views
How to fix URLEncoder related issues?
I am having issues with my URL encoder, it is working locally and on stage, but not working on live.
I am using filters to get brand names, but some of those brand names have spaces. When I send a ...
0
votes
1
answer
183
views
How to remove duplicate entries for Python env interpreter in VS Code
I'm using Windows 10 and I'm not sure why I have such a long list of the same Python env when I select the interpreter for my Jupyter notebook. Does anyone know how to fix this?
Currently have no ...
0
votes
1
answer
1k
views
Run Angular from inside docker container
I want to have a Docker container with image of the Angular application to be served from inside. So user could pull the image, run the application and start developing conveniently.
My current ...
1
vote
0
answers
158
views
Error in react query Typescript while deploying on vercel
I am using react-query, I have used useInfinteQuery.
I'm getting error in getNextPageParams.
I have created queriesandmutaion.tsx file and write the code in it:
return useInfiniteQuery({
...
0
votes
0
answers
41
views
How to view screens that were executed before debugging in Eclipse
Previously, when I used Visual Basic 6, after setting breakpoints and running up to that point, I could see the screens that had been executed so far by pressing a shortcut key. However, Eclipse ...
0
votes
0
answers
472
views
Cannot deploy R-shiny app due to "fribidi was not found"
Local app runs fine, but I keep encountering this error when attempting to publish it.
I have already installed fribidi & harfbuzz using brew install fribidi & brew install harfbuzz on my Mac, ...
-1
votes
1
answer
130
views
jupyterlab not detecting installed module: textract and doc2text
I did this in a jupyter lab cell:
!pip install textract
and i managed to installed it successfully.
I also installed textract and doc2text in command line too in my conda environment.
But when I ...
0
votes
1
answer
1k
views
How to automatically increase version in csproj file after pipeline build
wanted to ask for your advice on versioning packages or software apps. Lets say i have a build pipeline in Azure DevOps which increases the version of my package by 1 according to semantic versioning ...