Chratho
Chratho
I played around with `injector` and `Flask-Injector` the last few days, mostly because I came to realize that bigger `Flask` applications can easily become a nightmare when writing tests. I...
The `request` scope name directly clashes with the global `request` variable in Flask. Even when using the `injector`-style approach and injecting `flask.Request` into your handlers/services, the developer might still want...
Every once in a while I am noting "another command is already in progress" errors from libpq. The respective application manages database connections in a resource pool. I am now...
`ExecuteMany` formatting has actually more limitations than documented, and diverges from what is possible within simple `execute` calls: ``` bash psql: > create table test (x integer, y varchar(3)); ghci:...
It took me some time to figure out that `MapCompose` flattens iterables returned by the specified functions. Even though I then I realized that this behavior is well documented, I...