frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Breakthrough blood test could spot cancers before symptoms appear

https://www.foxnews.com/health/breakthrough-blood-test-could-spot-dozens-cancers-before-symptoms-...
1•SirLJ•1m ago•0 comments

Zuckerberg must take witness stand at social media safety trial, judge rules

https://www.cnbc.com/2025/10/21/meta-instagram-snap-social-media-child-safety.html
1•1659447091•3m ago•0 comments

TikTok's algorithm systematically boosts pro-Mamdani and anti-Cuomo content

https://twitter.com/YADodeles/status/1980748267282485257
2•nsoonhui•5m ago•0 comments

Continuing your ChatGPT experience beyond WhatsApp

https://openai.com/index/chatgpt-whatsapp-transition/
1•deanmoriarty•5m ago•0 comments

Samsung's Galaxy XR Mixed Reality Headset Now Available for $1,800

https://www.macrumors.com/2025/10/21/samsung-galaxy-xr-headset/
1•mgh2•10m ago•0 comments

I Want to See the Claw

https://vickiboykis.com/2025/10/20/i-want-to-see-the-claw/
1•misonic•11m ago•0 comments

Mobsters' own words brought down Philly's mafia

https://theconversation.com/how-mobsters-own-words-brought-down-phillys-mafia-a-veteran-crime-rep...
2•makerdiety•12m ago•0 comments

Takaichi elected Japan's premier, shattering glass ceiling with hard-right turn

https://www.reuters.com/world/asia-pacific/japans-takaichi-appoint-senior-lawmaker-katayama-finan...
2•donsupreme•12m ago•0 comments

Show HN: Publish Newsletters and Podcasts

https://giv1.com
1•cranberryturkey•14m ago•0 comments

Effects of antidepressants on physical health ranked for first time

https://www.bbc.com/news/articles/c9d65nqgd5zo
1•dabinat•15m ago•0 comments

Brand Story&Philosophy#2 – From Idea to Impact:HyperFlow AI Philosophy in Action

https://hyperflow-ai.com
1•hyperflow-ai•17m ago•1 comments

Detecting suicide risk in bipolar disorder from lymphoblastoid signatures

https://www.nature.com/articles/s41398-025-03573-3
2•wslh•25m ago•0 comments

Greg Brockman's OG Blog

https://blog.gregbrockman.com
1•Olshansky•34m ago•1 comments

CRM's?

1•Bamfam•35m ago•0 comments

The Web We've Built: Celebrating 1 Trillion Web Pages Archived

https://blog.archive.org/event/the-web-weve-built-celebrating-1-trillion-web-pages-archived/
3•TMWNN•36m ago•0 comments

A Recipe for Training Neural Networks (2019)

http://karpathy.github.io/2019/04/25/recipe/
1•yberreby•36m ago•0 comments

Create cinematic Sora 2 videos with expert-level prompts

https://www.sorashorts.ai
1•JungleLee•36m ago•0 comments

OpenBSD 7.8 Released

https://cdn.openbsd.org/pub/OpenBSD/7.8/ANNOUNCEMENT
15•paulnpace•37m ago•0 comments

Today's Task for Economists (1993) [pdf]

https://cooperative-individualism.org/vickrey-william_today%27s-task-for-economists-1993-mar.pdf
1•ChadNauseam•38m ago•0 comments

System.LongBool

https://docwiki.embarcadero.com/Libraries/Sydney/en/System.LongBool
1•surprisetalk•38m ago•0 comments

The Prime Scalar Field

https://theprimescalarfield.com/
1•tzury•39m ago•1 comments

Marc Benioff Has Torched His Do-Good CEO Image

https://www.bloomberg.com/opinion/articles/2025-10-21/salesforce-ceo-marc-benioff-torched-his-do-...
2•wslh•49m ago•1 comments

$200B AppLovin faces data privacy probe after short-sellers allege misconduct

https://nypost.com/2025/10/19/business/applovin-faces-data-privacy-probe-after-short-sellers-alle...
1•1vuio0pswjnm7•49m ago•0 comments

Exhalation (2014)

