Ask HN: Should account creation/origin country be displayed on HN profiles?
Ask HN: Hearing aid wearers, what's hot?
Moderate loss, have worn them for many years, enjoy listening to music and nature, but also need help in meetings and noisy environments.
Not worried about cost and wanting to get one more good deal out of work insurance before I retire.
Ask HN: Scheduling stateful nodes when MMAP makes memory accounting a lie
The Context: We maintain a distributed stateful engine (think search/analytics). The architecture is standard: a Control Plane (Coordinator) assigns data segments to Worker Nodes. The workload involves heavy use of mmap and lazy loading for large datasets.
The Incident: We had a cascading failure where the Coordinator got stuck in a loop, DDOS-ing a specific node.
The Signal: Coordinator sees Node A has significantly fewer rows (logical count) than the cluster average. It flags Node A as "underutilized."
The Action: Coordinator attempts to rebalance/load new segments onto Node A.
The Reality: Node A is actually sitting at 197GB RAM usage (near OOM). The data on it happens to be extremely wide (fat rows, huge blobs), so its logical row count is low, but physical footprint is massive.
The Loop: Node A rejects the load (or times out). The Coordinator ignores the backpressure, sees the low row count again, and retries immediately.
The Core Problem: We are trying to write a "God Equation" for our load balancer. We started with row_count, which failed. We looked at disk usage, but that doesn't correlate with RAM because of lazy loading.
Now we are staring at mmap. Because the OS manages the page cache, the application-level RSS is noisy and doesn't strictly reflect "required" memory vs "reclaimable" cache.
The Question: Attempting to enumerate every resource variable (CPU, IOPS, RSS, Disk, logical count) into a single scoring function feels like an NP-hard trap.
How do you handle placement in systems where memory usage is opaque/dynamic?
Dumb Coordinator, Smart Nodes: Should we just let the Coordinator blind-fire based on disk space, and rely 100% on the Node to return hard 429 Too Many Requests based on local pressure?
Cost Estimation: Do we try to build a synthetic "cost model" per segment (e.g., predicted memory footprint) and schedule based on credits, ignoring actual OS metrics?
Control Plane Decoupling: Separate storage balancing (disk) from query balancing (mem)?
Feels like we are reinventing the wheel. References to papers or similar architecture post-mortems appreciated.
Ask HN: Have major security breeches been less common lately?
It occurred to me today that I couldn't remember the last time I'd seen a story like this.
Have news stories about major security breeches been less common during the (approximately) past two years compared to the two years before that?
I don't know how I would go about verifying this--I'd have to find a way to classify a "big news story" and "major security breech" and then go back through the news--but I'm wondering if others have noticed it.
If it's not just me, the next question would be why. Have actual security breeches gone down, or just reporting on it?
Ask HN: Is Techmeme getting paid to boost certain articles?
I noticed that Techmeme is currently boosting some guy's podcast to the very top of their website as a headline. I've also noticed the website overall becoming very deafeningly pro-AI in the past six months, often using the same idea in my screenshot to boost pro-AI content to the same headline spot or "above the fold" at the very least.
Are they taking kickbacks somehow? I don't see how a random podcast deserves headline treatment like this unless they got paid or some kind of kickback to promote it. And even then, it's not labeled as promoted content. The whole thing smells fishy to me.
Ask HN: How does one move from BigTech to more fullfilling places?
At this point, I'm willing to take a paycut for more fulfilling place and a non-profit/OSS seem good places as only people aligned with mission would be likely working there. OSS has more odds of being higher quality and technical. But I have no idea how to break in.
Ask HN: Hetzner asking for passport for new account? just me, or everyone?
Then go to buy a storage box, and I get this;
> Our automated system check indicates that your account information has an increased level of risk. Please choose one of the following verification methods:
And you can pay 20 EUR up front by PayPal, or hand over your passport (fat chance!)
Is this genuine, or does everyone get this and it's a fake reason?
(I've signed up to pay by bank transfer, so I'm also wondering why they don't ask me for pre-payment by bank transfer. As it is, no way on God's clean earth they get a passport, and I'm not on Paypal, so will try to use a friend's, but seems my second try to board Hetzner train has bounced - first time I left almost immediately, when I saw spaces not permitted in passwords.)