I was doing.
But I picked Python anyway, because it’s the only programming language that doesn’t immediately yell at me.
Then I found a library called CustomTkinter.
It basically lets you make good-looking apps in Python without crying too much.
Then I added a database: SQLite.
So the app could remember my study sessions and notes.
Because, you know…
Human memory is optional.
So I made a table like this:
CREATE TABLE study_sessions ( id INTEGER PRIMARY KEY, subject TEXT, duration INTEGER, actual