Wondered how to use git work trees to have agents contribute PR's and push changes in parallel? Here's a quick guide! youtu.be/LoxnOzm1ctg?... #ai #agents #worktrees
Posts by Yusuke
totally! agreed.
I think the "roles" that you provide in your toolkit is a bit farther than I'd like to go yet, although I have heard role-based LLMs tend to do better. Will check it out!
Here's a video walking through, step-by-step, how to build a hands-off codebase using agents from scratch! Please take a look. youtu.be/dXyPfslMLYE?...
I cover starting scaffolds with AGENTS.md and specs, issue management with beads, agent queuing and orchestration with a tool I wrote, lelouch.
We did it! aep-2026 is now live! aep.dev/aep-2026/1/ come learn about our API standard and CLIs, UIs, terraform providers, and more that can work with any compliant API! #api #api-design #cli #ui #aepdev
A screenshot of the aep.dev site that shows rule 300, which establishes the rules for edition-based versioning.
The aep-2026 edition has shipped! 🚀
This release establishes long-term stability as a critical foundation. The new versioning mechanism and release cycle supports our tooling ecosystem, which now includes a Terraform Provider, CLI, MCP Server, and more.
Read more: aep.dev/blog/aep-202...
Brandon Patton (Merlin Pool Creative)のCaps & Stems: The Mushroom Hunting Board Gameを@kickstarter.comで要チェック! www.kickstarter.com/projects/mer...
For those who prefer video, @rambleraptor.bsky.social has added a walkthrough showing how the Terraform provider works: www.youtube.com/watch?v=dL3E...
Fully code generated Terraform provider! Check out terraform-provider-aep: www.youtube.com/watch?v=dL3E.... Shout out to @rambleraptor.bsky.social for all the great work here #aepdev #apis #terraform @aep.dev
youtu.be/cq1qEjwSYkw?... okay really looking forward to this
Just leaned vscode will automatically pull schemas from schemastore.org to validate json / yaml files that are registered: stackoverflow.com/questions/60....
Very, very cool. #vscode #jsonschema
Congrats #aep-dev! a Terraform provider that can work with any aep-compliant API is pretty amazing!
There was a lot of effort in getting Terraform right during my time at Google. I'm super excited that we're making steps toward that work becoming O(1) for well-designed, resource-oriented APIs.
The AEP project (especially this Terraform provider) feels like a culmination of a large portion of my career. As an industry, we spend so much effort trying to manually translate our APIs to the tools that users use. AEPs are proving that better-designed APIs lead to stronger tooling faster.
Sometimes I wonder how many decades of human life has been spent on slightly adjusting boxes and arrows in powerpoint slides.
Maybe he's too busy raising tarrifs to go find those eggs
What to know what's cooking with for the AEP project in 2025? Learn about our plans and roadmap, including:
- The path to a major release
- The tooling to accompany it
- Upcoming community events
- Our longer term goals
- … and how to get involved!
aep.dev/blog/2025-ro...
Fwiw I use steam big picture on my Ubuntu desktop, runs games great!
API Enhancement Proposals (AEPs) are a specification and tooling for building best-in-class resource oriented APIs.
Where did the AEPs come from? What are the underlying motivation and philosophies of the project? In our latest post, @y.tsutsumi.io explains that and more! aep.dev/blog/history...
I am sooo excited! Possible 2-in-1 laptop?
Yesss!!! Finally!
Wanted to write about my twist on the "STAR" interview answer format. I call it "RSA" (rizza): y.tsutsumi.io/rsa
Is there really no atomic library / functionality in Python (e.g. for incrementing an integer?). Seems like requiring locks for this is a very expensive way of doing it. I guess asyncio's cooperative scheduling seems like the most robust solution. discuss.python.org/t/atomic-and.... #python
Just don't use substack please. That site always tries to make me log in before I can read the article
Posted about some thoughts on why shallow, small packages are an ideal code organization for bazel: y.tsutsumi.io/bazel-many-a... what are your best practices around code organization? #bazel
An anonymous person at the CDC just archived all the public CDC datasets as of 1/28 and uploaded it to archive.org
Framework Laptop 13 (Intel Core Ultra Series 1)
We're excited to announce the latest Framework Laptop 13 with Intel Core Ultra Series 1, an optional 2880x1920 120Hz display (ideal for 2:1 scaling on Linux), and new configurations for businesses with 3 year warranties. Pre-orders are open now.
TIL that enums and boolean checking compile down to nearly identical assembly code in Rust: godbolt.org/z/bhKP8sMh1.
I would have hoped so, but it's good that it's actually the case. So you can replace booleans with more semantic enums without fear! #rust #rustlang #compilers