frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Show HN: Plonk – Spotlight Search style Python interpreter

https://github.com/JosephRedfern/plonk
1•JosephRedfern•24s ago•0 comments

Possession (1981 Film)

https://en.wikipedia.org/wiki/Possession_(1981_film)
1•mooreds•1m ago•0 comments

Modern passport systems leave little room for bureaucratic heroism

https://reason.com/2026/05/20/the-modern-passport-has-eliminated-fraud-forgery-and-heroes-who-can...
1•leephillips•1m ago•0 comments

Blind Waymo Users Revel in the Joy of Riding Alone

https://www.nytimes.com/2026/05/24/us/waymo-robot-taxis-blind.html
1•bookofjoe•2m ago•1 comments

Ask HN: Who uses Aurora Store here?

1•g-b-r•2m ago•0 comments

So, Where Does Next-Token Prediction Leave Us?

https://pop.rdi.sh/where-does-next-token-prediction-leave-us/
1•0x5FC3•4m ago•0 comments

Pope Leo XIV's Magnifica Humanitas, Markdown Version

https://github.com/cucho/magnifica-humanitas/blob/master/markdown/en.md
2•cucho•6m ago•0 comments

Show HN: Open Satchel – local-first PDF editor (early)

https://opensatchel.dev/
1•jqmccleary•6m ago•0 comments

Show HN: Hackobar – One feed for AI news

https://hackobar.com/
3•rahu_•6m ago•0 comments

Show HN: GhostChat – A 10KB privacy-first live chat widget (open source)

https://github.com/ghostchat-dev/widget
1•jorbach•7m ago•0 comments

Why did T. rex have tiny arms? Scientists now think they know why

https://www.cnn.com/2026/05/25/science/t-rex-tiny-arms-function
1•edward•8m ago•0 comments

Monte Cimone v3: Where RISC-V Stands in High-Performance Computing

https://arxiv.org/abs/2605.22831
1•Brajeshwar•11m ago•0 comments

Show HN: TiltBump, a mobile web game controlled by phone tilt

https://tiltbump.com
1•eropatori•12m ago•0 comments

Ask HN: Archiving Family Photos?

2•helterskelter•13m ago•0 comments

Agentic AI Patterns

https://github.com/agentpatterns-ai/website
1•ankitg12•14m ago•0 comments

How are you auditing what your AI agents do in production?

https://www.tryagentgate.com/
1•ElamOlame•15m ago•0 comments

Tiny DIY Voice to Text Note Taking Device [video]

https://www.youtube.com/watch?v=3t0k7E7WiOQ
1•analogpixel•18m ago•0 comments

Show HN: A tool to replace x.com with tweet.md for X threads as Markdown

https://tweet.md
1•buildItN0w_•18m ago•0 comments

Show HN: Symbol Combos Copy and Paste

https://symbolcombo.com/
1•artiomyak•19m ago•0 comments

Addressing Technical Debt

https://yusufaytas.com/addressing-technical-debt
5•ayven•20m ago•0 comments

Classic HN: A Story About 'Magic'

http://catb.org/jargon/html/magic-story.html
1•ColinWright•21m ago•0 comments

Show HN: JustBookmarks – a simple browser-independent bookmark manager

https://github.com/SellswordSoftware/justbookmarks
1•sellswordsoft•22m ago•0 comments

Implications of Predicting the Next Token

https://www.lesswrong.com/posts/AzRRPDNmeEoJdSiib/implications-of-predicting-the-next-token
1•cubefox•22m ago•1 comments

My new obsession: A horse-racing board game of pure luck

https://alexanderbjoy.com/horse-race-board-game/
1•surprisetalk•24m ago•0 comments

No honor among (ad-tech) thieves (25 May 2026)

https://pluralistic.net/2026/05/25/lying-spies/
1•Brajeshwar•24m ago•0 comments

Mark Cuban has been right every time the crowd said he was wrong

https://www.the-ai-corner.com/p/mark-cuban-has-been-right-every-time
2•mooreds•24m ago•0 comments

Additive ban could change New York's pizza and bagels, some say for the better

https://6abc.com/post/proposed-additive-ban-could-change-new-yorks-pizza-bagels-say-better/19167465/
1•brandonb•25m ago•0 comments

Five Takeaways from Day One of Data Centre Live 2026

https://datacentremagazine.com/news/the-top-five-takeaways-from-day-one-of-data-centre-live-2026
1•mooreds•25m ago•0 comments

I built a local proxy to catch IDOR/BOLA bugs. Looking for feedback

https://github.com/rodrigo-areyzaga/accguard
1•hackerone_n6hy1•26m ago•0 comments

Generative Engine Optimization

https://agentpatterns.ai/geo/
1•ankitg12•26m 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!