Newest Questions
24,151,702 questions
0
votes
0
answers
7
views
What makes SKPhysicsContactDelegate conformance main actor?
I am cleaning up my code, and encountered this:
// TODO: SKPhysicsContactDelegate will probably be updated as main actor
extension Playground: SKPhysicsContactDelegate {
nonisolated func didBegin(...
0
votes
0
answers
16
views
Google api authorisation to list user accounts
I am trying to list the user accounts associated with a domain.
I have set up a service account and set the service account details in the environment variable
GOOGLE_APPLICATION_CREDENTIALS
As far ...
0
votes
0
answers
7
views
RDS Instance Type select options are greyed out
I am trying to create a database in the RDS console.
Under the Engine options, I selected MySQL.
I am using the Full Configuration.
Using the Free tier.
Using Single-AZ DB Instance deployment.
Engine ...
0
votes
0
answers
12
views
Unexpected "Lock wait timeout exceeded" in OceanBase (MySQL mode) under high concurrency on partitioned tables
We recently migrated a high-throughput transaction table from standard MySQL to an OceanBase cluster (v4.x, running in MySQL-compatible mode). The table is quite large and is partitioned by `RANGE` ...
0
votes
0
answers
8
views
How do I properly render pdf text in Qt App, using React pdf?
I have built a web app using React and FastAPI, and rendered that app in a dedicated Qt desktop application created using QtQuick, in a WebEngineView. WebEngineView uses Chromium to render websites. I ...
-1
votes
0
answers
19
views
Question- holding pattern for more code inputs
need help debugging the login page i found publicly - does this code actually iterate through and update itself? I was told it could mass replace
• Is the request within delegated authority ...
0
votes
0
answers
11
views
VBA PowerPoint Search and Replace Returning Error on WordArt
The following function is part of a macro written in PowerPoint VBA that searches all of the files in a folder doing a global search and replace. The function works on a series of test files which ...
2
votes
2
answers
46
views
Pandas rolling window lack of understanding
I searched how to use the rolling function from Pandas, but struggle using it.
Let's take a simple example : let be the list [0, 1, 2, ... , 15], make it a Pandas serie.
df = pd.Series(range(16))
I ...
0
votes
0
answers
32
views
How do I use useRef as input in a function with typescript
I am trying to make an automatic scroll preference in production environments. For the scrolling utility for my React website I have chosen TypeScript due to what I have heard about its ability to ...
0
votes
0
answers
18
views
How can I get reference to child controls of XRC-loaded object hierarchy in wxErlang?
I'm new to Erlang, wxWidgets,and wxErlang. I've got an example running which will load a wxFrame from an xrc file and show the frame with all of its child panels/controls/etc.. How to I get references ...
0
votes
0
answers
31
views
How to differentiate user accounts from linked accounts in Banno Consumer API /accounts endpoint?
I am working on an integration using the Banno Consumer API and checking the response from the following endpoint: GET /consumer/api/v0/users/{userId}/accounts
We need a reliable way to differentiate ...
Tooling
0
votes
2
replies
33
views
Call graph generation
I'm maintaining an unfamiliar codebase and I'd like a chart of what method calls what. Something that penetrates interface abstractions.
If the output was a mermaid diagram that would be lovely but ...
0
votes
0
answers
35
views
Excel for MacOS - How to trigger a VBA subroutine when a specific table (DB Query) executes?
I have a large financial spreadsheet with lots of queries that use a Postgres database.
I have some of the queries set to execute every 'n' minutes, actual time varies by query.
Some of the dependent ...
Best practices
0
votes
3
replies
140
views
Passing value to a C function
is line 16 an acceptable way of passing value in C89 ?
BTW, this is compiling with gcc.
#include <stdio.h>
typedef struct
{
int a, b, c;
} Alpha;
void ShowAlpha(Alpha a)
{
printf("%d, %...
Advice
0
votes
2
replies
42
views
Spatial decomposition on non-uniform grid
I am not sure Stack Overflow is the right place for this question but I'm shooting my shot.
I have a 2D field sampled on a global longitude-latitude structured curvilinear grid and I would like to ...