frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

I Remain a Skeptic

https://blog.jsbarretto.com/post/i-remain-a-skeptic
1•lproven•18s ago•0 comments

NYS Fair pays $40k to keep $1 potato booth alive with new vendor

https://www.newyorkupstate.com/nys-fair/2026/08/nys-fair-pays-40000-to-keep-iconic-1-potato-booth...
1•paulpauper•18s ago•0 comments

Masculinity Around the World

https://papers.ssrn.com/sol3/papers.cfm?abstract_id=7268859
1•paulpauper•34s ago•0 comments

Promises, Promises

https://rgrier88.github.io/modi-promises/
1•paulpauper•48s ago•0 comments

Show HN: Bento Term – native tmux client with agent states and voice input

https://bentoai.dev/term/
1•novashang•4m ago•0 comments

A controversial Alzheimer's surgery is said to reverse symptoms

https://www.nature.com/articles/d41586-026-02448-x
2•jeffreyrogers•4m ago•0 comments

Briefing on Extinction-Level AI Threats

https://intelligence.org/briefing/
1•yurivish•9m ago•0 comments

Relentlessly Resourceful (2009)

https://www.paulgraham.com/relres.html
1•tosh•9m ago•0 comments

The Book Is a Book, Not Disembodied Information

https://nntaleb.medium.com/the-book-is-a-book-not-disembodied-information-a3fa583b9e8a
1•herbertl•13m ago•0 comments

DeepSeek Harness Desktop Version

https://github.com/hairyf/deepseek-harness-desktop
1•mehraban•14m ago•0 comments

Show HN: Clair APIs – an active jobs dataset from public ATS boards

https://clair.im/resources/datasets/active-jobs
1•kaanersoy•16m ago•0 comments

The paradox of the perfect code editor (2021)

https://austinhenley.com/blog/perfecteditorparadox.html
1•azhenley•17m ago•0 comments

US to tell partners they must pick sides in AI race with China

https://www.reuters.com/world/china/us-tell-partners-they-must-pick-sides-ai-race-with-china-2026...
5•jonbaer•18m ago•1 comments

Godfather of AI: "If you sleep well tonight..." [video]

https://www.youtube.com/watch?v=iVXerna_D4A
3•Izmaki•18m ago•0 comments

Is AI Coding Effecting Our Mental Health? [video]

https://www.youtube.com/watch?v=iPUn1Fnfn0k
1•tosh•21m ago•0 comments

Socync – Automatic social media posting and scheduling

https://wordpress.org/plugins/socync/
1•sepokroce•21m ago•0 comments

Qwen 3.8 27B at 2x speed on a 5090

https://github.com/jtc268/balto-speedrunner
2•husky8•22m ago•0 comments

We Need to Talk About Leopold [video]

https://www.youtube.com/watch?v=rE75WvOtcu8
1•mgh2•23m ago•0 comments

I built Fusekit, a place to deploy internal web apps

https://fusekit.cloud/
1•harshulgoel•23m ago•0 comments

A 25-year-old video patent just expired, ending a legal headache for Linux

https://www.xda-developers.com/25-year-old-brazilian-video-patent-expired-legal-headache-linux/
5•theanonymousone•25m ago•0 comments

How to get a matmul kernel into the top percentile (worklog)

https://philipbotros.github.io/2026/08/11/matmul-worklog.html
1•gietema•25m ago•0 comments

Show HN: Bluetooth keyboard and Windows 95 cursor on reMarkable

https://twitter.com/martino_piaggi/status/2088659565168509424
1•martinopiaggi•26m ago•0 comments

The origin of vertebrate teeth and evolution of sensory exoskeletons

https://www.nature.com/articles/s41586-025-08944-w
1•BiraIgnacio•26m ago•1 comments

Find duplicate code across nine languages

https://deslop.live/
2•cebert•26m ago•0 comments

Show HN: Velorn – an open-source desktop video editor with MCP agent control

https://github.com/VelornLabs/velorn
1•j_aime•27m ago•0 comments

Show HN: MyFirst.News – AI-generated podcast for curious kids

https://myfirst.news/
1•hakunin•29m ago•1 comments

Ask HN: You have model orders of magnitudes faster than transformer, so?

1•aunekiaru•30m ago•0 comments

Humanists Have Done Nothing Wrong

https://defector.com/humanists-have-done-nothing-wrong
1•rlio•30m ago•0 comments

JOE – Joe's Own Editor

https://joe-editor.sourceforge.io/
1•smartmic•30m ago•0 comments

Show HN: Ansi.md – Everything I know about building modern CLI apps

https://ansi.md
1•gurgeous•32m 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/