3,441 questions
-5
votes
1
answer
109
views
What C functions or C++ class help displaying text screen like top or btop commands do? [closed]
What C or C++ functions (I guess), requiring what library if one is needed, help to create displays in text mode,
the way commands such as top, btop are doing?
The ability to edit screen at ...
Best practices
0
votes
0
replies
34
views
How to aggregate and analyze performance data across multiple ad accounts using APIs?
I’m building a system to analyze performance data across ~120 ad accounts and want to detect inefficiencies like high CPA or performance drops.
I’m trying to:
Fetch data from multiple accounts (Meta ...
0
votes
0
answers
42
views
Matlab Acoustics Toolbox initialisation
I am using the Acoustics Toolbox from OALib in Matlab, from the link below:
https://oalib-acoustics.org/models-and-software/acoustics-toolbox/
I go to the HTTP site and the source code and binaries ...
0
votes
0
answers
93
views
How to read and access Excel sheets using xlsx engine
libname xldata xlsx 'C:/Users/user/Documents/WB.xlsx';
proc print data=xldata.abc;
run;
I want to read and access Excel sheet, but I get this error:
1 OPTIONS NONOTES NOSTIMER NOSOURCE ...
0
votes
1
answer
86
views
Rust Chumsky parser: () is not an iterator when folding repeated (BinOp, Expr)
I've been working on the 'multiplication / division and general expressions' portion of my parser in Rust complains that () is not an iterator when I try to fold over the repeated operator-expr pairs.
...
0
votes
1
answer
98
views
Update Python Library in Databricks Cluster
I inherited a custom Python library and a Databricks instance that I haven't had to do much with, but this last week I had to make changes to a function in the codebase.
I thought Databricks was ...
Tooling
1
vote
3
replies
106
views
Convert complex pdf to an excel
I'm currently searching for a solution to read a pdf and convert it to an excel.
For now I found the "tabula-py" library, which seems to be good. But I'm not quite sure because the pdf has ...
-1
votes
1
answer
334
views
ImportError: cannot import name 'Client' from 'pinecone' (unknown location)
The problem with this piece of code is that I am unable to import Client from the pinecone library. I tried to uninstalling and reinstalling different versions none of them worked. I also tried it ...
-5
votes
3
answers
295
views
Can linking be nested (e.g. by using intermediate object files)? [duplicate]
Commonly the linker is only invoked once. A linear list of input files can be specified for symbol resolution; there are flags for looping through the linker inputs. But for more sophisticated ...
1
vote
1
answer
165
views
In kernel development, why do developers avoid pasting in high level libraries directly to the kernel?
Context: I am a somewhat seasoned C++ and Python developer, and a beginner in Rust with no experience in assembly or machine code following the blogOS guide trying to create a minimal kernel that ...
0
votes
1
answer
178
views
How to install libraries in Code::Blocks on Linux
I recently started using code::blocks on Linux (Linux Mint). I've been trying to install GTK and its dependencies for C++.
I started by downloading each of the dependencies as a .tar.xz file, and then ...
-1
votes
1
answer
70
views
Issue Installing pywin32 on Work Laptop (Corporate Environment)
I've been trying to install pywin32 and pypiwin32 in my work laptop since i was looking to automate downloading few files from outlook and storing them manually but im getting this error below. It's ...
3
votes
1
answer
96
views
How do I create a library in linux from c++ code with external references
Am having a problem with external references of libraries.
I need to access the ogg libraries from xiph.org.
I have simplified it down to the following.
This works: in main.cpp
#include "...
0
votes
0
answers
94
views
Does running source for Stepper Motors on an ARM64 SBC conclude in slower speeds of the Motor compared to using coprocessors?
The SBC in this case is the beaglebone black and/or beagley-ai. The later is the SBC with arm64 support. Now, does using the 64-bit processor support faster movements in threads compared to using a ...
-1
votes
1
answer
75
views
Resizing custom cursor in Java swing
I am doing a painting app. I want to have an eraser as a cursor when I am erasing. I can set the picture for it, but the picture is formatted to 32x32 px. But I want it smaller. Does anyone know about ...