frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Does a URL just sitting in a prompt steer an LLM's output toward its content?

https://aifoc.us/influencing-model-output-with-urls/
1•kinlan•2m ago•0 comments

SponsorBlock Critical Security Vulnerabilities

1•IDIRIS•2m ago•0 comments

Microsoft Frontier Company

https://blogs.microsoft.com/blog/2026/07/02/microsoft-frontier-company-ai-engineering-that-amplif...
1•AbbeFaria•3m ago•0 comments

Lion heart music fest pa

https://medium.com/@mauricedestouetii/free-music-good-vibes-and-a-cause-inside-lion-heart-music-f...
1•posteraccount•3m ago•0 comments

Check any website up/down Status

https://urlwatch.io/
1•mssblogs•7m ago•0 comments

Charged with manslaughter over Tesla crash initially blamed on self-driving mode

https://www.theguardian.com/us-news/2026/jul/03/tesla-texas-crash-manslaughter
1•abawany•7m ago•0 comments

NostalgicPod

https://nostalgicpod.com/en/
1•LorenDB•8m ago•0 comments

SearXNG: A free internet metasearch engine

https://github.com/searxng/searxng
1•theanonymousone•9m ago•0 comments

The Belkin Cable Doesn't Charge the Nintendo Switch 2 Faster

https://www.lttlabs.com/articles/2026/07/01/does-the-belkin-cable-charge-the-nintendo-switch-2-fa...
2•LorenDB•11m ago•0 comments

Wyldfyre launches standalone prediction market for wildfire risk

https://predictionnews.com/story/wyldfyre-launches-standalone-prediction-market-for-wildfire-risk
2•engineermore•11m ago•0 comments

OnlyEQ – the best open source EQ app for Mac

https://github.com/zollans/OnlyEQ
3•Boss0565•11m ago•2 comments

Ask HN: ChatGPT Go Plan

2•czeizel•12m ago•0 comments

A minimal browser agent built on the accessibility tree

https://github.com/josharsh/pixelpi
2•josharsh•12m ago•0 comments

Pet projects are getting too big to pet

https://www.nnehdi.me/p/pet-projects-are-getting-too-big
2•nnehdi•12m ago•0 comments

Turn a product recording into a launch-ready SaaS Keynote

https://saasdemostudio.up.railway.app
2•nikitafaesch•16m ago•0 comments

Kagi Changelog (July 2): Heads, tails, and an AI toggle

https://kagi.com/changelog#10959
2•mroche•17m ago•0 comments

Oak: Git for Agents

https://oak.space/
3•handfuloflight•20m ago•0 comments

Independent Studio Buys Movie About OpenAI That Amazon Dropped

https://www.nytimes.com/2026/06/30/business/media/openai-movie-artificial-neon-amazon.html
2•JumpCrisscross•21m ago•0 comments

Cola – Conflict-free Replicated Data Type specialized for real-time collab edits

https://github.com/noib3/cola
2•punnerud•24m ago•0 comments

Egypt Is Building a New Nile

https://www.theb1m.com/video/egypt-is-building-a-new-nile
3•geox•25m ago•0 comments

Safari Un-Intelligent Tracking Prevention: Data Loss by Design (2023)

https://lapcatsoftware.com/articles/2023/8/5.html
2•vilasa•26m ago•0 comments

Plex debuts 5-year membership pass for $250

https://arstechnica.com/gadgets/2026/07/250-used-to-get-you-a-lifetime-plex-pass-now-you-get-a-fi...
3•logickkk1•30m ago•0 comments

Show HN: An AI-friendly CLI for public space data

https://www.npmjs.com/package/spacedata
2•oscarjpicazo•35m ago•0 comments

Topics, Not Feeds

https://blogsreader.com
2•jdeibele•35m ago•1 comments

America used to be exceptionally patriotic. Now we're below average

https://www.natesilver.net/p/america-used-to-be-exceptionally
3•7777777phil•36m ago•2 comments

The Concordance, a music-reactive sculpture that turns sound into metal

https://sand-morph.up.railway.app/concordance
2•echohive42•39m ago•0 comments

Show HN: Static Site Generator

https://github.com/MTBBK/OSMAN
2•MTBBK•41m ago•0 comments

Utilize.internet – Browser-based file tools, nothing uploaded

https://utilizeinternet.com/
2•faisalhaleem•43m ago•1 comments

The First Labor Congressman: How Milwaukee's Labor Movement Elected Henry Smith

https://greysidewalk.substack.com/p/the-first-labor-congressman-how-milwaukees
2•PostingThings•44m ago•0 comments

Films of 2026:Q2

https://scottsumner.substack.com/p/films-of-2026q2
3•paulpauper•46m ago•0 comments
Open in hackernews

Show HN: Opbox – CRDT based sync for text files on disk

https://www.opbox.dev/
2•sensodine•1h ago
Hi! I’m one of the founders of s2.dev, and recently have been hacking on opbox, which is an open-source daemon that turns directories of text files (code, markdown, etc) into collaborative, multi-player workspaces.

This started as a bit of an intellectual curiosity, to see if it was possible to do real-time sync at the filesystem level (i.e., in an editor-agnostic way).

The idea is pretty simple:

  - Opbox workspaces are roughly analogous to git repositories (and can be used alongside existing git repos, to share live changes between commits)
  - When the opbox daemon is running in a workspace (ob start), it listens for local filesystem events within its directory (writes, deletes, new files), and translates them into operations (the titular “op”) on shadow CRDT documents (Yrs) corresponding to each text file (as well as one doc for the namespace as a whole, which handles paths)
  - These shadow CRDT docs are maintained in a workspace-local sqlite db (Turso)
  - The ops, which represent diffs on a corresponding CRDT document, are then appended to a durable stream (S2) that acts as a shared journal for all sync participants
  - Opbox also reads from that journal, receiving ops from other participants, which are then used to update the local documents, first in the db, then by materializing them into actual files on disk
This has worked surprisingly well for sharing things like Obsidian graphs in real-time.

It’s most helpful in cases where you want the ability to edit local files from arbitrary editors, but still collaborate live. The experience is best from editors where you can configure an aggressive autosave policy, and where edits to an open file are reflected in the editor in a timely way.

To gain confidence in the correctness of the core opbox flows (particularly all the nuances around bidirectional sync) I invested in wiring up deterministic simulation testing using the turmoil library, which has been incredibly helpful (see the opbox-sim crate in the repo).