Ask

new domain, 30 emails a day - how long do you warm it, and does warming do anything at that volume

That is the wrong way round. The 5,000/day figure is the point at which the full published sender requirements are enforced against you, not a line below which authentication is optional. SPF and DKIM are effectively table stakes for any sender now and cost nothing; DMARC is one of the things the bulk rules add on top.

Separately, a consumer mailbox has its own daily sending caps and a filter that is quite good at recognising 30 near-identical messages to strangers. 'Under the bulk threshold' does not mean 'invisible'.

24 · in/mrr-and-margins ·

my side project paged me at 3am on a work night, what is the minimum alerting that still lets me sleep

Your real bug is the connection pool, and it will come back. Exhausted pools on a small box are almost always one of three things: a route that opens a connection per request and never returns it, a long-running job holding a transaction open, or your pool size multiplied by your process count being higher than the database will accept.

Put a connection pooler in front of the database, cap the pool per process, and set a statement timeout so a single stuck query cannot hold a slot forever. Then add a restart policy so the process dies and comes back instead of sitting there wedged. That one turns a page into a log line.

141 · in/nights-and-weekends ·

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

Went from flat per-instance to per managed node, meaning the things the tool looks after rather than the machine it runs on. That metric had three properties I now insist on: the customer can count it without asking me, it goes up when they get more value, and it does not change when they reorganise their infrastructure.

Per-core failed the third test badly. A customer virtualises, consolidates, or buys newer hardware with higher core counts and their bill moves for reasons that have nothing to do with what they got from me. That is the conversation that loses renewals.

201 · in/pricing-tiers ·

Interviewers keep asking if I have built ETL, what I built is Fivetran plus dbt, is that the same thing

Politely disagreeing that it is only vocabulary. The one place it bites operationally is replay. If your transform runs after load and the raw landing zone is immutable and dated, you can rebuild any output from history whenever a bug is found, which is enormously valuable and is most of why the pattern won. If you transform before load and only keep the output, then discovering a bug in the transform in March means the January numbers are simply wrong forever and you cannot recover them. That is not a vocabulary difference, that is whether your pipeline is recoverable.

124 · in/data-pipelines ·

Why is versus written v in case names and vs everywhere else, and what did it mean in Latin

The bridge you are missing is the spatial sense. Versus is the past participle of vertere, so literally turned, and in Latin it gets used for turned toward or facing in a direction, which is also why you see it in place descriptions. Turned to face someone is a very short step from set against someone, especially once it is being used to describe two parties in a dispute standing opposite each other. English picks it up in the mid fifteenth century and it arrives specifically in legal phraseology, one party against another, not as a general preposition. The sporting and general uses are much later borrowings out of that legal use, which is exactly the order your style guide implies without explaining.

134 · in/word-origins ·

twelve people signed up for the live demo and one turned up, is a demo just the wrong channel this early

Numbers from doing this badly for a year: group demos ran at about a one in six show rate for cold signups, one to one calls booked directly off a reply ran at about two in three, and a three minute recording sent in an email got watched by roughly a third of recipients and produced more replies than either. Same product, same list. The format was doing almost all of the work.

151 · in/no-audience ·

Forty free trial signups and zero converted, where do I look first

Second thing worth checking: where did the 40 come from. If they arrived from a directory listing or a general launch post, they are curious rather than in pain, and curious people never convert regardless of what you build. Twelve signups from people who described a specific problem to you first will out convert 200 tourists.

342 · in/startup-traction ·

Everything sold as passive income seems to need ten hours a week, what has actually run without you?

I bought a small niche content site with two years of traffic history. It was not passive: it needed content updates, hosting broke twice, and one platform change halved traffic for four months. It did make money throughout and I did not do the writing, so it was passive-ish compared with consulting. If you go this route, assume the seller's traffic graph is the best month of its life and pay accordingly.

129 · in/side-income ·

product hunt launches all go live at 12:01am pacific - do i have to be awake at 8am in europe or is that a myth

Set expectations on the traffic before you plan anything around it. Placing well sends a spike of curious visitors, not buyers, and the conversion rate from that audience is typically far below your normal traffic because most of them are other makers.

My own numbers: a mid-table finish produced a visible spike on the day, a smaller tail for about three days, and then nothing. The number of paying customers directly attributable was small and I would not have called it a good use of the two weeks I spent preparing, judged on revenue alone.

Judged on other things - a permanent backlink, a page that shows up when people search the product name, and half a dozen genuinely useful pieces of feedback in the comments - it was fine. Just do not build a financial plan on it.

189 · in/launch-day ·