frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

NASA's plan for nuking Gateway and sending it to Mars

https://arstechnica.com/space/2026/03/here-is-nasas-plan-for-nuking-gateway-and-sending-it-to-mars/
1•rbanffy•50s ago•0 comments

DarkSword Exploit Chain, Unpackaged

https://github.com/DarKDevz/DarKSward
1•lode•3m ago•0 comments

Show HN: Feed.news – A public news feed for anything you care about

https://feed.news/
1•marche101•4m ago•0 comments

American Diner Gothic

https://www.thenewatlantis.com/publications/american-diner-gothic
2•rienbdj•8m ago•0 comments

The Download: reawakening frozen brains, and the AI Hype Index returns

https://www.technologyreview.com/2026/03/25/1134636/the-download-reawakening-frozen-brains-and-th...
1•joozio•11m ago•0 comments

Granola raises $125M at $1.5B valuation

https://techcrunch.com/2026/03/25/granola-raises-125m-hits-1-5b-valuation-as-it-expands-from-meet...
3•doppp•14m ago•0 comments

Show HN: Find Customer Service Phone Numbers

https://dialindex.com
1•yosid•17m ago•0 comments

Two year old Android Bluetooth bug fixed, no more root required for librepods

https://issuetracker.google.com/issues/371713238
1•Lunar5227•17m ago•1 comments

FreeBSD remote DoS vulnerability via TCP – FreeBSD-SA-26:06.tcp

https://www.freebsd.org/security/advisories/FreeBSD-SA-26:06.tcp.asc
1•ggeorg•18m ago•1 comments

Spectre GCR Mac emulator for Atari ST manual (1989)

https://archive.org/details/Spectre_GCR_Manual_Macintosh_emulator_1989
2•TMWNN•20m ago•1 comments

Gerard of Cremona

https://en.wikipedia.org/wiki/Gerard_of_Cremona
1•teleforce•22m ago•0 comments

Rich Content AI Chat

https://99helpers.com/tools/ai-chat
1•nickk81•25m ago•1 comments

Accidental $70k Google Pixel Lock Screen Bypass

https://bugs.xdavidhu.me/google/2022/11/10/accidental-70k-google-pixel-lock-screen-bypass/
1•Jacobinski•27m ago•0 comments

Porting Go's io package to C

https://antonz.org/porting-go-io/
2•ingve•31m ago•1 comments

Skeleton of Three Musketeers' d'Artagnan may have been found under Dutch church

https://news.sky.com/story/skeleton-of-three-musketeers-dartagnan-may-have-been-found-under-dutch...
2•austinallegro•35m ago•0 comments

Wittgenstein's Contribution to Philosophy [video]

https://www.youtube.com/watch?v=sVKWlEq09tQ
1•daverol•37m ago•0 comments

Honda and Sony Scrap EVs

https://www.ft.com/content/b85869e1-0f69-4ab3-aa30-1d63d60ee3c9
1•mnming•39m ago•0 comments

macOS 26.4 Introduces New Security Feature for Terminal Commands

https://www.macrumors.com/2026/03/25/macos-26-4-terminal-security-feature/
1•tosh•39m ago•0 comments

70% of new software engineering papers on ArXiv are LLM related

https://shape-of-code.com/2026/03/22/70-of-new-software-engineering-papers-on-arxiv-are-llm-related/
1•jruohonen•41m ago•1 comments

The Sensor Debate: Vision, Lidar, and the Path to Real Autonomy

https://www.nuro.ai/blog/the-sensor-debate-vision-lidar
1•Jadrago•45m ago•0 comments

Crypto regime detection API: 10 weighted signals, 9 data sources

https://getregime.com
1•GunnarThor•46m ago•0 comments

Swift 6.3 Released

https://www.swift.org/blog/swift-6.3-released/
4•ingve•48m ago•0 comments

Solved Game

https://en.wikipedia.org/wiki/Solved_game
2•thunderbong•48m ago•0 comments

Is X down?

3•avnsv•52m ago•6 comments

Building apps after a 9-to-5 without burning out

https://bacist.com/avoid-burnout/
2•baCist•54m ago•0 comments

Polymarket affiliates are spreading misinformation on X

https://www.cjr.org/tow_center/polymarket-affiliates-are-spreading-misinformation-on-x.php
1•giuliomagnifico•55m ago•0 comments

Show HN: I built a free alternative to Screen Studio and Focusee

https://rookieclip.com/
1•this-is-shreya•55m ago•1 comments

Architecture Is Not a Blueprint. It's a Set of Decisions

https://scottmillett.medium.com/architecture-is-not-a-blueprint-its-a-set-of-decisions-61c4692f5222
1•kiyanwang•55m ago•0 comments

Show HN: Book Grounded AI Learning

https://teach-me.replit.app/
1•techypicky•58m ago•2 comments

Duso

https://duso.rocks/
2•kentbrew•58m 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•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/