frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Show HN: BLOBs in MariaDB's Memory Engine – No More Disk Spills for Temp Tables

https://jira.mariadb.org/browse/MDEV-38975
1•arcivanov•3m ago•1 comments

Tip me, my life depends on it (2021)

https://idiallo.com/blog/tip-me
1•foxfired•3m ago•0 comments

Show HN: OculOS – Give AI agents control of your desktop via MCP

https://github.com/huseyinstif/oculos
1•stif1337•4m ago•0 comments

New Strides Made on Deceptively Simple 'Lonely Runner' Problem

https://www.quantamagazine.org/new-strides-made-on-deceptively-simple-lonely-runner-problem-20260...
1•ibobev•8m ago•0 comments

Ask HN: Why is Pi so good (and some observations)

1•ashersopro•11m ago•0 comments

Show HN: Speclint – OS spec linter for AI coding agents

https://github.com/speclint-ai/speclint
1•dnielsen1031•12m ago•1 comments

Qwen3.5-35B – 16GB GPU – 100T/s with 120K context AND vision enabled

https://github.com/willbnu/Qwen-3.5-16G-Vram-Local
1•willfinger•14m ago•1 comments

What Did Ilya See?

https://www.youtube.com/watch?v=glWvwvhZkQ8
2•pferdone•14m ago•0 comments

Rust Actor Framework Playground

https://knowledge.dev/playgrounds/rust-actor-framework
1•deniskolodin•14m ago•0 comments

Show HN: mTile – native macOS window tiler inspired by gTile

https://github.com/protortyp/mTile
1•protortyp•16m ago•0 comments

Show HN: Personalized financial literacy book for your kid

https://cointales.ai/en/create-your-book
1•mhalifax•20m ago•2 comments

Ask HN: Has anyone built an autonomous AI operator for their side projects?

2•rosasolana•20m ago•0 comments

Obituary for António Lobo Antunes

https://www.theguardian.com/books/2026/mar/06/antonio-lobo-antunes-portuguese-novelist-dies-aged-83
1•Archelaos•22m ago•0 comments

The legendary Mojave Phone Booth is back (2013)

https://dailydot.com/mojave-phone-booth-back-number
2•1970-01-01•24m ago•0 comments

Autonomous AI Newsroom

https://www.simplenews.ai/
2•goldkey•30m ago•0 comments

People love to hate twice-a-year clock change but can't agree on how to fix it

https://www.nbcnews.com/news/us-news/people-love-hate-changing-clocks-twice-year-cant-agree-fix-r...
2•anigbrowl•31m ago•0 comments

To be a better programmer, write little proofs in your head

https://blog.get-nerve.com/to-be-a-better-programmer-write-little-proofs-in-your-head/
1•fagnerbrack•31m ago•0 comments

Show HN: ScreenTranslate – On-device screen translator for macOS (open source)

https://github.com/hcmhcs/screenTranslate
1•hcmhcs0•32m ago•0 comments

A New Way to Synthesize Peptides (2024)

https://www.science.org/content/blog-post/new-way-synthesize-peptides
2•paulmist•33m ago•0 comments

Report from Vietnam (1968) Walter Cronkite [video]

https://www.youtube.com/watch?v=kcSeecx-Z1E
1•pcfwik•34m ago•0 comments

Airtable: Rewriting Our Database in Rust

https://medium.com/airtable-eng/rewriting-our-database-in-rust-f64e37a482ef
1•awans•35m ago•0 comments

A workflow driven web framework for Clojure

https://mycelium-clj.github.io/docs/guestbook.html
2•yogthos•35m ago•1 comments

Show HN: An AI-powered digital night vision system with drone video feed

https://www.indiegogo.com/en/projects/atx-system/atx-shadow-x1-professional-ai-night-vision
1•lukascodes•36m ago•0 comments

The Start-Stop Problem

https://kramkarthik.com/the-start-stop-problem/
1•ramkarthikk•36m ago•0 comments

Show HN: PlateSpinner – A Kanban board that orchestrates AI coding agents

https://github.com/moridinamael/platespinner
1•mordymoop•39m ago•0 comments

AI startup sues ex-CEO, saying he took 41GB of email and lied on Résumé

https://arstechnica.com/tech-policy/2026/03/ai-startup-sues-ex-ceo-saying-he-took-41gb-of-email-a...
1•pseudolus•41m ago•1 comments

Technical Beauty: FreeBSD Jails

https://vivianvoss.net/blog/technical-beauty-jails
3•vermaden•43m ago•0 comments

this css proves me human

https://will-keleher.com/posts/this-css-makes-me-human/
33•todsacerdoti•45m ago•10 comments

UK Gambling Commission explores how to keep bettors on licensed sites

https://www.coindesk.com/policy/2026/02/27/uk-s-gambling-watchdog-explores-allowing-gamblers-to-p...
1•PaulHoule•47m ago•0 comments

An IRC bot spawned the most prolific software [video]

https://www.youtube.com/watch?v=ohzzGy5K9Dk
1•todsacerdoti•49m 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!