frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Dialing Up the Internet Phonebook

https://pketh.org/internet-phonebook.html
1•surprisetalk•2m ago•0 comments

Obsidian Note Codes

https://ezhik.jp/obsidian/note-codes/
1•surprisetalk•2m ago•0 comments

Show HN: OutfitsGen – Free AI tool that creates outfit ideas from short prompts

https://www.outfitsgen.com
1•abdemoghit•2m ago•0 comments

Why Is Canada's Population So Concentrated?

https://unchartedterritories.tomaspueyo.com/p/why-is-canadas-population-so-concentrated
1•surprisetalk•2m ago•0 comments

What's Happening to Wholesale Electricity Prices?

https://www.construction-physics.com/p/whats-happening-to-wholesale-electricity
1•chmaynard•4m ago•0 comments

Nvidia to Invest $5B in Intel as Part of AI and PC Products Collaboration

https://www.wsj.com/tech/ai/nvidia-intel-5-billion-investment-ad940533
2•stikit•4m ago•1 comments

OpenAPI as a Single Source of Truth

https://blog.dochia.dev/blog/openapi-single-source/
1•ludovicianul•4m ago•0 comments

KDE is now my favorite desktop

https://kokada.dev/blog/kde-is-now-my-favorite-desktop/
2•todsacerdoti•7m ago•0 comments

Show HN: Hound – Relation-First Knowledge Graphs for Complex-System Reasoning

https://zenodo.org/records/17129271
1•berndtzl•7m ago•0 comments

AI Has Moved from a Niche Sector to the Primary Driver of All VC Investment

https://www.apolloacademy.com/ai-has-moved-from-a-niche-sector-to-the-primary-driver-of-all-vc-in...
2•helsinkiandrew•9m ago•0 comments

Fun with TypeScript

1•goloroden•11m ago•0 comments

My Chinese Learning Journey

https://jaapgrolleman.com/chinese-learning-journey/
1•navigate8310•12m ago•0 comments

Looking good by doing good: CEO attractiveness and corporate philanthropy

https://www.sciencedirect.com/science/article/abs/pii/S1043951X22001250
1•xnhbx•13m ago•0 comments

Bring us your LLMs: why peer review is good for AI models

https://www.nature.com/articles/d41586-025-02979-9
1•xnhbx•14m ago•0 comments

Visual Image Reconstruction from Brain Activity via Latent Representation

https://www.annualreviews.org/content/journals/10.1146/annurev-vision-110423-023616
1•DanielleMolloy•14m ago•0 comments

Verify Humans. Identify Bots

https://www.kazimi.io
1•doener•14m ago•0 comments

Jack Dorsey Is Jesus Christ Returned

https://indignified.substack.com/p/jack-dorsey-is-jesus-christ-returned
4•ZguideZ•15m ago•1 comments

Shein Opens Its Supply Network to Fashion Brands to Boost Growth

https://www.bloomberg.com/news/articles/2025-09-18/shein-opens-its-supply-network-to-fashion-bran...
1•thm•16m ago•0 comments

Evolutionary Test-Time Compute: trade time and token for creativity

https://alexdong.com/llm-evolutionary-test-time-compute.html
1•alexdong•18m ago•0 comments

John Lennon's school desk goes on display after attic discovery

https://www.rte.ie/entertainment/2025/0918/1534126-john-lennons-school-desk-found-in-attic/
1•austinallegro•18m ago•0 comments

Show HN: I made it easy to find and contact Streamers who would play your game

https://www.getstreamers.info
1•csmets•21m ago•0 comments

MCP Evals

https://huggingface.co/blog/mclenhard/mcp-evals
1•subomi•22m ago•0 comments

You Had No Taste Before AI

https://matthewsanabria.dev/posts/you-had-no-taste-before-ai/
12•codeclimber•24m ago•0 comments

Show HN: Decentralized cloud on your phone – private, simple, no blockchain

https://cyphora.tech/
1•gsahu•25m ago•0 comments

Nvidia to Buy $5B Stake in Intel

https://www.nytimes.com/2025/09/18/business/nvidia-intel-stake.html
5•_tk_•37m ago•1 comments

Window for Combating AI Propaganda Is Closing

https://foreignpolicy.com/2025/09/18/ai-propaganda-information-warfare-systems/
2•lknik•37m ago•0 comments

Show HN: Remote Shell – extreme-vibe coding from your phone

https://remote-shell.bringes.io
3•iosifnicolae2•38m ago•0 comments

Track Aipac (American Israel Public Affairs Committee) Donations

https://www.trackaipac.com
7•iamarco•39m ago•0 comments

Show HN: ContentRepurpose.pro – Paste once to get LinkedIn/X/Email/IG drafts

https://contentrepurpose.pro/
1•wcagscans•40m ago•1 comments

I uncovered an ACPI bug in my Dell Inspiron 5567. It was plaguing me for 8 years

https://triangulatedexistence.mataroa.blog/blog/i-uncovered-an-acpi-bug-in-my-dell-inspiron-5667-...
4•thunderbong•41m 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•4mo ago

Comments

semihs•4mo 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_•4mo 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•4mo 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_•4mo ago
That sounds great!