frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Shader Benchmark for LLMs

https://nbardy.github.io/shader_benchmark/
1•nbardy•49s ago•0 comments

OpenAI proposes handing Trump administration 5% stake

https://www.ft.com/content/7c803eab-8e80-4431-9a87-e943bf00e00b
1•enraged_camel•1m ago•0 comments

SpaceX reportedly working on an AI phone

https://www.theverge.com/science/960442/spacex-phone-prototype-elon-musk
1•mandeepj•3m ago•0 comments

Delivery Optimization for Browser and Software Updates to Minimize Bandwidth

https://inavoyage.blogspot.com/2026/07/delivery-optimization-for-browser.html
1•initramfs•4m ago•0 comments

Kenneth Bulmer

https://en.wikipedia.org/wiki/Kenneth_Bulmer
1•petethomas•6m ago•0 comments

GameBoy Emulator on ESP32 and eInk [video]

https://www.youtube.com/watch?v=oPbOK90aJEo
1•yboris•6m ago•0 comments

Book Prizes Don't Work How You Think

https://rebeccamakkai.substack.com/p/book-prizes-dont-work-how-you-think
1•samclemens•7m ago•0 comments

JavaScript library for rapid AI and XR prototyping

https://github.com/google/xrblocks
1•arbayi•11m ago•0 comments

OpenAI proposes handing Trump administration 5% stake

https://www.reuters.com/business/openai-proposes-handing-trump-administration-5-stake-ft-reports-...
2•tristanj•12m ago•0 comments

Smoothie – compile a folder of data into a cited artifact agents can query

https://github.com/4tyone/smoothie
1•MelsHakobyan•16m ago•1 comments

Web Apps for Meta Ray-Ban Display Glasses

https://wearables.developer.meta.com/docs/develop/webapps/build/
2•arbayi•17m ago•0 comments

I hacked this temu camera. what I found should be illegal. [video][8 mins]

https://www.youtube.com/watch?v=RuqQR_R-dEQ
2•Bender•17m ago•0 comments

Show HN: Claude Desktop Switcher for separating the whole Claude Desktop suite

https://matsumotory.github.io/claude-desktop-switcher/
2•matsumotory•18m ago•0 comments

Kimi K2.7 Code is generally available in GitHub Copilot

https://github.blog/changelog/2026-07-01-kimi-k2-7-is-now-available-in-github-copilot/
2•unliftedq•20m ago•0 comments

Show HN: Margarita - Programming language for Agents using Markdown-ish syntax

https://www.margarita.run
1•margarita_dev•20m ago•0 comments

US reportedly mulls pulling troops from Saudi Arabia as ties sour over Iran war

https://www.timesofisrael.com/us-reportedly-mulls-pulling-troops-from-saudi-arabia-as-ties-sour-o...
1•koolhead17•24m ago•0 comments

Herdr: One terminal to rule them all

https://herdr.dev/
1•handfuloflight•24m ago•0 comments

Microsoft/Flint-Chart

https://github.com/microsoft/flint-chart
1•geoffbp•24m ago•0 comments

Society of Saint Pius X

https://en.wikipedia.org/wiki/Society_of_Saint_Pius_X
1•febed•25m ago•0 comments

Can solar and wind and batteries provide 24/7/365 electricity?

https://unpopular-truth.com/2026/06/19/can-solar-and-wind-batteries-really-provide-24-7-365-elect...
1•dpraburaj•25m ago•0 comments

Show HN: A complete AI agency at your fingertips

https://github.com/msitarzewski/agency-agents
1•adithyaharish•29m ago•0 comments

Chemurgy

https://en.wikipedia.org/wiki/Chemurgy
2•petethomas•29m ago•0 comments

State of X402 – Independent Audit – Every Faciliator, Every Chain

https://x402stats.io
1•pro_methe5•31m ago•0 comments

Zig - All Package Management Functionality Moved from Compiler to Build System

https://ziglang.org/devlog/2026/?2026-06-30#2026-06-30
3•Retro_Dev•33m ago•0 comments

Ask HN: What are you building first with Fable?

4•akashwadhwani35•41m ago•1 comments

Trump's plan to redesign every .gov website leads to AI-designed horrors

https://arstechnica.com/tech-policy/2026/06/trumps-plan-to-redesign-every-gov-website-leads-to-ai...
2•duxup•46m ago•1 comments

Understanding Why Language Models Hallucinate: Testing Reasoning Against Priors

https://neohughus.github.io/Understanding_Why_Language_Models_Hallucinate/
1•ilreb•46m ago•0 comments

Who Shuts Down the Internet the Most?

https://pulse.internetsociety.org/en/shutdowns/
2•Bender•48m ago•0 comments

White House accelerates plans for AI model standards

https://www.ft.com/content/0bb7e2f9-007b-4577-9c4a-858948ee969a
1•OutOfHere•48m ago•0 comments

Carson Block: If you thought the global financial crisis was bad

https://www.economist.com/by-invitation/2026/06/28/if-you-thought-the-global-financial-crisis-was...
1•burntcaramel•49m 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!