Posts tagged with 'en'

Posts tagged with 'en'

Building a Custom Bluesky Feed, Part 3: Polish and Ship

This is Part 3 of 3. Part 1 covers how the feed generator works and the initial strategy to collect possibly related posts. Part 2 covers the labeling tooling, ML classifier, and storage design. We st...

Building a Custom Bluesky Feed, Part 1: Starting Simple

When I joined Bluesky, Jim suggested that I created a custom feed as part of the learning during the onboarding process. I was excited about it because custom feeds is one of the coolest things in the...

Tuples and Lists in Python

Originally posted in Brazilian Portuguese. The other day, on a Python forum, someone asked: Is there any difference between tuples and lists in terms of performance? As some of you might already kno...

Python Generators: What They Are and What Problems They Solve

Originally published in Brazilian Portuguese. The other day, a friend saw me writing a function in Python that used yield instead of return, and asked: — What's the point of that? I’ve never really g...