frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Streaming datasets: 100x More Efficient

https://huggingface.co/blog/streaming-datasets
1•marklit•1m ago•0 comments

Texas Attorney General sues Tylenol makers, claiming links to autism

https://www.cnn.com/2025/10/28/health/tylenol-lawsuit-texas-ken-paxton
1•pseudolus•1m ago•0 comments

Effectiveness of Influenza Vaccine During the 2024-2025 Respiratory Viral Season

https://www.medrxiv.org/content/10.1101/2025.01.30.25321421v4
1•walterbell•2m ago•0 comments

Xx execs commands for you in your Docker Compose projects

https://chuniversiteit.nl/projects/xx
2•ibobev•2m ago•0 comments

No space, no time, no particles: a vision of quantum reality

https://www.newscientist.com/article/2500081-no-space-no-time-no-particles-a-radical-vision-of-qu...
1•Brajeshwar•3m ago•0 comments

Mysterious transient objects in sky linked to nuclear testing

https://phys.org/news/2025-10-mysterious-transient-sky-linked-nuclear.html
1•Brajeshwar•3m ago•0 comments

Eyes can only handle so much HDTV

https://www.popsci.com/technology/eyes-hdtv-pixels/
2•Brajeshwar•3m ago•0 comments

Yes it's just doing compression. No it's not the diss you think it is

https://blog.wtf.sg/posts/2023-06-05-yes-its-just-doing-compression.-no-its-not-the-diss-you-thin...
2•jxmorris12•4m ago•0 comments

Cloudflare Workers Automatic Tracing

https://blog.cloudflare.com/workers-tracing-now-in-open-beta/
2•tanelpoder•8m ago•0 comments

'minor' bird flu strain has potential to spark human pandemic

https://www.nature.com/articles/d41586-025-03519-1
2•bikenaga•10m ago•0 comments

Amazon reportedly plans up to 30k layoffs in one of tech's biggest job cuts

https://www.sfchronicle.com/california/article/amazon-tech-layoffs-21122902.php
3•fnord77•11m ago•1 comments

Monolith OS Devblog for October 2025

https://monolith-project.org/blog/october-2025-update/
1•mrunix•12m ago•0 comments

Text2SQL is dead – long live text2SQL

https://www.exasol.com/blog/text-to-sql-governance/
3•exagolo•12m ago•0 comments

Classic Hotline tracker network revived

https://macos9lives.com/?post=classic-hotline-tracker-network-revived
3•DASD•12m ago•0 comments

China's Chang'e 6 Mission Found Rare Meteorite Fragments on Moon

https://www.scientificamerican.com/article/chinas-change-6-mission-found-rare-meteorite-fragments...
1•quapster•14m ago•0 comments

Apple's Services Revenue Expected to Top $100B for First Time

https://www.macrumors.com/2025/10/28/apples-services-revenue-100-billion/
2•mgh2•14m ago•0 comments

Chinese Navy (Plan) Extra-Large and Extra-Extra-Large Underwater Vehicles

http://www.hisutton.com/Chinese-XLUUVs.html
1•wood_spirit•15m ago•0 comments

Show HN: Linklet – Save and search your LinkedIn posts cleanly

https://chromewebstore.google.com/detail/linklet/lhmnjaclknhcgkecakchbckodaogichm
1•suvijain•15m ago•0 comments

Huxley-Gödel Machine

https://arxiv.org/abs/2510.21614
1•jadelcastillo•17m ago•1 comments

Show HN: Credit card rewards for passive income

https://www.thecardcaddie.com/
1•hg30•17m ago•0 comments

RegEx Crossword

https://jimbly.github.io/regex-crossword/
2•a022311•17m ago•1 comments

I Used Smart Glasses to Trick a Bartender into Giving Me a Free Drink

https://lifehacker.com/tech/used-smart-glasses-to-trick-a-bartender?test_uuid=02DN02BmbRCcASIX6xM...
1•pavel_lishin•18m ago•0 comments

Hi, It's Me, Wikipedia, and I Am Ready for Your Apology

https://www.mcsweeneys.net/articles/hi-its-me-wikipedia-and-i-am-ready-for-your-apology
2•imichael•20m ago•0 comments

Why can't my iPhone play that video?

https://alexwlchan.net/2025/av1-on-my-iphone/
1•speckx•20m ago•0 comments

Show HN: RollBot A fast way to create looping GIFs/reels/folios

https://rollbot.app/
3•tedavis•20m ago•0 comments

v0 for iOS – Build anything with AI

https://apps.apple.com/us/app/v0/id6745097949
3•instagary•21m ago•0 comments

Everything you know about last week's AWS outage is wrong

https://www.theregister.com/2025/10/27/aws_outage_myths_reality/
2•belter•21m ago•0 comments

A brief history of random numbers

https://crates.io/crates/oorandom#a-brief-history-of-random-numbers
3•todsacerdoti•21m ago•0 comments

Learning from Sudoku Solvers (2007)

http://ravimohan.blogspot.com/2007/04/learning-from-sudoku-solvers.html
2•buescher•21m ago•0 comments

The next chapter of the Microsoft–OpenAI partnership

https://blogs.microsoft.com/blog/2025/10/28/the-next-chapter-of-the-microsoft-openai-partnership/
1•donbox•22m ago•1 comments
Open in hackernews

Postgres sequences can commit out-of-order

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

Comments

dagss•6mo 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•6mo 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?