https://www.lightspeedmagazine.com/fiction/exhalation/
2•measurablefunc•52m ago•1 comments

Show HN: Open-Source Crypto Offramp AI Bot

https://github.com/oyeolamilekan/dammie-ai-frontend
1•talljohnson1234•53m ago•0 comments

Rails 8.1: Job continuations, structured events, local CI

https://rubyonrails.org/2025/10/22/rails-8-1
3•CoachRufus87•1h ago•0 comments

Deadeus – A New Gameboy Game

https://izma.itch.io/deadeus
1•razodactyl•1h ago•0 comments

One of our last TwigBush PRs before our first release

https://github.com/orgs/TwigBush/discussions/29
1•joshfischer1108•1h ago•0 comments

Magic sizes enable high-fidelity assembly of programmable shells

https://arxiv.org/abs/2411.03720
1•PaulHoule•1h ago•0 comments

Ask HN: What's your advanced investing advice?

3•CoreSet•1h ago•4 comments
Open in hackernews

Cdb: Add support for cdb64

https://cdb.cr.yp.to/download.html
65•kreco•2h ago

Comments

Bolwin•1h ago
Interesting, never heard of this before. I'm assuming the use case is when your data is too large to conveniently fit into memory?
dsr_•1h ago
It is a database for when you read a lot and don't write too often; when a write might be pretty big but not frequent; when you don't want to write a database engine yourself (I.e. figure out what to write and when). And, especially, when corrupting the data would be a big problem.

And it is especially good on copy-on-write filesystems, because it is CoW itself.

bloppe•1h ago
So it's not constant?
tptacek•1h ago
The lookups are ~O(1).
renewiltord•45m ago
Nothing is truly constant lookup in number of elements in nature because we can’t pack it tighter than a sphere.
tptacek•1h ago
It's a database for strictly exact-match lookups for very read-intensive workloads; think systems where the database only changes when the configuration changes, like email alias or domain lookups. It's very simple (a first-level hash table chaining to a second-level open-addressed hash table) and easy to get your head around, but also very limiting; an otherwise strict K-V system that uses b-trees instead of hash tables can do range queries, which you can build a lot of other stuff out of.

Most people would use Redis or SQLite today for what CDB was intended for; CDB will be faster, but for a lot of applications that speed improvement will be sub-threshold for users.

paws•1h ago
For me this answer was helpful and succinct, thank you.
tptacek•1h ago
Haven't there been 64-bit ports of CDB for ages?
wolfgang42•47m ago
Yes, the modifications you need to support it are trivially obvious (literally just replace “4 bytes” with “8 bytes” everywhere in the spec) and have been implemented by a number of authors, some of which this page links to. I guess it’s nice that they’ve been “officially” acknowledged, though.
gnabgib•1h ago
Title: cdb: Intro (please use the original title) https://news.ycombinator.com/newsguidelines.html
gchamonlive•1h ago
It'd never have crawled out of the new page with that title.
trvz•1h ago
No, the title is much better as it is.
gjvc•2m ago
[delayed]
stevefan1999•1h ago
Can't this be implemented as a PHF: https://en.wikipedia.org/wiki/Perfect_hash_function
wolfgang42•54m ago
CDB is an interesting format, optimized for read-heavy write-rarely[1] random lookups on slow media. This isn’t a very common requirement these days, but it’s convenient for very specific use cases.

[1] You “update” by overwriting the entire file. This is remarkably fast and means that there’s no overhead/tracking for empty space, but it does mean you probably want this to be a fairly rare operation.

I rolled my own cdb reader library for a project a few years ago, and wrote up my notes on the format and its internals here: https://search.feep.dev/blog/post/2022-12-03-cdb-file-format

a-dub•41m ago
GALACTIC SCALE QMAIL that can run efficiently on a 486 AND survive a supernova!
tombert•24m ago
I'm kind of surprised I hadn't heard of this, I could see this being something useful for a few projects. Historically for things in this space I've used RocksDB but RocksDB has given me headaches with unpredictable memory usage for large data sets.
binary132•6m ago
Now I’m curious about working around the writer limitations….