frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Massachusetts prosecutors run their offices on software from the dial-up era

https://nasser.blog/dial-up-justice/
1•Michelangelo11•55s ago•0 comments

Environmentalists Targeted Exxon Mobil. Then Hackers Targeted Them

https://www.nytimes.com/2020/06/09/nyregion/exxon-mobil-hackers-greenpeace.html
1•Djens•2m ago•0 comments

Supply-chain hygiene for Emacs: LLM review of package upgrades

https://blog.fidelramos.net/software/emacs-straight-ai-review
1•fidelramos•6m ago•0 comments

Jason Arday: a question of academic standards (by Richard Dawkins)

https://unherd.com/2026/08/jason-arday-a-question-of-academic-standards/
1•Michelangelo11•8m ago•0 comments

Countersign – one kill switch and audit log for AI agents across wallet vendors

https://countersign.network
1•screan•11m ago•0 comments

Show HN: Tyle – a Kanban board with statistical cycle time forecasting built in

https://tyle-brown.vercel.app/about
1•byronical•12m ago•0 comments

OpenAI provides more details on the Hugging Face incident

https://www.heise.de/en/news/OpenAI-provides-more-details-on-the-Hugging-Face-incident-11403391.html
2•slow_typist•22m ago•1 comments

Just built Dot. Would love feedback

https://www.use-dot.com
1•r_gaur•24m ago•1 comments

What's new in Swift: July 2026 Edition

https://swift.org/blog/whats-new-in-swift-july-2026/
2•frizlab•25m ago•0 comments

How to Notice and Avoid Scams

https://nonconfirmed.com/how-to-notice-and-avoid-scams
1•colenikol2•27m ago•0 comments

You can make any software you want now, then why don't you?

1•sarmadgulzar•28m ago•2 comments

Show HN: Turn an idea into a product you can order

https://www.luphra.com
1•stochtinkerer•33m ago•1 comments

DeepMind's WeatherNext model achieves breakthrough forecasting cyclones

https://deepmind.google/blog/weathernext-ai-model-achieves-breakthrough-in-forecasting-cyclones/
2•bhavansig•36m ago•1 comments

Thimbleweed Park 2 Dev Blog

https://blog2.thimbleweedpark.com/twp2_tech/
1•MrVandemar•41m ago•0 comments

Show HN: Draw Your Room. Share Your Plan

https://freeroomplanner.com/
1•wowinter15•46m ago•0 comments

The phone book that led us to Assad's spy chief in hiding

https://www.bbc.co.uk/news/articles/c4gyrzn8p94o
1•justworks•51m ago•0 comments

Show HN: I mapped business competition density across NYC, block by block

https://worththespot.com/
1•losas28066•51m ago•0 comments

Show HN: Lensa – Open-source MCP connectors and skills for ChatGPT

https://github.com/mitrotasios/lensa-mcp
1•amitrotasios•52m ago•0 comments

Don't Build Mindreading

https://keller.substack.com/p/dont-build-mindreading
1•celer•59m ago•0 comments

Show HN: Hosted LLM Wiki

https://getmana.md/
2•zintus•1h ago•0 comments

Rcarmo/wrdp: Experimental xrdp/sesman-like setup for Wayland-backed desktops

https://github.com/rcarmo/wrdp
1•rcarmo•1h ago•0 comments

World-class higher education targeting <$10k for degree

https://khanted.org
1•JSR_FDED•1h ago•0 comments

CATL Secures 2GWh Sodium-Ion Storage Deal with Solarpro for Eastern Europe

https://fuelcellsworks.com/2026/07/21/battery/catl-secures-2gwh-sodium-ion-storage-deal-with-sola...
1•jamesblonde•1h ago•1 comments

Tlbic v11.0 (French Edition): Bottom-Up Governance and AI Audit

https://drive.google.com/file/d/1XLbJ-tTlnFNgrzRxlYXE4FmVSpSoQMIm/view?usp=drive_link
1•michikawa59•1h ago•1 comments

Grammelot

https://en.wikipedia.org/wiki/Grammelot
1•schandmaul•1h ago•0 comments

The Fifteen-Minute Principal Engineer

https://markatwood.substack.com/p/the-fifteen-minute-principal-engineer
1•slyall•1h ago•0 comments

Building my own project management tool on Cloudflare

https://tom-dickson.com/blog/projektor-mcp-issue-tracker-cloudflare-workers/
1•tajd•1h ago•1 comments

Code harness for DeepSeek V4? OpenCode vs. pi vs. jcode vs. reasonix

https://grigio.org/which-is-the-best-coding-harness-for-deepseek-v4-opencode-vs-pi-vs-jcode-vs-re...
1•grigio•1h ago•0 comments

Google doesn't need the LLM crown

https://www.semafor.com/article/08/07/2026/google-doesnt-need-the-llm-crown
1•theanonymousone•1h ago•1 comments

Show HN: Appealr – 15s live face-offs ranked by human votes (not AI)

https://appealr.vercel.app
1•arian_•1h 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/