frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Realtime Prompting Guide

https://developers.openai.com/cookbook/examples/realtime_prompting_guide/
1•gmays•47s ago•0 comments

Cybernetic Theory of Storytelling

https://theanimeelitist.substack.com/p/cybernetic-theory-of-storytelling
1•paulpauper•53s ago•0 comments

OpenAI Finalizes $110B Funding at $730B Value

https://finance.yahoo.com/news/openai-finalizes-110-billion-funding-140844413.html
1•paulpauper•3m ago•0 comments

NASA lost a lunar spacecraft after launch. A new report details what went wrong

https://www.npr.org/2026/02/26/nx-s1-5727622/nasa-lunar-trailblazer-moon-new-report-what-went-wrong
1•bryan0•4m ago•0 comments

Show HN: Track hedge fund 13F holdings via SEC EDGAR API

https://github.com/dapdevsoftware/edgar-python
1•dapdev•4m ago•0 comments

Scientists Are Setting Off Earthquakes. On Purpose

https://www.popularmechanics.com/science/environment/a70440758/underground-lab-earthquake/
1•markoph•4m ago•0 comments

TaskForge – immutable, orchiestration for OpenClaw bots

https://github.com/romanklis/openclaw-contained
1•roman_klis•5m ago•0 comments

AI found 12 OpenSSL zero-days

https://www.lesswrong.com/posts/7aJwgbMEiKq5egQbd/ai-found-12-of-12-openssl-zero-days-while-curl-...
1•theptip•5m ago•0 comments

Show HN: Ore – a Rust-Based Kernel for Managing Local Models/AI Agents

1•alpha_mike•5m ago•0 comments

Show HN: Detect any website's tech stack with Python

https://github.com/deividi86/techstack-scanner
1•dapdev•6m ago•0 comments

Tech Has Never Caused a Job Apocalypse. Don't Bet on It Now

https://www.wsj.com/economy/jobs/tech-has-never-caused-a-job-apocalypse-dont-bet-on-it-now-d192b579
2•johntfella•6m ago•0 comments

Ask HN: How do you enforce guardrails on Claude agents taking real actions?

1•jamiecode•8m ago•0 comments

Metamorphic Testing for Infrastructure-as-Code Engines [pdf]

https://programming-group.com/assets/pdf/papers/2026_Metamorphic-Testing-for-IaC-Engines.pdf
2•matt_d•13m ago•0 comments

Tripling an LLM's ARC-AGI-2 score with code evolution

https://imbue.com/research/2026-02-27-arc-agi-2-evolution/
9•danielmewes•14m ago•2 comments

AdaptiveCpp's new Metal backend to support CUDA dialect on Apple GPUs

https://github.com/AdaptiveCpp/AdaptiveCpp/pull/1983
2•puschkinfr•18m ago•0 comments

New 'Mars GPS' lets Perseverance pinpoint its location within 25 centimeters

https://phys.org/news/2026-02-mars-gps-perseverance-centimeters.html
2•PaulHoule•19m ago•1 comments

I turned down a $1M acquisition offer because I wanted to own what I built

https://useviralize.com
1•jcrosbz•20m ago•1 comments

Wolfenstein: Enemy Territory in emscripten, WS relay for online browser matches

https://et.klaussilveira.com
3•klaussilveira•21m ago•0 comments

Airbnb has a recruiting easter egg in its JavaScript output

https://www.airbnb.de/
1•datawars•21m ago•0 comments

OpenAI Fires an Employee for Prediction Market Insider Trading

https://www.wired.com/story/openai-fires-employee-insider-trading-polymarket-kalshi/
1•nadis•22m ago•0 comments

The LLM Sycophancy Antidote

https://photostructure.com/coding/sycophancy-antidote/
1•mceachen•23m ago•0 comments

Lessons from Building Claude Code: Seeing Like an Agent

https://twitter.com/trq212/status/2027463795355095314
1•nadis•24m ago•0 comments

Hyperion author Dan Simmons dies from stroke at 77

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

PicoClaw: Ultra-Efficient AI Assistant in Go

https://github.com/sipeed/picoclaw
1•xtracto•26m ago•0 comments

Show HN: Forgiven – A Vim/Spacemacs terminal editor with native Copilot agent

https://github.com/danebalia/forgiven
2•danebalia•27m ago•3 comments

Show HN: Goodfriendsbook.com Let's ask you, want opensourced to GitHub

1•gitprolinux•27m ago•1 comments

Lazard LCOE+ 2025 [pdf]

https://www.lazard.com/media/eijnqja3/lazards-lcoeplus-june-2025.pdf
1•toomuchtodo•28m ago•1 comments

Trump officials move to kill system that protects US from chemical disasters

https://www.theguardian.com/environment/2026/feb/27/trump-fire-chemical-safety-system-epa
7•mitchbob•29m ago•1 comments

NASA announces Artemis III mission no longer aims to send humans to moon

https://www.theguardian.com/science/2026/feb/27/nasa-changes-delays-moon-missions
3•bookofjoe•29m ago•3 comments

Why is getting a cheap prepaid SIM card in the USA so complicated?

1•huntsmans•32m ago•3 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!