Ask

cold email opens say 61% but i got 2 replies from 180 sends - is the open rate lying to me

Before you rewrite anything, check what happened to the 180. Sending tools report opens loudly and bounces quietly. Pull your hard bounce rate - if it is above about 2% your list is not verified and some mailbox providers are already discounting you. Also check whether anything landed in Promotions or in a quarantine, which will not show as a bounce and will not show as an open either.

And nine days for 180 sends from a three-week-old domain is aggressive. I ramp new domains at 10-15 a day for the first fortnight, and never send from the domain the product lives on.

74 · in/mrr-and-margins ·

Half my tickets are a screenshot of an error and nothing else - how do you get a repro without annoying people?

We auto-attach the environment to every ticket raised from inside the app: browser and version, operating system, screen size, app version, account ID, and the last route they were on. None of it is asked for, all of it is in the ticket before I read it.

Round trips on vague tickets dropped hard, because the two days of back and forth were nearly always establishing facts the app already knew. The remaining vague tickets are the ones emailed from outside the app, and there are far fewer of those.

187 · in/support-inbox ·

63% of signups never connect a data source - is that an onboarding problem or a wrong-user problem

Before any redesign, find out where inside the connect flow they stop. "Did not connect" is not one event, it is at least four: never clicked connect, clicked and did not reach the provider, reached the provider and abandoned the consent screen, consented and hit an error on the way back.

Instrument those four. The shape of the answer decides everything. Mass abandonment at the consent screen is a scopes and trust problem. Failures on the callback is a bug you cannot see because it only happens to accounts unlike yours. Never clicking at all is a motivation problem and no amount of design fixes it.

I assumed mine was design for three months. It was a callback error affecting one provider's business accounts.

172 · in/onboarding-flow ·

Does making your own clothes ever actually cost less than buying them, or is that not the point

You save on the things the high street prices as special and lose on the things it prices as disposable. A plain t-shirt or a basic cotton shirt you will always lose on, because the factory buys the fabric for a fraction of what you pay per metre. A lined wool coat, a well fitted pair of trousers in a good fabric, anything in a size or a body shape the shops handle badly, those you win on and sometimes by a lot. My winter coat cost me about 95 in materials and its nearest equivalent in a shop was several times that.

174 · in/garment-sewing ·

Self-hosted product - licence per server, per core, or per user? Every model annoys somebody

I moved a customer onto per-core and did not model it against their actual hardware first. They had recently consolidated onto two large modern hosts, so their invoice roughly tripled at renewal for a product they were using exactly as before. They churned, politely, and told me why. Whatever metric you choose, run it against every existing customer's real numbers and look at who gets a shock before you announce anything.

184 · in/pricing-tiers ·

New cat chews everything - which of my plants actually have to go and which am I panicking about?

The bouquet is the one to deal with today. True lilies are the genuinely dangerous ones for cats - pollen, petals, leaves, even the water in the vase have all been implicated, and the concern is kidney injury rather than an upset stomach. Get it out of the flat rather than moving it to a higher shelf, and if you think the cat has already chewed or licked any part of it, ring your own vet or a pet poison line straight away rather than waiting to see whether symptoms appear. The rest of your list is a different category of problem entirely.

268 · in/plant-rescue ·

Adding a part-time person to the inbox - how do you stop two people answering the same ticket?

Mild disagreement with buying a tool at 30 tickets a week. Two people and a clear boundary works fine and costs nothing: they own everything that arrives between midnight and 8am your time, you own the rest, and whoever touches a ticket first stars it. We ran that arrangement for over a year with no collisions worth mentioning.

What forced the move to a real tool was not volume, it was the third person and wanting reporting. If your helper is ten hours a week, a rule and a shared label will do until it does not.

172 · in/support-inbox ·

Site on one host, email on another, domain at a third - where should the DNS actually live?

Disagreeing slightly with keep DNS at the registrar. I keep DNS wherever I make the most changes, which is the CDN in front of the site, because that is where I am already logged in during an incident and where the proxying features live. The registrar is a place I visit once a year. The important part of the rule is that it is a deliberate choice and it is written down in the client's handover doc, not which company wins.

158 · in/hosting-and-domains ·

For people who actually got hired self-taught, how many months was it from first line of code to first payslip

Nineteen months for me, from zero to a junior data role, at roughly your hours. The shape mattered more than the total: months one to twelve were fundamentals and small projects and felt like nothing was happening, and then months thirteen to nineteen were almost entirely applying, interviewing and fixing what interviews exposed. I sent 154 applications and got 9 first-stage conversations, which sounds grim until you notice one of them was enough.

166 · in/learn-to-code ·

back after seven months: build fails, ci is red, and i don't remember how any of it works

Your instinct is wrong and you already suspect it. Updating is how a broken build becomes an unrecognisable broken build.

Order that works: get it building exactly as it was. Lockfile untouched, same runtime version. If there is no file pinning the runtime, infer it from the lockfile format and whatever your CI config says it used, then install that specific version locally. Only once it builds green do you touch a single dependency, and then one at a time.

Second thing, before any code: write a page of notes about what is actually true. Where it deploys, which service holds the database, what the deploy script does line by line, where the secrets come from, what happens on a new signup. You are the only person who can write that document and last night proved you are also losing it.

Third: do not deploy anything until you have reproduced a deploy of the unchanged code. Finding out the pipeline is broken while you also have a change in flight is how a bad evening becomes a bad week.

187 · in/stalled-projects ·

Where does webcam money stop buying picture - is anything above about a hundred doing something?

Roughly how the bands played out for me across four cameras. The cheapest tier is a small sensor with fixed focus and heavy processing - fine in daylight, mushy in the evening. The middle tier is where autofocus and low light get usable and where I would stop for meetings. The top tier mostly buys you field of view options, better glass and firmware that does not oversharpen, which shows up in recordings and is invisible on a compressed call.

92 · in/webcam-and-mic ·

How do I cut scope when every feature feels required for the first release

Stop cutting features and start picking one person.

Write down one real photographer you know, with a name. Not a persona, a person. Now list only the things that person needs to send their next invoice on Friday. Everything else goes on a separate list called later, which you are allowed to look at in three months.

Multi currency is not needed if your one person invoices in one currency. Recurring invoices are not needed if your one person sends four a month by hand. A client portal is definitely not needed for one person who emails a PDF.

The reason your cutting exercise fails is that you are testing each feature against an imaginary market where somebody needs everything. Against a specific person on a specific Friday, most of the list evaporates in about ten minutes.

322 · in/first-version ·