frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Strongs Dictionary Open Scriptures

https://github.com/openscriptures/strongs
1•marysminefnuf•1m ago•0 comments

What makes life worth living?

1•koobear•1m ago•0 comments

Bothread – a local room where AI coding agents share one repo without collisions

https://github.com/AdamACE9/bothread
1•AdamACE9•1m ago•0 comments

IBM Vice Chairman: Our software is not being disrupted by AI

https://www.youtube.com/watch?v=GnAoKk0i4R8
1•tcp_handshaker•2m ago•0 comments

Show HN: ReadAloud – on-device, podcast-quality text-to-speech in the browser

https://tryreadaloud.com
3•DmitryDolgopolo•3m ago•0 comments

Kbd-1.0-Codex-Micro

https://twitter.com/OpenAIDevs/status/2077425991790870644
2•delduca•6m ago•2 comments

Joe Rogan Experience #2524 – Rupert Lowe [video]

https://www.youtube.com/watch?v=k29cMrVtVXY
1•dp-hackernews•6m ago•0 comments

Linus Torvalds Reaffirms That Linux Is Not "Anti-AI"

https://www.phoronix.com/news/Linux-Is-Not-Anti-AI
5•moelf•9m ago•1 comments

Modelplane

https://modelplane.ai
3•hasheddan•14m ago•0 comments

Flock to Pay for Vandalized Flock Cameras

https://ipvm.com/reports/flock-pay-vandalized-cameras
4•jhonovich•15m ago•1 comments

People in Many Countries Now View China More Positively Than the U.S.

https://www.pewresearch.org/global/2026/07/15/people-in-many-countries-now-view-china-more-positi...
2•dabinat•16m ago•0 comments

AVAL: A new open-source format for interactive video on the web

https://pixelpoint.io/aval/
1•nopinsight•18m ago•0 comments

75% of PlayStation 3 games are now playable on PC

https://videocardz.com/newz/rpcs3-says-75-of-playstation-3-games-are-now-playable-on-pc
2•LordDefender•18m ago•0 comments

Does Anthropic Buy Legitimacy Through Hiring?

https://artificialrhetoric.substack.com/p/every-anthropic-hire-is-a-legitimacy
1•Ben_Pota•18m ago•0 comments

Language Server Protocol Specification – 3.18

https://microsoft.github.io/language-server-protocol/specifications/lsp/3.18/specification/
2•qbane•19m ago•0 comments

Capture Clauses as Effects (Rust)

https://blog.yoshuawuyts.com/capture-clauses-as-effects/
1•dabinat•19m ago•0 comments

Useful Is Not Sufficient

https://tante.cc/2026/07/15/useful-is-not-sufficient/
3•rapnie•21m ago•0 comments

Optimizing a Ring Buffer for Throughput (2021)

https://rigtorp.se/ringbuffer/
2•mattrighetti•23m ago•0 comments

Save Standard Time

https://savestandardtime.com/
2•throw0101d•23m ago•0 comments

Maybe we could tone down the JavaScript (2016)

https://eev.ee/blog/2016/03/06/maybe-we-could-tone-down-the-javascript/
2•downbad_•24m ago•0 comments

Do YC companies get preference on the homepage?

1•e_i_pi_2•24m ago•0 comments

American AI is expensive. Some startups are turning to cheap Chinese models

https://www.npr.org/2026/07/15/nx-s1-5886476/startups-cheap-chinese-ai-models
2•makerdiety•24m ago•0 comments

US Debt Clock Live

https://www.us-debt-clock.com/
4•ourmandave•24m ago•0 comments

When agents talk: tool calls, handoffs, and two wallets

https://www.kulikowski.me/blog/agents-talking-to-each-other
1•kinlan•25m ago•0 comments

Funny item co-occurrences in 3.2M Instacart orders

https://rogerdickey.com/funny-item-co-occurrences-in-3-million-instacart-orders/
1•rogerdickey•28m ago•0 comments

Show HN: Pullrun – Run OCI Images as Containers or Firecracker MicroVMs

https://github.com/pullrun/pullrun
2•liquid64•29m ago•0 comments

Eight Writers on Facing the Blank Page

https://www.youtube.com/watch?v=TDH7yAWsyG0
1•brudgers•29m ago•0 comments

Show HN: 3,225 trials of LLMs guessing author age – confident and wrong

https://github.com/BraveAnn011/llm-author-misattribution
1•BrianneLee011•31m ago•0 comments

Show HN: Stillwind – PCB part selection as constraint solving

https://stillwind.ai
5•hannesfur•31m ago•2 comments

Show HN: Summa, a tool that annotates over whatever you're reading

https://summa.josephruocco.net
2•jruocco•32m 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/