Hacker News

New stories

Live mirror
30 storiesupdated just nowView source snapshot
  1. A new world airport and its baggage(computer.rip)
    discuss
  2. Wasmer Swift SDK: Run Node.js, Python and FFmpeg Sandboxes on iOS(wasmer.io)
    discuss
  3. Open Source Opinions(stanceoftheday.com)
    discuss
  4. FBI Hack Exposed FBI's Own Hacking Unit(404media.co)
    discuss
  5. Google's Summer of Love(demandsphere.com)
    discuss
  6. Latent-GRPO and Continuous Reasoning Deep Dive(g-ftech.com)
    discuss
  7. CB Rank (Person) 1000 Recommendation Your Startup on LinkedIn(chatgpt.site)
    discuss
  8. Open Analytics(getopen.so)
    discuss
  9. Show HN: Fjordfall – Take the long way down(fjordfall.fly.dev)
    discuss
  10. Mercury 2.5 LLM hits 770 tokens per second(artificialanalysis.ai)
    1comments
  11. Jevgpt – reinventing the wheel with another wheel
    discuss
  12. North Korea uses remote IT worker to clandestinely earn NZ currency(rnz.co.nz)
    discuss
  13. The AI Hype Index: AI Loves Cheating(technologyreview.com)
    discuss
  14. Show HN: The Mirror Act – a magic show that performs cognitive biases on you(avestura.dev)
    discuss
  15. Cortical thinning and hippocampal expansion linked to ADHD symptom trajectories(cam.ac.uk)
    discuss
  16. I stress-tested LLM quantization by deliberately breaking models(github.com/gracejackson-sudo)
    discuss
  17. We just shipped support for the ugliest part of HTTP: Vary – Cloudflare Blog(cloudflare.com)
    discuss
  18. Opus 5.5 Scores 75.6% on Part Catalog Bench(adamjohnson.site)
    discuss
  19. Neuromancer in 3 Axioms(2600hz.substack.com)
    1comments
  20. Manage Firezone as code with Terraform(firezone.dev)
    discuss
  21. The Bayeux Tapestry: Woven by the Victors(historytoday.com)
    discuss
  22. Where's the Beef?: The lab-grown-meat revolution that wasn't(harpers.org)
    discuss
  23. Simple Git Management Tool(github.com/sascha10000)
    1comments
  24. Claude Opus 5.5: Things People Created(favtutor.com)
    discuss
  25. OpenAI 'agent' hacked Australia's health service(ft.com)
    1comments
  26. Steppy Fox – free browser game(steppyfox.com)
    discuss
  27. The last IMO problem AI could not solve [video](youtube.com)
    discuss
  28. It's Not Just True, It's False(idiallo.com)
    1comments
  29. A Redistribution of Code Ownership(scotterickson.info)
    discuss
  30. DHH Is Completely Crazy(reddit.com)
    2comments

Virtual World/Real World Cycling App – In over My Head

1 pointsby 48m agosykla.app
2 comments
45m agoHN ↗

Technicals:

Turning a noisy GPS trace into a "you rode this segment, in this direction, at this time" wass a real problem, so I used an HMM map-matcher — Newson-Krumm / Viterbi, the same family OSRM and Valhalla use. Candidate road edges are the hidden states, the emission probability is a Gaussian on how far each fix sits from an edge, and the transition probability punishes disagreement between along-road distance and straight-line distance. It's direction-aware (forward, reverse, and out-and-back all mint separately) and this was shockingly difficult to implement.

The thing that actually makes it fun is that the racing happens during the ride. When you hit a segment you're chasing, you get a live +/- against a ghost of the current holder. Originally this came in as a static ghost divided evenly by the total time, however, that is not accurate so now we use an actual reconstruction of their splits, so if they went out hot and you're clawing it back on the second half, you see exactly that, in real time. Instead of one all-time board that goes hopeless, crowns live on rolling windows (today / this week / this month / all-time), so there's almost always a bar that's genuinely in reach. That's a direct fix for the "my PR is unreachable on 19 of 20 rides" problem every mature Strava segment eventually has. And we added something called Keeps & Trials which, think Pokemon Gym, where time degrades over time on short circuits to allow you to race them over and over and over.

Map coverage is demand-driven. I was tempted to just map everything all at once, but I didn't want to just blow cash on hosting for the world when it isn't needed. So rather than pre-ingest everything, now when a rider shows up somewhere new, the area gets tiled with H3 hexes (Uber's hex grid, res 5, ~100 sq mi a cell) and only the uncovered hexes trigger a road-graph build from OSM/Overpass. The hex index is the dedup key, so the rule is literally "never ask the API for a place we already have," and the map fills in exactly where people ride and nowhere they don't.

Sensors are BLE GATT against the standard profiles — FTMS for smart trainers, Cycling Power (including pedal balance and the whole Zwift controller matrix: Click, Play, Ride, Sterzo), heart rate, speed/cadence. On the phone that's CoreBluetooth; on the desktop/world side there's a native Rust BLE stack so the same sim can run off a real trainer. Although, I don't own a power meter to validate that in the real world so if anyone wants to do that....

42m agoHN ↗

TLDR; I basically wanted to create something that combines my virtual world efforts in Zwift with my real world efforts and both matter. Racing tying it all together. Creating the bike computer was delightful and easy. I am really confused by how hard the virtual world is to create, but then again GTA6 took like 42 years, so maybe I shouldn't be surprised.