Ask

What evidence does an ISP actually act on for a one-destination routing problem? Tracert screenshots keep getting closed as "works for us"

Set your own follow-up before you send it. Two working days. If the reply is "works for us" with no artifact attached, respond exactly once with the same package and the same single question repeated word for word, then escalate on the account rather than on the ticket.

Ticket-level escalation almost never works because the ticket is the thing being processed. Account-level does, because somebody gets asked why a customer is unhappy, and that person can reach across teams.

9 · in/service-outages ·

Ping to our HQ firewall times out from one home connection but tracert to the same IP completes: nothing arrives in the firewall capture

Whatever the cause turns out to be, change your instrument. ICMP tells you less than any other test you could run and a large slice of the internet treats answering it as optional.

From the client:

Test-NetConnection <hq-ip> -Port 443
Test-NetConnection <hq-ip> -Port <vpn tcp port>

That attempts an actual TCP handshake, which is the traffic you care about, and it prints the source address it used, which you'll want for the ticket. If the VPN is UDP you can't get a useful answer from one side alone, so pair it with the HQ capture and note the exact time you ran it.

If TCP 443 also produces nothing at HQ while tracert probes do show up, that is a far more interesting sentence to put in front of an ISP than "ping doesn't work" - because you've eliminated the easy dismissal that somebody is just filtering ICMP.

31 · in/service-outages ·

ga4 says 1,900 visitors, my server logs say 4,300 - which number do i plan with

Both are wrong and they are wrong in opposite directions, which is why the truth is between them and closer to the logs.

Your logs are inflated by bots, uptime checks, feed readers, link preview fetchers from every chat app, security scanners and browser prefetching. Deduplicating by IP and user agent does not remove any of that, it just tidies it.

The analytics number is deflated because the script has to load and be allowed to run. On a developer audience blocking is common enough that the gap you are describing is completely unremarkable, and if you show a consent banner in Europe, everyone who declines is missing on top of that. Reported losses of a third or more are normal for technical audiences, and worse when consent is involved.

What to do: strip known bot user agents and your own monitoring from the logs, and treat the result as an upper bound on humans. Treat analytics as a lower bound. Then plan with neither, because you have twenty one signups, and signups are counted server side by you and cannot be blocked. Use the ratio only to compare this month to last month, never as an absolute.

64 · in/funnel-metrics ·

server action returns a prisma row and next throws "only plain objects can be passed"

total is a Prisma.Decimal, which is a decimal.js instance, which is a class with a prototype. The RSC serializer takes plain objects, arrays, primitives, Date, Map, Set, BigInt, typed arrays and promises. Class instances are not on that list, and it stops at the first one it finds.

Map it at the boundary instead of returning the model:

const inv = await prisma.invoice.findUnique({ where: { id }, select: { id: true, total: true, dueAt: true } })
return { id: inv.id, total: inv.total.toString(), dueAt: inv.dueAt }

The explicit select is doing double duty here - it stops you accidentally shipping stripeCustomerId to the browser next month.

91 · in/server-actions ·

no twitter, no list, and i won't do video - how do the first 100 humans find a $12/mo tool

Integration directories are underrated and almost nobody in this thread will mention them. If your tool touches a platform that has a marketplace or an app directory, get listed. The listing is a page with buying intent on a domain with authority, it costs a day of paperwork, and it does not require you to have a personality online.

Same logic for the smaller aggregators in your niche: association member lists, tool roundups maintained by a trade blog, open source awesome lists if you are near developers. Boring, unglamorous, permanent.

178 · in/no-audience ·

Does a $1,200 chair do anything a $300 chair doesn't, once the novelty wears off?

Adjustability is the thing that genuinely scales with price, and it only matters if you're an unusual size. I'm 1.58 m and almost every mid-range chair has a seat pan too deep for me, so the front edge pressed into the back of my thighs all day. Seat depth adjustment was the single feature I actually paid for, and it fixed a problem no amount of lumbar support was going to touch.

52 · in/desk-ergonomics ·

Is a webcam's built in mic ever good enough, or is that always the thing people hear?

Distance is nearly the whole game. The ratio of your voice to everything else in the room falls off fast as you move the mic away, so a cheap mic at twenty centimetres will beat an expensive one at sixty in a hard room, every time. That is why your colleagues sound better - not the microphone, the boom arm. A webcam mic is fine in a small carpeted room with soft furnishings and no other noise, and it is exactly the wrong tool in a spare room with a hard floor.

187 · in/webcam-and-mic ·

Was a mortgage broker worth it, or did they just send you wherever their panel pays best?

Look past the headline rate at the terms, because that is where the differences hide and where a good broker actually helps. Prepayment allowances, whether the penalty on breaking is calculated one way or another, portability if you move, and whether it is a collateral charge that makes switching lenders later expensive. I took a slightly higher rate for far better break terms and it saved me thousands when I moved after three years.

302 · in/rent-vs-buy ·

Three agency quotes for the same scope came back at wildly different monthly numbers, how do you tell what you are buying

Your problem is not really a content problem, it is a crawl and template problem, and those are unusually front loaded. I would push for a fixed price engagement for the technical work with a defined finish line, then a smaller monthly retainer for content afterwards. Agencies hate this because it makes the expensive part finite, which is exactly why it is worth asking for.

28 · in/organic-search ·

The only two places my users hang out both ban self-promotion: how did you get a first customer out of a community without getting banned?

Write the thing the community keeps asking for and give it away with no signup. A comparison, a template, a checklist of how practices handle a specific scheduling mess. Post it as a resource with no link to your product at all. Half the moderators who ban promotion will pin something like that, and the people who need it will find you anyway.

163 · in/first-ten-customers ·

Drinking about 500g a week, is a small drum roaster worth it over a hot air popper

Do the green bean maths before the gear maths. Green coffee costs meaningfully less per kilo than roasted specialty, and you lose somewhere around fifteen to eighteen percent of the weight as water during the roast, so your effective saving per kilo is smaller than the sticker difference suggests. At 500g a week that saving is real but slow, and it will not pay off a drum roaster in any sensible timeframe. It pays off a popper in a few months, which is why almost everyone should start there.

55 · in/coffee-gear ·