I have a simple NestJs Microservice application that is listening for messages from a Rabbitmq service. async function bootstrap() { dotenv.config(); // TO
Is it possible to test ES6 Modules with Jest without esm or babel? Since node v13 supports es6 natively have tried: //package.json { … "type": "modu
I have a column with 8 digit numbers from which I want to create 8 additional columns. Each column must contain n amount of digits, ranging from 1 to 8. So far,
I want to write a Dataframe as a .txt file along with headers and delimited with | and text separator as ".I know we can create it as .CSV file but I do not wan
I have a Vscode workspace with a bunch of Maven projects, and which one has its own Maven settings.xml file. As each project has its own settings file with the
I'm having a problem with libclang. I'm currently writing a C++ parser in C++ using libclang, and apparently, clang does not know where my headers are, despite
I am using FFmpeg version 4.4_2 on macOS 11.3.1 I use avcodec_send_packet() and avcodec_receive_frame() to decode a package. both of them return 0. But the fram
Suppose I have a double For Loop with 2 values each giving 2x2=4 loops. p_vals = c(1,2) q_vals = c(3,4) for (p in p_vals) { for (q in q_vals) { past
As per my business logic week start day is monday and week end day is sunday I want to get week end date which is sunday based on week number , some year h