How to Add the Web Interface to Mission Control When Using Solid Queue in Rails
Solid queue lets you use your database as the store for ApplicationJob. No need for redis!
But if you want a nice little web interface to inspect what's going on, you'll need something like Mission Control: https://github.com/rails/mission_control-job...
Read more...
How to Add a Current Thread Safe Local Object to Flask Apps
To do this you need to use werkzeug's LocalProxy object, which will proxy data to Flask's g built in global object.
Then it's just a matter of setting your data in the @before_request and @context_process decorators.
from flask import Flask, session,...
Read more...
Hello World
Welcome to the site!
I'm starting to write again. Mostly for fun. But writing really helps to understand complex topics. If you can explain something to an audience your grasp of the subject is better.
So here's the first post on my new site!
The...
Read more...