frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Redesigning My Personal Website with Claude Code

https://andlukyane.com//blog/redesigning-my-personal-website
1•Artgor•3m ago•0 comments

Gren 26.03: Parser Improvements

https://gren-lang.org/news/260323_gren_26_03/
1•Skinney•5m ago•0 comments

Claude Usage Monitor – macOS menu bar app to track Claude.ai usage

https://github.com/theDanButuc/Claude-Usage-Monitor
1•danbutuc•10m ago•0 comments

Jazz CRJ9 at New York on Mar 22nd 2026, collision with fire truck on runway

https://avherald.com/h?article=536bb98e
2•Shank•13m ago•0 comments

Creating Better Security Guidance and Code with LLMs [video]

https://www.youtube.com/watch?v=t9WUNIAwgEw
1•mooreds•14m ago•0 comments

Being a Morning Person

https://herman.bearblog.dev/becoming-a-day-person/
2•articsputnik•14m ago•0 comments

No Signs of AI Replacing Offshore Workers

https://www.apolloacademy.com/no-signs-of-ai-replacing-offshore-workers/
2•helsinkiandrew•15m ago•0 comments

Qt 6.11 Released

https://www.qt.io/blog/qt-6.11-released
3•jrepinc•16m ago•0 comments

What we heard about Rust's challenges, and how we can address them

https://blog.rust-lang.org/2026/03/20/rust-challenges/
1•pjmlp•16m ago•0 comments

A collection of 35 Golang Agent Skills

https://github.com/samber/cc-skills-golang
2•samber•18m ago•1 comments

Ask HN: How best to plan a 5K on a map for training?

1•mcdonje•18m ago•1 comments

What's the Deal with Ctrl+Left and Ctrl+Right?

https://www.niladicpodcast.com/2017/01/14/whats-the-deal-with-ctrlleft-and-ctrlright/
2•Siecje•18m ago•1 comments

Irish Kinahan cartel linked to Hezbollah and the Iranian IRGC [video]

https://www.youtube.com/watch?v=Kj0GLUXWhWo
1•u1hcw9nx•19m ago•1 comments

Jid v1.0.0 Released. – Drill down tool for JSON

https://github.com/simeji/jid/releases/tag/v1.0.0
2•jamslater•20m ago•1 comments

The Evolution of Low-Code in the Age of AI

https://maranics.com/the-evolution-of-low-code-in-the-age-of-ai/
1•jwillmer•21m ago•0 comments

Sonic Tau

https://www.patreon.com/posts/introducing-tau-153717160
1•samaaron•21m ago•1 comments

The Robotic Tortoise and the Robotic Hare

https://tomtunguz.com/local-vs-cloud-speed
1•djoldman•23m ago•0 comments

Show HN: CSS primitives for product videos, no render pipeline

https://www.aliveui.dev/video-blocks
1•pratikshadake•24m ago•0 comments

New report sounds alarm on AI chatbots driving violence against women and girls

https://www.swansea.ac.uk/press-office/news-events/news/2026/03/new-report-sounds-alarm-on-ai-cha...
2•giuliomagnifico•25m ago•0 comments

Scaleup Playbook: The Inside Track to Series A

https://technation.io/scaleup-playbook-raising-series-a/
1•simonebrunozzi•25m ago•0 comments

Ask HN: What non-tech blogs, podcasts do you follow?

1•chistev•28m ago•0 comments

Agentic pre-commit hook with OpenCode Go SDK

https://packagemain.tech/p/agentic-pre-commit-hook-with-opencode
1•der_gopher•29m ago•0 comments

Writing a 3D Point-Cloud Library in Rust

https://github.com/rajgandhi1/threecrate
1•rajgandhi95•33m ago•1 comments

Dart Back End in 2026

https://dinkomarinac.dev/blog/dart-backend-2026-what-flutter-teams-should-actually-use/
2•dinko7•35m ago•1 comments

An Open Letter to Georgetown Students, in Response to "Generative AI"

https://medium.com/center-on-privacy-technology/an-open-letter-to-georgetown-students-in-response...
4•mathgenius•38m ago•0 comments

The Death of Character in Game Console Interfaces

https://vale.rocks/posts/game-console-interfaces
1•OuterVale•39m ago•0 comments

Human code review is still cheaper than fully automated verification

https://peterlavigne.com/writing/human-code-review-over-full-verification
1•peterlavigne•41m ago•0 comments

GitHub appears to be struggling with measly three nines availability

https://www.theregister.com/2026/02/10/github_outages/
19•richtr•42m ago•6 comments

Roots – Return Old Online Things to Your Own Site

https://macwright.com/2026/03/12/roots
2•stevekrouse•42m ago•0 comments

My Sage Barista espresso machine is now smart

https://www.kopiro.me/press/sage-barista-via-zigbee/index.html
1•kopiro91•42m 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•10mo ago

Comments

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