frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Coding without AI: a revolutionary new way to work

https://isaaclyman.com/blog/posts/code-review/
1•encyclopedism•2m ago•0 comments

XMM-Newton helps revise distance to outer spiral arms

https://www.esa.int/Science_Exploration/Space_Science/XMM-Newton/XMM-Newton_helps_revise_distance...
1•layer8•2m ago•0 comments

Show HN: Solitaire.free

https://solitaire.free/
1•nadermx•4m ago•0 comments

After $18B IPO, Bending Spoons founder says success comes from minimizing luck

https://techcrunch.com/2026/07/01/after-18b-ipo-bending-spoons-founder-says-success-comes-from-mi...
1•andsoitis•5m ago•0 comments

Bending Spoons Reviving AOL, Vimeo and Other Internet Oldies Amid the A.I. Boom

https://www.nytimes.com/2026/06/30/technology/bending-spoons-ipo-aol-vimeo-eventbrite.html
1•andsoitis•6m ago•0 comments

The Trans-America Trail Guide

https://transamtrail.com/plan/
2•e-dant•11m ago•0 comments

Odin, Wikipedia and Engagement Farming

https://katamari64.se/posts/2026/odin-wikipedia/
3•stock_toaster•12m ago•0 comments

Security guard, 72, behind design of Nike's new Shinjuku store

https://www.asahi.com/ajw/articles/16534412
4•networked•14m ago•0 comments

Curating the Crowd: How Firms Manage Social Fit to Stage Social Atmospheres

https://journals.sagepub.com/doi/10.1177/00222429251328277
2•debo_•16m ago•0 comments

Scientists can now study the event horizons of black holes

https://www.economist.com/science-and-technology/2026/07/01/scientists-can-now-study-the-event-ho...
2•andsoitis•17m ago•0 comments

Made with Love in TouchDesigner V99

https://derivative.ca/community-post/made-love-touchdesigner-v99-cusersdeadmau5/60967
2•pulkitsh1234•18m ago•0 comments

Polyarc Draw

https://hlnet.neocities.org/polyarc-draw/
3•memalign•18m ago•0 comments

Show HN: Pixel a Go-Go – GameBoy Camera and retro screenshot upscaling for iOS

https://pixel.cameron.software/
2•CameronBanga•20m ago•0 comments

Ferrari 12Cilindri Manuale

https://www.ferrari.com/en-EN/auto/ferrari-12cilindri-manuale
2•Kaibeezy•22m ago•0 comments

The UK's Latest "Debanking" Scandal Should Give Everyone Pause

https://www.nakedcapitalism.com/2026/07/the-uks-latest-debanking-scandal-should-give-everyone-pau...
3•iamnothere•22m ago•0 comments

The Most Overrated American Who Ever Lived [audio]

https://www.theringer.com/podcasts/plain-english-with-derek-thompson/2026/07/03/megapod-the-most-...
2•mooreds•23m ago•0 comments

Harm Bot · Streamlit

https://harm-youtube.streamlit.app
2•cocoglare•26m ago•0 comments

How Amazon SQS fair queues work

https://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/sqs-fair-queues-detail...
2•mooreds•26m ago•0 comments

Show HN: I'm trying to map all vacation rentals you can book direct

https://staythere.ai/
2•wthayer•28m ago•0 comments

Overshadow-JS, suncalc tells you sun angles, this tells you shadows

https://github.com/Botfather90/overshadow
2•Brandon99pt•32m ago•0 comments

Yes, Robot. Yes, Boss?

https://cutlefish.substack.com/p/tbm-428-yes-robot-yes-boss
2•mooreds•38m ago•0 comments

Apple 'Hide My Email' Vulnerability Reveals Peoples' Real Email Addresses

https://www.404media.co/apple-hide-my-email-vulnerability-reveals-peoples-real-email-addresses/
9•tjwds•39m ago•1 comments

The circuit that lets your brain think and see

https://www.engineering.columbia.edu/about/news/circuit-lets-your-brain-think-and-see
7•hhs•40m ago•0 comments

US Government says it got hacked – again

https://techcrunch.com/2026/07/02/us-government-says-it-got-hacked-again/
7•jack1689•45m ago•0 comments

The Gap Map v0.1

https://www.currentai.org/blogs/introducing-the-gap-map-v0-1#article
2•droidjj•45m ago•0 comments

Ants: Who looks after the injured in a colony?

https://www.uni-wuerzburg.de/en/news-and-events/news/detail/news/ameisen-kolonie-verletzte-pflegt/
4•hhs•50m ago•1 comments

Amsterdam invented the fire department

https://worksinprogress.co/issue/how-amsterdam-invented-the-fire-department/
16•zdw•50m ago•3 comments

GitHub offering CD-ROMs of your code for a few days

https://www.pcgamer.com/hardware/your-code-is-physically-yours-forever-until-you-lose-it-lets-be-...
2•evo_9•50m ago•1 comments

Shopify SEO Experts Can Boost Your Online Store Rankings

https://www.techwrath.com/shopify-seo-experts-boost-online-store-rankings/
2•techwrath11•54m ago•1 comments

Giant trees have no trouble pumping water to top branches

https://news.exeter.ac.uk/faculty-of-environment-science-and-economy/giant-trees-have-no-trouble-...
18•hhs•56m ago•7 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!