I've always wanted to learn Flask and SQL, improve my Git/GitHub skills, work with a dedicated Linux server and make fully working website. It's just a really nice idea to have an easily sharable personal space which you built from scratch, where you can show off your personal projects, ideas and hobbies. Hopefully you enjoy it as much as I do!
This is the product of my efforts: https://www.Ramilus.com
I'll be updating it regularly since I now have all the time in the world.
If it inspires you to build your own website, please check out Corey Schafer's Flask series. He is just an awesome human being and he shows you how to put all of these tools together really well.
https://flask-migrate.readthedocs.io/en/latest/
$ export FLASK_APP=flaskblog
$ flask db init
$ flask db migrate
$ flask db upgrade
>>> from yourapp import create_app
>>> app = create_app()
>>> app.app_context().push()