im creating a serverless api with nodejs and im using api gateway to invoke my lambda functions and i have my frontend build with reactjs. when i call my api th
QTY STOCK RNK ID KEY CUM SUM 40 35 1 1 35 20 35 2 1 0 15 35 3 1 0 58 35 4 1 0 18 35 5 1 0 40 35 1 2 35 20 35 2 2 0 15 35 3 2 0 CUM SUM should be MIN(QTY, STOC
I’ve tried to case-sensitive sort some strings in Java and I was quite surprised by the result. Here is the code: List<String> words = List.of("aLoc
My problem is that I need to add customer and its addresses from source table, where is address1, address2, address3 columns plus other columns related to custo
Sometimes I need to print a list of CSS classes to find an appropriate one. The most suitable for me would be a function like in JS console: JS class list is l
I need to convert user input datetime to epoch time. This what what I have: from datetime import datetime from_date = str(input('Enter date(yyyy-mm-dd hh:mm):
I ran into issues where during limited network, rnfb hangs and doesn't produce a timeout consistently. Is this a bad way to handle that? return new Promise((res
so this is my code from bs4 import BeautifulSoup import requests import time URL = 'http://www.vn-meido.com/k1/index.php?board=17.0' # loads page r = requests
If I have enum: public enum ImportState : byte { None = 0, ImportedWithChanges = 44, AwaitingApproval = 45, Removing = 66, Revalida