frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

The Grammar of Coding Agents

https://grammar-of-coding-agents.pages.dev
1•allenb•36s ago•1 comments

The Web Is for People

https://www.torgo.com/blog/2026/06/the-web-is-for-people.html
2•robin_reala•3m ago•0 comments

Dr. Erna Shneider Hoover Revolutionized Telecommunications [pdf]

https://ulopenaccess.com/papers/ULAHU_V03I02/ULAHU20260302_004.pdf
1•Tomte•4m ago•0 comments

China unveils a portable anti-drone laser that can down drones from 1,600ft away

https://www.tomshardware.com/tech-industry/china-shows-off-a-backpack-sized-anti-drone-laser-that...
1•giuliomagnifico•7m ago•0 comments

Kalman Filter

https://en.wikipedia.org/wiki/Kalman_filter
1•1e1a•7m ago•0 comments

MCP server that lets Claude click menus on your Mac and fix its own mistakes

https://github.com/m0rvayne/mcp-osascript
1•m0rvayne•9m ago•0 comments

Softmax-free ~354M: tile-skip kernels for long-context VRAM savings (sparse)

https://huggingface.co/Tripstoph/RRT-Foundation
1•Tripstoph•10m ago•0 comments

The unreasonable effectiveness of LLMs for auditing Rust code

https://shnatsel.medium.com/the-unreasonable-effectiveness-of-llms-for-auditing-rust-code-d4df8bf...
1•heinrich5991•10m ago•0 comments

Bell.com

https://bell.com
1•tentacleuno•19m ago•0 comments

CTOs Agree: Cognitive Debt Is the New Technical Debt

https://shiftmag.dev/ctos-agree-cognitive-debt-is-the-new-technical-debt-10229/
4•sxx0•23m ago•1 comments

Sword Swallowing and Its Side Effects

https://pmc.ncbi.nlm.nih.gov/articles/PMC1761150/
2•nephihaha•25m ago•0 comments

What does it mean for AI to be democratic?

https://blog.andymasley.com/p/what-does-it-mean-for-ai-to-be-democratic
1•jger15•25m ago•0 comments

Hidden Tunnels Dating Back to Henry VIII's Reign Discovered at Boarding School

https://www.smithsonianmag.com/smart-news/hidden-tunnels-dating-back-to-henry-viiis-reign-were-di...
1•bookofjoe•27m ago•0 comments

POSBox – Free Open Source Point of Sale System

https://github.com/train2128/POSBox---Point-of-Sale-System
1•train212•28m ago•0 comments

NSA director: 'Mythos "broke into almost all of our classified systems in hours"

https://www.economist.com/briefing/2026/06/14/donald-trumps-blocking-of-anthropic-is-capricious-a...
4•ricksunny•32m ago•1 comments

Building a Swarm of Telescopes to Find Life

https://www.universetoday.com/articles/astronomers-want-to-build-a-swarm-of-telescopes-to-find-life
1•tcp_handshaker•32m ago•0 comments

What the Wounds Are Telling Us (2025)

https://www.volkskrant.nl/kijkverder/v/2025/gunshot-palestine-children-israel-war~v1819649/
1•tcp_handshaker•32m ago•0 comments

Geo-engineering to protect against solar storms

https://agupubs.onlinelibrary.wiley.com/doi/full/10.1029/2025SW004846
2•dylancollins•35m ago•1 comments

Survival Ball

https://survivalball.com/
1•lopespm•35m ago•0 comments

Jazzy – Productive, Developer-Friendly Web Framework for Nim

https://github.com/canermastan/jazzy-framework
1•TheWiggles•36m ago•0 comments

SmolSharp – Extremely small standalone C# executables using NativeAOT

https://github.com/ascpixi/smolsharp
1•breve•38m ago•0 comments

DeepSWE Benchmark updated with GLM 5.2 and updated results for other models

https://deepswe.datacurve.ai/
1•theanonymousone•40m ago•0 comments

A controlled hypothermia cure for Lyme disease [video]

https://www.youtube.com/watch?v=jwtPtlcNXEs
1•cromka•41m ago•0 comments

Show HN: Built this tool to solve my marketing content problem

https://www.clickcast.tech/
1•modulusme•42m ago•0 comments

CAD vs. CAD Tournament

https://www.tootalltoby.com/Tournaments/
1•dgellow•48m ago•0 comments

[$29.99 Lifetime → Free – The App Blocker That Makes You

https://old.reddit.com/r/AppHookup/comments/1u8yrff/ios_offkit_2999_lifetime_free_the_app_blocker/
1•nickfthedev•52m ago•0 comments

Ethereum's biggest 'sandwich' bot drained of $7.5M in ironic exploit

https://www.techsentiments.com/article/2026/06/21/ethereums-biggest-sandwich-bot-drained-of-75-mi...
3•rajsuper123•53m ago•0 comments

Can someone try to get my websites admin panel?

https://gag.gg/
1•nottakens•53m ago•1 comments

A neuro-adaptive OS concept for energy efficiency and execution-path attestation

https://github.com/Jtr85/paper-os-neurale
1•JTR85•55m ago•0 comments

Form Before Data: The Real Bottleneck for Physical AI

https://adlrocha.substack.com/p/adlrocha-form-before-data-the-real
2•adlrocha•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!