frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

We Are Not Special (2021)

https://www.hillelwayne.com/post/we-are-not-special/
1•birdculture•32s ago•0 comments

Design Is Compromise

https://stephango.com/design-is-compromise
1•ankitg12•2m ago•0 comments

Who's afraid of open source AI?

https://www.youtube.com/watch?v=siy0744Ykys
1•frag•3m ago•0 comments

Tools and Rituals for Reflecting

https://ask.metafilter.com/254216/What-are-your-tools-and-rituals-for-reflecting-on-the-past-year
1•ankitg12•5m ago•0 comments

DROS-VEP – A <1μs C-ABI binary circuit breaker for AI agents

https://github.com/Top-Celestial-Company-Ltd/DROS-VEP-lite
2•dros_jimmy•7m ago•0 comments

Car Plows into Crowd at Berlin Pride Event in Suspected Terror Attack

https://www.nytimes.com/2026/07/25/world/europe/berlin-car-attack.html
3•whack•8m ago•0 comments

What Sam Altman will tell the White House this week

https://www.axios.com/2026/07/26/sam-altman-openai-trump-white-house-visit?mrfcid=202607266a5afa4...
1•flurly•13m ago•0 comments

Iran calls Ukraine's strikes on Iranian vessels 'hostile and criminal'

https://www.cnbc.com/2026/07/26/ukraine-strikes-iranian-vessels-tehran-accuses-kyiv-of-hostile-ac...
3•MilnerRoute•14m ago•0 comments

Why Los Angeles Stopped Repaving Its Streets

https://www.city-journal.org/article/los-angeles-streets-repaving-disability-rules
1•toomanyrichies•14m ago•0 comments

108 PRs in eight days: Accidentally discovering loop engineering

https://brittany-ellich.offprint.app/a/3mrjj34puva23-108-prs-in-eight-days-accidentally-discoveri...
1•overcommitted•14m ago•0 comments

Canada must prepare for bigger wildfires, every summer – forever

https://www.thestar.com/news/canada/our-smoke-filled-future-how-canada-must-prepare-for-bigger-wi...
2•Teever•18m ago•2 comments

AI agents are eating the Web, growing by 8,000% and rewiring business models

https://fortune.com/2026/07/23/dead-internet-theory-bots-agents-majority-web-traffic/
1•CharlesW•22m ago•0 comments

A Love Letter to Object Orientation

https://blog.mempko.com/a-love-letter-to-object-orientation/
1•mempko•24m ago•1 comments

The Question Is the Hard Part

https://seriousmountain.substack.com/p/the-question-is-the-hard-part
1•mc-serious•24m ago•0 comments

Installing Verified Facts into Transformer Weights by Direct Construction

https://zenodo.org/records/21502811
1•yogthos•26m ago•0 comments

Reviewing AI Code Is Not a Viable Argument

https://www.softwaremaxims.com/blog/reviewing-ai-code
2•watermelon0•29m ago•0 comments

China considers tighter export controls on AI models and chips

https://www.reuters.com/world/asia-pacific/china-considers-tighter-export-controls-ai-models-chip...
1•VWWHFSfQ•31m ago•1 comments

Office Deployment Tool for Free

https://office-deployment-tool.pages.dev
3•rrrpro123•34m ago•20 comments

Surge: Blazing fast TUI download manager (outperforms aria2c by ~1.4x)

https://github.com/SurgeDM/Surge
1•maxloh•34m ago•0 comments

An Inside Look at the Token Reseller Market

https://vectoral.com/blog/token-relay-market
3•mlenhard•36m ago•0 comments

SpaceX eyes tower catch for next Starship after auspicious end to 13th flight

https://arstechnica.com/space/2026/07/spacex-eyes-tower-catch-for-next-starship-after-auspicious-...
2•Brajeshwar•39m ago•0 comments

Robotics development made dead simple (open source)

1•Ekami•40m ago•1 comments

Show HN: Minnarone – Multimodal agents that watch, listen, and react live

https://github.com/carlitose/minnarone
1•carlitose•42m ago•0 comments

Ask HN: I spent personal money on game dev. How to turn stalled project around?

2•pixelbyindex•43m ago•0 comments

Skill Router – a local-first router for large agent skill libraries

https://github.com/torakagemusha-sudo/torafirma-skill-router
1•torafirma•43m ago•0 comments

Repairing a "for parts" Canon 7D Mark II

https://boxfish.be/posts/20250403-canon-7d-mark-ii-repair/
2•Tomte•44m ago•0 comments

International Olympiad in AI opens an official medal track for AI systems

https://ioai-official.org/ai-model-track/
2•ardivekar•46m ago•1 comments

New data suggests Scotland's 48% tax rate may be losing money

https://taxpolicy.org.uk/2026/07/25/scotland-48p-top-rate-laffer-curve/
1•ivewonyoung•47m ago•0 comments

How do I get recommended on ChatGPT?

2•ayinlaolajide•47m ago•0 comments

The logic behind C declarations (and the only correct way to declare pointers)

https://moffa.xyz/posts/the-logic-behind-c-declarations.html
3•altermetax•47m 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!