frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

What Silicon Valley gets wrong about AI

https://sfstandard.com/2026/07/29/myth-ai-intelligence-medicine-regulation/
1•littlexsparkee•5m ago•1 comments

Encryption in the 1790s

https://hackaday.com/2026/07/23/encryption-in-the-1790s/
1•kristianp•9m ago•0 comments

Show HN: GlobeHoppr – find a route between cities using limited-distance jumps

https://globehoppr.com
1•JohnJohnson123•10m ago•0 comments

Before the theorem prover: verification is older than the alphabet

https://amangoel.ai/blog/before-the-theorem-prover/
1•amangoelumich•13m ago•0 comments

Do newer coding models end up training on the AI slop generated by older models?

1•tbharath•13m ago•3 comments

Google AI Studio "Delete" doesn't delete – server chat persists (3 videos)

https://www.youtube.com/watch?v=LBQfNbPCxQw
1•Bitu79•17m ago•2 comments

A pharmacy chain in Vermont implemented AI for efficiency

https://vtdigger.org/2026/07/29/a-pharmacy-chain-in-vermont-implemented-ai-for-efficiency-its-led...
4•omerhj•18m ago•0 comments

The World Is to Focused on Quarterly Earnings

1•Taikhoom2010•18m ago•0 comments

ACR Stealer: ClickFix, Etherhiding, and Stego, Oh My

https://discourse.ifin.network/t/acr-stealer-clickfix-etherhiding-and-stego-oh-my/694
1•speckx•20m ago•0 comments

Show HN: A free palm-reading tool that works in the browser

https://wishastro.com/tools/palm-reading
1•rp321•24m ago•0 comments

Why AI Needs a "Genie Coefficient"

https://www.schneier.com/blog/archives/2026/07/why-ai-needs-a-genie-coefficient.html
1•anotherevan•25m ago•0 comments

OpenAI ARR in July topped all of Q2

https://www.cnbc.com/2026/07/29/openai-cfo-sarah-friar-tells-employees-arr-in-july-topped-all-of-...
1•gmays•26m ago•0 comments

Flume Water Monitor 915 MHz Security Is Pretty Good

https://waveformsecurity.com/blog/flume/
5•credibleconure•26m ago•0 comments

Face Recognition Blocking Glasses Tested

https://ipvm.com/reports/face-recognition-blocking-glasses-tested
2•jhonovich•29m ago•1 comments

IronClaw 1.0 – one secure agent on CLI, Slack and Telegram, one memory

https://near.ai/blog/introducing-ironclaw-1-0
1•alejoras•31m ago•0 comments

Three Journeys: Anton Chekhov on the Road (2001)

https://www.newyorker.com/magazine/2001/10/29/three-journeys
2•mitchbob•35m ago•1 comments

Overengineered Calculator: Zig and QBE

https://tomekw.com/overengineered-calculator-zig-qbe/
3•rguiscard•37m ago•0 comments

Show HN: Damn Center (the page) – extension that helps centering any website

https://github.com/rinn7e/damn-center-extension
2•rinn7e•42m ago•1 comments

A 22-Hour Nonstop Flight Between London and Sydney Is Coming

https://www.nytimes.com/2026/07/29/world/australia/qantas-long-haul-flight-project-sunrise.html
2•elsewhen•44m ago•0 comments

Why Enterprise Software Is So Hard to Get Right [video]

https://www.youtube.com/watch?v=srtqr7VHvE4
2•pierres7•46m ago•0 comments

Manual: •.,:;?·

https://type.today/en/journal/dots
2•behnamoh•47m ago•0 comments

Sfwig – had a laugh with AI, then a question

2•eilepsalpeh•48m ago•0 comments

Starter Homes Are Piling Up While Luxury Homes Fly Off the Market

https://www.zillow.com/research/starter-homes-price-tiers-36571/
14•toomuchtodo•50m ago•6 comments

Do Language Models Flatten Your Business? We Tested Four Real Ones to Find Out

https://industrycontents.com/language-models-flatten-brand-positioning/
3•ticust•53m ago•1 comments

Join my robot revolution [video]

https://www.youtube.com/watch?v=NwWIubDKEkw
2•gabrielsroka•54m ago•1 comments

Persistent State Machines for LLM Attention (Vivado Estimated 0.0267 PJ/Op)

https://zenodo.org/records/21694686
2•yusuke_esaka•56m ago•0 comments

Logic for Programmers by Hillel Wayne

https://logicforprogrammers.com/
3•_doctor_love•1h ago•0 comments

Show HN: A travel app not building generic itinerary

https://uncoverroads.com/
2•sourav_biswas•1h ago•0 comments

Fauci pleads 5th to what colour of tie he's wearing

https://www.skynews.com.au/details/_6402439292112
4•SanjayMehta•1h ago•0 comments

Show HN: OpenMetaHarness

https://github.com/openmetaharness/openmetaharness
4•IzhaarTejani•1h ago•1 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!