frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

We configured OpenTelemetry logs in Rails

https://www.sixpatterns.com/blog/how-we-configured-opentelemetry-logs-in-rails
1•__vivek•27s ago•0 comments

Is Starlink a secret radar constellation?

https://how-radar-sees.pages.dev/
1•grinich•40s ago•0 comments

Price Tag Art Software

https://ade3.substack.com/p/code-release-price-tag-art-software
1•Cerchie•1m ago•0 comments

Social Policy Builds Financial Markets

https://economicsociology.org/2026/08/28/how-social-policy-builds-financial-markets/
1•kome•1m ago•0 comments

Google Has Removed MV2 Extensions from the Chrome Web Store, Including UBO

https://webiterate.dev/google-removed-extensions-ublock-origin-108/
1•twapi•1m ago•0 comments

Existentialism: People Must Create Their Own Purpose

https://blog.nathanlangley.dev/posts/existentialism.html
1•ninjahawk1•2m ago•0 comments

Kalshi dishes out its first-ever lifetime ban to George Santos

https://www.engadget.com/2247629/kalshi-dishes-out-its-first-ever-lifetime-ban-to-george-santos/
2•andrewjneumann•2m ago•0 comments

The Shape and Feel of the Post-AI Data Stack

https://www.iandmacomber.com/blog/post-ai-data-stack/
1•_peregrine_•3m ago•0 comments

The Fate of the Riemann Hypothesis [pdf]

https://www.math.brown.edu/reschwar/Stories/AI.pdf
1•unprovable•4m ago•0 comments

The Ramulator-Gate Debate

https://memory.bsc.es/ramulator-gate
1•iAPX-432•5m ago•0 comments

Show HN: Open Agent Forum – a signed public square for agents

https://openagentforum.com/
1•novalis78•5m ago•0 comments

There's a libcurl.dll in my System32

https://daniel.haxx.se/blog/2026/08/17/theres-a-libcurl-dll-in-my-system32/
2•theanonymousone•6m ago•0 comments

Show HN: IDE – 2D Canvas for Agents

https://github.com/alpbahadur/49-IDE
1•myradism•7m ago•1 comments

Staying Ahead of Adversarial AI Through Agentic Source Code Review

https://cloud.google.com/blog/topics/threat-intelligence/staying-ahead-of-adversarial-ai-through-...
1•wslh•8m ago•0 comments

Why duplicates plague CDC pipelines and how to root them out (2025)

https://blog.sequinstream.com/why-duplicates-plague-cdc-pipelines-and-how-to-root-them-out/
1•blueshoess•9m ago•0 comments

Anne Rice

https://en.wikipedia.org/wiki/Anne_Rice
1•davedx•10m ago•1 comments

Everything You Copy, Ready When You Need It

https://medium.com/@chris.ahrweiler/everything-you-copy-ready-when-you-need-it-3ebfe9739b85
1•docjojo•12m ago•0 comments

You Probably Don't Get Why Stripe Bought OpenRouter

https://www.amppublic.com/research/openrouter
1•gmays•13m ago•0 comments

I attended a conference recently and AI use by academics was absurd

https://lobste.rs/s/qn7jtv/i_attended_conference_recently_ai_use_by
2•htk•13m ago•0 comments

Apple Human Interface Guidelines, et al.

https://github.com/gingerbeardman/apple-human-interface-guidelines
1•handfuloflight•13m ago•0 comments

Gently down the stream – An introduction to Apache Kakfa

https://www.gentlydownthe.stream/
1•adithyasrin•15m ago•1 comments

Blockchain und Bitcoin erklärt in 6 Episoden – Episode 2

https://medium.com/@chris.ahrweiler/blockchain-und-bitcoin-erkl%C3%A4rt-in-6-episoden-episode-2-2...
1•docjojo•16m ago•0 comments

Show: Free Dicom Viewer

https://hounsfield.vercel.app
2•jzeger•17m ago•0 comments

Show HN: Markdown Viewer and Editor

https://kingsbridge-consultancy.com/md-viewer/
2•beerglass•17m ago•0 comments

Tubeviz – automatically edit YouTube footage to music

https://github.com/interrupt21h/tubeviz
1•int0x21•18m ago•0 comments

AIxCC: Competition Design, Architectures, and Lessons Learned

https://arxiv.org/abs/2602.07666
2•wslh•19m ago•0 comments

Developing provably correct Rust code with Verus

https://www.amazon.science/blog/developing-provably-correct-rust-code-with-verus
1•shortj•20m ago•0 comments

Terminating elegantly: a guide to graceful shutdowns

https://packagemain.tech/p/graceful-shutdowns-k8s-go
2•theanonymousone•20m ago•0 comments

Bayesian Workflow PDF from Andrew Gelman

https://statmodeling.stat.columbia.edu/2026/08/25/bayesian-workflow-free-pdf/
1•jreynar•22m ago•0 comments

Remote Teleop for Robotic Arms

https://www.youtube.com/watch?v=c_pf-9-gLOg
1•chfritz•24m ago•1 comments
Open in hackernews

Past, Present, and Future of (Ruby) Sorbet Type Syntax

https://blog.jez.io/history-of-sorbet-syntax/
5•ksec•1y ago

Comments

Lio•1y ago
This is a great write up and I think the proposal to make rbs-inline type comments avaible at runtime is an execellent solution.

I can definitely see the value runtime type checking in addition to static analysis. For my own work I've done this either using pattern matching:

  class User
    def initialize(name:, age:)
      String => name
      Integer => age
      @name = name
      @age = age
    end
  end
but the error messages aren't great IMHO. It's pretty easy though knock up a little type checker in a very small module and prepend it. I have support for union types and typed arrays in mine.

I actually wasn't aware of the improvements they've made over the years to Sorbet. It think that's probably what I'll migrate to now.

Lio•1y ago
I'd add, I'm surprised this this post isn't added to the "official" Sorbet blog. It really is a great post and very positive for the future of the project.

https://sorbet.org/blog/