Newest Questions
24,194,445 questions
- Bountied 15
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
0
votes
0
answers
1
view
Mouse scroll wheel feels laggy and not smooth in my Flutter website
I'm building a website using Flutter Web, but when I scroll using the mouse scroll wheel, it doesn’t feel smooth it’s kind of laggy or jumpy compared to websites built with React or standard HTML/CSS.
...
-2
votes
0
answers
13
views
Failing CS50P Bitcoin Price Index w/ TracebackError
Whenever I attempt to use check50, it marks my output wrong with a TracebackError. I am unable to see the reason behind it. If I try to see the output in my terminal, it shows the correctly formatted ...
-1
votes
0
answers
17
views
Upload files to the server automatically when the application starts
I’ve been searching online and experimenting on my own, but I couldn’t find a clear or working solution for this problem, so I’m asking here for guidance.
I’m currently working on an application where ...
0
votes
0
answers
11
views
Automating conversion from EF Core scaffolded DbContext to Clean Architecture pattern
When I scaffold a database with Entity Framework Core, I get a flat structure of models and DbContext. Converting this to Clean Architecture (separate layers, CQRS, validators, configurations) ...
0
votes
1
answer
16
views
what type of object is KBArticleIDs returned from Microsoft.Update.Session Searcher?
Using Microsoft.Update.Session "Searcher" returns a set of objects that contain a KBArticleIDs member. This member is hard to use. In particular, a straight Select-Object (or ft (Format-...
0
votes
0
answers
13
views
Revalidate Pac4j saved Profile
We are using Pac4j Play behind an OIDC gateway. Our application is a stateful WebSocket-based application. We use a Direct JWT client and save the profile in the session store since WebSockets are ...
0
votes
0
answers
9
views
Making a custom build target with Bazel to specify custom kernel config flags
I've been doing some kernel development on the Google pixel 9a "tegu" platform (latest version on https://developers.google.com/android/drivers), where Google uses Bazel to compile the ...
-2
votes
0
answers
19
views
Handling bots and Google analytics
So I look at my Google analytics traffic and a lot of the users are spending less than 1 second on the site. What’s the best way to handle bots? Chat GPT says to create a JS cookie and not to ...
0
votes
0
answers
21
views
Unable to Connect to Azure Blob Storage from Java Using Managed Identity
I am trying to connect to an Azure Blob Storage account from my VM using Managed Identity in Java. Below is the code I have implemented to establish the connection. I have made all the required ...
1
vote
0
answers
16
views
Spring WebFlux + Spring AI + OpenRouter: "block()/blockFirst()/blockLast() are blocking" error in coroutine
I am using Spring WebFlux with Kotlin coroutines and Spring AI to call the OpenRouter API for chat completions. When I call the AI client inside a suspend function, I get a runtime error related to ...
3
votes
1
answer
48
views
Java 25 Javadoc not allowing Markdown URL link syntax in `@see`
Using Java 25 with the new JEP 467: Markdown Documentation Comments, I tried to add the following:
/// @see [Example Site](https://example.com/)
Javadoc (invoked by Maven) complained "error: ...
0
votes
0
answers
17
views
Can a partial multikey index in MongoDB index only certain subdocuments of an array?
I have a MongoDB collection with documents containing an array of subdocuments. For example:
{
"_id": 1,
"addresses": [
{ "city": "New York", "...
0
votes
0
answers
13
views
mingw32-make application was unable to start correctly (0xC0000142)
I installed mingw64 on my Windows 11 system a few days ago.
When using mingw32-make, the following lines of code in a makefile are failing.
voice.exe: ${OBJS}
${CC} -o "$@" ${OBJS} ${...
0
votes
0
answers
39
views
tellp() always return zero even if I open a file in app mode [duplicate]
m_pOStream = std::make_shared<std::ofstream>("solution.data", std::ios_base::out | std::ios_base::binary | std::ios_base::app);
size_t pp = m_pOStream->tellp();
if(pp==0){
...
0
votes
0
answers
22
views
React Native Black Screen Issue on Story board on IOS
I’m running a React Native app built with Expo SDK and a custom Expo Development Client.
The app builds successfully and launches the blue splash screen — but then stays on a black screen forever.
...