Unanswered Questions

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

in the previous post i had made i didnt add many details and wanst able to get effective help so here i go again. i am currently creating a 2d game inspired by both papers please and not my neighbour ...
-2 votes
0 answers
13 views

I'm trying to understand how UEGk binarization works in H.264 CABAC. Unfortunately, I was unable to understand UEGk binarization via the official ITU-T H.264 specification. Could someone explain how ...
Advice
0 votes
0 replies
9 views

I’m building a tool that generates new mathematics exam problems using an internal database of past problems. My current setup uses a RAG pipeline, Pinecone as the vector database, and GPT-5 as the ...
0 votes
0 answers
11 views

Screenshot attached,I'm encountering a strange visual glitch on my website. When I scroll up, a horizontal line briefly appears near the top of the page and then disappears. I initially suspected it ...
Advice
0 votes
0 replies
8 views

I need to extract player statistic in a image : enter image description here I have try pytesseract with preprocessing image : convert to grey scale, resize img with a factor 2 and filter on edge : ...
0 votes
0 answers
31 views

I am trying to connect to a legacy HFSQL (HyperFileSQL) Client/Server database using Python (pyodbc) on a Linux Ubuntu machine. I have followed the official documentation to install the specific ODBC ...
1 vote
0 answers
46 views

I was writing code for the simulation of the fluid dynamics of a layer of water. It has a function of solid_liquid_layer_angular_velocity_change: def solid_liquid_layer_angular_velocity_change( ...
0 votes
0 answers
48 views

I am trying to run r5r for a transit network based analysis. I am using R 4.4.3 in Positron on Fedora 41. Some context for me is that I have a couple years of R underneath my belt, but I am absolutely ...
Advice
0 votes
0 replies
9 views

I'm making a VSCode extension that requires a compiled program (let's call it program A) to be shipped with the extension, but the build file is getting too large. That is: on each OS platform, I have ...
0 votes
0 answers
11 views

I am trying to get my current rate limit for an OpenAI model hosted on Azure. The response headers contain keys x-ratelimit-limit-tokens and x-ratelimit-remaining-tokens which are supposed to contain ...
0 votes
0 answers
9 views

