Newest Questions
24,187,314 questions
Best practices
0
votes
0
replies
3
views
Seeking for the best practice to add 'eye' option to secureField text box in swift
I'd like to add to my an option to expose the password value in my secure field textbox. Currently I'm doing it by rendering TextField if showPassword is on, and SecureField if it's off. However, the ...
-1
votes
0
answers
10
views
How to make a fabric 1.21.4 minecraft rat that takes a session id and sends it to a discord webhook of my choice
How to make a fabric 1.21.4 minecraft rat that takes a session id and sends it to a discord webhook of my choice. i dont know how to code. the only thing i know is
Minecraft mc = Minecraft....
0
votes
1
answer
10
views
Captures all domain names within a property SubjectAlternativeName
I’m trying to extract a specific portion of text and haven’t had success despite testing multiple patterns and looking at similar examples. After struggling for a while, I figured it was time to ask ...
0
votes
0
answers
5
views
System.Drawing Bitmap not working on Linux Docker container (.NET Core / DevExpress Report)
I am working with devexpress reports in my .NET Core project. In my windows laptop the reports are displayed fine but when I ran the project using docker container the reports are not being displayed ...
Best practices
0
votes
0
replies
13
views
What's the best practice of distributed transaction implementation for java/spring based service
I am going to try to implement such thing and thinking about the best practice. Of caurse I know about some patterns like SAGA with transaction outbox but I never used it in practice. Is there any ...
0
votes
0
answers
7
views
ASP.NET Swagger operationfilter security clearing does not remove padlock
I am trying to remove the padlock from some of the APIs from my collection
My Swaggergen is built:
builder.Services.AddSwaggerGen(options =>
{
options.SwaggerDoc("v1", new()
{
...
-1
votes
0
answers
8
views
Playwright mount timeout error using React and TypeScript
Using React and Ts, I am getting: Test timeout of 30000ms exceeded. Error: page._wrapApiCall: Test timeout of 30000ms exceeded when trying to mount with :
test("renders selected date", ...
0
votes
0
answers
9
views
Hibernate doesn't load attribute nodes with entity graph
I have the next entity three:
TestEntity
/ \
FirstNodeEntity SecondNodeEntity
(LIST, LAZY) (LIST, LAZY)
| \
ThirdNodeEntity ...
Advice
0
votes
0
replies
6
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 ...
-2
votes
0
answers
23
views
Full screen overlay with MacOS system [duplicate]
# 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://...
-1
votes
0
answers
9
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
16
views
Google Crawler chooses wrong canonical and refuses to index the proper one [closed]
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
11
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 ...
-4
votes
0
answers
14
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 ...
2
votes
1
answer
43
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(...