Ask

posted a 40 second demo, nine days later a near identical app is on the same three directories

I went through this in spring and changed two habits afterwards, both of which I would recommend. One, demos now show the outcome rather than the mechanism - you see the finished report, you do not see the four settings that make it good. Two, every clip has a small watermark in a corner that is annoying to crop. Neither stops a determined cloner but both raise the effort a lot, and the whole appeal of cloning is that it is cheap.

18 · in/build-in-public ·

missed the 12:01am pt slot on product hunt and went live at 9am - how much does that actually cost

The board runs on a 24 hour cycle that resets just after midnight Pacific, and everything added later in the day competes for the leftovers of that same window, so yes, you lost hours you can't get back. It is not fatal.

Send your list now. Those 300 people are the highest-intent traffic you will get all day, and holding them back to protect a ranking is backwards - the ranking exists to get you traffic and you already have traffic. I'd rather finish sixth with 90 signups than second with 20.

74 · in/launch-day ·

missed the 12:01am pt slot on product hunt and went live at 9am - how much does that actually cost

Ran two. Day one traffic on both was real but shallow: a few thousand visits, signup rate about a third of what my normal traffic converts at, and nearly all of it gone within 72 hours. The durable part was three or four conversations with people who actually had the problem.

Measure the day in conversations, not placement. Placement mostly buys you a badge and some backlinks.

51 · in/launch-day ·

only 6% of visitors scroll past the fold - hero problem or traffic problem

Mild disagreement with treating scroll depth as the problem. Scroll isn't the goal, the click is. I've had pages with awful scroll depth and fine signup rates, because the button was above the fold and the six words did their job.

What's your signup rate from the same 1,100? If it's one or two percent you have a working page and a metric telling you nothing. If it's 0.1%, something is wrong, but a fifth headline rewrite is unlikely to be it.

34 · in/sunset-or-sell ·

same person, 11 gmail addresses with dots in different places, all on free trials

One thing from doing this last month: check your database constraints before you change anything. Mine had a unique index on email as typed, so those eleven rows already existed, and when I added a unique index on the normalised column the migration failed on the existing duplicates and I hadn't planned what to do with them.

Ended up making it non-unique and just indexing it for lookups, which is what I should have done from the start.

19 · in/refunds-and-abuse ·

every reply came on touch 3 or 4 - where is the line between follow-up and pestering

Broadly agree, with one correction. The published sender requirements - authentication, easy unsubscribe, keeping complaint rates low - are aimed at bulk senders, and the loud thresholds you read about apply from around 5,000 messages a day to one provider. At forty personal emails a day you are nowhere near that.

What still applies to you is the underlying signal: complaints and lack of engagement. A small sender with a bad complaint rate gets filtered just as surely, there is just no dashboard telling you it happened. Authenticate properly, send from a domain you can afford to burn, and watch replies rather than opens.

23 · in/mrr-and-margins ·

jwt custom claims or a memberships join in every policy at 200 orgs

Claims are a cache. Treat the staleness the way you would treat any cache: bound it and be explicit about what you are willing to serve stale.

Concretely - put membership in the token, drop the access token lifetime to 10 or 15 minutes, and force a token refresh at the moment membership changes so the person doing the removal sees it take effect immediately. Your exposure is then "a removed member can read for up to 15 minutes", which for most B2B products is the same order as "we deactivate accounts within the hour" and nobody blinks.

Where I would not do this: anything where removal is an emergency - a compromised account, a fired employee with payroll access. For those tables keep the join and pay the 8ms, because 8ms is cheap and a 15-minute window is not.

43 · in/rls-and-policies ·

the work laptop is the only computer i own - what is the minimum fix to get a side project off it

Have administered a fleet, can confirm the boring version of this: default configs commonly report installed applications and often browser extensions, and it is all timestamped. Nobody is reading your commits for entertainment. But if there is ever a dispute, that inventory is sitting right there and it is dated, which is exactly when you do not want it to exist.

77 · in/nights-and-weekends ·

consulting pays $6.2k a month, the product makes $210 - how do people actually taper without falling off a cliff

Raised rates. That's the whole strategy and it's the one nobody wants to hear. Went from hourly to a fixed monthly fee for a defined scope, roughly 40% more money for about 60% of the hours, and one of the two clients said no. The one who said yes is the one I still work with four years later.

That freed a day and a half a week, and a day and a half is a completely different animal from six evening hours. You can do sales calls, you can answer support during business hours, you can think. Evenings are for code. Days are for the business.

187 · in/service-to-saas ·