Newest Questions
24,146,313 questions
Score of 0
0 answers
8 views
Audio blobs and objectURL: is there a create/load delay in Firefox?
I cannot provide a MWE because this involves loading audio blobs. These appear to be the relevant parts of the code, which has run in Firefox without issue for the past two years--unless I just never ...
Score of 0
0 answers
8 views
OSV method's return statement given
In OpenERP, an OSV object can return something which can open a new view or activate an action. For instance, sale.order has manual_invoice method which returns the following:
return {
'name': _('...
Score of 0
1 answer
29 views
Changing entity type from List<T> to Set<T> in manytomany causes spring app to throw concurrentModificationException
I am attempting to correct a mistake in how a ManyToMany relationship is set up and change the Lists over to Sets as I've read. But when I change each side of the relationship to a set, it breaks the ...
Score of 0
0 answers
19 views
How to form forward looking sonar images from scene in Matlab?
I am currently working on sonar simulations and have modified the following code:
https://uk.mathworks.com/help/phased/ug/underwater-target-detection-with-an-active-sonar-system.html
Modifications ...
Score of 1
1 answer
57 views
Android CameraX not focusing on tap
I'm trying to implement tap to focus using CameraX but I can't debug why it is not working, despite the focus result return true.
This is a snippet from inside of my Camera compose.
previewView....
Score of 0
1 answer
111 views
How do I allow my program to edit its configuration files in /usr/local/etc?
My Program's Structure
I am writing a python program that reads some sensors using a raspberry pi and the pigpio library and publishes that data to a MODBUS TCP server. I have packaged this python ...
Score of -2
0 answers
49 views
std::counting_semaphore deadlock bug in Ubuntu 26.04 with gcc or clang, but works in Windows 11 [closed]
Test program:
LaurieWired - santa.cpp
From her repository:
LaurieWired - SantaClausProblem
I tested the program with both gcc and clang in Ubuntu 26.04 from a virtual machine, Hyper V from Windows 11 ...
Score of 0
0 answers
54 views
Call to my API succeeds from Postman but fails from IIS app
I have an ASP.NET Core 8 application hosted in IIS using the in-process hosting model. I'm calling a third-party REST API using a HttpClient.
The API call works successfully when I run the application ...
Score of 0
2 answers
73 views
Double Free Vulnerability
The following text is from the Rust guidebook:
Earlier, we said that when a variable goes out of scope, Rust automatically calls the drop function and cleans up the heap memory for that variable. But ...
Score of 2
2 answers
82 views
Can't read a collection of structures divided by a space
I took Boost.Spirit sample Employee - Parsing into structs and modified it little bit to understand how to read a set of structures.
Live on Coliru
struct employee
{
int age;
std::string ...
Score of 0
1 answer
51 views
How do browser-based website builders like Framer or Webflow communicate with a cross-origin iframe in real time?
I was looking inside the framer.com editor on my browser. The editor UI and the rendered website are separated. I noticed that Framer renders its canvas inside a cross-origin iframe (*.framercanvas....
Score of 0
0 answers
22 views
SymbolLayer.textRotate orientation on Globe projection appears inconsistent with computed bearing
I'm rendering a SymbolLayer on the Mapbox Globe projection and trying to orient a text label so that it is parallel to a route displayed on the globe.
What I'm trying to achieve
I compute the ...
Score of -5
0 answers
36 views
DBT Job run Issue when i trying to intigrate snowflake to run the job [closed]
------------------------------------------------------------
Invoke dbt Command
------------------------------------------------------------
dbt deps
This log output is truncated. You can download the ...
Score of 0
0 answers
42 views
contains function for infinite, pattern populated array
I'm making a sort of infinite array (in Kotlin), whose contents are calculated based on a given pattern. (I'm calling it an array because you interface with it like one.)
It's structured like:
// `...
Score of -1
1 answer
84 views
FastAPI event loop blocked by Scikit-Learn Joblib thread-pool exhaustion during concurrent async inference
I am deploying a Random Forest model using FastAPI. Because Scikit-Learn models are synchronous and CPU-bound, I am offloading the inference to asyncio.get_running_loop().run_in_executor() to prevent ...