frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

The guide to healing your insecure attachment

https://www.pasthepast.com/p/the-ultima-guide-to-healing-your
1•ElysiumAbove•17s ago•0 comments

Vaultwarden Sequence Diagrams

https://app.ilograph.com/demo.ilograph.Vaultwarden/Log%2520In
1•billyp-rva•35s ago•0 comments

How 10,000 American Cities Got Their Names

https://www.wsj.com/us-news/how-10-000-american-cities-got-their-names-a67c625e
1•impish9208•2m ago•1 comments

How the government is using AI to speed up the planning system

https://takes.jamesomalley.co.uk/p/build-gemini-build
1•dgroshev•4m ago•0 comments

Show HN: Replacing HTML/CSS/JS with Rust

https://fui-rs-demo.effindom.dev/
2•zionsati•4m ago•0 comments

Show HN: Reprogram your mind while you vibe code

https://justglow.dev/
1•mikiyas•7m ago•0 comments

The Closure of the Internet: Most Important Social Phenomenon of the Late 2010s

https://arctotherium.substack.com/p/the-closure-of-the-internet
1•nkurz•8m ago•0 comments

Amazon cuts some jobs in its artificial general intelligence unit

https://www.cnbc.com/2026/07/22/amazon-lays-off-some-employees-in-its-agi-unit.html
2•mgh2•12m ago•0 comments

CPU jitter entropy random number generator

https://www.chronox.de/jent/
1•fanf2•12m ago•0 comments

GitHub Custom thread subscriptions are being deprecated

https://github.blog/changelog/2026-08-10-custom-thread-subscriptions-are-being-deprecated/
2•EffrafaxOfWug•13m ago•0 comments

"I Don't Have Anything to Hide", Said the Dude Photographed on the Toilet

https://postcapitalistrobots.substack.com/p/i-dont-have-anything-to-hide-said
1•alejodosr•13m ago•0 comments

71% of CISOs spend 10 hours on board reports

https://www.helpnetsecurity.com/2026/08/10/ciso-board-communication-gap-report/
1•taubek•13m ago•0 comments

Ask HN: How did you teach analog electronics to your kids?

2•felooboolooomba•15m ago•2 comments

AI Horde A free, community-powered generation service

https://stablehorde.net/
1•Bluestein•18m ago•0 comments

How to get AI to generate more ideas by itself

https://bymorning.ai/journal/idea-mode-collapse
1•johnrising•19m ago•0 comments

Charging drones mid-flight with lasers

https://www.eurekalert.org/news-releases/1137218
1•geox•20m ago•0 comments

How fast is C++26's std::hive?

https://lemire.me/blog/2026/08/02/how-fast-is-c26s-stdhive/
1•joek1301•22m ago•0 comments

Show HN: Sentris – scans your Supabase repo for missing RLS and leaked keys

https://www.sentris.dev/index
1•lucaurti•22m ago•0 comments

WorldClaw – Agentic 3D open-world generation at scale

https://tencent-hunyuan.github.io/Hunyuan3D-WorldClaw/
1•realmoravec•23m ago•0 comments

Show HN: Tesserae, self-hosted dashboards for e-ink panels

https://tesserae.ink/
2•xDaftTurtle•27m ago•2 comments

Jensen: "Nvidia AI Factory Compute Is Becoming an Investable Asset Class"

https://twitter.com/JensenHuang/status/2086934705207959965
2•nlpnerd•28m ago•1 comments

The Waiting Time Paradox, Or, Why Is My Bus Always Late? (2018)

https://jakevdp.github.io/blog/2018/09/13/waiting-time-paradox/
1•downbad_•29m ago•0 comments

GitHub Actions needs OIDC audience constraints

https://blog.yossarian.net/2026/08/10/github-actions-needs-oidc-audience-constraints
1•cimnine•29m ago•1 comments

The mystery of why left-handers are so much rarer (2016)

https://www.bbc.com/future/article/20160930-the-mystery-of-why-left-handers-are-so-much-rarer
1•downbad_•29m ago•0 comments

Show HN: Ekbatan – Modern Java Presistence Framework – CQRS/Event Sourcing – v1

https://ekbatan-io.github.io/ekbatan/
1•unikzforce•29m ago•0 comments

Local Models Will Not Win

https://www.seangoedecke.com/local-models-will-not-win/
4•I_have_receipts•31m ago•0 comments

AI drones are transforming warfare [video]

https://www.bbc.com/reel/video/p0n7sbpd/watch
1•whosgotch•32m ago•0 comments

IEC 60880 Compliance in Nuclear Systems and Software Safety

https://www.qa-systems.com/blog/iec-60880-compliance-in-nuclear-systems/
1•Bluestein•34m ago•0 comments

Asus Oxiis Intelligent Bike Booster

https://www.asus.com/accessories/bike-booster/asus-oxiis/oxiis-intelligent-bike-booster/
3•_thisdot•35m ago•0 comments

How and when to see the solar eclipse

https://www.bbc.co.uk/news/resources/idt-2a268141-80ca-480d-bd04-6cf688bcc3dd
1•rwmj•35m 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/