Newest Questions
24,186,482 questions
0
votes
0
answers
8
views
Okta Next Auth redirect issue
I’m integrating Okta as an OIDC provider in a Next.js (App Router) application using NextAuth.js. My setup is standard: I use the well-known endpoint, client ID/secret, and the recommended scopes (...
-1
votes
0
answers
5
views
How do I add a Webots speaker node?
I want to to add a speaker node in Python. I have make a robot node, then I add the speaker node in the robot's children. But when I run the code, it say this:
INFO: music_controller: Starting ...
Best practices
1
vote
0
replies
14
views
RISC-V L1 Cache Design: Combinational vs. Sequential Logic for Write-Hit Handling
I am designing an L1 cache controller for a simple custom RISC-V processor.
Design Specifications:
Architecture: Direct Mapped.
Block Size: 4 Words (128-bit) per line (to exploit spatial locality).
...
0
votes
0
answers
7
views
SwiftUI Confirmation Dialog in iOS 26+
I'm trying to adds a confirmation dialog in my app that comes up from the bottom of the screen. This is possible in iOS 18 with a .confirmationDialog(), but when I build the same code for iOS 26 I get ...
0
votes
0
answers
6
views
Ionic Capacitor iOS cannot detect returning online after offline using @capacitor/network
I have an Ionic + Capacitor + Angular project using @capacitor/network. On iOS:
When the app goes offline (Airplane mode or no Wi-Fi), it sometimes (every time in my case) fails to detect coming back ...
Advice
0
votes
0
replies
7
views
Dynamically display values on a ribbon chart controlled by a slicer
I want to be able to use a slicer on a ribbon chart that will dynamically display the values in millions/thousands. One total is quantity and the other is price. The chart will display yearly totals ...
Best practices
0
votes
0
replies
9
views
Julia: speeding up pipelines by 1) separating project into multiple subprojects, 2) dropping transitive dependencies, and 3) reusing stuff?
former Java developer and total Julia noob here.
My problem: My github pipeline takes FOREVER (pipeline see below). Two point of concern:
some dependencies are only needed for an example run with ...
0
votes
0
answers
8
views
Word.Application.Documents.Open - document opens showing "Reviewing"
We use Interop to open Word Documents. Very simple, with a Word.Application object named oWApp we would open a document file:
oWDoc = oWApp.Documents.Open(FileName:=sFile)
We activate the document ...
-2
votes
1
answer
15
views
Sudden Query Execution Delay - MongoDB flex plan
I am using MongoDB Atlas on the FLEX plan.
Today, I experienced significant delays in query execution. Queries that normally run quickly are now taking much longer than expected. This is affecting my ...
0
votes
0
answers
14
views
gcc installed from homebrew seems to be broken in the std library
From my Fedora 42 distro, I am trying to use homebrew to install a specific version of gcc to use in my C++ project. However, I am finding that the homebrew installs of gcc fail when making certain ...
0
votes
0
answers
9
views
trying to take photo and run arcore for orientation detection using shared camera approach in java
so i am working on a project where I want to capture a image but also use arcore at the same time to track the orientation of the device
this is the google drive link where I have a code and log:https:...
0
votes
0
answers
7
views
How to authenticate a Blazor server .NET 8/9 application with Identity Platform?
I'm trying to get Authentication via AzureAD / Identity Platform to work in .NET 8 (or .NET 9 - it just can't be .NET 10).
I've followed the wizard of the connected service for Identity Platform. It ...
1
vote
0
answers
10
views
Why is my “Second naive” SGEMM kernel faster than the “global memory coalesced” version?
I am benchmarking several very simple CUDA SGEMM kernels on an NVIDIA Hopper GPU (H800, sm_90), and I observed something that I do not fully understand.
I have two kernels that, to my understanding, ...
-4
votes
0
answers
24
views
Vulkan api engine performance [closed]
I have basic enfine using vulkan api. Currently it renders 10 million cubes using only frustum culling. When I'm in center of 1000x1000x1000 volume of randomly placed cubes in getting around 27 fps. ...
0
votes
1
answer
9
views
JsonOutputParser in LangChain raises OutputParserException when model includes conversational text
I am using LangChain to extract structured data from a user query using gpt-3.5-turbo. I have defined a Pydantic object and am passing the format instructions to the prompt.
However, occasionally the ...