If you index a `RingBuffer` before having appended any values to it, you will unsafely get whatever was in memory at the buffer's location ```python from numpy_ringbuffer import RingBuffer r = RingBuffer(10) print(r[0]) # -2.6815615859885194e+154 ```