frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Legal AI Harvey's margins went from and50% to -50% in 6 months on frontier costs

https://finance.yahoo.com/technology/ai/articles/openai-anthropic-costs-push-more-160523322.html
1•joennlae•42s ago•1 comments

Show HN: IGViewer – Browse public Instagram profiles and stories anonymously

https://www.igrecent.com
1•sx2026•51s ago•0 comments

Real-Time AI Simplification (A2, B1, B2) of BBC World News Live

https://voicefrom.ai/restate/
1•BrandiATMuhkuh•2m ago•0 comments

My First Language Front End with MLIR

https://whereisalan.dev/blog/kaleidoscope-mlir-tutorial/
1•alankarmisra•2m ago•0 comments

Dutch governments builds alternative for Microsoft based on NixOS

https://www.dawo.community/en/
1•fjfaase•2m ago•0 comments

You Cry [video]

https://www.youtube.com/watch?v=rLvUztp7Iog
1•mrroryflint•5m ago•0 comments

Your Language Model Is Already a Decision Model

https://github.com/ntlm1686/Your-language-model-is-already-a-decision-model/tree/master
1•ntlm1686•6m ago•0 comments

Dating a takeoff photo to the second using runway markings as a ruler

https://blog.spuria.app/writeups/angle-of-ascent-billund-klm-takeoff/
1•lost_•13m ago•0 comments

Show HN: Can an AI agent bypass a post-quantum signed authorization policy?

https://github.com/max-russo-com/MAX_AUTHORIZATION_SANDBOX
1•max-russo•14m ago•0 comments

Coming to terms with the end of the Falcon 9

https://www.thespacereview.com/article/5319/1
1•ssernikk•15m ago•0 comments

OpenAI prepares new $500/month Pro Max plan for ChatGPT

https://www.testingcatalog.com/openai-prepares-new-500-month-pro-max-plan-for-chatgpt/
3•yzydserd•17m ago•0 comments

Show HN: Foveon Lab – Compare Sigma Photo Pro Presets on Foveon X3F Files

https://github.com/biopoetic/foveon-lab
1•netless•20m ago•0 comments

Ask HN: Migrating personal email domain from Gmail to iCloud?

1•osener•21m ago•0 comments

Deep Fission ($FISN): A Money Pit

https://iceberg-research.com/2026/09/24/deep-fission-fisn-a-money-pit/
1•ViewTrick1002•22m ago•0 comments

Show HN: Tasket++ Simulate your Windows actions automatically-free and OS

https://apps.microsoft.com/detail/xp9cjlhwvxs49p?hl=en-US&gl=US
1•AmirHammoutene•23m ago•0 comments

Tesla 'FSD' sped in 55% of Brussels 30 km/h zones ahead of EU vote

https://electrek.co/2026/09/24/tesla-fsd-belgium-test-speeding-30-kmh-eu-vote/
3•BaudouinVH•28m ago•0 comments

Driver Misconduct in Last-Mile Delivery

https://arxiv.org/abs/2609.29080
1•50kIters•30m ago•0 comments

Quiet-guardrails: Claude Code manual mode, minus the nagging

https://github.com/SeanMcMillan/quiet-guardrails
1•northbridgedev•34m ago•0 comments

YC rejected it, so we're open-sourcing it

https://github.com/orangewood-co/inboundr
3•tushgaurav•35m ago•3 comments

The Subtle Art of Normalising Dystopia [video]

https://www.youtube.com/watch?v=aLPrNSFLb2U
2•dvrp•35m ago•0 comments

Amiga Screens: A Primer

https://www.datagubbe.se/amscr/
4•msephton•38m ago•0 comments

Implicit Neural Representations with Periodic Activation Functions (2020)

https://arxiv.org/abs/2006.09661
2•peter_d_sherman•39m ago•1 comments

F1 Start Timer

https://f1-start.jakearchibald.com/
1•tosh•39m ago•0 comments

Pentium II at 600Mhz with Voodoo 3 Emulated on 86Box with M6 Mac Mini

https://nyaa.sh/reviews/mac-mini-m6-emulation
2•hugh4life•41m ago•0 comments

Show HN: Entail – what your model files declare vs. what the engine runs

https://github.com/wwoosshh/Entail
1•wwoosshh•42m ago•0 comments

Pico_exporter: System metrics exporter that runs in about 120 kiB of memory

https://github.com/dpaneda/pico_exporter
1•elenathor•42m ago•1 comments

Show HN: TiddlyInstall – A single HTML file that makes cross-platform installers

https://robertsdotpm.github.io/_static/tiddlyinstall.html
1•Uptrenda•44m ago•0 comments

What is LLM-as-a-Judge, and How It Works?

https://infere.com/blog/what-is-llm-as-a-judge/
1•saturn5k•49m ago•0 comments

Breaking Up with Google Play: Why Conversations Is Now Free

https://gultsch.de/posts/breaking-up-with-google-play/
3•h0ek•52m ago•0 comments

On The Role of Theory in Biology

https://www.asimov.press/p/theory-biology
2•signa11•59m 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!