frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: Warmbly, open-source cold email outreach

https://warmbly.com/
1•meszmate•49s ago•0 comments

Show HN: Inferock-bench – per-call billing receipts for OpenAI and Anthropic

https://github.com/inferock/inferock-bench
1•DreyGreatness•2m ago•0 comments

The scary reason why you should never post photos of your keys online

https://www.dailymail.com/lifestyle/homes/article-15968607/cybersecurity-expert-keys-3d-printer-w...
1•Bender•3m ago•0 comments

Hachiman's new color palette inspired by Martha Stewart's chicken eggs

https://design-milk.com/martha-stewart-hachiman-chilewich-eggshell-color-palette/
1•whiteblossom•3m ago•0 comments

Get Outt

1•rutuyoyu•4m ago•0 comments

Chrome rolling out WebGPU support for Linux

https://developer.chrome.com/blog/new-in-webgpu-144
1•andsoitis•6m ago•0 comments

Felons, Fraudsters Flog Offensive Cybersecurity Startup

https://krebsonsecurity.com/2026/07/felons-fraudsters-flog-offensive-cybersecurity-startup/
1•Bender•6m ago•0 comments

LeafWiki: Wiki in a Single Go Binary

https://leafwiki.com
1•handfuloflight•7m ago•0 comments

Orbital datacenter gold rush needs an environmental review, FCC told

https://www.theregister.com/on-prem/2026/07/10/orbital-datacenter-gold-rush-needs-an-environmenta...
1•Bender•9m ago•0 comments

Ask HN: Are You Hopeful for the Future?

2•piratesAndSons•16m ago•1 comments

ScanTailor Spectre

https://github.com/abandoned-industries/scantailor-spectre
1•axiologist•26m ago•1 comments

Examining the machine code of a 100 KB HTTP server

https://freelang.dev/machine-code-of-a-100kb-http-server/
1•keepamovin•29m ago•0 comments

Lifting Terms: Making Well Scoped Syntax Dumber

https://www.philipzucker.com/thin_term/
1•matt_d•32m ago•0 comments

Sheaves in Haskell

https://www.tweag.io/blog/2026-06-18-sheaves-in-haskell/
1•matt_d•34m ago•0 comments

Edith Wilson

https://en.wikipedia.org/wiki/Edith_Wilson
1•keepamovin•36m ago•1 comments

Show HN: NoiseRemover.ai – Remove background noise from audio

https://noiseremover.ai/
1•nadermx•36m ago•1 comments

Writing static checks to an unsuspecting library with Liquid Haskell

https://www.tweag.io/blog/2026-06-11-diff-package-static-checks/
1•matt_d•37m ago•0 comments

Web3D Survey shows WebGPU available on >75% of browsers

https://web3dsurvey.com/webgpu?70milestone
2•bhouston•37m ago•2 comments

Historical Fiction about the Circle of Fifths

https://monictheory.com/articles/circle-of-fifths
1•song_synth•38m ago•0 comments

Linux Project Visualized. 63M Lines with Linus' Contribution Coverage

https://www.reddit.com/r/PrincipalAi/s/htyRkZ7RqH
1•fernando-ram•40m ago•0 comments

Haves, have-nots and know-nots: Inside AI's new class divide

https://www.axios.com/2026/07/10/ai-class-divide-fable-sol-mythos
2•0in•40m ago•0 comments

AI makes Pompeii victim's final moments look real

https://www.popsci.com/science/ai-pompeii-victim-with-mortar-recreation/
1•gmays•42m ago•1 comments

Apple sues OpenAI, alleging the AI company stole trade secrets

https://www.washingtonpost.com/technology/2026/07/10/apple-sues-openai-alleging-ai-company-stole-...
1•1vuio0pswjnm7•42m ago•0 comments

Tax penalties/interest during the pandemic? You may be eligible for a refund

https://www.washingtonpost.com/business/2026/07/10/dont-miss-this-tax-refund-deadline-whos-eligib...
1•MilnerRoute•49m ago•0 comments

GDP.pdf: Can Frontier Models Master the Documents That Run the World?

https://surgehq.ai/blog/gdp-pdf-can-100b-ai-models-master-the-documents-that-run-the-world
2•handfuloflight•50m ago•0 comments

Entire: Distributed Git for Agents

https://entire.io
1•momeara•51m ago•1 comments

Show HN: Vxpix – $50 Lifetime Screenshot API, Free Tier with No Signup

https://tool.vxpix.com/
1•vxpix•52m ago•0 comments

Forced Clicks and Stand-Down Violations by Shopping Plugin Phia

https://www.benedelman.org/phia-forced-clicks/
1•sanj•52m ago•0 comments

Pulsed electric field, oscillating magnetic field effect on supercooled chicken

https://www.sciencedirect.com/science/article/abs/pii/S0260877416303636
1•thunderbong•54m ago•0 comments

European History Trivia

https://www.earthsattractions.com/european-history-trivia-questions/
1•colinprince•56m 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!