this post was submitted on 12 May 2024
228 points (99.1% liked)

Asklemmy

43159 readers
1909 users here now

A loosely moderated place to ask open-ended questions

Search asklemmy ๐Ÿ”

If your post meets the following criteria, it's welcome here!

  1. Open-ended question
  2. Not offensive: at this point, we do not have the bandwidth to moderate overtly political discussions. Assume best intent and be excellent to each other.
  3. Not regarding using or support for Lemmy: context, see the list of support communities and tools for finding communities below
  4. Not ad nauseam inducing: please make sure it is a question that would be new to most members
  5. An actual topic of discussion

Looking for support?

Looking for a community?

~Icon~ ~by~ ~@Double_[email protected]~

founded 5 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
[โ€“] [email protected] 17 points 3 months ago (2 children)

Ya'll think you have real unsolved problems. I'm here with "naming variables" (โŒโ– _โ– ).

[โ€“] [email protected] 15 points 3 months ago (1 children)

As a software engineering researcher, I strongly agree. SE research has studied code comprehension for more than 40 years, but for that amount of time, we know surprisingly little about what makes really high-quality code. We are decent in saying what makes very bad code, though, but beyond extreme cases, it's hard to come to fairly general statements.

[โ€“] [email protected] 2 points 3 months ago (1 children)

Genuinely curious - what do we know makes code very bad?

[โ€“] [email protected] 3 points 3 months ago

A few bad things in code for which we have fairly consistent evidence:

  • high nesting depth
  • meaningless or single-letter variable names
  • lots of code duplication
  • very inconsistent formatting
  • very complicated Boolean conditions with AND and OR
  • functions with a lot of parameters
[โ€“] [email protected] 3 points 3 months ago* (last edited 3 months ago) (2 children)

we become programmers because we lack creativity. my brain short circuits when i have to come up with something other than "foo", "bar", or maybe even "baz"

[โ€“] [email protected] 8 points 3 months ago (1 children)

Programming is quite literally creative problem solving, so I doubt that programmers lack creativity.

[โ€“] [email protected] 5 points 3 months ago* (last edited 3 months ago)

Problem solving, of course, but creative writing, composition, and art... not my cup of tea.

[โ€“] [email protected] 2 points 3 months ago

I have the opposite problem, my variables are sometimes too descriptive. I even annoy myself at times with VariableThatDoesThisOneThing and VariableThatDoesDifferentThing just because I want to be able to come back later and not wonder what I was smoking.