Trying to convert a datetime object to unixtime to a string for an api that uses unixtime. However, I cannot figure out how to get the result formatted in non-scientific notation:
julia> a = Dates.datetime2unix(now()); string(round(a))
"1.474626735e9"
What I want is to get:
julia> str = string(round(a))
"1474626535"
I cannot figure out how to specify the format for the Float64.
