frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

WeatherNext 3: Hourly global weather forecasts using live satellite data

https://blog.google/innovation-and-ai/models-and-research/google-deepmind/introducing-weathernext-3/
1•fourfire•3m ago•0 comments

Thank you for being part of the GitHub Classroom journey

https://github.com/orgs/community/discussions/205975
1•qainsights•4m ago•0 comments

Show HN: Octoweb – a free, open-source keyboard-first browser for macOS

https://octoweb.xyz/
1•donk8r•7m ago•0 comments

VS Code – Official Documentary [video]

https://www.youtube.com/watch?v=kHL3XzjpT5w
1•MehrdadKhnzd•11m ago•0 comments

I Want More AI at Dartmouth

https://www.theatlantic.com/ideas/2026/09/universities-prohibiting-ai-classroom/688509/
1•paulpauper•12m ago•0 comments

The Dark Side of Mindfulness

https://www.theatlantic.com/ideas/2026/09/meditation-willoughby-britton-downsides/688474/
2•paulpauper•12m ago•0 comments

Teaching robots mortal kombat moves [video]

https://www.youtube.com/watch?v=1Oo8h655VMM
1•anton5mith2•13m ago•0 comments

The state of AI in 2026: On the road to ROI

https://www.mckinsey.com/capabilities/quantumblack/our-insights/the-state-of-ai?cid=mgp_opr-eml-n...
1•giuliomagnifico•14m ago•0 comments

Judge blocks X rival from using Twitter name, but allows 'Tweet' for now

https://techcrunch.com/2026/09/04/judge-blocks-x-rival-from-using-twitter-name-but-allows-tweet-f...
2•rdmuser•19m ago•0 comments

Is your favorite plant-based milk good for the planet

https://www.nationalgeographic.com/magazine/article/how-your-favorite-plant-based-milk-alternativ...
2•teleforce•25m ago•1 comments

Seismic Isolation

https://www.ligo.caltech.edu/page/vibration-isolation
1•pillars•26m ago•0 comments

34 arrests made for drug trafficking at Burning Man as of Friday

https://www.rgj.com/story/life/arts/burning-man/2026/09/04/34-arrested-drug-trafficking-burning-m...
1•MilnerRoute•28m ago•0 comments

Vancouver strip club's Instagram taken down over sign featuring lake joke

https://www.vancouverisawesome.com/local-news/vancouver-strip-club-instagram-taken-down-sign-call...
4•anigbrowl•31m ago•1 comments

Datacenters Are the New Shale Oil

https://pracap.com/datacenters-are-the-new-shale-oil/
2•Ambolia•36m ago•0 comments

Show HN: Generate safe WebMCP tools from your OpenAPI spec or validation schemas

https://github.com/SouravInsights/webmcp-stack
1•SouravInsights•39m ago•0 comments

Show HN: Main Street Toolbox – Calculators for small business owners

https://mainstreettoolbox.com/
1•devinjin•41m ago•0 comments

LLM-as-a-Verifier

https://github.com/llm-as-a-verifier/llm-as-a-verifier
2•simonpure•45m ago•0 comments

Show HN: 4D Chess

https://4dchess.org/
1•nadermx•46m ago•0 comments

The Shape and Feel of the Post-AI Data Stack

https://www.iandmacomber.com/blog/post-ai-data-stack/
1•nlpnerd•49m ago•1 comments

B.C. man lost for 5 nights in mountains near Squamish shares survival story

https://www.cbc.ca/lite/story/9.7333975
1•colinprince•51m ago•0 comments

Trump signs order to remove endangered species protection for grey wolves

https://www.bbc.com/news/articles/c62k677d4lzo
13•Alien1Being•51m ago•0 comments

Show HN: Deterministic Synthetic Fingerprints from a Seed

https://github.com/1etu/actual-fingerprints
1•1etu•53m ago•0 comments

Surfing the Purple Ocean

https://architectureintel.com/surfing-the-purple-ocean-97907b95f3bb?postPublishedType=initial
1•younss•53m ago•0 comments

Seaside, Florida

https://en.wikipedia.org/wiki/Seaside,_Florida
1•hyperific•1h ago•0 comments

BLLM / ALLM – before and after LLM

1•orian•1h ago•0 comments

VMware Intros Private AI Cloud

https://www.nextplatform.com/cloud/2026/09/01/vmware-intros-private-ai-cloud-ai-factory-as-worklo...
1•jonbaer•1h ago•1 comments

I was offered money to scare you of AI [video]

https://www.youtube.com/watch?v=lPdmYMHrWKg
2•nomilk•1h ago•1 comments

Show HN: Laterbot – an anti-todo app for all the stuff you save for later

https://laterbot.app/
1•blitzritz•1h ago•2 comments

More of the universe appears to be more playable than we expected

https://contraptions.venkateshrao.com/p/the-curiously-playable-universe
1•thedreammachine•1h ago•0 comments

The Psychological Warfare of the Modern Sterile Interior

https://lussoarchive.substack.com/p/the-psychological-warfare-of-the
2•evo_9•1h 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/