Comparing Polars, a Rust DataFrame Crate, with pandas
I discovered that Rust actually has a pandas-like crate, so I put together a comparison of corresponding operations. No guarantees these are optimal solutions.
I discovered that Rust actually has a pandas-like crate, so I put together a comparison of corresponding operations. No guarantees these are optimal solutions.
Pylance is an excellent coding assistance extension, but it often fails to resolve imports. While this is tolerable for small-scale development, it becomes quite troublesome with Django. Here's how to fix it.
When showing inclusion relationships between sets, UpSet plots can be more useful than Venn diagrams. Here's how to use them in Python.
When using a supercomputer, you often need to submit jobs via qsub. Sometimes you just want to run a one-liner, and having to create a script file first is tedious. Here, I use Python's argparse and subprocess to pseudo-submit commands as jobs directly from the command line.
I wrote this because I couldn't find many articles focused solely on deploying with FastAPI and Postgres to Heroku.