# Why UTC is U.T.C.

**URL:** https://discourse.julialang.org/t/why-utc-is-u-t-c/74916
**Category:** Offtopic
**Created:** [January 20, 2022, 9:28am UTC](https://discourse.julialang.org/t/why-utc-is-u-t-c/74916 "2022-01-20T09:28:33Z")
**Posts on this page:** 3
**Page:** 1

<div class="post-metadata">

### Author: ![sylvaticus](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/sylvaticus/32/203883_2.png) [@sylvaticus](https://discourse.julialang.org/u/sylvaticus)
#### Post date: [January 20, 2022, 9:28am UTC](https://discourse.julialang.org/t/why-utc-is-u-t-c/74916/1 "2022-01-20T09:28:33Z")

</div>

> "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](https://www.nist.gov/pml/time-and-frequency-division/nist-time-frequently-asked-questions-faq))

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

---

<div class="post-metadata">

### Author: ![Dictino](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/dictino/32/217281_2.png) [@Dictino](https://discourse.julialang.org/u/Dictino)
#### Post date: [January 20, 2022, 10:42pm UTC](https://discourse.julialang.org/t/why-utc-is-u-t-c/74916/2 "2022-01-20T22:42:47Z")

</div>

Just do it!

```julia
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

```

🙃

---

<div class="post-metadata">

### Author: ![simeonschaub](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/simeonschaub/32/216566_2.png) [@simeonschaub](https://discourse.julialang.org/u/simeonschaub)
#### Post date: [January 20, 2022, 11:03pm UTC](https://discourse.julialang.org/t/why-utc-is-u-t-c/74916/3 "2022-01-20T23:03:45Z")

</div>

> [@sylvaticus](#):
>
> Now I am allowed to revive the proposal that arrays should start indexing at 0.5…

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.
