Topic: Developer Experience

6 posts

Why We Built Flipster

Flipster is our open source library for using OpenFeature safely in production. It came out of adopting trunk-based development, where feature flags stop being a nice to have and become the thing that lets a deploy and a release be two separate decisions.

It wraps the OpenFeature SDK behind an interface you can inject and test like any other dependency, and puts a circuit breaker in front of the provider. Defaults move out of the call sites and get declared once, in one place, so a degraded flag provider never becomes a production incident.

Read more ...

Leveraging Cursor in a Large-Scale Project: My First Experience

Onboarding onto a large LMS codebase, I used Cursor not to write features faster, but to build a mental model: where legacy PHP meets newer REST layers, how events propagate, and where permission checks actually live.

This post walks through two real explorations (user impersonation across stacks and a permissions trace), with anonymized prompts, what the tool got right and wrong, and a small playbook you can reuse on your own brownfield project.

Read more ...