I have a project where I use Next.js on the front-end and Nest.js on the back-end. I want to use a JWT authentification method via email and password. My questi
What worked for me was : async function getByName(name) { try { const query = { username: { '$regex': `^${name}$`, '$options': 'i' }} const
I want to make like this(insert image in date). So I'm coding like this but it doesn't work well How to insert image in date like first image?
After cloning a project from Gitlab on ubuntu, I tried to run it through docker, I opened a terminal, got to the directory where the .yml file was and wrote dow
I am trying to make use of a global variable which is updated in func1() and then used in func2(). When I call func2() simply without multiprocessing, it utiliz
Im fetching Product Attributes from Woocommerce, and echo them out in a script tag as variable to use with javascript in frontend. This might be a bad practice,