frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Agent - Native Mac OS X coding harness

https://github.com/macOS26/Agent
1•jv22222•6m ago•0 comments

The AI Market Is Hitting Peak Absurdity

https://garymarcus.substack.com/p/peak-absurdity-part-ii
4•drob518•9m ago•1 comments

Robot Police Dogs Powered by AI Take over Atlanta's Streets

https://www.newsweek.com/robot-police-dogs-powered-by-ai-take-over-atlantas-streets-11782889
2•xoa•11m ago•0 comments

Show HN: I built a Wikipedia based AI deduction game

https://sleuththetruth.com/
1•brikym•12m ago•0 comments

Claude.md Scorer: paste your file, get rubric score and rewrites

https://claude-md-scorer.surge.sh
1•autonomykit•13m ago•0 comments

Durable Object alarm loop: $34k in 8 days, zero users, no platform warning

3•thewillmoss•17m ago•0 comments

Entasis

https://en.wikipedia.org/wiki/Entasis
1•nomilk•19m ago•0 comments

How the Bitcoin protocol works (2013)

https://michaelnielsen.org/ddi/how-the-bitcoin-protocol-actually-works/
1•downbad_•19m ago•0 comments

The first graffiti wall (online)

https://freestencilmaker.com/the-wall
1•superluvdub•21m ago•1 comments

Chinese Electrotech Is the Big Winner in the Iran War

https://paulkrugman.substack.com/p/chinese-electrotech-is-the-big-winner
2•MaysonL•28m ago•0 comments

Pentagon Approaches Automakers, Manufacturers to Boost Weapons Production

https://www.wsj.com/politics/national-security/pentagon-approaches-automakers-manufacturers-to-bo...
1•cwwc•30m ago•0 comments

WebODM – Free and open source drone mapping software

https://webodm.org
1•alligray•39m ago•0 comments

Treasury Secretary Scott Bessent is preparing banks to collect citizenship data

https://www.cnbc.com/2026/04/15/banks-citizenship-data-collection-customer-accounts.html
6•pseudolus•42m ago•0 comments

The Universal Constraint Engine: Neuromorphic Computing Without Neural Networks

https://zenodo.org/records/19600206
2•skinney_uce•44m ago•0 comments

Shares in Allbirds surge after maker of wool sneakers announces pivot to AI

https://www.theguardian.com/business/2026/apr/15/allbirds-stock-ai-pivot
3•i7l•46m ago•1 comments

Tirith – Track your AI API spend with one CLI import

https://github.com/joedaviesio/tirith
1•joedaviesio•46m ago•0 comments

Show HN: The RUM Conjecture Explained [video]

https://www.youtube.com/watch?v=DGoI6T3SGfY
2•rcron•48m ago•0 comments

Amazon worker dies on warehouse floor. Workers told to keep going

https://finance.yahoo.com/sectors/healthcare/articles/just-dont-look-amazon-worker-170000180.html
12•latexr•49m ago•2 comments

YouTube now lets you turn off Shorts

https://www.theverge.com/streaming/912898/youtube-shorts-feed-limit-zero-minutes
42•pentagrama•49m ago•8 comments

Ants Find Food (2003)

https://mute-net.sourceforge.net/howAnts.shtml
1•downbad_•51m ago•3 comments

Substrate Independent

https://github.com/Technologicat/substrate-independent
1•skeledrew•52m ago•0 comments

Zappa: An AI Powered Mitmproxy

https://geohot.github.io//blog/jekyll/update/2026/04/15/zappa-mitmproxy.html
2•__cayenne__•52m ago•0 comments

Anthropic: Stop Shipping. Seriously.

https://www.reddit.com/r/ClaudeAI/s/C9WM4DHtqt
2•IndignantTyrant•55m ago•0 comments

The TL;DR on MCP: Why context matters and how to put it to work

https://www.figma.com/blog/the-tldr-on-mcp/
2•salkahfi•56m ago•0 comments

TruffleRuby 34: Ruby 3.4 Compatibility, 23% Faster Parsing, New 20x Faster

https://truffleruby.dev/blog/truffleruby-34-is-released
1•birdculture•56m ago•0 comments

Atlassian defends firing engineer for suggesting CEO is 'rich jerk'

https://www.afr.com/technology/atlassian-defends-firing-engineer-for-suggesting-ceo-is-rich-jerk-...
18•jamesfinlayson•1h ago•5 comments

Docker Hodgepodge Images

https://www.chainguard.dev/unchained/docker-hodgepodge-images
2•prdonahue•1h ago•0 comments

Bonafide.Work a platform for contractors to launch a website, manage bookings

https://bonafide.work/
1•fullstacking•1h ago•0 comments

Elegant D

https://www.youtube.com/watch?v=-kYM7ue7pqc
1•MikeShah•1h ago•1 comments

Switch: Faster, smarter AI audio conversion

https://www.nch.com.au/pad/switch.xml
1•NCHSoftware•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•11mo ago

Comments

Lio•11mo 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•11mo 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/