Newest Questions

Filter by
Sorted by
Tagged with
0 votes
0 answers
11 views

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 ...
Ian Bush's user avatar
  • 7,707
0 votes
0 answers
11 views

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 ...
Kile Asmussen's user avatar
0 votes
0 answers
8 views

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 ...
999's user avatar
  • 21
Advice
0 votes
0 replies
5 views

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 ...
P E's user avatar
  • 187
0 votes
0 answers
11 views

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 ...
Milad Rasooli's user avatar
0 votes
0 answers
6 views

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 ...
Stephane's user avatar
  • 1,501
Advice
0 votes
1 replies
15 views

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 ...
Joe J's user avatar
  • 1,349
0 votes
0 answers
13 views

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 ...
Olha Ushkalenko's user avatar
0 votes
0 answers
18 views

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 ...
Aria's user avatar
  • 1
Advice
0 votes
2 replies
16 views

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-...
4everJang's user avatar
  • 333
0 votes
0 answers
7 views

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 ...
Danfb__'s user avatar
  • 387
0 votes
0 answers
12 views

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 ...
Bashir Zamani's user avatar
0 votes
0 answers
11 views

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 ...
Caulder's user avatar
  • 459
0 votes
0 answers
14 views

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 ...
Aryan Tirkey's user avatar
0 votes
0 answers
59 views

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++) { ...
Mark Vincze's user avatar
  • 8,123
0 votes
0 answers
23 views

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,...
anta40's user avatar
  • 6,815
0 votes
0 answers
23 views

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 ...
刘笑尘's user avatar
0 votes
1 answer
17 views

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 ...
Jim Dolly's user avatar
0 votes
0 answers
19 views

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 ...
Chrillewoodz's user avatar
  • 28.5k
0 votes
0 answers
33 views

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 ...
Roy's user avatar
  • 9
0 votes
0 answers
13 views

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 ...
Andrea Li Feng's user avatar
Advice
0 votes
2 replies
21 views

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 ...
gpuguy's user avatar
  • 4,717
0 votes
0 answers
20 views

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 ...
Nermin's user avatar
  • 1,140
0 votes
0 answers
16 views

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 ...
floatingpurr's user avatar
  • 8,729
0 votes
0 answers
21 views

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 ...
余南龙's user avatar
0 votes
0 answers
27 views

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 ...
Raja V's user avatar
  • 11
Advice
0 votes
1 replies
17 views

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? ...
theKMan747's user avatar
0 votes
1 answer
33 views

I'm writing code for .NET 8. Given this class Sample: [Serializable] [TypeConverter(typeof(ExpandableObjectConverter))] [DataContract] public class Sample { [DataMember] public int SampleId {...
mich's user avatar
  • 21
Advice
0 votes
4 replies
40 views

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 { ...
Colin's user avatar
  • 41
0 votes
0 answers
16 views

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 ...
LOK's user avatar
  • 1
0 votes
0 answers
13 views

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/...
Christian Krueger's user avatar
-4 votes
0 answers
34 views

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 ...
soul reaper's user avatar
Best practices
1 vote
0 replies
12 views

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 ...
Ysw's user avatar
  • 21
0 votes
0 answers
11 views

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 ...
MikeF's user avatar
  • 51
0 votes
0 answers
26 views

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-...
m477h145h3rm53n's user avatar
0 votes
0 answers
12 views

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 ...
squirrelInTheBarel's user avatar
0 votes
1 answer
38 views

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 ...
Eric Burel's user avatar
  • 5,146
0 votes
0 answers
10 views

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)?, ...
yue's user avatar
  • 1
-1 votes
0 answers
22 views

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 ...
OkyDokyman's user avatar
  • 3,904
1 vote
0 answers
22 views

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 ...
Anish's user avatar
  • 27
1 vote
1 answer
35 views

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 ...
Hanoch's user avatar
  • 13
0 votes
0 answers
9 views

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 ...
Krishnabm's user avatar
  • 185
-6 votes
0 answers
35 views

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 ...
Anshu Sharma's user avatar
0 votes
1 answer
18 views

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 ...
matt's user avatar
  • 101
-1 votes
0 answers
15 views

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"...
K i's user avatar
  • 615
0 votes
0 answers
30 views

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, ...
DefinitivVair0's user avatar
-1 votes
0 answers
19 views

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 ...
Dillipkumar's user avatar
-1 votes
0 answers
31 views

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 ...
im3r3k's user avatar
  • 501
1 vote
0 answers
50 views

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 ...
Chloe Emes's user avatar

15 30 50 per page
1
2 3 4 5
483770