frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Claude's code comments – too much or just enough?

1•lalaleslieeeee•2m ago•0 comments

CharaLab

https://aicharalab.com/
1•zzkk•6m ago•0 comments

Deep in This Lake, a Contagious Cancer Is Spreading

https://www.nytimes.com/2026/07/22/science/contagious-cancer-catfish.html
1•gmays•8m ago•0 comments

Playing with Playbook; the scheduling app for astronauts (2015)

https://blogs.esa.int/iriss/2015/09/09/playing-with-playbook/
1•prawn•12m ago•0 comments

Show HN: SeaTicket – AI agent that resolve GitHub and Discord issues

2•Daniel-Pan•14m ago•0 comments

Show HN: Coast – Turn an iPhone into a control surface for a Mac

https://coast.masn.studio
1•MasonChen•15m ago•0 comments

Ask HN: What apps are you building?

6•totaldude87•20m ago•3 comments

Using an open model feels surprisingly good

https://matthewsaltz.com/blog/using-an-open-model-feels-surprisingly-good/
4•msaltz•20m ago•0 comments

An Uncomplicated Man

https://www.lrb.co.uk/the-paper/v48/n14/emily-wilson/an-uncomplicated-man
3•andsoitis•22m ago•0 comments

Zureka: A way forward to solving the thorniest issues in quantum mechanics

https://deivondrago.substack.com/p/zureka-a-way-forward-to-solving-the
2•mellosouls•24m ago•0 comments

Is This What Comes After AI Slop?

https://www.theatlantic.com/technology/2026/07/daggermouth-novel-bestseller-ai/688067/
2•acmnrs•24m ago•0 comments

A Gang of Thieves Pulled Off a Multimillion-Dollar Data Center Heist

https://www.nytimes.com/2026/07/12/magazine/data-center-heist.html
2•acdanger•24m ago•0 comments

EYG: A Programming Language for Humans

https://crowdhailer.me/2026-06-08/a-programming-language-for-humans/
9•crowdhailer•36m ago•1 comments

A $500 RL fine-tune of a 9B open model beat frontier models on catalog review

https://fermisense.com/when-machines-take-the-wheel/
5•ilreb•39m ago•0 comments

Review: Neil Postman's 'Amusing Ourselves to Death' (2016)

https://www.refsmmat.com/posts/2016-01-23-amusing-ourselves-to-death.html
3•jruohonen•44m ago•0 comments

Fundraiser to Bolster Monero's Security Through Automated Testing

https://old.reddit.com/r/Monero/comments/1v8exyy/fundraiser_to_bolster_moneros_security_through/
2•lunarthegrey•45m ago•0 comments

Venture Mindset

https://herbertlui.net/venture-mindset/
2•herbertl•47m ago•0 comments

Show HN: Edge Drop – The clipboard manager Windows 11 should have shipped with

https://github.com/Deepender25/Edge-Drop
3•Deepender25•48m ago•1 comments

Vakonomic Fluids

https://arxiv.org/abs/2607.18312
3•E-Reverance•49m ago•0 comments

Gemini Distillation Service

https://docs.cloud.google.com/gemini-enterprise-agent-platform/models/tuning/distillation
7•asawfofor•49m ago•0 comments

Show HN: Gemma 4 26B A4B running on an iPhone 17 Pro via model paging

https://noemaai.com/
2•armin976•52m ago•0 comments

China Begins Making Homegrown DUV Lithography Chipmaking Tools

https://www.reuters.com/world/china/china-begins-making-homegrown-duv-chipmaking-tools-informatio...
4•karakoram•55m ago•0 comments

Trusty Boot Key, a Ventoy Alternative

https://codeberg.org/aol/trusty-boot-key
2•mixmastamyk•56m ago•0 comments

Private Credit Backstop, How Private Equity Socializes Risk Through Insurers [pdf]

https://papers.ssrn.com/sol3/Delivery.cfm/7152239.pdf
2•senshan•56m ago•0 comments

Internet is no longer accessible?

14•cute_boi•58m ago•6 comments

The Forensic Audit of Project 545

https://www.bitchute.com/video/9r7XJ8ykLrhs/
2•untiledsource•1h ago•0 comments

Families in London temporary housing told they cant use inbuilt air conditioning

https://www.theguardian.com/society/2026/jul/27/homeless-families-london-temporary-housing-air-co...
4•stuaxo•1h ago•0 comments

Norway Salmon

https://www.abc.net.au/news/2026-07-28/how-norway-s-salmon-industry-became-a-global-behemoth/1069...
4•CHB0403085482•1h ago•0 comments

Tlbic: A Local Basic Income Proposal Built to Protect Human Dignity (v9.0)

https://drive.google.com/file/d/10YGI27bT6Vj00LlJuKwoaSYzG-cXNbwF/view?usp=drive_link
4•michikawa59•1h ago•1 comments

Gamma-ray pulsations reveal extreme 3.2-ms pulsar 3,900 light-years away

https://phys.org/news/2026-07-gamma-ray-pulsations-reveal-extreme.html
2•wglb•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/