frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Perplexity blocks Time's ads served to AI agents, calling them 'deceptive'

https://digiday.com/media/perplexity-blocks-times-ads-served-to-ai-agents-calling-them-deceptive/
1•thm•29s ago•0 comments

Show HN: At 16K features, flat autoencoders break. Curved space doesn't

https://github.com/vishal-dehurdle/hypersae
1•visha1v•42s ago•0 comments

Git Clay

https://www.git-skills.dev/git-tales/git-clay/
1•mstrap•47s ago•0 comments

Bayesian Workflow Book: Website

https://avehtari.github.io/Bayesian-Workflow/
1•magoghm•3m ago•0 comments

Hiroshi Okuda, Toyota chair who pushed for the Prius, dies at 93

https://www.japantimes.co.jp/business/2026/08/12/companies/toyota-hiroshi-okada-death/
3•Lammy•3m ago•1 comments

Songs may help reduce pain–and even treat stroke symptoms

https://www.nationalgeographic.com/health/article/music-prescription-brain-neurological-treatment
2•bookofjoe•3m ago•1 comments

OpenAI Hires New Chief Revenue Officer After Less Than a Year

https://www.bloomberg.com/news/articles/2026-08-13/openai-hires-new-chief-revenue-officer-after-l...
1•htrp•4m ago•1 comments

OpenCV AI Competition 2026

https://opencv.org/opencv-ai-competition-2026/
1•Hussain04•4m ago•0 comments

A Forced-Structure Reduction and Verifiable Bounds for Conway's 99-Graph

https://arxiv.org/abs/2608.11211
1•Brajeshwar•4m ago•0 comments

Deadlock OS – Terminal hacking puzzle game running real Docker containers

https://lholhe.itch.io/deadlock-os
1•devejesus•5m ago•0 comments

The 37signals Manager Playbook

https://basecamp.com/managers
1•tosh•5m ago•0 comments

Anthropic investors bet on $2T valuation in record IPO

https://www.ft.com/content/840ac156-af1c-4a82-b260-ae791072fcfa
2•pdyc•5m ago•0 comments

Why Human Giants Defy the Laws of Physics

https://thereader.mitpress.mit.edu/why-human-giants-defy-the-laws-of-physics/
1•FillMaths•7m ago•0 comments

Temperature Zero for Culture: Why Everything Is Starting to Look the Same

https://laurenleek.substack.com/p/temperature-zero-for-culture-why
1•CountHackulus•8m ago•0 comments

That's not SOC 2 compliant

https://ampcode.com/notes/thats-not-soc-2-compliant
3•tosh•10m ago•0 comments

Samsung is using Claude to verify chip designs. It's not going smoothly

https://www.neowin.net/news/samsung-is-using-claude-to-verify-chip-designs-and-its-not-going-smoo...
4•bundie•11m ago•0 comments

Codex Blocks Fast Mode with an API Key on Desktop

https://denta.co/p/codex-blocks-fast-mode-with-an-api-key
2•adenta•12m ago•1 comments

What happens when a GPU reads memory?

https://blog.doubleword.ai/what-happens-when-a-gpu-reads-memory
5•somnial•12m ago•0 comments

Show HN: Virtual Private LLM, fixed fee with no usage or token limits

https://solheim.ai
1•CodingPanda42•12m ago•0 comments

Employees are replacing themselves with AI faster than management does it

https://www.geekbeard.dev/p/nobody-pays-100k-for-curation
1•drunx•13m ago•0 comments

Brave improves protections against GPU fingerprinting

https://brave.com/privacy-updates/38-webgl-webgpu-fingerprinting-protections/
2•w0ts0n•13m ago•0 comments

Aarhus Denmark eliminating single use coffee cup with "reverse vending machines"

https://reasonstobecheerful.world/can-this-city-banish-single-use-coffee-cups/
1•Geekette•13m ago•0 comments

Frontier LLMs know more facts than they can recall

https://research.google/blog/empty-shelves-or-lost-keys-recall-is-the-bottleneck-for-parametric-f...
3•MarcoDewey•14m ago•0 comments

ApplyWise – AI tools for tailoring your CV to a specific job

https://applywise.eu/
1•peter_nemec•17m ago•0 comments

GNU Parallel

https://www.gnu.org/software/parallel/
1•thunderbong•17m ago•0 comments

Show HN: My Grok Voice Mode System Prompt

1•nomilk•17m ago•0 comments

I found moderation endpoint in JavaScript

https://nadleer.github.io/posts/flagging_post_bug/
1•adminez•17m ago•0 comments

MiniMax-Music3

https://huggingface.co/MiniMaxAI/MiniMax-Music3
2•Philpax•17m ago•0 comments

Ordinary Abundance

1•jxmorris12•17m ago•0 comments

You're Not Ready to Compete with Self Disruptive Companies

https://julienreszka.com/blog/you-re-not-ready-to-compete-with-self-disruptive-companies/
1•julienreszka•19m ago•0 comments
Open in hackernews

Show HN: Lark, OSS realtime database, drop-in compatible with Firebase SDKs

https://github.com/lark-sh/lark
2•silverlight•54m ago
Hey everyone,

In early 2026, I started working on Lark, with the goal of creating a realtime database with the same fundamental premise of Firebase RTDB: syncing a JSON tree with persistence to thousands of concurrent users. Today, Lark is releasing as open-source software under an AGPLv3 license.

I've been building on Firebase RTDB since the earliest days, and I still think it's one of the most magical ways to build realtime apps for the web and mobile. However, I've always been bothered by the fact that it's building on top of a closed ecosystem. Lark brings the magic of Firebase RTDB to you with the freedom to run it on your own infrastructure.

Lark is unique in that it is fully drop-in compatible with the existing Firebase client SDKs. That means you can change a few config vars in your project, move your data to Lark, and you're good to go. In addition, you can continue using other parts of Firebase, like Auth[1], Analytics, and Hosting. This makes it very easy to migrate an existing project.

It's written in Rust on top of Glommio, so it uses a thread-per-core architecture to maximize throughput and take advantage of Rust's GC-free memory management to achieve low 99th percentile latency. It also has an edge proxy component written in Go which handles terminating REST, Websocket, and WebTransport connections.

There are a whole host of gotchas, unique behaviours, and technical challenges with making this "just work" with Firebase's SDKs, from the way that Firebase RTDB handles arrays to the rules engine. While it's too soon to say that there are no edge cases left, we actually run the Firebase JS SDK's own integration tests against our server, and pass all of them. There's also been a lot of testing of legacy Firebase apps from various eras to suss out hidden quirks and match them so that migration is as seamless as possible.

In addition, Lark has a number of new features that it brings to the table, including volatile data and WebTransport (for high-frequency data like cursor positions) as well as ephemeral databases with auto-creation and cleanup. It also ships its own JS client so if you just want to start from scratch and build on Lark without any Firebase SDK involved, that's an option, too.

Today is also the public launch of Lark Cloud[2], a hosted version of Lark for those who want to leave the devops to us, at pricing that's significantly cheaper than what you're probably currently paying.

There's a Quickstart guide in the repo if you'd like to take Lark for a spin, as well as examples showing both a lightweight app created using the Lark JS SDK, as well as converting an existing Firebase JS SDK app to use Lark.

Happy to answer questions, and thanks for taking the time to check this out!

[1] https://docs.larksh.com/firebase/auth

[2] https://lark.sh