frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Post-mortem after Namecheap/RadiusDC service outage

https://www.namecheap.com/blog/namecheap-service-outage-update/
2•lschueller•15m ago•0 comments

Towards a Risk Assessment of Malicious Skill Files in Coding Agents

https://arxiv.org/abs/2608.05223
2•Beko2210•18m ago•0 comments

Talos AI Agent Super Secure

https://github.com/talos-kernel/talos
1•kurdman007•18m ago•0 comments

Learning Augmented Heuristics

https://systems.seas.harvard.edu/blog/learning-augmented-heuristics/
1•1a1a11a•20m ago•0 comments

Brands Suddenly Care About Reddit. Redditors Don't Return the Feeling.

https://www.wsj.com/cmo-today/brands-suddenly-care-about-reddit-redditors-dont-return-the-feeling...
2•bookofjoe•20m ago•1 comments

Qwen 3.8 27B 4-bit designs an animated dolphin riding a bicycle SVG

https://twitter.com/1littlecoder/status/2088399639628431831
1•amrrs•22m ago•0 comments

How the World Was Wired

https://www.economist.com/culture/2026/08/12/how-the-world-was-wired
1•andsoitis•23m ago•0 comments

Show HN: Macsomnia – close your MacBook lid while keeping long jobs alive

https://github.com/iamdadzilla/Macsomnia
1•dadzilla•24m ago•0 comments

The case for overhauling American science

https://www.economist.com/by-invitation/2026/08/13/the-case-for-overhauling-american-science
3•andsoitis•25m ago•0 comments

Show HN: Kvcachescope – Why Nvidia-smi is blind to vLLM KV cache leaks

https://github.com/brian-mwirigi/kvcachescope
1•nesh23•26m ago•0 comments

A Framework for Solving the AI Data Center Energy Crisis

https://github.com/kikazamek999-eng/beyond-brute-force-scaling
1•KitKat42•26m ago•0 comments

Selling my production-ready 4-in-1 FastAPI AI Automation Suite ($8k)

https://www.indiehackers.com/post/selling-my-production-ready-4-in-1-fastapi-ai-automation-suite-...
1•dav77•27m ago•0 comments

Production-Ready FastAPI Back End Suite – Advanced RAG and SEO Automation ($8k)

https://www.indiehackers.com/post/for-sale-production-ready-fastapi-backend-suite-advanced-rag-se...
1•dav77•27m ago•0 comments

Backtesting Congress members stock trades by the disclosure date

https://investingpaths.com/tools/congress
2•ProdRatSuperior•28m ago•0 comments

Coding Magic the Gathering in C# – Part One – Why Build a Card Game in WinForms

https://www.youtube.com/watch?v=n7fhuIHD-gM
1•birdculture•28m ago•0 comments

OT Manual Operations Plan: What Manual Operation Buys You

https://www.emberot.com/resources/blog/ot-manual-operations-plan/
2•TheWiggles•31m ago•0 comments

Migraine Trail: Voice Migraine Tracker

https://migrainetrail.com/
1•zrmachar•33m ago•0 comments

Claude Fable 5 Having Fun

https://github.com/robss2020/claude-fable-5-having-fun
5•logicallee•35m ago•1 comments

Show HN: A prompt to check Supabase DB security

https://defencecore.com/audit
1•tornadorice•38m ago•0 comments

Where the Shadow Fell

https://eclipses.bogachev.fr/
1•davidbarker•39m ago•0 comments

France's Top Court Strikes Down Ban on Social Media for Children

https://www.nytimes.com/2026/08/14/world/europe/france-court-strikes-down-ban-social-media-childr...
2•timpera•47m ago•1 comments

We got content-defined chunking from 555 MB/s to 21 GB/s

https://www.plakar.io/posts/2025-07-11/introducing-go-cdc-chunkers-chunk-and-deduplicate-everything/
1•vcoisne•47m ago•0 comments

Digital Signal Processing Pioneer Bede Liu Dies at 91

https://spectrum.ieee.org/digital-signal-processing
3•sohkamyung•48m ago•0 comments

Stop sending me PRs; a rant

https://getsmall.xyz/post/cmstjfl9l000if70ljmpzr4va
4•trezm•49m ago•1 comments

Musk assembled a full-stack AI coding play while everyone watched benchmarks

https://pub.towardsai.net/grok-4-6-x-cursor-elon-musk-just-bought-his-way-into-the-ai-coding-war-...
4•glennall•52m ago•2 comments

Substack forces authors to use Pangram

https://www.reddit.com/r/Substack/comments/1v3rdpr/another_creepy_feature_of_the_pangram_ai/
3•behnamoh•54m ago•0 comments

1973 Concorde Eclipse Flight

https://en.wikipedia.org/wiki/1973_Concorde_eclipse_flight
1•aragonite•54m ago•0 comments

Show HN: Another Markdown editor, but this one is a web app

https://marty.zalega.me/markdawn/
1•evilmarty•55m ago•0 comments

RISC-V: They should have known better

https://dmitry.gr/?r=06.%20Thoughts&proj=12.%20RV
36•kaycebasques•58m ago•8 comments

Two slicks appear in Gulf as oil spill off Oman threatens disaster

https://www.reuters.com/business/environment/two-slicks-appear-gulf-huge-oil-spill-off-oman-threa...
2•Jtsummers•59m 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!