frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

AI advice reduced "I don't know" answers from 44% to 3%

https://osf.io/preprints/psyarxiv/5y6m4_v1
1•logickkk1•1m ago•0 comments

Platform engineering's new job: serving environments at agent speed

https://thenewstack.io/serving-environments-agent-speed/
1•Brajeshwar•1m ago•0 comments

Show HN: Tab O' War, a TBH like piracy game

https://tow.urbanodx.com/
1•urbanogt5•2m ago•0 comments

Using Claude to manage static IP assignments

https://blog.herlein.com/post/unifi-fixed-hosts-skill/
1•gherlein•7m ago•0 comments

Do Language Models Plan Ahead for Future Tokens? (2024)

https://arxiv.org/abs/2404.00859
1•Alifatisk•9m ago•0 comments

Prompt Injection Attacks Are Thwarting AI Hacking Agents

https://arstechnica.com/security/2026/07/now-defenders-are-embracing-the-prompt-injection-too/
1•joozio•10m ago•0 comments

Blick Editor

https://blickeditor.com/
2•lexoj•11m ago•0 comments

Show HN: Rasptele – Manage a Raspberry Pi Docker Server from Telegram

https://github.com/maddhruv/rasptele
1•maddhruvhn•14m ago•0 comments

MIT warns automating Gen Z entry jobs may cost firms their future workforce

https://fortune.com/article/automating-gen-z-entry-level-jobs-could-backfire-mit-ai-researcher-an...
1•01-_-•17m ago•0 comments

OpenAI Acknowledges GPT-5.6 May Accidentally Delete Files

https://www.infoworld.com/article/4198216/openai-acknowledges-gpt-5-6-may-accidentally-delete-fil...
1•andrewl•17m ago•0 comments

vs. 386 vs. 486: The Difference Wasn't Speed – It Was This

https://comuniq.xyz/post?t=1411
1•01-_-•17m ago•0 comments

Show HN: Scorchsaver – a wildfire puzzle where you fight fire with backfires

https://scorchsaver.com
1•luciansecara•22m ago•0 comments

HuggingFace security incident: Guardrails vs. Open Models

https://huggingface.co/blog/security-incident-july-2026
2•benjiro29•24m ago•1 comments

Chris Huelsbeck

https://en.wikipedia.org/wiki/Chris_Huelsbeck
1•doener•25m ago•0 comments

The Last MPEG-4 Visual Patent Has Expired

https://www.phoronix.com/news/Last-MPEG-4-Patent-Expired
3•LorenDB•25m ago•1 comments

The Adventures of Quik and Silva

https://en.wikipedia.org/wiki/The_Adventures_of_Quik_%26_Silva
1•doener•26m ago•0 comments

Show HN: Phosphor – a CRT TV video player for your Mac

https://github.com/JoAz111/Phosphor
1•JoAz111•28m ago•0 comments

Jeffersonian Transcription

https://en.wikipedia.org/wiki/Conversation_analysis
1•kasperset•28m ago•1 comments

Even with an Edge, You Lose?

https://jappie.me/even-with-an-edge-you-lose.html
1•zeepthee•29m ago•0 comments

The Birth of Thickets

https://aneeshsathe.substack.com/p/the-birth-of-thickets
1•boredgargoyle•30m ago•0 comments

Texas Police Spent $4.5M on Four Chevy Tahoes

https://www.thedrive.com/news/how-texas-police-spent-4-5-million-on-four-chevy-tahoes
2•randycupertino•32m ago•2 comments

We need to talk about the open model situation

https://12gramsofcarbon.com/p/tech-things-we-need-to-talk-about
1•theahura•34m ago•0 comments

Tools and Techniques of Show Card Writing

https://jamesgurney.substack.com/p/tools-and-techniques-of-show-card
1•Michelangelo11•37m ago•0 comments

ECC and DDR5

https://etbe.coker.com.au/2026/07/19/ecc-ddr5/
1•zdw•39m ago•0 comments

Dough: Audio engine for live coding, written in a single C file

https://dough.strudel.cc/
1•lioeters•39m ago•0 comments

Verify email and phone number easily

https://checkfor.dev/
1•davygab•42m ago•1 comments

Why being a football/soccer fan is irrationally rational

https://www.adriankrebs.ch/blog/football/
1•hubraumhugo•43m ago•0 comments

Why Apple's Lawsuit Against OpenAI over Devices Spares Jony Ive

https://www.bloomberg.com/news/newsletters/2026-07-19/why-apple-s-openai-lawsuit-doesn-t-mention-...
2•thm•48m ago•0 comments

Since 2020, public transport has been free of charge throughout Luxembourg

https://luxembourg.public.lu/en/living/mobility/public-transport.html
2•robin_reala•50m ago•0 comments

AES Gets Swizzled

https://00f.net/2026/07/16/aes-with-simd-swizzles/
1•zdw•50m 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!