Newest Questions
24,178,562 questions
0
votes
0
answers
2
views
Add saving directly to SharePoint online from Adobe, need admin approval
One of our users is trying to define SharePoint online as the storage for adobe acrobat, but when the user tried to do so, they get this message that the user need admin approval:-
now using global ...
0
votes
0
answers
3
views
List2 error occuring while ploting a histogram
Sorry for the maybe dumb question but I am very new to R studio aaaaand I don't undertsand the following error message :
I am trying to plot a very simple histogram, here is my code. I have loaded a ...
0
votes
0
answers
6
views
Global AsyncClient Reuse Best Practices
I'm wondering what the best practice for a global httpx GlobalClient is in Python 3.14. generally it's best to have a single global event loop, but what if I need more parallelism or to not block with ...
0
votes
0
answers
5
views
How to Retrieve the width of a QML object with layout.fillWidth: true in nested Layouts?
Qt 6.10.1
The last version of qml module
RowLayout{
anchors.fill:parent
ColumLayout{
anchors.fill:parent
Rectangle{
Layout.fillWidth: true
Layout.fillHeight: true
Rectangle{
Width:parent.width/2; //...
0
votes
0
answers
8
views
Compose Material 3 FAB renders blurring and with invalid alignment
I'm using the latest material 3 (tried both 1.4.0 stable and 1.5.0-alpha12).
Here is my code:
@Composable
private fun BookShelfScreenContent(
modifier: Modifier = Modifier,
screenState: ...
0
votes
0
answers
8
views
Is it possible to build bgfx with cmake?
I’m trying to build bgfx using CMake, but I’m not sure whether this is officially supported or what the correct workflow is.
From what I understand, bgfx primarily uses GENie to generate project files,...
0
votes
0
answers
11
views
Backend for Frontend (BFF) - Spring Boot vs Node JS
We are migrating a Java Swing-based enterprise desktop application to a web application. The frontend will be built using ReactJS and the existing application backend (Java) will continue to run on a ...
0
votes
0
answers
7
views
Pydantic V1 functionality isn't compatible with Python 3.14
I have an error when importing replicate lib in my Python 3.14 project
D:\Api\proj.venv\Lib\site-packages\replicate\resource.py:5:
UserWarning: Core Pydantic V1 functionality isn't compatible with
...
0
votes
0
answers
10
views
Rust enum conversion infinite loop overflow
#[repr(i64)]
pub enum EnumFormat {
A = 0,
B = 1,
}
impl From<i64> for EnumFormat {
fn from(value: i64) -> Self {
match value {
0 => EnumFormat::A,
...
Advice
0
votes
0
replies
3
views
Windows Kernel Driver Persistent Flag Creation
Greetings all you Win32 kernel devs,
I would like to receive some recommendations as to how my driver can simply keep a "flag" that I can set/retrieve persistent after my driver is unloaded. ...
1
vote
0
answers
38
views
How to get a string data from a PHP file which uses json_encode() while using fetch() in TypeScript?
I'm trying to get a simple string data from my PHP file outputting a simple version number I scrape from my github repo to populate a minor place in my website but so far, I'm unable to get the ...
0
votes
0
answers
14
views
Database.EnsureCreated(); fails
I have an app developed in .NET Maui 10. It was previously in .NET 9 and worked correctly.
public App( )
{
InitializeComponent();
MauiExceptions.UnhandledException += (sender, args) =>
...
Best practices
0
votes
1
replies
15
views
Career Advice: Which programming language should an Android developer learn for the AI-driven era?
I am an Android developer with 1.2 years of experience, primarily working with Java.
With the current tech economy shifting heavily toward AI-integrated applications, I feel that traditional mobile ...
0
votes
0
answers
11
views
GCP Cloud NAT dropping ingress packets after some period (MongoDB / Redis timeouts): why?
I’m troubleshooting an issue with GCP Cloud NAT that caused transient but severe production outages (MongoDB and Redis timeouts). I’d like to understand whether this is expected NAT behavior or ...
0
votes
0
answers
13
views
Securing Box webhook inbound + Box API outbound for Azure Function (VNet integration, Route All) without Azure Firewall
Hi all sorry if this is more detail than needed. This is a personal project and I’m trying to be precise so I don’t miss anything important.
I have an Azure PaaS-heavy architecture for document ...