frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

You Can Run

https://magazine.atavist.com/2026/mccann-cocaine-fugitives
1•bryanrasmussen•21s ago•0 comments

The fourth law (on AI-generated supercustomized email marketing)

https://www.robinsloan.com/lab/fourth-law/
1•brandur•28s ago•0 comments

We have decided to make our service FREE. (Bloomberg Terminal for Everyone)

https://www.bullbear.ninja/notes/everything-free-ad-supported
1•haebom•1m ago•1 comments

Claudemux – Run and coordinate multiple Claude Codes reliably

https://github.com/wastedcode/claudemux
1•zeppelin_7•1m ago•1 comments

Authentic looking D&D homebrews with Markdown

https://homebrewery.naturalcrit.com/
1•Svoka•2m ago•1 comments

Show HN: Oh my wrist – Garmin alerts for Claude Code and OpenCode

https://github.com/yazon/oh-my-wrist
1•yazon•4m ago•0 comments

The mayor of Shelbyville, IN says only 'shitty houses' oppose data center

https://www.theverge.com/ai-artificial-intelligence/944984/shelbyville-indiana-mayor-shitty-house...
2•timpera•4m ago•0 comments

Adobe Photoshop: A Case for Keeping an Intel or PowerPC Mac

https://lowendmac.com/2025/adobe-photoshop-a-case-for-keeping-an-intel-or-powerpc-mac/
1•herbertl•7m ago•0 comments

Blackopscloud: Private VPS in seconds, email signup, crypto

https://blackopscloud.com/verify?redirect=%2F
2•hardboners69•8m ago•1 comments

Language models transmit behavioural traits through hidden signals in data

https://www.nature.com/articles/s41586-026-10319-8
1•momentmaker•10m ago•0 comments

Communities of Not

https://lucumr.pocoo.org/2026/6/6/communities-of-not/
1•Tomte•13m ago•0 comments

VibeOS

https://github.com/hansstam86/wibeos/tree/main
1•hans863•15m ago•1 comments

Every AI Agent Feature Is a Cache Invalidation Surface

https://www.openclacky.com/engineering/cache-invalidation-surface
1•gemHunter•17m ago•0 comments

From State to Foresight: Adding a Predictive World Model to an LLM Assistant

https://zenfox.ai/research/world-model-llm-assistant
1•zenfoxai•19m ago•0 comments

The last astronomers: astrophysicists left questioning the soul of their field

https://www.science.org/content/article/amid-flood-ai-advances-astrophysicists-are-questioning-so...
2•creamyhorror•20m ago•0 comments

Police in England and Wales told to halt AI use in court statements

https://www.ft.com/content/229e5949-3ebc-4151-8a86-a01b5e259241
2•nmstoker•20m ago•0 comments

A 40-Node 1U Cluster Gigabyte R1C7-K0A-AS1

https://www.servethehome.com/a-40-node-1u-cluster-gigabyte-r1c7-k0a-as1/
2•ksec•24m ago•1 comments

Scientists found a surprisingly simple way to create powerful quantum states

https://www.sciencedaily.com/releases/2026/06/260606075510.htm
1•hsnewman•25m ago•1 comments

Total Reciprocity Public License

https://trplfoundation.org/
1•birdculture•25m ago•0 comments

AI didn't break the web. The dotcons did – AI just turned up the volume

https://hamishcampbell.com/ai-didnt-break-the-web-the-dotcons-did-ai-just-turned-up-the-volume/
2•speckx•25m ago•0 comments

Python JIT project was asked to pause development

https://discuss.python.org/t/an-announcement-from-the-steering-council-regarding-the-jit-project/...
2•kbumsik•25m ago•0 comments

Microsoft continues its big Linux push at Build 2026

https://www.zdnet.com/article/microsoft-continues-its-linux-company-shift/
1•abdelhousni•26m ago•0 comments

Microsoft launches Scout, an OpenClaw-inspired personal assistant

https://techcrunch.com/2026/06/02/microsoft-launches-scout-an-openclaw-inspired-personal-assistant/
1•Pearlapp•29m ago•0 comments

Show HN: Native Mac app which places an teleprompter in your Mac's notch

https://apps.apple.com/in/app/cuenotch-notch-teleprompter/id6760926058?mt=12
1•siddharthrk14•29m ago•0 comments

Medically supervised water-only fasting in the treatment of hypertension

https://pubmed.ncbi.nlm.nih.gov/11416824/
1•pseudolus•30m ago•0 comments

How does Effect work under-the-hood?

https://effect-guide.netlify.app/
1•obadakhalili•31m ago•1 comments

Drawing Hands

https://hari.computer/drawing-hands
1•andytratt•34m ago•0 comments

A Cross-Language Perspective on Speech Information Rate (2011) [pdf]

https://gwern.net/doc/cs/algorithm/information/2011-pellegrino.pdf
1•tosh•37m ago•0 comments

Two characters named Dennis the Menace were created independently the same day

https://www.smithsonianmag.com/arts-culture/dennis-menace-has-evil-british-twin-180958114/
1•nobody_nothing•38m ago•0 comments

Show HN: MemoryHole – Personal Internet Archive

https://memoryhole.app/blog/welcome-all
1•flippant•38m 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!