pgpm - A Postgres Package Manager for Modular Postgres Development
pgpm - A Postgres Package Manager for Modular Postgres Development. Modern CLI for modular PostgreSQL development with reusable database packages, deterministic migrations, recursive dependency resolution, tag-aware versioning, and turnkey module-first workspaces.
Streaming JSON in just 200 lines of JavaScript / I was continueing my exploration of React server components when I stumbled upon on this article about progressive JSON. Dan Abramov describes a technique for streaming JSON from a server to a client in chunks, allowing the client to start rendering parts of the data before the entire payload has been received. This can significantly improve perceived performance, especially for large datasets. So, I started wondering how much of an effort it would be to implement something like that. It turned out a fun exercise, and I ended up with a small (200loc) library called Streamson. So, this post is about how I built it.
We've encapsulated 10+ years of React and Next.js optimization knowledge into react-best-practices, a structured repository optimized for AI agents and LLMs.
What’s one of the biggest challenges with using AI for QA? It’s the lack of programmability. We set out to find a solution by pairing Playwright MCP with several different LLM models. Find out where we landed.
RDoc has always supported Markdown as a markup language. But its support was buggy and lacks documentation.
After a year of addressing various related issues, I was able to rewrite a doc for it. I think we'll soon be able to migrate from RDoc to Markdown.
https://ruby.github.io/rdoc/doc/markup_reference/markdown_md.html
I'm routinely asked about "automatic N+1 solving" libraries for Rails, which essentially try to manipulate `includes()` calls for you. I don't recommend them.
IME, missing `includes` is only ~10% of the actual N+1s I see in the wild. And, includes() isn't always optimal!
First impressions of Claude Cowork, Anthropic’s general agent
New from Anthropic today is Claude Cowork, a “research preview” that they describe as “Claude Code for the rest of your work”. It’s currently available only to Max subscribers ($100 …