Newest Questions
24,187,309 questions
0
votes
0
answers
5
views
I'm trying to automate a game
I'm trying to create a python code to nudge a spin the wheel game to the target option (e.g apple) without spinning the entire wheel but every code I write doesn't work,it instead spins the whole ...
Advice
0
votes
0
replies
3
views
How to apply multi-tenancy pre-filters to all Spring Data Elasticsearch repository queries (including findById and custom @Query)?
I am trying to implement multi-tenancy in a Spring Boot application using Spring Data Elasticsearch.
My goal is:
Automatically inject a tenantId filter into all Elasticsearch queries
This must apply ...
-1
votes
0
answers
11
views
Full screen overlay with MacOS system
# Source - https://stackoverflow.com/q/79835314
# Posted by DwangML, modified by community. See post 'Timeline' for change history
# Retrieved 2025-12-07, License - CC BY-SA 4.0
// Source - https://...
0
votes
0
answers
3
views
How to overrides Entity field in tests with Spring boot v4 + Hibernate
I wanna test a PostEntity without removing the next code:
@CreatedBy // Have to remove these ", nullable = false, insertable = false, updatable = false"
@Column(name = "created_by")...
0
votes
0
answers
11
views
Google Crawler chooses wrong canonical and refuses to index the proper one
Example:
Context: My website is localised in 3 languages: English, German and Ukrainian.
Initially the default Ukrainian version didn't have a locale in url, e.g. homepage https://languageranch.com/ ...
0
votes
0
answers
6
views
If I make an existing column NOT NULL in phpMyAdmin, will I lose my data?
I have a table in phpMyAdmin with some existing data:
CREATE TABLE users (
id INT AUTO_INCREMENT PRIMARY KEY,
username VARCHAR(50),
email VARCHAR(100)
);
Currently, the email column ...
-2
votes
0
answers
9
views
What server do I connect my iCloud files to? [closed]
I’m in my files app on my iPhone and it’s connected to my I cloud account and when I go to try to look for other files on the phone it asks me what server I want to connect my files account or I cloud ...
1
vote
0
answers
22
views
Getting Input without Blocking Mode in C
I was assigned a homework 3 weeks ago, and I presented it two weeks ago.The homeworks was that making an embedded project working linux environment by abstracting some functions, like:
int uartRead(...
0
votes
0
answers
7
views
How to make a video post with Facebook Graph API
I am finding the documentations super confusing and all the paths lead to various errors.
What I've tried,
Path 1:
Upload video using the ${page_id}/videos edge and pass the received Id to POST:${...
0
votes
0
answers
4
views
set PUPPETEER_SKIP_DOWNLOAD env variable but still
try to install a node project in a mac, but keep getting a puppteer installation error. I don't know why the installation fails, simply I just want to skip the installation
node_modules/.pnpm/...
1
vote
1
answer
17
views
Troubleshooting: A single regular expression matching nested braces usable for java and perl
I have a regular expression in an extension of java by florian ingerl
to parse a latex command,
\\\\DocumentMetadata(?<docMetadata>\\{(?:[^{}]|(?'docMetadata'))*\\})
but the important thing is ...
0
votes
0
answers
6
views
Why am I seeing a performance hit in a kind k8s cluster with port forwarding to a simple web worker?
I'm trying to determine why there is a performance difference between an application serving requests from within a kind k8s cluster versus the application just running on the local host. When I run a ...
1
vote
1
answer
19
views
How to play a pitched sound n times?
I'm making a game and am using WebAudio API for audio.
I want to play a given sound exactly n times, with a different pitch than normal.
As long as I don't change the pitch, i.e. keep playbackRate = 1....
0
votes
0
answers
5
views
How to answer to an SMB DeviceIOControl request?
I am implementing an SMB server in c# using https://github.com/TalAloni/SMBLibrary
Now when I try to open the share using Samba client, it tries to negotiate the protocol details. Problem is, the ...
-1
votes
0
answers
20
views
nswag generates 200 instead of 201
I have a .NET 10 API, part of this API looks like this:
"/api/Users": {
"post": {
"tags": [
"Users"
],
"...