frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Iran is in near-total internet blackout

https://mastodon.social/@netblocks/116147264437940657
1•us321•46s ago•0 comments

Ask HN: Is This Start of the End?

1•FrankSaaSDev•1m ago•0 comments

Show HN: Brandomica – Check if a brand name is safe to launch on one search

https://www.brandomica.com
1•brandomica•1m ago•0 comments

Django-Bolt: High-Performance Typed API Framework for Django

https://github.com/dj-bolt/django-bolt
1•0x1997•4m ago•0 comments

Show HN: A seedable stream shuffler modeled as a roundabout network (Python)

https://pypi.org/project/roundamix/
1•velocitatem•7m ago•0 comments

The Generative AI Policy Landscape in Open Source

https://redmonk.com/kholterhoff/2026/02/26/generative-ai-policy-landscape-in-open-source/
1•nkko•8m ago•0 comments

Daily maths game taking over Wordle

https://the67numbergame.github.io/
1•_snory•12m ago•0 comments

Israel Is Attacking Iran

5•alsufinow•12m ago•0 comments

Show HN: A 24kb standalone visual JSON editor for non-technical users

https://github.com/celerex/json-editor
1•its-a-new-world•13m ago•1 comments

We Audited the Security of 7 Open-Source AI Agents – Here Is What We Found

https://twitter.com/grithai/status/2027410244352028683
1•edf13•13m ago•0 comments

The Man Who Sold The World

https://www.youtube.com/watch?v=u3MX-rUtS6M&list=RDu3MX-rUtS6M
1•helloplanets•14m ago•0 comments

Yes, and

https://htmx.org/essays/yes-and/
1•todsacerdoti•16m ago•0 comments

The Self-Driving Codebase

https://background-agents.com/
1•vinhnx•16m ago•0 comments

Scrapling: An adaptive web scraping framework that handles everything

https://github.com/D4Vinci/Scrapling
1•Paddyz•24m ago•0 comments

Show HN: RayClaw – AI agent like OpenClaw, standalone or as a Rust crate

https://github.com/rayclaw/rayclaw
1•stevensu•24m ago•0 comments

I'm in Tehran, what do you think will be happen?

2•pajuhaan•27m ago•5 comments

An open-source, C#-based Windows RAT (Remote Access Tool)

https://github.com/iss4cf0ng/DuplexSpyCS
1•iss4cf0ng•29m ago•1 comments

Show HN: How many hours have you spent with Claude Code? (CLI tool)

2•yurukusa•29m ago•0 comments

The most beautiful formula not enough people understand (3blue1brown) [video]

https://www.youtube.com/watch?v=fsLh-NYhOoU
2•vismit2000•29m ago•0 comments

Show HN: AI Moire Pattern Remover – Free tool for screen photos, scans, fabrics

https://moireremoval.com
1•wyattly•30m ago•0 comments

Unsloth Dynamic 2.0 GGUFs

https://unsloth.ai/docs/basics/unsloth-dynamic-2.0-ggufs
4•tosh•32m ago•0 comments

Qwen3.5 GGUF Benchmarks

https://unsloth.ai/docs/models/qwen3.5/gguf-benchmarks
2•tosh•34m ago•0 comments

Israel and US launch strikes on Iran as Trump confirms 'major combat operations'

https://www.reuters.com/world/iran-crisis-live-explosions-tehran-israel-announces-strike-2026-02-28/
3•TechTechTech•36m ago•0 comments

Dan Simmons, author of Hyperion and more books, dies at 77

https://arstechnica.com/culture/2026/02/hyperion-author-dan-simmons-dies-from-stroke-at-77/
1•geuis•37m ago•0 comments

Open source router for personal AI agents

https://manifest.build/docs/introduction
1•stosssik•38m ago•0 comments

Is an event planning platform UAE suitable for weddings and private parties?

1•tonhurt•40m ago•1 comments

Cloudflare radar shows Iran internet traffic drop to near zero

https://radar.cloudflare.com/traffic/ir?dateRange=1d
2•nodesocket•42m ago•0 comments

Ask HN: Why are some websites locking or using the audio device on Windows?

1•ezconnect•45m ago•0 comments

Iran agreed zero enriched uranium, and israel immediately bombs Tehran

https://twitter.com/muhammadshehad2/status/2027645609621033376
4•proshno•50m ago•1 comments

Leak confirms GrapheneOS and Motorola partnership

https://piunikaweb.com/2026/02/27/leak-confirms-grapheneos-motorola-partnership-for-non-pixel-har...
3•Cider9986•51m 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!