-
Astral is doing great things in the python industry. They are disrupting entire categories of tools with extremely fast, easy to use, and feature rich alternatives that make it really hard to keep using the incumbent. So far I am seeing no signs of evil, sometimes with such a disrupter there is some sort of downside that make it hard to want to do the switch. In the interview they even mention things like leaning on lsp so that it works across all editors rather than building out vscode integrations that work for most developers. As a neovim user I greatly apreciate this.
Publishing rhythm
Playground | ty
An in-browser playground for ty, an extremely fast Python type-checker written in Rust.
types.ruff.rs [1]
ty, has a playground running at types.ruff.rs. You can edit code in there and see what the type checker results would be in browser. This looks good, excited to see it running in my lsp.
Here is an example where a Optional may not be defined.
[2]
Checking for existance before using it resolves the issue.
[3]
References:
[1]: https://types.ruff.rs/
[2]: https://dropper.waylonwalker.com/api/file/783e4d9e-8b23-4304-8921-2ae05aebcc8a.webp
[3]: https://dropper.waylonwalker.com/api/file/cc28335c-4130-4bf4-829d-0ff39f2aa32d.webp
I was looking back at my analytics page today and wondered what were my posts about back at the beginning. My blog is managed by markata so I looked at a few ways you could pull those posts up. Turns out it’s pretty simple to do, use the markata map with a filter.
from markata import Markata
m.map('title, slug, date', filter='date.year==2016', sort='date')
Note
the filter is python eval that should evaluate to a boolean, all of the
attributes of the post are available to filter on.
Result #
[
('⭐ jupyterlab jupyterlab', 'jupyterlab-jupyterlab', datetime.date(2016, 12, 13)),
('⭐ nickhould tidy-data-python', 'nickhould-tidy-data-python', datetime.date(2016, 12, 9)),
(
'⭐ mikeckennedy write-pythonic-code-demos',
'mikeckennedy-write-pythonic-code-demos',
datetime.date(2016, 11, 22)
),
(
'⭐ mikeckennedy write-pythonic-code-for-better-data-science-webcast',
'mikeckennedy-write-pythonic-code-for-better-data-science-webcast',
datetime.date(2016, 11, 22)
),
('⭐ rajshah4 dlgroup', 'rajshah4-dlgroup', datetime.date(2016, 11, 18)),
('⭐ pandas-dev pandas', 'pandas-dev-pandas', datetime.date(2016, 10, 5))
]
You could use the list command as well right within your shell and the same
map and filters work.
⬢ [devtainer-0.1.3] ❯ markata list --map title --filter='date.year==2016'
[22:35:06] 2088/2145 posts skipped skip.py:36
57/2145 posts not skipped skip.py:37
⭐ pandas-dev pandas
⭐ rajshah4 dlgroup
⭐ mikeckennedy write-pythonic-code-for-better-data-science-webcast
⭐ mikeckennedy write-pythonic-code-demos
⭐ nickhould tidy-data-python
⭐ jupyterlab jupyterlab
You could also do it with jin right inside of a markdown post using the jinja_md plugin.
{% raw %}
{% for title, slug, date in markata.map('title, slug, date', filter='date.year==2016', sort='date') %}
* [{{title}}]({{slug}}) - {{date}}
{% endfor %}
{% endraw %}
Note
You do have to `jinja: true` in the frontmatter of the post.
Result #
{% for title, slug, date in markata.map(’title, slug, date’, filter=‘date.year==2016’, sort=‘date’) %}
- {{title}} - {{date}} {% endfor %}
ty
An extremely fast Python type checker, written in Rust.
PyPI · pypi.org [1]
Astral is working on some great things around python, they have created a high standard for python tooling built on rust that works really well, runs fast and covers everything in the space it resides in. ty appears to be their linter coming soon.
References:
[1]: https://pypi.org/project/ty/
3D Printable Power Brick Bracket Designer
Generate custom 3D printable power brick brackets for your devices. Design and export your own mounting solutions.
Bracket Engineer · bracket.engineer [1]
This is madness that Wes Bos made this with manifold.js and no openscad! Yes, I have these stupid brackets everywhere, yes, I hand model my own brackets. No I don’t do it enough. I don’t like that these model generators like openscad cannot make fillets and chamfers, but I appreciate the heck out of the speed and automation you can make iterations of things.
Link to the promo video.
https://bsky.app/profile/wesbos.com/post/3lo4h7unk6s2i
References:
[1]: https://bracket.engineer/?width=113.5&height=63&depth=98&bracketThickness=3&ribbingCount=9&ribbingThickness=2.5&holeDiameter=5&holeCount=1&earWidth=17&keyHole=on&color=%2344ff00
bracket.engineer [1] by wesbos [2] is a game-changer in its space. Excited to see how it evolves.
Generate 3D printable power brick brackets.
References:
[1]: https://github.com/wesbos/bracket.engineer
[2]: https://github.com/wesbos
661: Working Vacations, Ripping Out JavaScript, and Non-US Cloud Service Options
What are the non-US cloud services options, falling off the blogging train and trying to get back on, working on vacation, Chris recaps the Alaskan Folk Festival experience, how often do you go bac…
ShopTalk · shoptalkshow.com [1]
Chris hit me where it feels about 10 minutes in. He said he has not been writing on his site as much lately and how hard it is to get back in. He mentions having a baby idea of a post, but then having the thought do you really want to come back from a long break with this!
Momentum is a b**** when you got it you cant stop, and when you don’t you can’t stop.
References:
[1]: https://shoptalkshow.com/661/
-
How is usability and it doing the thing I paid for it to do a selling point?? Any time I’ve touched a windows machine in the past 7 years has felt awkward, I have no idea where things are now, but they look so much worse.
-
How is usability and it doing the thing I paid for it to do a selling point?? Any time I’ve touched a windows machine in the past 7 years has felt awkward, I have no idea where things are now, but they look so much worse.
A quote from Mark Zuckerberg
You also mentioned the whole Chatbot Arena thing, which I think is interesting and points to the challenge around how you do benchmarking. How do you know what models are …
Simon Willison’s Weblog · simonwillison.net [1]
Interesting how confidently he says we can easily go to the top. really makes you wonder what we the normies are leaving on the table by using these general purpose models and what could be achieved with really tuned in models. Could I make an automatic blog tagger more accurately, maybe smaller, maybe tuned so well it runs fine on cpu?
References:
[1]: https://simonwillison.net/2025/May/1/mark-zuckerberg/#atom-everything
P. Martin Ortiz: Web apps can easily adapt to whatever device you’re on. A single responsive website can run on your desktop, phone, tablet, or even a VR headset. What’s even more, they can be ...
Chris Coyier · chriscoyier.net [1]
The web is everywhere, its the one true write once and run anywhere platform. Millions sunk into browser performance and things like the v8 engine allow us to run our shitty websites anywhere and it still runs good…. most of the time
References:
[1]: https://chriscoyier.net/2025/04/30/12292/
Helm - Postiz Documentation
Install Postiz using Kubernetes and Helm
Postiz Documentation · docs.postiz.com [1]
I didn’t realize that postiz had a helm chart, I just hand rolled mine based on the compose file they provide. I went from running the compose stack locally to running in my homelab [2] with kubernetes. I am using cnpg rather than a postgres container which I really like the workflow of as far as backup and restore. The one hiccup I ran into was changing the domain from localhost to my homelab domain killed all of my integrations and they needed the redirect url updated.
References:
[1]: https://docs.postiz.com/installation/kubernetes-helm
[2]: /homelab/
portal-platformer-devlog-1
Here is the current state of my platformer yet to really be named, I want to
make something in between hollow knight and portal.
Starting # [1]
I made one once in make code arcace on a pybadge. It was quick and dirty, but
fun to work on. It had the basic of blocks that I could move, blocks i could
put a portal onto, and a goal for each level. Some levels you can just walk
through and some levels required you to really think about where to place the
portal.
History # [2]
So this version of the game is a least 2 years in the making, I open it every
few months give it a day or two and move on. Its mostly something that I work
on with my son. He really likes to jump around on projects so its hard to make
real progress on something, but we are hitting an age where he is able to come
back to projects a little better.
All of this is built in python, and mostly before vibe coding [3] was a thing, its
mostly me trying to get out ideas as quick as my son is spitting out the the
next idea...
Check out goose [1] by block [2]. It’s a well-crafted project with great potential.
an open source, extensible AI agent that goes beyond code suggestions - install, execute, edit, and test with any LLM
References:
[1]: https://github.com/block/goose
[2]: https://github.com/block
Check out kubernetes-mcp-server [1] by manusa [2]. It’s a well-crafted project with great potential.
Model Context Protocol (MCP) server for Kubernetes and OpenShift
References:
[1]: https://github.com/manusa/kubernetes-mcp-server
[2]: https://github.com/manusa
Looking for inspiration? kubernetes-mcp-server [1] by containers [2].
Model Context Protocol (MCP) server for Kubernetes and OpenShift
References:
[1]: https://github.com/containers/kubernetes-mcp-server
[2]: https://github.com/containers
Check out punkpeye [1] and their project awesome-mcp-servers [2].
A collection of MCP servers.
References:
[1]: https://github.com/punkpeye
[2]: https://github.com/punkpeye/awesome-mcp-servers
I’m really excited about any-agent [1], an amazing project by mozilla-ai [2]. It’s worth exploring!
A single interface to build and evaluate different agent frameworks
References:
[1]: https://github.com/mozilla-ai/any-agent
[2]: https://github.com/mozilla-ai
-
Great talk from Lous Rossman! TLDR you don’t own it, and stop pointing the finger calling everyone else an idiot for supporting the other brand, cause your’s probably also has different issues.
Check out dtnewman [1] and their project zev [2].
A simple CLI tool to help you remember terminal commands
References:
[1]: https://github.com/dtnewman
[2]: https://github.com/dtnewman/zev