Slashdot Mirror


The End of Non-Widescreen Laptops?

Santi Onta writes "Today Lenovo retired the last NON-widescreen laptop they offered (the T61 14.1) from the market, and Lenovo is just an example (Apple, Sony, HP, etc. are the same). I understand the motivation behind all the laptop manufacturers to move to widescreen: they can still advertise that they offer 14.1 or 15.4 screens, but the screen area is smaller, and thus they save more money. Some people might like widescreens (they are useful for some tasks), but any developer knows that vertical space matters! Less vertical space = less lines of code in the screen = more scrolling = less productivity. How can laptop manufacturers still claim that they look after their customers when the move to widescreens is clearly a selfish one? I just wish they offered non-widescreen laptops, even if it were for a plus (that I'd be more than happy to pay)." I've always preferred the widescreen aspect ratio -- vertical matters, but having two nice wide columns always mattered more to me. Until this reader's submission, I hadn't realized that it was such a contested issue. Does this matter?

6 of 668 comments (clear)

  1. Pixels Are Your Friend by kmsigel · · Score: 5, Informative

    My laptop screen is wide format (1920 x 1200). With that many pixels you can easily have 4 edit windows up at once (2 x 2 array) with each one having the "standard" 80 columns and 25 lines. This still leaves plenty of room around the edit windows for testing windows, frequently accessed desktop icons, etc.

    I admit that stuff on the laptop screen is a bit small (it is ~15 inch diagonal), but when using my 24 inch monitor (which I use 99.9% of the time) the display is a thing of beauty.

  2. X Series by kotj.mf · · Score: 5, Informative
    > Today Lenovo retired the last NON-widescreen laptop they offered

    Really?

    --
    hang brain.
  3. Re:A Few More Points to Weigh by AKAImBatman · · Score: 5, Informative

    At the company I work at, there is extreme contempt for hooking widescreen laptops up to projectors and smartboards as the user on the laptop cannot view what they are doing on the laptop's screen (if they do it is super distorted to fit on the other viewing device).

    That's odd. All the laptops I use happily show an 800x600 image square in the middle of the screen when hooked up to a projector. (Either that or I can use it as a second screen. Depends on how your laptop is configured.) You may want to play around in the Display Properties and see if you can reconfigure your laptop to handle that situation correctly. In my experience, there are very few widescreen devices that lack support for 4:3 mode with black bars.
  4. Parent Contains Malicious Links! by Anonymous Coward · · Score: 5, Informative

    AVOID THE RDS LINKS!

    Anything with http://rds.yahoo.com/ because it is a breeding ground for redirected harmful scripts! Send a message to Yahoo to stop this!

  5. Usability Issues by Graff · · Score: 5, Informative

    Yes this matters. It is well-known throughout the publishing world that wide columns of text are harder to read than narrow columns. Our eyes are more suited to reading narrow columns of text than wide ones and having to jump from the bottom of the screen to the top of the screen to read the next column is not optimal. The current generation of widescreen displays and the way text is laid-out onscreen causes you to lose track of which line you are reading and it also causes you to slow down in order to better keep track of your vertical position.

    A display with a higher vertical to horizontal ratio makes it easier to read and edit text on. Text columns are naturally narrower so your eyes have less problems tracking horizontally and the columns are also higher which means that there is less scrolling. It also means that menu bars at the top or bottom of the screen or window take up a smaller percent of the vertical presentation, which uses the display more effectively.

    Widescreen is better suited to video and pictures than it is for text. It would be nice to have displays optimized for text so that people who work with text can do so more effectively. One thing I try to do to counteract a widescreen is to place as many elements as I can (toolbars, etc.) in a vertical orientation rather than a horizontal one. By maximizing my vertical space and using the horizontal space to stack bars side-by-side I do what I can to create a narrow, high space for text. It would be much better to have a screen that was oriented this way in the first place but if you can't find one...

  6. Re:Brevity. Soul of wit. by slim · · Score: 5, Informative

    Write shorter methods. That is all. I don't know to what extent you were joking, but I agree with this. If your blocks are significantly more than 50 lines long, there's something wrong.

    The Linux coding style guide contains wisdom on this:

    "Functions should be short and sweet, and do just one thing. They should fit on one or two screenfuls of text (the ISO/ANSI screen size is 80x24, as we all know), and do one thing and do that well." And something similar goes for width:

    "Now, some people will claim that having 8-character indentations makes the code move too far to the right, and makes it hard to read on a 80-character terminal screen. The answer to that is that if you need more than 3 levels of indentation, you're screwed anyway, and should fix your program." I must admit to often failing to live up to those ideals, but that doesn't mean they're good aims to have in mind.