i have this problem, the flow start with a initial date, let say 2022-04-14 and i have to add to this date ten days, but i have to considerate weekends and holi
Is a function like: async def f(x): time.sleep(x) await f(5) properly asynchronous/non-blocking? Is the sleep function provided by asyncio any differen
I'm trying to make a progress bar in angular that works fine to show the progress of a method in backEnd that processes a big Excel file. I use an @Sse observab
The function I am trying to implement is that, when the form is submitted in the create view, I would like to display the created object beneath it without the
I am trying to "npm run build" to produce a dist folder for vue deployment. The command seems to run for a while and stuck there forever. The process stuck at t
I'm going through this tutorial making docker image with: docker build -t myapp_back . and then want to run container with: docker run -p 3000:3000 -d myapp_b
I have found several questions and answers with regard to this issue on SO, but they all seem to cover one major cause of the problem: fetching a collection out
I have a table with such header : <th key={col.label} style={col.size} class={col.class} scope="col" height="20"> I take labels from
I inherited a codebase that is filled with conditionals using terms like (isset($a) && !empty($a)) but the $a are actually long variab