frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

How do you learn without AI?

https://stackoverflow.com/q/79832798/453783
1•robin_reala•16s ago•0 comments

B 4 a Soyuz launch Thursday someone forgot to secure a 20 ton service platform

https://arstechnica.com/space/2025/11/russian-launch-pad-incident-raises-concerns-about-future-of...
1•sleepyguy•3m ago•0 comments

Video Friday: Disney's Robotic Olaf Makes His Debut

https://spectrum.ieee.org/video-friday-disney-robot-olaf
1•quapster•5m ago•0 comments

Show HN: Auth Agent – the first agent-native auth flow for websites. Check out

https://github.com/auth-agent/auth-agent
1•hkpatel•9m ago•0 comments

China claims domestically-designed 14nm logic chips can rival 4nm Nvidia silicon

https://www.tomshardware.com/tech-industry/semiconductors/china-claims-14nm-ai-chip-can-rival-nvi...
2•themgt•11m ago•0 comments

My data should not be your cookie jar

https://blog.avas.space/cookie-jar/
1•curioussquirrel•14m ago•0 comments

Show HN: Lifetime Black Friday Deals (Mega List)

https://www.blackfridaydeals.directory
2•bfdd•14m ago•0 comments

The Claims of Close Reading

https://www.bostonreview.net/articles/the-claims-of-close-reading/
1•jger15•16m ago•0 comments

Chess960v2 : All 960 Fischer openings analyzed, full restart planned after fix

https://chess960v2.com/en
2•lavren1974•19m ago•1 comments

Ainfographic – Turn blog posts into infographics with AI

https://ainfographic.com/
1•Tomolo•20m ago•1 comments

Stop Clicking Around: Faster Ways to Put Your Mac to Sleep

https://medium.com/@aspiringwriter001/stop-clicking-around-faster-ways-to-put-your-mac-to-sleep-6...
1•beholdsurprise•20m ago•0 comments

Durrrr ChatGPT [video]

https://www.newgrounds.com/portal/view/1006996
1•etrvic•23m ago•0 comments

One Thousand Layer Networks for Self-Supervised RL

https://arxiv.org/abs/2503.14858
1•johnsutor•23m ago•0 comments

Show HN: AI System Generating Minecraft Mods (97% Working)

https://www.player.games/en-US/create-minecraft-mods-ai
3•madebywelch•25m ago•2 comments

The Impossible Prompt

https://teodordyakov.github.io/the-impossible-promt/
2•gmays•27m ago•0 comments

Context Plumbing

https://interconnected.org/home/2025/11/28/plumbing
1•todsacerdoti•29m ago•0 comments

Shiitake Mushrooms Can Remember Electrical States

https://spectrum.ieee.org/memristor-materials
3•Brajeshwar•33m ago•1 comments

Platform-independent experiments on social media

https://www.science.org/doi/10.1126/science.aec7388
1•Brajeshwar•33m ago•1 comments

ADHD Diagnoses Are Growing

https://www.nature.com/articles/d41586-025-03855-2
2•Brajeshwar•33m ago•1 comments

Long-term pattern shifts in Atlantic high-pressure sys drives Caribbean rainfall

https://phys.org/news/2025-11-caribbean-rainfall-driven-shifting-term.html
2•bikenaga•36m ago•0 comments

Agents need good developer experience too

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

The AWS Infrastructure as Code MCP Server: AI-Powered CDK

https://aws.amazon.com/blogs/devops/introducing-the-aws-infrastructure-as-code-mcp-server-ai-powe...
1•xfr•43m ago•0 comments

Guide to making a CHIP-8 emulator

https://tobiasvl.github.io/blog/write-a-chip-8-emulator/
2•AlexeyBrin•47m ago•0 comments

The UK Has It Wrong on Digital ID. Here's Why

https://www.eff.org/deeplinks/2025/11/uk-has-it-wrong-digital-id-heres-why
5•hn_acker•48m ago•1 comments

Be Slightly Monstrous

https://contraptions.venkateshrao.com/p/be-slightly-monstrous
1•jger15•48m ago•0 comments

AWS Amplify Is a Joke

3•2code•48m ago•0 comments

AI Tops Christian Artist Charts on iTunes

https://thehill.com/policy/technology/5620871-ai-christian-singer-tops-charts-stirs-debate/
4•geox•49m ago•2 comments

Reanimation of pseudoscience in machine learning and its ethical repercussions

https://www.cell.com/patterns/fulltext/S2666-3899(24)00160-0
4•INGELRII•50m ago•0 comments

Could Symbolic AI Unlock Human-Like Intelligence?

https://www.nature.com/articles/d41586-025-03856-1
4•beardyw•52m ago•0 comments

Why aren't there any "YouTube competitors?"

https://justinkuiper.substack.com/p/why-arent-there-any-youtube-competitors
2•surprisetalk•52m ago•4 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?