Newest Questions
24,169,280 questions
0
votes
0
answers
12
views
How do I configure svelte environment variables in vitest?
I have a svelte-kit project. The way that I'm handling configuration in my project is that I have a config.ts file, and in that file I load up all configuration values from the .env file, validate ...
0
votes
0
answers
9
views
Angular 21.2.0 SSR: ng serve --host 0.0.0.0 not working after update to version- ^21.2.0
It starts but when I try to visit it from browser, it gives error-
ERROR: Bad Request ("http://localhost:4200/").
URL with hostname "localhost" is not allowed.
For more information,...
1
vote
0
answers
4
views
epiR::epi.conf() (ctype = "inc.risk") returns different value than manual cumulative incidence
I’m trying to compute cumulative incidence with epiR::epi.conf() and the estimate doesn't match the simple manual calculation.
I have 13 events out of 107 individuals (13 events, 94 non-events).
...
Advice
0
votes
0
replies
12
views
G++ Not recognizing .bin file as input
I am making a program for a college class that takes a .bin file as input and eventually spits out a .txt file as output. For testing, I had to make a smaller program that does the reverse, which I ...
0
votes
0
answers
15
views
MinIO - You did not provide the number of bytes specified by the Content-Length HTTP
I have two MinIO instances running in Docker:
minio-hot (STANDARD tier) – 4 TB SSD
minio-cold (COLD tier) – 40 TB HDD
The docker-compose.yaml:
networks:
minio-network:
driver: bridge
services:...
0
votes
1
answer
26
views
boto3 presigned PUT URL for Backblaze B2 S3 returns SignatureDoesNotMatch
I’m trying to generate presigned PUT URLs for Backblaze B2 (S3-compatible API) using boto3, but even a minimal curl PUT fails with SignatureDoesNotMatch.
This happens without any extra headers, so it ...
0
votes
0
answers
33
views
Fix opaque rectangular wrapper widget around the CustomDropdown widget in Flutter
I am using flex_color_scheme in my app for the theming the app, and for implementing combo box, I needed to add the animated_custom_dropdown package and use its CustomDropdown widget. With these ...
0
votes
0
answers
25
views
Cannot upload binaries via github release workflow
This is my release workflow :-
name: Release
on:
push:
tags:
- 'v*'
env:
BUILD_TYPE: Release
jobs:
build-and-release:
runs-on: windows-latest
steps:
- name: Checkout
...
Best practices
0
votes
0
replies
31
views
How to securely implement JWT authentication in a .NET health monitoring app using MySQL?
I’m developing a web application for pharmacovigilance similar to VAERS and some UN health reporting dashboards. The app is built with .NET 8, Entity Framework Core, and MySQL.Users are medical ...
1
vote
0
answers
26
views
Parallel spring batch jobs mixing up data
Hi this one is really puzzling me. I am trying to run a separate instance of a spring batch job for every file, up to 20 at a time.
I've created a stripped down job of how im using it to reproduce ...
Advice
0
votes
3
replies
41
views
Can I change the contents of the link I send to people?
Not sure if I was able to word it well but, I'm sending a link to people that have my personal details in the website if they click on it. Can I make it so they access a version of the website without ...
0
votes
0
answers
23
views
Query across three tables with joins
I have three tables Orders, CustomerProductSizesOptions and ProductSizesOptions.
Orders:
OrderID
SurName
DeliveryDate
45
Jones
01/01/2025
43
Smith
04/02/2025
CustomerProductSizesOptions:
OrderID
...
0
votes
0
answers
52
views
How to get GCC to inline strcpy (string copy)
I'm using www.godbolt.org website and the x86-64 gcc 15.2 compiler selection and the -O2 compiler options for optimization but it still makes a call to strcpy in libc.
I would like this compiler to ...
Tooling
0
votes
0
replies
16
views
Best app to use for Creating and managing digital currency?
Best is to download Pi browser app to start mining.and from there go to Pi network and create demo app.Then you need to be approved by pi team but before you migrate your currency from demo Testnet ...
0
votes
1
answer
29
views
Why does the dash command `test -d` without the file arg pass without error?
#!/bin/sh
# dash script
zero=0
test $zero -eq 0
echo $? # prints 0
zerostr="000"
test $zerostr -eq 0
echo $? # prints 0
test
echo $? # prints 1 (as documented)
test -d
echo $? # prints 0 (...