frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Every browser has a setting that by-passes network-wide DNS filtering

https://www.makeuseof.com/every-major-browser-has-setting-that-completely-punch-through-your-netw...
1•philonoist•44s ago•0 comments

Why parquet files are my preferred API for bulk open data (2023)

https://www.robinlinacre.com/parquet_api/
1•RobinL•4m ago•0 comments

Show HN: Wet Bulb Tracker Tracker – sends you humid-heat alerts and forecasts

1•nerdsutra•5m ago•0 comments

What the 'recent invention' of reading does to our brains

https://www.rnz.co.nz/life/books/what-the-recent-invention-of-reading-does-to-our-brains
3•billybuckwheat•6m ago•0 comments

AurionMail: E2EE suite (CryptPad/Stalwart) with single-password UX

https://aurionmail.github.io/docs/
4•rita_the_best•6m ago•0 comments

OpenAI Feared "Optics" of what might appear on Hacker News

https://authorsguild.org/news/ag-v-openai-top-execs-knew-mass-book-piracy-was-illegal/
4•papergirl•8m ago•0 comments

'Pink Slime' Is Infecting AI Chatbots Ahead of the Midterms

https://www.politico.com/news/magazine/2026/09/25/midterms-partisan-ai-chatbots-01092138
1•Tomte•11m ago•0 comments

What happens when you divide by zero on a mechanical calculator?

https://www.youtube.com/watch?v=s_hbvRTGcUI
1•plun9•15m ago•0 comments

A library of human reaction clips for app demos without filming yourself

https://ugcpeople.com
3•babacklindo•17m ago•2 comments

The Perfect Crime: LLM Agents Can Easily Tamper with Their Own Traces

https://perfect-crime.ai/
1•jonbaer•24m ago•0 comments

Self-replicating prompt injections exist

https://alignment.openai.com/misalignment-reports/self-replicating-prompt-injections-exist/
1•jonbaer•24m ago•0 comments

Cooldown MMO – a browser RPG where every action is an HTTP reques

https://cooldownmmo.com/
2•lorderetik•33m ago•1 comments

PS3 emulation is fast on ARM now [video]

https://www.youtube.com/watch?v=-aI_XEwmKFk
1•tomalbrc•34m ago•0 comments

Show HN: Jauvex, one app for Claude+Codex+Grok+Jev with two-way voice chat

https://github.com/reindent/jauvex
1•daraosn•37m ago•1 comments

Exposing a GitHub token in a public repository

https://alignment.openai.com/misalignment-reports/exposing-a-github-token-in-a-public-repository/
2•mplappert•39m ago•3 comments

OpenAI Freezes Development of Top Models After Rogue Agents Leak User Images

https://openai.com/hugging-face-incident-and-misalignment/#model-misalignment-2026-09-25-data-tra...
3•justinc8687•48m ago•1 comments

Bill Clinton delivers keynote address:CGI 2026

https://www.youtube.com/watch?v=zbXbRpSwaiM
1•rasengan0•48m ago•0 comments

The 1783 sheep, duck and rooster balloon flight as a WebGL diorama

https://www.echohive.ai/experiments/versailles-balloon
1•echohive42•49m ago•0 comments

Show HN: Shipwithmuse.live – a catalog of things people built with Muse

https://shipwithmuse.live/
1•mdayan896•49m ago•0 comments

Show HN: MuseLIVE – lossless-audio live streaming platform for musicians

https://www.muse.live/
1•mdayan896•57m ago•0 comments

The internet discovers TLA+. Now what?

https://reasonable.io/blog/tla-tutorial/
3•matt_d•1h ago•0 comments

Four CHI '26 papers I wish I wrote

https://countingfromzero.blog/2026/04/24/four-chi-26-papers-i-wish-i-wrote/
1•luu•1h ago•0 comments

What Happens When Formalization Becomes Cheap?

https://yangky11.github.io/blog/ai-and-formalization/
1•matt_d•1h ago•0 comments

Show HN: Niral – Daily Tamil/Tanglish Puzzle Game

https://tamil.niral.games/
1•laxmena•1h ago•0 comments

LLM Agents Can Easily Tamper with Their Own Traces

https://arxiv.org/abs/2609.30266
2•sbulaev•1h ago•0 comments

An Introduction to Lithium Niobate Nanophotonics (2024)

https://www.latitudeds.com/post/an-introduction-to-lithium-niobate-nanophotonics
2•peter_d_sherman•1h ago•0 comments

Valley fever spreading to Central Valley cities, linked to oil drilling

https://www.latimes.com/science/story/2026-09-24/valley-fever-spreading-to-central-valley-cities-...
4•littlexsparkee•1h ago•0 comments

Show HN: Try SpikeUI (for free) and make .exe apps the easy way

https://nimoxi.com/spikeui/
1•Caronte3D•1h ago•0 comments

Ten Years of the Creative Independent

https://thecreativeindependent.com/ten-years/
4•cookingoils•1h ago•0 comments

Wall-mounted vegetable garden growing peppers over 2 meters tall [video]

https://www.youtube.com/watch?v=Wvb52q9TKKM
5•moltean•1h ago•1 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!