frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Sorites Paradox (Paradox of the Heap)

https://en.wikipedia.org/wiki/Sorites_paradox
2•chistev•7m ago•0 comments

Downed US pilot reported 'jellyfish' drone formation before crash

https://www.cnn.com/2026/06/23/politics/iran-drones-f-15-pilot-intelligence
1•farseer•7m ago•0 comments

Show HN: Neural Particle Automata

https://selforg-npa.github.io/
4•esychology•8m ago•0 comments

Show HN: SharpSkill, a LeetCode alternative built in 15 spoken languages

https://sharpskill.dev/en
2•Enjoyooor•9m ago•1 comments

The secret cause of the industrial revolution

https://www.worksinprogress.news/p/how-smashing-the-nimbys-created-modern
1•bensouthwood•9m ago•0 comments

Dunky State-Machine

https://www.dunky.dev/state-machine
1•ivanbanov•10m ago•1 comments

Show HN: Continuum – an open, local-first memory layer for your Mac

https://github.com/nikhilkagita04/continuum
2•nikhilkagita97•10m ago•0 comments

Most of What You Read on the Internet Is Written by Insane People (2018)

https://old.reddit.com/r/slatestarcodex/comments/9rvroo/most_of_what_you_read_on_the_internet_is_...
2•downbad_•22m ago•0 comments

AI Built a Nuke and Still Lost

https://www.lwilko.com/blog/i-gave-an-ai-a-civilization
2•kensai•23m ago•0 comments

China's CATL bets battery swapping will cut costs for Europe's electric trucks

https://www.ft.com/content/c2175609-d106-4a9c-b6a3-56aac71c569a
2•JumpCrisscross•30m ago•0 comments

Ralph Harness, a tiny guarded loop for coding agents

https://github.com/rxdt/py_ralph_frame
1•rxdt•31m ago•0 comments

Ionos warns of acute capacity shortage in Frankfurt, Germany region

https://cdn.imgtree.co/images/jvJVQIZy.jpg
1•nor0x•36m ago•1 comments

36 Hours with Fable

https://tossrock.substack.com/p/36-hours-with-fable
2•fragmede•36m ago•1 comments

New £1.1B plan to back chip firms, boost computing and skills for the AI

https://www.gov.uk/government/news/a-decisive-shift-to-power-british-ai-new-11-billion-plan-to-ba...
1•rbanffy•37m ago•0 comments

Artificial intelligence-based law firm wins in court

https://www.computerweekly.com/news/366644941/Artificial-intelligence-based-law-firm-wins-in-court
1•TMWNN•39m ago•0 comments

Zero Weights Language Model (MSE-GLM)

https://aircityshops.com/index.php?url=city/mse_blog
2•fodokidza•40m ago•0 comments

I built an AI memory engine in 10 days, then needed a project to prove it works

https://parametric-memory.dev
2•EntityOne•41m ago•0 comments

Show HN: Ideate a trading strategy with an Ex-Citadel Trader

https://sean-but-ai.vercel.app/
9•Entropnt•42m ago•4 comments

Generated this marketing video in just 12 minutes using this tool Clickcast.tech

https://www.youtube.com/shorts/ow0JWuBLCgA
1•clickcasttech•45m ago•0 comments

How to turn compute into a financial asset

https://www.economist.com/finance-and-economics/2026/06/22/how-to-turn-compute-into-a-financial-a...
2•zczc•47m ago•2 comments

How sad should I be about ChatGPT? (2022)

https://robertheaton.com/chatgpt/
3•reasonableklout•48m ago•0 comments

Ask HN: In the age of agentic coding why no one talks about orchestration tools

2•ios-contractor•51m ago•1 comments

Causal Summit

https://causalsummit.com/
2•northlondoner•52m ago•0 comments

Don't waste Claude limits babysitting AI experiments

https://heyneo.com/claude-code
2•gauravvij137•57m ago•0 comments

Show HN: Treating PowerPoint decks like code

https://github.com/sirilsengolraj-source/presentation-skill
1•Sirilsengolraj•57m ago•0 comments

AI Coding Traps Every Engineering Team Should Know

https://jsdevspace.substack.com/p/the-8-ai-coding-traps-every-engineering
2•javatuts•59m ago•0 comments

Show HN: Multiserial – a serial terminal for macOS that does not feel ancient

https://github.com/tpp6me/serial-com-multiplatform
1•praveentp•1h ago•0 comments

Chesterton's Middle Finger

https://www.arp242.net/chestersons-finger.html
1•birdculture•1h ago•0 comments

What is the best coding harness as of June 2026?

1•alxh•1h ago•1 comments

Chattiness

https://www.lrb.co.uk/blog/2026/june/chattiness
1•Michelangelo11•1h 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!