frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Selling Selfcontext.com Domain

https://selfcontext.com/
1•AVancans•1m ago•0 comments

The Controllability Trap: A Governance Framework for Military AI Agents

https://arxiv.org/abs/2603.03515
1•zvr•5m ago•0 comments

Each time an AI was given a task to invent best-seller web app

https://spireason.neocities.org/apples
1•tvali•7m ago•1 comments

YC Startup School India

https://events.ycombinator.com/yc-sus-india
1•twapi•8m ago•0 comments

Fork: One CLI to Build Firmware for Any MCU

https://github.com/TareqRafed/fork
1•grog6•11m ago•0 comments

I mass-replaced FFmpeg's MJPEG decoder with Claude Code – 4K LOC, 8% the speed

https://github.com/0xD8C4A475/liberated-mjpeg
1•istenesimi•13m ago•2 comments

Need feedback to build a product for founders to track decision-making

1•shreyast6•13m ago•0 comments

The AI-Powered Kubernetes IDE

https://github.com/koreide/Kore
2•eladbash•15m ago•3 comments

AI toys for children misread emotions and respond inappropriately

https://www.bbc.co.uk/news/articles/clyg4wx6nxgo
3•fredley•15m ago•0 comments

9B parameter coding agent model fine-tuned on top of Qwen3.5-9B

https://huggingface.co/Tesslate/OmniCoder-9B
1•brainless•15m ago•0 comments

Searching for a Well Designed API

1•willx86•18m ago•1 comments

Qualcomm exploit chain brings bootloader unlocking freedom to Android flagships

https://www.androidauthority.com/qualcomm-snapdragon-8-elite-gbl-exploit-bootloader-unlock-3648651/
1•ledoge•19m ago•1 comments

Things I do when I'm writing code that don't look like writing code

https://danq.me/2026/03/06/writing-code-is-not-the-bottleneck/
1•speckx•22m ago•0 comments

Show HN: Flowly – Smooth scrolling for third-party mice on macOS

https://flowlyapp.dev/
1•simonij•22m ago•0 comments

Show HN: Five – I built a 5-story daily newsletter for who hate newsletters

https://getfive.news
1•tiago_human•23m ago•0 comments

White House posts Wii Sports video mixed with Iran War footage

https://twitter.com/WhiteHouse/status/2032115039985881556
1•run414•24m ago•0 comments

TUI Studio – visual terminal UI design tool

https://tui.studio/
3•mipselaer•26m ago•1 comments

Peter Thiel's Antichrist Lectures

https://apnews.com/article/italy-peter-thiel-paypal-pope-vatican-c3a6c7d2daba501caf8152558ac2d743
3•aureliusm•28m ago•0 comments

I got tired of AI chatbots so we turned the OS into an AI agent

https://www.jeriko.ai/
1•Khaleel7337•33m ago•1 comments

Ask HN: Uploaded a post and it was [dead] within a minute

2•_ananos_•33m ago•5 comments

CrackArmor: Multiple Vulnerabilities in AppArmor

https://cdn2.qualys.com/advisory/2026/03/10/crack-armor.txt
1•mmsc•34m ago•0 comments

The evolution of Mac app window corners

https://lapcatsoftware.com/articles/2026/3/4.html
1•robenkleene•34m ago•0 comments

Consumer rights wiki becomes a browser extension

https://github.com/FULU-Foundation/CRW-Extension
1•NotLemikiy•34m ago•0 comments

Russia is carrying out a cyber campaign targeting Signal and WhatsApp accounts

https://www.aivd.nl/actueel/nieuws/2026/03/09/rusland-voert-cybercampagne-uit-tegen-signal--en-wh...
1•komape•36m ago•0 comments

How to make your own static site generator

https://gaultier.github.io/blog/how_to_make_your_own_static_site_generator.html
1•gingersnap•36m ago•0 comments

YouTube videos that have almost zero previous views

http://astronaut.io/
1•Zealotux•37m ago•1 comments

I traced $2B in grants and 45 states' lobbying behind age‑verification bills

https://old.reddit.com/r/linux/comments/1rshc1f/i_traced_2_billion_in_nonprofit_grants_and_45/
15•shaicoleman•43m ago•0 comments

The End of the Open Web

https://www.netmeister.org/blog/open-web.html
3•speckx•43m ago•0 comments

50 Years of Thinking Different

https://www.apple.com/50-years-of-thinking-different/
3•tilt•46m ago•1 comments

Show HN: Privacy Mask – prevent secrets leaking to AI agents

2•fullstackcrew•48m 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•10mo ago

Comments

semihs•10mo 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_•10mo 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•10mo 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_•10mo ago
That sounds great!