social.tchncs.de is one of the many independent Mastodon servers you can use to participate in the fediverse.
A friendly server from Germany – which tends to attract techy people, but welcomes everybody. This is one of the oldest Mastodon instances.

Administered by:

Server stats:

3.8K
active users

#webdevelopment

66 posts40 participants6 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

We all know that SELECT * FROM table_name is less efficient than selecting specific columns. The same applies to Django ORM, where you can optimize application performance using defer() and only(). If you want to learn how to use them, check out this article by Nik Tomazic.

testdriven.io/blog/django-quer

testdriven.ioDjango Query Optimization - Defer, Only, and ExcludeIn this article, we'll look at the differences between Django QuerySet's defer, only, and exclude methods.