Newest Questions

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

I’m working on a C++ project in CLion (macOS, Clang compiler). My CMakeLists.txt explicitly sets the C++ standard to 20: cmake_minimum_required(VERSION 3.16) project(CourseWork) set(...
Dzyn's user avatar
  • 1
0 votes
0 answers
10 views

I want to open a new page on notification click in my Flutter web app. Here is my service worker: console.log("SW: test.js loaded"); self.addEventListener("push", event => { console.log("SW: ...
Misagh Emamverdi's user avatar
0 votes
0 answers
18 views

I’m working with several Raman spectroscopy data files that use a proprietary binary format with the extension .jws. The original software that could read these files is no longer available, and there ...
KeDo 2517's user avatar
0 votes
0 answers
13 views

I have a formArray that holds a formGroup. For one formControl I need to call an endpoint and populate it with the data. In my component: ngOnInit() { this.service.getInitialData().pipe(take(1))....
Mădă's user avatar
  • 51
0 votes
0 answers
21 views

I am migrate a home site from Windows to Linux Debian and Nginx.The HTML code was working under Windows. Here the part of the HTML code, where I try to call a Javescript function, which is included in ...
Georgio's user avatar
  • 305
0 votes
0 answers
12 views

I have a Laravel 12.39 project on a shared hosting with cPanel access, and in the cron section, I have the following setting to run artisan schedule:run, but it isn't working. * * * * * /usr/...
McRui's user avatar
  • 1,988
0 votes
0 answers
6 views

There is a very similar question to this, however it is out of date. (The documentation and default docker-compose.yml have changed recently.) postgres with docker compose gives FATAL: role "...
user2138149's user avatar
  • 18.6k
0 votes
0 answers
32 views

Hello all @ stack overflow i have a question vector<SSDS> abc(10); abc[0].insert_in(1,"Sandisk","1","2","3"); abc[1].insert_in(2,"Western&...
Acherontas's user avatar
0 votes
0 answers
12 views

I want to automate a website whose flow keeps changing, structured script does not work, selectors dont change but their flow change, I tried making something hybrid where I use gemini api, playwright ...
Khushi Atrey's user avatar
0 votes
0 answers
12 views

Well, I'm somewhat stuck here and I don't know which side is doing things it's not supposed to do. I'll try to outline the issue first. I have an API call which is defined like this: [HttpGet("...
Tom L.'s user avatar
  • 1,044
0 votes
0 answers
10 views

at first the operation: operation.recordMatchedBlock = {recordID, result in switch result{ case .success(let record): print("RecordID: \(recordID)...
valentine's user avatar
0 votes
0 answers
15 views

I’m trying to use relative routing in GoRouter, but I’m running into a confusing issue. Here is my code: final GoRouter routerConfig = GoRouter( initialLocation: '/', routes: [ GoRoute(path: '...
haizhih's user avatar
  • 109
0 votes
0 answers
24 views

I am trying to implement web push notifications in my project, but none of the approaches I tried are working. I’m not sure whether the issue is on the frontend, backend, service worker, or the push ...
MANOJ V's user avatar
0 votes
0 answers
17 views

I want to make a minimal interactive console utility using Effect. Started from an empty Effect app: npx create-effect-app@latest ... (interactive part) cd effect-app npm install Then I copy-pasted ...
enkryptor's user avatar
  • 1,693
0 votes
0 answers
10 views

Title - MongoTimeoutException in Testcontainers Integration Test : Open Liberty app attempts to connect to Kubernetes FQDNs instead of local alias I am writing integration tests for an Open Liberty-...
VR7's user avatar
  • 112
0 votes
0 answers
24 views

I'm building a kind of gallery app. Users are adding images by inserting URLs into the database and the HTML page is then hotlinking those. Obviously, because of link rotting, the gallery is full of ...
Shady Medic's user avatar
0 votes
0 answers
21 views

I have a dataset that has a 'Country' column with number of instances for each country; these can vary a lot, for example there are around 2000 rows for Japan and only 100 for Thailand. I am ...
AjWinston's user avatar
  • 131
0 votes
0 answers
13 views

Is there a way to determine if an object (dbid) is visible by the camera at any point in time?
3dbim's user avatar
  • 1
-1 votes
1 answer
23 views

Here in my WordPress plugin I am using the following Code to read an xml feed. $itsw_rss_feed = simplexml_load_file($itsw_feedurls[wp_rand(0,count($itsw_feedurls) - 1)]); then using a for loop I am ...
EMILY MARCIANO's user avatar
0 votes
0 answers
34 views

I'm running into a specific issue with my web.config when trying to serve XML files. As soon as I add this rule: <add name="XmlFile" path="*.xml" verb="GET,HEAD" ...
Mohammad Taha Moghaddasi's user avatar
0 votes
0 answers
10 views

I’m working with RealityKit and trying to detect on which side of a connector a sphere has collided. The setup: I have a connector (a cylinder). It has two child entities, each one with its own ...
swiftIos's user avatar
0 votes
0 answers
18 views

In the following sample, the compiler gives me the error: `str` does not live long enough borrowed value does not live long enough However, if I either return TestStruct directly without impl ...
Aaa's user avatar
  • 912
0 votes
0 answers
11 views

I'm currently running a QEMU/KVM Virtual Machine on my Linux(Debian) host and using Ubuntu as the guest operating system (VM). I'm trying to pass through a USB webcam to the VM using the USB Host ...
Sky Dog's user avatar
  • 465
0 votes
0 answers
43 views

How do you initialize matrix value in c but in pointer? void addTodo(char *todo) { int j = 0; for (j; j < strlen(todo); j++) { matrix[CurrentTodoIndex1][j] = todo[j];// I wanna ...
Star_'s user avatar
  • 1
0 votes
0 answers
11 views

I'm working on a project that has a Discord client running in a background thread to listen to incoming messages. I noticed each time the client is stopped & restarted, it logs in 1 extra time, as ...
cmasupra's user avatar
  • 340
-5 votes
0 answers
42 views

re.search( r"(\d{1,4}[^\d:]{1,2}\d{1,4}[^\d:]{1,2}\d{1,4} | \w{3,10}.{,6}\d{4})", 'abc2024-07-08' ) Why does this regex extract the second pattern, "abc2024", not "...
Fuad Ak's user avatar
  • 148
-1 votes
0 answers
19 views

Severity Code Description Project File Line Suppression State Error (active) CS1503 Argument 1: cannot convert from '_XamlGeneratedCode_.__Type0E459CAF0A856A27' to 'Microsoft.Maui....
Ehsan shobeiry's user avatar
0 votes
0 answers
24 views

I am using AccessibilityService in AndroidStudio for an app which is going to access an another app. In a view there is not available actions of "ACTION_CLICK". Its sealed and I am getting ...
ronihasan's user avatar
-4 votes
0 answers
37 views

I'm building a data quality tool in React/TypeScript that allows users to upload CSV files (10,000+ rows) and validate/clean the data before processing. I need to handle client-side validation without ...
Jeni Savaliya's user avatar
0 votes
0 answers
15 views

I am learning interactivity API and when I tried wp-each directive, I noticed that there is no way to get the index of the array. e.g. If this is my array $config = [ 'fruits' => [ [ '...
Reagan's user avatar
  • 2,632
-1 votes
1 answer
20 views

I have a project of leaf classification, I already have trained model so i want to integrate the model to through mobile application using react native does anyone know how to make it possible?
Trinity's user avatar
Best practices
0 votes
0 replies
18 views

i have one audit module which i need to implement in which i have to create one pdf of single webpage, pdf should consist 5 pages which devides my webpage (there is seperator lines in ui of that ...
Jeel404's user avatar
  • 32
Advice
0 votes
0 replies
42 views

I was trying to read data (chars) from a large text file (~250MB) in 1KB chunks and was very surprised that reading that file using either FileReader or BufferedReader takes exactly the same time, ...
sebkaminski16's user avatar
-3 votes
1 answer
37 views

Title: Flutter Calculator Layout Issue - Buttons Not Displaying Correctly Description: I'm building a calculator app in Flutter and facing layout problems with the button grid. The calculator ...
Oxsine's user avatar
  • 1
0 votes
0 answers
18 views

Context: I am trying to build a Spring Boot application and have exposed a REST api endpoint to upload files(as large as 1 GB). Question: Since the data transfer for a multipart file happens in chunks ...
Aakash_Deep's user avatar
Best practices
0 votes
0 replies
14 views

I’m trying to implement a global <Redirector /> component in Expo Router to control the navigation flow of my app. The logic depends on: Authentication state Whether the user completed ...
Schiswot's user avatar
0 votes
0 answers
15 views

I tried to produce a table 1 from a code which worked perfectly well a year ago, but doesn't work now. Here a simple example : library(tableone) library(survey) age<- c(55,66,77,33,44) gender<...
SofiaB's user avatar
  • 51
Advice
0 votes
0 replies
17 views

New SPA frameworks like React, Angular, Vue etc. Requires running node js server. But is there any way to run "output" (code generated after transpilation step) without running any server, ...
user3209013's user avatar
0 votes
0 answers
15 views

I'm trying to run setThemingColor before the properties are loaded and the object tree is available, since I don't need the recursive option to be true. However, the coloring doesn't seem to be ...
3dbim's user avatar
  • 1
0 votes
1 answer
47 views

C23 §5.2.5.3.3 [Characteristics of floating types <float.h>] paragraph 8 says: Floating types shall be able to represent signed zeros or an unsigned zero and all normalized floating-point ...
Jan Schultke's user avatar
  • 43.6k
0 votes
0 answers
16 views

I'm troubleshooting why async tasks within the durable entity hang forever. My entity looks like this public MyEntity : IMyEntity { [JsonIgnore] private MyService _myService; [JsonProperty] public ...
dotnetdev4's user avatar
-1 votes
0 answers
45 views

I do read_html("https://finngen.gitbook.io/documentation") which issues Error in open.connection(x, "rb") : cannot open the connection However, I can open https://finngen....
zhang jing's user avatar
-1 votes
1 answer
38 views

Branch x in my git repository contains the undesired build files. It happened because I do not separate build directory from the source code and I git add-ed the build files. The main branch is in a ...
nougako's user avatar
  • 240
0 votes
0 answers
28 views

I'm trying to draw a focus border on a grid cell. First, I tried outline with offset. Almost perfect, but left and top borders aren't covered. Then I tried with box shadows (also with inset). Here I ...
derstauner's user avatar
  • 1,958
0 votes
1 answer
43 views

i installed this wp plugin in my Blog. I want to use this Shortcode plugin multiple times in Category and tag pages but the Shortcode is working Same for all pages. How can I change width and height ...
EMILY MARCIANO's user avatar
0 votes
0 answers
22 views

I'm trying to perform a Gaussian Process Regression on the following series of data points (X and Y): X Y 0.00001 -6.8200000000000003 0.00014 -6.8073846153846160 0.00042 -6.6818333333333326 ...
Josep's user avatar
  • 1
0 votes
0 answers
17 views

I am trying to create a path animation of Svg in the desktop compose app. fun SvgDocument.drawCompletedFills(buildPaths: List<BuildPath>, drawScope: DrawScope, canvas: Canvas, targetLength: ...
Vivek Gupta's user avatar
0 votes
0 answers
35 views

I am creating a button that is clickable but doesn't bring the app to the foreground. To achieve this I implemented the button as a separate BrowserWindow with focusable: false and its parent set to ...
Sudhanshu Tiwari's user avatar
Advice
0 votes
0 replies
25 views

I'm building a voice-assisted navigation feature for my app that would allow users to: Navigate between screens/pages using voice commands Have an AI agent take actions on the current page (clicking ...
Jhutan Debnath's user avatar
0 votes
0 answers
22 views

I need an advice which programming language is suitable in this situation. I need a macro/script that will dig a 24-block-long, 24-block-wide, and 24-block-deep mine. The blocks break instantly, and I'...
funerary trap's user avatar

15 30 50 per page
1
2 3 4 5
483790