Which programming language should you start with as a beginner?

What I'd like to achieve eventually is to be able to develop at least somewhat more complex apps for Android. We started with Python in school when we were still in computer science classes, but we didn't get very far. Should I continue with it or should I try another language? Flutter is supposed to…

Can anyone help me with a small login system using bcrypt.compare?

I created a small NodeJS Express server with a registration and login function. But when I try to use the bcrypt.compare method, I always get this error: Code: app.post("/login", (req, res) => { let { username, password } = req.body; const sqlEingabe = 'SELECT PASSWORD FROM userwebshop WHERE username = ?' connection1.query(sqlEingabe, username, (err, results)…

How do I adjust an image on my website so that it fits perfectly into the header?

Hello, I started getting more involved with programming three days ago, so I have very little experience yet. I've now started building a website and have started with CSS, but I don't know how to add an image behind my heading. When I search on Google and try the solutions there, the image always becomes…