frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Shepherd Model Gateway – Model-routing gateway for LLM deployments

https://github.com/lightseekorg/smg
1•rekl•2m ago•0 comments

Your GPS Is Lying to You

https://medium.com/@rohitdastalks/your-gps-is-lying-to-you-and-thats-a-national-security-crisis-7...
1•jonbaer•3m ago•0 comments

"A vicious circle of incompatibility" – Unsung

https://unsung.aresluna.org/a-vicious-circle-of-incompatibility/
1•rbanffy•4m ago•0 comments

A live black-box capability eval for autonomous offensive-security agents

https://phantomlogin.entropicsystems.net/
1•snorbleck•5m ago•0 comments

Claude of Duty

https://github.com/mshumer/Claude-of-Duty/tree/main
1•SweetSoftPillow•6m ago•0 comments

Stories Told About Data Centres – Pixel Envy

https://pxlnv.com/blog/stories-told-about-data-centres/
1•rbanffy•7m ago•0 comments

Tesler's Law

https://en.wikipedia.org/wiki/Law_of_conservation_of_complexity
2•soupspaces•9m ago•0 comments

Videos Helped Me Uncover Abuse at an Arkansas Private School

https://www.propublica.org/article/arkansas-private-school-abuse-video
2•Jimmc414•9m ago•0 comments

Court Reporter Submitted AI-Generated Errors in Official Court Transcript

https://www.404media.co/judge-caught-court-reporter-using-ai-transcript-errors/
1•Jimmc414•9m ago•0 comments

Fabric Interface Tutorial: E-Textiles, Conductive Thread and Trill Craft

https://www.youtube.com/watch?v=ClBYyYEFkF0
1•soupspaces•10m ago•0 comments

Hundreds of Drone-as-First-Responder Programs to Be Launched Across the Country

https://www.eff.org/deeplinks/2026/07/hundreds-drone-first-responder-programs-could-soon-be-launc...
1•Jimmc414•10m ago•0 comments

Show HN: Anyclaude-SDK – Claude Code-Style SDK for OpenAI/Anthropic Endpoints

https://github.com/pipilot-dev/anyclaude-sdk
1•hansade•11m ago•0 comments

Show HN: The Jac Programming Language

https://jaclang.org/
1•marsninja•12m ago•0 comments

The Metaverse Fever Dream – Pixel Envy

https://pxlnv.com/blog/metaverse-fever-dream/
2•rbanffy•13m ago•0 comments

Why does every mammal get 1B heartbeats in their life? [video]

https://www.youtube.com/watch?v=tL9Lw250spc
1•binyu•15m ago•0 comments

The highest-leverage bet in the whole market is not AI, it's LSD

https://www.singularityrainbow.ai/p/you-have-no-idea-how-big-dftx-is
1•charliejordan•15m ago•0 comments

Show HN: GG Translator – Turn gaming shit talk into friendly phrases

https://ggtranslator.com
1•mcadenhe•16m ago•0 comments

So-called 'Skynet Day' came too close to SF after rogue agent hacked a startup

https://apnews.com/article/skynet-ai-terminator-artificial-intelligence-eb85da03a0161beaa5f3babc4...
3•billybuckwheat•18m ago•0 comments

Show HN: LuaJIT with Native SIMD

https://github.com/TheLuaOSProject/LuaJITMT/releases/tag/1.0.0-simd
1•frityet•18m ago•1 comments

Can Frontier Models Recall Long-Tail Facts? A Cricket Stress Test

https://corvi.careers/blog/frontier-models-long-tail-facts/
1•sp1982•20m ago•0 comments

Building a CEL Engine for .NET

https://bsid.io/writing/building-a-cel-engine-for-net
2•jackedEngineer•20m ago•0 comments

Refactoring cuisine: how an Iraqi stew sailed to Singapore

https://iza.ac/posts/2026/07/the-journey-of-bamya/
1•infinitewalk•20m ago•0 comments

Browser-Based QBasic Environment

https://kavak.run/studio/
2•rickcarlino•23m ago•0 comments

RAMpocalypse, Now With Lawyers – ByteHaven – Where I ramble about bytes

https://blog.ppb1701.com/rampocalypse-now-with-lawyers
2•abdelhousni•26m ago•0 comments

Show HN: Codex fixed my 2010 MacBook Pro driver troubles with kernel patches

https://github.com/ldyeax/macbook2010_nouveau_and_sleep_fixes/
1•jimmaswell•27m ago•0 comments

Frontier LLMs drop from 83% to 43% once reasoning has to chain across domains

https://arxiv.org/abs/2607.18438
1•MarcoDewey•28m ago•1 comments

Anti-AI nostalgia and the cult of the past

https://www.seangoedecke.com/anti-ai-nostalgia/
1•gfysfm•29m ago•0 comments

Show HN: ClinicEvo – Know your face. Own your look

https://clinicevo.com/
1•not_wowinter13•30m ago•0 comments

Venus's rift valleys may still be actively growing

https://ethz.ch/en/news-and-events/eth-news/news/2026/07/venus-dead-far-from-it.html
1•MarcoDewey•34m ago•0 comments

Owen Song releases complete local speech synthesis in 9.36M parameters

https://runtimewire.com/article/owen-song-inflect-micro-v2-local-speech-9m-parameters
1•ryanmerket•34m ago•0 comments
Open in hackernews

What every developer needs to know about in-process databases

https://www.graphgeeks.org/blog/what-every-developer-needs-to-know-about-in-process-dbmss
12•semihs•1y ago

Comments

semihs•1y ago
In-process (aka embedded/embeddable) databases are not new. In fact SQLite is the most widely deployed database in the world. However, starting with DuckDB, there is a new set of in-process database systems, such as Kuzu and Lance. As a co-developer of Kuzu, I hear several frequently asked questions (some of which are misconceptions) about in-process databases.

- What are their advantages/disadvantages compared to client-server databases? - Does in-process mean databases are in-memory/ephemeral? (NO!) - Can in-process databases handle only small amounts of data? (NO!) - What are some common use cases of in-process databases? - What if my application needs a server?

I tried to answer some of these questions in a blog post with pointers to several other resources that articulate several of these points in more detail than I get into.

I hope it's helpful to clarify some of these questions and help developers position in-process DBMSs against client-server ones.

emmanueloga_•1y ago
The article suggests running Kuzu in a FastAPI frontend for network access. A caveat: production Python servers like Uvicorn [1] typically spawn multiple worker processes.

A simple workaround is serving HTTP through a single process language like Go or JavaScript, since Kuzu has bindings for both. Other processes could access the database directly in read-only mode for analysis [2].

For better DX, the ideal would be Kuzu implementing the Bolt protocol of Neo4J directly in the binary, handling single-writer and multi-reader coordination internally. Simpler alternative: port the code from [3] to C++ and add a `kuzu --server` option.

--

1: https://fastapi.tiangolo.com/deployment/server-workers/#mult...

2: https://docs.kuzudb.com/concurrency/#scenario-2-multiple-pro...

3: https://github.com/kuzudb/explorer/tree/master/src/server

semihs•1y ago
Yes this makes sense and we plan to eventually do something along what you are suggesting. We also have a plan to have a built-in server/GUI, where users can directly launch a web-based explorer through our CLI by typing "kuzudb -ui".
emmanueloga_•1y ago
That sounds great!