frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Show HN: I built an open-source analytics platform for Claude Code sessions

https://github.com/ConfabulousDev/confab-web
1•jjak82•29s ago•0 comments

People living in UK's poorest areas have less diverse gut bacteria, study finds

https://www.theguardian.com/society/2026/feb/24/people-living-in-uks-poorest-areas-have-less-dive...
1•beardyw•1m ago•0 comments

Housing: Rent vs. Buy Calculator Spreadsheet

https://longviewy.com/rent-vs-buy-spreadsheet-using-five-key-inputs/
1•josephcs•1m ago•0 comments

I built a 151k-node GraphRAG swarm that autonomously invents SDG solutions

1•wisdomagi•1m ago•0 comments

Regex is dead. We replaced it

https://matchlang.com
2•hollowsolve•4m ago•2 comments

OpenaAI: Disrupting malicious uses of our models [pdf]

https://cdn.openai.com/pdf/df438d70-e3fe-4a6c-a403-ff632def8f79/disrupting-malicious-uses-of-ai.pdf
1•defly•5m ago•0 comments

The age of flat pack code

https://ilearnt.com/blog/flatpackcode/
1•speckx•5m ago•0 comments

Ralph Wiggum Explained: Stop Telling AI What You Want – Tell It What Blocks You

https://platform.uno/blog/ralph-wiggum-explained-stop-telling-ai-what-you-want-tell-it-what-block...
1•e12e•5m ago•0 comments

Show HN: Relay – SMS API for developers (send your first text in 2 min)

1•danielkdewar•6m ago•0 comments

Adonisjs v7 released (Next.js alternative)

https://adonisjs.com/blog/v7
1•danfritz•6m ago•0 comments

You Just Need Postgres

https://youjustneedpostgres.com/
1•olucasandrade•6m ago•1 comments

Show HN: A minimal Claude Code clone written in Rust

https://github.com/keon/mini-claude-code
1•kwk236•9m ago•0 comments

Typing Fun Game

https://kwerty.site
1•soexya•9m ago•0 comments

Smartphones, Online Music Streaming, and Traffic Fatalities

https://www.nber.org/papers/w34866
1•speckx•9m ago•0 comments

Secria Mobile – Post-quantum encrypted email, now on iOS and Android

https://secria.me
1•adrianmav•10m ago•1 comments

Show HN: 20x – Open-source agent orchestrator for Linear/HubSpot tasks

https://github.com/peakflo/20x
2•dmitryv•11m ago•0 comments

Nobody Trusts Anybody Anymore

https://yourbrainonmoney.substack.com/p/low-trust-society-cost
1•lemonberry•12m ago•0 comments

Tell HN: YouTube Subscription page is being deprecated

1•csours•13m ago•1 comments

Any Open Source Contributors?

https://github.com/Shantanugupta43/SuggestPilot
1•shaanuknow•15m ago•1 comments

Show HN: Ask a graph database questions in plain English (runs in the browser)

https://cogdb.io/playground
1•am3141•16m ago•0 comments

Half of the side projects from HN make less than $1000 a month (2024-2025)

https://indielaunches.com/indie-maker-analytics-2024-2025-projects/
1•s-stude•16m ago•2 comments

Palo Alto's $400M scanner labels 91% of confirmed OpenClaw threats safe

https://oathe.ai/engineering/we-audited-1620-ai-agent-skills/
5•riyadaftary•17m ago•2 comments

Show HN: OnGarde – Runtime content security proxy for self-hosted AI agents

1•antimaterial•17m ago•0 comments

Show HN: SAIA – SCUMM for AI Agents

https://github.com/serendip-ml/llm-saia/blob/main/docs/INTRO.md
1•serendip-ml•19m ago•1 comments

SF Vibe House

https://www.sfvibehouse.com/
2•sahin•20m ago•0 comments

Palm OS User Interface Guidelines [pdf, 2003]

https://cs.uml.edu/~fredm/courses/91.308-spr05/files/palmdocs/uiguidelines.pdf
6•spiffytech•20m ago•1 comments

Show HN: SkillFortify, a formal verification for AI agent skills

https://github.com/varun369/skillfortify
1•varunpratap369•20m ago•2 comments

Microbial system to convert CO₂ into eco-friendly butanol

https://phys.org/news/2026-02-microbial-eco-friendly-butanol.html
1•PaulHoule•21m ago•0 comments

How to Close a Diamond Mine in the Northwest Territories

https://thewalrus.ca/how-to-close-a-diamond-mine-in-the-northwest-territories/
2•pseudolus•21m ago•0 comments

Anthropic is both too dangerous to allow and essential to national security

https://www.theargumentmag.com/p/anthropic-is-somehow-both-too-dangerous
1•ctoth•22m 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!