Newest Questions
24,188,492 questions
0
votes
0
answers
11
views
Intel compiler giving error due to whitespace in assumed rank dummy argument declaration
Consider the following code:
Module assumed_rank_module
Implicit None
Contains
Pure Function assumed_rank( a ) Result( s )
Integer :: s
Real, Dimension( .. ), Intent( In ) :: a
s ...
0
votes
0
answers
11
views
Cannot find "Visual dependency analysis" tool in JetBrains Rider
I'm trying to analyse the dependencies of some projects and I came across the Visual dependency analysis functionality of JetBrains Rider.
I have Rider version 2025.3.0.2 installed, but this ...
0
votes
0
answers
8
views
Firebase Firestore only updates when accessed through a specific Android activity
I'm working on an Android app where users can add and remove restaurants from their favourites via the RestaurantPage activity. When I access the RestaurantPage activity from the UserFavourites ...
Advice
0
votes
0
replies
5
views
Multiple cards (or similar visualisations) in Power BI
I have a SharePoint list (SPL) that I use in 'Gallery' view but even with JSON you can only format so much. So I'm thinking I'd like to use Power BI to do what I want, but have been struggling with ...
0
votes
0
answers
11
views
Why LoRA Shows 1.4B Trainable Params Instead of 38M When Fine-Tuning Gemma 3 4B?
I found a code snippet for fine-tuning the Gemma-3 4B model on an OCR dataset that converts handwritten math formulas into LaTeX. The original author shared their results showing about **38 million ...
0
votes
0
answers
6
views
SimpleIdServer: Setup an SPA PKCE client by code on the IdServer
Using simpleidserver 6, I am trying to implement a dedicated Id server for an SPA application using PKCE.
This SPA authenticates with no pb if it is setup for other Id servers like Azure EntraId or ...
Advice
0
votes
1
replies
15
views
Why doesn't Google Chrome allow using custom root certificate authorities for HTTP/3 + QUIC?
So, why doesn't Google Chrome allow using custom root certificate authorities for HTTP/3 + QUIC?
I found information on the Internet that this is supposedly done to increase security in order to ...
0
votes
0
answers
13
views
How to avoid celery_delayed_0-27 queues creation?
I use celery 5.5.0 with RabbitMQ 4.1.1 as a message broker. After a switch from classic queues to quorum queues I got quite a lot of queues called celery_delayed_0-27. In total 28 new queues. As far ...
0
votes
0
answers
18
views
Why different files produce same GNSS plots in my Python code?
I wrote a piece of Python code to read different GPS observation files (.24o) and navigation files (.24p), and generate polar plots of satellite trajectories. It is hoped that the RINEX file can be ...
Advice
0
votes
2
replies
16
views
How to localise submit buttons in HTML forms
I am building a multi-lingual website and want to localise the captions shown on buttons in a form.
<form action="check.php" method="post">
<input class="btn btn-...
0
votes
0
answers
7
views
Compose SwipeToDismiss threshold is ignored and executed action when user lift finger
I am implementing SwipeToDismissBox using Jetpack Compose Material 3. I have two specific requirements:
Custom Threshold: The swipe action should be triggered when the user drags more than 25% of the ...
0
votes
0
answers
12
views
Why does RestTemplate, starting from Java 21, run on a different thread even without virtual threads and without @Async, and why does MDC get lost?
i recently migrated from java17 to 21. I use logback MDC to log http request and response. each http request may lead to execute several resttemplate sync call. i use mdc to generate UUID as traceId ...
0
votes
0
answers
11
views
How to wake up to resume execution on an ARM Cortex M0+ processor?
I have an Arduino MKR Wifi 1010, which has an ARM Cortex M0+ processor, and try to implement sleep correctly.
What happens is that an interrupt is registered, and then __WFI (Wait for interrupt) is ...
0
votes
0
answers
14
views
Is it “standard” to use Keycloak SSO tokens to fetch Google/Microsoft calendar data?
I’m using Keycloak as my identity provider and I have enabled identity brokering with Google and Microsoft (Azure AD).
My current flow:
User logs in via Google or Microsoft through Keycloak SSO.
In ...
0
votes
0
answers
59
views
Why does this C# code take 6 seconds instead of 5?
I implemented this simple loop in C# which runs a 100 times, and in each iteration waits for 50ms.
using System.Diagnostics;
var sw = Stopwatch.StartNew();
for (int i = 0; i < 100; i++)
{
...
0
votes
0
answers
23
views
How to use verifyKeySignature on react-native-biometrics properly?
I'm working on biometrics login for our ReactNative app using @sbaiahmed1/react-native-biometrics.
First step is to register the biometric public key to the backend by sending these 4 values: deviceId,...
0
votes
0
answers
23
views
How can I read the setting of the Liquid Glass design mode?
In iOS 26.1, a new system setting allows users to toggle the Liquid Glass design between 'Tinted' and 'Clear' modes.
I need to programmatically read this preference to adapt my UI. Which specific ...
0
votes
1
answer
17
views
AdobeSign UI Popup Freezes After Click Action, Preventing Drag-and-Drop
I am working with Playwright (v1.55.0) using Java (v1.8). While automating in Chrome, I observed that when a popup window appears, any click action on that popup causes the UI to freeze. After this ...
0
votes
0
answers
19
views
withEnabledBlockingInitialNavigation() is required to make hydration work for route component, but Angular tells you not to use it
I'm investigating why our application flickers when running on a slower network such as 3G/4G on a mobile while also using SSR, and I found that the router component disappears after a while, before ...
0
votes
0
answers
33
views
How to List pdf filenames
I cannot get a list of files ending with .pdf, I have tried everything, it lists everything else in the folder, except for the pdf's, what is wrong with this. The program then displays the list in a
...
0
votes
0
answers
13
views
Altair choropleth map selection interval and bidirectional linking
I want to make a bidirectional plot where the selected values through brush in the scatter plot appear in a different opacity in the choropleth map, and the selected countries in the choropleth appear ...
Advice
0
votes
2
replies
21
views
Make PPT with slides from selected fields of excel sheet (Using AI Tools)
I have an excel sheet with several fields. I want to generate a PPT with one slide per excel sheet row (having selected selected row). How can I do this using some AI tools (Free version only). The ...
0
votes
0
answers
20
views
Authentication not working in Swagger with .NET 10
Previously when using .NET 9, I could authenticate in Swagger using an Authorize button and auth-protected endpoints would have a "lock" icon on them:
But now when using .NET 10 and latest ...
0
votes
0
answers
16
views
Kafka in Docker persists data after deleting containers and volumes
I'm experiencing a strange behavior when running Apache Kafka in Docker. I have set up a Docker Compose environment with the following configuration:
services:
broker:
image: apache/kafka:latest
...
0
votes
0
answers
21
views
How to create and use an HNSW index for vector search? [closed]
I'm migrating my vector search application from a standard MySQL Community server to an PolarDB IMCI instance in the cloud. On the community server, I was calculating L2 distance with a slow UDF and ...
0
votes
0
answers
27
views
sorting code getting 1004 error in excel vba
here is my code... i have data in sheet2 with 5 columns. I would like to sorting with E column. Following code working properly, but some times it is throwing 1004 error (Method range of object ...
Advice
0
votes
1
replies
17
views
How can I tell the compiler I want a type to be of a certain shape and implement a trait in Rust?
Take this code:
pub struct Complex<T: SimdElement>(Simd<T, 2>) where Simd<T, 2>: StdFloat;
How would I express that I want the inner value to be of the same type as the trait bound?
...
0
votes
1
answer
33
views
Json Serialization - Work around for ExpandableObjectConverter [duplicate]
I'm writing code for .NET 8.
Given this class Sample:
[Serializable]
[TypeConverter(typeof(ExpandableObjectConverter))]
[DataContract]
public class Sample
{
[DataMember]
public int SampleId {...
Advice
0
votes
4
replies
40
views
Does the finally block run when returning inside try, and what happens if finally also returns?
I have a question about how try/finally behaves when using return statements in C#.
Consider the following methods:
public int Test()
{
return 12;
}
public int Test2()
{
try
{
...
0
votes
0
answers
16
views
Google Looker Studio Date Invalid
It seems Looker studio had a bit of an update and ever since I can't get my dates to work.
My excel file saves a .csv with dates formatted as YYYY-MM-DD
and uploads it using CSV file upload.
When ...
0
votes
0
answers
13
views
CoreData: openDirectory error when saving data
If I save data in my CoreData app, I get the following info in my Xcode console:
cannot open file at line 42184 of [554764a6e7]
os_unix.c:42184: (0) openDirectory(/Users/christiankrueger/Documents/...
-4
votes
0
answers
34
views
How to practice SpringBoot [closed]
I wish to learn SpringBoot, I'd like to practice the concepts that I've learnt and build simple projects out of it to stay strong with what I learn day to day.
Me being a java developer was not good ...
Best practices
1
vote
0
replies
12
views
Setting up Recoil properly
We are working on a project where we've previously used MobX to pass a reactive object. What is the best practices when using Recoil while still following MVP?
I read that with Recoil you don't need ...
0
votes
0
answers
11
views
How to edit/delete connection in Copilot Studio Azure SQL Knowledge
While trying to add Azure SQL knowledge to an agent I have added a connection (Windows Authentication Non Shared).
The connection is not configured right (times out, the name is not the best, but I ...
0
votes
0
answers
26
views
Button takes space for empty text although it should only render icon button
Given a dynamic Vuetify LinkButton component based on a configuration file ( there are more props but I think this example is sufficient for troubleshooting )
<v-btn
:prepend-icon="`mdi-...
0
votes
0
answers
12
views
image in template unproportionally scaled after columns autosizing
I am using apache poi 5.4.1.
I would like to use prepared excel file (some kind of template) where I will just write data.
There occurs problem afterwards when I use feature of autosizing for the ...
0
votes
1
answer
38
views
How to install locally built package with uv
I am struggling a bit with uv mental model and compatibility with existing tool.
I have a project with a "setup.py", previously using python -m build to run the build. I couldn't find a way ...
0
votes
0
answers
10
views
why gbl write root digest in host DT?
When I analyze code of GBL main process, I found after loading the pvmfw data region,
match pvmfw {
Some((ref v, s)) => avf_fixup_host_dt(ops, &mut fdt, v, s, &verify_data)?,
...
-1
votes
0
answers
22
views
"Related fields" appear in the Product card
For some reason, when shop is loaded, and the collection appears, after a few seconds I see "Related fields" text in the product card.
It ruins the view of the collection and I don't ...
1
vote
0
answers
22
views
Spring WebClient takes too long to process the first request — subsequent calls fast
I'm using Spring WebClient in my Java application to authenticate with Keycloak.
The issue I'm facing is:
The first WebClient request takes a long time (5-9 seconds), but all subsequent requests are ...
1
vote
1
answer
35
views
How do I remove the square white background behind the rounded corners of the keyboard in Xcode 26?
check the screen shot
As shown in the screenshot, I haven't added any extra definitions or styling. The white background behind the rounded corners appears in some places but not in others. Is there a ...
0
votes
0
answers
9
views
How to scale text dynamically?
Godot Version
v4.5.1.stable.official [f62fdbde1]
Question
I have a Label node "DisplayWord" that shows the word the user typed. Therefore it could be anything from 'Cat' to 'Asphyxiation'.
I ...
-6
votes
0
answers
35
views
The best approach for Image to text (ocr) [closed]
Title: Improving OCR accuracy for mixed-layout PDFs (Python): preprocessing & model suggestions?
I’m building an automation tool that monitors a folder, detects new PDFs, runs OCR, and extracts ...
0
votes
1
answer
18
views
Cordova iOS app - Access Control Allow Origin
I'm building an iOS app with Cordova.
When I emulate with browser I don't get any error, but when I do with cordova emulate ios, BUILD SUCCEEDED, the app runs in the simulator but i get some errors in ...
-1
votes
0
answers
15
views
React Compiler: Component shows as memoized in DevTools but still re-renders
I'm facing an issue with the React Compiler auto-memo.
React DevTools shows that Test2 is memoized (sparkle icon), but console.log still runs on every render.
import { useState } from "react"...
0
votes
0
answers
30
views
PCM audio data strange values in NAudio
I want to make an application that reads out the db values from a microphone. For that I use NAudio to "record" a WaveIn stream, convert the Data to samples, get the max of each buffer, ...
-1
votes
0
answers
19
views
Copying the Existing self-hosted developer portal to a different repository with different APIM
I am trying to copy the existing self-hosted developer portal to a different repository with different APIM.
We will be having different portals, one is for internal users and another one is for ...
-1
votes
0
answers
31
views
Cannot run my PHP Apache PHP-FPM website locally on MacOS because of weird ObjectiveC error: objc[1495]: +[NSPlaceholderString initialize]
This issue recently popped up after a macOS update probably Tahoe 26 but when I try to request a page of my website that uses Homebrew Apache PHP-FPM Memcached with PostgreSQL and PHP 8.4 files on OSX ...
1
vote
0
answers
50
views
Why does the "$" operator not run when using the unique() function while trying to extract a specific variable from a dataset [closed]
I am trying to run a for loop that will extract variables from two different datasets into one data frame. One dataset contains information on estuaries of the West Coast of North America, the other ...