frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

List of Projects by Independent Developers in China

https://github.com/1c7/chinese-independent-developer
1•mmarian•32s ago•1 comments

BIS Annual Economic Report 2026 [pdf]

https://www.bis.org/publ/arpdf/ar2026e.pdf
1•1vuio0pswjnm7•6m ago•0 comments

Getting Started with Anchor Positioning

https://www.joshwcomeau.com/css/anchor-positioning/
1•ibobev•6m ago•0 comments

Roger Bacon and the Art of Grant Proposal Writing

https://galileo-unbound.blog/2026/07/13/roger-bacon-and-the-art-of-grant-proposal-writing/
1•ibobev•6m ago•0 comments

Got tired of being tracked by Windows, I built an open source telemetry blocker

https://github.com/WallabyDesigns/windows-telemetry-guard
1•wallabydesigns•7m ago•0 comments

Running Varvara on a Pi Pico 2

https://justanotherelectronicsblog.com/?p=1487
1•ibobev•7m ago•0 comments

A preview → reject → adjust loop for safer AlbumentationsX augmentations

https://pypi.org/project/albumentationsx-mcp/
1•dkosarevsky•8m ago•0 comments

UI Degrades over Time

https://grumpy.website/1723
1•JumpCrisscross•8m ago•0 comments

Somewhere, I'm online and listening to music

https://www.coryd.dev/posts/2026/somewhere-im-online-and-listening-to-music
1•cdrnsf•9m ago•0 comments

Lucid rejects take-private, bankruptcy report after shares plunge

https://www.reuters.com/legal/litigation/lucid-rejects-take-private-bankruptcy-report-after-share...
1•haunter•9m ago•0 comments

Ask HN: How can I publish a paid app to Google Play without giving up my privacy

2•SamCoding•10m ago•1 comments

FreeBSD 16 removes last GPL-licensed software, a first among *BSDs

https://old.reddit.com/r/freebsd/comments/1uwi51j/freebsd_16_removes_last_gpllicensed_software_a/
1•NexRebular•10m ago•0 comments

The Lo-Fi Way I Broke My Scrolling Habit

https://www.nytimes.com/2026/07/14/opinion/culture/phone-algorithm-addiction.html
1•bilsbie•13m ago•0 comments

Natural Light Is an Essential Nutrient

https://www.midwesterndoctor.com/p/why-light-is-an-essential-nutrient
1•bilsbie•13m ago•1 comments

Show HN: DayReplay – automatic time tracking using app and browser context

https://dayreplay.app
1•orelnuts•14m ago•0 comments

Simple AI Token Profiler / Debugger

https://profiler.getrekon.com/
1•TreDub•16m ago•1 comments

Apple acquires observability startup SigScalr

https://9to5mac.com/2026/07/13/apple-acquires-observability-startup-sigscalr/
2•taubek•18m ago•0 comments

Brif.ink – paste an article, get a short link with an AI TL;DR

https://brif.ink
1•rudixworld•18m ago•0 comments

A Perspective on the Past, Present, and Future of Video Streaming over Starlink

https://arxiv.org/abs/2409.09846
1•toomuchtodo•20m ago•1 comments

Lobste.rs is now running on SQLite

https://lobste.rs/s/ko1ji1/lobste_rs_is_now_running_on_sqlite
5•ahamez•21m ago•1 comments

Show HN: Coliseo – open-source Head to Head ELO ranking of top startups

https://coliseoelo.com/
2•rossgarlick•23m ago•0 comments

The Faculty Workload Myth

https://www.chronicle.com/article/the-faculty-workload-myth
3•Fomite•25m ago•0 comments

IBM sends 'shockwave' through tech industry with AI warning

https://www.msn.com/en-us/money/other/ibm-sends-shockwave-through-tech-industry-with-ai-warning/a...
2•petethomas•26m ago•1 comments

US State Department offers $3M grants to MAGA-aligned groups in Europe

https://www.ft.com/content/e2addd88-4361-43f1-94e2-9f0a808dd6a9
3•doener•26m ago•0 comments

Show HN: Approv – human approval and a signed audit trail for AI agent actions

1•Mersall•27m ago•0 comments

Spinning Numbers – Learn about electricity and electrical engineering

https://spinningnumbers.org/
1•tripdout•30m ago•0 comments

Half Life 2: Deathmatch on the web

https://lucasigel.com/hl2/dm
1•lukeigel•31m ago•1 comments

AI is straining vulnerability disclosure for maintainers

https://directus.com/resources/ai-is-straining-vulnerability-disclosure-for-maintainers
2•haynesben•32m ago•0 comments

OnlyMove 9×9

https://onlymove.net/
2•kqr•33m ago•0 comments

Pg_re2: Postgres extension for fast, RE2-powered regular expressions in Postgres

https://clickhouse.com/blog/introducing-pg_re2-regex-in-postgres
2•saisrirampur•36m 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!