frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

2D Vortex Dynamics

https://lee-phillips.org/vortex/
2•leephillips•1m ago•0 comments

US yen intervention signals perfect storm rising in FX and bond markets

https://www.reuters.com/commentary/reuters-open-interest/us-yen-intervention-signals-perfect-stor...
2•mapping365•2m ago•1 comments

Advanced Lawnmower Simulator (1988)

https://en.wikipedia.org/wiki/Advanced_Lawnmower_Simulator
2•yzydserd•2m ago•0 comments

I'm (mostly) picking models on speed now, not intelligence

https://martinalderson.com/posts/speed-vs-intelligence/
2•birdculture•3m ago•0 comments

Appeals Court Agrees with EFF That Building a Web Browser Doesn't Violate CFAA

https://www.eff.org/deeplinks/2026/08/appeals-court-agrees-eff-building-web-browser-doesnt-violat...
2•iamnothere•4m ago•0 comments

Is It Possible to Make Smart Glasses That Aren't Creepy?

https://www.wired.com/story/is-it-possible-to-make-privacy-friendly-smart-glasses/
2•bushwart•5m ago•0 comments

IP and DNS Leaks in WebKit Affecting Proxy Browsers and iCloud Private Relay

https://mysk.blog/2026/08/04/webkit-proxy-icloud-private-relay-ip-leak/
3•lapcat•5m ago•0 comments

TikTok Withheld a Safety Feature from Millions. One Died by Suicide

https://www.bloomberg.com/news/features/2026-08-04/confidential-tiktok-report-shows-algorithm-saf...
2•petethomas•7m ago•0 comments

Crash experiences of highly automated vehicles and human drivers

https://www.iihs.org/api/datastoredocument/bibliography/2374
2•bushwart•8m ago•0 comments

OpenAI pays $3.2M in US probe over hiring foreign workers

https://www.reuters.com/business/openai-pays-32-million-us-probe-over-hiring-foreign-workers-2026...
3•alephnerd•11m ago•0 comments

Pass the Passkey: A Novel Attack Surface in Passwordless Authentication

https://unit42.paloaltonetworks.com/passwordless-authentication-security-risks/
3•jchanimal•14m ago•0 comments

FIPS 140-3 is not a security guarantee, and auditors know it

https://808bits.com/articles/fips-140-3-not-a-security-guarantee/
3•meehow•15m ago•0 comments

Stackoversroll – A social media for code. Designed for you and your angents

https://stackoverscroll.com
2•bilgi42•16m ago•2 comments

Show HN: Turn customer complaints into winning, researched startups

https://blink-ideas-web.onrender.com/
2•drewgallagher•17m ago•0 comments

libexpat now funded by the City of Munich for up to 6 months

https://blog.hartwork.org/posts/libexpat-city-of-munich-open-source-sabbatical/
15•spyc•19m ago•0 comments

Tear Here: Condiment Packet Archive

https://www.condimentpacket.com/
2•CharlesW•19m ago•0 comments

US diesel prices overtake Biden-era average

https://www.ft.com/content/8d421d44-862d-4942-99ae-568bad4900c2
6•petethomas•19m ago•0 comments

New Bios Update Reportedly Bricking Lenovo Legion Go Devices

https://steamdeckhq.com/news/lenovo-legion-go-bios-bricking/
2•speckx•20m ago•0 comments

Texas halts new data centers as governor calls for audits

https://techcrunch.com/2026/08/04/texas-halts-new-data-centers-as-governor-calls-for-audits/
5•malshe•20m ago•1 comments

Settlement with OpenAI for Discriminating Against U.S. Workers

https://www.justice.gov/opa/pr/civil-rights-division-secures-settlement-openai-discriminating-aga...
6•ethanwillis•23m ago•0 comments

Show HN: Mint MCP – Generate 3D assets from coding agents

https://mcp.mint.gg
2•carrabre•23m ago•0 comments

More than 80% of kids still using social media despite ban

https://theconversation.com/more-than-80-of-kids-still-using-social-media-despite-ban-new-esafety...
4•speckx•24m ago•0 comments

Inside Kimi K3's AgentENV: Can It Really Fork in 100 ms?

https://www.gensee.ai/blogs/inside-agentenv-dirty-memory-microvm-fork.html
2•matt_d•25m ago•0 comments

Feasibility of Space Data Centers

https://www.youtube.com/watch?v=_qpdUNMt2yg
4•yoyohello13•25m ago•0 comments

Turning a Bottle into Filament [video]

https://www.youtube.com/shorts/de5reh7gBJM
2•mhb•29m ago•0 comments

Charity cyclist Bob Montgomery,82, dies one day after last heroic ride 3300 mile

https://www.abc.net.au/news/2026-08-04/bob-montgomery-mnd-charity-cyclist-death/106994142
3•asdefghyk•32m ago•2 comments

World's First AI Consumer Twin Marketplace for Research

https://blue-pill.ai/marketplace
2•aaditkapoor•33m ago•0 comments

Frontier models, transparency and trust; a new golden age in research for some?

https://scholarlyfutures.substack.com/p/frontier-models-transparency-and
2•JohnHammersley•33m ago•0 comments

Gov. Greg Abbott halts Texas data center approvals

https://www.thenationalnews.com/future/technology/2026/08/04/ai-data-center-opposition/
5•mapping365•35m ago•0 comments

Reverse-Engineering the B200's Tensor Core, One Bit at a Time

https://sf-tensor.com/engineering/bitwise-tcgen05
3•benkoska•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!