frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Node File Trace – determines which files a Node application needs to run

https://github.com/vercel/nft
1•javatuts•3m ago•0 comments

ROI Calculator for Field Service Businesses

https://fieldservicetools.com/tools/roi-calculator/
1•gemcoin•3m ago•0 comments

Badreads

https://www.funnest.world/badreads
1•surprisetalk•3m ago•0 comments

Three Modes of Cognition

https://kevinkelly.substack.com/p/three-modes-of-cognition
1•surprisetalk•3m ago•0 comments

A Zeckendorf Table

https://leancrew.com/all-this/2026/01/a-zeckendorf-table/
1•surprisetalk•3m ago•0 comments

Just Put It on a Map

https://progressandpoverty.substack.com/p/just-put-it-on-a-map
1•surprisetalk•3m ago•0 comments

The Bay Area Exclusion License

https://baxl.org/1.0/
1•codon•3m ago•0 comments

Death by Clawd: The SaaSpocalypse Survival Scanner

https://deathbyclawd.com/
1•aleda145•9m ago•0 comments

Show HN: Axiom – A native iOS HUD for your SaaS metrics

https://apps.apple.com/us/app/axiom-metrics-dashboard/id6758957032
1•jaumapv•14m ago•0 comments

Linux 7.1 to Retire UDP-Lite – Allows for Better Performance with Cleansed Code

https://www.phoronix.com/news/Linux-7.1-Retiring-UDP-Lite
5•doener•15m ago•2 comments

Russia Shuts Off Internet in Moscow as It Tests Nationwide Censorship System

https://www.wsj.com/world/russia/russia-shuts-off-internet-in-moscow-as-it-tests-nationwide-censo...
2•thm•16m ago•0 comments

Creating the Novacene (2026 preprint, co-authored with Claude)

https://zenodo.org/records/19037963
1•Aileenka•24m ago•0 comments

Show HN: Paseo – Run coding agents from your phone, desktop, or terminal (FOSS)

https://github.com/getpaseo/paseo
1•boudra•27m ago•0 comments

REWARD.FARM - Complete tasks, get paid fast. Reward farming marketplace

https://reward.farm
1•oxad•29m ago•1 comments

Agents over Bubbles

https://stratechery.com/2026/agents-over-bubbles/
1•swolpers•31m ago•0 comments

Ask HN: What is it like being in a CS major program these days?

21•tathagatadg•32m ago•1 comments

TikTok and Meta risked safety to win algorithm arms race, whistleblowers say

https://www.bbc.co.uk/news/articles/cqj9kgxqjwjo
1•dijksterhuis•33m ago•0 comments

LoKI – Local AI Assistant for Linux and WSL

https://schneider-ki.com/
2•Knuddl•36m ago•0 comments

Do you have a Substack newsletter that you wish was NOT a Substack newsletter?

https://mastodon.nz/@danslevin/116235863844560347
1•doener•37m ago•0 comments

Apple's MacBook Neo Modded to a 1 TB SSD

https://www.tomshardware.com/laptops/macbooks/apples-macbook-neo-modded-to-a-1-tb-ssd-breaking-th...
2•top_sigrid•41m ago•0 comments

Google's Gemini threatened me once disagreed with the "trump-putin-orban" axis

https://gemini.google.com/share/fdf648344c11
1•drops•42m ago•0 comments

Move over, Labubu. The new Silicon Valley status symbol is a tiny Apple computer

https://sfstandard.com/2026/03/12/mac-mini-bro-new-matcha-latte-guy/
1•MrJagil•50m ago•0 comments

Third places are disappearing as the world goes more online – The Week

https://theweek.com/culture-life/third-places-disappearing
2•janandonly•51m ago•0 comments

Belgian prime minister calls for EU to normalise ties with Russia

https://www.ft.com/content/4ce01938-a671-4433-83a7-dada2b3bac01
1•KnuthIsGod•52m ago•0 comments

Show HN: cn-variants – Tailwind CSS variants in 3 lines of code

https://npmx.dev/package/cn-variants
1•bastianplsfix•59m ago•0 comments

Capacity Is the Roadmap

https://yusufaytas.com/capacity-is-the-roadmap/
12•yusufaytas•1h ago•0 comments

ZippyType – A typing speed trainer with adaptive code-syntax drills

https://zippytype.vercel.app
1•afundeveloper•1h ago•0 comments

Laws of UX – in the age of AI vibe coding

https://lawsofux.com/
2•dheerajmp•1h ago•0 comments

Why Cloudflare rule order matters?

https://www.brzozowski.io/web-applications/2025/03/11/why-cloudflare-rule-order-matters.html
2•redfr0g•1h ago•0 comments

Never knew news websites could survive without ads

https://text.npr.org/
4•dheerajmp•1h ago•4 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!