@thomasfuchs yes, it really feels like a Victorian poorhouse simulator. I’ve never really considered that the feelings that make me want to rub away from the technology might be what attracts other, so thank you for that insight.
common advice to new chess players is to never resign. it’s pretty simple why:
if you resign, then you don’t qualify for chess unemployment. better to be chess fired
Leo pointed out that C++20’s std::chrono overloads the `/` operator to provide date creation syntax. Surely Ruby can do better?
```
>> module ISO8601
Month = Data.define(:y, :m) { def -(d) = Date.new(y, m, d) }
refine(Integer) { def -(m) = Month.new(self, m) }
end
>> using ISO8601
>> 2025-12-29
=> #<Date: 2025-12-29 ((2461039j,0s,0n),+0s,2299161j)>
```
@brouhaha In a rare Qualcomm W, they kinda solved this by the magic of `=`.
`R3 = add(R1, R2)` is kinda hard to misinterpret.