>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?
Developers who use spaces make more money than those who use tabs
41–50 of 690 posts
Re: Developers who use spaces make more money than those who use tabs
#42I 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:
Re: Developers who use spaces make more money than those who use tabs
#43Re: Developers who use spaces make more money than those who use tabs
#44Older 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.
Re: Developers who use spaces make more money than those who use tabs
#45Re: 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!
Re: Developers who use spaces make more money than those who use tabs
#47Re: Developers who use spaces make more money than those who use tabs
#48correlation != causation
Re: Developers who use spaces make more money than those who use tabs
#49Re: Developers who use spaces make more money than those who use tabs
#50Good 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.