Newest Questions
24,195,085 questions
- Bountied 18
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
0
votes
0
answers
18
views
Angular app on Visual Studio 2022 with new build system (ESBuild)
I have an Angular web app in Visual Studio 2022. The solution structure is as follows:
ClientApp folder - client-side TypeScript sources
Controllers folder - server-side C# sources
wwwroot folder - ...
0
votes
0
answers
12
views
Xcode project organisation identifier
I want to start learning how to code iOS apps. I want to create an Xcode project to practice but I have some questions about the organisation identifier and bundle identifier. I do not want to publish ...
0
votes
1
answer
17
views
How to know if a Slack message is in a thread
Using the ts of a Slack message (e.g. 1234567890.123456), how can I know if that message is reply in a thread or a regular message in a channel?
If if is in a thread, I want to reply to the thread.
...
-2
votes
1
answer
44
views
If statement always true
I have a bool function that returns true or false as expected. The if condition (if (MoveA == false)) that works with the boolean output however seems to be always true no matter the real value of the ...
0
votes
0
answers
15
views
Win32 api Edit Control doesn't respond to mouse clicks in child window
I'm having an issue with WinAPI Edit controls in a child window - they don't respond to mouse clicks, but work fine when placed in the main window. Other controls like buttons work normally in both ...
0
votes
0
answers
20
views
How to strongly type a getter map that builds a precise Record from a heterogeneous Record?
There is a heterogeneous, strongly typed State with keys StateKey, and a separate set of parameter keys ParamKey. Every StateKey corresponds to at least one ParamKey.
I’m trying to implement an ...
0
votes
0
answers
23
views
Spring Boot application fails to start with "FATAL: password authentication failed for user"
I have a Spring Boot application configured to use a PostgreSQL database via Docker. The main application runs fine, but when I run my integration tests with mvnw test (or mvnw install), the build ...
0
votes
0
answers
16
views
AWS ALB - Entra OIDC - Access Token - Custom API Scopes Issue
The request flow for my setup is that first, the requests go to AWS ALB, then authentication will be done by Entra at ALB level and then if auth is successful, then the request with tokens set as ...
-3
votes
0
answers
23
views
Session replay / heatmaps for Flutter Web 3.32 (no HTML renderer) — any tools that work with CanvasKit/SKWasm? [closed]
I’m on Flutter 3.32.0 (stable), targeting Flutter Web. Since the HTML renderer is gone, my app runs with CanvasKit/SKWasm. I’d like to add something Clarity-like (session replay + heatmaps + "failed/...
0
votes
0
answers
24
views
How to get access to field of nested reference in Redis Document from autogenerate metamodel
I am using redis-om-spring:1.0.4 with spring boot 3.4.10 for getting @Document support.
I have some class like
@Setter
@Getter
class Vehicle {
@Id
private String id;
...
0
votes
1
answer
46
views
How to get a JavaScript "days since 2000" that is identical to that of Scratch's block of the same name?
What do I need to do to make a "days since 2000" JS function that provides a value identical to that provided by the reporter in Scratch?:
The Scratch Wiki page states that
It reports the ...
2
votes
0
answers
45
views
Is it possible to achieve this combination of inner shadow, rounded border, offset border, and corner-images using only CSS?
I am trying to set up a frame for <img> elements that automatically sizes itself to the inner image and takes its colors from the webpage's CSS variables, consisting of several parts:
an inner ...
1
vote
0
answers
18
views
Is there a way to clear a line-wrapped text in a GNU Readline prompt?
I have been writing a simple REPL application in C. One of the required features was syntax highlighting so I wrote my own rl_redisplay function that allows me to highlight the test using ANSI escape ...
-1
votes
0
answers
28
views
Purpose of validation set
For example, I want to know what is the best k neighbours for my KNN model. It is recommended to have a separate dataset for finding the k with which your model gives the best performance, and then ...
0
votes
0
answers
14
views
How to mock multipart/form-data with pytest?
I have a POST endpoint with fastapi that goes a little like this. This takes in an excel file and turns it into a pandas dataframe.
@router.post(
"/endpoint/upload_excel",
status_code=status....