frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Net 11 introduces runtime-native async replacing compiler-gen. state machines

https://learn.microsoft.com/en-us/dotnet/core/whats-new/dotnet-11/runtime
1•polskibus•49s ago•0 comments

Looking Back at Lewis and Clark

https://www.newyorker.com/magazine/2026/06/01/this-vast-enterprise-craig-fehrman-book-review
1•bookofjoe•1m ago•1 comments

LocalEmu, a free AWS emulator (fork of archived LocalStack)

https://github.com/localemu/localemu
1•CloudHackerFr•3m ago•0 comments

A disappearing Service Processor (2025)

https://oxide.computer/blog/cosmo-sp
1•mooreds•3m ago•0 comments

Frona v2026.5.5 – self-hosted personal AI assistant

https://github.com/fronalabs/frona/releases/tag/v2026.5.5
1•syncerx•5m ago•0 comments

The price of the Manhattan Project (2013)

https://blog.nuclearsecrecy.com/2013/05/17/the-price-of-the-manhattan-project/
1•downbad_•5m ago•0 comments

Transfer Emotions to VR Avatar via Brain with PiEEG XR

https://www.notebookcheck.net/For-VR-PiEEG-XR-measures-brain-activity-in-real-time.1311211.0.html
2•Christiangmer•8m ago•0 comments

The Cost of AI

https://alextardif.com/AI.html
1•coinfused•11m ago•0 comments

Who Has the Hardest Fist in China's AI Valuation Race?

https://crossingriver.substack.com/p/who-has-the-hardest-fist-in-chinas
2•ramimac•13m ago•0 comments

Saffron

https://ronaldperry.org/SaffronWebPage/index.html
1•giancarlostoro•13m ago•0 comments

An OS in pure Rust with its own TCP/IP and TLS 1.3 stack, fetching the live web

https://github.com/rfi-irfos/rusty-penguin
2•simeon-kepp•13m ago•0 comments

Why Anthropic Just Became the Most Valuable AI Company on Earth

https://medium.com/@tbelbek/why-anthropic-just-became-the-most-valuable-ai-company-on-earth-and-w...
1•rdstrtwlkr•16m ago•0 comments

API Drift Detection: Catch Breaking Changes Before They Reach Production

https://apiguard.co/blog/api-drift-detection-guide
2•mkhorasani•16m ago•0 comments

NeXTWORLD Interviewed Steve Jobs (1992)

https://computeradsfromthepast.substack.com/p/nextworld-interviewed-steve-jobs
1•rbanffy•18m ago•0 comments

Nexa-gauge – LLM evaluation framework with per-node scoring controls

https://harnexa.dev/nexa-gauge/docs/introduction
2•Sardhendu•18m ago•0 comments

Old Blue Workbench

https://triumph.no/oldblue/
1•erickhill•18m ago•0 comments

Could nature itself hold the solution to climate change?

https://www.theguardian.com/books/2026/may/24/could-nature-itself-hold-the-solution-to-climate-ch...
1•rendx•21m ago•0 comments

Parallel Reconstruction of Lawful TLS Wiretapping

https://remyhax.xyz/posts/reproducing-lawful-tls-wiretapping/
3•jerrythegerbil•21m ago•0 comments

Jef Raskin, the Visionary Behind the Mac

https://lowendmac.com/2013/jef-raskin-the-visionary-behind-the-mac/
7•tylerdane•26m ago•2 comments

Harness Engineering Course

https://harnesscourse.com/
1•gandalfgeek•27m ago•0 comments

They Might Be Giants – I'm Impressed (2007) [video]

https://www.youtube.com/watch?v=3CccPPDe2JU
1•petethomas•30m ago•0 comments

Marketing skill for Claude with 26 evals – +20pp over baseline

https://github.com/inerrata/brief
1•healman•32m ago•0 comments

Show HN: Nimic – write pure Python and compile AOT to native binaries via Nim

https://github.com/dima-quant/nimic
1•dima-quant•33m ago•0 comments

Software stocks wrap up best month since 2001; talk of 'SaaSpocalypse' subsides

https://www.cnbc.com/2026/05/29/software-stocks-wrap-best-month-since-2001-as-talk-of-saaspocalyp...
2•TMWNN•33m ago•1 comments

Oscar-winning Star Wars editor Marcia Lucas dies aged 80

https://www.bbc.com/news/articles/cvgzy64j9l1o
4•layer8•35m ago•0 comments

Show HN: AI Simulaionen Based on FEP

https://aic-ai-lab.site/login
1•luzifer333•36m ago•0 comments

Diablo 2 map generator based on 31 bits of information

https://www.reddit.com/r/diablo2/s/Gcn07WPLCK
1•nixass•36m ago•0 comments

Autism subtypes identified using cross-species functional connectivity analyses

https://www.nature.com/articles/s41593-026-02287-z
1•bookofjoe•37m ago•0 comments

Killing PRs was the easy part, now technical death keeps the CTO up

https://shiftmag.dev/killing-prs-was-the-easy-part-now-technical-death-keeps-the-cto-up-9910/
1•dxs•37m ago•0 comments

Viral stardom saves 'Trump' buffalo from sacrifice in Bangladesh

https://www.france24.com/en/asia-pacific/20260527-viral-stardom-saves-trump-buffalo-from-sacrific...
1•mooreds•37m 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/