Newest Questions
24,180,031 questions
Best practices
0
votes
0
replies
2
views
For a Combine Publisher operator, how can be designed safe for concurrency?
An operator takes another Publisher as its upstream source, and a Subscriber as its downstream destination. Let’s say I already have a conversion function from Upstream.Output to Downstream.Input.
Is ...
0
votes
0
answers
3
views
Parameter count difference between UNETR paper and MONAI implementation
I am comparing many deep learning models to each other, includiing UNETR, on the BTCV dataset and noticed a discrepancy in the reported number of parameters.
In thier paper titled "UNETR: ...
-2
votes
0
answers
10
views
Roadmap and learning priorities to become a Java backend developer [closed]
I am aiming to become a Java backend developer. I have a basic understanding of Java and object-oriented programming concepts, but I am unsure about the optimal learning path and priorities required ...
0
votes
0
answers
8
views
Webscraping Tennis Data
I would like to webscrape all the data from: "https://www.tennisexplorer.com/results/?year=2025&month=12&day=01"
But my current code doesnt seem able to get the columns right. (what ...
0
votes
0
answers
16
views
I have trouble in writing duplicated childdialog in mfc
the black is tabControl and the red one is childDialog. like this. Is this possible? I have problem for inner red square.
innerDialog1.create(name,tabcontrol2)
...
innerDialog2-1.create(name,...
0
votes
0
answers
7
views
Can I deploy a Pipecat bot using TwilioInputTransport (WebSockets) to Pipecat Cloud, or is DailyTransport mandatory?
I am building a conversational AI voice bot using the Pipecat framework in Python.
Currently, my implementation uses TwilioInputTransport. I am running a FastAPI server that accepts a direct WebSocket ...
-2
votes
0
answers
16
views
Scraping data from WebSocket
I am new to web scraping. I want to scrape numbers from a website that continuously fills data through a WebSocket API wss://..... (For reference, this is the website.)
How can retrieve the full json ...
0
votes
0
answers
27
views
I'm having trouble creating a hamburger menu for my website on mobile
I’m struggling to create a hamburger menu for my website when it’s on mobile. I’ve watched a few video courses on YouTube and used Cloud Code, but I’m having trouble integrating it into my code since ...
0
votes
0
answers
16
views
error C2752: more than one partial specialization matches the template argument list with concepts
Is it a bug in MSVC when it fails with the following error?
<source>(35): error C2752: 'Power_t<3,0,false>': more than one partial specialization matches the template argument list
<...
0
votes
1
answer
22
views
Single quote thousand separator
I need to show numbers with a single quote thousand separator in a SQL query, for example:
1'000.00
I tried with something like
FORMAT(ISNULL(value, 0), N'N2')
or
FORMAT(ISNULL(value, 0), '###,###,##...
Best practices
0
votes
0
replies
3
views
Hazelcast for hibernate L2 + application cache + topic publish/subscribe messaging
I have 2 instances for my backend (2 differents servers)
I am using hazelcast 5.5 with spring boot in my application for differents cases :
- Hibernate L2 cache
- Cache applicative for my api (@...
Best practices
0
votes
0
replies
9
views
Is my setup robust for Quant calculation engine, and should I use SQLAlchemy 2.0, or an alternative?
I am building a FastAPI application that will act as a core engine for my system and will handle frequent CRUD operations (high read/write frequency, concurrent requests).
I would like advice on ...
0
votes
0
answers
14
views
AnchoredDraggableState move to true even when finger not released from swiper control
I am trying to implement swipe control in my app build on Jet pack compose. i have used following code so far. i am using compose bom
androidx.compose:compose-bom:2024.09.00
Currently when swiping ...
-1
votes
0
answers
29
views
How to securely automate TOTP MFA in CI/CD without exposing credentials?
I have successfully automated the login flow for my application using Playwright. The app requires MFA (TOTP). I am currently using the otpauth library to generate the 6-digit tokens, and it works ...
-2
votes
0
answers
18
views
How do I increase pyOCD flashing speed to rp2040 with custom probe?
I am working on a project where I need to flash firmware to an rp2040 using a custom CMSIS-DAP probe. and pyOCD. I need to use pyOCD, since it allows for more freedom than other flashing firmwares and ...