Latest Questions

Fill treeview from custom array of objects. Recursion call

I'm using treeview to display my hierarchical data. I have following array of objects: const data = [ { id: 1, hierarchyid: "/", level: 0, name: "Mhz" },

How to do 3-legged OAuth login with One Tap sign-in on Android

I'm trying to implement 3-legged OAuth login with Google's One Tap sign-in for Android. This is needed to access Gmail from the server side. The app needs to ge

npm install issue : 27 vulnerabilities (16 moderate, 9 high, 2 critical) To address all issues , run: npm audit fix --force

When I enter npm install in the relevant react project folder, it gives back this error after installing node modules 27 vulnerabilities (16 moderate, 9 high, 2

Can anyone explain why my JavaScript map function displays two extra posts upon page refresh? Getting weird duplicates with and without errors

Hello friendly people of stackoverflow, I'm having a map function issue and I just can't put my finger on what the problem could be. Context is just for user da

Am I overlooking some of the power of PyCharm autocomplete?

I am entering some code using just the standard Python library path.Path. The final product should be this: import pathlib outDir=f"inDir.analyzed" pathlib.Path

How to resolve polymer import issue

I am getting this error when run the polymer application. So, How to resolve this issue "Cannot use import statement outside a module". If anyone know the ans

Most donor to acceptor ratio

There is a blood bank which maintains two tables: DONOR that contains information on the people who are willing to donate blood and ACCEPTOR, the people who are

migrating keras + tensorflow cpu to tensorflow-gpu keras modelling

I'm a beginner of data-science and by now, I'm trying to migrate old code keras cpu modelling to gpu-tensorflow. fyi: I'm following instruction on prof.jeffheat

How to use root.findall with AND condition

XML be something like this: <Section SectionLevel="1" SectionID="Food"> <Section SectionLevel="2" SectionID="Fruit"> <Content>Appl

Django + Postgres: OperationalError FATAL: sorry, too many clients already (as a result of a deliberate attack)

There are many similar questions on Stackoverflow but they do not address my particular case. The problem is that there are deliberate attacks on the website wi

How to handle connection reset in Python SignalR and reconnect again

I am using Python3, signalr, and WebSocket to connect to a server. When the connection is closed or reset by the server or the network layer, I receive the foll

getting error while creating unmanaged node groups using eksctl in eks

Anyone please help ,I'm getting this error "Error: couldn't create cluster provider from options: nodeGroups[0].overrideBootstrapCommand is required when using

Alpine.js :class not working in second element

I'm starting to look into Alpine.js and trying to understand how it works. I have some html with one button to flip the background-color in two other buttons, b

Is it recommended to pass setters from useState as props?

I am currently in a coding bootcamp and the instructor told me that it is not best practice to pass the setters defined in my useState as props to children comp

How do I keep grabbing bytes and encrypting them in Python?

cipher = Cipher(algorithms.AES(key), modes.CTR(iv)) decryptor = cipher.decryptor() plaintext = decryptor.update(data[0:4]) paramEntry1 = int.from_bytes(plainte

construct a binary tree from string in haskell

how do I construct from string representation of binary tree a binary tree ? I already wrote a function that takes a string representation and converts it to a

LeetCode 7: Reverse Integer | why does it work with a long but not with an int?

I was trying to solve this problem on LeetCode where you have to reverse an integer using a function. The constraint is that if the reversed number goes outside

JQuery autosubmit

I have a form with three input elements. I want to run my validate function when the last input element is not equal to null. Any ideas please. Here's the code

Copy the file with folder structure from Linux to Windows using WinSCP and delete file which ever is copied and keep the folder

PowerShell or WinSCP – need to download the file and folder structure and delete the file which ever is copied and delete the file but not folder structur

Issues with Pytorch and Torchvision on MAC M1 - python / conda

Im trying to run Pytorch and Torchvision on Mac M1. I follow these instructions successfully install pytorch and run it natively on apple - https://betterprogra

Can't show api data in qml table correctly

I'm trying to get data from an api and insert it into table view from python side. Code. main.qml import QtQuick 2.15 import QtQuick.Window 2.15 import QtQuick.

Error in install.packages : package ‘RGtk2’ not installed because it is not built for UCRT

I tried to install rattle and RGtk2. I used install.packages("https://cran.microsoft.com/snapshot/2021-12-15/bin/windows/contrib/4.1/RGtk2_2.20.36.2.zip", repos

Python Login to UPS.com returns 403

I had a script that would login to my UPS.com account to receive all incoming packages. The following code was working for a while but not anymore: import reque

Hashicorp Vault Server UI loads a blank screen

I am trying to run hashicorp vault server as windows service in windows 10 system. Vault server UI is showing as blank screen. Please refer my configuration det

Access JSON like object properties

I have a return object like so: Can you tell me how to access its properties? I have tried many ways with Lodash too. But no luck yet. Failure attempts: t.conf

How to Retrieve OAuth2AuthorizedClient in a request when using WebFlux

I have a back-end(Springboot) application that is connected to Azure AD and a front-end application that accesses it. In the front-end, I am requiring the user

Argo workflow json parameter file and secrets

Argo workflows allows you to specify arguments in a json file: { "valueA": 1, "valueB": 2, "valueC": 3, "valueD": 4 } and then specify this when the wo

Error: Can't resolve 'fs' in node_modules\dotenv\lib' in React web app

I installed dotenv using npm install --save dotenv in my React web application. Whenever I use require('dotenv') this error comes up. Error: Can't resolve 'fs'

How to Update the .config file using Azure DevOps "Update config" Task

I want to Update the Web.config file using Azure DevOps Release Pipeline. I am using [Update Config][1] Task from MarketPlace. [1]: https://marketplace.visualst

package.json - how to set default value of variable in windows

In Linux you can use the following syntax to set the default value of a variable in the package.json file: try=${myEnvVariable:"defaultValue"} How do you do thi