frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

How We Made a Text-to-Speech Model Respond in Sub-50 ms

https://nari-labs.com/blog/qwen3-tts-speed-cost-frontier/
1•toebee•1m ago•1 comments

Flagwars.lol

https://www.flagwars.lol
1•rgbrgb•2m ago•0 comments

Run Graph Queries/ Algorithms on DuckDB/DuckLake Using ISO GQL

https://github.com/rahul-iyer/duckdb-gql
1•crazzy4•2m ago•0 comments

Jamie Justice Is Running a $101M Longevity Science Fair

https://time.com/collection/longevity-leaders/2026/jamie-justice/
1•LYFMail•3m ago•0 comments

The US techlash is real

https://www.ft.com/content/105b8b46-7109-402d-84cf-2616b17bfac1
3•thm•3m ago•0 comments

My AI agents kept trying to cross red lines, so I wrote them a constitution

https://github.com/Chong169/a-constitution-for-one
2•sucong178899•4m ago•0 comments

How Frontier AI Is Changing the Economics of Cybersecurity

https://corporate.comcast.com/stories/how-frontier-ai-is-changing-the-economics-of-cybersecurity
2•officialhocc•4m ago•0 comments

Anthropic's approach to teaching and learning AI

https://claude.com/blog/anthropics-approach-to-teaching-and-learning-ai
2•ihuman•4m ago•0 comments

Slack puts coding agents in the team chat

https://slack.com/blog/news/slack-code-channels-for-agents?nojsmode=1
2•NovaCoding-G•5m ago•0 comments

Every shape can be cut exactly in half with one straight line

https://bisecto.com/every-shape-can-be-cut-in-half.html
3•bpx51•7m ago•1 comments

Share a read-only snapshot of a Codex thread

https://learn.chatgpt.com/docs/use-chatgpt
2•tosh•7m ago•0 comments

A Need for Speed

https://www.filfre.net/2026/08/a-need-for-speed/
3•dmazin•8m ago•0 comments

Take-Two subpoenas Microsoft and Discord in hunt for GTA 6 leaker

https://www.dexerto.com/gta/take-two-subpeonas-microsoft-and-discord-in-hunt-for-gta-6-leaker-340...
2•davikr•8m ago•0 comments

Show HN: Public Muscriptor Instance (latest, most powerful Audio-to-MIDI model)

https://www.pianoify.net/
2•jardy•8m ago•0 comments

LinkedIn Has Accidentally Become a Dating Site

https://www.wsj.com/lifestyle/linkedin-has-accidentally-become-a-dating-sitedespite-its-no-romanc...
2•AnodicElegy•8m ago•0 comments

Tell HN: Stop deleting so many posts and comments

3•orangeribbon•8m ago•1 comments

Show HN: Telex Page – Turn secrets into AES 256 encrypted PDFs, locally

https://telexpage.com/
2•cucho•10m ago•1 comments

Modelingmadness.com, The Finest Review Site on the Web: Since 1995

https://modelingmadness.com/index.htm
3•joebig•10m ago•0 comments

Experiments for the Independent Science Society

https://chillphysicsenjoyer.substack.com/p/experiments-for-the-independent-science
2•surprisetalk•12m ago•0 comments

How we built a proxy to migrate Kafka producers with zero downtime

https://www.warpstream.com/blog/orbit-kafka-auto-migration
8•exposition•13m ago•1 comments

Still running Screenly OSE? Here's what you've missed

https://forums.screenly.io/t/still-running-screenly-ose-heres-what-youve-missed/6766
2•mvip•15m ago•0 comments

Show HN: Bounded GenAI metrics from Otel traces with O raw prompts

https://github.com/llm-measurement/otelcol-genai-sketches
3•kwisatzh•15m ago•1 comments

Nintendo Wipes Out 400 Switch Emulator Repos in Single-Day GitHub Sweep

https://torrentfreak.com/nintendo-wipes-out-400-switch-emulator-repos-in-single-day-github-sweep/
3•iamnothere•16m ago•0 comments

New snake species named in honor of Guns N' Roses guitarist Slash

https://www.popsci.com/environment/snake-species-named-after-guns-n-roses-guitarist-slash/
2•ohjeez•16m ago•0 comments

New York unseats San Francisco as the top market for tech talent, CBRE reports

https://www.cnbc.com/2026/08/21/new-york-san-francisco-tech-talent-cbre.html
2•toomuchtodo•16m ago•0 comments

How to Practice

https://www.newyorker.com/magazine/2021/03/08/how-to-practice
2•simonebrunozzi•17m ago•0 comments

Why do we need new agentic browser

https://www.bolshchikov.com/p/why-do-we-need-a-new-agentic-browser
2•bolshchikov•17m ago•0 comments

Natural Light Is an Essential Nutrient

https://www.midwesterndoctor.com/p/why-light-is-an-essential-nutrient
2•bilsbie•18m ago•1 comments

Noswoosh: Instant, animation-free switching between macOS Spaces

https://github.com/mmathys/noswoosh
2•k5hp•21m ago•0 comments

Block AI from installing malicious NPM packages

https://prasannamestha.medium.com/a-tool-to-block-ai-from-installing-malicious-npm-packages-c82bd...
2•pmestha•21m 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!