frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

The End of Upward Mobility

https://www.noemamag.com/the-end-of-upward-mobility/
1•Gooblebrai•14s ago•0 comments

Divide by Depth for Instant 3D

https://gabrieloc.com/2026/09/15/perspective.html
1•gabrieloc•1m ago•1 comments

PC ports of old console games are the new AI vibe coding battleground

https://www.pcgamer.com/gaming-industry/pc-ports-of-old-console-games-are-the-new-ai-vibe-coding-...
2•adunk•2m ago•0 comments

Detecting and mitigating a multi-stage AiTM phishing and BEC campaign (2023)

https://www.microsoft.com/en-us/security/blog/2023/06/08/detecting-and-mitigating-a-multi-stage-a...
2•colinprince•4m ago•0 comments

How the incident happened: a play in one act

https://surfingcomplexity.blog/2026/09/19/how-the-incident-happened-a-play-in-one-act/
2•azhenley•4m ago•0 comments

Show HN: KillSwitch – a programming language designed to be difficult for LLMs

https://killswitch-lang.org
3•dom96•4m ago•0 comments

Escaping Docker's Hypervisor

https://accomplish.ai/blog/escaping-dockers-hypervisor/
2•RohanAdwankar•8m ago•1 comments

Testing Jev as a validation gate for drug-discovery agents

https://frederickparsons.substack.com/p/can-a-fast-ai-gate-catch-chemistry
2•fred_tandemai•9m ago•0 comments

Jevmetrics – probabilistic metric reduction inside OpenTelemetry

https://github.com/ishantanu/jevmetrics
2•ishantanu10•10m ago•0 comments

Solving rubiks cubes "without search"

https://arxiv.org/abs/2508.13113
2•E-Reverance•12m ago•0 comments

Firefox Telemetry Dictionary

https://dictionary.telemetry.mozilla.org/apps/firefox_desktop
1•M95D•13m ago•1 comments

Finding Bugs

https://matklad.github.io/2026/09/19/finding-bugs.html
1•surprisetalk•14m ago•0 comments

What do you think is the prevalence of this phenomenon in current AI discourse?

https://en.wikipedia.org/wiki/Preference_falsification
1•symbolicai•16m ago•2 comments

Economics Nobel Laureates' Letter Supporting the California Billionaire Tax [pdf]

https://gabriel-zucman.eu/files/prop40letter.pdf
4•marojejian•19m ago•4 comments

Markers to Deter Human Intrusion into Waste Isolation Pilot Plant (1993) [pdf]

https://gwern.net/doc/technology/1993-trauth.pdf
1•walrus01•19m ago•0 comments

ZK-JPEG: Zero-Knowledge Image Editing and Compression

https://eprint.iacr.org/2026/2039
2•gslin•21m ago•0 comments

Disney+ changes subscriber agreement to allow ads on every plan

https://www.dexerto.com/tv-movies/disney-changes-subscriber-agreement-to-allow-ads-on-every-plan-...
11•DemiGuru•23m ago•1 comments

Screens Ubiquitous in Classrooms; Teachers Split on Efficacy

https://news.gallup.com/poll/714479/screens-ubiquitous-classrooms-teachers-split-efficacy.aspx
2•hn_acker•23m ago•0 comments

Tiny radio transmitters reveal a hidden survival tactic in birds

https://theconversation.com/tiny-radio-transmitters-reveal-a-hidden-survival-tactic-in-birds-274517
3•bryanrasmussen•25m ago•0 comments

The Working Class Face a 'Class Ceiling' in Elite Occupations

https://www.nytimes.com/2026/09/18/business/class-barrier-academia.html
4•marojejian•32m ago•1 comments

Proxmox runs QEMU-img convert with cache=unsafe; write errors are dropped

https://bugzilla.proxmox.com/show_bug.cgi?id=8054
1•alfonsokuen•34m ago•0 comments

No Easy Fix for Bogus Respondents in Online Opt-In Polls

https://www.pewresearch.org/methods/2026/08/27/no-easy-fix-for-bogus-respondents-in-online-opt-in...
2•hn_acker•35m ago•0 comments

I scraped all the ivf cycles that have ever been posted on the internet

https://eggs.help
1•grapefruitjuice•36m ago•0 comments

A social network where posts are minigames generated from tweet-sized prompts

https://gamecrumbs.online/
1•saint_angels•37m ago•1 comments

Vitaebase – an interactive map of longevity research

https://www.vitaebase.net
1•oibafcodes•38m ago•2 comments

FBI memo warned ICE agents could be targeted by fake 'tradwife' dating profiles

https://www.theguardian.com/us-news/2026/sep/17/fbi-ice-tradwife-doxing
2•hn_acker•38m ago•1 comments

Show HN: Jev to JSON-Schema

https://github.com/Kiln-AI/jev_jsonschema
1•scosman•41m ago•0 comments

Warning Signs [Economics of AI]

https://newleftreview.org/sidecar/posts/warning-signs
1•ckmate-king-2•43m ago•0 comments

A Consciousness Is a Dedekind Cut

https://www.evalapply.org/posts/consciousness-lives-in-a-dedekind-cut/index.html
1•andsoitis•44m ago•0 comments

Frustrated at state of commentary of economic impact of AI

1•erads•44m 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/