Newest Questions
24,169,288 questions
0
votes
0
answers
2
views
Vim is overriding the filetype I chose using .vimrc with another type
I am editing an OpenCL source file, foo.cl, in Vim 9.1 . My .vimrc has the line:
au BufRead,BufNewFile *.cl setfiletype opencl
for choosing an opencl file type for files with the .cl prefix. However, ...
Advice
0
votes
0
replies
4
views
What OpenSSL API call will give me a list of key algorithms that could sign an X509 certificate?
The X509_get_signature_info() function allows the public/private key nid (pknid) to be returned for an X509 certificate, with examples like "RSA".
To be nice to people, we want to offer ...
Advice
0
votes
0
replies
6
views
Types Of Human Personality
If you get a chance to be an animal,what animal you would choose and why?
imagine you turn into that animal right now. what would be the first thing you'll do?. what'll be your first thought?. what if ...
Advice
0
votes
0
replies
29
views
Linux Basics for Hackers : Is it a good book to start learning Hacking and Linux?
I recently started learning C programming and got introduced to the world of Linux.
The concept of Hacking has always interested me and I thought that now would be a good time to start learning it, ...
0
votes
1
answer
15
views
Viewpager2 (Horizontal and vertikal) doesn't refresh the view when calling notifyDataSetChanged()
Helo,
I have a Horizontal Aadapter for a ViewPager:
public class HorizontalAdapter extends FragmentStateAdapter { ... }
Inside the HorizontalAdapter I have creating 3 VerticalContainerFragments, ...
0
votes
0
answers
18
views
After upgrading to MacOs 26.3 from previous version MCNearbyServiceAdvertiser started to fail of my MacOs app
Now I am getting following warning and error at Xcode panel.
It is said Bonjour/Multipeer service error.
But I did not change anything and my info.list like this;
Server did not publish: errorDict [{...
Advice
0
votes
1
replies
20
views
How initializing weights with large value causes vanishing gradient problem in neural network
I was watching this tutorial on weight initialization in neural network, and im not able to understand this statement:
In case of Tanh, Sigmoid activation, If we initialize weights with large values (...
Advice
0
votes
0
replies
28
views
How to get the port id from a pw_stream?
I have a struct pw_stream that I created through pw_stream_new_simple. How do I get the id of the port that the stream creates internally so that I can connect the stream (create links)?
0
votes
0
answers
26
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
23
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
17
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
1
replies
27
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
26
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
29
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
38
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 ...