frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Counterstrike 1969 TV Series

https://archive.org/details/counterstrike-1969-tv-series
2•petethomas•3m ago•0 comments

Trump orders aircraft carrier redesign to use steam catapults to launch jets

https://www.theguardian.com/us-news/2026/aug/13/trump-aircraft-carriers-steam-catapults
2•decimalenough•3m ago•0 comments

Users of psychedelics narratively turn bad trips into valuable experiences

https://www.sciencedirect.com/science/article/pii/S0955395920303352#bib0056
1•MrJagil•6m ago•0 comments

The Making of Cursor's Icons

https://www.minoradventures.co/blog/the-making-of-cursors-icons
1•duck•7m ago•0 comments

Definium says LSD-based pill reduces anxiety in late-stage study

https://www.reuters.com/business/healthcare-pharmaceuticals/definium-says-lsd-based-pill-reduces-...
1•oliverulerich•8m ago•0 comments

Cicada.os, Graphene.os for Your Laptop

https://kpres12.github.io/Cicada.OS/
1•kpres62•13m ago•1 comments

How Claude's watermarking (probably) works

https://johnjwang.com/post/2026/08/12/how-claude-watermarking-probably-works/
1•882542F3884314B•17m ago•0 comments

Infodump about Monkey Island

https://pants.fishing
1•dmarinus•18m ago•0 comments

User reports show problems with LinkedIn

https://downdetector.com.au/status/linkedin/
1•hahahaa•19m ago•0 comments

Border blaster

https://en.wikipedia.org/wiki/Border_blaster
4•petethomas•28m ago•0 comments

Programing language faster than Python for ML (Jaithon 3.1)

https://github.com/abhiramasonny/jaithon
1•AbhiramaVS•28m ago•2 comments

Elon Musk is suing California over an AI law. Here's why transparency matters

https://www.sfchronicle.com/opinion/openforum/article/ai-data-law-california-22382698.php
1•newsomix9xl•30m ago•0 comments

Portable Doom (Shareware) in a Single 6MB HTML File via WASM

https://wasi-doom.netlify.app/
1•badfox•30m ago•1 comments

Show HN: A 3-page information-theoretic lower bound on random TSP

https://zenodo.org/records/21911759
1•Dori_Lee•30m ago•0 comments

Show HN: Liferay Stylebook token generator CLI (NPM)

https://www.npmjs.com/package/stylebook-token-generator
1•jay__proto•33m ago•0 comments

The Future of Libraries in BPF

https://lwn.net/Articles/1084869/
1•pykello•34m ago•0 comments

Aluminum Frame PC Fan Corsi-Rosenthal Build (2023)

https://itsairborne.com/aluminum-frame-pc-fan-corsi-rosenthal-build-c28aa7ca8927
1•walterbell•38m ago•0 comments

Anthropic Is not worth much at all

https://s-1.vercel.app/posts/why-openrouter-can-be-the-next-great/
1•Taikhoom10•39m ago•5 comments

Executable SOAR playbook dataset – AI agents pay per record via HTTP 402

https://lateos.ai/soar/
1•leochong•42m ago•0 comments

The Infinite Policeman – A Crookery

https://medium.com/luminasticity/the-infinite-policeman-chapter-3-d3e8e30a6969
1•bryanrasmussen•43m ago•0 comments

Show HN: Curl Stock Research

https://stockchat.sh/cli
1•netless•45m ago•0 comments

Flock puts new 'guardrails' on license-plate cameras. Critics skeptical

https://www.sfchronicle.com/crime/article/flock-cameras-ceo-surveillance-policy-22384139.php
4•newsomix9xl•48m ago•1 comments

Openleaf: Overleaf's workflow. Obsidian's interface. None of the cloud

https://github.com/vicky157/openleaf
1•vikashjohn2505•49m ago•0 comments

The Jobless Boom Has Arrived

https://www.wsj.com/economy/jobs/the-jobless-boom-has-arrived-41361a06
5•petethomas•52m ago•0 comments

Daily driving PostmarketOS (Summer 2026)

https://blog.senderolinux.com/daily-driving-postmarketos-summer-2026/
2•WhyNotHugo•52m ago•1 comments

Air Purifiers as White Noise Machines

https://www.jefftk.com/p/air-purifiers-as-white-noise-machines
1•luu•52m ago•2 comments

End-to-end encrypted .env sharing

https://github.com/p-arndt/shenv
1•kermatt•53m ago•0 comments

How AI engines cite brands?

https://www.leapd.ai/blog/ai-visibility/how-chatgpt-google-ai-overviews-and-perplexity-source-inf...
2•Angelbirth1369•55m ago•1 comments

Ask HN: How are you preventing brainrot?

4•flyingcoder•56m ago•4 comments

Ask HN: What is something produced by GenAI that you use regularly?

1•razorbeamz•58m 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!