frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

David Hayes: Boring Software, Clear Incentives, and Better Checklists [audio]

https://maintainable.fm/episodes/david-hayes-boring-software-clear-incentives-and-better-checklists
1•mooreds•1m ago•0 comments

Coding Agent Horror Stories: The Command You Approved

https://www.docker.com/blog/coding-agent-horror-stories-the-command-you-already-approved/
1•soheilpro•1m ago•0 comments

Show HN: Chessvex – a chess roguelike in Rust and WebAssembly

https://chessvex.com/
1•diziet•1m ago•0 comments

What is Open Energy Modelling (open source?)

https://www.youtube.com/watch?v=YL3jibyEM9k
1•andreashd11•2m ago•0 comments

React Compiler Linting Just Got a Rust-Native Speedup in Oxlint

https://master.dev/blog/react-compiler-linting-just-got-a-rust-native-speedup-in-oxlint/
1•ibobev•5m ago•0 comments

Can AI Coexist with Privacy? Proton's Andy Yen Says It Will Have To

https://www.wired.com/story/the-big-interview-podcast-andy-yen-proton/
1•thm•5m ago•0 comments

A Multimedia Sketchpad

https://beyondloom.com/blog/sketchpad.html
2•ibobev•7m ago•0 comments

Know who sold your email address

https://13rt.com
1•kindsocial•7m ago•0 comments

The Art of Chip-8

https://beyondloom.com/blog/artofchip8.html
1•ibobev•7m ago•0 comments

Why I reimplemented LVM (with worse guarantees)

https://depot.dev/blog/why-i-reimplemented-lvm
1•eatonphil•7m ago•0 comments

US advisory body says China's data dominance gives it AI advantage

https://www.reuters.com/world/china/us-advisory-body-says-chinas-data-dominance-gives-it-ai-advan...
2•geox•8m ago•0 comments

Show HN: Code walkthroughs you can send as a file

https://guides.show/
2•ramoz•8m ago•0 comments

I let my AI scheme with my friends' AIs

https://rebeccadai.substack.com/p/little-guys-who-gossip-what-happens
1•randomparticlez•8m ago•0 comments

How the Heck Do Synthesizers Work?

https://perthirtysix.com/how-the-heck-do-synthesizers-work
1•shriracha•8m ago•0 comments

A Tale of Two Countries

https://www.brookings.edu/articles/a-tale-of-two-countries/
1•mooreds•8m ago•0 comments

Kernel 7.2: RK3588 media, smarter GPU memory, and Rust foundations

https://www.collabora.com/news-and-blog/news-and-events/kernel-7.2-rk3588-media,-smarter-gpu-memo...
2•losgehts•9m ago•0 comments

Categorization with NLP

https://softwaremaniacs.org/blog/2026/07/30/categorization-with-nlp/en/
1•speckx•9m ago•0 comments

So Far This Year, China Has Wasted Enough Clean Energy to Power Mexico

https://e360.yale.edu/digest/china-renewable-curtailments
3•Brajeshwar•9m ago•0 comments

Babies born under sugar rationing grew into adults with lower cancer risk

https://theconversation.com/babies-born-under-sugar-rationing-grew-into-adults-with-lower-cancer-...
4•zeristor•9m ago•0 comments

Show HN: Codewindow – Picture in picture for terminal agents

https://codewindow.app/
1•warthog•9m ago•0 comments

Animated ASCII art with HTML video and canvas elements

https://sometimes.digital/posts/ascii-art-video-stream/
1•surprisetalk•11m ago•0 comments

Show HN: KeepNow – one command turns a coding session into a clean note

https://keepnow.app/
1•hikerell•12m ago•0 comments

What We Learned Moving Our Agent Loops from Anthropic to GLM

https://getunblocked.com/blog/moving-agent-loops-from-anthropic-to-glm/
4•dennispi•13m ago•0 comments

Show HN: My agents kept hallucinating APIs, so I built them a headless IDE

https://context-engine.app
1•welf•14m ago•0 comments

Show HN: Your 3D Scan Labels Are Trash

https://rerun.io/blog/arkitscenes-slam
2•pablovelagomez•15m ago•0 comments

Namespace Branching

https://turbopuffer.com/docs/branching
1•softwaredoug•15m ago•0 comments

Who Benchmarks the Benchmark?

https://shukla.io/blog/2026-08/gym.html
1•BinRoo•16m ago•0 comments

Rooting the Cadillac Lyric Part 1

https://surrealdev.com/rooting-the-cadillac-part-1-lay-of-the-land/
1•zsherf•17m ago•0 comments

Burn Rate: The Number That Decides How Long You Survive

https://sociallinker.org/metrics-calculator
1•athrayasaas•18m ago•0 comments

Show HN: Rasterly – a cheaper screenshot and PDF API with a live demo

https://rasterly.dev/
1•latcom•18m 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/