Why UTC is U.T.C.

"Why is UTC used as the acronym for Coordinated Universal Time instead of CUT?

In 1970, the Coordinated Universal Time system was devised by an international advisory group of technical experts within the International Telecommunication Union (ITU). The ITU felt it was best to designate a single abbreviation for use in all languages in order to minimize confusion. For example, in English the abbreviation for coordinated universal time would be CUT, while in French the abbreviation for “temps universel coordonné” would be TUC. To avoid appearing to favor any particular language, the abbreviation UTC was selected."

(Source)

Now I am allowed to revive the proposal that arrays should start indexing at 0.5…

12 Likes

Just do it!

struct myArray{T}
    x::Array{T}
end
Base.getindex(x::myArray,f)=x.x[ceil(f)]

x=myArray([1 2 3 4])

x[0.5]
#1
x[1.5]
#2
x[2.5]
#3
x[3.5]
#4

:upside_down_face:

3 Likes

In physics, it’s actually fairly common to index Wigner D matrices by spin, which can be half-integer. You could have indices like \{-\frac 3 2, -\frac 1 2, \frac 1 2, \frac 3 2\}, so this is not actually that absurd.

6 Likes