frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Hiring Thread for AML/KYC/Trust and Safety Roles – June 2026

1•MichaelZuZu•48s ago•0 comments

Introduction to Paigham (Message) Nats UI

https://github.com/LetsConvert-IO/paigham-nats
1•urashidmalik•2m ago•0 comments

Cliffwater's flagship private credit fund hit with 17% redemption requests

https://www.ft.com/content/dfdfee64-d3fb-487a-9019-1926387b0ef1
1•JumpCrisscross•2m ago•0 comments

Advertisements as Articles in the Register MS

https://techrights.org/n/2026/06/02/Advertisements_as_Articles_in_The_Register_MS.shtml
1•amcclure•5m ago•0 comments

Coinbase Founder's Longevity Startup Triples in Value

https://www.wsj.com/business/newlimit-startup-brian-armstrong-value-82ab9830
1•wslh•6m ago•0 comments

Majorana 2 [video]

https://www.youtube.com/watch?v=1bN4O5_meB4
1•ketchup32613•7m ago•0 comments

Flag Mates, A two-player flag guessing game I built as a wedding gift

https://flagmates4.life/
1•risquer•7m ago•1 comments

Apple's MacBook Neo is winning over a new generation of buyers

https://techcrunch.com/2026/06/02/apples-macbook-neo-is-winning-over-a-new-generation-of-buyers/
2•dhfbshfbu4u3•9m ago•0 comments

FeynRL- Don't let systems swallow the algorithm

https://github.com/FeynRL-project/FeynRL
1•rasoolfakoor•11m ago•0 comments

Ask HN: Flag/gray out comments complaining about AI/LLM use in posts/comments?

2•bookofjoe•11m ago•2 comments

Skillhound: Give your AI access to every public SKILL.md

https://www.skillhound.ai/
2•mfkhalil•14m ago•0 comments

MSTR sells Bitcoin for 1st time since 2022 as quantum risks emerge

https://eciks.org/6891-53435-mstr-stock-drops-as-strategy-sells-bitcoin-for-first-time-since-2022
1•mgh2•15m ago•0 comments

Tiny GPT in Go. Optimised for Understanding. Trained on Jules Verne Books

https://github.com/zakirullin/gpt-go
3•idontlikellm•21m ago•0 comments

AI Ready – U.S. Department of Labor

https://beta.dol.gov/ai-ready
2•extesy•21m ago•0 comments

Korea's Hanwha offers rockets in bid for Canadian submarine deal

https://financialpost.com/transportation/hanwha-offers-rockets-bid-canadian-submarine-deal
1•Teever•22m ago•0 comments

Inside America's Most Dysfunctional Zoo

https://www.wsj.com/lifestyle/zoo-ethel-louisiana-escape-ligon-8418b6d0
1•bookofjoe•22m ago•1 comments

Project N.o.m.a.d. Node for Offline Media, Archives, and Data

https://github.com/crosstalk-solutions/project-nomad
1•lhoff•23m ago•0 comments

Tracing Rays with Jank

https://jank-lang.org/blog/2026-06-01-optimization/
1•yogthos•23m ago•0 comments

Mathematicians warn of AI threats to profession as industry encroaches

https://arstechnica.com/tech-policy/2026/06/mathematicians-warn-of-ai-threats-to-profession-as-in...
4•furcyd•27m ago•1 comments

US banks rely on a 65-year-old programming language

https://economictimes.indiatimes.com/news/new-updates/us-banks-rely-on-a-65-year-old-programming-...
3•indigodaddy•29m ago•0 comments

Samsung moving U.S. headquarters to Plano

https://www.dallasnews.com/business/technology/article/samsung-moving-u-s-headquarters-plano-2228...
4•littlexsparkee•31m ago•0 comments

We Stress-Tested Microsoft's New Image Model Against OpenAI and Google

https://runtimewire.com/article/we-stress-tested-microsoft-s-new-image-model-against-openai-and-g...
1•ryanmerket•31m ago•0 comments

Show HN: Odeva Booking – A unified PMS for holiday parks and campgrounds

1•ramon156•31m ago•0 comments

ClaudeCode, OpenCode and Pi: anatomy of a trivial request

https://c-daniele.github.io/en/posts/2026-05-18-coding-harness-comparison/
3•sourcecodeplz•32m ago•0 comments

My first investing web app

https://www.capotefinance.com/
1•edbrisley•33m ago•1 comments

Show HN: LMAO – Temu League of Legends, Built with Opus 4.8

https://lmaomoba.com
1•jonnyasmar•33m ago•0 comments

Why Your AI Agent Needs Better Temporal Reasoning–and How We Fixed It

https://medium.com/@vektormemory/why-your-ai-agent-needs-better-temporal-reasoning-and-how-we-fix...
1•vektormemory•33m ago•0 comments

Agent-Model Matching Guide

https://github.com/code-yeongyu/oh-my-openagent/blob/dev/docs/guide/agent-model-matching.md
1•ValentineC•35m ago•0 comments

Data.world to be discontinued on July 11, 2026

https://docs.data.world/en/408855-how-to-export-and-download-your-data.html#UUID-eca96534-4836-6e...
3•bnj•35m ago•1 comments

Computex 2026: All the news and announcements

https://www.theverge.com/tech/940844/computex-2026
1•rmason•38m 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!