frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

What we're learning about AI memory (and why most of it doesn't work yet)

https://www.reddit.com/r/staynimble/s/XKEYgCpwln
1•theaniketmaurya•41s ago•0 comments

Sherlock – AI Face Search

https://play.google.com/store/apps/details?id=com.popyakter.sherlock&hl=en
1•pranto12345•1m ago•0 comments

The Odyssey running on a Psion 5mx – as Nolan intended

https://www.reddit.com/r/OldHandhelds/s/AmzMAZTzg7
1•dterm•1m ago•0 comments

Mojo in Mid-2026: From Python-Inspired Experiment to Production Systems Language

https://www.reddit.com/r/AgentContext_dev/comments/1vn5xef/mojo_in_mid2026_from_pythoninspired_ex...
1•javaeeeee•6m ago•0 comments

Operational Guidelines for DNS Transport in Mixed IPv4/IPv6 Environments

https://datatracker.ietf.org/doc/rfc10001/
1•m_montazeri•9m ago•0 comments

FoodGuessr

https://www.foodguessr.com
1•choult•11m ago•0 comments

Potatoes 'boil' in the ground as record heatwave sweeps across swathes of Asia

https://www.theguardian.com/world/2026/aug/13/asia-heatwave-south-korea-potatoes-boil-ground-reco...
3•akbarnama•13m ago•0 comments

Cyberattack on Taiwan Exposes the Execution-Finality Gap

https://zenodo.org/records/21915825
1•sangamdas1982•15m ago•0 comments

NightmareEclipse Publishes New Windows Defender Zero Day

https://cyberplace.social/@GossiTheDog/117082623896479140
1•_tk_•17m ago•0 comments

Romania to shut down nuclear plant due to low Danube level

https://www.lemonde.fr/en/international/article/2026/08/13/romania-to-shut-down-nuclear-plant-due...
2•geox•20m ago•0 comments

Lawsuit fights Ellison-Trump corruption's harm to news outlets

https://freedom.press/issues/lawsuit-fights-ellison-trump-corruptions-harm-to-news-outlets/
3•abdelhousni•23m ago•0 comments

AI 2027 Tracker: Tracking predictions from the AI 2027 scenario against reality

https://ai2027-tracker.com/
2•merksittich•26m ago•0 comments

Gnome Shell Design Dreams

https://blogs.gnome.org/shell-dev/2026/08/11/gnome-shell-design-dreams/
1•birdculture•27m ago•0 comments

Terminate-and-Stay-Resident Program

https://en.wikipedia.org/wiki/Terminate-and-stay-resident_program
2•Bluestein•30m ago•0 comments

Rate of climate change affects stability of the AMOC

https://www.eurekalert.org/news-releases/1139863
1•TechTechTech•33m ago•0 comments

List of Unsolved Problems in Mathematics

https://en.wikipedia.org/wiki/List_of_unsolved_problems_in_mathematics
2•frozenseven•35m ago•0 comments

Affordable AI+human insight helped us close 40yr sporadic group Galois problem

https://www.shaowuzhang.com/files/how-we-found-m23.pdf
3•oliculipolicula•36m ago•0 comments

Show HN: Wala Vibes – scene-based radio for nostalgic Indian music

https://walavibes.wtf
1•yunweiguo•39m ago•0 comments

If I own Claude's outputs why can't I train my own model on them?

https://support.claude.com/en/articles/12326764-can-i-use-my-outputs-to-train-an-ai-model
25•DarenWatson•39m ago•7 comments

After a lot of thought, we've decided to retire SvelteJobs

https://sveltejobs.com/
2•thunderbong•47m ago•0 comments

Apple TV just added a bunch of classic movies to stream for free

https://9to5mac.com/2026/08/12/apple-tv-just-added-a-bunch-of-classic-movies-to-stream-for-free/
3•tosh•51m ago•0 comments

Spicy tale of an App Store fraud

https://lapcatsoftware.com/articles/2026/8/4.html
3•latexr•53m ago•0 comments

GitSkills: A Dataset of Agent Skills on GitHub

https://arxiv.org/abs/2608.10906
3•miningthemall•54m ago•0 comments

Win-V combo from Windows on Ubuntu

https://leo98ml.github.io/win-v/
1•havaianaslife•55m ago•0 comments

IOI 2026 Final Ranking

https://ranking.ioi2026.uz/
1•pykello•56m ago•0 comments

One VC burns through tokens a day to find the next unicorn

https://restofworld.org/2026/activate-interview-vc-sovereign-ai/
2•nanfinitum•59m ago•0 comments

Twitch now uses your channel to train generative AI by default

https://twitter.com/zachbussey/status/2087573860929478785
4•haunter•59m ago•0 comments

Drone Sightings Happening at Diego Garcia, US's Remote Strategic Island Outpost

https://www.twz.com/news-features/drone-sightings-are-happening-at-diego-garcia-americas-remote-s...
2•rbanffy•1h ago•0 comments

Program = Proof [pdf]

https://www.lix.polytechnique.fr/Labo/Samuel.Mimram/teaching/pp/course.pdf
1•leonidasrup•1h ago•0 comments

DeepSWE August 13 Update with Grok 5.6 and DeepSeek v4 Pro 0813

https://deepswe.datacurve.ai/
1•theanonymousone•1h 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!