frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Show HN: I built a low-level crypto lib that adds passwords to wallet mnemonics

1•mscikdf•58s ago•0 comments

The writer who dared criticize Silicon Valley

https://www.nytimes.com/2025/11/27/technology/writer-silicon-valley-criticism.html
1•kenjackson•1m ago•0 comments

Show HN: PythonStark – Educational Python ZK-Stark Implementation

https://github.com/SherifSystems/Pythonstark
1•SherifSystems•2m ago•0 comments

Taiwan raids former TSMC exec's home and seizes his shares and real estate

https://www.reuters.com/legal/litigation/intel-denies-tsmc-allegations-that-executive-leaked-trad...
1•osnium123•3m ago•1 comments

Apple's Second Limited-Edition Accessory in a Month: Hikawa Phone Grip and Stand

https://www.macrumors.com/2025/11/21/apple-launches-hikawa-iphone-grip-stand/
2•workfromspace•5m ago•1 comments

Did the UK budget leak because of WordPress?

https://www.altis-dxp.com/did-the-uk-budget-leak-because-of-wordpress/
1•rmccue•6m ago•0 comments

Show HN: Video Frame Extractor – Extract Frames from Videos Oline

https://videoframeextractor.net
1•star98•7m ago•0 comments

Delete all contact images via AppleScript

https://tinyapps.org/blog/delete-all-contact-images.html
1•austinallegro•8m ago•0 comments

Agents need good developer experience too

https://modal.com/blog/agents-devex
1•birdculture•8m ago•0 comments

Ask HN: Extracting the same table from PDF layouts?

1•oliver236•9m ago•0 comments

A Highway Is Crumbling. New York Can't Agree on How to Fix It

https://www.nytimes.com/interactive/2025/11/26/special-series/brooklyn-queens-expressway-new-york...
2•shakes•9m ago•0 comments

Sprout: UEFI bootloader that can reduce bootloader times to milliseconds

https://github.com/edera-dev/sprout
1•sbt567•10m ago•0 comments

I asked a chatbot what it thought of HN (reader discretion strongly advised)

https://viewreplyy.com/share/galactico/7n5s9c0
1•galactic_atom•12m ago•0 comments

Self-hosted PM app: multi-view projections (boards, grids) + time tracking

https://eigenfocus.com/
1•vinioyama•14m ago•1 comments

SmartTube has been disabled by Google Play

https://old.reddit.com/r/ShieldAndroidTV/comments/1p6oxxe/smart_tube_has_been_disabled_by_google_...
2•eTomte•14m ago•0 comments

Ask HN: Codex vs. 5.1 for pdf table-to-JSON extraction?

1•oliver236•16m ago•0 comments

RIP David Lerner, a Mr. Fix-It of Apple Computers, Co-Founder of Tekserve

https://www.nytimes.com/2025/11/26/technology/personaltech/david-lerner-dead.html
3•johnshades•17m ago•0 comments

What Happens When You Train Pure Logic Without Knowledge: 15-Expert Moe

https://github.com/vac-architector/VAC-Memory-System/blob/main/LOGICA_MOE_STORY.md
3•ViktorKuz•20m ago•0 comments

Ancestry and the NRS: when the corporate genealogy world turns ugly

http://scottishgenes.blogspot.com/2025/09/ancestry-and-nrs-when-corporate.html
1•ilamont•22m ago•0 comments

Monorepo CI for GitHub Actions: Run the Tests You Need, Nothing More

https://mergify.com/blog/monorepo-ci-for-github-actions-run-exactly-the-tests-you-need-nothing-more
4•JulianMaurin1•23m ago•0 comments

Conformal Prediction for Compositional Data

https://www.arxiv.org/pdf/2511.18141
1•felineflock•24m ago•0 comments

The SIMD-CSV crate chose not to use simdjson tricks to parse CSV with SIMD

https://docs.rs/simd-csv/latest/simd_csv/#design-notes
8•Yomguithereal•25m ago•1 comments

Watch the NEW Commodore 64 Ultimate being made [video]

https://www.youtube.com/watch?v=BffeaLbKHkw
1•DeathArrow•28m ago•0 comments

Show HN: NodeLoop – Hub for electronics design knowledge and tools

https://nodeloop.org/
1•eezZ•29m ago•0 comments

Steam censors LGBTQ+ content on behalf of the Russian Government

https://www.videogamesindustrymemo.com/p/how-steam-censors-lgbtq-content-on
6•HelloUsername•30m ago•1 comments

Deep Work vs. the Cyborg Hyperactive Cracked-Out Agent Allocator

https://bengoldhaber.substack.com/p/deep-work-vs-the-cyborg-hyperactive
2•lindowe•30m ago•0 comments

Lowtype: Elegant Types in Ruby

https://codeberg.org/Iow/type
1•todsacerdoti•34m ago•0 comments

Ask HN: Why does scale values between -1 and 1 return nothing on Google search

1•sonabinu•36m ago•0 comments

GOG Patrons

https://www.gog.com/en/patrons
2•HunOL•36m ago•0 comments

We're Losing Our Voice to LLMs

https://tonyalicea.dev/blog/were-losing-our-voice-to-llms/
2•TonyAlicea10•37m ago•2 comments
Open in hackernews

Postgres sequences can commit out-of-order

https://blog.sequinstream.com/postgres-sequences-can-commit-out-of-order/
4•dagss•7mo ago

Comments

dagss•7mo ago
This details an approach to working with commit-ordered event IDs which is a very powerful primitive to, e.g., do pub/sub event processing within a SQL database without having to deal with outbox patterns, event brokers and so on.

People throw Kafka or Event Hub at everything, but really, if you do not need to offload your DB for storage/access of massive amounts of events, you may not need them...

I have a lot of experience with this approach on MS SQL (https://github.com/vippsas/mssql-changefeed), interesting to see the same thing on postgres.

Hope databases gets these things built in (i.e., supported more directly) in the future.

dagss•7mo ago
I wonder if this is a bug:

   -- If no locks are found, return the maximum possible bigint value
    if max_seq is null then
        return 9223372036854775807;
    end if;
Would be a race here by returning a big number to the caller, then more data is written in between? Should instead check the current max sequence number before checking the locks?