frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Key Study: Social status and stress in Olive Baboons (1990)

https://www.themantic-education.com/ibpsych/2020/10/08/key-study-social-status-and-stress-in-oliv...
1•curmudgeon22•1m ago•0 comments

Agent-Assisted SGLang Development: An Initial Exploration

https://www.lmsys.org/blog/2026-07-02-agent-assisted-sglang-development/
1•gmays•2m ago•0 comments

Cache-Conscious Data Layout in Rust: Field Zoning, False Sharing, 128-Byte Rule

https://debasishg.github.io/blog/part1-cache-conscious-data-layout-in-rust/
1•eigenBasis•2m ago•0 comments

Run WSL2 Fedora with Mainstream/Rolling Linux Kernel

https://blog.benyamin.xyz/2026/06/27/run-wsl2-fedora-with-mainstream-rolling-linux-kernel/
1•benlimanto•3m ago•0 comments

GNU Parallel 20260622 ('Rape Gang Inquiry') Released

https://lists.gnu.org/archive/html/parallel/2026-06/msg00000.html
1•jiqiren•7m ago•1 comments

Panoptes – AI audit and alignment layer

https://github.com/miggy-code/Panoptes
1•mpadilla•7m ago•1 comments

I'm Not Good at Goodbyes

https://hannahaubry.online/im-not-good-at-goodbyes
1•backlit4034•8m ago•1 comments

Optimizing open-source FPGA 80386 for performance gains

https://hackaday.com/2026/07/06/performance-improvements-for-open-source-80386/
1•whiteblossom•10m ago•0 comments

Show HN: Emem.dev – signed earth memory for physical AI

1•avijeetsingh16•11m ago•0 comments

A nonsense phrase of shady provenance makes the rounds, Elsevier defends its use

https://retractionwatch.com/2025/02/10/vegetative-electron-microscopy-fingerprint-paper-mill/
2•jacquesm•11m ago•0 comments

Max Ginsburg, War Pieta, 2007

https://narrativepainting.net/max-ginsburg-war-pieta-2007/
2•halperter•21m ago•0 comments

'Our business today is not healthy': MSFT looks to 'reset' gaming division

https://fortune.com/2026/07/06/microsoft-xbox-layoffs-gaming-division-1600-4800-employees/
1•1vuio0pswjnm7•25m ago•1 comments

Albuquerque Modernism: Manera Nueva and Steve Baer

https://albuquerquemodernism.unm.edu/posts/cs14_manera_nueva_placitas.html
1•PaulDavisThe1st•25m ago•0 comments

Show HN: Storytelling for coding agents, using Pixar's story process

https://kashyab.com/blog/teaching-a-coding-agent-to-write-stories.html
2•Kashyab12•25m ago•0 comments

OSS Local AI Workspace

https://www.usestitch.ai/
2•tomEdison•30m ago•0 comments

Sculpt a Vase

https://killedbyapixel.github.io/VaseFX/
2•memalign•32m ago•2 comments

Microsoft to cut 4,800 jobs in major Xbox and gaming division 'reset'

https://www.fastcompany.com/91569769/xbox-layoffs-microsoft-sharma
2•1vuio0pswjnm7•40m ago•1 comments

Machine Is a Server. Do Not Power Down

https://adlternative.github.io/posts/ai/from-local-agent-to-cloud-agent/
1•adltereturn•40m ago•0 comments

AutomationBench-AA

https://artificialanalysis.ai/articles/announcing-zapier-automationbench-aa
1•jameson•41m ago•0 comments

Taste when your user has no eyes

https://twitter.com/renzo_viale/status/2068730076989186283
1•rvialep•41m ago•0 comments

Gadgets for People Who Don't Trust the Government [video]

https://www.youtube.com/watch?v=W_F4rEaRduk
1•Bender•41m ago•0 comments

How Do Synthesizers Work? (An Interactive Exploration)

https://perthirtysix.com/how-the-heck-do-synthesizers-work
2•gmays•42m ago•1 comments

Show HN: • Introducing Dotflowy

https://twitter.com/CameronPak/status/2074262605779124317
1•campak•44m ago•1 comments

Apple 'Hide My Email' Vulnerability Reveals Peoples' Real Email Addresses

https://www.404media.co/apple-hide-my-email-vulnerability-reveals-peoples-real-email-addresses/
2•1vuio0pswjnm7•47m ago•1 comments

Link Site

https://xxsml.com
1•sohocs509•50m ago•1 comments

First Kirby Game Was Created with a Trackball, No Keyboard

https://www.pcmag.com/news/first-kirby-game-was-created-with-a-trackball-no-keyboard
2•scottchiefbaker•52m ago•0 comments

Show HN: Foundation – A Tale of Tokens and Psychosis

https://github.com/nmxmxh/foundation
1•MomohNobert•54m ago•0 comments

Freemediaheckyeah

https://fmhy.net/reading
1•kamphey•57m ago•0 comments

Building a Datacenter in My Dorm Room

https://corvaglia.dev/blog/2026/datacenter-in-dorm/
1•corvad•58m ago•0 comments

Windows 11 will soon be able to reinstall itself and drivers without a USB drive

https://www.windowscentral.com/microsoft/windows-11/windows-11-will-soon-be-able-to-reinstall-its...
2•thunderbong•58m ago•1 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!