Our goal is to get all sorts of private information from a GitHub authenticated login.
Continue readingMonthly Archives: January 2020
Flask: Session Does Not Persist between BluePrints
Because the session cookies of different blueprints have different paths. Set in configuration:
SESSION_COOKIE_PATH = '/'
And all should share the same session.
When does a session end?
With flask.session
, by default, session ends when browser is entirely exited. Merely closing tabs won’t erase sessions.
Database 101
Some blatantly obvious thing that I was oblivious to before dipping my toes into databases:
Continue readingGithub Action: Image Optimization Pipeline
Whenever your pull request contains image changes, this Github action will run and create a commit of optimized images.
Continue reading