frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: MCP Emails – An MCP Server for Gmail and IMAP/SMTP Inboxes

https://github.com/Albretsen/MCPEmails/tree/main/self-host
1•asgeiralbretsen•1m ago•0 comments

Peter Principle

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

Is it time to stop using glue and labels on paper?

https://www.bbc.co.uk/news/articles/c872nj1n4xyo
1•edward•1m ago•0 comments

AI learns language from skewed sources. It could change how humans speak/think

https://www.theguardian.com/commentisfree/2026/apr/14/ai-language-human-speech
1•fzeindl•2m ago•0 comments

Show HN: LLM Tools that I made that I cant live without

1•dleech•3m ago•0 comments

Don't grab any seat on a rocket ship

https://hunterwalk.com/2026/08/02/why-grab-any-seat-on-the-rocketship-is-a-bad-career-strategy-th...
1•andsoitis•4m ago•0 comments

The Debate of Mockist vs. Classicist TDD Is Like OOP vs. FP

https://fagnerbrack.com/the-debate-of-mockist-classicist-tdd-is-like-oop-fp-c9124185f3d2
1•theanonymousone•6m ago•0 comments

Why Gen Z is nostalgic for a world it never knew

https://bigthink.com/mind-behavior/why-gen-z-is-nostalgic-for-a-world-it-never-knew/
2•LordAtlas•10m ago•0 comments

Show HN: NixOS-DGX-Spark – Nix and NixOS on the DGX Spark

https://github.com/graham33/nixos-dgx-spark
5•graham33•11m ago•0 comments

Yahoo Finance rate-limits you harder if you spoof a browser User-Agent

https://github.com/AdityaSBisht/finance-mcp
2•adityabisht2700•13m ago•0 comments

Feedback wanted: Reflex – A low-cost retrieval API for recurring documents

https://aivax.net/blog/reflex-retrieval-built-for-recurring-documents/
1•cypherpotato•13m ago•0 comments

Poles of Inaccessibility in the San Gabriel Mountains

https://notes.secretsauce.net/notes/2015/05/06_poles-of-inaccessibility-in-the-san-gabriel-mounta...
1•dima55•13m ago•0 comments

How fast is C++26's std:hive?

https://lemire.me/blog/2026/08/02/how-fast-is-c26s-stdhive/
1•usdogu•13m ago•0 comments

Pushes to arch AUR are suspendended right now.

https://lists.archlinux.org/archives/list/aur-general@lists.archlinux.org/message/YPJ3FQYJTJXXY3R...
2•EbNar•13m ago•0 comments

Best Office Chairs of 2026– We Tested 70 to Pick Them

https://www.wired.com/gallery/best-office-chairs-button-1/
1•joozio•15m ago•0 comments

Prevent cognitive debt by manually retyping LLM-generated code

https://ankursethi.com/blog/prevent-cognitive-debt-by-manually-retyping-llm-generated-code/
1•philipportner•16m ago•0 comments

Epipe on write might mean you're doing it wrong

https://rachelbythebay.com/w/2026/07/09/pipe/
1•mpweiher•17m ago•0 comments

Understanding VC signals part I

https://www.admnt.com/blog/understanding-vc-signals-part-1
1•kekqqq•17m ago•0 comments

GNU Hurd News 2026-Q2

https://www.gnu.org/software/hurd/news/2026-q2.html
3•plaguna•19m ago•0 comments

The Secret Thrill of Paying to Open Someone Else's Unwanted Package

https://www.bloomberg.com/news/features/2026-07-31/why-amsterdam-s-mystery-parcel-shops-are-sprea...
3•p1anecrazy•19m ago•1 comments

NASA's Curiosity rover finds a field of honeycomb-textured ground on Mars

https://www.nasa.gov/missions/mars-science-laboratory/curiosity-rover/nasas-curiosity-mars-rover-...
4•MarcoDewey•22m ago•1 comments

Put a Tag on It

https://tedium.co/2026/08/01/pricing-guns-vs-barcodes-history/
1•Brajeshwar•22m ago•0 comments

Pepper-spraying drones deploying against school shooters, not everyone approves

https://theweek.com/crime/pepper-spraying-drones-school-shooters
1•mdp2021•24m ago•2 comments

Anyone used Agent Reach yet? any good?

https://github.com/Panniantong/Agent-Reach/blob/main/docs/README_en.md
1•artur_makly•25m ago•0 comments

Linux Desktop Market Share Surpasses 10% in North America

https://linuxiac.com/linux-desktop-market-share-surpasses-10-in-north-america/
3•leephillips•27m ago•0 comments

Show HN: Schmess – chess with no turns; pieces freeze on cooldown after moving

https://schmess.com/
1•navalsaini•29m ago•0 comments

Building Progressively Enhanced Forms Using Htmx

https://www.rafa.ee/articles/progressive-enhanced-forms-htmx/
1•mpweiher•31m ago•0 comments

Political Parties as Drivers of U.S. Polarization: 1927-2018

https://www.journals.uchicago.edu/doi/abs/10.1086/743333
1•paulpauper•32m ago•0 comments

The Rise of Million-Dollar Companies with Just One Employee

https://www.wsj.com/tech/ai/the-rise-of-million-dollar-companies-with-just-one-employee-f36a77c1
5•paulpauper•32m ago•2 comments

Inverting the seminar to recover what scientific papers leave out

https://www.eurekalert.org/news-releases/1138136
1•paulpauper•33m 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•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!