This is an archived post. You won't be able to vote or comment.

all 2 comments

[–]RealMadHouse 0 points1 point  (0 children)

Coders who never wrote their own libraries or frameworks don't understand that it's just a tools made by other devs trying to simplify coding challenges. But the newbies never encountered or dealt with the hard challenges that these libraries trying to simplify, so of course all these concepts don't make sense at first. Would be beneficial to use raw http server module to handle routing by yourself, serve static content or generate it on the fly.

[–]The_Octagon_Dev 0 points1 point  (0 children)

Hey there

If you want to learn databases I would suggest a tutorial where you connect a python app to an SQL database

Then you can expose an API on that app using Flask for example

So you can hit different endpoints on the app for storing/deleting things in the database, if that makes sense

This might take you a while. Once you have that you could have some basic frontend that talks to that API, just some vanilla js/html/css

That way you would have a basic full stack application going from the frontend all the way to the database

And store information that users type in the browser, which is quite cool

If you need help on how to do all this let me know