Planet Python RSS
215 subscribers
16.9K links
Unofficial Planet Python RSS feed from planetpython.org. Maintained by @cfinnberg
Download Telegram
Matt Layman: Settings and Billing Portal - Building SaaS with Python and Django #190

Link: https://www.mattlayman.com/blog/2024/settings-and-billing-portal-building-saas-with-python-and-django-190/

In this episode, I worked on the settings page for the user. This was a vital addition because it allows users to access the Stripe billing portal and close their account if they no longer wish to use
Python Morsels: Assignment vs. Mutation in Python

Link: https://www.pythonmorsels.com/assignment-versus-mutation/

In Python, "change" can mean two different things. Assignment changes which object a variable points to. Mutation, changes the object itself.



Table of contents

Remember: variables are pointers
Mut
Juri Pakaste: Git history search with fzf

Link: https://juripakaste.fi/git-history-search-fzf/

fzf is one of my favorite shell tools. I have a ton of scripts where I use it for selection. Here's one for searching git history. git log -Gpattern allows you to search for commits that contain patte
Juri Pakaste: DotEnvy

Link: https://juripakaste.fi/dotenvy/

I released a new Swift library, DotEnvy. It's a parser and loader for dotenv files.
Dotenv is a vaguely specified format that is supported by libraries found for most languages used in server-side dev