frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

The Golden Age of Asking Questions

https://www.dropbox.com/scl/fi/mexrg6033i8y3ceqvz77r/golden-age-of-asking-questions.pdf?dl=0&nosc...
1•marojejian•16s ago•0 comments

MAI-Thinking-1 [pdf]

https://microsoft.ai/wp-content/uploads/2026/06/main_20260602_2.pdf
1•topsycatt•2m ago•0 comments

Only 54% of miles traveled by Waymos in California have a passenger onboard

https://findingspress.org/article/161870-millions-of-trips-waymo-empty-miles-california-s-first-t...
2•afavour•3m ago•0 comments

What happens when AI starts selling to AI?

https://www.computerworld.com/video/4180043/what-happens-when-ai-starts-selling-to-ai.html
1•speckx•4m ago•0 comments

1979: Will word processors start a revolution? – BBC Archive

https://www.youtube.com/watch?v=b6URa-PTqfA
1•asar•5m ago•0 comments

The HN shadowbanning situation is insane

1•shadowbanned_hn•6m ago•1 comments

MAI-Thinking-1

https://microsoft.ai/news/introducing-mai-thinking-1/
1•LER0ever•6m ago•1 comments

Show HN: Claude wrote FROG and now I don't know what to do with it

https://github.com/kmcnally5/FROG
1•froglang•6m ago•0 comments

Need a little help from everyone here

1•shashubansal247•8m ago•0 comments

SpaceX valued at just $780B by Morningstar

https://finance.yahoo.com/markets/article/spacex-valued-at-just-780-billion-by-morningstar-less-t...
1•m-hodges•8m ago•0 comments

European Parliament ditches Google for French search firm over privacy concerns

https://www.politico.eu/article/european-parliament-ditches-google-for-french-search-engine/
3•speckx•9m ago•0 comments

OpenAI models GPT-5.5 and GPT-5.4–and Codex–now on Amazon Bedrock

https://www.aboutamazon.com/news/aws/bedrock-openai-models
1•jaredwiener•9m ago•0 comments

People met in hotel lobbies (2017)

https://jasonlefkowitz.net/2017/05/people-met-in-hotel-lobbies/
3•downbad_•11m ago•0 comments

Roll your own Claude in 100 lines

https://github.com/yujqiao/100cc
1•rapiz•11m ago•0 comments

Cutting a photon in two creates an infinite swarm of particles

https://phys.org/news/2026-06-photon-infinite-swarm-particles.html
1•HardwareLust•12m ago•1 comments

Plainform

https://plainform.dev
1•eradon•12m ago•0 comments

The Painful Truth About Long Covid

https://www.wired.com/story/the-painful-truth-about-long-covid/
2•littlexsparkee•13m ago•1 comments

What Efforts to Cancel Richard Stallman Ought to Teach Us About the Media

https://techrights.org/n/2026/06/02/What_Efforts_to_Cancel_Richard_Stallman_Ought_to_Teach_Us_Abo...
3•amcclure•14m ago•0 comments

Show HN: icantmarket – A verified help exchange for devs who can't market

https://icantmarket.com/
1•pranabsarkar•16m ago•1 comments

StarMapper, see where your GitHub stargazers live on a map (free, OSS

https://starmapper.bruniaux.com
1•FlorianBruniaux•17m ago•0 comments

Apple has released an update to XProtect for all macOS

https://eclecticlight.co/2026/06/02/apple-has-released-an-update-to-xprotect-for-all-macos-35/
1•speckx•17m ago•0 comments

Microsoft's MAI-Image-2.5 is #3 on Image Arena

https://microsoft.ai/models/mai-image-2-5/
2•EvanZhouDev•18m ago•0 comments

Show HN: Lateos/NPM-scan – open-source NPM supply chain scanner, v0.18.3

https://www.npmjs.com/package/@lateos/npm-scan
1•lateos-ai•19m ago•0 comments

Ditching the agent sandbox for AWS S3 Files

https://falconer.com/notes/how-falconer-powers-agents-with-aws-s3-files/
8•iamgioh•21m ago•0 comments

Microsoft Releases MAI-Thinking-1 Reasoning Model

https://www.theverge.com/tech/941664/microsoft-ai-model-reasoning-mai-thinking-1-build-2026
3•EvanZhouDev•23m ago•0 comments

Netflix uses Java – 2026 Edition [video]

https://www.youtube.com/watch?v=ucJTPda_zx0
2•dzonga•23m ago•1 comments

Show HN: Map of 5000 YC Startups

https://platoseed.com/the-map
1•mdb19•24m ago•0 comments

Sharing the result of a single Windows Runtime IAsyncOperation

https://devblogs.microsoft.com/oldnewthing/20260527-00/?p=112361
1•ibobev•25m ago•0 comments

Pix 2605.28-preview: previewing new PIX and D3D12 features

https://devblogs.microsoft.com/pix/pix-2605-28-preview/
2•ibobev•26m ago•0 comments

Microsoft Announces AI Autopilot

https://www.computerworld.com/article/4180103/microsoft-unveils-scout-an-autonomous-ai-agent-buil...
2•EvanZhouDev•26m ago•0 comments
Open in hackernews

Show HN: RePlaya – self-hosted browser session replay with live tailing

https://github.com/s2-streamstore/replaya
6•shikhar•1h ago
Hi HN, I'm one of the founders of s2.dev. RePlaya (https://github.com/s2-streamstore/replaya) is a self-hosted browser session replay tool using rrweb (https://github.com/rrweb-io/rrweb).

It occurred to me that a durable stream per session would be a much neater architectural foundation for much of what you'd want from such a tool. As a unique feature, it also made live tailing straightforward because the player can read from the same stream the recorder is appending to.

The alternative architecture is likely an ingest firehose which is then indexed, with associated complexity and latency. You'd have to string together multiple data systems like a message queue, a metadata database, and blob storage and/or an OLAP database.

Here the only dependency is S2, which has an open source version you can self-host called s2-lite (https://news.ycombinator.com/item?id=46708055).

How it works:

- one S2 stream per browser session

- large rrweb events (like a full snapshot) get framed across multiple binary S2 records and reassembled on read

- active sessions are tailed with an S2 read session, and bridged to the browser over SSE

- session listing relies on stream names encoding reverse timestamps, as S2 returns a lexicographic order listing

- relying on fencing tokens so a stopped session can't be written to again by a late recorder

- retention and GC are handled via S2 stream config, so no background job needed

Curious to hear from folks on the tool or the stream-per-session model!