Newest Questions
24,168,138 questions
Advice
0
votes
0
replies
2
views
How is it possible to run CLI commands for PowerBI Desktop on refresh data/schema and export to pdf
I am using PowerBI desktop to publish some reports.
As from my understanding it is not possible from CLI to perform a refresh of the data/schema, as well to export to pdf.
How would you be able to ...
Tooling
0
votes
0
replies
22
views
Do teams still find UI automation with Selenium or Playwright difficult to maintain as projects scale?
Curious how teams handle UI automation as their applications grow.
Many teams start with Selenium or Playwright, but over time the test suite grows and maintenance becomes challenging when the UI ...
0
votes
0
answers
19
views
SSL handshake error for Node.js on GitLab CI pipeline
I am trying to set up a CI pipeline in GitLab, for a Spring Boot project with Maven, which also installs npm.
I have tried using docker exec locally to check if doing mvn install would work, and it is ...
1
vote
0
answers
16
views
Samsung eSIM rename
I work on Application that has carrier privileges to install eSIM. I want to rename eSIM for which carrier privileges is granted. Using public Android API
private fun updateNickname(subscriptionId: ...
Best practices
1
vote
2
replies
18
views
Technical variables updated but user data untouched : const or not?
In C language, let's imagine a ".c" file where I have the following internal structure (that is, not declared in the associated ".h" file):
#define CHUNK_SIZE 1024
struct _Chunk {
...
Advice
0
votes
2
replies
18
views
dict of count JSON
I have tried to make a a function get_statistics to make a dictionary of the JSON persistence. I started doing it manually, but it wants me to do it automatically. Currently stuck making my code of ...
0
votes
0
answers
45
views
File handler as a custom pointer in std::unique_ptr
I'm trying to write an example demonstrating the usage of a custom pointer in a deleter in std::unique_ptr. Is the implementation of the FileHandler class as a NullablePointer correct, and what should ...
-2
votes
0
answers
22
views
pam_radius_auth 3.0.0 reuses OTP as password in PAM (works correctly with 1.4.0)
I am configuring SSH authentication with PAM and RADIUS OTP (RSA SecurID). The setup worked correctly with pam_radius_auth 1.4.0, but after upgrading to pam_radius_auth 3.0.0, the OTP entered for ...
Advice
0
votes
1
replies
47
views
Career Change Help - Help a brotha
I’m 28, a Physics graduate, and for the last 2.5 years I’ve been working as a consultant in the supply chain space. Most of my day-to-day work is dealing with data and building visualisations in Power ...
-4
votes
0
answers
29
views
python change instruction pointer address [closed]
How to change Instruction Pointer in Python in Visual Studio Code?
Is it not possible to grab arrow on left side and drag to other place like in C# Visual Studio?
I see it is possible to change code ...
0
votes
0
answers
26
views
Using IOpenApiSchemaTransformer to generate XML example only in specific cases
Somewhat related to this question, ASP.NET Core OpenAPI/SwaggerUI XML root collections "XML example cannot be generated; root element name is undefined"
I'm trying to look at using ...
0
votes
0
answers
23
views
FirebaseError: Firebase: Error (auth/argument-error) persists in development mode, even after Identity Platform upgrade
I've been battling a persistent FirebaseError: Firebase: Error (auth/argument-error) for days while trying to implement Firebase Phone Authentication in my Next.js/React application. This occurs ...
Best practices
0
votes
1
replies
45
views
MVC project structure
I am implementing a financial MVC web app, in this moment I have 3 different projects:heirloom.api (controllers)heirloom.core (db interaction, libraries used by .api to interact with db)heirloom.web (...
0
votes
0
answers
65
views
VS Code thinks there's an error when there isn't
Code:
typedef struct {
const char fooString[16];
const int foo1;
const int foo2;
const int foo3;
const int foo4;
const int foo5;
const int foo6;
const int foo7;
} Foo;
...
0
votes
1
answer
35
views
Explanation of assembly code generated by ARM GCC
Context is bare-metal development on STM32H7 (Cortex M7) using arm-none-eabi_gcc v 10.2.1
I'm looking to the assembly code of a basic function
void my_function(void)
{
my_sub_function();
}
...