frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Why Nothing Looks Cool Anymore

https://www.youtube.com/watch?v=HgjXjPP_p3s
1•Kaibeezy•3m ago•0 comments

AAA AI – Autonomous AI agent squads for local and cloud LLMs

https://aaaai.me/
1•pokidovkirill•4m ago•0 comments

King Ludd

https://www.astralcodexten.com/p/king-ludd
1•andromaton•4m ago•0 comments

Self-generated prompt injections in compaction summaries

https://simonwillison.net/2026/Sep/17/compaction-summaries/
1•hn9zmdcaou•7m ago•0 comments

Show HN: A poetry site for developers – solve a code puzzle to post

https://developerpoetry.com/
1•attels33•9m ago•0 comments

OpenSaga: Matching decompilation of the Lego Star Wars

https://opensaga.dev/
1•epestr•10m ago•0 comments

Windows turned months of inactivity into a 7-hour update hostage situation

https://www.theregister.com/os-platforms/2026/09/20/how-windows-turned-months-of-inactivity-into-...
1•beardyw•10m ago•0 comments

Turn off Apple Intelligence in macOS 27

https://discussions.apple.com/docs/DOC-250012366
1•petecooper•13m ago•0 comments

Ground Effect Vehicle

https://en.wikipedia.org/wiki/Ground-effect_vehicle
2•kekqqq•14m ago•0 comments

Security Review Scope for Daml: Coverage, Methods, and EVM Comparison

https://hacken.io/discover/daml-vs-solidity-smart-contract-audits-3-scope-decisions-for-researchers/
1•Dron_Rick•20m ago•0 comments

Auto approve pull requests with Jev

https://github.com/metalbear-co/jev-auto-approve
2•infiniteregrets•26m ago•0 comments

How ISIL is using Big Tech's AI to build bombs

https://www.aljazeera.com/news/2026/9/18/just-ask-grok-how-isil-is-using-big-techs-ai-to-build-bombs
1•smallerize•26m ago•0 comments

Migrating the GitHub Copilot Runtime to Rust, Using Copilot

https://github.blog/ai-and-ml/generative-ai/migrating-the-github-copilot-runtime-to-rust-using-co...
1•saikatsg•27m ago•0 comments

RoboHarm: Do Frontier Robot Policies Refuse Unsafe Instructions?

https://robocurve.org/roboharm/
1•fittingopposite•28m ago•0 comments

Chat-based Large Language Models replicate the mechanisms of a psychic's con

https://softwarecrisis.dev/letters/llmentalist/
2•jalev•29m ago•0 comments

An Ode to the Owl: The Inside Story of Psygnosis

https://www.timeextension.com/features/an-ode-to-the-owl-the-inside-story-of-psygnosis
2•Bluestein•30m ago•0 comments

The Millennium Problems for Biology

https://millenniumproblems.bio/
2•artninja1988•31m ago•0 comments

Outer Billiards on the Penrose Kite: Compactification and Renormalizaiton

https://arxiv.org/abs/1102.4635
1•vismit2000•33m ago•0 comments

WrathBench − an Agent Workbench for World of Warcraft

https://wrathbench.shard.page/
2•stymaar•36m ago•0 comments

Big Tech uses guarantees to keep $300B AI exposure off balance sheets

https://www.ft.com/content/7f11afae-c4e3-4054-a65b-873f3647f563
7•sbulaev•42m ago•1 comments

Densha de Go

https://en.wikipedia.org/wiki/Densha_de_Go!
4•tosh•42m ago•0 comments

The First Nolan Movie: The Odyssey and the world after men change it

https://www.firstrand.co.za/perspectives/article.html?article=the-first-nolan-movie
3•theDillinger•46m ago•0 comments

The Shaky Evidence That Flock Cameras Reduce Crime Rates

https://reason.com/2026/09/18/the-shaky-evidence-that-flock-cameras-reduce-crime-rates/
3•pseudolus•51m ago•0 comments

Claude Code is getting native AGENTS.md support

https://github.com/anthropics/claude-code/tree/main/mods/agents-md
4•thisisfatih•51m ago•0 comments

Open-source AI PR reviewer that helps you ship

https://nitpicker.dev/
3•Bluestein•53m ago•0 comments

An Agent's Breath. The Heart Beats by Itself, Breathing Is a Choice

https://piotrzientara.pl/agent-breath/
4•piotrzientara•56m ago•0 comments

The Cornetto Ice Cream Cone Framework for Prompting

https://hazn.com/cornetto
2•hazn•1h ago•0 comments

Ternary-Bonsai-8B-Gguf

https://huggingface.co/prism-ml/Ternary-Bonsai-8B-gguf
2•Bluestein•1h ago•0 comments

How Efficient Is Each Type of EV Charger? (2024)

https://insideevs.com/features/711659/ev-charger-efficiency-losses/
2•cisc•1h ago•0 comments

Show Your Work

https://jagasantagostino.com/blog/show-your-work
2•andsoitis•1h 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!