frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

LLM AI Chatbots are letting me down every single day

https://umrashrf.github.io/llm-ai-chatbots-are-letting-me-down-every-single-day/
1•postbase•2m ago•0 comments

Bumblebees spontaneously solve problems – Science News [video]

https://www.youtube.com/watch?v=B77Hb2SKJZo
1•hheikinh•9m ago•0 comments

Cloudflare: bots have passed human traffic online, a year faster than expected

https://www.tomshardware.com/tech-industry/artificial-intelligence/bots-have-now-passed-human-tra...
1•spenvo•10m ago•0 comments

Bumblebees show advanced problem-solving skills in new experiment

https://www.cnn.com/2026/06/04/science/bumble-bees-insight-problem-solving
1•hheikinh•10m ago•0 comments

The Kyle Kingsbury Podcast Podcast – Episode 1 – Alex Dripchak

https://aphyr.com/posts/422-the-kyle-kingsbury-podcast-podcast-episode-1-alex-dripchak
1•yurivish•10m ago•0 comments

'Aren't the Organs a Silver Lining?'

https://longreads.com/2026/05/19/fentanyl-opioids-organ-donation-arizona-oneill/
1•gmays•11m ago•0 comments

Is LinkedIn Entering Its Post-Cringe Era?

https://www.nytimes.com/2026/06/04/business/linkedin-social-media-influencers.html
1•1vuio0pswjnm7•13m ago•1 comments

Show HN: Laravel Octane Benchmark (Swoole, RoadRunner, FrankenPHP)

https://terrylinooo.github.io/laravel-octane-benchmark/
1•terrylinooo•16m ago•0 comments

Unicode Fonts and Tools for X11

https://www.cl.cam.ac.uk/~mgk25/ucs-fonts.html
2•kristianp•17m ago•0 comments

Jo – Secure Programming for the AI Era

https://jo-lang.org/blog/2026-06-04-introducing-jo.html
1•rguiscard•19m ago•0 comments

Easy Writer: On Ted Geltner's Biography of Denis Johnson

https://www.metropolitanreview.org/p/easy-writer
1•benbreen•20m ago•0 comments

In a First, Scientists Precisely Edit Human Embryo Genes

https://www.nytimes.com/2026/06/04/science/embryos-gene-editing-crispr.html
1•bonsai_spool•21m ago•0 comments

Show HN: Bonsai –- Using agentic AI / browser / memory to replace ChatGPT

https://drive.google.com/drive/folders/1YUQ3tmcBSLEyBKLi5JdJgmod9mqXFTgl
1•coolwulf•24m ago•0 comments

US adult cigarette smoking rate hits another all-time low

https://apnews.com/article/adult-smoking-cigarette-decline-survey-3dfc9d82fcc106e49a5706819d438239
5•paulpauper•26m ago•0 comments

The small businesses trying to prop up the tandem bike industry

https://thehustle.co/newsletters/03-06-2026
1•paulpauper•29m ago•0 comments

Show HN: A simpl bookmark manager for Mac and iOS

https://bendansby.com/apps/markwell.html
2•webwielder2•30m ago•0 comments

Does banking consolidation harm households?

https://papers.ssrn.com/sol3/papers.cfm?abstract_id=6851099
1•paulpauper•31m ago•0 comments

Meta enables adb on deprecated Portal devices

https://fb.watch/HxPu0fSyeH/
17•jenders•31m ago•5 comments

Identity Access is not just for technical people

https://pathros.cc/local/
1•dominiconwuka•32m ago•1 comments

Medicare to launch weight loss drug option in July with $50 copay

https://www.npr.org/2026/05/06/nx-s1-5812662/medicare-bridge-glp1-drugs-copay
2•JumpCrisscross•38m ago•0 comments

3ds-CLI, full Linux env on a Nintendo 3ds using RISC V emulation

https://github.com/cmdada/3DS-CLI
2•cmdada•38m ago•1 comments

Americans on GLP-1s Are Overwhelming Retailers with Their Nonstop Returns

https://www.wsj.com/business/retail/americans-on-glp-1s-are-overwhelming-retailers-with-their-non...
2•JumpCrisscross•40m ago•0 comments

Amber Tree: A Middle Ground Between Rowan Red and Green Trees

https://blog.gplane.win/posts/introducing-amber-tree.html
2•gplane•41m ago•0 comments

Consciousness Atlas – 325 theories of consciousness

https://www.consciousnessatlas.com/
1•maebert•42m ago•1 comments

Sites for free transparent PNG assets (no signup, no watermark)

https://wowpng.com/
1•kanlabs•44m ago•0 comments

Software Has Long Been Beyond Our Understanding

https://kylemcgough.com/blogs/software-has-long-been-beyond-our-understanding
1•sosodev•46m ago•0 comments

Yon – a topos-oriented language with a content-addressed lattice heap

https://yon-lang.org/
1•amenn•47m ago•0 comments

Show HN: LLMhop – A tiny, stateless router for LLMs with a NixOS module

https://github.com/mirkolenz/llmhop
1•mlenz•49m ago•0 comments

Marketing Cygnus Support – Free Software History

http://www.toad.com/gnu/cygnus/
2•njn•50m ago•0 comments

Show HN: ControllerTest-test gamepads,stick drift and polling rate by browser

https://controllertestonline.com/
1•zylics•54m 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!