frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Show HN: SolidUptime – Uptime monitoring with incident grouping (free, no CC)

https://soliduptime.org/
1•Abs46•1m ago•1 comments

Vairav Fintech Threat Index

https://mailchi.mp/7ad331ac5d91/fintech-threat-index-q1-2026
1•cyberdefender•1m ago•0 comments

Antarctica, and the Extreme Logistics of Human Exploration

https://www.a16z.news/p/antarctica-and-the-extreme-logistics
1•7777777phil•2m ago•0 comments

Cloudflare targets 2029 for full post-quantum security

https://blog.cloudflare.com/post-quantum-roadmap/
1•ilreb•2m ago•0 comments

Show HN: RBF-Attention – Trading dot-products for Euclidean distance

https://www.pisoni.ai/posts/scaled-rbf-attention/
1•4rtemi5•3m ago•0 comments

The usability of open source operating systems

https://posixcafe.org/blogs/2025/11/24/0/
1•j03b•5m ago•0 comments

Show HN: Veil a Drop-in PII redaction proxy for any LLM API

https://veil-api.com/
1•A5omic•6m ago•0 comments

Engineering Is Moving Up the Stack

https://sanderknape.com/2026/04/engineering-moving-up-the-stack/
1•SanderKnape•7m ago•0 comments

Show HN: SQLite Memory – Markdown based AI agent memory with offline-first sync

1•marcobambini•8m ago•0 comments

Brazil puts BYD on list of shame for workers' past slavery-like conditions

https://www.reuters.com/sustainability/sustainable-finance-reporting/brazilian-government-blackli...
2•kaycebasques•8m ago•0 comments

Who was "Not Even Wrong" first?

https://www.math.columbia.edu/~woit/wordpress/?p=13455
2•bookofjoe•8m ago•1 comments

E-Ink Art Frame – Low-Power Picture Display

https://www.rikulehtonen.fi/projects/einkframe
1•riqqule•10m ago•0 comments

Majority of Canadians open to joining EU, new poll suggests

https://www.theglobeandmail.com/canada/article-canada-eu-european-union-poll/
1•doener•10m ago•0 comments

Show HN: CalAction – Importing ICS files on iPhone made easy

https://calaction.mijndertstuij.nl
1•mijndert•10m ago•0 comments

Social Media Has Become a Freak Show

https://www.natesilver.net/p/social-media-has-become-a-freak-show
1•PaulHoule•10m ago•0 comments

Ask HN: How do you manage integrations at scale?

1•OdinSpecc•11m ago•0 comments

Toward an Embodied Model of Consciousness

https://www.frontiersin.org/journals/psychology/articles/10.3389/fpsyg.2026.1725236/full
1•svoice•11m ago•0 comments

Google to Use Natural Gas to Power Data Center in Texas

https://e360.yale.edu/digest/google-natural-gas-data-center
1•speckx•11m ago•0 comments

Consciousness may be shaped by the body's signals and how we experience time

https://thedebrief.org/new-study-suggests-consciousness-is-shaped-by-the-bodys-signals-and-how-we...
2•svoice•13m ago•0 comments

Scientists develop gene-edited wheat, can make toasted bread less carcinogenic

https://www.theguardian.com/science/2026/apr/07/crispr-gene-edited-wheat-toasted-bread-less-carci...
1•pseudolus•13m ago•0 comments

Show HN: UK Car Bingo

https://chrispattle.com/uk-car-bingo
1•pattle•14m ago•0 comments

In Production

https://lucumr.pocoo.org/2026/4/4/absurd-in-production/
1•surprisetalk•15m ago•0 comments

Audio Reactive LED Strips Are Diabolically Hard

https://scottlawsonbc.com/post/audio-led
2•surprisetalk•15m ago•0 comments

Happy Map

https://pudding.cool/2026/02/happy-map/
3•surprisetalk•15m ago•0 comments

Some Contemporary Heresies

https://kevinkelly.substack.com/p/some-contemporary-heresies
1•surprisetalk•15m ago•0 comments

Does Social Infrastructure Track with Loneliness?

https://loneliness.thirdplaceindex.org/
1•gmays•15m ago•0 comments

Intel says it's joining Elon Musk's 'Terafab' project

https://www.oregonlive.com/silicon-forest/2026/04/intel-says-its-joining-elon-musks-terafab-proje...
1•osnium123•15m ago•0 comments

Show HN: Shared team context for AI coding sessions with ambient intelligence

https://github.com/norrietaylor/distillery
2•torrienaylor•16m ago•0 comments

Show HN: I built a tool to stop debt collector calls using a federal law

1•dalvia62•17m ago•0 comments

Show HN: A music player built for Steam Deck with full gamepad navigation

1•kicumkicum•17m ago•0 comments
Open in hackernews

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

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

Comments

Lio•11mo 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•11mo 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/