!https://github.com/1j01/textual-paint
Posts tagged: python
All posts with the tag "python"
!https://simonwillison.net/2023/Jul/24/sqlite-utils-plugins/
!https://pywebview.flowrl.com/guide/usage.html
!https://docs.sqlalchemy.org/en/14/core/defaults.html#server-invoked-ddl-explicit-default-expressions
!https://jinja.palletsprojects.com/en/3.1.x/templates/#include
!https://fastapi.tiangolo.com/advanced/templates/
!https://fastapi.tiangolo.com/tutorial/static-files/
!https://github.com/tiangolo/fastapi/issues/754
!https://duckdb.org/docs/guides/sql_editors/harlequin
!https://duckdb.org/docs/api/python/overview.html
!https://duckdb.org/docs/guides/python/sql_pandas
!https://pypi.org/project/pytest-subtests/
!None
!https://github.com/doyensec/wsrepl
!https://twitter.com/Doyensec/status/1681320727465672706
!https://sqlmodel.tiangolo.com/tutorial/where/#filter-rows-using-where-with-sqlmodel
!https://www.urldecoder.io/python/
!https://www.youtube.com/watch?v=8D7FZoQ-z20&t=97
The next version of markata will be around a full second faster at building it's docs, that's a 30% bump in performan...
Pycon 2023
I donβt want to be an expert python developer.
https://www.youtube.com/watch?v=iKzOBWOHGFE
# Version 1 def newton(f, x0, fprime, maxiter=100): ... # Version 2 def newton(f, x0, fprime, tol=1e-6, maxiter=100): ... # π΄ Broke in Version 2 newton(f, x0, fprime, 100)
In an alternate timeline the maintainer of newton could have chose to use keyword only arguments to prevent pain for users of libraries, or poor api design due to fear of changing api on users.