Ask

Cursor Composer 2.5 vs Claude Sonnet on a large multi-service backend - worth switching after hitting the $20 plan limit?

First thing to check before you conclude anything about cost: which variant you are actually on. The gap between the standard and fast tiers is roughly six times on both input and output at the published rates, and fast is the option people end up leaving selected because it is the one that feels good in a demo.

I spent two weeks believing the cheap model was expensive because I was running the fast variant on long agent sessions. Switched to standard for everything except interactive edits and the allowance stopped evaporating. Same model, wildly different monthly number.

29 · in/ai-pair-coding ·

Is a vertical mouse actually worth it, or do you just relearn the ache somewhere else?

Budget two weeks of worse pointing accuracy as the entry fee. In the controlled comparisons I've read, user satisfaction with vertical mice is good but time-to-target is measurably longer, and it doesn't fully close. If you do anything precision-heavy, CAD, masking in photo work, competitive shooters: plan around that. For spreadsheets and email you stop noticing by the second week.

97 · in/desk-ergonomics ·

One job per user per day for 40k users, enqueue them all at midnight or fan out?

If you keep the enqueue model, at least bucket it. Twenty four crons, each handling one timezone offset, each enqueueing roughly a twenty fourth of your users an hour before their send time. Your peak becomes a couple of thousand rows instead of forty thousand, it runs in seconds rather than twenty minutes, and a failure affects one timezone rather than everybody. That is a half day change and it does not require rethinking the architecture, which matters if you are firefighting rather than redesigning.

143 · in/queues-and-jobs ·

Gels give me stomach cramps after 90 minutes and I have tried three brands

Two mouthfuls of water is almost certainly the problem. A standard gel is a very concentrated sugar solution and it needs a real dilution to leave your stomach, otherwise it sits there pulling water into the gut, which is exactly the heavy cramping feeling you are describing. The rule of thumb I was given is 150 to 200ml of plain water per gel, and drinking it over a minute or two rather than a gulp. Also check the carbohydrate type: gels with a glucose and fructose blend absorb through two pathways and are much easier on most people than glucose-only ones once you are taking more than one an hour.

246 · in/distance-running ·

Node API holds 400 rps fine but memory climbs all day, is Go the fix or am I hiding a leak?

The nightly restart is a bandage over a leak, and a leak follows you into any language, because the usual cause is a data structure that only ever grows. Take two heap snapshots four hours apart under load, diff them, and look at what grew. Nine times out of ten it is an in-process cache with no eviction, a Map keyed by request or user id, or event listeners being attached per request and never removed. Fix that in Node and you can decide about Go on the merits rather than out of desperation.

188 · in/go-dev ·

Six thousand pounds, needs to survive two MOTs, what do you actually check on a UK used car?

I skipped a history check to save the cost of a takeaway and bought a car with outstanding finance on it. That was a genuinely frightening few weeks and it was entirely avoidable. Run the reg through a proper history check, look for finance, write-off markers and a mileage discrepancy, and match the numbers on the paperwork against the numbers on the car itself. It is the cheapest hour of the whole process.

104 · in/car-buying ·

About to cut the first hole in a 2016 Sprinter, what did you rip out and redo

I built the whole kitchen and bed frame before I had spent a single night in the van, and I got the bed height wrong by about 12cm. Everything else was designed around that height, so fixing it meant taking out the bed, the garage below it and one wall. That was two weekends and maybe 180 in wasted timber, and it would have cost nothing if I had slept on a plywood platform on blocks for a fortnight first.

197 · in/van-build ·

Did any wrap-style neck pillow actually let you sleep on a plane, or is it all placebo?

The wrap style works for exactly one failure mode: head falling sideways. If your head falls forward, which is what you described, the internal brace has to be positioned under your jaw and slightly forward, not at the side, and almost everyone wears it wrong on the first three flights. It is not placebo, it is fiddly. Practise it on a sofa before you get on a plane, which sounds ridiculous and is the difference between it working and not.

194 · in/sleep-setup ·

Steering shakes at 100 for the first ten minutes on cold mornings, then it stops

The other classic is flat spotting. A cold tyre sitting under the weight of the car overnight takes a set, and when you drive off the tread is not perfectly round until the tyre warms and relaxes. Softer winter compounds do it more than summer rubber, which is exactly why your summer set never behaved this way. If it is this, it goes away gradually over several minutes rather than suddenly, and it is worse the colder the night was.

132 · in/winter-driving ·

Desktop or laptop when I move flat every September: how much am I actually giving up?

Disagreeing with the desktop crowd here. You said you work in the library twice a week, which is sixty sessions a year where a desktop is useless to you. Buy a boring, well-cooled 14 inch laptop with as much RAM as you can afford soldered in, then add a second-hand 27 inch monitor and a keyboard for the desk at home. You will be slower on the compiles and happier every single day.

129 · in/pc-builds ·