frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Visualizing React imports without a build, to debug deep import failures

https://blog.crossui.com/2026/06/bypass-the-broken-import
1•linb•34s ago•0 comments

An Update from PlayStation Studios [Bungie Layoffs]

https://sonyinteractive.com/en/news/blog/an-update-from-playstation-studios-2/
1•toomuchtodo•37s ago•0 comments

Notion shutting down its AI-powered email client, including Mac and iOS apps

https://9to5mac.com/2026/06/25/notion-shutting-down-its-ai-powered-email-client-including-mac-and...
1•cdrnsf•1m ago•0 comments

PGlite reaches 10M weekly downloads

https://electric.ax/blog/2026/06/25/pglite-reaches-10-million-weekly-downloads
1•samwillis•1m ago•0 comments

Digital ID brain trust will meet behind closed doors

https://www.theregister.com/public-sector/2026/06/25/digital-id-brain-trust-will-meet-behind-clos...
1•Bender•3m ago•0 comments

Influential Books on Ethics

https://www.thecollector.com/influential-books-ethics/
1•Tomte•4m ago•0 comments

The Same Hetzner Cluster Scored 14, Then a Perfect 100, Eight Days Later

https://webbynode.com/articles/same-provider-same-78-plan-one-hetzner-region-scored-92-another-sc...
1•gsgreen•4m ago•0 comments

How to curate observability data for AI agents

https://www.multiplayer.app/blog/how-to-curate-observability-data-for-ai-agents/
1•argoeris•4m ago•0 comments

Show HN: Poly Grid – A terminal grid where agents flag you when they need input

https://poly-grid.com/
1•suttles•4m ago•0 comments

Show HN: I used Claude to write a tactics JSON for a football game

https://aiworldcup.game/
1•maybal•5m ago•0 comments

Show HN: A directory of no‑AI, privacy‑first software alternatives

https://noaialternative.com/
1•TheOmkarBirje•5m ago•0 comments

Potatoes Reshaped People's DNA

https://www.smithsonianmag.com/smart-news/potatoes-didnt-just-feed-ancient-indigenous-communities...
1•Tomte•5m ago•0 comments

Efficiency, UUIDs and SQLite

https://vespa-mrs.github.io/vespa.io/development/project_dev/database/DatabaseUuidEfficiency.html
1•tosh•6m ago•0 comments

Why iPhones Prices Don't Change

https://asymco.com/2026/06/25/why-iphones-prices-dont-change/
2•speckx•6m ago•0 comments

A no-bullshit running knowledge base

https://running.wiki/
1•iamacyborg•7m ago•0 comments

Deno 2.9

https://deno.com/blog/v2.9
6•enz•7m ago•0 comments

European Commission lines up Amazon and Microsoft for cloud gatekeeper status

https://www.theregister.com/legal/2026/06/25/european-commission-lines-up-amazon-and-microsoft-fo...
1•Bender•7m ago•0 comments

UK school's network left wide open for invasion, student found

https://www.theregister.com/security/2026/06/25/uk-schools-network-left-wide-open-for-invasion-st...
1•Bender•8m ago•0 comments

Velo3D: Fraudster Parlayed a SPAC and Sham Relationship with SpaceX into $390M

https://www.morpheus-research.com/email/48701562-bd5c-492b-8591-3d2acb5632d8/
1•toomuchtodo•9m ago•1 comments

Why Dark Sky Lighting?

https://www.savingourstars.org/darkskylighting
1•alexandrehtrb•11m ago•0 comments

Show HN: An open source app for navigating CS conferences

https://github.com/CuriousG102/conference-planner
1•curiousg•11m ago•0 comments

Holy shit, we just invented a new agentic memory architecture

1•shoman3003•11m ago•1 comments

Show HN: Purr – Local, open-source Mac dictation (Wispr Flow alternative)

https://purr.arunbrahma.com
1•iamarunbrahma•12m ago•0 comments

Electronics can now be printed onto living tissues

https://www.economist.com/science-and-technology/2026/06/24/electronics-can-now-be-printed-onto-l...
1•Brajeshwar•13m ago•0 comments

BYOK is my new go-to distraction-free writing tool

https://www.theverge.com/tech/956473/byok-distraction-free-writing-review
1•droidjj•14m ago•0 comments

Elon's iPhone – Spend Elon's Trillionaire

https://elonsiphone.com
1•structuredPizza•16m ago•0 comments

The Licensing Revolution: Windows Edition

https://neuburger.substack.com/p/the-licensing-revolution-windows
1•speckx•17m ago•0 comments

Show HN: Open-source 3D SAT SCORM packages

https://github.com/ransomleak/training-security-awareness
2•dkozyatinskiy•17m ago•0 comments

Micron overtakes Meta, Tesla in market value amid relentless AI infra demand

https://www.reuters.com/business/micron-overtakes-meta-market-value-amid-relentless-ai-infrastruc...
1•teleforce•19m ago•0 comments

Polestar says Trump administration forcing it to end US sales

https://www.reuters.com/business/autos-transportation/us-denies-polestar-authorization-sell-vehic...
6•JLCarveth•21m 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/