frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

The 11 Types of Washington, DC, Metro Station Architecture (2018)

https://ggwash.org/view/68565/metro-has-11-types-of-station-architecture.-learn-them-all-with-thi...
1•quuxplusone•6m ago•0 comments

Show HN: Benzi – An AI coding assistant grounded in a live code map

https://benzi.fly.dev/
1•showhz•11m ago•0 comments

Spherical Codes Application in Fiber Optics (2024)

https://arxiv.org/abs/2404.04776
1•silver92bullet•14m ago•0 comments

The AI Boom Is Transforming the American Economy Beyond Recognition

https://www.wsj.com/economy/the-ai-boom-is-transforming-the-american-economy-beyond-recognition-c...
3•mapping365•19m ago•1 comments

At least we're warming the planet for a good reason

https://old.reddit.com/r/codex/comments/1vev2fl/vibecoded_ios_app_reached_35k_loc_and_i_no_longer/
1•johnnyApplePRNG•29m ago•0 comments

Real-time LuaTeX: Recompiling large documents in 1ms [video]

https://www.youtube.com/watch?v=C1gpjPm-Rns
1•eigenblake•32m ago•0 comments

Lego deploys Hubble Space Telescope as detailed desktop model

https://www.collectspace.com/news/news-080226a-lego-icons-hubble-space-telescope-details.html
1•Tomte•34m ago•1 comments

Startup Marketing 101

https://skeptrune.substack.com/p/startup-marketing-101
1•iacguy•36m ago•0 comments

ATS Resume Scorer and Cover Letter Generator – Matchflo

https://apps.apple.com/us/app/matchflo-ai-resume-tailor/id6786483718?mt=12
1•jsrothwell•37m ago•1 comments

Advanced Harmonic Analysis in Roundness Metrology

https://www.taylor-hobson.com/resource-center/blog/2020/september/advanced-harmonic-analysis-in-r...
1•num42•41m ago•0 comments

ScalarDB: Universal HTAP Engine

https://github.com/scalar-labs/scalardb
2•feeblefakie•42m ago•0 comments

Personal taste fell out of fashion

https://www.theguardian.com/media/2026/jun/14/have-i-been-influenced-personal-taste-out-of-fashio...
2•herbertl•44m ago•1 comments

AI Agent Ecosystem Trends 2026 H1: Analysis of 15K+ Agents Submission

https://www.deepnlp.org/blog/ai-agent-marketplace-intelligence-report-2026-h1-trends-insights-eco...
1•aiagenta2z•46m ago•1 comments

Virtual Mac on Jailbroken M1/M2 iPad

https://github.com/nfzerox/VirtualMacOniPad
1•tech234a•49m ago•0 comments

Why Estonians invite strangers into their back gardens each summer

https://www.bbc.com/travel/article/20260731-why-estonians-invite-strangers-into-their-backyards-e...
1•koolhead17•52m ago•0 comments

I Helped Run Lululemon. Companies Need to Stop Kidding Themselves About A.I

https://www.nytimes.com/2026/08/03/opinion/ai-hype-tech-layoffs.html
1•joebuckwilliams•52m ago•5 comments

I asked Claude Opus to recreate The Matrix opening scene in Lego

https://marksmayo.github.io/lego-matrix/
3•beatthatflight•53m ago•4 comments

Tinytouch: Fingerprint Based Authentication for Apple

https://github.com/zimengxiong/tinytouch
1•Quizzical4230•54m ago•0 comments

Show HN: Manhwa AI – Create webtoons with consistent AI characters

https://www.manhwaai.net
1•era4d•1h ago•2 comments

Superbad.com if it came from the mind of an AI

https://stuff.do/
1•rogerdickey•1h ago•1 comments

JsxCore – A TSX/JSX View Engine for Asp.net Core

https://github.com/davidwhitney/JsxCore
1•vyrotek•1h ago•0 comments

Token use for exact prompt across models

https://twitter.com/jpschroeder/status/2081751862768717956
2•kappi•1h ago•1 comments

Telegram says app restored on Apple's App Store

https://www.reuters.com/business/retail-consumer/telegram-says-app-restored-apples-app-store-2026...
10•mfiguiere•1h ago•0 comments

A modern Saga/TCC orchestration engine for microservices

https://github.com/scalar-labs/scalardb-saga
2•feeblefakie•1h ago•0 comments

Show HN: Velokey – One Task API for Kling, Veo, Seedance, and Sora

https://velokey.ai
1•PaiDxng•1h ago•0 comments

Socket.dev warns about Rust Tokio library obfuscation

https://socket.dev/cargo/package/tokio
2•cwaffles•1h ago•0 comments

Eval-driven development: Lessons from evaluating GenAI at scale

https://medium.com/airbnb-engineering/eval-driven-development-lessons-from-evaluating-genai-at-sc...
3•simonpure•1h ago•0 comments

Billion-dollar property collapse highlights private credit danger

https://www.abc.net.au/news/2026-08-04/property-collapse-highlights-private-credit-danger-jon-adg...
2•kripy•1h ago•0 comments

Hollow-LLM Attack: Ghost Weights That Fool Zero-Knowledge LLM Verification

https://arxiv.org/abs/2607.28884
1•sbulaev•1h ago•0 comments

George Orwell's 1984 (Hinge Dating App)

https://www.spectator.com.au/2026/07/the-dark-truth-about-dating-apps-and-ai/
2•circumcised•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/