#gets rid of spaces in existing csv headers def getColumns(readCSV): return [column.replace(' ','') for column in next(readCSV)] #insert format used to
I have a block of html text from which I need to extract the link texts. The HTML code is <li><span class="jkey-title">Job Field</span> <sp
In Inventory location in module Inventory. It shows list of products in that location and the quantity of available stock. It is easy to print that out with a r
I keep getting this error even thought I am in a asynchronous function... import { dirname, join } from "path"; import { fileURLToPath } from "url"; const __fil
I'm a begginer in Android development (Java language) and would gladly appreciate any advice on how to create my project. In this part, I would like to add butt
I'm having a bit of trouble with Django again. I have a simple e-commerce website project that I'm working on for my graduation. It sells books. I've got basic
I wrote a couple of Cypress end-2-end tests for our website. These tests run against a staging environment. Since we have a couple of those staging environments
I can't quite wrap my head around the model validation. Let's assume the following ViewModel: public class UserEditViewModel { public List<Role> Avail
I am using c++,gcc. I have code for logging with macro like this: #define E_DEBUG(level, ...) \ if (err_get_debug_level() >= level) \ err_msg(ERR