social.coop is one of the many independent Mastodon servers you can use to participate in the fediverse.
A Fediverse instance for people interested in cooperative and collective projects. If you are interested in joining our community, please apply at https://join.social.coop/registration-form.html.

Administered by:

Server stats:

489
active users

#pythonprogramming

6 posts5 participants0 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

A white rectangle displaying the article title, "Django Query Optimization - Defer, Only, and Exclude", and a byline featuring Nik Tomazic.
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.