frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Ask HN: Do you have AI psychosis?

1•roschdal•41s ago•0 comments

USER INTERVIEWS: How early stage founders do their marketing?

https://calendar.google.com/calendar/appointments/schedules/AcZssZ0MmuhXXdHNdTt4BM3BF-enJ3Rvqz9qp...
1•geethikaisuru•1m ago•1 comments

Alexandre Dumas Coauthor and Intellectual Property Lawsuits

https://clubstorica.substack.com/p/alexandre-dumas-had-a-co-author
1•remiko•2m ago•0 comments

The AI layoff wave is becoming a powder keg

https://techcrunch.com/2026/06/15/the-ai-layoff-wave-is-becoming-a-powder-keg/
1•gruntled-worker•2m ago•0 comments

UK to ban under 16s on Social Media

https://www.theguardian.com/media/2026/jun/15/social-media-ban-uk-under-16-starmer
1•u02sgb•4m ago•1 comments

Quest 3 Accessory Makes Your VR Avatar Expressive Without Face Tracking

https://www.uploadvr.com/pieeg-xr-makes-your-vr-avatar-expressive-without-face-tracking/
1•Christiangmer•4m ago•0 comments

We're not just fighting AI

https://sayyesdono.pagecord.com/were-not-just-fighting-ai
1•BrunoBernardino•11m ago•0 comments

The Path to Google's #1 Position

https://medium.com/@thesuperrepemail/the-path-to-googles-1-position-f6aacbf1f758
1•mssblogs•12m ago•0 comments

Testing Uruky to Replace Kagi

https://rewiring.bearblog.dev/kagi-to-uruky/
1•BrunoBernardino•13m ago•0 comments

Large language models pass a standard three-party Turing test

https://www.pnas.org/doi/10.1073/pnas.2524472123?trk=3246d38d-657b-4330-8a8c-4fca0385cac6&sc_chan...
1•cassianoleal•19m ago•0 comments

Show HN: Check – prefix any command to know if it'll work before you run it

https://www.golproductions.com/check
1•golproductions•20m ago•0 comments

Owning Your Token Capital: Building the Enterprise AI Learning Loop

https://twitter.com/LakshyAAAgrawal/status/2066392532540670354
1•LakshyAAAgrawal•21m ago•0 comments

Ask HN: Renting GPUs, do you mostly care about price, reliability, or setup?

1•tinstar112•22m ago•0 comments

CUDA-like programming of Cerebras WSE

https://github.com/greg1232/cerebras-py-sim
1•gdiamos•29m ago•1 comments

How to Be Good at AI Research

https://twitter.com/i/status/2064686372737454155
1•yarapavan•33m ago•0 comments

I sped up the test suite by 2x with one simple change

https://gaultier.github.io/blog/I_sped_up_the_test_suite_by_x2.html
1•broken_broken_•33m ago•0 comments

Care about what you do – even when nobody's watching

https://mattcasmith.net/2026/05/31/care-about-what-you-do
2•signa11•34m ago•0 comments

I restarted a 10 year old Xeon 174 times to delete 12 flags and gain 4 TPS

https://point.free/blog/delete-12-flags/
2•cafkafk•34m ago•0 comments

Oğuzxccl Kimdir?

1•oguzxxlxv•36m ago•0 comments

Email Data Normalization for Automation

https://blog.mailwebhook.com/blog/normalization-is-where-reliability-starts/
1•birdculture•40m ago•0 comments

Token-warden is a thrifty office manager for your AI assistants

https://github.com/vukkt/token-warden
1•vukkt•40m ago•0 comments

What I have done with Claude Code in the last 60 days being a non tech person

2•sahiltll•40m ago•2 comments

Under-16s to be banned from social media, Starmer announces

https://www.bbc.co.uk/news/live/c77yx1jpg1nt
17•petepete•42m ago•5 comments

Brand Voice Local Tunning Tool Demo

https://github.com/yuvhaim-gif/LLM_InSight
1•yuvalhaim•43m ago•0 comments

Building N8n AI Automation Workflows: What I Learned Creating a Masterclass

https://www.udemy.com/course/n8n-ai-automation-masterclass-build-ai-chatbots-hindi/?referralCode=...
1•tv77048•44m ago•2 comments

Selective Elimination of TP53 Mutant Cells

https://www.biorxiv.org/content/10.64898/2026.05.08.723607v1
2•rballpug•49m ago•1 comments

Openrouter Fusion API

https://openrouter.ai/openrouter/fusion
2•tdchaitanya•51m ago•0 comments

Ask HN: Is the Fable situation the ultimate "security through obscurity"?

1•king_zee•52m ago•0 comments

Crown Sanctum of Symmetries

https://sand-morph.up.railway.app/crown-sanctum
1•echohive42•53m ago•0 comments

Knicks in 5

https://www.natesilver.net/p/knicks-in-5
1•7777777phil•53m 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!