frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

OpenAI Codex prompt includes explicit directive: "never talk about goblins"

https://arstechnica.com/ai/2026/04/openai-codex-system-prompt-includes-explicit-directive-to-neve...
1•pookieinc•45s ago•0 comments

Hunting Down the Google-Sent Phishing Wave Compromising 30k Facebook Accounts

https://guard.io/labs/accountdumpling---hunting-down-the-google-sent-phishing-wave-compromising-3...
1•vulnerabiliT•1m ago•0 comments

Soundness Failures in LaBRADOR Implementations from NTT-Friendly Rings

https://blog.zksecurity.xyz/posts/labrador-bugs/
3•zgeorgios•2m ago•0 comments

Chinese GPU maker Lisuan Tech is the fourth GPU maker with WHQL certification

https://www.tomshardware.com/pc-components/gpus/in-historic-first-chinese-gpu-maker-lisuan-tech-b...
1•cassianoleal•4m ago•0 comments

Thoughts on WebAssembly as a Stack Machine

https://eli.thegreenplace.net/2026/thoughts-on-webassembly-as-a-stack-machine/
1•ingve•4m ago•0 comments

Emulating PS2 Floating-Point Numbers: IEEE 754 Differences (2023)

https://www.gregorygaines.com/blog/emulating-ps2-floating-point-nums-ieee-754-diffs-part-1/
1•haunter•8m ago•0 comments

Beyond 80/20: High-Entropy Minority Tokens Drive Effective RL for LLM Reasoning

https://arxiv.org/abs/2506.01939
1•mdp2021•11m ago•0 comments

It is just too much of everything

https://www.respan.ai/market-map
1•sminchev•13m ago•1 comments

A Brief, Incomplete, and Mostly Wrong History of Programming Languages (2009)

http://james-iry.blogspot.com/2009/05/brief-incomplete-and-mostly-wrong.html
2•downbad_•20m ago•1 comments

The Elephant in the Room

https://www.joshwcomeau.com/email/wham-launch-005-elephant-2-p/
1•ameybhavsar•20m ago•0 comments

OpenAI Technical Goals (2016)

https://openai.com/index/openai-technical-goals/
1•chistev•22m ago•1 comments

US orders chip equipment companies to halt some shipments to China #2 chipmaker

https://www.reuters.com/world/china/us-orders-chip-equipment-companies-halt-some-shipments-hua-ho...
1•giuliomagnifico•24m ago•0 comments

The box-tickers shall inherit the Earth

https://spectator.com/article/the-box-tickers-shall-inherit-the-earth/
1•calpaterson•26m ago•0 comments

VS Code now enables Git AI co-authoring by default

https://code.visualstudio.com/updates/v1_118#_copilot-added-as-a-git-coauthor-by-default
1•nh43215rgb•26m ago•0 comments

Inspired

https://daniel.haxx.se/blog/2026/04/30/inspired/
1•TangerineDream•26m ago•0 comments

Near Future of Programming Languages (2017) [pdf]

https://web.archive.org/web/20220325175116/http://dev.stephendiehl.com/nearfuture.pdf
1•tosh•29m ago•0 comments

Why are the Artemis II photos on Flickr?

https://www.anildash.com/2026/04/30/artemis-photos-flickr/
2•Tomte•31m ago•0 comments

AI Slopocalypse 2027

https://www.stephendiehl.com/posts/ai_slop_2027/
1•andsoitis•31m ago•0 comments

Ask HN: Anyone using AI agents for active learning sprints? Here's my setup

1•bhagyeshsp•31m ago•0 comments

Free N8N Workflow Cost Calculator: Cloud vs. Make.com vs. Self-Hosted

https://triumphoid.com/n8n-workflow-cost-calculator/
2•ElizabethSramek•31m ago•0 comments

Renewables and batteries drive down fossil fuel use despite record demand

https://www.abc.net.au/news/2026-04-30/renewables-batteries-drive-down-fossil-fuel-use-/106622772
2•xbmcuser•32m ago•0 comments

The Download: storing nuclear waste and orchestrating agents

https://www.technologyreview.com/2026/04/29/1136666/the-download-nuclear-waste-orchestrated-ai-ag...
1•joozio•32m ago•0 comments

The Kardashev-Marx Scale

https://www.stephendiehl.com/posts/kardeschev/
1•andsoitis•34m ago•0 comments

Why skill match is not enough

https://gudok.xyz/smine/
1•signa11•35m ago•0 comments

Share.google delivers wrong TLS certificate in some regions, breaking shortlinks

https://semonto.com/tools/https-checker
1•micw•35m ago•1 comments

A Field Guide to Bugs

https://www.stephendiehl.com/posts/field_guide_to_bugs/
1•andsoitis•35m ago•0 comments

Ask HN: Why are people leaving GitHub now?

4•l1am0•38m ago•4 comments

Ts-rest – what happens when a 3.3k star OSS project goes dormant

1•e7h4nz•44m ago•0 comments

OWASP PTK 9.9.0 / 9.9.1 is out

1•DenisPodgurskii•52m ago•0 comments

Show HN: RSME:A Reactive Stability Mutation Encryption

https://zenodo.org/records/19712564
1•RanggaS•54m 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!