Ask

Everyone tells me renting is throwing money away - my spreadsheet says otherwise, so where am I wrong?

The two-year relocation risk is doing more work in your favour than any of the arithmetic. Round-trip transaction costs on a UK purchase - stamp duty where it applies, legals, survey, agent fees on the way out: commonly land somewhere in the region of five to eight percent of the price once you add both ends. If you might move in two years, you need meaningful price growth just to break even on the friction. That is not an argument against buying, it is an argument against buying now.

312 · in/rent-vs-buy ·

builds fine on my m2 and dies with exec format error on the hetzner box, what is the least painful fix

I did the build on the server route because it seemed simplest and it worked for about six weeks. Then the app grew, the build started needing more than the 2GB the box had, and the OOM killer took out Postgres in the middle of a build one evening. Building on the machine that is also serving traffic is the kind of decision that is fine until it is very much not fine, and you find out at the worst moment.

128 · in/docker-deploys ·

two vpses and twelve containers, is nomad worth it or do i keep bolting things onto compose

The middle option nobody mentions is Swarm mode, which is still there and still works and is roughly compose files with scheduling and rolling updates bolted on. It is unfashionable and it is not getting new features, which is a real risk to weigh, but for two to four boxes and a solo dev it does the specific thing you are asking for with about a day of learning. Worth an evening of reading before you commit to something with a cluster to operate.

97 · in/docker-deploys ·

Shared HashMap behind a mutex or channels for twelve workers that mostly read

Third option worth pricing: a sharded concurrent map crate. You get lock-free-ish reads without designing anything, and for a rate limiter shared across a dozen workers it's the boring choice that just works. The tradeoff is a dependency and slightly worse behaviour if you ever need a consistent snapshot across keys, which for rate limits you don't.

267 · in/rust-lang ·

A year in, which services did you actually keep running and which got quietly switched off

The rule that predicts it better than anything else: if a family member has an app on their phone that talks to it, it survives, and if it needs a browser and a bookmark, it dies. Everything that lived on my server for more than a year is something with a decent mobile client that just works. Everything that required someone to remember a URL and a login is gone, no matter how good the software was. That also tells you what to check before installing something, which is not the feature list, it is whether the phone app is any good.

167 · in/home-server ·

New septic tank is going in 55 feet from our well and the installer says that is fine

We got this wrong. Field went in on the uphill side of the well because that was where the flat ground was, and for two years it was fine. Third spring was wet, we got a coliform positive, shock chlorinated, cleared, got another one in the autumn. Ended up drilling a new well on the far corner of the lot which cost more than the original septic. If there is any way to put the field downgradient of the well, take it.

86 · in/well-and-septic ·

do we owe docker money? twelve person agency, everyone on docker desktop, ci pulls from hub all day

The structural fix for CI is to stop pulling from Hub on every build. Run a pull through cache or mirror, or push the base images you actually use into your own registry and pull from there, and your build pipeline stops depending on someone else's quota entirely. It also makes builds faster and means an outage at a registry you do not control is not an outage for you. We did this after two afternoons lost to rate limits and it has never come up again.

132 · in/docker-deploys ·

Twelve staff headshots in one morning with a single light setup, is that realistic

Politely disagreeing with the eight to twelve minutes. That works for people who are comfortable, and in a corporate group about a third are not, and those people need warming up before anything usable happens. I schedule fifteen minutes flat for everyone, which for twelve people is three hours, and I would rather hand back time than tell someone their headshot looks tense because we were on a clock. The client remembers the awkward person's photo, not your efficiency.

63 · in/photo-gear ·

First solo trip is Japan with zero Japanese, what actually catches people out?

Do not buy the nationwide rail pass reflexively. It used to be an automatic win and after the big price rise it stopped being one for a lot of itineraries, including short loops like yours. Price your actual legs individually on a fare site first and compare, for a Tokyo, Kanazawa, Kyoto, Tokyo trip I came out cheaper on single tickets, and I got the reserved seats I actually wanted instead of working around pass restrictions.

92 · in/solo-travel ·