Want to read Slashdot from your mobile device? Point it at m.slashdot.org and keep reading!

 



Forgot your password?
typodupeerror
×
Programming Python Ruby Stats The Almighty Buck IT

Open Source Contributions More Important Than Tabs Vs Spaces For Salary (opensource.com) 164

Jason Baker, a Red Hat data analyst, doesn't believe developers who use spaces make more money than those who use tabs. An anonymous reader quotes Baker's blog post: After reading the study one data scientist, Evelina Gabasova, performed some additional analysis and came to a slightly different conclusion, which feels a little more precise: "Environments where people use Git and contribute to open source are more associated both with higher salaries and spaces, rather than with tabs." In other words, if you're at a company where you're using version control and committing open source code upstream, you're statistically a little more likely to be a space-user and a higher wage-earner.
Even across all experience levels, contributing to open source still correlates to higher salaries, Gabasova concludes. "My theory is that when diverse people are working on open source projects together without enforced coding style, the possible formatting mess is nudging people towards using spaces simply because the code is consistent for everyone.

"This is just one of the possible theories, I didn't look to see if possibly language communities that use predominantly spaces (like Python or Ruby) are more active in open source."
This discussion has been archived. No new comments can be posted.

Open Source Contributions More Important Than Tabs Vs Spaces For Salary

