frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Giving LLMs a Formal Reasoning Engine for Code Analysis

https://yogthos.net/posts/2026-04-08-neurosymbolic-mcp.html
1•boriskourt•1m ago•1 comments

When Representation Replaces Reality in Modern Systems

https://dx.doi.org/10.2139/ssrn.6150706
1•realitydrift•3m ago•0 comments

Sokoban Solver in Zig

https://github.com/begoon/zig-sokoban-solver/
1•begoon•3m ago•0 comments

The Intl API: The best browser API you're not using

https://polypane.app/blog/the-intl-api-the-best-browser-api-youre-not-using/
2•Terretta•8m ago•0 comments

This "rotten egg" brain gas could be the key to fighting Alzheimer's disease

https://www.sciencedaily.com/releases/2026/04/260408225933.htm
1•Noaidi•9m ago•1 comments

The State of Startups 2026

https://supabase.com/state-of-startups
1•fmerian•11m ago•0 comments

A Three- and a Four- Body Problem

https://www.johndcook.com/blog/2026/04/08/artemis-1-apollo-12/
1•ibobev•12m ago•0 comments

Andrica's conjecture on the gap between root primes

https://www.johndcook.com/blog/2026/04/08/andrica/
2•ibobev•12m ago•0 comments

An Atari 8-bit Computer Timeline

https://www.goto10retro.com/p/an-atari-8-bit-computer-timeline
1•ibobev•13m ago•0 comments

Show HN: Gaussian splatting for real estate promotion

https://lamotte-laturballe.see-around.app/
2•dezmou•17m ago•1 comments

Britain breaks solar energy record twice as UKs biggest solar farm gets approval

https://www.theguardian.com/environment/2026/apr/08/britain-breaks-solar-energy-record-twice-uk-b...
3•_____k•18m ago•1 comments

The Soviet Network

https://literaryreview.co.uk/the-soviet-network
1•prismatic•18m ago•0 comments

Hister: Automatic local full-text indexing for visited websites

https://github.com/asciimoo/hister
1•rendx•20m ago•0 comments

Show HN: CSS Studio. Design by hand, code by agent

https://cssstudio.ai
2•SirHound•22m ago•0 comments

Why Have Sentence Lengths Decreased?

https://arjunpanickssery.substack.com/p/why-have-sentence-lengths-decreased
2•surprisetalk•22m ago•0 comments

Ms. Rachel

https://gomakethings.com/ms.-rachel/
2•surprisetalk•22m ago•0 comments

Kiki: Array Programming DSL

https://smallandnearlysilent.com/kiki/
1•surprisetalk•22m ago•0 comments

Exploring the Design Space for Runtime Enforcement of Dynamic Capabilities [video]

https://www.youtube.com/watch?v=Yug1iSqY2Y8
2•surprisetalk•23m ago•0 comments

Workflows: Durable Execution with Just Postgres

https://earendil-works.github.io/absurd/
2•birdculture•26m ago•0 comments

SuperCmd – open-source alternative to Raycast Pro, WisprFlow, and Speechify

https://supercmd.sh/
3•marksully•26m ago•0 comments

WireGuard VPN developer can't ship updates after Microsoft locks account

https://techcrunch.com/2026/04/08/wireguard-vpn-developer-cant-ship-software-updates-after-micros...
5•Liriel•26m ago•2 comments

Apple's chip 'binning' explained: What the heck does it mean?

https://www.macworld.com/article/3107278/apples-chip-binning-explained-what-is-it-and-why-does-it...
1•SonOfKyuss•28m ago•0 comments

Citeseerx.ist.psu.edu Archived, Breaking Tens of Thousands of Links

https://web.archive.org/web/20251230112235/https://citeseerx.ist.psu.edu/
2•maxaigner•30m ago•2 comments

Ask HN: What you use for quick API checks?

1•igtumt•31m ago•1 comments

Grading laptop and cell phone companies on the fixability of their products

https://pirg.org/edfund/resources/failing-the-fix-2026/
1•giuliomagnifico•32m ago•0 comments

Standardizing HLSL

https://devblogs.microsoft.com/directx/standardizing-hlsl/
1•crispinh•32m ago•0 comments

Deflate, gzip, zlib, libz, et al.

https://curiouscoding.nl/posts/gzip/
1•tosh•38m ago•0 comments

Ask HN: AI in production feels "off" even when everything looks fine? OK 4 anon

1•stratoatlas•38m ago•1 comments

Is fake grass a bad idea? The AstroTurf wars are far from over

https://www.technologyreview.com/2026/04/09/1135092/astroturf-fake-grass-artificial-heated-debates/
1•joozio•43m ago•0 comments

BreachForums administrator identified as well-known ethical hacker

https://www.escudodigital.com/en/cybersecurity/breachforums-administrator-identified-as-well-know...
1•anonhaven•45m 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!