Newest Questions
24,188,320 questions
-1 votes
1 answer
21 views
Specifying local relative dependency in requirements.txt
I'd like to import a local package with a relative path in Python 3.12. When I do so I get this error: ValueError: non-local file URIs are not supported on this platform: ... The local package is ...
0 votes
0 answers
17 views
WPF Modal Window renders completely white (blank) in Hybrid WinForms application under load
I am maintaining a legacy hybrid application (Main App is WinForms, hosting WPF UserControls via ElementHost). The Problem: When opening a WPF Modal Window (Window.ShowDialog()) from the WinForms main ...
0 votes
1 answer
17 views
spring-cloud-gateway-webflux multiple Path predicates return 404
I’m having trouble with Spring Cloud Gateway (WebFlux) when I define multiple Path predicates for a single route. Here is an example of my configuration in application.yml: spring: cloud: ...
0 votes
0 answers
7 views
How to make Drawer Screens in Navigator appear dynamically in react native?
I am trying to make a Drawer Screen Tab appear dynamically according to a redux state value but this practice is not good as when I change the value of redux state, the whole component remounts ...
0 votes
1 answer
22 views
Facaing problem while using youtube downloader using nodejs
I’m working on a YouTube video downloader similar to Y2Mate or SaveFrom, using Node.js with ytdl and FFmpeg. The problem is that when I download any video, I only get formats up to 360p. I want to ...
0 votes
1 answer
23 views
quotient check and pass on to main program
I'm writing a simple maths sketch. At this point I want to check if 2 random numbers, when divided, leave a quotient. If not then pass them onto the next part of the program. If the quotient is not 0 ...
0 votes
1 answer
27 views
What Caused An Unexpected Build Error in C# with Microsoft Code
This is a C# program, and I am using Microsoft Visual Studio Code. I have been able to build and run the program without any issue for a long time. Now, unexpectedly I get this error: I:\source\...
-2 votes
1 answer
28 views
I want to develop Excel/VBA Application which will help me automate my day to day activities on my Youtube Studio e.g Querying my uploads [closed]
I want to develop Excel/VBA Application which will help me automate my day to day activities on my Youtube Studio e.g Querying my already uploaded 900 videos for the titles and, descriptions, keywords ...
2 votes
1 answer
51 views
How to avoid duplicated Compose Multiplatform resources (strings & drawables) across core and feature modules?
I'm working on a Compose Multiplatform project (CMP) with multiple feature modules. Each feature module contains a composeResources folder with drawable and values (strings,...) inside. The issue is ...
0 votes
0 answers
12 views
Error: The datasource property is required in your Prisma config file when using prisma migrate dev
when upgrading to prisma 7 and running prisma migrate dev, the error below appears. Error: The datasource property is required in your Prisma config file when using prisma migrate dev
0 votes
0 answers
20 views
Single Value Extended Property to extract URL form mail body
I Tried of using this PidNameExtractedUrls Single Value extended property to extract the urlset from my mail body but it didn't worked This is the endpoint i used -> https://graph.microsoft.com/v1....
0 votes
0 answers
12 views
Prisma Client not initializing with v7 and MongoDB, despite running prisma generate
I am attempting to set up a Node.js Express application using Prisma ORM v7.0.1 and a MongoDB database. I keep running into an Error: @prisma/client did not initialize yet. Please run "prisma ...
0 votes
0 answers
21 views
Honeycomb pattern GLSL
I want to make a honeycomb, now with this code but I have a problem that when the thickness of the honeycomb line is reduced, they are almost invisible. line=1 At the same time, everything is fine at ...
2 votes
1 answer
77 views
Is it possible to load a function symbol from an executable
I have 2 files: foo.c: #include <stdio.h> int Main(int a) { printf("A%dB",a); } int main() { return Main(1); } bar.c: extern int Main(int); int main() { return Main(2); } ...
-1 votes
0 answers
21 views
Dynamic Conditional Correlation (GARCH & Regime Switching) [closed]
I have been thinking about a new research project that I need to perform, Dynamic Conditional Correlation (with GARCH & Regime Switching) using financial data. I need to know between MATLAB, ...