frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

The Art of the Bromakase

https://yellowbellytv.substack.com/p/the-art-of-the-bromakase
1•zdc1•3m ago•0 comments

Show HN: Prompting Tool to Help Increase Output Results on First Prompt

https://www.promptme.host/
1•markquis91•11m ago•1 comments

Use the right model for every task – (you can't)

https://blog.grod.es/use-the-right-model-for-every-task
2•grodes•22m ago•0 comments

Benchmarking the Residual: What Long-Horizon Evals Add Beyond Short-Task Perf

https://arxiv.org/abs/2607.27283
1•matt_d•22m ago•0 comments

Why Is Everyone in Tech So Sad?

https://www.noemamag.com/why-is-everyone-in-tech-so-sad/
1•pauljonas•26m ago•2 comments

Constructor Theory – David Deutsch(2012)

https://arxiv.org/abs/1210.7439
2•nill0•28m ago•0 comments

Pivotal role of reinforcement learning in modern large language models

https://news.harvard.edu/gazette/story/newsplus/pivotal-role-of-reinforcement-learning-in-modern-...
1•newsomix9xl•30m ago•0 comments

Framing

https://en.wikipedia.org/wiki/Framing_(social_sciences)
1•soupspaces•30m ago•0 comments

Meta ordered to pay $567M in New Mexico for teen mental health fund

https://www.reuters.com/world/new-mexico-court-orders-meta-pay-567-mln-teen-mental-health-fund-20...
1•JumpCrisscross•31m ago•0 comments

Executable Emoji

https://martypc.blogspot.com/2026/08/executable-emoji.html
2•MBCook•31m ago•0 comments

pfSense 2.9.0 – New Features and Changes

https://docs.netgate.com/pfsense/en/latest/releases/2-9-0.html
1•mistyvales•32m ago•0 comments

"The Persian MâR-Nâmeh Or, the Book for Taking Omens from Snakes" (1892)

https://publicdomainreview.org/collection/marnameh/
1•Thevet•36m ago•0 comments

AI Agent Attempted to Social Engineer Open Source Maintainer to Merge Malware

https://socket.dev/blog/ai-agent-open-source-malware
3•bhavansig•37m ago•0 comments

Palmer Luckey donated $6M to GOP and bundled more while reaping billions

https://www.theguardian.com/us-news/2026/aug/06/exclusive-palmer-luckey-political-fundraising
1•SLHamlet•37m ago•0 comments

The Underground Economy Behind Children's Smartwatches in China

https://www.sixthtone.com/news/1017854
2•thenthenthen•39m ago•0 comments

High-Quality Free Transparent PNG Images

https://pngdex.com/
2•kanlabs•44m ago•0 comments

User awareness in frontier models: Who's asking shifts what models say

https://transluce.org/user-awareness#how-robust-are-these-effects
1•nlpnerd•48m ago•0 comments

Pair Team (YC S19) Hit with Class Action Alleging Unpaid Wages

https://runtimewire.com/article/exclusive-pair-team-hit-with-class-action-alleging-unpaid-wages-a...
2•ryanmerket•54m ago•0 comments

How to fine-tune open weights models

https://fastino.ai/blog/how-to-fine-tune-open-weights-models-model-selection-data-curation-fine-t...
1•eigenBasis•54m ago•0 comments

Mt Cleese

https://www.atlasobscura.com/places/mt-cleese
1•beatthatflight•58m ago•0 comments

OpenEdit – Claude Code can now edit videos (Open Source)

https://github.com/veedstudio/open-edit
1•byamja•1h ago•0 comments

Kalshi and Polymarket have begun taking bets on Phase III drug trials

https://www.science.org/content/blog-post/put-your-money-down-they-say
2•400thecat•1h ago•1 comments

NASA Engineers Help Prolong Voyager 2's Science Mission

https://science.nasa.gov/blogs/voyager/2026/08/04/nasa-engineers-help-prolong-voyager-2s-science-...
2•Tomte•1h ago•0 comments

Show HN: Sidebar – a private ESP32 intercom for five kids, no accounts

https://www.sundaradnus.ca/writing/sidebar-building-a-ham-radio-for-my-son
3•nonstopnonsense•1h ago•0 comments

A Short Lesson in Perspective (2012)

https://lindsredding.com/2012/03/11/a-overdue-lesson-in-perspective/
1•colinprince•1h ago•0 comments

Lines of code. 1,596 BTC gone

https://onekey.so/anzen/coldcard-entropy-failure/
6•Archie627•1h ago•14 comments

C64 Demo Effects Explained: Rodents in the Attic [video]

https://www.youtube.com/watch?v=uZ1atMUOUMU
2•guiambros•1h ago•0 comments

Bingebuster Video – your streaming services, restocked as a video store

https://bingebuster.net/
1•Slow_Hand•1h ago•0 comments

Organ donation group trying to take living man's organs faces shutdown

https://arstechnica.com/health/2026/08/us-to-shutter-organ-donation-group-accused-of-trying-to-ta...
4•Tomte•1h ago•4 comments

Looking for something to do while GitHub is down?

https://pelican.clutch.engineering/cheatsheets/self-hosted-gitlab/
1•featherless•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!