Wouldn't it be nice to write `??` in ruby? Or even better `??=`? This would allow you to memoize on true like `@some_neat_flag ??= true` and if foo was false that would stick as opposed to `@some_neat_flag ||= true` which is _always_ true.
proposal here: https://t.co/uN2Af3EVtq
Had some leaf blowing to do yesterday so had some podcast time. Listened to the first YAGNI episode and am now smashing that subscribe button https://t.co/Fjjr09DHDs
It happened. Last night my son asked me, out of the blue, "what's the sum of all the numbers 1 to 100." Nearly choked on my dinner to show him the beauty of ruby `(1..100).reduce(:+)` done.