sarimak
sarimak
Yes, latest OS X on the last MacBook Air that used Intel CPUs. BTW: I use Ubuntu and never saw such a problem, so it is most likely an OS...
Python jobs at jobs.cz can be referenced via https://www.jobs.cz/prace/?q[]=python
I am aware of Scintilla-based editor with code folding - Geany - which uses lexers on top of parsers for finding the folding points. Maybe you could re-use at least...
If a generic approach would not be feasible, what about at least folding of indented lines (Python), folding of curly bracket contents (C-like family of languages) and user-hinted folding (like...
I am using blueprints too and I had the same issue, the context is "unknown". I am able to get non-empty Context if my WSGI app is wrapped by ReverseProxied...
Wow, thank you! My Flask application resides in a module app.py in a package called the same as my application. The SQLAlchemy queries are located in several modules (using the...
I also prefer raw SQLAlchemy due to the coupling (access the DB outside of Flask). I have compiled almost perfect configuration-based workaround. I can see the queries and their duration,...
I also have a monorepo containing many services which are deployed as Docker containers, each with own image and each installing only those Python packages which are really needed. I...
Example of a monorepo based on what `uv pip` provides: [monorepo_uv_pip](https://github.com/sarimak/monorepo_uv_pip).
Ad @brendan-morin 's original question about `run only tests affected by changed code`: If you have a way how to distinguish 1st-party packages from 3rd-party ones (by a common prefix,...