frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Robert F Kennedy Jr: 1 year of failure

https://www.thelancet.com/action/showPdf?pii=S0140-6736%2826%2900414-9
1•andsoitis•52s ago•0 comments

Show HN: GitAgent – Clone a repo, get an AI agent – Claude Code / OpenClaw

https://www.gitagent.sh/
1•Shreyaskapale•1m ago•0 comments

Show HN: Ragtoolina – MCP tool that adds codebase RAG to AI coding agents

https://www.ragtoolina.com
1•slack812•5m ago•0 comments

Omarchy on macOS: AeroSpace and Karabiner Setup Guide

https://danieltenner.com/omarchy-on-macos-aerospace-karabiner-setup-guide-for-claude-code/
1•tosh•5m ago•0 comments

Libxml2 Enterprise Edition (AGPL, from the previous maintainer)

https://codeberg.org/nwellnhof/libxml2-ee
1•todsacerdoti•7m ago•0 comments

Show HN: Claw – Let your AI agent operate any machine as if it were local

https://github.com/opsyhq/claw
1•d36ugger•8m ago•0 comments

Electricity 2026

https://www.iea.org/reports/electricity-2026
2•simonebrunozzi•24m ago•0 comments

Show HN: Prismle – Convert your resume into a business page

https://prismle.com/
1•b1tsoup•28m ago•1 comments

Show HN: GitDelivr: A free CDN for Git clones built on Cloudflare Workers and R2

https://gitdelivr.net/
1•emirb•28m ago•1 comments

Change Intent Records: The Missing Artifact in AI-Assisted Development

https://blog.bryanl.dev/posts/change-intent-records/
1•handfuloflight•29m ago•0 comments

Ask HN: Billions of dollars in funding, but what's changed for robotics?

5•ajax33•31m ago•0 comments

Building a Live BGP Map

https://kmcd.dev/posts/live-internet-map/
1•ingve•32m ago•0 comments

Show HN: Markwright

https://www.aloneguid.uk/projects/mw/
1•aloneguid•37m ago•0 comments

RAG vs. Skill vs. MCP vs. RLM

https://blog.alexewerlof.com/p/rag-vs-skill-vs-mcp-vs-rlm
3•weltview•39m ago•0 comments

The Next Horses

https://betterthanrandom.substack.com/p/the-next-horses
4•weltview•41m ago•1 comments

IntelligenceX – Zero-trust code reviews, desktop chat, tool packs

https://intelligencex.dev
2•themadboy•41m ago•0 comments

Reframing Energy for the Age of Electricity

https://reframing-energy-tool.electrotech-revolution.com/
1•gwd•46m ago•0 comments

The Flawed V02 Max Craze

https://erictopol.substack.com/p/the-flawed-v02-max-craze
1•simonebrunozzi•47m ago•0 comments

Sam Altman: the deal with the Pentagon "was definitely rushed"

https://xcancel.com/sama/status/2027911640256286973
3•thesdev•52m ago•0 comments

Show HN: Django-CRM – Open-Source CRM with PostgreSQL RLS Multi-Tenancy

https://github.com/MicroPyramid/Django-CRM
1•ashwin31•53m ago•1 comments

Saturday Night Live mocking people with disabilities

https://twitter.com/nbcsnl/status/2028028269610536977
6•mellosouls•54m ago•1 comments

No one wants to read your AI slop

https://pluralistic.net/2026/03/02/nonconsensual-slopping/#robowanking
10•flancian•55m ago•0 comments

Show HN: Lyria.run – Music generation powered by Google's Lyria 3

https://lyria.run/
1•funcin•56m ago•0 comments

Real-time global intelligence dashboard – AI-powered news aggregation

https://worldmonitor.app/
2•saberd•58m ago•0 comments

AI helps break the cost barrier to COBOL modernization

https://claude.com/blog/how-ai-helps-break-cost-barrier-cobol-modernization
3•nsoonhui•1h ago•0 comments

Browser Use vs. Claude Computer Use

https://techstackups.com/comparisons/browser-use-vs-claude-computer-use/
1•sixhobbits•1h ago•0 comments

Microsoft bans the word "Microslop" on its Discord, then locks the server

https://www.windowslatest.com/2026/03/02/microsoft-gets-tired-of-microslop-bans-the-word-on-its-d...
18•robtherobber•1h ago•4 comments

KlongPy

https://github.com/briangu/klongpy
1•tosh•1h ago•0 comments

Jolla phone – a full-stack European alternative

https://commerce.jolla.com/products/jolla-phone-sept-26
65•spinningslate•1h ago•34 comments

Show HN: Commitdog – Git on steroids CLI (pure Go, ~3MB binary)

https://aysdog.com/commitdog
5•anirbanfaith•1h ago•1 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!