frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

LogsGo – an experimental log ingestion/query project I built to learn

1•SaumyaCodes•2m ago•0 comments

Why Japan has such good railways

https://worksinprogress.co/issue/why-japan-has-such-good-railways/
1•RickJWagner•3m ago•0 comments

We're Hooked on Satellites. It Could Blow Up in Our Faces

https://www.cnet.com/science/space/features/satellite-overcrowding-space-junk-low-earth-orbit-sta...
1•geox•3m ago•0 comments

Show HN: Pvm – A TUI to browse and run commands across multiple Python venvs

https://github.com/Higangssh/pvm
1•swq115•4m ago•0 comments

A Reality Check on the Inequality Panic

https://pastimperfect.humanprogress.org/p/a-reality-check-on-the-inequality
1•RickJWagner•4m ago•0 comments

SemanticForge: Making AI Values Verifiable Across Cultures

https://github.com/xiaojialove-DRP/SemanticForge
1•xiaojiahaina•5m ago•0 comments

Thumb-Shift Keyboard

https://en.wikipedia.org/wiki/Thumb-shift_keyboard
1•riffraff•6m ago•0 comments

Show HN: ApplyPilot – Self-Hosted AI-Powered Job Search Companion. Open Source

https://github.com/eliornl/applypilot
1•eliornl•15m ago•0 comments

Sperm whales' communication closely parallels human language, study finds

https://www.theguardian.com/environment/2026/apr/15/sperm-whales-alphabet-vocalizations-similar-h...
1•breve•16m ago•0 comments

Việt Nam: Local Police Dox and Fine Citizens over Critical Comments

https://thevietnamese.org/2026/04/social-media-crackdown-in-viet-nam-local-police-dox-and-fine-ci...
1•BaudouinVH•17m ago•0 comments

You can have an RSS dependent website in 2026

https://matduggan.com/you-can-absolutely-have-an-rss-dependent-website-in-2026/
2•swq115•18m ago•0 comments

How China Built Its Vast Natural Gas Stockpile

https://www.nytimes.com/2026/04/08/business/china-natural-gas-reserves-iran-war.html
1•bookofjoe•20m ago•1 comments

The Apple II Moment is here

https://hipocampus.ai/blog/apple-ii-moment
3•LivingGlitcher•23m ago•1 comments

Flock Condemns False Child Predator Allegations, Yet Calls Critics Terrorists

https://ipvm.com/reports/flock-allegations-critics
4•jhonovich•24m ago•1 comments

GPT‑2: 1.5B release (2019)

https://openai.com/index/gpt-2-1-5b-release/
1•Alifatisk•28m ago•0 comments

IEEE SouthEastCon 2026 Authors List

https://edas.info/web/southeastcon2026/program.html
1•yoryter•29m ago•0 comments

Oil Depletion Allowance

https://en.wikipedia.org/wiki/Oil_depletion_allowance
1•thelastgallon•33m ago•0 comments

Decode Your Life Path and Love Line Instantly

https://destinymatrics.com/
1•hmazapthan•35m ago•0 comments

Snakes and Ladders

https://entropicthoughts.com/snakes-and-ladders
1•kqr•35m ago•0 comments

AI Is Finding More Bugs Than Open-Source Teams Can Fight Off

https://www.bloomberg.com/news/articles/2026-04-17/anthropic-s-mythos-adds-strain-on-cybersecurit...
3•helsinkiandrew•41m ago•2 comments

5x faster prime generation than OpenSSL via Riemann zeta zeros (SpectralPrimes)

https://github.com/model-vpr/ultrafast-spectral-primes
1•vpr-research•43m ago•0 comments

Launchstack – Open-source knowledge layer that index your docs for Claude MCP

https://github.com/Deodat-Lawson/LaunchStack
1•DaggersDreaming•44m ago•0 comments

The quiet disappearance of the free-range childhood

https://bigthink.com/mind-behavior/the-quiet-disappearance-of-the-free-range-childhood/
14•sylvainkalache•48m ago•4 comments

State of Kdenlive

https://kdenlive.org/news/2026/state-2026/
16•f_r_d•50m ago•4 comments

Practical Antiforgery in Software Design

https://hudlow.org/2026/practical-antiforgery
3•fanf2•50m ago•0 comments

Floating Point Fun on Cortex-M Processors

https://danielmangum.com/posts/floating-point-cortex-m/
2•hasheddan•51m ago•0 comments

Bacterial enzyme-responsive hydrogels deliver antibiotics to infected wounds

https://www.science.org/doi/10.1126/sciadv.adz0786
3•PaulHoule•51m ago•0 comments

Poor Planning and Lax Oversight Wastes Millions

https://www.mass.gov/doc/the-steamship-authoritys-website-development-project/download
3•jonl521•52m ago•0 comments

Tell HN: GitHub Apps – Private key is not private

https://github.com/login
1•time4tea•52m ago•2 comments

A Consigliere on Every Desk and in Every Home

https://www.wysr.xyz/p/a-consigliere-on-every-desk-and-in
1•martialg•52m 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•11mo ago

Comments

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