GeistHaus
log in · sign up

https://blog.kagamino.dev/index.xml

rss
5 posts
Polling state
Status active
Last polled May 19, 2026 00:42 UTC
Next poll May 19, 2026 22:35 UTC
Poll interval 86400s
ETag "td9mh32wx"
Last-Modified Fri, 10 Apr 2026 06:39:03 GMT

Posts

Computer setup
Editors

Of course as a programmer, I use some editors. My most used day-to-day are VSCode and Zed. VSCode extensions are really great, but when I need something really snappy, Zed is now the default. It has also gained a lot of possibilities recently, with the Debugger and Agent tooling.

https://blog.kagamino.dev/computer-setup/
PostgreSQL aggregation processing speed
Key takeaways

JSON is more efficient than JSONB when only reading data

JSONB is useful for data processing, when filtering data on the database. But in this test, the higher cost of creating JSONB is not worth it, and there is also a price to convert it back to text.

https://blog.kagamino.dev/posts/postgres-aggregation-speed/