frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Morgan Co. drinking water concerns, Meta defends Georgia data center operations

https://www.cbsnews.com/atlanta/news/aoc-presses-epa-over-morgan-county-drinking-water-concerns-t...
1•1vuio0pswjnm7•1m ago•0 comments

FCC to End Rule That Forces ISPs to List All Fees

https://arstechnica.com/tech-policy/2026/07/fcc-to-end-biden-era-rule-that-forces-isps-to-list-al...
1•BoiledCabbage•1m ago•0 comments

Show HN: Mkrrm – a waitlist only AI can use

https://mkrrm.com/
1•yo9090•2m ago•0 comments

Show HN: Agent Bus – IRC-style message bus for AI agents (MCP)

https://github.com/roriau0422/AgentBus
1•roriau•3m ago•0 comments

EPA Official Agrees to Review Meta Inc. Data Center Impacts on Water

https://news.bloomberglaw.com/environment-and-energy/epa-to-investigate-meta-data-center-link-to-...
2•1vuio0pswjnm7•4m ago•0 comments

Building a startup roguelite, need feedback

https://reaktorx.com/startup-simulator/
1•LucaStirbat•5m ago•0 comments

Show HN: Dotenv-Diff v3.0.0

https://github.com/Chrilleweb/dotenv-diff
1•chrillemn•6m ago•0 comments

Understanding the Dynamics of the AI Ecosystem with Pace Layers

https://www.dbreunig.com/2026/07/03/ai-ecosytem-pace-layers.html
1•gmays•8m ago•0 comments

Meta's Muse Image vs. the best image models you can use

https://www.tryai.dev/blog/meta-muse-image-vs-top-ai-image-models
1•hershyb_•9m ago•0 comments

Show HN: Gawk CLI – a live AI update feed in your terminal

https://github.com/Neelagiri65/gawk-cli
1•gawkdev•9m ago•0 comments

All Cars Sold in the EU Now Require a Camera Aimed at Your Face

https://allaboutcookies.org/eu-mandatory-distracted-driver-system
15•nickslaughter02•9m ago•3 comments

The Simple Genius of Jon Klassen

https://www.newyorker.com/books/page-turner/the-simple-genius-of-jon-klassen
1•petethomas•10m ago•0 comments

Nuxel – live wallpapers for macOS, including the lock screen

https://nuxel.io/
1•mjperx•10m ago•0 comments

Code maintainability plummets in the AI coding era

https://leaddev.com/ai/code-maintainability-plummets-in-the-ai-coding-era
1•gukov•11m ago•1 comments

Low-cost OSS maskless photolithography stepper for microfabrication (2025)

https://arxiv.org/abs/2510.15082
1•wslh•12m ago•0 comments

A Windows shutdown scheduler that detects when downloads finish

https://github.com/ElAlehYT/Windows-Shutdown-Scheduler
1•elalehyt•13m ago•0 comments

How Steve Hilton's Wife, Rachel Whetstone, Conquered California

https://sfstandard.com/2026/07/06/rachel-whetstone-steve-hilton-wife-california-governor/
1•aanet•17m ago•0 comments

Parallel development in tmux* with Git worktrees

https://github.com/raine/workmux
2•guga42k•17m ago•1 comments

Why TypeScript 7.0 Was Rewritten in Go

https://spf13.com/p/go-the-agentic-language/
8•porjo•20m ago•0 comments

Tribler – Privacy using Tor-inspired onion routing

https://tribler.org/index.html
1•rldjbpin•22m ago•0 comments

Write That Blog

https://writethat.blog/
1•cyndunlop•23m ago•0 comments

Men's average testosterone levels have halved in last 50 years

https://www.theguardian.com/society/2026/jul/07/mens-average-testosterone-levels-have-halved-in-l...
6•samizdis•24m ago•2 comments

We charge $10k a week to delete AI-generated code

https://odra.dev/slopfix/
4•zie1ony•24m ago•1 comments

The universe is an interference pattern. Here's the equation

https://github.com/kuwrom/one-field
1•kuwrom•26m ago•0 comments

LOL Storage Bug on Microsoft Windows 11 Could Eat Up 500 GB Disk Space

https://itsfoss.com/news/windows-11-cam-bug/
5•abdelhousni•28m ago•0 comments

A launch playbook your coding agent can run – it launched itself

https://github.com/tonypls/agentic-product-launch
1•t-van•29m ago•0 comments

IKEA-Style Wind Turbines Could Change Offshore Energy [video]

https://www.youtube.com/watch?v=YjoOBTO6Gtg
1•simonebrunozzi•31m ago•0 comments

Lingbot Vision

https://technology.robbyant.com/lingbot-vision
1•E-Reverance•32m ago•0 comments

Akira 4K Theatrical Re-release September 4

https://www.inverse.com/entertainment/akira-rerelease-2026
2•slyrus•33m ago•0 comments

Catnip lotion as effective as Deet at repelling mosquitoes

https://www.theguardian.com/global-development/2026/jul/07/catnip-lotion-as-effective-as-deet-at-...
1•speckx•35m 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/