frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Tcom: ASCII Video Chats from the Terminal

1•smalltorch•1m ago•0 comments

Companies are scrambling to curtail soaring AI costs

https://www.economist.com/business/2026/06/14/companies-are-scrambling-to-curtail-soaring-ai-costs
1•achenet•1m ago•0 comments

Aegis: A Backup Reflex for Physical AI

https://arxiv.org/abs/2606.06660
1•josefchen•2m ago•0 comments

MemSoph

https://memsoph.ai/
1•ParkinEasy•2m ago•0 comments

Anthropic to meet with Trump administration over Mythos dispute

https://www.cnbc.com/2026/06/15/anthropic-mythos-trump-ai.html
2•cebert•3m ago•0 comments

Semi-solid batteries emerge as safer lithium-ion alternative

https://www.techbuzz.ai/articles/semi-solid-batteries-emerge-as-safer-lithium-ion-alternative
1•Vaslo•4m ago•0 comments

Show HN: Mood

https://mood.lasagna.pizza/
1•kinduff•4m ago•0 comments

Ask HN: How do you deal with the feeling of "loss of control" with AI coding?

2•xiaoyu2006•6m ago•0 comments

Show HN: AI Metrics, Visually

https://barvhaim.github.io/visual-ai-metrics/
2•bignet•6m ago•0 comments

Ocean monitoring network of 900 sensors meant for 20 years is being dismantled

https://apnews.com/article/ocean-observatories-initiative-trump-congress-9b306cb05ec3c824f5e03482...
2•ck2•8m ago•0 comments

Fox Is Buying Roku

https://www.fastcompany.com/91559558/fox-corp-buying-roku-stock-prices-fall-on-tv-streaming-merger
2•simonebrunozzi•8m ago•0 comments

Show HN: Hammermind – Game-ready pixel art and audio files from a single prompt

https://hammermind.com
1•cryptohammer•8m ago•0 comments

Cancelled Xbox 360 version of GoldenEye 007 gets recompiled for PC – no emulator

https://github.com/SunJaycy/GoldenEye-Recomp
1•HelloUsername•8m ago•0 comments

Sakana AI Launches Its First Commercial Product, Sakana Marlin

https://sakana.ai/marlin-release/#English
1•hardmaru•8m ago•0 comments

Gliderboy Reinvents Humble Weather Balloon with Flight Home

https://www.bloomberg.com/news/newsletters/2026-06-15/-gliderboy-reinvents-weather-balloon-with-r...
1•kejaed•8m ago•0 comments

The most complete citizen participation tool for a democratic government

https://consuldemocracy.org/
1•snowpid•11m ago•0 comments

Amazon Boosts India Automation, Robotics and EV Logistics

https://startupnews.fyi/ecommerce/amazon-boosts-india-automation-robotics-ev-logistics
1•maybiiLen•12m ago•0 comments

Libexpat will not accept vulnerability reports before 2026-08-01

https://github.com/libexpat/libexpat/issues/1277
1•robin_reala•14m ago•0 comments

Copper transport drug restores memory and clears toxic Alzheimer's proteins

https://www.monash.edu/news/articles/copper-drug-restores-memory-and-clears-toxic-alzheimers-prot...
2•bookofjoe•15m ago•0 comments

Microsofts new Outlook takes 10 SEC to do what Outlook Classic does instantly

https://www.windowslatest.com/2026/06/15/microsofts-new-outlook-takes-10-seconds-to-do-what-outlo...
3•_____k•15m ago•0 comments

Remote work is bad for you

https://mrmarket.lol/remote-work-is-bad-for-you/
3•baud147258•15m ago•1 comments

Show HN: CriteriaBot – A Universal Customizable Classifier

https://criteriabot.io/
1•RoyalTnetennba•15m ago•0 comments

Ask HN: Has anyone replaced Claude/GPT with a local model for daily coding?

2•cloudking•17m ago•0 comments

Website as Wunderkammer

https://www.henryweikel.net/
1•casmalia•17m ago•0 comments

Show HN: SideDNS – Local DNS routing and HTTPS without editing /etc./hosts

https://github.com/Wilfried-Tech/sidedns
1•Wilfried-Tech•17m ago•0 comments

Show HN: Visical, a cross-platform tool for camera calibration

https://github.com/BrugolaOvoidale/Visical
1•BrugolaOvoidale•18m ago•1 comments

Tensor Shapes in the Python Type System – Avik Chaudhuri – PyCon Typing Summit

https://pyrefly.org/blog/tensor-shapes-in-the-type-system/
1•ocamoss•19m ago•0 comments

Hetzner increased dedicated server prices 3-4x

14•enescakir•19m ago•2 comments

Data-Oriented Design

https://gamesfromwithin.com/data-oriented-design
1•tosh•20m ago•0 comments

Show HN: Concept-Vector – human-interpretable word embeddings

https://github.com/truehumanexe/concept_vector/tree/main
1•clejack•20m 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!