frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Yoshua Bengio's non-profit LawZero to build safe AI

https://www.theglobeandmail.com/business/article-yoshua-bengio-lawzero-receives-300-million-from-...
1•heresie-dabord•37s ago•0 comments

Type Systems You Might Not Know (But Will Love)

https://www.wearedevelopers.com/videos/100067-type-systems-you-might-not-know-but-will-love
1•silenttwin•1m ago•0 comments

What failed when I trained an object detector on synthetic images only

https://datasint.tech/rendered-training-data.html
1•stepangalickov•6m ago•1 comments

How to add comments to a static site using GitHub Pull Requests(2023)

https://nateeagle.com/posts/how-to-add-comments-to-a-static-site-using-github-pull-requests/
1•fv3y•9m ago•0 comments

When "Review" Becomes Permission: A Prompt Injection Lab

https://rsec.uk/insights/when-review-becomes-permission-a-prompt-injection-lab-mu5tsobx
1•Irsheidat•9m ago•0 comments

Hunting the Wild Vibrotruck

https://hackaday.com/2026/09/09/hunting-the-wild-vibrotruck/
1•sohkamyung•11m ago•0 comments

AI kill switch, explained: 'It's not too little, but it's probably too late'

https://www.cnbc.com/2026/09/19/ai-kill-switch-explained.html
1•pseudolus•12m ago•0 comments

Show HN: ParentPackIt – a mobile checklist app designed for parents and kids

https://apps.apple.com/us/app/parentpackit-kids-checklist/id6748917901
1•ashkans_dev•12m ago•0 comments

Hackers breach OpenAI using Claude tools, gaining access to employee accounts

https://www.tomshardware.com/tech-industry/cyber-security/hackers-breach-openai-using-claude-tool...
1•thunderbong•13m ago•0 comments

Is startpage.com mining Bitcoin when you open it?

1•roscas•13m ago•0 comments

The Myth of the Cynical Genius (2021)

https://www.psychologytoday.com/us/blog/trust-games/202111/the-myth-the-cynical-genius
1•throw0101a•15m ago•0 comments

AI companies sued for "colluding" to slow down

https://news.bloomberglaw.com/litigation/openai-anthropic-google-spacexai-hit-with-antitrust-lawsuit
1•trippy•21m ago•0 comments

What happened to the front end while you weren't watching

https://davidpoblador.com/deep-dives/what-happened-to-the-frontend/
3•kciter•23m ago•0 comments

Sweden, Germany deploy 1,500 troops to Gotland in Baltic exercise

https://www.euractiv.com/news/sweden-germany-deploy-1500-troops-to-gotland-in-baltic-exercise/
1•doener•24m ago•0 comments

TeraPHY Optical I/O Chiplet (8 Tbps bi-directional bandwidth, 10ns latency)

https://ayarlabs.com/teraphy/
1•peter_d_sherman•25m ago•0 comments

Is modern consumer technology less interesting

https://codeutopia.net/blog/2026/09/19/is-modern-consumer-technology-less-interesting/
1•meetpateltech•25m ago•0 comments

The first sub-millisecond router to execute trades with zero native balance

https://rhopool.com/
1•lachlanallen45•28m ago•0 comments

Firefox 156 arrives with a forest of forks in its wake

https://www.theregister.com/software/2026/09/19/firefox-156-arrives-with-a-forest-of-forks-in-its...
1•phoronixrly•28m ago•2 comments

Bull Beats Out HPE for Next-Gen Lumi AI Supercomputer

https://www.nextplatform.com/hpc/2026/09/17/bull-beats-out-hpe-for-next-gen-lumi-ai-supercomputer...
1•rbanffy•29m ago•0 comments

U.S. House Votes to Make Am Radio Standard in New Cars

https://www.roadandtrack.com/news/a73773819/us-house-of-representatives-votes-make-am-radio-stand...
2•yread•30m ago•1 comments

Typst Makes Big Strides

https://lwn.net/Articles/1092993/
1•mpweiher•31m ago•0 comments

Inside the suddenly explosive world of AI safety

https://www.theverge.com/ai-artificial-intelligence/996563/ai-safety-research-metr-redwood-openai...
2•ilamont•31m ago•0 comments

Programmable Photonic Circuits: Flexible light manipulation on IC's (2020) [pdf]

https://www.photonics.intec.ugent.be/download/pub_4605.pdf
1•peter_d_sherman•31m ago•0 comments

The Pain Axis: LLMs Represent Self-Directed Harm and Act to Relieve It

https://arxiv.org/abs/2609.16247
1•amichail•33m ago•0 comments

Another Instinct Article

https://jamesin.substack.com/p/another-instinct-article
1•jbredeche•34m ago•0 comments

My Productivity System in 2026

https://www.nunodonato.com/blog/my-productivity-system-in-2026/
1•nunodonato•36m ago•1 comments

Origami Artist Spends 24 Hours Folding a Working-Looking Typewriter from 1 Sheet

https://www.thatericalper.com/2026/09/18/origami-artist-spends-24-hours-folding-a-working-looking...
2•trauco•37m ago•0 comments

Shellit – Open-source SSH client with self-hosted E2EE sync and MCP

https://github.com/kobaltgit/Shellit
1•kobaltGIT•37m ago•0 comments

Show HN: Kobblestone – Minecraft on Kubernetes

https://github.com/kobblestoneio/kobblestone
2•devmojo•41m ago•0 comments

Show HN: AliasFleet – Email aliases with in-app sending. No reverse-alias hassle

https://www.aliasfleet.com
1•Farrynet•43m ago•0 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/