frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Om Malik – Symbolic Capitalism

https://om.co/2026/03/13/symbolic-capitalism/
1•rmason•30s ago•0 comments

Use GPT-5.4/CODEX to reverse engineer ancient machine code

https://github.com/jhallen/exorsim/blob/master/stuff/edos_images/fort/fort_notes.md
1•jhallenworld•1m ago•1 comments

Cruiser Carrier Board v1.0

https://www.exaviz.com/product-page/cruiser-carrier-board-v1-0
1•teleforce•1m ago•0 comments

The US slashed research for cancer, Alzheimer's, mental health – and more

https://www.vox.com/future-perfect/482363/nih-medical-research-grants-cut-2025
1•epistasis•2m ago•0 comments

Show HN: Hardened OpenClaw on AWS with Terraform

https://github.com/infrahouse/terraform-aws-openclaw
1•aleks2•2m ago•0 comments

Grammarly removes AI Expert Review feature mimicking writers after backlash

https://www.theguardian.com/books/2026/mar/13/grammarly-removes-ai-expert-review-feature-mimickin...
1•trocado•4m ago•1 comments

Show HN: Agents shouldn't operate software–they should coordinate commitments

2•csehammad•6m ago•0 comments

Dolt – Git for Data

https://github.com/dolthub/dolt
1•geoffbp•6m ago•0 comments

Ladybird Is in for a Rust Future – Andreas Kling [video]

https://www.youtube.com/watch?v=fXnuR6nXJzc
1•tcfhgj•6m ago•0 comments

These robots are born to run – and never die

https://news.northwestern.edu/stories/2026/03/evolved-robots-are-born-to-run-and-refuse-to-die
2•wjSgoWPm5bWAhXB•7m ago•0 comments

US orders 2,200 Marines to Middle East

https://www.iranintl.com/en/202603131206
2•taikon•9m ago•0 comments

Show HN: Better HN – Realtime Comment Updates and Cleaner Look

https://github.com/xpl/better-hn
2•xpl•9m ago•0 comments

Magic mushrooms' closest wild relative discovered in Africa

https://www.scimex.org/newsfeed/magic-mushrooms-closest-wild-relative-discovered-in-africa
2•bookofjoe•9m ago•0 comments

ChronologyAI – Open-Source AI

https://github.com/ricardoahague/chronology-ai
1•ricardoahague•10m ago•1 comments

Scientists use 'negative light' to send secret messages hidden inside heat

https://www.livescience.com/physics-mathematics/scientists-use-negative-light-to-send-secret-mess...
1•jonbaer•10m ago•0 comments

REM Sleep Detection: A Machine Learning Approach Using Vital Signs

https://www.mdpi.com/2673-4591/129/1/6
1•PaulHoule•11m ago•0 comments

Experimenting with healthcare AI agents using OpenClaw

https://clawsifyai.com
1•Vanshfin•11m ago•1 comments

A Day in the Life of an Enshittificator [video]

https://www.youtube.com/watch?v=T4Upf_B9RLQ
1•davyAdewoyin•13m ago•0 comments

'Disaster waiting to happen' as 85 large oil tankers lie trapped in the Gulf

https://www.greenpeace.org/international/press-release/82052/greenpeace-disaster-oil-tankers-in-p...
3•geox•14m ago•0 comments

AI, Human Cognition and Knowledge Collapse – Daren Acemoglu

2•aanet•14m ago•1 comments

Find the perfect icon for your design

https://iconsroom.com/
2•mdanassaif•16m ago•0 comments

DuckDB Kernel for Jupyter

https://medium.com/@gribanov.vladimir/building-a-full-featured-duckdb-kernel-for-jupyter-with-a-d...
3•jonbaer•16m ago•0 comments

The Pyramid and the Tomb

https://minutes.substack.com/p/the-pyramid-and-the-tomb
1•jger15•17m ago•0 comments

Diablo 2 in First Person with Unreal Engine [video]

https://www.youtube.com/watch?v=0NPl7ZGg14E
1•metadat•22m ago•0 comments

Lp(a) testing is now recommended to prevent heart disease

https://www.npr.org/2026/03/13/nx-s1-5747111/cholesterol-guidelines-lipoproteina-test
1•brandonb•22m ago•0 comments

Simulations on Xbox 360: Cardiac arrhythmias, re-entry and the Halting problem

https://www.sciencedirect.com/science/article/abs/pii/S1476927109000486
1•rbanffy•25m ago•0 comments

Pug 3.0.4

https://github.com/pugjs/pug/releases
1•guzik•25m ago•0 comments

AutoHarness: Improving LLM agents by automatically synthesizing a code harness

https://arxiv.org/abs/2603.03329
1•simonpure•26m ago•0 comments

LightSwarm – A script making ClaudeCodeMax into a free light easy swarm

https://github.com/craftfortress/lightswarm
1•ionwake•27m ago•0 comments

People using Tesla Autopilot to drive while drunk

https://bsky.app/profile/niedermeyer.online/post/3mgxbqti3yc22
3•doener•28m 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•10mo ago

Comments

semihs•10mo 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_•10mo 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•10mo 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_•10mo ago
That sounds great!