Latest Questions

How to run a Docker Containers pulled from GitLab Container Registry using Shared Runners?

Basically what I have got working so far is as follows in the following order; Login to GitLab Container Registry Build Docker Containers from docker-compose.ym

CUSTOM RELATIVE between two securities

there is a Study to build a RELATIVE between two symbols that is like this: ` study("RELATIVE STRENGTH", shorttitle="RS") a = tickerid b = input("SPY", type=s

Styled component in victory chart. keep showing TypeError: _native.default.div is not a function

Error message: TypeError: _native.default.div is not a function. (In '_native.default.div(_templateObject || (_templateObject = (0, _taggedTemplateLiteralLoose

How to pass list of arguments from argo workflow and use it in argo workflowtemplate

apiVersion: argoproj.io/v1alpha1 kind: Workflow . . - name: mytemplate steps: - - name: mytask templateRef: name: ABCDworkflowtempla

grouped (twice) and stacked bar chart with facet wrapping

Here is my sample data mydata = data.frame (student =c("A","A","A","A","A","A","A","A","A", "A","A","A","A","A","A","A","B","B","B","B","B","B","B","B","B","B",

Top level await in WebdriverIo Mocha tests

I am trying to use top-level await with WebdriverIO but keep getting below error [0-0] import axios from 'axios'; [0-0] ^^^^^^ [0-0] [0-0] SyntaxError: Cannot

Stop a function after a thread process is done runnig

i made a little GUI to take input from the user one of the main process is withing a thread and since that command starts there's an event that triggers an endl

How do you test a form upon the submission addEventListener with jest without a framework only vanilla JS

Most of the research I have done in regards to jest testing unit testing and/or integration testing is all heavily geared towards React. But I am not using reac

How to get the total?

Good day, I am practicing about Arithmetic and started to experiment a bit and got confused. How can I total the liter, refueled, and tendered? #include <std

Python: Extract r,g,b values from point cloud

I have a point cloud (ply file) with X,Y,Z and r,g,b values only. Here is my ply header file. ply format ascii 1.0 comment generated by pdal element veryex 6245

Does Oracle Database Express Edition 21c have GUI or a browser view on Windows?

I have downloaded and installed Oracle DB EX 21c on Windows and it seems the only way to interact with it is using the command prompt. Some older versions like

clean way to read out id in a request path in ruby on rails

I have a request that comes in like this: api/v1/photos/1/media/2 "1" and "2" are ids I need to read out in the controller. "2" I can get through the parameters

How to deserialize Json into an C# object and fill the components into a dictionary

{ "success": true, "data": [{ "type": "Employee", "attributes": { "id": { "label": "ID", "va

How to pass python 2d matrix to C function ctypes

I tried to pass my matrix from python to C++ based on ctypes to multiply by 2 but I could not get the result that I want because it says inf instead. C code (DL

Do failed SQS messages have a visibility timeout?

Let's say that a SQS message was consumed by a consumer, and within the visibility timeout, the consumer gave an error. Now the SQS will try to retry the messag

Issue on Getting PHP Generated Image By jQuery Ajax Call

Can you please take a look at this code and let me know why I am not able to get a PHP generated captcha (image) by Ajax call in jQuery? What I have in captcha.

How to access FlowNode in typescript ast api?

I try to resolve foo and bar from nodes variable. After I checked at ts-ast-viewer you can see in the picture that typescript can know about foo and bar from no

Python lxml cannot handle XML element with over 1GB of text

The lxml library for Python can handle extremely large XML files, up to (and over?) 100 GB in size. But can it handle extremely large (1 billion characters or m

Xamarin.iOS can I have one class that some buttons can inherit from so they get the same looks?

I'm very new to Xamarin and I am currently working on a Xamarin.iOS project where I have added buttons in Xcode. How would I go about it if I want to style some

Convert POST Request to Doctrine Entity

Coming from a NodeJS environment, this seems like a nobrainer but I somehow did not figured it out. given the function: /** * @Route("/", name="create_

next-auth JWEDecryptionFailed

I am using this code to be able to use the credentials next-auth provider along with cognito as oauth serviice: this to allow email and password auth. I am runn

How to set data in Firebase .onSnapshot()

I'm trying to set data with this function and its not setting the variable. How can I set information for outside use with this? Here is my code const docRef =

Pandas Merging 101

How can I perform a (INNER| (LEFT|RIGHT|FULL) OUTER) JOIN with pandas? How do I add NaNs for missing rows after a merge? How do I get rid of NaNs after merging?

convert a CSV file to JSON file

I am trying to convert CSV file to JSON file based on a column value. The csv file looks somewhat like this. ID Name Age CSE001 John

Stop flutter from chaing fontSize depending on phone font

I'm building an app there is one problem. The font is causing overflow when I set my phone font to a bigger size. I tried using this : class SizeConfig {

Rundeck inline bash spinner output

Have some bash test code that have a spinner. Code seems like this #!/bin/bash sleep 5 & pid=$! frames="/ | \\ -" while kill -0 $pid 2&>1 > /dev/n

i'm getting this error when running the below pyflink code

this is the code for calculating average of each ch[x] from a kafka source using apache flink(pyflink) i think i have imported all of the necessary libraries An

OpenIdDict 3.0 error from ASP.NET Core 3.1 web application

I am hosting my ASP.NET Core 3 web application in Azure, whenever I do a new publish to Azure, it works as expected. However, the next day, the site is down, th

VueJS - create readonly copy of a ref object (Composition API)

I am getting data from db by onMounted hook and showing object in a form. When user clicks to save, I just want to check if object data has changed or not. onMo