mastodon.zunda.ninja is one of the many independent Mastodon servers you can use to participate in the fediverse.
Zundon is a single user instance as home of @zundan as well as a test bed for changes of the code.

Administered by:

Server stats:

1
active users

zunda

ruby-jp SlackでEnumerable#with_indexを知ったよ

$ cat today.rb
require 'prime'

today = '20221221'
a = today.chars.map{_1.to_i}.reverse
b = a.max + 1
while b < 100
if a.map.with_index{|n,i| n*b**i}.sum.prime?
puts "#{today}は基数#{b}で素数だからがんばろう"
break
end
b += 1
end
$ ruby today.rb
20221221は基数6で素数だからがんばろう