frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Citizenship Restored (2023)

https://www.lrb.co.uk/the-paper/v45/n18/daniel-trilling/diary
1•Tomte•47s ago•0 comments

Show HN: Practice ordering ramen from a Japanese ticket machine

https://ajin.im/is/building/kenbaiki/
1•poppypetalmask•1m ago•0 comments

The rise of the Jim Crow theobros

https://religionnews.com/2026/09/24/the-rise-of-the-jim-crow-theobros/
1•Anon84•1m ago•0 comments

Eikos - OSS Jev-like model

https://github.com/caiovicentino/eikos
1•emersonrsantos•1m ago•0 comments

Eliza Effect

https://en.wikipedia.org/wiki/ELIZA_effect
1•extr0pian•4m ago•0 comments

Solomon's Paradox

https://en.wikipedia.org/wiki/Solomon%27s_paradox
1•thelastgallon•5m ago•0 comments

Linux Unreal Tournament 2003 Master Server patch + Ultrawide and No Sound Fix

https://github.com/rokyed/ut2003-ultrawide-screen-patch
1•rokyed•7m ago•0 comments

Perfectly Replicating Red Bull Then Making It Caffeine-Free [video]

https://www.youtube.com/watch?v=7pTqGJ3KSLE
1•gw32•8m ago•0 comments

Hermann Weyl – Frank Aydelotte memorandum (1945)

https://albert.ias.edu/server/api/core/bitstreams/9feac6ca-38d1-4f5c-9876-75915f1a5762/content
1•georgecmu•25m ago•0 comments

Sydney retiree bids to be first to travel Australia on electric motorcycle

https://www.abc.net.au/news/2026-09-27/man-aims-to-travel-australia-on-electric-motorcycle/107190208
3•defrost•28m ago•0 comments

If we do not stop to help each other, what do we become?

https://blog.codinghorror.com/if-we-do-not-stop-to-help-each-other-what-do-we-become/
11•signa11•31m ago•0 comments

Nom Army: Don't trust coding agents when they say they're done

https://github.com/rayson-tech/nomarmy
2•RaysonTech•34m ago•0 comments

Language Model "Shape"

https://alexzhang13.github.io/blog/2026/shape/
1•emersonmacro•34m ago•0 comments

Rust for C#/.NET Developers

https://microsoft.github.io/rust-for-dotnet-devs/latest/introduction.html
1•jeswin•35m ago•0 comments

Trump Promised the Truth About UFOs. These Scientists Are Waiting

https://www.politico.com/news/magazine/2026/09/26/ufos-trump-aliens-uaps-government-01088254
5•RickJWagner•46m ago•4 comments

Minicut AI: Higgsfield but for AI Drama and Film

https://www.minicut.ai
1•lliu56p•46m ago•2 comments

Show HN: PeerTalk.ai - Let your agent talk to a friend's agent

https://peertalk.ai
3•bluepnume•55m ago•3 comments

Show HN: All/Some – A free logic puzzle game about set relationships

https://allsome.app/
1•Critikid•57m ago•0 comments

Zipf's Law

https://en.wikipedia.org/wiki/Zipf%27s_law
2•johnnyApplePRNG•57m ago•0 comments

Introducing Casita: A content-addressed store for source code and build artifact

https://casita.rs/blog/introducing-casita-a-content-addressed-store-for-source-code-and-build-art...
1•domenkozar•1h ago•0 comments

Deep cuts: Londoner's fake vinyl empire sheds light on 'industrial scale' fraud

https://www.theguardian.com/music/2026/sep/19/fake-vinyl-empire-sheds-light-industrial-scale-fraud
3•ChrisArchitect•1h ago•0 comments

Ucsd-Hacc/Nsnfsssfsfn: Nearly SNFS-Speed Signature Forgery Sans Factoring N

https://github.com/ucsd-hacc/NSNFSSSFSFN
1•Garbage•1h ago•0 comments

A perfect clone of 1993 game SimTower

https://github.com/phulin/tower-together
2•modinfo•1h ago•0 comments

Auxo Linux

https://auxolinux.com/
3•rxvy•1h ago•1 comments

CERN mug summarizes Standard Model, but is off by a factor of 2 (2011)

https://www.quantumdiaries.org/2011/06/26/cern-mug-summarizes-standard-model-but-is-off-by-a-fact...
1•Curiositry•1h ago•0 comments

Reflex: Rust library for control loops that act on observability data

https://github.com/datadog-labs/reflex
1•handfuloflight•1h ago•0 comments

What is the size of Yemen? (2024)

https://theborys.substack.com/p/what-is-the-size-of-yemen
20•kspacewalk2•1h ago•3 comments

Problem: Closed Weights and Guild Monopolies

https://abdullah417161.substack.com/p/regarding-the-hysteria-over-llms
2•sceleton_135•1h ago•0 comments

David Goodsell

https://en.wikipedia.org/wiki/David_Goodsell
2•a_tartaruga•1h ago•1 comments

Trump rejects Iran's conditional ceasefire proposal

https://www.cnbc.com/2026/09/26/trump-rejects-irans-conditional-ceasefire-proposal-wsj-reports.html
4•donsupreme•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/