Get and format Unix timestamps in Ruby.
# Current timestamp puts Time.now.to_i
# String to timestamp require 'date' puts DateTime.parse('2024-01-01T00:00:00+00:00').to_time.to_i
# Timestamp to string puts Time.at(1704067200).utc