frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Ask HN: Indie hackers on X (Twitter) feels like a mega bubble these days

1•sankalpdomore•2m ago•0 comments

The Emacs Cat: Running Emacs in MicroVM

https://olddeuteronomy.github.io/post/running-emacs-in-microvm/
1•hndhyc0bdt•5m ago•0 comments

According to 1950s futurists, women of the year 2000 would be giantesses (2012)

https://gizmodo.com/according-to-1950s-futurists-women-of-the-year-2000-wo-5878243
1•Eridanus2•6m ago•0 comments

Overpaying for AWS Managed Nat Gateways? Fck-Nat

https://fck-nat.dev/v1.4.0/
1•edweis•8m ago•0 comments

Show HN: Aerofi – a rofi-inspired, scriptable launcher for macOS (Rust, GPUI)

https://github.com/frostymur/aerofi
1•osaill•8m ago•0 comments

I am the only one who still uses sublime text daily?

1•serg2•8m ago•0 comments

Show HN: App2Api – Give your AI the API behind your app

https://app2api.com/
1•flkdnfsnsf•11m ago•0 comments

Writing a Theorem Prover from Scratch

https://astledsa.substack.com/p/writing-a-theorem-prover-from-scratch
2•astledsa•12m ago•0 comments

Flashcat – a local AI assistant for the Mac terminal that asks first

https://github.com/TomTomsen765/flashcat
1•TomTomsen•15m ago•0 comments

An Epyc trip to Venice: about AMD's 256-core monster chip

https://www.theregister.com/systems/2026/09/23/an-epyc-trip-to-venice-everything-we-do-and-dont-k...
1•pella•17m ago•0 comments

Srijan Orizon – South Kolkata's Upcoming Landmark Project

1•Liyaans•21m ago•0 comments

Fifteen years later, the Apple Cards origin story

https://lexontech.org/fifteen-years-later-the-apple-cards-origin-story
1•ksec•25m ago•0 comments

Nintendo Wins $4.5M Judgment Against R/SwitchPirates Mod 'Archbox'

https://torrentfreak.com/nintendo-wins-4-5-million-judgment-against-r-switchpirates-mod-archbox/
2•gslin•30m ago•1 comments

The flames at Turkmenistan's Door to Hell are beginning to fade

https://www.getaway.co.za/travel/travel-ideas/door-to-hell-turkmenistan-darvaza-gas-crater/
2•giuliomagnifico•34m ago•0 comments

AMD Takes the Lid Off of Next-Gen EPYC 9006 Venice as Zen 6 Comes to Servers

https://www.servethehome.com/amd-takes-the-lid-off-of-next-gen-epyc-9006-venice-as-zen-6-comes-to...
1•ksec•35m ago•1 comments

Demo of a concept "fractal" window manager [video]

https://www.youtube.com/watch?v=Kd9AbKawwhg
3•danfessler•38m ago•1 comments

Why UpdatedInput in a PreToolUse Hook Doesn't Rewrite the Command

https://mer.vin/news/why-updatedinput-in-a-pretooluse-hook-doesnt-rewrite-the-command/
3•northbridgedev•45m ago•0 comments

Using Pomodoro to limit interaction with AI

https://anaivebidder.com/posts/the-agentic-pomodoro-iterating-faster/
2•rbnafo•45m ago•0 comments

Show HN: Linecite – find and fix stale file:line references in your docs

https://github.com/gotoUSA/linecite
1•mcbg1541•46m ago•0 comments

Pass Designer

https://developer.apple.com/pass-designer/
1•soheilpro•46m ago•0 comments

Trump admin using AI to deny medical care for seniors in disastrous experiment

https://arstechnica.com/health/2026/09/trump-admin-using-ai-to-deny-medical-care-for-seniors-in-d...
2•ndsipa_pomu•46m ago•3 comments

EU Member States plan "digital expropriation" of Europeans in the interest of AI

https://noyb.eu/en/ai-eu-member-states-plan-digital-expropriation-europeans-interest-ai-companies
3•mohi-kalantari•48m ago•1 comments

Show HN: Browser-only XIRR calculator – your real return from your real deposits

https://tradune.com/tools/beat-the-market-calculator/
1•salmanovmeharet•49m ago•0 comments

Laya Studio: Specialize Laya Without Fine-Tuning

https://github.com/Hantlowt/laya-studio
1•Hantlowt•51m ago•0 comments

Everything you need to know about Manchester City's hearing and charges

https://www.theguardian.com/football/2026/sep/25/manchester-city-found-guilty-of-breaking-premier...
1•teleforce•57m ago•0 comments

Jevq, A Jev filter sidecar for jq

https://github.com/who/jevq
1•andrewdb•59m ago•1 comments

Linux Kernel Developers Consider Adding Agents.md to Help Guide AI/LLM Agents

https://www.phoronix.com/news/Linux-Considers-AGENTS-MD
3•signa11•1h ago•0 comments

Floci: Locally emulating any cloud service

https://floci.io
1•theanonymousone•1h ago•0 comments

CAPTCHAs don't prove you're human – they prove you're American

https://shkspr.mobi/blog/2017/11/captchas-dont-prove-youre-human-they-prove-youre-american/
60•theanonymousone•1h ago•62 comments

Show HN: WFY24 Weather Widget Zero-setup weather module for Joomla 6

https://extensions.joomla.org/extension/wfy24-weather-widget/
1•weatherfun•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•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/