frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

I used AI to help market my bagel shop. Then the one-star reviews came in

https://www.businessinsider.com/bagel-shop-owner-removes-ai-social-media-marketing-2026-5
1•michaelsbradley•1m ago•0 comments

Scenario with Low Demand for AI

1•tesdinger•2m ago•0 comments

How does your team capture decisions and action items after meetings?

2•Skm-12•5m ago•0 comments

AI Is Technology, Not a Product

https://daringfireball.net/2026/05/ai_is_technology_not_a_product
1•mattas•6m ago•0 comments

Show HN: Firehooks – Get app users from TikTok without paid ads

https://ads.firehooks.io/
1•Tanvir3•7m ago•0 comments

Do Job Postings Show Early Labor‑Market Effects of AI?

https://libertystreeteconomics.newyorkfed.org/2026/05/do-job-postings-show-early-labor-market-eff...
3•wslh•15m ago•0 comments

BYD weighs Formula 1 role as 2026 rules shift toward electric power, VP confirms

https://carnewschina.com/2026/04/28/byd-weighs-formula-1-role-as-2026-rules-shift-toward-electric...
1•Markoff•16m ago•0 comments

Executives are blaming layoffs on AI, but it is not the main driver

https://finance.yahoo.com/economy/article/executives-are-blaming-layoffs-on-ai-but-research-shows...
1•wslh•16m ago•0 comments

Claude Agent View Changes How You Run Your Engineering Day

https://medium.com/@alirezarezvani/claude-agent-view-changes-how-you-run-your-engineering-day-ec7...
1•jungard•17m ago•0 comments

DIY Triboluminescence Media

1•sargstuff•18m ago•0 comments

The physics of scotch tape (2011)

https://www.symmetrymagazine.org/breaking/2011/01/18/the-physics-of-scotch-tape?language_content_...
1•sargstuff•18m ago•0 comments

X-ray and electron emission from peeling adhesive tape

https://pubs.aip.org/aip/apl/article/128/19/191101/3389324/X-ray-and-electron-emission-from-peeli...
2•ledoge•19m ago•0 comments

Is Trader Joe's the "Quince" of Food?

https://lesleysykes.substack.com/p/is-trader-joes-the-quince-of-food
1•mooreds•21m ago•0 comments

Show HN: nbpipe – A lightweight workflow runner for Jupyter notebooks

https://github.com/ngafar/nbpipe
1•nawazgafar•22m ago•0 comments

Analysis of changes in the Bun codebase after the rewrite from Zig to Rust

https://kant2002.github.io/en/llm/2026/05/16/bun-pr-analysis-en.html
3•kant2002•23m ago•1 comments

Vulnerability Cve-2026-7412

https://db.gcve.eu/vuln/cve-2026-7412
1•anonyoum•24m ago•0 comments

Vulnerability Cve-2026-7411

https://db.gcve.eu/vuln/cve-2026-7411
1•anonyoum•25m ago•0 comments

Colleges got more rural students to apply, challenge is getting them to attend

1•1659447091•25m ago•0 comments

Claude Session Manager – tile-based desktop manager for Claude Code

https://github.com/irfan-gowani/claude-session-manager
1•gnosis_hn•26m ago•0 comments

Too Much Is Happening Too Fast

https://www.theatlantic.com/technology/2026/05/too-much-happening-too-fast/687177/
2•malshe•26m ago•1 comments

Exploring Chemistry in Four Dimensions

https://blog.4denthusiast.net/
1•onestay42•27m ago•0 comments

Outcry: A four-layer activist AI that runs on a four-year-old phone

https://www.outcryai.com/research/how-to-create-activist-ai
1•micahwhite•27m ago•0 comments

Local, reviewable repo memory for coding agents

https://github.com/aictx/memory
3•Yannetto•28m ago•0 comments

Microsoft starts canceling Claude Code licenses

https://www.techbuzz.ai/articles/microsoft-starts-canceling-claude-code-licenses
1•Aldipower•29m ago•0 comments

Show HN: Got ghosted by tech companies so I built a tool to track ghost jobs

https://csvfirst.pythonanywhere.com/insights/hiring-data/job-listings-that-stay-open-for-years/
2•ktmartin•29m ago•0 comments

Ccls: A C/C++/Objective-C language server protocol implementation derived from C

https://github.com/MaskRay/ccls
1•fanf2•30m ago•0 comments

Share your shell and show your tricked-out terminals

https://arstechnica.com/information-technology/2026/05/ars-asks-share-your-shell-and-show-us-your...
2•twilight-code•38m ago•2 comments

Distributed Systems aren't just about scaling

https://brooker.co.za/blog/2024/06/04/scale.html
1•arn3n•41m ago•0 comments

The Impossibility of Supersized Machines (2017)

https://arxiv.org/abs/1703.10987
3•Luc•43m ago•0 comments

A tool to screen new ArXiv papers

https://github.com/ibaaj/arxiv-digest
1•newolive•44m 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!