frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Ask HN: What is your (AI) dev tech stack / workflow? (June 2026)

1•dv35z•1m ago•0 comments

The European Social Stack

https://european.social/
1•cheeaun•1m ago•0 comments

YouVersion Platform – Developer Platform for Bible-Based Experiences

https://www.youversion.com/platform
1•joelboersma•2m ago•0 comments

New IronWorm malware hits 36 packages in NPM supply-chain attack

https://www.bleepingcomputer.com/news/security/new-ironworm-malware-hits-36-packages-in-npm-suppl...
1•yogthos•2m ago•0 comments

Good Careers at Bad Companies

https://sharedphysics.com/good-careers-at-bad-companies/
1•goopthink•3m ago•0 comments

Gene flow from wild apples and selection shaped the domesticated Apple genome

https://www.sciencedirect.com/science/article/pii/S0960982226003684?via%3Dihub
1•PaulHoule•3m ago•0 comments

Watch crypto protocols exploited in real time

https://testmachine.ai
1•dannnyboi•3m ago•0 comments

Something is jamming GPS over Europe

https://www.youtube.com/watch?v=tz23G_UXCGA
1•fallinditch•4m ago•0 comments

PostgreSQL and the OOM Killer: Why We Use Strict Memory Overcommit

https://www.ubicloud.com/blog/postgresql-and-the-oom-killer-why-we-use-strict-memory-overcommit
2•levkk•4m ago•0 comments

Antares SMR goes zero power critical

https://twitter.com/AntaresNuclear/status/2062668414813126851
1•maxcan•6m ago•0 comments

Apple's Plan for AI Dominance Rests on Fixing Its Much-Maligned Chatbot

https://www.wsj.com/tech/ai/apples-plan-for-ai-dominance-rests-on-fixing-its-much-maligned-chatbo...
1•Zhenya•6m ago•0 comments

The British university is dying, and it seems that almost nobody cares

https://newleftreview.org/sidecar/posts/irreversible
2•theanonymousone•8m ago•0 comments

Introduce Loon: lake-native storage engine behind Milvus 3.0 for AI data

https://zilliz.com/blog/why-we-built-loon-a-storage-engine-for-ai-data-that-never-stops-changing
1•redskyluan•8m ago•0 comments

New method turns ocean water into drinking water, without waste

https://www.rochester.edu/newscenter/what-is-desalination-definition-ocean-water-704732/
2•speckx•11m ago•0 comments

We reduced tests from hours to just minutes using automatic GlassFish pools

https://balusc.omnifaces.org/2026/06/from-hours-to-minutes-glassfish-pool.html
1•henk53•11m ago•0 comments

Astronauts on ISS told to shelter as repairs under way to fix air leaks

https://www.bbc.com/news/live/c4g44ew3g1kt
31•janpot•14m ago•3 comments

Simulism · on Env

https://basecase.org/env/simulism
2•surprisetalk•14m ago•0 comments

I customized a MacBook Neo with colorful spare parts

https://www.theverge.com/tech/942839/macbook-neo-customization-color-mods-official-parts-frankenl...
1•droidjj•15m ago•0 comments

Building a zero-cloud, local semantic indexing engine for AI agents

https://entempsllc.github.io/nexus-waitlist/
1•Singhucla•16m ago•0 comments

VibeOS – Hallucinated Operating System [video]

https://www.youtube.com/watch?v=z3pV6FHvcgM
2•tapoxi•17m ago•0 comments

Valve says it's ready to launch the Steam Machine this summer

https://www.theverge.com/games/943657/valve-steam-machine-frame-summer-launch-verified
3•neilfrndes•17m ago•0 comments

Ethical and Moral Considerations in Proprietary Software Usage

https://sfconservancy.org/blog/2026/jun/02/ethical-use-proprietary-develop-free-software-foss/
2•hn_acker•17m ago•0 comments

AI-indecision is a recursive trap. Don't get stuck

https://www.joanwestenberg.com/ai-indecision-is-a-recursive-trap-dont-get-stuck/
2•spking•18m ago•0 comments

Show HN: One-Shot Program Generation Through Direct Memory Diffusion

https://github.com/MadlyFX/Direct-Memory-Diffusion
1•andyfilms1•20m ago•0 comments

Show HN: 0llm is a small app to help you spend time away from AI

https://0llm.tonyalicea.dev/
1•TonyAlicea10•20m ago•0 comments

Playing with Vision Embeddings

https://prestonbjensen.com/posts/playing-with-vision-embeddings
1•prestoj•20m ago•0 comments

Gain of Function, Loss of Control

https://tamingcomplexity.substack.com/p/gain-of-function-loss-of-control
2•namenumber•21m ago•0 comments

LLM agent performance is a distributed systems problem

https://fixbugs.ai/blog/high-performance-ai-agents-distributed-systems
2•kirtivr•21m ago•0 comments

Israel's tech paradox:$1.1B raised in a week as layoffs sweep industry

https://www.calcalistech.com/ctechnews/article/s1glpz1wge
3•myth_drannon•22m ago•0 comments

New York just passed a one-year temporary ban on data centers

https://scienceaim.com/new-york-just-passed-a-one-year-temporary-ban-on-data-centers/
13•binarymax•25m ago•9 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!