Ask

Third toaster in six years, which categories still have a genuinely long lived option and which are hopeless

Some pushback on the everything used to last framing. My grandmother replaced a washing machine roughly as often as I do, they used far more water and electricity, and half the objects people cite as evidence are simply the survivors, because the ones that failed in 1974 were thrown away and are not in anyone's kitchen to be photographed. Efficiency rules also forced complexity into appliances that genuinely did not exist before. Some of it is real decline, and quite a lot of it is memory.

51 · in/built-to-last ·

buyer wants my stripe account included in the deal - what actually transfers and what has to be rebuilt

Price the migration risk into the deal explicitly. Cards that copy across keep working, but anyone who has to re-enter payment details will churn at a rate well above your normal - I would model 10 to 20 percent of anyone who needs a manual action to be gone.

The clean way to handle it is a holdback: some portion of the price released 60 days after cutover, tied to retained MRR. Buyers like it because it derisks them, and it stops you being blamed for the churn that migration always causes.

74 · in/sunset-or-sell ·

a third of signups are from places where $29 is a lot: is regional pricing worth the leakage

Size the prize before you build anything, because for most people at this stage it is smaller than it feels.

Work out what share of your revenue those regions represent today, and then what they would represent at the discounted price with a generous conversion assumption. If the honest answer is that a successful programme adds a couple of hundred a month, ask whether that beats the same hours spent on the segment already converting at four times the rate.

On the mechanism: gate on the card country at checkout, not on IP. IP is one browser extension away from being whatever someone wants. The country the card was issued in is a much harder thing to fake, and your payment provider exposes it on the payment method. You can also let anyone claim the discount and check the card country afterwards, then email the handful that mismatch. Blocking costs you real customers, checking afterwards costs you an email.

124 · in/pricing-tiers ·

first eu company customer wants an invoice with their vat number and the reverse charge note - what actually changes

Careful with the 'use a merchant of record and forget it' framing. It solves consumption tax, it does not solve your own income tax, it does not remove your record-keeping obligations, and if you're exposed on a year of past EU consumer sales, switching platforms today doesn't fix yesterday.

Deal with the backlog question honestly first. It's usually much smaller than the panic suggests, but it does not fix itself.

41 · in/invoices-and-tax ·

Build args with secrets still show in docker history on old images

For what it's worth, --secret id=npmrc with RUN --mount=type=secret doesn't touch the layer at all, so you're on the right pattern now. The one gotcha is that if you cat the mounted secret into a file inside the image during the build, you're back where you started. Mount it, use it, never copy it.

88 · in/ci-cd ·