frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

1•NoodlesOfWrath•3s ago

Over 36,000 exposed Plex servers vulnerable to recent flaws

https://www.bleepingcomputer.com/news/security/over-36-000-plex-servers-unpatched-against-recentl...
1•DemiGuru•16s ago•0 comments

Dive into FrontierHarness Eval: Claude Code cost 5.6× for the same pass rate

https://runta.com/blog/introducing-frontierharness-eval/
2•ADD-SP•40s ago•0 comments

Amazon is now using generative AI to dub Prime Video with matching lip movements

https://www.neowin.net/news/amazon-prime-video-is-getting-ai-powered-dubbing-that-syncs-actors-lips/
1•bundie•1m ago•0 comments

I Am an Anthropic Guy. GPT-6 Astra Made Me Resubscribe to Codex

https://thoughts.jock.pl/p/gpt-6-astra-vs-claude-fable-5-1-agent-notes-2026
2•joozio•3m ago•0 comments

Understanding the Recent DDoS Attack Against Read the Docs

https://about.readthedocs.com/blog/2026/09/2026-ddos-attack/
2•davidfischer•4m ago•0 comments

AI could kill all humans in next decade, warn experts

https://www.theguardian.com/technology/2026/sep/09/ai-superintelligence-risks-warnings-scientists...
2•lf88•6m ago•0 comments

GNU Radio in the Browser

https://gnuradioworld.com/
2•kristianpaul•7m ago•0 comments

How long has it been since you last wrote code

https://meelangofficial.substack.com/p/how-long-has-it-been-since-you-last
3•BrucecarlL•7m ago•1 comments

Simple Answers (Xkcd)

https://xkcd.com/1289/
2•piinbinary•8m ago•0 comments

A Guide to Link Building for SaaS Companies

https://seenearme.com/blog/a-guide-to-link-building-for-saas-companies
2•Rollmodl•8m ago•0 comments

Couples with children with ADHD at risk of higher divorce rates

https://www.buffalo.edu/news/releases/2008/10/9713.html
2•andrewstetsenko•8m ago•1 comments

Adaptive Agentic Worms Are Here

https://www.lesswrong.com/posts/fpLDjKg3ej49beqTC/adaptive-agentic-worms-are-here
2•speckx•8m ago•0 comments

Cerun 0.3.0

https://cerun-lang.org/blog/release-0.3.0
2•zxdevcore•9m ago•0 comments

Show HN: Bounty Index ,compare public bug bounty programs across 6 platforms

https://www.bountyindex.in
2•axolotl619•10m ago•0 comments

Show HN: Intro-level book about quantum computing theory/hardware/applications

https://quantumcomputingfortheconfused.com/
2•msolomentsev•10m ago•0 comments

Middle aged are 'squeezed from every angle', some cannot even picture retirement

https://www.thisismoney.co.uk/money/pensions/article-16113791/Middle-aged-squeezed-retirement.html
3•robtherobber•10m ago•0 comments

Compiler-optimized Unicode in Codon 0.20

https://www.exaloop.io/blog/codon-unicode
2•arshajii•12m ago•0 comments

IFA 2026: Circular Ring 3, Moto Watch Ultra, iKairos and two more wearables

https://forgeeks.net/ifa-2026-wearables-circular-moto-ikairos/
2•kuuuzya•12m ago•0 comments

No Man's Sky Cosmos

https://www.nomanssky.com/cosmos-update/
7•Limb•12m ago•2 comments

Custom Scrollbar Component in 2026

https://blog.master.dev/custom-scrollbar-component-in-2026/
2•ibobev•14m ago•0 comments

Robotics with Conan: consuming ROS as a regular package

https://blog.conan.io/cpp/conan/ros/ros2/robotics/2026/09/08/Robotics-with-Conan-consuming-ROS.html
2•ibobev•14m ago•0 comments

Better AI code comment detector

https://entropicthoughts.com/better-ai-comment-classifier
4•ibobev•14m ago•0 comments

AI made me doubt everything about programming by Felienne Hermans [video]

https://www.youtube.com/watch?v=0-6-f94n_9M
2•wazoox•16m ago•1 comments

Planet Labs' Open Satellite Feed

https://tech.marksblogg.com/planet-labs-open-satellite-feed.html
6•marklit•16m ago•0 comments

Can Rivian Self Driving Edge Past Tesla and Waymo?

https://spectrum.ieee.org/rivian-self-driving
2•rbanffy•16m ago•0 comments

War Is a Racket

https://en.wikipedia.org/wiki/War_Is_a_Racket
6•simonebrunozzi•17m ago•2 comments

Rails 8 Guide: Features, Requirements and Upgrade Path (2026)

https://blog.appsignal.com/2024/10/07/whats-new-in-ruby-on-rails-8.html
3•andreigaspar•17m ago•0 comments

Show HN: SockLight – A SOCKS5 dev proxy with a live terminal dashboard

https://github.com/kosmrljt/socklight
2•tomazko•17m ago•0 comments

IBM releases SOTA Granite Time Series model with commercial-friendly license

https://huggingface.co/blog/ibm-research/ibm-releases-sota-granite-time-series
2•vertigoruntime•18m 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!