Live data from Hacker News

Developers who use spaces make more money than those who use tabs

stackoverflow.blog

41–50 of 690 posts

Re: Developers who use spaces make more money than those who use tabs

#41
post #27

>Developers who use spaces make more money than those who use tabs Sure, but how many spaces? grabs popcorn

Where does using vim to insert four Spaces everytime I press tab leave me?

A brilliant automation solution!

Re: Developers who use spaces make more money than those who use tabs

#42
This does not mean that changing from tabs to spaces will increase ones income.

I would expect there simply is a confounding factor that the author did not look at. Maybe the info is not in the data.

I can imagine that the space/tab choice is related to the "upbringing" of the developer. Maybe which language or editor they used first in their life.

Or maybe it's related to culture. For example when using IRC, tabs are usually not used to communicate. Maybe that impacts the general choice of tabs/spaces.

Or maybe more sophisticated users tend to exchange the tab key for something else:

https://xkcd.com/1806

Re: Developers who use spaces make more money than those who use tabs

#44

Older people use spaces. Older people make more money because they are further along in their career. Thus it only appears spaces make more than tabs, when it's really about age. Just a guess.

The graph has experience as its y axis.

Re: Developers who use spaces make more money than those who use tabs

#45
post #8

Jetbrains product users make more money? ;^)

How else do you think they can afford to pay for the licenses?

The full toolbox is less than a dollar a day - it's not like we're talking about really expensive licensing. They're not RedGate.

Re: Developers who use spaces make more money than those who use tabs

#46

"The model estimated that using spaces instead of tabs leads to a 8.6% higher salary". So the model actually predicts causality, instead of correlation? That's amazing. I'll start using spaces instead of tabs today and I will ask for a 8.6% raise. According to this model, I should get it!

Join a basketball team, you'll be taller too!

Re: Developers who use spaces make more money than those who use tabs

#50
post #35

Good thing things like YAML have now trained me to only use spaces. Also for those looking to make a quick buck, emacs has `c-x h m-x untabify` enjoy

   ;; if indent-tabs-mode is off, untabify before saving
   (add-hook 'write-file-hooks
              (lambda () (if (not indent-tabs-mode)
                             (untabify (point-min) (point-max)))
                nil))
is pretty sweet if you are lazy.
Post reply on HN