frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Overview of Code Virtualization

https://tmpout.sh/5/12.html
1•vismit2000•3m ago•0 comments

Elon Musk Unmasked in Alex Gibney Documentary

https://www.hollywoodreporter.com/movies/movie-features/elon-musk-alex-gibney-documentary-1236686...
4•archagon•9m ago•0 comments

Therapeutic Food (Child Malnutrition)

https://en.wikipedia.org/wiki/Therapeutic_food
1•RetroTechie•10m ago•0 comments

Interactive Tree of Life

https://ptree.org/
4•Lucent•13m ago•1 comments

The Most Famous "Odyssey" Translation Is Inaccurate

https://substack.magazinenongrata.com/p/the-most-popular-odyssey-translation
1•georgex7•16m ago•0 comments

Green Card wait for most Indian immigrants is now 179 years

https://nypost.com/2026/09/03/us-news/green-card-wait-for-most-indian-immigrants-is-now-179-years...
3•pseudolus•16m ago•0 comments

Ask HN: Code review of AI output, review what?

3•s3arch•17m ago•1 comments

2FAS – Authenticator and Password Manager

https://2fas.com/
1•thunderbong•19m ago•0 comments

Jensen Huang Became AI'S Taylor Swift

https://www.economist.com/interactive/1843/2026/09/03/how-jensen-huang-became-ais-taylor-swift
1•andsoitis•19m ago•0 comments

NVIDIA is driving the AI boom. Good

https://www.economist.com/leaders/2026/09/03/nvidia-is-driving-the-ai-boom-good
3•andsoitis•21m ago•0 comments

Adobe names insider Chakravarthy CEO, Narayen transitions to executive chair

https://www.reuters.com/business/adobe-names-anil-chakravarthy-ceo-2026-09-03/
1•pfrrp•24m ago•0 comments

Tesla is asking people if they want to buy and run Cybercab fleets

https://techcrunch.com/2026/09/03/tesla-is-asking-people-if-they-want-to-buy-and-run-cybercab-fle...
2•evo_9•24m ago•0 comments

Botpool Create – Build websites and apps by chatting with AI

https://www.botpool.ai/create
1•leuften•35m ago•1 comments

SimpleUI for KOReader

https://github.com/doctorhetfield-cmd/simpleui.koplugin
1•juiceland•40m ago•0 comments

Release 13.2.1 · Grafana/Grafana

https://github.com/grafana/grafana/releases/tag/v13.2.1
1•kyisaiah47•43m ago•0 comments

PayPal plans to lay off workers at its South Bay headquarters

https://www.sfchronicle.com/tech/article/paypal-san-jose-layoffs-tech-jobs-22416617.php
3•littlexsparkee•48m ago•0 comments

Ask HN: What is the ideal email domain setup?

2•bix6•49m ago•1 comments

Your website analytics deserves Love

https://anacraft.dev/#mcp
1•mehfuzh•52m ago•1 comments

Not Cool

https://placesjournal.org/article/not-cool-paris-heatwave-climate-sustainability/
2•littlexsparkee•59m ago•0 comments

Pangram Has Emerged as the Gold Standard of AI Detection. Should You Trust It?

https://www.wired.com/story/pangram-has-emerged-as-the-gold-standard-of-ai-detection/
3•bko•1h ago•1 comments

Mammut vs. Arc'terx – Brand Comparisons

https://www.lydiascapes.com/mammut-vs-arcteryx-brand-comparison/
1•Cider9986•1h ago•0 comments

Simple Is Not Small

https://jyn.dev/simple-is-not-the-same-as-small/
1•zdw•1h ago•0 comments

Navigating Code Reviews as a Code Author [video]

https://www.youtube.com/watch?v=zygtgvHp_MM
1•BiraIgnacio•1h ago•0 comments

Stop obsessing about the goddamn robot

https://despairlabs.com/blog/posts/2026-09-03-stop-obsessing-about-the-robot/
3•zdw•1h ago•0 comments

Tell HN: The Thoughts and Woes of a Full-Time Founder Part 1

3•lcampbellsoup•1h ago•0 comments

Ant Group open-sources LingBot-Vision for dense spatial perception

https://github.com/Robbyant/lingbot-vision
1•fourfire•1h ago•0 comments

Balance of Power Geopolitics in the Nuclear Age (1985)

https://archive.org/details/msdos_Balance_of_Power_1985
1•Levitating•1h ago•0 comments

The Death of Educational Content on YouTube [video]

https://www.youtube.com/watch?v=-Gnrp_caPvo
5•jahnu•1h ago•0 comments

Microsoft to impose time limits on Xbox cloud gaming subscribers

https://www.cnbc.com/2026/09/03/microsoft-xbox-game-pass-cloud-limits.html
2•bluedino•1h ago•0 comments

Hugging Face is too important to fall into Nvidia's hands

https://www.theregister.com/ai-and-ml/2026/09/03/hugging-face-is-too-important-to-fall-into-nvidi...
6•mdp2021•1h ago•3 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!