Comment on What host names do you use?
MonkeMischief@lemmy.today 3 weeks agoOne possibility could be because in conventional “computer counting” in (most) coding languages, it starts at zero. Like if I make an array of things
[monke, chimp, peanut]
monke would be [0]
chimp would be[1]
peanut would be [2]
Once I learned about this concept I started naming enumerated things from 0 usually just to keep a kind of consistency. Maybe I think if it’s a habit, I won’t make those mistakes with code. :p
sugar_in_your_tea@sh.itjust.works 3 weeks ago
Use Lua, it uses one-based arrays. This is nice for a few reasons:
+ 1
and- 1
in my codeIt feels wrong coming from C, but it’s actually really nice, especially since the reasons C does it don’t apply (i.e. index is just a memory offset).