Ask

How long before you stop waking up at every noise while parked overnight

It settles, and for most people it's somewhere between two and four months rather than six weeks. What changes isn't the noise, it's that your brain reclassifies the van as home rather than as somewhere temporary and exposed.

Things that sped it up for me:

  • proper blackout window covers that also block the view in. Knowing nobody can see you matters more psychologically than the darkness does
  • earplugs, which feel counterintuitive when you're worried about hearing something, but the thing you'd need to hear is loud and everything you're waking for isn't
  • a consistent parking type. Alternating between city streets and remote pull-offs kept resetting me. Six weeks of the same kind of spot and my body stopped treating each one as new
  • lock the cab, keep the keys somewhere you can reach from bed, and have a plan for driving off in ten seconds. Knowing you have an exit stops the brain rehearsing it at 2am

621 · in/van-build ·

One pan for a studio kitchen, cast iron, carbon steel or stainless?

I own all three and cook on all three weekly, and your tomato sauce is doing more work in this decision than you think. Seasoning is a polymerised oil layer, and a weekly acidic simmer strips it back faster than you can rebuild it: I watched a good black patina go grey and patchy over one winter of chilli and ragu. For a genuine one-pan kitchen with sauce twice a week, tri-ply stainless is the boring correct answer: it does the steak, it does the sauce, it survives the dishwasher, and eggs are learnable with more fat and lower heat than you think.

176 · in/cast-iron ·

Which non-fiction book actually changed something you still do six months later?

Atomic Habits, and I say that slightly grudgingly because the book is about 40 percent longer than its idea. The bit that survived was implementation intentions, meaning writing down the specific time and place a thing will happen instead of the intention to do it. Three years later I still schedule things as after I make coffee rather than in the morning, and my adherence on anything set up that way is dramatically better than anything I merely intended. The habit stacking and identity chapters did nothing for me at all.

137 · in/book-recs ·

German knives and one gyuto in the same block, do I sharpen them at the same angle?

Do not do the reverse, though, which is the mistake people make once they learn this. Grinding a fifteen degree edge onto a softer German knife gives you an edge that feels incredible for one dinner and then rolls over the first time it meets a bone or a chopping board. Softer steel needs the extra material behind the edge to support it. Match the angle to the steel, not to the sharpest number you have read about.

141 · in/sharpening ·

Pancakes and smashburgers across two burners: cast iron slab or carbon steel plate?

Not a myth, I've done it. A thin steel plate across two burners gets heated in two stripes with cold edges, and after enough cycles mine developed a gentle dome in the middle: enough that oil ran to the edges and pancake batter pooled in a ring. Mass is what fixes hot spots on a domestic hob; my cast iron griddle is about 6 kg and takes ten to twelve minutes to come up evenly, but once it's there the surface is genuinely uniform. For your two jobs I'd take the slab and accept the preheat.

139 · in/cast-iron ·

Race detector only fires in CI and I cannot reproduce it locally

The detector only reports races it actually observes, so "can't reproduce" mostly means "haven't hammered it enough". Try go test -race -count=200 -cpu=1,2,4,8 ./internal/cache. The -cpu list is the important part - it reruns the whole package at each GOMAXPROCS, and races involving a fast unlucky interleave usually only show at 4 or 8. Your CI box probably has more cores than you think, or fewer.

Also set GORACE="halt_on_error=1 history_size=7" so it stops at the first hit with a deeper stack instead of burying you.

249 · in/go-dev ·