Isn’t there some merit to the notion that long lines are typically either overly verbose or mentally challenging to understand?
Splitting one line into many because of character limits can also make an action overly verbose or mentally challenging. In some cases, unreasonable gymnastics needs to be done to get 80 character lines, turning good variable and function names into shorter worse ones or adding functions just to hide characters.
But no, 80-column terminals in 2020 isn't “reasonable” any more
71–80 of 330 posts
Re: But no, 80-column terminals in 2020 isn't “reasonable” any more
#72The problem with overly wide lines is that it hurts readability because it's harder to find the next line when scanning your eyes from right back to left. Take it from the world of books: This study may be helpful: > This study examined the effects of line length on reading performance. Reading rates were found to be fastest at 95 cpl. Readers reported either liking or disliking the extreme line lengths (35 cpl, 95 c…
Re: But no, 80-column terminals in 2020 isn't “reasonable” any more
#73Earlier quoted context omitted.
I think a lot of terminals just set that as the default window width. No real reason for it, I usually snap to half the screen width immediately anyways. That turns out to about 105-120 characters width. Some people might just not resize it most of the time. Especially on Mac where efficient window management just isn't a thing.
A note on your last sentence. Once I used my Win10 laptop at an interview at Apple. The interviewer saw me drag one window the the side, snap it, and then select another window to fill in the space. He said, wow, Windows is really nice! :)
I arrange windows to provide the information I need. That's usually a strip on the left to show the mailbox pane of my mail window, a strip below that for slack channels, and a finder window on a scratch directory.
To the right are my work windows.
Window snapping makes that impossible, about the only thing you can do is pretend you're using a tiling WM and cmd-tab any time you need to see anything, or waste an inflexible chunk of screen on it.
Re: But no, 80-column terminals in 2020 isn't “reasonable” any more
#74Earlier quoted context omitted.
The #3 productivity app on the Mac App Store is a $2 app that enables this on Apples: https://apps.apple.com/us/app/magnet/id441258766?mt=12
Hammerspoon can do this (and way more!) for free :) https://www.hammerspoon.org/go/#winresize
Re: But no, 80-column terminals in 2020 isn't “reasonable” any more
#75He's wrong. I can barely fit 80 characters on each panel when I split my code window into two on my Macbook Pro. Any more and I wouldn't be able to see the whole line, or would have to grow eyes that can see tiny fonts.
Re: But no, 80-column terminals in 2020 isn't “reasonable” any more
#76Re: But no, 80-column terminals in 2020 isn't “reasonable” any more
#77It's ironic that he's wrapping the text of this email at 80 columns rather than letting the email reader do the wrapping based on the width.
Re: But no, 80-column terminals in 2020 isn't “reasonable” any more
#78I hate it when zealot coworkers reformat code to 80 columns. It almost always gets much less readable in the process.
Re: But no, 80-column terminals in 2020 isn't “reasonable” any more
#79Earlier quoted context omitted.
I think a lot of terminals just set that as the default window width. No real reason for it, I usually snap to half the screen width immediately anyways. That turns out to about 105-120 characters width. Some people might just not resize it most of the time. Especially on Mac where efficient window management just isn't a thing.
A note on your last sentence. Once I used my Win10 laptop at an interview at Apple. The interviewer saw me drag one window the the side, snap it, and then select another window to fill in the space. He said, wow, Windows is really nice! :)
This should be standard in Windows IMO. It has absolutely transformed how I work and noticeably increased my productivity.
Re: But no, 80-column terminals in 2020 isn't “reasonable” any more
#80The problem with overly wide lines is that it hurts readability because it's harder to find the next line when scanning your eyes from right back to left. Take it from the world of books: This study may be helpful: > This study examined the effects of line length on reading performance. Reading rates were found to be fastest at 95 cpl. Readers reported either liking or disliking the extreme line lengths (35 cpl, 95 c…