frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Beautiful visually organized bookmark manager Chrome extension

https://chromewebstore.google.com/detail/bookmarkr-—-visual-bookma/lianafemkbankodapdaokiefoffi...
1•mnomansd•27s ago•0 comments

Hrs Humanoids In-the-Wild Dataset

https://bitrobot-foundation.github.io/humanoids-in-the-wild-500-hours/
1•Tycho87•4m ago•0 comments

Show HN: MAVS-GC – An Open-Source Governance Architecture for AI Systems

https://docs.google.com/document/d/1h7qpDgLv2PyIB6ZlLED5qGDeUbnNbITzNEspmsxA7ZE/edit?usp=sharing
1•infernusreal•5m ago•0 comments

Best of AI is now open source

https://bestofai.io/journal/best-of-ai-is-now-open-source/
3•dariubs•7m ago•0 comments

The future of large files in Git is Git

https://gopeekapp.blogspot.com/2026/06/the-future-of-large-files-in-git-is-git.html
1•guptalog•8m ago•0 comments

Free-threaded Python: past, present, and future

https://lwn.net/Articles/1078367/
1•prakashqwerty•14m ago•1 comments

The US Army Issued Ocarinas to Soldiers in World War II

https://www.flutetunes.com/articles/my-flute-goes-to-war/
2•tomcam•14m ago•0 comments

Domino Tiling: From Dynamic Programming to Finite Fields

https://www.omegasyntax.com/domino/
1•vbrhjajcn•19m ago•0 comments

632nm Podcast: John Bowers – Silicon Photonics and the Future of AI Scaling [video]

https://www.youtube.com/watch?v=fjQ3Yorw-Ps
1•wwarner•21m ago•0 comments

Kids Act Would Require Age Checks to Get Online

https://www.eff.org/deeplinks/2026/06/kids-act-would-require-age-checks-get-online
2•mdp2021•24m ago•1 comments

Bluetooth T9 keyboard for smartphones (and other things)

https://jrainimo.com/build/2026/05/t9/
2•rcarmo•25m ago•0 comments

Chasing Fable – An illustrated engineering tale

https://adapt.com/blog/chasing-fable
1•ashumz•31m ago•0 comments

Every match of the 2026 World Cup as a generative poster

https://matchprint.info/
3•coinfused•33m ago•1 comments

Conductor Cloud

https://www.conductor.build/docs/cloud-beta
1•sklinkert•34m ago•0 comments

One-two punch delivered in global operation disrupts cybercrime "assembly line"

https://arstechnica.com/security/2026/06/one-two-punch-delivered-in-global-operation-disrupts-cyb...
2•joozio•35m ago•0 comments

LLM Refusal Behavior on Open-Weight Model

https://zentara.co/blog/llm-refusal-behavior/
1•tvalentius•36m ago•0 comments

Wikipedia Workers in Britain set global first by seeking union recognition

https://utaw.tech/news/wikipedia-recognition
6•chobeat•38m ago•2 comments

Ask HN: Optimal Journaling Book Choice?

1•herodoturtle•42m ago•0 comments

DRAM Price Fixing Scandal

https://en.wikipedia.org/wiki/DRAM_price_fixing_scandal
5•kamranjon•51m ago•0 comments

With crossplanes, Helm is all you need

https://medium.com/zencity-engineering/now-the-infrastructure-is-boring-too-and-thats-still-a-com...
1•alonisser•52m ago•1 comments

Cogent France: « perform an orderly shutdown of your equipment »

https://www.mail-archive.com/frnog@frnog.org/msg80526.html
1•southerntofu•55m ago•0 comments

Did AI write this article?

https://www.economist.com/graphic-detail/2026/06/16/did-ai-write-this-article
3•ijidak•1h ago•0 comments

Is AI Coming for Our Jobs?

https://jacobin.com/2026/02/ai-technology-productivity-growth-job-loss
2•one33seven•1h ago•0 comments

VSCode Blogs

https://code.visualstudio.com/blogs
2•saikatsg•1h ago•0 comments

The Tokenpocalypse:Companies Are Scrambling to Stop Spending So Much on AI

https://www.404media.co/the-tokenpocalypse-is-here-companies-are-scrambling-to-stop-spending-so-m...
2•Gedxx•1h ago•1 comments

Show HN:Another alternative against Codex Record and Replay

https://www.visualbuild.me
2•visualbuildme•1h ago•0 comments

Wikipedia advocacy shapes LLM values

https://arxiv.org/abs/2606.24890
2•50kIters•1h ago•0 comments

Make AI Boring Again

https://charitydotwtf.substack.com/p/make-ai-boring-again
3•BerislavLopac•1h ago•0 comments

Robert Schiller: This Doommaxxing Has Got to Stop

https://www.nytimes.com/2026/06/22/opinion/ai-doom-jobs-economy.html
2•benwen•1h ago•1 comments

Questions

https://forms.cloud.microsoft/r/PZDe3Z3Nzdhttps://forms.cloud.microsoft/r/PZDe3Z3Nzd
3•InjiChoe•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/