sfba.social is one of the many independent Mastodon servers you can use to participate in the fediverse.
A Mastodon instance for the San Francisco Bay Area. Come on in and join us!

Server stats:

2.4K
active users

#python

730 posts581 participants31 posts today

If you use Jupyter notebooks often, you’ve probably faced issues like small edits leading to big Git diffs or difficulties reusing code across notebooks. Marimo is a good alternative that tackles these problems. In this article, Akshay, Myles and Dylan explained how Marimo solves these issues.

marimo.io/blog/python-not-json

Reinventing notebooks as reusable Python programs
marimo.ioReinventing notebooks as reusable Python programsDesigning a Python notebook that blends the best parts of interactive computing with the sanity of code

I just spent too many minutes trying to figure out why my tests weren't running until I noticed that I named the functions "text_*" not "test_*".

One of my favorite Python two liners is this:

with open(myfilename, 'r') as f:
lines = [stripped for line in f if (stripped := line.strip()) and not stripped.startswith('#')]

It's a bit nicer than the previous version I used pre walrus operator.