24,226,797 questions
0
votes
0
answers
2
views
How to use Crystal Reports with Spring Boot & PostgreSQL
I am using Crystal Reports 2025, 64-bit and have downloaded the PostgreSQL ODBC driver from the following link: https://odbc.postgresql.org/. I created a .rpt file, and although I can see the database ...
0
votes
0
answers
4
views
How to configure Kafka Connect Elasticsearch Sink Connector to write data from a Kafka topic to a custom Elasticsearch index with a different name?
I'm using the Kafka Connect Elasticsearch Sink Connector to read data from a Kafka topic and write it to an Elasticsearch index.
By default, the connector creates an Elasticsearch index with the same ...
0
votes
0
answers
4
views
How do I send an RCS message from my phone number programmatically?
I need to send RCS messages to arbitrary numbers, originating from a phone number that I own. Currently, I do this using WhatsApp with https://github.com/tulir/whatsmeow, and my goal is to switch to ...
0
votes
0
answers
7
views
Translate Old Local IP to New Local IP
Just a bit of background, I have 2 sites with these 2 subnets:
Old Site: 172.16.2.0/23
New Site: 172.17.10.0/24
Old Server IP: 172.16.3.1
New Server IP: 172.17.10.10
..
I am moving a server from an ...
0
votes
0
answers
4
views
utPLSQL in Oracle SQL Developer: ORA-01031: insufficient privileges
I'm using utPLSQL to perform unit testing in Oracle. Here are all the privileges I granted to the user in the utPLSQL schema:
GRANT EXECUTE ON DBMS_LOCK TO utester;
GRANT CREATE SESSION TO utester;
...
0
votes
0
answers
9
views
eu-strip fail between RHEL 8.10 (iso) vs UBI8-init (docker)
I have a Dockerfile running ubi8-init:latest, I've been compiling and working on this environment for a while and everything has been fine except when I need to build a rpm package out of it, it ...
-1
votes
0
answers
15
views
How to call sparse matrix functions and subroutines in Intel OneAPI package?
I write Fortran, using Intel OneAPI on ubuntu. I have installed and sourced the OneAPI, but i do not know how to call sparse matrix related functions and subroutine. Could anyone kind give me an ...
-1
votes
0
answers
9
views
How to leave a form visible on the Windows desktop, even though the main app is minimized
I am using Delphi 12.2 pro. My VCL application has invoice and payment reminders in it, and I'd like to be able to leave a list of these displayed on the desktop, even when the main application is ...
0
votes
0
answers
13
views
Filter grouped data with conditional statement in R
The data frame below is grouped by id:
id<- c(1,1,1,2,3,3,4,4,4,5,5,6)
x <- c(0,1,0,0,1,1,0,0,1,0,0,1)
df <- data.frame(id, x)
I am looking for a way to filter the data in R based a ...
0
votes
0
answers
13
views
WSL coding issue- file parsing .txt files and msking subsequent light curves
I have about 2,000 .txt files that have light curve data in them. Each .txt file is a different parameter combination. There are 12 parameters each with 2-3 options, which is why the number of files ...
-1
votes
0
answers
14
views
I have this problem of undefined variable from the remote server, but this error does not occur on the local server. Can anyone help to solve it?
This is the error message: ErrorException
Undefined variable $evento (View: /home/u593030433/domains/plaecc.com/public_html/resources/views/admin/prelectores/index.blade.php)
https://plaecc.com/admin/...
0
votes
2
answers
26
views
What file extension is the correct way to name parquet files?
What is the correct way to name parquet files. If you were using gzip compression when creating the parquet file which would you use?
file.parquet
file.parquet.gzip (used by pandas to_parquet
file....
0
votes
0
answers
7
views
Cypress showing false positive when element is covered by a transparent element
I recently had an issue where a button was covered by a transparent element (z-index and position absolute issue) making the button visible but not clickable.
Cypress passed these tests and was able ...
0
votes
0
answers
19
views
Why is this website (https://bearblog.dev/) able to display pages while offline?
enter image description here
this effect works in both Chrome and Edge browsers, but it doesn't work in Firefox or Safari
I've been researching this for several days and have ruled out all the ...
0
votes
0
answers
10
views
Model ouput of Android(Kotlin) tflite model not matching Python output for same input
I have already asked this question over on Google Ai for Devs, but have not received an answer, so I will try my luck here. I am currently working on testing inference speeds of different object ...