frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Self-hosting. Commercially available LLMs are increasingly hampered by cost

https://p4sc4l.substack.com/p/self-hosting-commercially-available
1•inferhaven•1m ago•0 comments

Ace: Apple Type-C Port Controller Secrets – Part 1 (2020)

https://web.archive.org/web/20211023034503/https://blog.t8012.dev/ace-part-1/
1•gregsadetsky•4m ago•0 comments

Equilibrium Points in Dyson's Toy Cell Model

https://chillphysicsenjoyer.substack.com/p/equilibrium-points-in-dysons-toy
1•crescit_eundo•5m ago•0 comments

Guidance on Lending to Individuals Not Legally Authorized to Work in the U.S.

https://www.occ.gov/news-issuances/news-releases/2026/nr-ia-2026-57.html
2•petethomas•7m ago•0 comments

Three Sacred Cows

https://world.hey.com/dhh/three-sacred-cows-that-must-die-so-europe-can-live-1afb203d
1•fmkamchatka•9m ago•0 comments

New spinning drone hides in plain sight

https://news.northwestern.edu/stories/2026/07/new-spinning-drone-hides-in-plain-sight
2•gnabgib•10m ago•0 comments

I let AI build a trading bot, then Reddit caught my overfitting mistake

https://aiprojectlog.com/overfitting-backtest/
1•vpsmonitor•11m ago•0 comments

XPal Launches Desktop App for Windows, macOS, and Browser

https://xpalapp.substack.com/p/xpal-launches-desktop-application
1•Brandon-Coll•11m ago•1 comments

Kimi K3 is ranked 3rd on artificial analysis, only 2 points behind Sol

https://artificialanalysis.ai
3•couAUIA•11m ago•0 comments

Whoop 4.0 Without a Subscription

https://github.com/OpenStrap/edge
1•guidoiaquinti•12m ago•0 comments

We decided not to limit VPNs: UK government U-turns on age-gating privacy tools

https://www.techradar.com/vpn/vpn-privacy-security/we-decided-not-to-limit-vpns-uk-government-u-t...
2•Cider9986•13m ago•0 comments

As a musician, I prefer illegal downloading over Spotify (2011)

https://derekwebb.tumblr.com/post/13503899950/giving-it-away-how-free-music-makes-more-than
2•teach•14m ago•0 comments

DHS Finalizes Rule Limiting How Long International Students Can Stay in U.S.

https://www.insidehighered.com/news/government/2026/07/16/rule-limiting-international-students-ti...
2•spindie•14m ago•0 comments

Show HN: Makefile tutorial that runs make in the browser

https://sandbox.bio/tutorials/makefile-intro
1•raboukhalil•14m ago•0 comments

Kimi K3 is now #1 in the Front end Code Arena with 1679 pts, surpassing Fable 5

https://twitter.com/arena/status/2077824029126504525
4•nekofneko•14m ago•0 comments

Natural Selection Favors AIs over Humans

https://arxiv.org/abs/2303.16200
3•StrauXX•16m ago•0 comments

Xint Pulse: On-Demand Web App Penetration Tests

https://xint.io/blog/xint-pulse-one-time-web-app-scans
1•alp1n3•19m ago•0 comments

Show HN: Puffgres logically replicates Postgres entities in turbopuffer

https://github.com/a24films/puffgres
1•lucasgelfond•20m ago•0 comments

Harbor – Evernote but Not Crooked

https://harbor.my
2•cloudmanic•22m ago•0 comments

Scientists discovered the brain doesn't make decisions the way we thought

https://hmntl.illinois.edu/news/illinois-grainger-findings-challenge-traditional-neuroscience
3•dogscatstrees•23m ago•1 comments

Using AI for Good Episode 1: SpiralOS Concept

1•rmcdermott•23m ago•0 comments

New buy-to-own Kiwi music platform Lume hopes to cash in on subscription fatigue

https://www.rnz.co.nz/news/business/728543/new-buy-to-own-kiwi-music-platform-lume-hopes-to-cash-...
3•billybuckwheat•24m ago•0 comments

Paper Ballot GPL'd software suite

https://github.com/mjtrac/pbss
1•mjtrac•24m ago•1 comments

Fixed Deep research and web fetch in Claude Code : full open source

https://github.com/kunal12203/webify-mcp
1•kunal122•27m ago•0 comments

Claude Caught with It's Hand in the Cookie Jar, Again

https://old.reddit.com/r/ClaudeAI/comments/1uy7hnq/you_know_ai_has_been_extensively_trained_on/
4•johnnyApplePRNG•27m ago•0 comments

Floating in Lithium

https://archis.org/volume/floating-in-lithium/
1•Vigier•28m ago•0 comments

Tesla driver who blamed crash on autopilot pressed accelerator 100%, NTSB finds

https://arstechnica.com/tech-policy/2026/07/tesla-driver-who-blamed-crash-on-autopilot-pressed-ac...
4•sbulaev•28m ago•0 comments

Sauna Jungle

https://www.saunajungle.com/
1•hubears•28m ago•0 comments

Google Gemini launch delayed as tech falls short of internal goals

https://www.reuters.com/business/google-gemini-launch-delayed-tech-falls-short-internal-goals-blo...
1•wslh•28m ago•0 comments

how we monitor our rl training runs

https://castform.com/blog/monitoring-rl-runs/
1•kumama•28m 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!