frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Effect Agent

https://github.com/danieljvdm/effect-agent
1•handfuloflight•42s ago•0 comments

How work makes families more equal

https://www.economist.com/international/2026/09/03/how-work-makes-families-more-equal
1•andsoitis•3m ago•0 comments

Patterns, Predictions, and Actions: A story about machine learning [pdf]

https://mlstory.org/pdf/patterns.pdf
1•Anon84•5m ago•0 comments

NoGraphicsAPI

https://github.com/sebbbi/NoGraphicsAPI
1•coffeeaddict1•5m ago•0 comments

GitHub issues on Laravel open-source packages are disabled now

https://twitter.com/taylorotwell/status/2095516796748996843
1•heyiamlukas•7m ago•1 comments

Does KaiOS sell my text message data?

https://www.reddit.com/r/KaiOS/comments/1w4op2m/does_kaios_sell_my_text_message_data/
1•endofreach•7m ago•0 comments

How (Not) to Find a SWE Job in North America

https://tolkunov.dev/posts/how-to-find-a-job-in-north-america/
1•frant1c•11m ago•0 comments

Kevin Bass on X: "Women gained all of the new jobs since January 2025

https://twitter.com/kevinnbass/status/2096073961524076916
2•bilsbie•13m ago•0 comments

There's No Such Thing as an AI 'Lab'

https://www.theatlantic.com/technology/2026/09/stop-calling-ai-companies-labs/688528/
1•Anon84•13m ago•0 comments

Discrete Dipole Approximation Code Ddscat 7.2 (2012)

https://arxiv.org/abs/1202.3424
1•doener•15m ago•0 comments

OpenSourceRail

https://github.com/modernecotech/OpenSourceRail/tree/main
1•modernecotech•16m ago•1 comments

ISAR Aerospace 5 Sept Mission Onward and Upward

https://isaraerospace.com/mission-updates-overview
2•t43562•19m ago•1 comments

Trump Officials Draft Plan to Pay At-Home Parents, Using Funds for Working Ones

https://www.nytimes.com/2026/09/05/us/politics/stay-at-home-parents-subsidies.html
3•koolba•20m ago•0 comments

Who Killed the American Demoscene? (2019)

https://www.vice.com/en/article/who-killed-the-american-demoscene-synchrony-demoparty/
3•wy35•22m ago•1 comments

Generating scenarios for extreme events, without extreme data

https://news.mit.edu/2026/generating-scenarios-extreme-events-without-extreme-data-0824
1•taubek•22m ago•0 comments

Daemoncore Academy Now 100% Free Cyber Security Certifications

https://www.daemoncore.app/
1•DaemonCoreApp•26m ago•0 comments

Ling 3.0 Tiny

https://huggingface.co/inclusionAI/Ling-3.0-tiny
1•AbuAssar•27m ago•0 comments

Ask HN: Did you see this Polymarket post on X today?

1•skwasimin•29m ago•1 comments

Show HN: ChatPanel Now Available on Firefox

https://chatpanel.net/
1•earth2mars•30m ago•1 comments

Eliza Effect

https://en.wikipedia.org/wiki/ELIZA_effect
3•tripdout•31m ago•1 comments

UN votes to adopt new map that makes our world look different

https://www.cnn.com/2026/09/04/world/un-vote-new-world-map-intl-scli
1•consumer451•32m ago•0 comments

Show HN: Claude Skill – Interns must review (your agent's design choices)

https://github.com/alpbahadur/interns-review-plugin
9•alpbahadur•33m ago•0 comments

Elon Musk's Inner Circle Is Pouring Cash into Making Psychedelics Mainstream

https://www.wsj.com/health/healthcare/elon-musks-inner-circle-is-pouring-cash-into-making-psyched...
2•gmays•34m ago•0 comments

Large language models can predict the results of social science experiments

https://www.nature.com/articles/s41586-026-10742-x
2•paulpauper•34m ago•0 comments

Our Likely Future Filter: World Govt

https://www.overcomingbias.com/p/most-likely-future-filter-world-govt
1•paulpauper•35m ago•0 comments

The Danube River's water is dropping so low that World War II ships are emerging

https://www.pbs.org/newshour/world/the-danube-rivers-water-is-dropping-so-low-that-world-war-ii-s...
1•throwaway2037•35m ago•0 comments

Anyone using llama.cpp willing to test LlamaRack?

https://github.com/brantje/LlamaRack
1•Vibecoder_•36m ago•1 comments

Share price numbers for the Hugging Face incident

https://marginalrevolution.com/marginalrevolution/2026/09/more-numbers-for-the-hugging-face-incid...
1•paulpauper•37m ago•0 comments

Benzi – A harness reading LESS source code to write better quality code

https://github.com/oooscoos/Benzi
1•kamarovmakarov•38m ago•1 comments

Phase Dynamics on a T 3-Manifols

https://zenodo.org/records/22377516
1•AevumOriens•41m 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!