frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

New Solar Panel Technology Trends for 2026 (UK)

https://spectrumenergysystems.co.uk/articles/new-solar-panel-technology-trends-for-2026/
1•DamonHD•1m ago•0 comments

Resistance Training Prescription for Muscle Function, Hypertrophy in Health

https://pmc.ncbi.nlm.nih.gov/articles/PMC12965823/
1•ultral•1m ago•0 comments

Perplexity trusts GPT‑6 Astra with end-to-end systems

https://openai.com/index/perplexity-improving-accuracy-with-astra/
1•ENOMEM•4m ago•0 comments

What do you think of controlling your agent via Siri

1•in_making•5m ago•0 comments

Rust-Like Syntax for WebAssembly

https://github.com/ocsigen/wax
1•alex_hirner•5m ago•0 comments

GoatCode – open-source terminal AI agent with provider failover

2•Arhan-w•8m ago•0 comments

AI may be denting computer science graduates' job prospects, UK data shows

https://www.theguardian.com/education/2026/sep/12/ai-computer-science-graduates-job-prospects-uk-...
2•vinni2•12m ago•0 comments

How the Nintendo Zapper Worked in Slow Motion [video]

https://www.youtube.com/watch?v=V6XnSvB34y8
1•ultral•13m ago•0 comments

The Newsroom EP01 – OpenAI Ships GPT-5 to Azure – DeepSeek Open-Sources 236B Moe

https://www.youtube.com/watch?v=oKORpPIwkm4
2•LebToki•15m ago•0 comments

Learnings from 12,000 Agentic Code Reviews

https://blog.watson-labs.co.uk/6-learnings-from-12000-agentic-code-reviews/
1•ultral•22m ago•0 comments

Time's Best Companies of 2026

https://time.com/article/2026/09/09/worlds-best-companies-of-2026/
2•giuliomagnifico•24m ago•0 comments

Collaboration

1•RTP123•27m ago•0 comments

LocalSend-like file transfer beyond the LAN

https://github.com/threatexpert/gonc-gui
1•gonc_cc•29m ago•0 comments

Stephen Bourne: Early days of Unix and design of sh (2015) [video]

https://www.youtube.com/watch?v=2kEJoWfobpA
1•mpweiher•30m ago•0 comments

Hegel's Logic in Cubical Agda

https://ddebruce.github.io/hegel-agda/index.html
1•hackandthink•33m ago•0 comments

UAE revises 5GW AI data center plan after Iranian attacks, sources say

https://www.reuters.com/world/middle-east/uae-revises-ai-data-center-plan-after-iranian-attacks-s...
3•giuliomagnifico•35m ago•0 comments

40C3 – Call for Participation

https://content.events.ccc.de/cfp/40c3/index.en.html
1•cgeier•39m ago•0 comments

What 1k% Open Rates Taught Us About Detecting Hijacked Email Accounts

https://www.sh.consulting/blog/what-a-1000-percent-open-rate-reveals-about-hijacked-email-accounts
2•toruviel•40m ago•0 comments

Declared Purpose Is Not Authorization

https://zenodo.org/records/22719527
1•sangamdas•42m ago•0 comments

Show HN: Stend – share whatever your agent came up with

https://stend.sh
1•chalyi•42m ago•0 comments

Why This Author Doesn't Publish Technical Articles Anymore

https://galratner.substack.com/p/why-i-dont-publish-technical-articles
3•cats_and_dogs•54m ago•2 comments

Isaac Asimov's "Profession"

https://en.wikipedia.org/wiki/Profession_(novella)
3•ColinWright•55m ago•1 comments

Show HN: Sharpniq – AI-powered tool to unblur images online

https://unblurimage.me
1•toolina•57m ago•1 comments

Interview: Terence Tao on AI

https://teorth.github.io/tao-web/ai-views-interview.html
1•JuniperMesos•1h ago•0 comments

Improper Limitation of a Pathname to a Restricted Directory in GitLab 10/10

https://www.cve.org/CVERecord?id=CVE-2026-85706
2•ultral•1h ago•0 comments

Native macOS menu-bar system-metrics overlay

https://github.com/alhanashi/Desktop-Overlay
1•alhanashi•1h ago•1 comments

Timeouts and Cancellation for Humans (2018]

https://vorpus.org/blog/timeouts-and-cancellation-for-humans/
1•Bluestein•1h ago•0 comments

Retrospectively Reverse-Engineering Apple's Neural Engine

https://eiln.github.io/posts/ane.html
51•zdw•1h ago•6 comments

What happens when quantum mechanics and relativity meet?

https://arstechnica.com/science/2026/09/what-happens-when-quantum-mechanics-and-relativity-meet/
2•gumby•1h ago•0 comments

Anthropic researcher resigning citing superintelligence ' – is a marketing hoax [video]

https://www.youtube.com/shorts/skV0hDd-chM
2•adaba1234•1h 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!