I have the following graph for a lexer: digraph parser { rankdir="TB"; ranksep=0.8; nodesep=0.2; splines=false; edge [ arrowhead=none ]; program [shape=note label="(println (...
-1 votes
0 answers
9 views

is there anyone that has a source or knows where to look for UML/SysML diagram trees like the one attached, that show all of it's element? I found following in a paper for the activity diagram but ...
0 votes
0 answers
28 views

From within my rust program, I'm trying to execute pdflatex myfile.tex using std::process::Command: let output = Command::new("pdflatex") .arg(["-jobname=", ...
1 vote
0 answers
23 views

I'm working on a Java project where I need to write a large number of lines to a file. I know BufferedWriter can improve performance compared to writing character by character, but I am unsure about ...
0 votes
0 answers
30 views

I am trying to use the Kiwoom OpenAPI (for making automated stock trading program), which requires a 32-bit Python environment. However, to successfully use Kiwoom Open API I need to set up pandas in ...
-1 votes
0 answers
27 views

I am a university student working on a Data Structures lab about simulating maze navigation using a stack with limited memory. The stack must have a fixed capacity of 25 moves, and the movement rules ...
-1 votes
0 answers
27 views

I'm encountering this error while building the iOS app with Flutter: Command PhaseScriptExecution failed with a nonzero exit code I've tried all the available solutions. If anyone knows how to resolve ...
-4 votes
0 answers
26 views

{"level":"error","ts":1764409482.772595,"caller":"vddk-service/service.go:125","msg":"Failed to open disk","error":"...
0 votes
0 answers
16 views

I want to recreate the first page of the app for the launch screen, and unfortunately, it can be done only using Storyboard, but strangely, the Storyboard seems to have a different safe area with ...
0 votes
0 answers
8 views

Hello i am new on nicegui, i create a simple app where i need to upload the files and store this files on ftp server. I start to make some tests with nicegui.testing.User (i use this package because i ...
-1 votes
0 answers
25 views

I’m working on a screen that uses a single SwiftUI List composed of: a top block (statistics, month picker, year selector, total, Entrata/Uscita picker). a list of transactions grouped by day, each ...
-1 votes
0 answers
14 views

I have an AKS cluster that is deployed using Terraform. After the AKS deployment finishes, I run a post-deployment step in an Azure DevOps Release Pipeline to install NGINX Ingress using the Terraform ...
0 votes
0 answers
17 views

I am currently using CLGeocoder in weather app on iOS to handle user's location queries. I then use the region property of the resulting CLPlacemark objects to obtain the region corresponding to the ...
0 votes
0 answers
13 views

I am trying to follow this: https://learn.microsoft.com/en-us/azure/ai-foundry/agents/how-to/tools/code-interpreter?view=foundry-classic&pivots=csharp I have (in my local Visual Studio Environment)...
0 votes
0 answers
32 views

I've been working on a C++ project. I have been using 2 Windows PCs for building it and both worked fine with the same (kinda janky) setup. I recently got a new computer and I get a linker error. My ...
0 votes
0 answers
18 views

I am new to Vulkan and I am on Windows 11. I downloaded and installed the Vulkan SDK on my Windows machines. When I try to compile, I keep seeing: vulkan/vulkan.h: No such file or directory I have ...
0 votes
0 answers
20 views

I’m running into a strange issue with react-three-fiber that only shows up in development, but not after deploying to Vercel. Here’s my setup: <Canvas gl={{ antialias: true }} camera={{ position: [...
1 vote
0 answers
20 views

I'm using Firebase studio to generate a small app, with Google Auth enabled. The app shows up fine, but when trying to use the Google Auth, like this: async function logInWithGoogle(auth: Auth) { ...
-4 votes
0 answers
15 views

Is there a way to list and edit data in AWS OpenSearch using CLI or editor after I insert some data into Index?
0 votes
0 answers
21 views

Currently developing Android app on Android Studio in Kotlin. I'm new to the recent Android development. Some articles say when I use MutableStateFlow and collections like MutableList, I should assign ...
-1 votes
0 answers
27 views

I have a Tabular model in SSAS 2019 on prem. The data source is SQL Server running on the same machine. I need to reroute the data source to Snowflake. I created a legacy data source using an ODBC (64-...
-3 votes
0 answers
88 views

I know the following is undefined behaviour, but I'm wondering why my version of Clang won't compile it at all: class Registry2 {public: template <typename component_t> component_t& ...
0 votes
0 answers
22 views

In the example below, if I try to turn val x into val (x,y) IDE complains vigorously. If I try to make the return an explicit pair for the val (p,q) assignment it get the same errors. I do not ...
0 votes
0 answers
15 views

I have a custom task written in C#. This custom task has an argument defined like this: public required string[] StringArray { get; set; } Then in a .csproj file I have these definitions: <...
1 vote
0 answers
28 views

I have a test which has a setup function that would call Storage::fake() function like so : public function setUp() { parent::setUp(); Storage::fake('public'); } All the tests post an image that ...
0 votes
0 answers
11 views

I have a project where I need to dynamically create .resx files based on other input files that are coming from somewhere else. These created .resx files then need to be compiled and embedded in the ...
0 votes
0 answers
21 views

I have the following query: $countries = Country::with('place.details')->get(); My website is timing out running this query, even when I set the timeout to 10+ minutes. I discovered that if I ...
0 votes
0 answers
21 views

I switched from using JupyterLab in my browser to Jupyter Notebooks in Pycharm itself since it has improved since my last version. However, I find it quite disturbing that there is a lot of whitespace ...
0 votes
0 answers
20 views

I have been trying to implement a simple drag and drop application in Gtk 4 Rust but I am unable to implement a working version. I can see connect_accept getting triggered, but no matter the result, ...
-2 votes
0 answers
21 views

I need to uniquely identify individual devices at runtime from the HPS (ARM Cortex-A9) side. Does the HPS side of the Cyclone V SoC have any built-in unique ID registers, such as: - A hardware serial ...
Advice
0 votes
0 replies
28 views

Graphic designer designed this component that should display forms and messages like an auth form... I'm a bit confused on how should I code the top right border... I was thinking a simple border-...
-1 votes
0 answers
14 views

I have a node.js project doing speech-to-text transcription with the xenova/transformers models. My project shows a lot of warnings - how do I suppress the warnings to log only errors? I've tried ...
-3 votes
0 answers
23 views

I want to enable Alexa voice control for my smart home device. I was able to discover device. Now all devices are showing in Alexa app but all devices showing "Device is unresponsive". This ...
1 vote
0 answers
62 views

I am trying to use some Java audio code that worked back in 2019. I am now using the Eclipse IDE with JavaSE-21 running on Windows 11. The following code is not working: AudioFormat af = ...
0 votes
0 answers
21 views

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
0 answers
43 views

We installed websockets for Python on macOS using this terminal command: (.venv) a@as-MacBook-Pro dic % python3 -m pip install websockets server.py: #!/usr/bin/env python3 """Secure ...
0 votes
0 answers
7 views

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 ...
2 votes
0 answers
4k views

I have an android app written in cordova/ionic which has a requirement to show all music files in the device in a list. I am using cordova-file-plugin to recursively load the music files. I am using ...
0 votes
0 answers
18 views

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
22 views

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....

15 30 50 per page
1
2 3 4 5
60444