I remember one GitHub project that implemented some algorithm (I think it was Dijkstra’s) but only used 4 or 5 single letter variables and just kept reusing them.

Pxtl
link
fedilink
English
1
edit-2
1Y

Maybe they had a background in low-level assembly code? If you’re writing assembly that’s kinda sorta how you’d handle registers.

When you are used to math equations, it’s easy to slip into that habit.

Pxtl
link
fedilink
English
41Y

Single letter variables, yes. Reusing them? No.

@vsh@lemm.ee
link
fedilink
English
01Y

Naming variables by single letters is faster than a full 10-15 character word. Also sometimes more readable depending on context.

Length might have mattered in the 80s and 90s when IDEs were crap but we got autocomplete in pretty much all our text editors (even TUI ones like vim).

As for readability there is an argument to be had in specific contexts, but 9 out of 10 times it makes more sense to use a proper word.

Example:

let list = [1, 2, 3];
for i in list {
    println!("{}", i);
}

In this case using item in the place of i would be more fitting.

Only if they are well-known in the language you’re using or domain you’re writing for. x and y are fine for coordinates. i and j are fine for loop indices. But abbreviating things unnecessarily is bad IMO. s = GetSession() is too terse, for example.

Pxtl
link
fedilink
English
21Y

No, I mean single-letter vars are standard in physics and math, but reusing vars is not acceptable. Obviously they’re not good practice except in the scenarios you describe, but mathies gonna math.

Dandroid
link
fedilink
341Y

When I was in college, I had a guy that I was working on a project with that did this constantly. At one point I looked at one of his files and the variables were named a, b, c, aa, ab, ac, ba, bb, etc. That when I was like, bro, you gotta stop doing this.

The guy thinks in Excel.

“Inside you there are two wolves…” or something:

Option 1: Sit down with them and go line by line through it. Make him identify each variable’s purpose and then immediately find and replace to rename every instance with a more descriptive name.

Option 2: Small script to shuffle the variable names in his code around after each of his commits.

Create a post

Post funny things about programming here! (Or just rant about your favourite programming language.)

Rules:

  • Posts must be relevant to programming, programmers, or computer science.
  • No NSFW content.
  • Jokes must be in good taste. No hate speech, bigotry, etc.
  • 1 user online
  • 77 users / day
  • 211 users / week
  • 413 users / month
  • 2.92K users / 6 months
  • 1 subscriber
  • 1.53K Posts
  • 33.8K Comments
  • Modlog