frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Show HN: I scraped 5,700 YC companies to find what niches are now getting funded

https://bigideasdb.com/saas-sellers-report
1•not_pineapple•1m ago•0 comments

Show HN: Coasty.ai – We just hit SOTA on OSWorld (computer-use agent benchmark)

1•PrateekJ17•8m ago•2 comments

Show HN: OpenBrowserClaw – No Mac Mini. No VPS. No Cloud Deploy. Just Open a Tab

https://www.openbrowserclaw.com/
1•sachaa•8m ago•0 comments

Phoebe Gates wants her $185M AI startup to succeed without 'my last name'

https://fortune.com/2026/02/21/phoebe-gates-startup-phia-succeed-without-help-parents-bill-gates-...
1•randycupertino•12m ago•0 comments

Speculative Decoding in LLM Inference

http://ternarysearch.blogspot.com/2026/02/speculative-decoding-in-llm-inference.html
1•paladin314159•13m ago•0 comments

Still Teaching Air Guitar? University Entrepreneurship in the Age of AI

https://www.thisisgoingtobebig.com/blog/2026/2/19/are-they-still-teaching-air-guitar-thinking-abo...
1•ceonyc•14m ago•1 comments

Nobel laureate invents machine that harvests water from dry air

https://www.theguardian.com/environment/2026/feb/21/nobel-laureate-omar-yaghi-invents-machine-tha...
1•tempestn•18m ago•0 comments

Show HN: Acube – Rust framework where forgetting security is a compile error

https://github.com/lewKcoder/acube
1•lewKcoder•19m ago•1 comments

CrewAI Reaches 44K GitHub Stars as Multi-Agent Orchestration Gains Momentum

https://theagenttimes.com/articles/44335-stars-and-counting-crewais-github-surge-maps-the-rise-of...
1•Ross00781•20m ago•1 comments

LGP to take Mister Car Wash private in $3.1B deal

https://www.alternativeswatch.com/2026/02/22/lgp-take-mister-car-wash-private-3-1-billion-deal/
2•mattas•24m ago•0 comments

Using Nsnotifyd with a PowerDNS Secondary

https://blog.feld.me/posts/2026/02/nsnotifyd-with-powerdns-secondary/
1•todsacerdoti•24m ago•0 comments

In Search of the Leisure Class

https://libertiesjournal.com/articles/insearch-of-the-leisure-class/
2•fferen•28m ago•0 comments

Fast starting Clojure runtime built with GraalVM native-image and Crema

https://github.com/borkdude/cream
3•yogthos•31m ago•0 comments

The JavaScript Oxidation Compiler

https://oxc.rs/
4•modinfo•32m ago•0 comments

SpaceX gets federal approval for Starship launches, AI satellites from Florida's

https://www.usatoday.com/
2•bookmtn•32m ago•1 comments

Show HN: OpenClaw alternative written in Golang and talk with you in voice

http://coolwulfai.com
2•coolwulf•36m ago•1 comments

Show HN: Lyra Kids – I built an AI bedtime storyteller for my daughters

https://lyra.kids/
16•Kael1•36m ago•15 comments

Log into 28 vintage computer systems in the browser / Interim Computer Museum

https://www.tomshardware.com/video-games/retro-gaming/you-can-log-into-28-vintage-computer-system...
2•russfink•39m ago•1 comments

Agentic Software Engineering Book

https://agenticse-book.github.io/
4•bananaflag•39m ago•0 comments

Ask HN: Freelance full-stack dev in between contracts

2•downbad_•42m ago•0 comments

We Have Pgvector at Home

https://theconsensus.dev/p/2026/02/22/we-have-pgvector-at-home.html
2•zdw•44m ago•0 comments

Leibniz on Binary: The Invention of Computer Arithmetic (2022)

https://direct.mit.edu/books/monograph/5492/Leibniz-on-BinaryThe-Invention-of-Computer
2•measurablefunc•44m ago•0 comments

Wrapping Code Comments

https://matklad.github.io/2026/02/21/wrapping-code-comments.html
2•tenpa0000•46m ago•0 comments

Code Review Is Not About Catching Bugs

https://www.davidpoll.com/2026/02/code-review-is-not-about-catching-bugs/
2•depoll•46m ago•0 comments

Leveraging Attributes with Respect\Validation and Laravel

https://alganet.github.io/blog/2026-02-22-23-Leveraging-Attributes-With-Respect-Validation-and-La...
2•gaigalas•48m ago•0 comments

Official specification and reference code for Fast Lightweight Online Encryptio

https://github.com/Snowflake-Labs/floe-specification
2•todsacerdoti•48m ago•1 comments

"Pinky Promise Diplomacy" Once Stopped a War in the Middle East

https://www.lesswrong.com/posts/unxyt8EsCNkMCRbsw/how-pinky-promise-diplomacy-once-stopped-a-war-...
1•positivesum•53m ago•0 comments

Show HN: InferShield – A Lightweight Orchestration-Layer Attack Detector (POC)

https://github.com/InferShield/infershield
2•Alex-Hosein•58m ago•0 comments

Show HN: MSI GPU Mux Switcher for Linux via UEFI Vars and EC Trigger

https://github.com/ElXreno/msi-gpu-switcher
3•elxreno•59m ago•0 comments

Search Console MCP – Unified CLI for Google Search Console, Bing and GA4

3•svss_me•1h 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•10mo ago

Comments

semihs•10mo 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_•10mo 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•10mo 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_•10mo ago
That sounds great!