frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Attention deficit hyperactivity disorder shapes sexual experiences

https://www.psypost.org/how-attention-deficit-hyperactivity-disorder-shapes-sexual-experiences/
1•downbad_•17s ago•0 comments

Electricity Doesn't Need a Return Wire [video]

https://www.youtube.com/watch?v=it5UMt0lL8I
1•fussylogic•1m ago•1 comments

Life in the deep Atlantic depends on the Labrador Sea

https://news.cornell.edu/stories/2026/08/life-deep-atlantic-depends-labrador-sea
1•gmays•2m ago•0 comments

"The Fate of the Riemann Hypothesis" by Richard Evan Schwartz [pdf]

https://www.math.brown.edu/reschwar/Stories/AI.pdf
1•bananaflag•9m ago•0 comments

ProofWiki

https://proofwiki.org/wiki/Main_Page
1•Tomte•10m ago•0 comments

Monitoring the distribution of euro coins across borders (2021)

https://www.sciencedirect.com/science/article/pii/S2352340921003656
1•Tomte•10m ago•0 comments

Salesforce CEO says the 'SaaSpocalypse' is nonsense

https://www.cnbc.com/2026/08/26/salesforce-ceo-marc-benioff-saaspocalypse-nonsense.html
1•adletbalzhanov•13m ago•0 comments

Experiments with AI – Structure of Third Party Agentic Apps

https://karankurani.com/writing/post/w_20260722063839_af741a/experiments-with-ai-structure-of-thi...
1•BIackSwan•15m ago•0 comments

Record attempt: Longest train journey in the EU

https://crossborderrail.eu/longestjourney/
1•SiempreViernes•15m ago•0 comments

Looking for few users feedback for my community project

1•Chorum•16m ago•1 comments

Got a bunch of things to do, hate procrastination, any advice is welcome

https://textlog.cc/post/209
2•stagas•16m ago•0 comments

Ask HN: AI for Home Lab Infra?

1•voakbasda•18m ago•0 comments

Candy Toxins

https://exposingfoodtoxins.com/candy/
2•walterbell•18m ago•0 comments

Andrew Tate offered secret 'espionage' classes to exploit the dirty secrets of t

https://san.com/cc/manosphere-influencer-andrew-tate-faces-sexual-misconduct-charges-a-data-leak-...
2•pir8life4me•18m ago•1 comments

Blink

https://github.com/megootronic/Blink
2•megootronic•21m ago•0 comments

Best resources to learn inference engineering?

2•MihirSharma15•22m ago•1 comments

Which of these existed first? Quiz on textlog

https://textlog.cc/post/2895
3•stagas•23m ago•0 comments

Intern Spotlight: 2025 Software Engineering Summer Projects

https://www.hudsonrivertrading.com/hrtbeat/intern-spotlight-2025-software-engineering-summer-proj...
3•judicious•24m ago•0 comments

An Ode to Ben Thompson

https://www.mbi-deepdives.com/an-ode-to-ben-thompson/
2•gmays•24m ago•0 comments

Norway Shrugged

https://paragraph.com/@hagaetc/norway-shrugged
4•vinnyglennon•26m ago•0 comments

Show HN: Hillock: Local neuro-symbolic memory engine in <1.2GB VRAM

https://github.com/roandejager/Hillock
3•roandejager5•26m ago•0 comments

Scalable watermarking for identifying large language model outputs [pdf]

https://www.nature.com/articles/s41586-024-08025-4
2•thunderbong•27m ago•0 comments

Show HN: Skills MCP

3•gengirish•29m ago•1 comments

Resurrecting an old hack to build UI in GitHub READMEs

https://blog.jse.li/posts/markdown/
2•eat_veggies•30m ago•0 comments

Google Maps Now Shows 'Lake America' Instead of Lake Ontario

https://www.wired.com/story/google-maps-now-shows-lake-america-instead-of-lake-ontario/
3•khazhoux•31m ago•1 comments

Running SQLite Apps on Docker and Kubernetes with Litestream

https://openrun.dev/blog/litestream/
5•ajayvk•32m ago•1 comments

Going Founder Mode on Cancer – By Elliot Hershberg

https://centuryofbio.com/p/sid
1•vinnyglennon•33m ago•0 comments

Substantial under-detection of human rabies cases in the United States

https://www.nature.com/articles/s44528-026-00031-4
1•bucket2015•34m ago•0 comments

How to work remotely from France: the 2026 visa guide for digital nomads

https://www.foxapply.com/blog/en/work-remotely-from-france-digital-nomad-visa-guide
2•josanjohnata•34m ago•0 comments

Claude Skill – sourced research on how 5 social apps work

https://github.com/elchrysaki/social-app-teardown
1•elchrysaki•34m 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!