frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Show HN: Needle – Find users, track competitors, and spot market opportunities

https://useneedle.net
1•iamvs2002•36s ago•0 comments

Vibe Coding a Compiler: From Natural Language to LLVM IR

https://medium.com/@fhinkel/vibe-coding-a-compiler-from-natural-language-to-llvm-ir-f4e192a49260
1•cloudwithkarl•1m ago•0 comments

The Traceability Gap Blocking Real AI in Delivery Tools

https://ai.gopubby.com/ai-integration-and-the-traceability-gap-atlassian-vs-competitors-61beb155ddda
1•oddish-tv•3m ago•1 comments

Unexpected events and prosocial behavior: the Batman effect

https://www.nature.com/articles/s44184-025-00171-5
1•Jimmc414•4m ago•0 comments

Missionary AI

https://www.chdaoai.com/index.html
1•ace520•5m ago•1 comments

Show HN: Rep+: Burp Repeater Inside Chrome DevTools for Bug Bounty and AppSec

https://github.com/bscript/rep
1•bscript•7m ago•0 comments

More tales about outages and numeric limits

https://rachelbythebay.com/w/2025/11/18/down/
1•todsacerdoti•8m ago•0 comments

From Bottleneck to Multiplier

https://davidcampos.org/blog/2025/11/17/engineering-leadership.html
1•david-campos•9m ago•1 comments

Show HN: Indie World – A 3D world map of indie hackers

https://www.indieworld.dev/
1•gianlucas90•9m ago•1 comments

Inflatable Space Stations

https://worksinprogress.co/issue/inflatable-space-stations/
2•bensouthwood•10m ago•0 comments

How Math Textbooks Are Written (and How to Choose One)

https://kidswholovemath.substack.com/p/how-math-textbooks-are-written-and
1•sebg•11m ago•0 comments

Who's in Charge?

https://uptimelabs.io/incident-management-leadership/
1•gpi•11m ago•0 comments

Sora 2 Free – Free Sora Generator – Sora 2 Web and API

https://FreeSoraGenerator.com
2•paidx•12m ago•0 comments

Phel: A Functional Lisp Dialect for PHP Developers

https://phel-lang.org/
1•wlkr•15m ago•1 comments

Meta's Video Codec Acid Test (VCAT)

https://www.streamingmedia.com/Articles/ReadArticle.aspx?ArticleID=170452
2•breve•15m ago•0 comments

New Tools to Reduce the Risks for Whistleblowers

https://gijn.org/stories/new-tools-reduce-risks-whistleblowing/
1•robtherobber•16m ago•0 comments

Tetherless optoelectronic microsystem for neural recording in awake mice

https://www.nature.com/articles/s41928-025-01484-1
1•PaulHoule•17m ago•0 comments

Building a Distributed Database in Elixir (Part 2: Architecture and the Beam)

https://medium.com/@gawry/architecture-fundamentals-why-elixir-is-a-secret-weapon-for-distributed...
2•gawry•18m ago•1 comments

Urgent everyone – help us kill AI preemption (again) before this Friday

https://www.lesswrong.com/posts/osrLqeaaiE6Cyr2Hk/urgent-everyone-help-us-kill-ai-preemption-agai...
2•PhilosophyForAI•19m ago•0 comments

Mapping Offline with CoMaps and Every Door

https://tzovar.as/offline-mapping/
1•gedankenstuecke•19m ago•0 comments

New file-hosting website – Fileanon.com

https://fileanon.com
1•sherekt•21m ago•0 comments

Building a Minimal Viable Armv7 Emulator from Scratch

https://xnacly.me/posts/2025/building-a-minimal-viable-armv7-emulator/
5•xnacly•21m ago•0 comments

Zorin OS 18 Hits 1M Downloads in Just One Month

https://linuxiac.com/zorin-os-18-hits-1-million-downloads-in-just-one-month/
4•dxs•22m ago•0 comments

Easy Quran App (http://easyquran.app)

https://play.google.com/store/apps/details?id=com.ahmadshahwaiz.easyquran&hl=en_US
1•ahmadshahwaiz•22m ago•2 comments

EXIF orientation info in PNGs isn't used for image-orientation

https://bugzilla.mozilla.org/show_bug.cgi?id=1627423
2•justin-reeves•23m ago•0 comments

Show HN: Train a language model in the browser with WebGPU

https://sequence.toys
2•vvin•23m ago•0 comments

Show HN: PrinceJS – From Wrong Benchmarks to Honest Results (13yo Dev)

https://npmjs.com/package/princejs
1•lilprince1218•24m ago•0 comments

Russia-linked crooks bought themselves a bank for Christmas

https://www.theregister.com/2025/11/21/russia_cybercrime_bank_purchase/
2•beardyw•26m ago•0 comments

You probably shouldn't train an LLM in the browser - here's how

https://vin.how/blog/train-a-language-model-in-your-browser
1•FL33TW00D•26m ago•0 comments

Pixel Art Tips for Programmers

https://jslegenddev.substack.com/p/5-pixel-art-tips-for-programmers-3d6
3•ibobev•26m 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?