


Alpha
6.9K posts

@AlphaOlomi
Tech Lead | Software Engineer | Open source






Introducing braver-tz – the game-changing script that solves our Brave access woes! 🚀 It grabs the latest stable Brave Browser directly from GitHub releases, bypassing blocks entirely. Works on ANY OS (macOS, Windows, Linux) and architecture! github.com/maotora/braver… Try it! 🫶



New on the Anthropic Engineering Blog: Long-running AI agents still face challenges working across many context windows. We looked to human engineers for inspiration in creating a more effective agent harness. anthropic.com/engineering/ef…

Better Auth v1.4


Claude Code users (especially Laravel/Symfony): you REALLY want to re-install Claude Latest Claude versions will load your `.env` (including secrets!) into Claude Code. Claude then runs your tests with local config instead of testing config! I found this because my Laravel tests in Claude Code failed with CSRF errors (419), but pass in my terminal. That is caused by @bunjavascript (NodeJS alternative). Claude Code recently moved from "install via NPM and run via Node" to "download a self-contained binary". Except that binary is running Bun under the hood. And Bun automatically loads `.env` files (wtf!) Which means that your Laravel local config (.env) gets loaded, forcing tests to run in `local` environment instead of `testing`, with your entire local config (including tokens & such). If your local DB gets wiped because of Claude, you now know why. You really want to move back to the `npm` version of Claude Code: rm ~/.local/bin/claude npm install -g @anthropic-ai/claude-code