Silver Hamster is a community where you meet top designers, developers, or digital marketing experts to build your next project and make it a success. 🍻
@AntonMartyniuk The API-first one is underrated. Two of our teams once built against different assumptions of the same endpoint and we lost two weeks untangling it. Agreeing on the contract first would have caught that in a day.
@alighodsi@rxin We run plain Postgres for most client apps and the single box only starts to hurt at a scale most teams never see. Still worth knowing what the next step looks like when it does.
@chessMan786 Yes. Ours kept passing checks while the DB pool was gone, the check only hit a ping endpoint. Making it touch a real dependency helped more than tuning the interval.
@philhchen The problem finding part matches what we see in hiring too. Give someone a messy repo and an agent, and the strong candidates spend their first minutes deciding what's actually worth fixing.
@mstockton We keep a similar wiki for client codebases. Biggest win for us has been onboarding, a new dev gets productive in days instead of weeks because the context is already written down.
@wookash_podcast@rfleury His arena allocator write-up changed how I think about memory lifetimes. Good call cutting the code review as its own video, easier to point teammates at it.
@remkusdevries We've seen pages score all green and still feel slow for someone on a mid-range phone. The field data from real users usually looks worse than the lab score.
Your engineers' time is too expensive to spend babysitting build servers.
Self-hosted CI/CD is cheaper and faster, but someone has to run it. That's the work we take off your plate, so your team ships features, not plumbing.
https://t.co/GrlbAPsSGT #DevOps
@_svs_ This matches what we see on the job. The deep divers are the ones who'll take the bug nobody else wants and stay on it till it cracks. In an interview the closest signal I've found is asking about the nastiest bug they ever chased, and why they kept going.
@PythonDvz Claude Code, easily. The biggest win for us is dropping it into a messy old client repo to explain what a function actually does. Saves more time than the writing part.
@patilvishi Pagination is the first fix for sure. Also it returns the raw User entity, so fields like the password hash can leak unless you map to a DTO.
@SahilExec Good point on relative paths. One catch: res.redirect('//evil.com') still sends users off-site since browsers read // as a full url. We reject anything starting with // or \ before redirecting.
@kylegawley The boilerplate point is underrated. When the agent has clear patterns to copy, the code stays clean. On a fresh repo with no conventions it drifts fast and we spend more time cleaning up.
@ameetm_ Agree the fast part is basically handled now. The clean part still needs someone to actually read what the AI wrote, or it just adds a new kind of debt.
@akshay_pachaar Spec and evals get all the attention, but security oversight is the part I'd watch. An agent that can deploy and register enterprise resources from plain English can do real damage fast if it slips. Does the CLI let you limit what it's allowed to do, or is that still on you?