What do you think of adding a convenience function:
`DateTime.to_utc(dt)`
Which would be a shortcut for:
`DateTime.shift_zone!(dt, "Etc/UTC")`
As converting back to UTC might be a common need for some applications, and writing systematically "Etc/UTC" is a bit ugly.