frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

What Is the Return on Tokens?

https://lesbarclays.substack.com/p/what-is-the-return-of-tokens
1•lesbarclays•34s ago•0 comments

The Perceptual Characteristics of Voice-Hallucinations in Deaf People (2006)

https://pmc.ncbi.nlm.nih.gov/articles/PMC2632268/
1•bryanrasmussen•1m ago•1 comments

Russian Frigate Opens Fire with Warning Shots in the English Channel

https://theaviationist.com/2026/06/16/russian-frigate-opens-fire-with-warning-shots-in-the-englis...
1•speckx•3m ago•0 comments

S‑CURVES a field guide to technology adoption · 1825–2026

https://escurves.com/
1•sapal•5m ago•0 comments

Pentagon reduces reliance on Anthropic, switches to competitors after clash

https://cryptobriefing.com/pentagon-reduces-anthropic-reliance-competitors/
4•devonnull•8m ago•0 comments

Lutnick's Letter to Anthropic Warned of Curbs on Top AI Models

https://www.bloomberg.com/news/articles/2026-06-16/lutnick-s-letter-to-anthropic-warned-of-curbs-...
1•airstrike•8m ago•0 comments

The Return of the Energy Transition

https://steelforfuel.substack.com/p/the-return-of-the-energy-transition
1•simonebrunozzi•9m ago•0 comments

Leaked Alleged Text of Trump-Iran Deal

https://www.mediaite.com/media/news/read-leaked-alleged-text-of-trump-iran-deal/
3•cf100clunk•9m ago•1 comments

Hillock – Local, brain-inspired AI memory using SQLite and HDC

https://github.com/roandejager/Hillock
1•roandejager•10m ago•0 comments

Build Your Own Eval Harness from Scratch with Bun and Claude -p

https://alexop.dev/posts/build-your-own-eval-harness-bun-claude-p/
1•speckx•10m ago•0 comments

Claude recursive subagents burning hundreds in extra tokens

https://bsky.app/profile/ed3d.net/post/3moggsr47dk2z
2•belkinpower•11m ago•0 comments

Webview – cross-platform HTML5 UI abstraction layer

https://github.com/webview/webview
1•smartmic•11m ago•0 comments

Show HN: VoiceDraw – Talk system design out loud, the diagrams draw themselves

https://voicedraw.com/
3•ajaypanthagani•13m ago•0 comments

Implementing transformative role playing games : full ebook

https://books.uu.se/uup/catalog/book/55
2•bythreads•13m ago•0 comments

Cascading Tree Sitter Queries

https://github.com/jasper-lyons/ctsq
2•iovrthoughtthis•14m ago•1 comments

Ericsson CEO Ekholm to step down, be replaced by Per Narvinger

https://www.reuters.com/business/ericsson-ceo-step-down-be-replaced-by-per-narvinger-2026-06-16/
2•michalhuman•16m ago•0 comments

Is your company affected by NIS2?

https://nisd2.eu/applicability
2•cjhisey•16m ago•0 comments

Canada Is Building a Surveillance State

https://twitter.com/lucyhargreaves4/status/2066903272271544551
5•arrowsmith•16m ago•0 comments

OpalAI Got Two NASA Contracts to Build AI for Wildfire Intelligence

https://www.opal-ai.com
3•opalai•18m ago•0 comments

VTCLab Media Analyzer v0.6.0 is out

https://media-analyzer.pro/blog/posts/2026-06-16-v0.6.0/
2•ksh2u•18m ago•0 comments

MambAdapter: Lightweight Mamba-Based Adapters for Transfer Learning

https://arxiv.org/abs/2606.15638
2•MediaSquirrel•18m ago•0 comments

Pyinfra – agentless infrastructure automation, in plain Python

https://pyinfra.com
3•birdculture•18m ago•0 comments

Music Labels Win Canadian Site Blocking Order Against YouTube Downloaders

https://torrentfreak.com/music-labels-win-canadian-site-blocking-order-against-y2mate-ytmp3-and-s...
2•Cider9986•19m ago•0 comments

Apparently the Real Reason Anthropic's Models Are Offline: A Six-Year-Old Grudge

https://www.techdirt.com/2026/06/16/apparently-the-real-reason-anthropics-models-are-offline-a-si...
4•cdrnsf•21m ago•0 comments

To Get More Replies, Say Less (2017)

https://www.gkogan.co/increase-reply-rates/
3•downbad_•24m ago•0 comments

Leviathan Waking – On Anthropic/USG, and a new era in AI governance

https://www.hyperdimensional.co/p/leviathan-waking
2•speckx•24m ago•0 comments

Show HN: Dev-friendly native OTel: only OSS stateful, on-the-wire Observability

4•jratkevic•25m ago•0 comments

The Web We Know Is Going to Disappear

https://www.minid.net/2026/6/15/the-web-is-going-to-dissapear
5•taubek•28m ago•0 comments

A technical guide to building your own learning loop

https://twitter.com/GokuMohandas/status/2066853420326384055
3•gokumd•28m ago•0 comments

Inference cost at scale with napkin math

https://injuly.in/blog/napkin-inference-cost/index.html
2•gmays•29m 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/