frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Google wins bankruptcy auction for Spirit Airlines emails, chats, documents

https://www.axios.com/2026/08/17/google-spirit-airlines-bankruptcy
2•sgustard•5m ago•0 comments

PM Carney announces largest clean energy investment in North American history

https://www.pm.gc.ca/en/news/news-releases/2026/08/17/prime-minister-carney-announces-largest-cle...
3•garbawarb•9m ago•0 comments

70 Strategies/Moats on How Things Win

https://stephango.com/moats
1•momentmaker•10m ago•0 comments

CRTC allows Canadian carriers to lock phones again, with a catch

https://mobilesyrup.com/2026/08/17/crtc-brings-back-phone-locking/
3•jethronethro•10m ago•0 comments

AMD Working on a New Back End for Improving ROCm Compute in QEMU/VMs

https://www.phoronix.com/news/AMD-ROCm-Better-QEMU-VM
1•mdp2021•11m ago•0 comments

Show HN: Cogni: MCP memory for LLMs, with no LLM in the retrieval path

https://getcogni.io/
1•ihamilton7•13m ago•0 comments

Consumers Prefer AI Music Until They're Told It's AI

https://www.promarket.org/2026/05/04/consumers-prefer-ai-music-until-theyre-told-its-ai/
1•a2ff6eeb0•19m ago•0 comments

Statement Regarding Loongson Vulnerabilities Presented at USENIX26

https://www.loongson.cn/news/show?id=850
1•csmantle•20m ago•0 comments

Voluntary attention regulates acute immune responses in humans

https://www.nature.com/articles/s41562-026-02541-1
3•bookofjoe•21m ago•0 comments

Germany Just Banned Windows to Save €15M

https://www.youtube.com/watch?v=iaz32kiBbaA
2•cable2600•27m ago•2 comments

Whose doctor does the AI recommend? An algorithm audit of LLMs in physician

https://arxiv.org/abs/2608.14399
1•sbulaev•28m ago•0 comments

Prime Agent: A Self-Improving RLM Agent

https://github.com/PrimeIntellect-ai/prime-agent
1•rzk•29m ago•0 comments

Connecting to an Azure/Entra Joined Windows Machine from Linux

https://github.com/themew2/FreeRDP-to-Entra-Connected-Windows-Device
1•themew2•30m ago•0 comments

Cursor Origin

https://cursor.com/docs/origin
34•peterspath•36m ago•10 comments

Supreme Court Rejects Verizon Bid for $47M Refund of FCC Fine

https://arstechnica.com/tech-policy/2026/08/supreme-court-rejects-verizon-bid-for-47-million-refu...
3•m463•37m ago•0 comments

Un-AI Your Internet

https://un-ai.digitalprophet.online/
6•ErenayDev•37m ago•2 comments

LongHorizon-Harness: Advancing Long-Horizon Agents for Real-World Tasks

https://github.com/AMAP-ML/LongHorizon-Harness
1•tingletech•43m ago•1 comments

Building Scalable Control Planes

https://www.allthingsdistributed.com/2026/08/on-building-scalable-control-planes.html
1•smn1234•45m ago•0 comments

Show HN: FlashFrame-Free Browser-Based Fast Multiplayer Movie Guessing Game

https://playflashframe.com/
1•jsturgill•54m ago•0 comments

DuckDuckGo Sunglasses

https://knockaround.com/products/duckduckgo-paso-robles
2•brianborn•55m ago•0 comments

Saying Goodbye to SMS Mode

https://groupme.com/blog/goodbye-sms-mode
3•tech234a•58m ago•0 comments

Show HN: Particle – Extract and save articles in a clean, self-hosted reader

https://particle.crnst8.com/try/
1•flowerpil•59m ago•0 comments

New API integer overflow: one request turned a $0.10 balance into $16.9T

https://hellorecon.com/blog/cve-2026-71479-new-api-quota-integer-overflow
1•slvnx•59m ago•1 comments

Scalable watermarking for identifying large language model outputs

https://www.nature.com/articles/s41586-024-08025-4
1•Anon84•1h ago•0 comments

Show HN: A multiplayer coding environment for dev teams and agents

https://forklane.ai
1•akshayl284•1h ago•1 comments

Anybody Working on Agentic Payment?

https://twitter.com/samliuhappy/status/2089488863857381661
2•Bobby_Liu•1h ago•2 comments

Repair Cafe – Fix Your Broken Items

https://www.repaircafe.org/
3•rglover•1h ago•1 comments

Our Learning from Building Voice Agents for Loan Servicing

https://ullassankhla.substack.com/p/building-voice-agents-in-regulated
1•vishwas_datta•1h ago•1 comments

The Deadline Dividend

https://deadline-dividend.onrender.com
3•serialwindow•1h ago•0 comments

N64 Goldeneye 007 Decompilation

https://github.com/n64decomp/007
1•jamesfinlayson•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/