Comments Filter:
  • Oh come on! (Score:5, Funny)

    by Frosty Piss ( 770223 ) * on Saturday July 15, 2017 @07:42PM (#54816731)

    Wait, there is no connection between spaces, tabs, and how much I make? But I just spent days going through all my code and replacing and reformatting with spaces. Please don't tell me I have to be worried about curly braces.

    • by Xtifr ( 1323 ) on Saturday July 15, 2017 @08:52PM (#54816985) Homepage

      If it took you days to figure out how to run find(1) and expand(1) (or indent(1) if you wanted to get fancy), then maybe you don't deserve the big bucks!

      On the other hand, if you simply have so much code that it took days for your script to run, then you have my sympathy. :)

    • Beware, open source and spaces lead to open spaces.
    • by mwvdlee ( 775178 )

      People who use spaces instead of tabs are 4 to 8 times less efficiënt.

      • The cool thing is in modern IDEs , you press tab, but the machine uses spaces. Also this git thingy can transform that for you automatically.

        • by ceoyoyo ( 59147 )

          Yeah, but when you're deleting those "tabs" you have to hit backspace four times instead of one.

          Plus your code is bigger because it's using four+ characters to encode a single tab.

          • by Anonymous Coward

            Yeah, but when you're deleting those "tabs" you have to hit backspace four times instead of one.

            I don't, actually. There are editors capable of handling that.

          • Only if you don't know about ctrl + shift + arrow or ctrl+shift+home or you use an IDE that doesn't have those useful tools. And who cares if code is "bigger" because you have more characters? It's not like the compiler keeps that information resulting in a larger binary.

            • by ceoyoyo ( 59147 )

              control + shift + arrow plus delete is four keypresses. Might as well just hit delete four times. Or use tabs and hit it once!

              • True. But I find once I get automatic with key combos that I parse them as one stroke. Four deletes is still four sequential keystrokes. The other option is an IDE which allows find and replace of spaces and tabs.

            • It's not like the compiler keeps that information

              It's not like all languages encourage distribution of programs in compiled form either. Programs in Lua, Python, and JavaScript traditionally are distributed in source code or minified form, and minification for Python is less strong because of its use of leading whitespace to mark block boundaries.

        • by dabadab ( 126782 )

          Also this git thingy can transform that for you automatically.

          No, it can't.
          It can convert x number of spaces to tabs (and vice versa) but it really goes only one way: once you converted to spaces you lose the semantic of tabs.
          If (assuming 1 tab = 4 spaces) you see 8 spaces there's no easy way to tell if it's 2 levels of indentation or, say, one level and 4 spaces of alignment.

          • by prefec2 ( 875483 )

            You are correct. Maybe my statement was a little misleading. Anyway, your IDE can understand that x spaces are one tab. However, it will mess up when you set up the conversion wrongly.

      • If their source code contains nothing except indentation.

  • by sootman ( 158191 ) on Saturday July 15, 2017 @07:47PM (#54816753) Homepage Journal

    Score one for correlation vs. causation.

    https://xkcd.com/552/ [xkcd.com]

  • they're going to tell us that the "one true brace style" has no impact on your income!

  • by El Cubano ( 631386 ) on Saturday July 15, 2017 @08:03PM (#54816835)

    Spaces -> the person who writes the code decides how its indentation looks

    Tabs -> the person who reads the code decides how the indentation looks

    Sometimes I set tabs to be 4 spaces, sometimes 8, sometimes even 2 spaces. However, if the formatting is all done with spaces I don't get that choice. I find tabs more empowering to me personally and I believe that I use them I empower those who read my code.

    • by Anonymous Coward on Saturday July 15, 2017 @08:37PM (#54816923)

      Yeah, and then you try to align something at sub-tab resolution and it's all messed up when you change the tab width.

      • Not if you align it correctly it isn't.

        You indent with tabs and align with spaces. If your alignment messes up when you change the tab width, you screwed up your aligning.

        • Not if you align it correctly it isn't.

          You indent with tabs and align with spaces.

          So, your answer is "use both, as long as it allows you to keep using tabs". A simpler solution is to just ditch the tabs - they are neither required nor superior.

          • I'm not suggesting you use both, I'm pointing out that indentation and alignment are two separate things, and using tabs for indenting doesn't mean to use them for alignment too.

          • by tepples ( 727027 )

            Tab advocates would claim that if you ditch the tabs, there's no way to programmatically distinguish indentation from alignment without implementing an entire language parser to predict what the indentation ought to be and then subtracting that out to infer alignment.

      • by ceoyoyo ( 59147 )

        Yes, that's a feature. If you're the kind of jerk who tries to align code at sub-tab resolution then you can't, at least in whitespace sensitive languages like Python. If you want to align your pretty comments that way, go ahead and use spaces, because it doesn't make the slightest difference.

    • by Anonymous Coward

      Read this a while back, had to go digging for it:

      https://opensourcehacker.com/2... [opensourcehacker.com]

      P.S. The commentary is more insightful than the article itself.

      • The ARE no relevant pros and cons. It's all rubbish. That article is biased, clearly written by a guy who prefers spaces. I can find several other articles extolling the virtues of using tabs. But in the end... how often has this issue actually tripped you up? How often, for that matter, has the use of C&R style braces vs. Berkeley style actually mattered? I've done some projects where tabs, spaces, curly styles and other stuff usually locked down in style guides was freely mixed, and you know wha
      • Of course the comments are more insightful :D
        Because that blog post is simply wrong and written by an idiot.

    • by afxgrin ( 208686 )

      I'm forced to be a Spacer my employer's antiquated pre-compiler seems to lose it's shit when it parses a tab.

      I let my guard down one day despite being warned by a colleague on the pitfalls of tabs in our build process and spent a significant part of my day tracing some weird compiler message down to a tab used on one line.

      I really should just pop the key off my keyboard, it's not worth the hassle of ever having it again.

      • You know, if you use a modern editor like emacs or vi you can have it do an "auto indent" on the current line when you press the tab key. There is no reason for that button to be inserting tabs when your build process has banished them. It is your fault. Do better.

    • Well, on my planet, there are those that are following the appropriate Best Practices including adopting a Style Guide, and those that are not.

      The point is, somebody else already chose the correct way for the indentation to look, and everybody on the project does it the same way. And that way is spaces. Except when it isn't. But is usually spaces.

      If you're choosing, you're doing it wrong.

      • by Jeremi ( 14640 )

        The point is, somebody else already chose the correct way for the indentation to look [...] If you're choosing, you're doing it wrong

        Or, you might be working on your own project. I know, it's a bizarre corner case, but it occasionally still happens.

  • I have no trouble believing that people who submit to Git are more likely to make more money, but parsing it down to whether or not you use tabs or spaces? That seems like too fine a level of granularity.

    Of course, I use spaces and submit code to open source projects, so I'm safe.

  • by tomxor ( 2379126 ) on Saturday July 15, 2017 @08:41PM (#54816941)

    Unless you originated the project, the number one rule is consistency. If you do a lot of contributing to open source then you will find a lot of projects with spaces... and regardless of your preference you will stick to that style if you want your code to be merged.

    I'm a tab guy, it's just a preference... Yet all of my open source contributions to projects other than my own use spaces.

  • I have been writing computer programs for well, several decades. I use spaces for the fact that when I cut, paste, yada, yada everything stays. I often have multiple side cut scratch pads open.

    It is just what I do, there is not one right way ;)

    TBH I see the editor as being much more important. I like an editor which is mostly/all keyboard based.

    My 2 cents is I don't know what moron decided someone should ever have to take their hands off the keyboard and use a mouse and lose registration.

    I hate mice
    • Well, for people using a mouse there is no learning curve because all the normal editing features are in pull-down menus, same as everything else. And of course, when you use that menu it also tells you what the keyboard shortcut is.

      The things people say about emacs are hilarious. I've been using it for decades and I'm still waiting to find this mysterious "learning curve." If you're not using it to script your workflow, you won't know about features or know to even want them. I'm just using it to write cod

  • Tabs descend from the manual typewriter, where they were a poor approximation to properly-formatted columnar layouts. Unfortunately now they join several other forms of white-space (because of Unicode) which are sometimes impossible to distinguish from each other. The safest thing to do is thus to only use space for horizontal spacing. Certainly software should not distinguish white-space characters differently. I'm looking at you, "Make", and yes I've heard the story about it being too late to change because there were already 12 users.

    • The problem with asking to make a small change to Make is that there are already twenty-seven thousand make alternatives and none of them just fix the problems. The only thing that is going to work consistently for everybody is make. Changing it is basically impossible at this point. The reason make is important, after all, is largely because of autotools. And that's an even bigger mess than make.

      Spaces, yes. Except for Makefiles. But the good news is, sendmail was defeated!!!

      • I shared a ski cabin with Eric Allman's sister. Actually, it was sort of the Berkeley and Sun Unix cabin. Everybody but Bill Joy stopped in. So Eric heard from me directly that I didn't like Sendmail.

        I changed a number of projects from Autotools (which I am joyous to have left) to cmake. Cmake's language design leaves something to be desired, but it is in general sane, portable, and more capable than make, and you rarely have to look at the makefile (or whatever) it generates.

    • The safest thing to do is thus to only use space for horizontal spacing.

      You do that, Bruce, and I will continue to operate my projects the way I feel is best, which includes using tabs.

      Not implying anything, but what have you coded lately, if anything?

      • You're not reading my blog. I have released new Free Software recently, and never stop coding.

        Also, isn't this level of taking offense a bit over the top for a tabs vs. spaces argument? One would think we have bigger fish to fry.

        • We do have bigger fish to fry, which is why I wonder why you felt it appropriate to weigh in on a tabs vs spaces thread.

        • OK, did a quick catchup on your blog. Item one is a kernel patch. Tabs. Should I read anything into that? :)

          I agree that this discussion is stupid. Just do what you feel is best and try not to preach (except when absolutely necessary...)

          • Keep reading until you get to the Ruby Gem. The kernel patch is community service related to people messing with GPL rights.
    • by ceoyoyo ( 59147 )

      Tabs on a typewriter let you easily indent to a manually settable, consistent position. They eliminate errors where you're off by a space or two, start typing, then have to get out the corrector tape and fix your crooked column.

      Word processors copied that behaviour, with the tab character meaning a user-selectable level of indentation.

      The tab character seems like an ideal symbol for an indent in code to me, particularly in whitespace sensitive languages: being off by a full tab is obvious; being off by one

    • by Xest ( 935314 )

      I get the impression that the spaces vs. tabs thing is largely a *nix problem and stems from the fact there are simply so many shit open source tools out there on those platforms with terrible usability and are that way because that's how it's always been and fuck change.

      Whilst *nix dev still seem to be at war over tabs vs. spaces, developers of other platforms seem to have completely gotten over it people on other platforms are happily tabbing away and developing code far more efficiently with far less key

      • Most IDEs are actually completely auto formatting the text for you.
        You very rarely have to hit tab.

        For my personal code I use tab, when I join another team, I let someone export the IDE settings and I import them ... I never actually "check" if they use tabs or spaces, as I have every visual noise deactivated. I don't want/need to see CR/TAB/space as greyish little critters.

    • by e r ( 2847683 )

      Tabs descend from the manual typewriter, where they were a poor approximation to properly-formatted columnar layouts.

      Genetic Fallacy. [yourlogicalfallacyis.com] Opinion discarded.

  • by Anonymous Coward

    Everyone should use Windows Notepad as their code editor. Then the tab spacing will be consistent everywhere.

    *ducks*

  • Perhaps designed to demo how far slashdot has fallen?
  • When using Emacs, the tabs/spaces argument is moot.

    When spaces are used, Emacs handles that automatically.

    When tabs are used, Emacs also handles that automatically and elegantly.

    When both tabs and spaces are used, Emacs also handles that automatically, elegantly, and beautifully.

    The world might be a much better place if we all used Emacs.

  • I've been a senior software engineer in a number of companies, small, medium and one of the world's largest companies and I worked with and socialized after work with many of the top positioned and paid software engineers.
    Some had home hobby projects, one guy liked woodworking, one rebuilt cars, some did electronic or software projects, a few were open source. Many worked overtime every single day and simply dropped the keyboard after work to go rock climbing, pubbing or spend evenings and weekends with the

    • a Red hat analyst might be biased

      For what it is worth, I am not a Red Hat analyst or employee, and I am quite certain that open sourcers command higher salaries on average (and are more skilled) than bespoke-only coders.

  • GCC counts tab as 1 char when reporting errors, which can make it slightly harder to coordinate error messages with exact file position in some cases. That is the only issue I ever run into when using tabs. However, the advantages of tabs far outweigh that little difficultly, so in any project where I set the style, the style is tabs. And incidentally, the style for Linux kernel (the largest of all open source projects) is tabs.

  • by nyet ( 19118 )

    sw=4:ts=8:no expandtab or GTFO

  • People who contribute to open source projects tend to be the more enthousiastic programmers; they are willing to put in hours in their own time as well. That greater enthousiasm could very wel equate to a higher skill level as well (either through getting more practice, or through getting more constructive criticism, or because only people who are already competent at programming gravitate towards doing it as a hobby as well). And that greater competency translates into higher salary levels.

    Well, that makes

  • using spaces simply because the code is consistent for everyone

    That's a false assumption.

    My father was legally blind. We were sharing code remotely, using spaces, and he could not differentiate the gaps in the same way that I could. Every commit he would change my 2 or 4 spaces to 8 or 16 spaces. Every commit I would change it back, because it was horrible for me. We eventually switched to tabs, and the constant code reformatting stopped because we could each choose how strong that spacing looked for ea

  • I'm late getting in here late and I skipped the first round because I was so late, but most people tend to use tabs in projects that are already using tabs. So, any correlation is more likely related to some other attribute of the code, not the presence of tabs. Here is an "interesting" interpretation to troll with: A lot of the earliest open source software was Unix, which had tabs in it; so, you get paid less if you work on old open source software :-).

He has not acquired a fortune; the fortune has acquired him. -- Bion

Working...