In the Lord of the Rings fandom there’s a persistent debate whether balrogs, or Durin’s Bane specifically, have wings. The text in Fellowship is ambiguous whether what it is describing are literal wings or something else wing-like.

    • kamen@lemmy.world
      link
      fedilink
      arrow-up
      2
      ·
      3 hours ago

      However many I feel like that day. Sometimes depends on the language and use case - if it tends to be deeply indented, I’d gravitate towards 2.

      If using actual tabs, you can change how they appear just for yourself without touching the actual code; the same can’t be said about spaces.

      • ℕ𝕖𝕞𝕠@slrpnk.net
        link
        fedilink
        arrow-up
        1
        ·
        2 hours ago

        I was trying to stay out of the fray but this one I feel I have to respond to:

        tabs, you can change how they appear just for yourself without touching the actual code; the same can’t be said about spaces.

        This is why I use spaces. A space is a space everywhere, a tab depends too strongly on the editor. I’ve had too many times where I had to edit on a different machine and it transmogrified my tabs into a different non-character entity in a way that didn’t reveal itself until later.

        • kamen@lemmy.world
          link
          fedilink
          English
          arrow-up
          2
          ·
          2 hours ago

          I can kind of see your point if you’re speaking from a devops/sysadmin’s point of view (i.e. something that would require you to use default editors on the go on systems that you don’t necessarily have control over).

          Other than that, a tab’s principal purpose is indentation. One tab is one level of indentation regardless of how it appears. If a tab gets transformed into something else, it sounds like a text encoding problem and indentation would then be just one of (and possibly the smallest of) several possible issues.

          I’m speaking from a web dev’s point of view - I’m assuming that I’ll always have my own configured editor on hand and I’ll be able to tell it that one tab is N spaces, sometimes even differently for different file types in the same project. Worst that could happen is that I don’t have a specific configuration and the editor just falls back to the default until I set otherwise. Since I’m working in a team, using spaces for a source controlled project would mean that everyone has to use the same. Having tabs means that everyone can configure it for themselves (assuming editor configs don’t go in the repo).

      • naught101@lemmy.world
        link
        fedilink
        arrow-up
        16
        arrow-down
        1
        ·
        1 day ago

        I’m a spaces guy, but agree on the 4. A coder told me decades ago that 4 is better than 2 because if your code starts wrapping due to too many indents you should be refactoring it into functions anyway.

      • early_riser@lemmy.worldOP
        link
        fedilink
        arrow-up
        3
        ·
        1 day ago

        Tabs are one space *quickly runs away*

        I use a single space to indent when writing Python in a SecureCRT command window that gets sent to an interactive Python shell on the server.

        • Ænima@lemmy.zip
          link
          fedilink
          arrow-up
          1
          ·
          9 hours ago

          Tabs are one space *quickly runs away*

          Run all you want, but we will find you!!! 😉

    • SubArcticTundra@lemmy.ml
      link
      fedilink
      arrow-up
      11
      ·
      edit-2
      1 day ago

      I might have the solution: Elastic Tabs. They di what tabs were always meant to do from the start, whilst also fixing the shortcomings that spaces are currently used to fill.

    • kbal@fedia.io
      link
      fedilink
      arrow-up
      13
      ·
      1 day ago

      I’ve heard of 8, 4, and even 3 which is pretty crazy… how could it possibly be 2!?

      • JohnnyCanuck@lemmy.ca
        link
        fedilink
        arrow-up
        8
        ·
        1 day ago

        2 spaces is pretty common in JavaScript… And I think I remember it being pretty standard in HTML way back when. Screens used to be smaller, with low resolution. 4 spaces was a luxury.

        Isn’t 2 spaces the standard in Ruby? I don’t use it, but I’ve heard such things.