frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Automate your version control with, GitMo

https://github.com/KyleBenzle/GitMo
1•Hilliard_Ohiooo•3m ago•1 comments

DeepSWE blows up AI coding leaderboard, crowns GPT-5.5, + ClaudeOpus loophole

https://venturebeat.com/technology/deepswe-blows-up-the-ai-coding-leaderboard-crowns-gpt-5-5-and-...
2•BriStoller•8m ago•0 comments

Imece – a decentralized AI compute cooperative

https://github.com/jstdv/imece
1•jstdv•9m ago•0 comments

Windows Reactor – React like WinUI 3 framework

https://github.com/microsoft/microsoft-ui-reactor
1•rexpan•12m ago•0 comments

Llms.txt Examples: Real Patterns for API Docs, Help Centers, and Developer Docs

https://docsalot.dev/blog/llms-txt-examples
1•fazkan•15m ago•0 comments

Prism is a purpose-built, redundant, global broadcasting platform

https://www.prism18.com/
1•petethomas•16m ago•0 comments

Scaling Laws for Agent Harnesses via Effective Feedback Compute

https://arxiv.org/abs/2605.29682
1•veryluckyxyz•17m ago•0 comments

2026 vibe coding tool comparison

https://read.technically.dev/p/2026-vibe-coding-tool-comparison
1•eigenBasis•18m ago•0 comments

AI Isn't Replacing Curious Developers

https://dataengineeringcentral.substack.com/p/ai-isnt-replacing-developers
1•eigenBasis•19m ago•0 comments

Uber and the Bitter Truth About Low AI ROI

1•thegrandidiot•25m ago•0 comments

Make Content That Sells

https://www.profitthreads.com
1•mattmerrick•28m ago•0 comments

After decades risking arrest, South Korea's tattoo artists step into limelight

https://www.bbc.com/news/articles/cg4pwdn6130o
3•breve•30m ago•0 comments

TempleOS WASM

https://templeos.reiko.app/
3•zdgeier•30m ago•0 comments

Perry Compiles TypeScript directly to executables using SWC and LLVM

https://www.perryts.com/
7•0x1997•38m ago•7 comments

OWASP Vulnerableapp

https://github.com/SasanLabs/VulnerableApp
2•preetkaran20•41m ago•1 comments

Should You Automate Your Life?

https://www.newyorker.com/culture/open-questions/should-you-automate-your-life
1•petethomas•42m ago•0 comments

Show HN: VT Code – open-source terminal coding agent in Rust

https://github.com/vinhnx/VTCode
3•vinhnx•45m ago•0 comments

A Famous Math Problem Stumped Humans for 80 Years. AI Just Cracked It

https://www.wsj.com/tech/ai/ai-math-solves-erdos-problem-openai-c4029e84
1•bryan0•47m ago•0 comments

Lessons from Shipping Persistent Memory for AI Agents

https://www.pingcap.com/blog/how-we-built-mem9-agent-memory-product/
1•jinqueeny•52m ago•1 comments

Utiq – The ad tracking of your (European) ISP and how to avoid it

https://korben.info/utiq-identifiant-publicitaire-telcos.html
1•LelouBil•53m ago•0 comments

CLI tool for automating personal data removal requests from broker sites

https://github.com/Enthropic-Data-LLC/data-removal
1•sohocs509•57m ago•1 comments

How Excel got agentic

https://commandline.microsoft.com/mukul-singh-excel-agent-mode-copilot-research-into-product/
1•azhenley•57m ago•0 comments

SpaceX has almost finished writing v1.0 of an in-house AI training stack in C

https://xcancel.com/elonmusk/status/2059884150187053488
1•SilverElfin•1h ago•2 comments

The Tech Behind an NBA Broadcast [video]

https://www.youtube.com/watch?v=mk_wdHePbtQ
1•b0ner_t0ner•1h ago•0 comments

US strike campaign against drug boats tops 200 deaths

https://www.independent.co.uk/news/world/americas/us-politics/drug-boat-strikes-cocaine-trafficki...
11•asdefghyk•1h ago•2 comments

The healthy life beverage book (1911)

https://gutenberg.org/cache/epub/78781/pg78781-images.html
3•petethomas•1h ago•1 comments

Measuring LLMs' ability to develop exploits

https://red.anthropic.com/2026/exploit-evals/
2•gmays•1h ago•0 comments

BP's annual report shows you shouldn't believe what you read

https://www.thetimes.com/business/companies-markets/article/bps-annual-report-shows-you-shouldnt-...
2•petethomas•1h ago•0 comments

John Cornyn loses GOP primary

https://liveclip.substack.com/p/john-cornyn-loses-gop-primary-brief
5•firasd•1h ago•0 comments

Converting Legacy C++ Code to Modern Fortran

https://degenerateconic.com/cpp-to-fortran.html
1•jacobwilliams•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•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!