frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Code responsibly, don't drink and vibecode

https://usama.leaflet.pub/3mpdjez6cz22g
1•iarchetype•14s ago•0 comments

Show HN: Rendering Markdown with LaTeX in the Terminal

https://mil.ad/blog/2026/latex-in-markdown.html
2•playnext•8m ago•1 comments

Show HN: Looped Whisper (FOSS) – Voice transcription menubar app for macOS

https://github.com/loopedautomation/whisper
1•RatulMaharaj•8m ago•0 comments

Build System Improvements, Centralized Overview, etc.

https://gist.github.com/rcalixte/0afb119cbcc130c21063839f65b53ab7
1•rcalixte•13m ago•0 comments

The Number Nobody Knows

https://motplot.app/helloworld
1•jamwise•14m ago•1 comments

Show HN: Adipoli: a hand-wired keyboard for opposable thumbs

https://codeberg.org/sudobangbang/adipoli
2•sudo_bangbang•22m ago•0 comments

Jimmy is a tool to convert your notes from different formats to Markdown

https://marph91.github.io/jimmy/
3•CTOSian•27m ago•0 comments

Microsoft Bought a Nuclear Plant

https://moai.studio/blog/posts/microsoft-bought-a-nuke-plant.html
2•ionwake•29m ago•2 comments

France Is Too Hot for Shutters and Ceiling Fans

https://www.theatlantic.com/ideas/2026/06/france-air-conditioning-failure/687723/
3•paulpauper•30m ago•0 comments

Higher Ed Is Sorry

https://www.theatlantic.com/ideas/2026/06/higher-education-universities-public-trust/687714/
2•paulpauper•30m ago•0 comments

Show HN: Drift, write LLM agents in English and transpile to async Python

https://github.com/rileyq7/drift
2•rileyq12•32m ago•0 comments

The Memory Tax

https://bycig.substack.com/p/the-memory-tax
2•paulpauper•32m ago•0 comments

Token Capital Efficiency

https://kmad.ai/Token-Capital-Efficiency
2•kmad•35m ago•0 comments

Utility boss warns US faces blackouts due to power supply shortfall

https://www.ft.com/content/14d2e591-7cd5-4456-904f-1b7fdc5cbc1a
3•Geekette•35m ago•2 comments

Mel Brooks is 100 today

https://www.theatlantic.com/culture/2026/06/long-live-mel-brooks/687730/
10•shellback3•36m ago•0 comments

I made a tool to check out open source websites

https://github.com/Frenxys/portfolio-finder
2•Frenea•37m ago•0 comments

Visual Basic on the PC with Windows 3.1

https://stonetools.ghost.io/visualbasic-win31/
2•TMWNN•40m ago•0 comments

Rats and mice are mutating and becoming resistant to poison, researchers warn

https://www.independent.co.uk/news/world/americas/rats-mice-mutating-poison-resistance-warning-b3...
3•Vaslo•44m ago•0 comments

Show HN: NameSnag – Get alerted when a watched domain appears available

https://namesnag.io
2•pro_methe5•47m ago•0 comments

Strong Relationships, Loosely Held

https://www.jerry.wtf/posts/strong-relationships-loosely-held/
3•personjerry•48m ago•1 comments

There are 5.7M more childless women of prime child-bearing age than expected

https://carsey.unh.edu/publication/factors-contributing-demographic-cliff-more-us-women-childbear...
2•loughnane•52m ago•1 comments

My First Encounter with a Political Spambot

https://tombedor.dev/political-spam/
3•jjfoooo4•52m ago•0 comments

Question: Is matching fixed regexes with back-references in P?

https://branchfree.org/2019/04/04/question-is-matching-fixed-regexes-with-back-references-in-p/
1•fanf2•54m ago•0 comments

Ask HN: Books about Genetic Algorithms

6•andyjohnson0•56m ago•1 comments

POSIX Is Not a Shell

https://alganet.github.io/blog/2026-06-28-12-POSIX-Is-Not-A-Shell.html
2•gaigalas•57m ago•0 comments

Show HN: I reverse-engineered the RLF log format used by REMUS underwater drones

https://github.com/isaacgerg/remus-rlf-reader
1•ipunchghosts•58m ago•0 comments

Technology and Power

https://www.chrbutler.com/technology-and-power
3•delaugust•58m ago•0 comments

Attention is all we have: A conjectural theory of cognitive inequality

https://davidbessis.substack.com/p/attention-is-all-we-have
3•Luc•1h ago•0 comments

Startup Wants to Sell a U.S.-Built Tiny Truck for $21,500

https://www.roadandtrack.com/news/a71667299/reo-industries-runabout-aims-to-simplify-the-truck-ma...
4•rmason•1h ago•1 comments

Claude Code now uses dark UI patterns to gain Google account access via MCP

https://claude.com/docs/connectors/google/gmail
2•janpeuker•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!