youRFate@feddit.detoLinux@lemmy.ml•[@linux](https://lemmy.ml/c/linux) [@programmerhumor](https://lemmy.ml/c/programmerhumor) !programmerhumor@lemmy.ml
51·
1 year agoUsually variables like that can be avoided with itterators nowadays. If they can’t I like to use idx
, if they are nested I name them after what they index, like idx_rows, idx_cols
.
Afaik much smaller code base and as such easier to audit.