frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

PS1 Games with DLSS 5 [video]

https://www.youtube.com/watch?v=-RvEt7eNFWk
1•bpierre•36s ago•0 comments

Teen Reading Slumps to Worst This Century Due to Surge in Screen Time

https://www.usnews.com/news/world/articles/2026-09-08/teen-reading-slumps-to-worst-this-century-d...
1•jnord•2m ago•0 comments

Buckmaster raising alarms that AI corporations snooped on their research

https://social.coop/@cwebber/117236126658335889
1•doener•2m ago•0 comments

An anti-RAG AI memory in Rust that intentionally forgets and hallucinates

https://github.com/jbsalles/Selmem
1•Jibs79•2m ago•0 comments

Feds accuse China of 'systematic' distillation of U.S. AI models

https://cyberscoop.com/us-accuses-chinese-ai-companies-distillation/
2•jnord•2m ago•0 comments

Object storage is all you need

https://www.tigrisdata.com/blog/object-storage-all-need/
1•jpsaccount•3m ago•0 comments

Flock worker calls police on investigator filming public camera installation

https://www.atlantanewsfirst.com/2026/09/08/flock-worker-calls-police-anf-chief-investigator-film...
1•driverdan•3m ago•1 comments

Synology BeeStation Plus review: An easy-to-use NAS

https://www.zdnet.com/tech/synology-beestation-plus-8-tb-review-2/
1•CrankyBear•6m ago•0 comments

Michael Dell Passes Jeff Bezos in Billionaire Rankings

https://www.forbes.com/sites/antoniopequenoiv/2026/09/08/michael-dell-passes-jeff-bezos-in-billio...
1•MehrdadKhnzd•9m ago•0 comments

What Happens When You Lock Claude in a macOS Sandbox

https://holtwick.de/blog/bx
1•ingve•11m ago•0 comments

A Century-Old Physics Puzzle Solved: The Arrow of Time

1•luckyl•12m ago•2 comments

Plaintext todo lists from tree structures

https://jatabag.com/
1•solaire_oa•14m ago•0 comments

Performance Foundations of Parallel and Distributed Reasoning Language Models

https://arxiv.org/abs/2608.27046
1•matt_d•21m ago•0 comments

Sauron: A free and open source terminal development environment

https://github.com/mlolson/sauron/
1•LordHumungous•24m ago•1 comments

Show HN: Auto-Rig Web – Zero-click 3D humanoid rigging in a Web Worker

https://github.com/nff747/auto-rig-web
2•nff747•26m ago•0 comments

Ask HN: Is September 8th AGI Day?

2•rvz•26m ago•1 comments

Canvas Browser

https://canvas-browser.com
1•bookofjoe•27m ago•0 comments

LG TV shown scanning LAN for third-party phones and other devices

https://arstechnica.com/gadgets/2026/09/lg-tv-shown-capable-of-tracking-user-activity-even-when-o...
9•Bender•32m ago•0 comments

Show HN: I found a weird old startup's LaserDisc

https://www.youtube.com/watch?v=AXOoyxisEMg
1•markchristian•32m ago•0 comments

Q&A with Mark Zuckerberg on Muse, the data center backlash

https://sources.news/p/mark-zuckerberg-meta-muse-ai-podcast-interview
1•utiiiD•32m ago•0 comments

EXtreme Go Horse (XGH) Process

http://brunomb.com/xgh/
1•variety8675•33m ago•0 comments

Colliding the Sum Checksum (2019)

https://mcpherrin.ca/2019/11/23/sum-collisions.html
1•mooreds•34m ago•0 comments

What nobody tells you about writing agent skills

https://newsletter.posthog.com/p/what-nobody-tells-you-about-writing
2•AntonZ234•34m ago•0 comments

How to manage a growing fleet of AI agents with Latitude

https://latitude.so/blog/how-to-manage-a-fleet-of-agents-with-latitude
2•mooreds•35m ago•0 comments

The Lottery of Life

https://substack.com/@rutgerbregman/note/c-332235472
1•higginsniggins•35m ago•0 comments

MCP Client Registration: Dinner Party or Nightclub?

https://fusionauth.io/blog/cimd-vs-dcr
1•mooreds•37m ago•0 comments

Hacking Cable: AI in post-exploitation operations

https://palisaderesearch.org/blog/hacking-cable
1•syumei•39m ago•0 comments

Show HN: Spatial memory for document OCR pipelines (zero dependencies)

https://github.com/aws-samples/sample-textract-field-memory
1•avnban•41m ago•0 comments

Stop making swap partitions–use swap files instead

https://gist.github.com/joshenders/c4960cec9c63a7b7d68ffa9543356c43
1•jenders•41m ago•1 comments

The Solo-Dev Ship Checklist – a 10-item pre-launch checklist for indie devs

https://merlin-ship-checklist.surge.sh
2•clawforger_mthx•41m 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/