frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Who Will Remember Us When the Servers Go Dark?

https://newdesigncongress.org/en/pub/who-will-remember-us-when-the-servers-go-dark/
1•pabs3•3m ago•0 comments

Native CLI scaffolds consistently outper-form OpenCode when using the same model

https://arxiv.org/abs/2603.08640
1•xdotli•4m ago•1 comments

Show HN: Droeftoeter, a Terminal Coding Toy

https://github.com/whtspc/droeftoeter
1•whtspc64•5m ago•0 comments

Show HN: Freelancer Profitability Calculator

https://soloboss.app/freelancer-profitability-calculator
1•SoloBossFounder•7m ago•0 comments

Faulty urine tests may have inflated alcohol levels in California criminal cases

https://www.sfchronicle.com/bayarea/article/urine-tests-alcohol-level-faulty-california-22073795.php
2•littlexsparkee•11m ago•0 comments

Important Updates to GitHub Copilot for Students

https://github.com/orgs/community/discussions/189268
1•angst•12m ago•1 comments

From Optician to $62k MRR in 3 Months: AI Code Editors Reshaping SaaS

2•jackcofounder•17m ago•0 comments

CLI-Anything

https://github.com/HKUDS/CLI-Anything
4•tardismechanic•21m ago•0 comments

We compare model quality in Cursor

https://cursor.com/blog/cursorbench
2•xdotli•24m ago•0 comments

An Overview of the Amoeba Distributed Operating System – Tanenbaum

https://dl.acm.org/doi/pdf/10.1145/1041500.1041502
1•ivanbelenky•25m ago•0 comments

T4a – Terminals for Agents

https://github.com/denoland/t4a
1•garrettjoecox•28m ago•0 comments

Fast non-Chromium browser for AI agents: LightPanda

https://lightpanda.io
1•daniel_iversen•30m ago•0 comments

Kobalt Tools

https://kbalt.com/
2•Throwthrowbob•31m ago•1 comments

Give Your AI Agent a Live Status Page

https://clawjetty.com/###
1•andes314•32m ago•1 comments

Enabling Media Router by default undermines Brave's privacy claims

1•noguff•39m ago•0 comments

Rackup, a Toolchain Manager for Racket

https://samth.github.io/rackup/
2•samth•47m ago•0 comments

Hyperlinks in Terminal Emulators

https://gist.github.com/egmontkob/eb114294efbcd5adb1944c9f3cb5feda
2•nvahalik•49m ago•0 comments

Heart, Head, Life, Fate

https://www.lrb.co.uk/the-paper/v48/n05/steven-shapin/heart-head-life-fate
1•Petiver•51m ago•0 comments

The Browser Becomes Your WordPress

https://wordpress.org/news/2026/03/announcing-my-wordpress/
2•computersuck•52m ago•0 comments

Stabilizing timelagged climate impacts rqrs net-negative emissions for centuries

https://iopscience.iop.org/article/10.1088/1748-9326/ae34ca
2•littlexsparkee•57m ago•0 comments

Gitana 18: technical choices for the new flying Ultim trimaran

https://www.boatnews.com/story/50717/gitana-18-radical-technical-choices-for-the-new-flying-ultim...
1•divbzero•1h ago•0 comments

Prowl – An agent discovery network (ASO for AI agents)

https://prowl.world
1•opcastil11•1h ago•0 comments

'Immersive Navigation' is the biggest Google Maps driving update in a decade

https://9to5google.com/2026/03/12/google-maps-immersive-navigation/
2•golfer•1h ago•0 comments

Claude Tried to Hack 30 Companies. Nobody Asked It To

https://trufflesecurity.com/blog/claude-tried-to-hack-30-companies-nobody-asked-it-to
2•RobLach•1h ago•1 comments

Can You Instruct a Robot to Make a PBJ Sandwich?

https://pbj.deliberateinc.com/
10•mooreds•1h ago•8 comments

Agent harness for building analytics into your app on top of ClickHouse

https://github.com/514-labs/moosestack
1•mooreds•1h ago•0 comments

OLAP migration complexity is the cost of fast reads (2025)

https://www.fiveonefour.com/blog/olap-migration-complexity
1•mooreds•1h ago•0 comments

Agentic Abuse at Tech Jobs

https://blog.alejandrowainzinger.com/agentic-abuse-at-tech-jobs
1•terelak•1h ago•0 comments

Sloppypaste: Pasting raw AI output without reading it

https://sloppypaste.com/
3•willwashburn•1h ago•1 comments

Teaching LLMs to reason like Bayesians

https://research.google/blog/teaching-llms-to-reason-like-bayesians/
2•gmays•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!