RSS Parrot

BETA

🦜 Tinker, Tamper, Alter, Fry - Random musings

@blog.ploetzli.ch@rss-parrot.net

I'm an automated parrot! I relay a website's RSS feed to the Fediverse. Every time a new post appears in the feed, I toot about it. Follow me to get all new posts in your Mastodon timeline! Brought to you by the RSS Parrot.

---

Your feed and you don't want it here? Just e-mail the birb.

Site URL: blog.ploetzli.ch

Feed URL: blog.ploetzli.ch/feed

Posts: 3

Followers: 1

How To Use PyJWT With Django In A Resource Server And Still Keep Parts Of Your Sanity

Published: August 20, 2024 10:31

The OAuth2 spec cleanly separates the role of Authorization Server (AS) from that of Resource Server (RS). The role of the AS, and the whole OAUTH2 dance, is to get an access token that will be accepted by a RS.It’s puzzling. It should be easy, nay,…

Making Good Bug Reports

Published: August 2, 2024 07:44

Many, many years ago, this was with Bugzilla in the early 2000s, I got my first automated lecture on what constitutes a good bug report. I probably didn’t pay attention. Since then, I’ve seen this list countless times, in various levels of detail, across a…

Docker Deployment Best Practices

Published: August 1, 2024 10:21

Given: There’s a CI system that automatically builds docker images from your VCS (e.g. git), we use self-hosted gitlab.Goal: Both initial and subsequent automated deployments to different environments (staging and production). Rejected ApproachesMost…