frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Neural Architecture Design as a Compositional Language

https://lambpetros.substack.com/p/neural-architecture-design-as-a-compositional-32e
1•speiroxaiti•8m ago•0 comments

Refrag: Rethinking RAG Based Decoding

https://arxiv.org/abs/2509.01092
1•redbell•8m ago•0 comments

OpenAI Hacked, a Lot Leaked

https://peq42.com/blog/openai-hacked-a-lot-leaked/
3•peq42•8m ago•0 comments

The first $1B company run by one person is coming

2•AkshatRaj00•9m ago•0 comments

Setting Secrets in Env Vars

https://hugovk.dev/blog/2025/secrets-in-env-vars/
1•todsacerdoti•9m ago•0 comments

Lazy Linearity for a Core Functional Language (POPL 2026)

https://alt-romes.github.io/posts/2025-11-26-lazy-linearity-popl26.html
1•romes•10m ago•0 comments

Effective harnesses for long-running agents

https://www.anthropic.com/engineering/effective-harnesses-for-long-running-agents
1•handfuloflight•10m ago•0 comments

UFO Flap

https://en.wikipedia.org/wiki/UFO_flap
1•handfuloflight•12m ago•0 comments

Show HN: One click LinkedIn posts library

https://chromewebstore.google.com/detail/popup-linkedin-knowledge/pmejgpmingcbhpifjefenjkjaamlomha
1•rakeshkakati_47•12m ago•0 comments

Show HN: It's a Feature, Not a Bug, a gamified bug dismissal logger for QA

https://no-bug.app/
1•sebi-secasiu•13m ago•0 comments

What College Doesn't Teach You – But You Must Master to Survive in Tech

1•AkshatRaj00•15m ago•0 comments

The Deep Ocean Is a Global Public Good

https://nautil.us/the-deep-ocean-is-a-global-public-good-1238459/
2•dnetesn•16m ago•0 comments

Consumers don't care if AI made the ad. That's fine

https://thesocialjuice.substack.com/p/consumers-dont-really-care-if-ai
2•lazymentors•18m ago•1 comments

Rust in Production – Jon Seager, VP Engineering for Ubuntu

https://corrode.dev/podcast/s05e05-canonical/
1•mustache_kimono•20m ago•1 comments

Show HN: Ever Played Connections Game in NYTimes? Checkout thebrightmindgames

https://www.thebrightmindgames.com/connections/
1•subhash_k•21m ago•0 comments

Defense Startup Anduril Hits Setbacks with Weapons Tech

https://www.wsj.com/politics/national-security/anduril-industries-defense-tech-problems-52b90cae
3•bookofjoe•29m ago•1 comments

Underrated reasons to be thankful V

https://dynomight.net/thanks-5/
3•numeri•30m ago•0 comments

The engineer–manager pendulum is breaking

https://www.modernleader.is/p/pendulum-revisited
1•gpi•35m ago•0 comments

Bending Emacs – Episode 6: Overlays

https://xenodium.com/bending-emacs-episode-6-overlays
1•todsacerdoti•36m ago•0 comments

LinkedIn is loud, and corporate is hell

https://ramones.dev/posts/linkedin-is-loud/
4•austinallegro•38m ago•1 comments

VybeCam – find the perfect song that matches your vibe – like Shazam in reverse

https://apps.apple.com/app/apple-store/id6749338267?pt=118080429&ct=HackerNews&mt=8
1•donemanuel•41m ago•0 comments

Hybrid dark-pool DEX architecture on Solana

1•DarkVeil•42m ago•0 comments

Amazon: Who pays the price? – DW Documentary [video]

https://www.youtube.com/watch?v=6r3x2t872Pc
1•eternalreturn•42m ago•0 comments

Stop Hacklore – An Open Letter

https://www.hacklore.org/letter
3•birdculture•45m ago•0 comments

Predicting eukaryotic gene models combining deep learning&hidden Markov model

https://www.nature.com/articles/s41592-025-02939-1
1•bookofjoe•48m ago•0 comments

GameShell: Game to learn (or teach) how to use standard commands in a Unix shell

https://github.com/phyver/GameShell
2•sebg•52m ago•0 comments

The AI boom is based on a fundamental mistake

https://www.theverge.com/ai-artificial-intelligence/827820/large-language-models-ai-intelligence-...
5•Anon84•57m ago•0 comments

Bomb-proof your website with mirroring

https://brandonrohrer.com/hosting7.html
2•sebg•57m ago•0 comments

Nucleus Genomics founder Kian Sadeghi caught lying on TBPN

https://twitter.com/cremieuxrecueil/status/1993460627126284383
1•totalhealthopt•58m ago•0 comments

Generalized Worley Noise

https://ianthehenry.com/posts/generalized-worley-noise/
1•leephillips•1h ago•0 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?