frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

OpenAI reportedly completed a $7B employee tender offer

https://techcrunch.com/2026/08/10/openai-reportedly-completed-a-7-billion-employee-tender-offer/
1•ashurandi•1m ago•0 comments

Operation Earnest Voice (Centcom)

https://en.wikipedia.org/wiki/Operation_Earnest_Voice
1•Jimmc414•2m ago•0 comments

Analytic Treatment of Tipping Points for Social Consensus in Large Networks-2013

https://arxiv.org/abs/1304.7401
1•Jimmc414•4m ago•1 comments

Meta wiped key scam evidence in Andrew Forrest suit, US judge rules

https://www.afr.com/technology/meta-wiped-key-scam-evidence-in-andrew-forrest-suit-us-judge-rules...
3•asdefghyk•10m ago•1 comments

Pakistan requires fingerprint scan transfer to govt. db for SIM card activation

https://www.pta.gov.pk/category/biometric-verification-771039280-2023-05-30
2•walrus01•11m ago•0 comments

Show HN: I vibecoded a heavy lift drone

https://lukeiseman.substack.com/p/i-vibecoded-a-drone
1•liseman•13m ago•0 comments

GPT 5.6 Cyber

https://openai.com/index/expanding-daybreak-as-the-cyber-defense-window-narrows/#websocket-authen...
1•smusamashah•17m ago•0 comments

Folding Prion Protein with AI

https://blog.georeactor.com/prionbio-1
1•mapmeld•18m ago•0 comments

Microsoft Responds to Outcry After Quiet Enterprise Install of Beta 'Photos' App

https://www.neowin.net/news/windows-11-admins-unhappy-as-microsoft-found-installing-unexpected-ne...
4•m463•22m ago•1 comments

Egg: Fast and Extensible Equality Saturation

https://cacm.acm.org/research-highlights/egg-fast-and-extensible-equality-saturation/
1•t-3•25m ago•0 comments

More Young College Graduates Are Living at Home. Is That a Bad Thing?

https://www.nytimes.com/2026/08/02/business/college-graduates-living-at-home.html
2•littlexsparkee•29m ago•3 comments

27x Faster Terminal Text Effects Rust Port

https://github.com/omacom-io/ttfx
2•smusamashah•34m ago•1 comments

Muse Glimmer

https://simonwillison.net/2026/Aug/10/introducing-muse-glimmer/
3•raybb•34m ago•0 comments

HN is good for marketing other than communication or study!?

3•lilerjee•35m ago•0 comments

Demon's souls prototype presentation for gameshare iv [video]

https://www.youtube.com/watch?v=qVK_rc-tnGY
2•andrekandre•35m ago•1 comments

Updated GPG Key for Signing Firefox and Thunderbird Releases

https://blog.mozilla.org/security/2026/08/10/updated-gpg-key-for-signing-firefox-and-thunderbird-...
11•csmantle•36m ago•1 comments

Language models transmit behavioural traits through hidden signals in data

https://www.nature.com/articles/s41586-026-10319-8
3•Phithagoras•38m ago•0 comments

Teaching an Open Model to Do Science

https://www.arcee.ai/blog/teaching-an-open-model-to-do-science
2•gmays•39m ago•0 comments

VSCode-code-widgets: Interactive widgets embedded in source code

https://github.com/CZDanol/vscode-code-widgets
2•thunderbong•43m ago•0 comments

'We Did Our Best': Metaphors of Parenting and AI

https://www.nybooks.com/articles/2026/06/25/we-did-our-best-ai-meghan-ogieblyn/
3•mitchbob•48m ago•1 comments

Why My Father Is Wrong: A Defense of Guitar Hero

https://whatever.scalzi.com/2026/08/10/why-my-father-is-wrong-a-defense-of-guitar-hero/
10•Tomte•48m ago•0 comments

Don't Classify. Hallucinate

https://softwaredoug.com/blog/2026/08/10/hypothetical-classifications.html
2•Tomte•49m ago•0 comments

Show HN: Seedle, daily -dle for Minecraft seeds

https://seedle.loch.tools/
2•lwansbrough•53m ago•0 comments

Plethora – your new (social) platform for Interactive Media

https://plethora.studio/
2•zenarin•54m ago•1 comments

A Technical Framework for Bring Your Own Cloud Applications

https://byocanywhere.org/
2•aloknnikhil•1h ago•0 comments

Pretense of You

https://iamwisdom.substack.com/p/pretense-of-you
2•I_Am_Wisdom•1h ago•0 comments

Wingdings (Album) 2026

https://en.wikipedia.org/wiki/Wingdings_(album)
7•ddxv•1h ago•1 comments

Hatsune Miku

https://en.wikipedia.org/wiki/Hatsune_Miku
3•palad1n•1h ago•0 comments

Meilisearch vs. Manticore: Setting the Record Straight

https://medium.com/@s_nikolaev/meilisearch-vs-manticore-setting-the-record-straight-e7d51aa08db2
2•snikolaev•1h ago•0 comments

Call centres using AI to 'whiten' Indian accents (2025)

https://tech.yahoo.com/ai/articles/call-centres-using-ai-whiten-090000847.html
6•vismit2000•1h ago•2 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!