vote up 1 vote down star
1

It's almost gotten to the point where you can't buy a conventional (4:3) monitor anymore. Pretty much everything is widescreen. This is fine for watching movies or TV, but is it good or bad for programming?

My initial thoughts on the issue are that widescreens are a net negative for programmers. Here are some of the disadvantages I see:

Poor space utiliziation

One disadvantage of widescreens you can't argue with is that they offer poor space utilization for the amount of total pixels you get. For example, my Thinkpad, which I bought just before the widescreen craze, has a 15" monitor with a native resolution of 1600 x 1200. The newer 15.4" Thinkpads run at most 1680 x 1050. So (if you do the math) you get fewer pixels in a wider (but not shorter) package. With desktop monitors, you pay a price in terms of desk space used. Two 1680 x 1050 monitors will simply take up more of your desk than two 1600 x 1200 monitors (assuming equal dot pitch).

More scrolling

If you compare a 1680 x 1050 monitor to a 1600 x 1200 monitor, you get 80 extra pixels of width but 150 fewer pixels of height. The height reduction means you lose approximately 11 lines of code. That's less you can see on the screen at one time and more scrolling you have to do. This harms productivity, maybe not dramatically, but insidiously.

Less room for wide panels

Widescreens also mean you lose space for wide but short panels common in programming environments. If you use Visual Studio, for example, your code window will be that much shorter when viewing the Find Results, Task List, or Error List (all of which I use frequently). This isn't to say the 80 pixels of extra width you get with widescreen would never be useful, but I tend to keep my lines of code short, so seeing more lines would be more valuable to me than seeing fewer, longer lines.

What do you think?

Do you agree/disagree? Are you now using one or more widescreen monitors for development? What resolution are you running on each? Do you ever miss the height of the traditional 4:3 monitor? Would you complain if your monitors were one inch narrower but two inches taller?

flag
Gives me space for iChat and Tweetie. – ceejayoz Oct 7 at 21:25

6 Answers

vote up 8 vote down check

1) Rotating monitors.

These negate almost all of the problems you describe. Most of the folks I work with have 19" widescreen monitors, and usually one or both have been rotated into the vertical position. This gives them increased room for everything.

2) Tool panels.

Many IDEs these days have the ability to move tool panels to any side of the screen. I find that I keep more of them open with my widescreen monitors than without, including search results or errors.

3) Tabs.

The wider the monitor, the more tabs you get to see. This is a good thing.

4) Larger monitors.

You can obtain the same kind of vertical space as you could before, but you simply need to get a larger monitor. I moved up to a 24" widescreen to maintain the 1200 pixel height for my primary display at home, and don't regret it one bit. I look forward to getting a 30" sometime in the future, so I can have at least 1600 pixels in height. Ideally, this would even let me have two entire editor windows open on one screen (and with windows 7, that would be a breeze).

5) Tough luck.

Widescreen monitors are here to stay. Our eyes are better able to absorb more information horizontally than they are vertically, so this transition will benefit humankind overall in the long run. Sit back, enjoy the ride!

link|flag
1  
I don't argue that our eyes can take in more horizontally than vertically, but if you have two monitors side-by-side, that argument is pretty much nullified. Also, the information we take in with our peripheral vision is not useful for coding. It's useful for seeing movement or flicker, which is why we like our screens wide for movies. – DanThMan Oct 7 at 21:18
1  
I use 3 widescreen monitors and I love it. I would never, ever go back to 4:3 for many of the reasons listed above. – snicker Oct 14 at 18:51
Visual studio can be rearranged to work better with any resolution, so it really doesn't matter much. In portrait mode the tools take up to much space on the sides, in landscape they leave enough room for the code view. With two monitors, you can drag em all off to your second display and forget about it. – Charlie Brown Oct 14 at 18:57
vote up 5 vote down

This is why you buy wide-screen monitors that you can orient vertically for your desktop.

I don't see the problem really - I get a full size keyboard on my laptops, and enough space to put two editors side by side on my desktops.

link|flag
I extremely enjoy working with my widescreen monitor in "landscape" mode I can read so much more code at once. – Dave Oct 7 at 21:15
1  
"Portrait" mode – Jimmy Oct 7 at 21:18
vote up 1 vote down

It is much easier to scroll vertically than horizontally.

link|flag
vote up 0 vote down

I use a 24" Dell monitor at home with Win7. When I want to fake dual screens I just pop two windows next to each other with the cool new Win7 window snap features. Done.

link|flag
vote up 0 vote down

Yes, widescreen monitors are worse for development.

You need at least 1024 pixels across, so your screen matches your users.

After that, you need as many lines of code as you possibly can fit on your screen.

You can get lots of code if you take a widescreen monitor and orient it in portrait mode, but then you need a version of type antialiasing that supports vertical subpixels, which Windows doesn't.

Ah well, it sucks, but at least monitors are cheap. Buy two!

link|flag
vote up 2 vote down

One benefit of wide-screen is that one can easily have two code files open side by side. For example, in Visual Studio and using TestDriven.NET, I typically have my unit tests open in one tab group, and the code under test open in another tab group. So I can work on the testee code in the left hand pane, but have the tests readily to hand so I can right-click one and run it -- no need to swap to another tab first.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.