I wrote a solidity that pays ERC-20 tokens for ERC-721 NFT transactions, but it doesn't work. On purchase, you trigger the purchaseToken method. But I get an un
I have here a function to quicksort a doubly linked list that uses recursion method. I wonder how can I change this function from recursive to iterative quickso
I have installed xcode and all the extensions in vs code but every time I run the code it shows this!
I have 2 tables with epoch values. One with multiple samples per minute such as: id First_name epoch_time 1 Paul 1650317420 2 Jeff 1650317443 3 Raul 1650317455
Create a program called countVowels.py that has a function that takes in a string then prints the number of unique vowels in the string (regardless of it being
Let's say I have below array of dates (not necessarily sorted): import numpy as np np.array(["2000Q1", "2000Q2", "2000Q3", "2000Q4", "2001Q1", "2001Q2", "2001Q3
I want to satisfy all the following conditions but Yr1,Yr2 and Yr3 are not columns. It is excel sheet names. if df["Grades"]>="D": and Yr1>=27 and Yr2>
How to sort dates in Reactjs with the moment formatter? Tried this code and wont work const sortByDate = (d1,d2) => { new Date(b).getTime() - new Date(a).g
I am trying to change the code below and read it from the image field DECLARE @xml XML SELECT @xml= x FROM OPENROWSET (BULK ''' + @XMLFILE + '''
I would like to create a random string in Ansible tasks and use it in jinja2. The string should contain 0-9, a-z, A-Z with a length of 32 characters. I found ou