frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Bond Graph

https://en.wikipedia.org/wiki/Bond_graph
1•num42•1m ago•0 comments

We reduced core unit boot time from hours to minutes

https://blog.cloudflare.com/optimizing-core-unit-boot-time/
1•eldridgea•1m ago•0 comments

Welcome to Uruky, AlternativeTo's new official partner

https://alternativeto.net/news/2026/5/welcome-to-uruky-alternativeto-s-new-official-partner-/
1•BrunoBernardino•1m ago•0 comments

Florida AG sues OpenAI, seeks to hold CEO Altman personally liable for harms

https://www.cnbc.com/2026/06/01/florida-ag-open-ai-altman-lawsuit.html
1•onlyrealcuzzo•5m ago•0 comments

Install web apps with the new HTML install element

https://developer.chrome.com/blog/install-element-ot
4•pentagrama•6m ago•1 comments

Security Specialist Warns of Bizav Cyberattack Threats

https://www.ainonline.com/aviation-news/business-aviation/2026-06-01/security-specialist-warns-bi...
1•stoicanalyst•7m ago•0 comments

Animorphs: A Great Series Turns 30

https://compostedbooksreview.substack.com/p/animorphs-the-greatest-achievement
1•rmdmphilosopher•9m ago•0 comments

PithTrain – a compact, agent-native MoE training system

https://blog.mlc.ai/2026/06/01/pithtrain-compact-agent-native-moe-training-system
2•ruihangl•10m ago•0 comments

Making Debian or Fedora persistent live images

https://sigwait.org/~alex/blog/2026/05/28/smdBC8.html
1•henry_flower•10m ago•0 comments

Autopoiesis (from Greek αὐτO- (auto) 'self' and ποίησις (poiesis) 'creation')

https://en.wikipedia.org/wiki/Autopoiesis
1•jackbravo•10m ago•0 comments

Pokémon TCG: 30th Celebration – Available September 16 [video]

https://www.youtube.com/watch?v=05w9UVH6zoQ
1•HelloUsername•11m ago•0 comments

How do computers work? (from scratch, no prior knowledge needed) [12 hours long] [video]

https://www.youtube.com/watch?v=rl0jkP9kOMw
1•Imustaskforhelp•12m ago•0 comments

United 767 diverted mid-Atlantic after teenager named Bluetooth speaker BOMB

https://www.airtraveler.club/news/united-767-diverted-bluetooth-bomb-passengers-stranded/
1•raffael_de•12m ago•0 comments

Show HN: AI Sandbox based on FEP now online – no LLM

https://aic-ai-lab.site/login
1•luzifer333•13m ago•0 comments

WordPress malware campaign hides payloads in Steam profiles

https://www.bleepingcomputer.com/news/security/wordpress-malware-campaign-hides-payloads-in-steam...
1•rndsignals•14m ago•0 comments

Apple M1 Chip Deep-Dive [video]

https://www.youtube.com/watch?v=mHEWMiHgyU8
1•zdw•14m ago•0 comments

Nvidia Introduces First PCs Designed for AI Agents

https://www.wsj.com/tech/ai/nvidia-unveils-ai-laptops-rtx-spark-47445bcd
1•01-_-•15m ago•0 comments

Architect MCP and TUI

1•tonycdr•15m ago•0 comments

Hardening VS Code Extensions

https://patches.joao.town/hardening-vscode-extensions/
1•joaopalmeiro•16m ago•0 comments

Qwen3.7-Plus: Multimodal Agent Intelligence

https://qwen.ai/blog?id=qwen3.7-plus
4•meetpateltech•17m ago•0 comments

Crypto Security Pioneer: 'I Now Consider All of DeFi Unsafe'

https://gizmodo.com/crypto-security-pioneer-i-now-consider-all-of-defi-unsafe-2000764097
5•pseudolus•18m ago•0 comments

What five simple habits can do over 35 years

https://en.wikipedia.org/wiki/Caerphilly_Heart_Disease_Study
1•frans•18m ago•1 comments

AI based Software Testing system that works

https://ytest.ai/
1•mchauhanx•22m ago•0 comments

The Attack on Competence

https://deadsimpletech.com/blog/attack-on-competence
3•lproven•23m ago•0 comments

OpenAI's Altman says AI unlikely to lead to 'jobs apocalypse'

https://www.reuters.com/world/asia-pacific/openais-altman-says-ai-unlikely-lead-jobs-apocalypse-2...
1•cdrnsf•23m ago•1 comments

The Finite Work Fallacy – Off-Square

https://offsquare.substack.com/p/the-finite-work-fallacy
1•fkodom•23m ago•0 comments

Superintelligence: The Idea That Eats Smart People (2016)

https://idlewords.com/talks/superintelligence.htm
9•thoughtpeddler•29m ago•1 comments

I Built a Thing

https://github.com/tylrcc/tapeline
2•tylrr•30m ago•1 comments

Stop AI agents from being weaponized through their own memory (OWASP)

https://www.helpnetsecurity.com/2026/06/01/owasp-agent-memory-guard/
2•vgudur297•31m ago•0 comments

Fourth Grade Product Thinking

https://brentfitzgerald.com/posts/fourth-grade-product-thinking/
3•_doctor_love•31m 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!