frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

The Truth about Space Data Centers

https://www.youtube.com/watch?v=_qpdUNMt2yg
1•mudil•33s ago•0 comments

Floating Point: The Origin Story

https://thechipletter.substack.com/p/floating-point-the-origin-story
1•rbanffy•1m ago•0 comments

South Korea announces more than $1T AI, chip investment drive

https://www.aljazeera.com/news/2026/6/29/south-korea-announces-more-than-1-trillion-ai-chip-inves...
3•mgh2•3m ago•0 comments

The Laziest Generation

https://idiallo.com/blog/the-laziest-generation
1•firefoxd•4m ago•0 comments

A deep dive into SmallVector:push_back

https://maskray.me/blog/2026-06-27-a-deep-dive-into-smallvector-push-back
1•mariuz•5m ago•0 comments

The Radiation Exposure Lie

https://worksinprogress.co/issue/how-to-lie-about-radiation/
2•duffydotsvg•7m ago•0 comments

What Do You Do When You Lose Gigantic Megalodon Shark Vertebrae?

https://nautil.us/what-do-you-do-when-you-lose-gigantic-megalodon-shark-vertebrae-1282295
1•Brajeshwar•8m ago•0 comments

Ford rehires human engineers after AI fails to match quality checks

https://www.bbc.co.uk/news/articles/cgrkd41n2v9o
1•_ua_•8m ago•1 comments

Recognising and mitigating LLM Pollution in online behavioural research

https://www.nature.com/articles/s41467-026-74621-9
1•bookofjoe•8m ago•0 comments

Roanoke homeowner says Flock Device was installed on her property without notice

https://www.wsls.com/news/local/2026/06/22/roanoke-homeowner-says-a-flock-device-was-installed-on...
2•CharlesW•9m ago•0 comments

Bild Lilli Doll

https://en.wikipedia.org/wiki/Bild_Lilli_doll
1•doener•11m ago•0 comments

A New Gaming GPU Challenger: Bolt Graphics Takes Aim at Nvidia [video]

https://www.youtube.com/watch?v=-fZM9wOvbh0
2•scns•12m ago•0 comments

EU: We register if you are critical about us, and shot you out

https://europeanconservative.com/articles/news/dont-question-eu-values-brussels-influencer-plan-s...
3•monssooon•14m ago•4 comments

In San Francisco, Even $180k Tech Salaries Are No Longer Enough

https://www.nytimes.com/2026/06/29/technology/san-francisco-tech-salaries.html
3•tangled•14m ago•0 comments

Reserve Your WhatsApp Username

https://blog.whatsapp.com/its-time-to-reserve-your-whatsapp-username?_fb_noscript=1
1•pievalentin•15m ago•0 comments

Show HN: Toolnexus for .NET – MCP and agent skills as tools for any LLM

https://www.nuget.org/packages/Toolnexus/
1•muthuishere•16m ago•0 comments

Show HN: PDFx – a 2D canvas for multiple PDFs, stored inside a single PDF

https://github.com/alexandrosgounis/pdfx/
1•gounisalex•17m ago•0 comments

Ask HN: How do you use SAP in the AI age?

1•jotadambalakiri•19m ago•0 comments

Volkswagen ends self-driving partnership with Bosch, writes down EUR 1.5

https://www.reuters.com/business/autos-transportation/volkswagen-plans-end-automated-driving-tie-...
3•miohtama•23m ago•1 comments

The future of observability won't be one proprietary AI agent

https://clickhouse.com/blog/the-future-of-observability-not-one-proprietary-ai-agent-thousands-by...
1•mikeshi42•23m ago•0 comments

Government Would Like a Word

https://expression.fire.org/p/your-government-would-like-a-word
1•Volodzko•25m ago•1 comments

Mullvad VPN co-founder donated ~500,000USD to Swedish far-right political party

https://www.flamman.se/techprofil-ger-miljoner-till-orebropartiet/
33•Shortness8•26m ago•15 comments

Show HN: KaliCart – an agent-readable catalog for WooCommerce (no API key)

https://github.com/giuseppesocci-bot/kalicart-bridge
1•carthub•26m ago•0 comments

Linux 7.2-Rc1 Released: "Things Look Reasonably Normal"

https://www.phoronix.com/news/Linux-7.2-rc1-Released
1•Bender•27m ago•0 comments

European ISPs Want Rightsholders Held Accountable for Overblocking Damage

https://torrentfreak.com/european-isps-want-rightsholders-held-accountable-for-overblocking-damage/
24•Brajeshwar•27m ago•2 comments

Orbit – IRC Client (Glaze App)

https://www.glaze.app/app/IA8EA2
1•iampoul•27m ago•0 comments

Because It Speaks in Words

https://brianschrader.com/archive/because-it-speaks-in-words/
1•sonicrocketman•28m ago•0 comments

Show HN: Katra, self-hosted cognitive memory for AI agents (MCP)

https://github.com/kolegadev/Katra-Agentic-Memory
2•jfaganel99•28m ago•0 comments

OpenACS and Tcl/Tk conference: Talks list now online

https://openacs.km.at/evaluate/org/129998253/conferencenews/
3•cmacleod4•28m ago•1 comments

Infinity Scheduler Aims to Be a Better Linux Scheduler

https://www.phoronix.com/news/Infinity-Scheduler
3•Bender•28m 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/