24,226,548 questions
0
votes
0
answers
5
views
Is Apache Spark 3.5.5 compatible with Hive 4.0.1? If not, which Hive version is fully compatible?
I'm currently using Apache Spark 3.5.5 (Scala 2.12, built for Hadoop 3) and trying to integrate it with Apache Hive 4.0.1 on a YARN-based Hadoop cluster but got few issues on this.
However, I'm facing ...
0
votes
0
answers
7
views
Unable to build conan package dependencies [GTest] with tool_requires(cmake)
I have such simple package in conanfile.py in root of my project that looks like this:
[....................imports....................i]
class APL(ConanFile):
[......................]
...
-1
votes
0
answers
9
views
Encountering a 500 error in Salesforce Omniscript when clicking the Preview button
I have an Omniscript that was working fine, but suddenly I am encountering the below error. I have already checked my DataRaptors and Integration Procedures. Could someone please help me understand ...
0
votes
0
answers
11
views
How to Handle Soft-Deleted Comments While Preserving Thread Structure?
I have soft deletion for comments in my app. The initial idea was to permanently delete soft-deleted comments after X amount of time. However, this approach breaks the comment branching/threading ...
0
votes
1
answer
17
views
Why facet_wrap plots two different charts here?
I have this code here
df <- tibble(
ano = 2015:2020,
vendas = c(100, 120, 90, 150, 170, 160)
)
# Duplicando os dados para os dois tipos de gráfico
df_bars <- df %>% mutate(tipo = "...
0
votes
0
answers
9
views
Problem generating 10kHZ sine wave using Arduino Uno R3 + DDS AD9850 -- distorted output on oscilloscope
I am attempting to generate a 10kHZ sine wave using an Arduino Uno R3 and a DDS AD9850 wave generator module and getting jagged higher frequency signals in the Megahertz instead.
I have successfully ...
0
votes
0
answers
10
views
Switch Level Transmission Gated Master Latch testbench
I'm currently doing preliminary testing on a switch level transmission gate master latch. The design is adiabatic and is part of a flip flop circuit. The adiabatic operation is done through Bennett ...
0
votes
0
answers
18
views
How and how much does the variable type affect the code in Rust?
I am going through the book of Rust and I noticed that even for small numbers they always use big sized variables, like a u32 for a const with value 10,800 or i32 for numbers in range 1..=100.
I have ...
0
votes
0
answers
11
views
Format floating number in Matplotlib : How to plot Volts as miliVolts or MicroVolts
I have a set of data that is in Volt. I'm plotting this signal in Volt on the vertical axis, and the time I measured this signal on the horizontal axis. (see image below) . The problem is that this ...
0
votes
0
answers
4
views
Null checks for record constructor arguments in Groovy
We are in the Groovy universe. Let's say I have a record like follows:
record Person(String firstName, String lastName, String city) {}
What is the shortest way to make sure that none of the three ...
-3
votes
1
answer
24
views
Why doesn't this text.replace function work?
I am using text.replace to swap out individual Latin letters for Cyrillic ones. This worked earlier when I used this as a test:
text = 'The sky is blue' new_text = text.replace('blue', 'red') print(...
0
votes
0
answers
5
views
react native + expo g-flag iOS build failed: : - unsupported option '-G' for target 'arm64-apple-ios15.1'
When trying to build my firebase react native ios app i am receiveing this error after running eas build --platform ios --profile production i have tried manually fixing the flag in podfile but cant ...
0
votes
0
answers
8
views
Merge two R data.tables based on a detection of presence/absence of strings
I have been struggling to merge two R data.tables based upon logic similar to stringr::str_detect()
https://stringr.tidyverse.org/reference/str_detect.html
That is, I would like to merge two tables ...
0
votes
0
answers
13
views
Are open-instance delegates still necessary to pass unbound methods to LINQ?
The question Passing around member functions in C# overlaps with my question, but (a) is not about LINQ, and (b) is 15 years old. C# has evolved quite a lot since then.
In Java, this code:
...
0
votes
0
answers
7
views
Run multiple multiprog tasks on single node
I have a list of 1000s of files that need to be processed through slurm.
I thought about using srun with --multi-prog to allow me to generate a list for srun to churn through in a job.
My issue is ...