frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Dream Appearance Notification

https://drapno.com/
1•dougSF70•14s ago•1 comments

HN rates AI coding agents

https://elolup.com/
2•reStrugly•1m ago•1 comments

Loop Engineering

https://addyo.substack.com/p/loop-engineering
1•kiyanwang•2m ago•0 comments

The Fable 5 Export Controls Harm US Cyber Defense

https://www.lutasecurity.com/post/the-fable-5-export-controls-harm-us-cyber-defense
1•epaga•3m ago•0 comments

Found a useful open-source repo called Undoable

https://github.com/AkhilNam/undoable
1•hellokittydev•5m ago•0 comments

Commodore retro-styled flip phone

https://www.wired.com/story/commodore-callback-8020-is-a-digital-detox-phone-that-isnt-dumb/
1•seomint•5m ago•1 comments

Academic freedom declined in 50 countries

https://academic-freedom-index.net/
1•dash2•5m ago•0 comments

Breakthrough in electron microscopy delivers sharper images of tiniest proteins

https://news.berkeley.edu/2026/06/11/a-breakthrough-in-electron-microscopy-delivers-sharper-image...
1•thunderbong•5m ago•0 comments

Neither Parallel nor Sequential: How DiffusionGemma Commits Tokens

https://arxiv.org/abs/2606.14620
1•Topfi•10m ago•0 comments

Disbatch – turn a PowerShell/batch script into a GUI, with a risk analyzer

https://github.com/SlashRevet/disbatch
1•revet•11m ago•0 comments

Notes Art: iPhone Notes Drawings

https://notes.art/
1•rishikeshs•11m ago•0 comments

Show HN: Fig0 – 0-Manual AI Scientific Figure and Illustration Generator

https://fig0.ai/
1•zizheruan•13m ago•0 comments

Grind LeetCode questions with Claude Code dsa mentor

https://github.com/Stewie-pixel/claude-with-leetcode
1•Stewie-pixel•15m ago•1 comments

Snap Launches $2,195 'Specs' Augmented Reality Glasses

https://www.macrumors.com/2026/06/16/snap-specs-ar-glasses/
1•tosh•17m ago•0 comments

Apple's 2028 iPhones to Use 1.4nm A22 Pro Chips

https://www.macrumors.com/2026/06/16/2028-iphones-a22-pro-chips/
2•tosh•17m ago•0 comments

Yellow spaceship machines used to prevent algae

https://www.bbc.co.uk/news/articles/cpwez5qgj5xo
1•zeristor•18m ago•1 comments

The Coming Quantum National Security Crisis

https://www.foreignaffairs.com/china/coming-quantum-national-security-crisis
3•0in•22m ago•0 comments

Waiting for the Weekend (1991)

https://www.theatlantic.com/magazine/archive/1991/08/waiting-for-the-weekend/376343/
2•helloplanets•25m ago•0 comments

Peter Thiel's private society attendance list leaked via hard-coded HTML

https://github.com/nzaki-dev/dialog
7•helloamigo•30m ago•0 comments

TradersCompanion, a trading journal that helps prop firm traders pass challenges

https://www.traderscompanion.org
1•mathono•31m ago•0 comments

Tell HN: Just scammed for $5207.11 by "10-4 by WEX" (Mercury Personal)

1•bojangleslover•31m ago•0 comments

Britain arrests more for social media posts than China, Russia, Turkey combined

https://twitter.com/XFreeze/status/2066778611227709885
4•Dig1t•37m ago•0 comments

A primer on cloud seeding (2024)

https://www.theclimatebrink.com/p/a-primer-on-cloud-seeding
1•sneela•38m ago•1 comments

Cursor CEO omits information geometry contraints helping programming activity

https://twitter.com/a16z/status/2066932717871301046
1•__patchbit__•41m ago•0 comments

India temporarily bans Telegram over exam paper leak concerns

https://www.bbc.com/news/articles/cn074j04l3eo
3•thisislife2•41m ago•0 comments

BoronEngine, (c++ vulkan dx11) gameengine

2•Kahviz_•45m ago•1 comments

Show HN: Product Validation

https://ideas.trk7.app/
2•cosmok•48m ago•0 comments

Zygohistomorphic Prepromorphism Is All You Need

https://wiki.haskell.org/index.php?title=Zygohistomorphic_prepromorphisms
3•wseqyrku•49m ago•0 comments

Bill Joy: Co-Founder of Sun Microsystems

https://engineering.berkeley.edu/bill-joy-co-founder-of-sun-microsystems/
3•teleforce•52m ago•0 comments

Apple plans change to Hide My Email that could make it less effective

https://techcrunch.com/2026/06/16/apple-plans-to-change-its-hide-my-email-privacy-feature-that-co...
17•memalign•59m 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!