frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

HD189733B: A hot Jupiter that rains molten glass

https://en.wikipedia.org/wiki/HD_189733_b
1•us-merul•1m ago•0 comments

Ccstory – CLI tool to track time spent on Claude Code

https://github.com/atomchung/ccstory
1•atomtw•2m ago•0 comments

Containers Are a Security Boundary (some assembly required)

https://ram.tianon.xyz/post/2026/05/20/container-security.html
1•ImJasonH•7m ago•0 comments

TBN Protocol – Runtime governance infrastructure for AI agents

https://tbn.hardinai.co.uk/demo
1•Hardinai•10m ago•0 comments

Show HN: CipherStash Stack – Data Level Access Control in TS/JS

https://cipherstash.com/blog/introducing-cipherstash-stack
2•dandraper•11m ago•0 comments

How to Start a Website with Web Host Pro

https://www.slideshare.net/slideshow/comprehensive-2026-guide-to-starting-a-website-with-web-host...
1•cya11•19m ago•0 comments

The Largest Vocabulary in Hip Hop (2019)

https://pudding.cool/projects/vocabulary/index.html
1•amichae2•20m ago•0 comments

Show HN: E2E Encrypted Terminal Screen Share

https://github.com/jsell-rh/lockwire
1•blinkerfluid•22m ago•0 comments

Decompile binaries to Rust, not C

https://twitter.com/mahal0z/status/2057147401987637300
1•mahaloz•25m ago•0 comments

Researchers in Ireland uncover medieval book in Rome with oldest English poem

https://apnews.com/article/old-english-manuscript-poetry-bede-caedmon-hymn-latin-italy-106769c014...
2•gmays•28m ago•0 comments

Why Multigres has its own connection pooler

https://multigres.com/blog/two-jobs-two-processes
1•gregorvand•29m ago•0 comments

What is Demand Coop and why tech workers should join one

https://cahootzcoops.com/blog/what-is-a-demand-coop
1•DeonRob•33m ago•0 comments

Nx Console VS Code extension was the initial access vector in the GitHub breach

https://twitter.com/jeffbcross/status/2057236396658811020
2•vldszn•33m ago•1 comments

What I'd audit on an AI-built SaaS before its first paying customer

https://knbrlo.com/blog/audit-ai-built-saas/
1•knbrlo•35m ago•1 comments

Show HN: Windows 98½

https://win9-5.com/desktop.html
1•keepamovin•35m ago•0 comments

81yo Grandma Streaming Minecraft to Pay for Grandson's Cancer Swatted

https://www.thegamer.com/grammacrackers-81-year-old-minecraft-youtuber-swatted/
2•kirubakaran•36m ago•1 comments

New dinosaur species Nagatitan chaiyaphumensis

https://www.smithsonianmag.com/smart-news/a-man-spotted-strange-looking-rocks-near-a-pond-in-thai...
1•firasd•38m ago•0 comments

Compromised Nx Console

https://github.com/nrwl/nx-console/security/advisories/GHSA-c9j4-9m59-847w
2•0xedb•38m ago•0 comments

Built for Productivity: What the Data Shows About Kotlin

https://blog.jetbrains.com/kotlin/2026/05/built-for-productivity-what-the-data-shows-about-kotlin/
1•lemonlime227•39m ago•0 comments

Our billing pipeline was suddenly slow

https://blog.cloudflare.com/clickhouse-query-plan-contention/
1•ChicknNuggt•39m ago•0 comments

The AI Client in WordPress 7.0

https://make.wordpress.org/core/2026/03/24/introducing-the-ai-client-in-wordpress-7-0/
1•qainsights•42m ago•1 comments

Show HN: SafeRun – Replay debugging and inline prevention for AI agents 2

3•Tidianez•55m ago•1 comments

Small note on solving x^(n/m) = a

https://12000.org/my_notes/solving_equation/index.htm
1•oliverkwebb•55m ago•0 comments

Stop paying $360/year to access your own email history

https://mailvaulty.com
1•khaledsabae•58m ago•0 comments

Show HN: My custom Statusline for Claude Code (Python wrapper around claudeline)

https://gist.github.com/Reebz/741c5647c860fe0b5214f39d9d887240
1•Reebz•1h ago•0 comments

San José State leaped to No. 2 in national computer science ranking

https://edsource.org/2026/san-jose-state-coding-skills-ranking/758707
2•littlexsparkee•1h ago•0 comments

Ask HN: How to make the best of the Mega IPO/ Index fund debacle?

3•jppope•1h ago•3 comments

Professional Scripted product demos with GSAP with Claude

https://spanthi.com/blog/gsap-choreography/
1•vein05•1h ago•0 comments

Experimenting with graph-based semantic memory for AI agents

https://github.com/AEndrix03/Graft
3•AEndrix03•1h ago•0 comments

Intuit to lay off over 3k employees to refocus on AI

https://techcrunch.com/2026/05/20/intuit-to-lay-off-over-3000-employees-to-refocus-on-ai/
27•wapasta•1h ago•6 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•1y ago

Comments

semihs•1y 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_•1y 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•1y 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_•1y ago
That sounds great!