This is a heavily interactive web application, and JavaScript is required. Simple HTML interfaces are possible, but that is not what this is.
Post
Robert
fnordfish.ruby.social.ap.brid.gy
did:plc:7i5mwj43t2c45bgan34bpczn
TodIL (The other day I Learned): Ruby Array has `<=>`
```ruby
[0, 1, 2] <=> [0, 1] # => 1
[0, 1, 2] <=> [0, 1, 2] # => 0
[0, 1, 2] <=> [0, 2, 2] # => -1
[0, 1, 2] <=> [0, 1, 2, 3] # => -1
```
2026-01-23T12:06:37.537Z