this post was submitted on 01 Nov 2024
481 points (97.6% liked)

Programmer Humor

19503 readers
1230 users here now

Welcome to Programmer Humor!

This is a place where you can post jokes, memes, humor, etc. related to programming!

For sharing awful code theres also Programming Horror.

Rules

founded 1 year ago
MODERATORS
 

Shamelessly stolen from Reddit. No source in the original post.

you are viewing a single comment's thread
view the rest of the comments
[–] FreshLight@sh.itjust.works 31 points 1 week ago* (last edited 1 week ago) (5 children)

I've heard a lot of arguments in favour of starting at 1 and as a "start at 0" person, I'm starting to question my beliefs and am as confused as I was at 3 am when I saw my cat piss from inside her litter box onto the parquet flooring and then slip on it.

[–] henfredemars@infosec.pub 44 points 1 week ago (2 children)

Not indexing at zero seems like a waste of a perfectly good integer.

[–] TheFriendlyDickhead@lemm.ee 19 points 1 week ago (1 children)

Yea ther is a big difference between indexing and counting

[–] MajinBlayze@lemmy.world 6 points 1 week ago

Element 0 is the first element of the list

[–] OpenStars@piefed.social 8 points 1 week ago

Unless you are saving it for something else, like the header of a table:-).

[–] gnutrino@programming.dev 15 points 1 week ago

True programming chads don't index at all, they just bind functions to the list monad.

[–] marcos@lemmy.world 14 points 1 week ago

Indexing by zero has a huge positive impact on the correctness of complex operations like joining intervals, that nobody trusts themselves to write anyway and always pack behind a well-verified library.

But I think the reason we have it is because C maps it almost immediately into memory offsets.

[–] mkwt@lemmy.world 8 points 1 week ago

Like any other convention, it's not really a big deal either way. Fortran gets along just fine with 1-indexing.

[–] palordrolap@fedia.io 4 points 1 week ago

Find yourself a language that allows negative indices to count back from the end of an array.

In those languages, index 0 is usually the first element, but if you're particularly perverse and negate your indexing, you can start at 1, or rather -1, at the other end and work backwards.

0-indexing originally comes from needing to add to the array's base memory address to locate elements. If you have an array at memory address 1234, you might expect to find the first element at that address, which would be 1234+0, and the next at 1234+1, etc.

1-indexing started as either a deliberate abstraction from that idea, and/or else there's something else stored at 1234 that the array data type needs and the real elements start at 1234+1.

All that said, there's at least one language that insists the indices of an array be of a subtype of some Integer type that must have a limited range. Then you can start and end wherever you like, and the whole 1 vs 0 business is meaningless (except to whoever writes the compilers for that language anyway).