Slashdot Mirror


Ask Slashdot: Why Is the Caps Lock Key Still So Prominent On Keyboards?

Esther Schindler writes: The developers at .io are into tracking things, I guess. In any case, a few weeks back they decided to track team performance in terms of keyboard and mouse activity during the working day. They installed a simple Chrome plugin on every Macbook and collected some statistics. For instance, developers have fewer keypresses than editors and managers—around 4k every day. Managers type more than 23k characters per day. And so on. Some pretty neat statistics.

But the piece that jumped out at me was this: "What's curious—the least popular keys are Capslock and Right Mouse Button. Somewhere around 0.1% of all keypresses together. It's time to make some changes to keyboards." I've been whining about this for years. Why is it that the least-used key on my keyboard is not just in a prominent position, but also bigger than most other keys? I can I invest in a real alternate keyboard with a different layout (my husband's a big fan of the Kinesis keyboards, initially to cope with carpal tunnel). But surely it's time to re-visit the standard key layout? What keys would you eliminate or re-arrange?

698 comments

  1. Caps Lock used to power a huge lever. by 140Mandak262Jamuna · · Score: 4, Informative

    The Capslock key inherited the position occupied by the Shift-Lock key. Some keyboards still mark it as shift-lock. In the old mechanical typewriters, the shift lock actually moved the entire framework holding the rack of all the levers that held the letters. It required considerable force to push.

    --
    sed -e 's/Chuck Norris/Rajnikant/g' joke > fact
    1. Re:Caps Lock used to power a huge lever. by T.E.D. · · Score: 1

      The Capslock key inherited the position occupied by the Shift-Lock key. Some keyboards still mark it as shift-lock. In the old mechanical typewriters, the shift lock actually moved the entire framework holding the rack of all the levers that held the letters. It required considerable force to push.

      ...and you could tell from the look and feel of the shift key that it was down. And using the shift key automatically unlocked the shift lock (on many keyboards at least).

      If you really want to have that key, it probably ought to go back to that: some kind of mechanical lock on the shift key. Perhaps a smallish button actually physically on one corner of the left shift key.

    2. Re:Caps Lock used to power a huge lever. by SoftwareArtist · · Score: 5, Interesting

      I wish it still behaved as shift-lock: affecting all characters, not just letters. When I use caps lock, it's almost always because I'm typing an environment variable or #defined constant. And that means I'm going to be typing lots of _ characters. If caps lock behaved like shift lock, I wouldn't have to press shift for every one of them.

      --
      "I'm too busy to research this and form an educated opinion, but I do have time to tell everyone my uninformed opinion."
    3. Re:Caps Lock used to power a huge lever. by mattventura · · Score: 1

      And then most early computer and terminal keyboards put something more useful there (usually Ctrl). Somehow it later got reverted. If only this study had been done somewhere around 1985.

    4. Re:Caps Lock used to power a huge lever. by SEE · · Score: 5, Informative

      It was reverted because, as computers started systematically replacing the typewriter in businesses (instead of being a specialist machine, like terminals), secretary-typists and the typists in corporate typing pools complained about the location of the Caps Lock key not being where they were used to it. Keyboards for computers intended for general business use accordingly swapped over, since the people who typed the most and had the strongest opinions on keyboards in the early 1980s wanted it that way.

    5. Re:Caps Lock used to power a huge lever. by squiggleslash · · Score: 4, Insightful

      Alas constants tend to also have a lot of digits in them, so you'd win on the underscores, but lose for the other non-alphas.

      Maybe it's time underscore was its own key anyway...

      --
      You are not alone. This is not normal. None of this is normal.
    6. Re:Caps Lock used to power a huge lever. by Barefoot+Monkey · · Score: 1

      It might be useful to have capslock switch the minus and underscore iff the cursor is in the middle of a word. I'd like to see how that works out in practice. In fact, I've been wanting to try my hand at making Sublime Text Editor plugins for a while and a small tweak like this might be just the thing for a first project :)

    7. Re:Caps Lock used to power a huge lever. by unrtst · · Score: 4, Funny

      Maybe it's time underscore was its own key anyway...

      How about where the capslock is now

    8. Re:Caps Lock used to power a huge lever. by Anonymous Coward · · Score: 0

      That's easy to set up. In KDE there's even an option in GUI for that.

    9. Re:Caps Lock used to power a huge lever. by Anonymous Coward · · Score: 0

      Dunno what hardware you're using, but mine affects all keys, and has done so for the past 25 years or so (on many keyboards).
      Actually the hardware just sends key down/up events, so it's up to the OS how to interpret these scan codes. You should check if your OS had some setting for the caps/shift lock key behavior.

    10. Re:Caps Lock used to power a huge lever. by xaxa · · Score: 1

      You could tweak an existing keyboard layout definition to do this -- it's easy on Linux, and there is (or at least used to be) a tool to do it for Windows.

    11. Re:Caps Lock used to power a huge lever. by turning+in+circles · · Score: 1

      I think this is where we get to the information in the summary that managers type almost 6x as many characters as programmers, and they like to feel like they're in charge, so dream on, programmers, the managers, who mimic the secretaries of yesteryear in their lack of a need for control keys or other useful keys, will keep things as they''ve always been.

      --
      Might as well face it I'm addicted to data.
    12. Re:Caps Lock used to power a huge lever. by K.+S.+Kyosuke · · Score: 1

      since the people who typed the most and had the strongest opinions on keyboards...

      ...should have gotten an APL keyboard. ;) Or a Knight keyboard at least.

      --
      Ezekiel 23:20
    13. Re:Caps Lock used to power a huge lever. by bdh · · Score: 3, Interesting

      www.autohotkey.com

      For those interested in making the shift key act like a typewriter, I use this snippet. Double tap (within 500ms) either shift key, and it enables shift lock; a single tap disables it:

      Shift::
            if A_PriorHotkey = Shift
            {
                  if A_TimeSincePriorHotkey 500
                  {
                        SetCapsLockState, on
                        return
                  }
            }

            SetCapsLockState, on
            keywait, CapsLock
            SetCapsLockState, off
      return

    14. Re:Caps Lock used to power a huge lever. by IcyWolfy · · Score: 4, Informative

      This would be horrible for anyone using Swiss German Keyboard Layout.
      CAPS is a separate keyboard state.
      CAPS ON, Key !== SHIFT+Key

      ü = ü
      Shift-ü = è
      CAPS ON, ü = Ü
      CAPS ON, Shift-ü = È

      Because the relevant part of the layout:
            o p ü
            k l ö ä $

      With Shift
          O P è !
          K L é à £

      Caps Lock
            O P Ü
            K L Ö Ä $

      Caps+SHIFT
            O P È !
            K L É À $

      Thus, CAPS-ON + key != Shift + key.

    15. Re: Caps Lock used to power a huge lever. by Anonymous Coward · · Score: 0

      Given how modern keyboards are used, I think the hashtag a.k.a. pound should get the spot. Sigh.

    16. Re:Caps Lock used to power a huge lever. by TeknoHog · · Score: 1

      My keyboard has two Ctrl keys in a rather symmetric orientation, and I like them that way, much like the two Shift keys. If the left Ctrl were in the place of Caps Lock, then its right counterpart would have to replace Enter.

      It's not that I like having a Caps Lock around doing nothing, but it's not exactly a great place for a modifier which generally comes in symmetric pairs.

      --
      Escher was the first MC and Giger invented the HR department.
    17. Re: Caps Lock used to power a huge lever. by tommyjcarpenter · · Score: 3, Informative

      I just asked my wife, a user, if she ever uses the CAPS key. She works for the U.S. Government. She states that all government software forms in their office are filled out in CAPS because a lot of judges and elder officials who review the documents are older and can't read normal text as well as CAPS. Obviously this is a larger, systemic problem, but to my wife who cannot control these policies, the CAPS key being in a prominent position helps her greatly. Very interesting POV!

    18. Re:Caps Lock used to power a huge lever. by Darinbob · · Score: 1

      Hmm, do they get used symmetrically? The right shift key for me is used but not that often, whereas the other keys like Windows (ugh), Alt, Command, etc, are really rarely touched and never on the right side (though I never need AltGr).

    19. Re:Caps Lock used to power a huge lever. by westlake · · Score: 1

      secretary-typists and the typists in corporate typing pools complained about the location of the Caps Lock key not being where they were used to it. Keyboards for computers intended for general business use accordingly swapped over, since the people who typed the most and had the strongest opinions on keyboards in the early 1980s wanted it that way.

      and I bet the same could be said for full-time clerical workers in 2015. changes in software and workflow in the office can be glacial.

    20. Re:Caps Lock used to power a huge lever. by davester666 · · Score: 1

      How the fuck does a Chrome Extension gain access to EVERY keystroke on a Mac? It's not like managers and developers do everything in their browser.

      --
      Sleep your way to a whiter smile...date a dentist!
    21. Re:Caps Lock used to power a huge lever. by rtb61 · · Score: 1

      The secretaries were also the reason for QWERTY. I've worked with a bunch of businesses and it was always suprising how many decisions the bosses secrety made, often the pretty the secretary the more power she had. Still why has QWERTY lingered on and for fuck sake why are we teaching to children whilst teaching them alphabetical order at the same time.

      --
      Chaos - everything, everywhere, everywhen
    22. Re:Caps Lock used to power a huge lever. by adolf · · Score: 1

      Selective shift-lock excluding the numeric keypad?

      #IT_WOULD_MAKE_THIS_EASY3513$

      I know, I know: There's only so much a mechanical typewriter can accomplish.

    23. Re:Caps Lock used to power a huge lever. by Anonymous Coward · · Score: 0

      Yes, maybe split the often large caps lock key into two normal sized keys, one for caps lock and one for underscore.

    24. Re: Caps Lock used to power a huge lever. by Anonymous Coward · · Score: 0

      Redundant, KDE has a gui for every option, that's why it's so cluttered and unintuitive.

    25. Re:Caps Lock used to power a huge lever. by Tomahawk · · Score: 1

      From the article, 4k keypresses per day for developers Vs 23k for managers... managers are less likely to use the _ key, so why make that prominent?! The majority of keyboard users don't use _ much.

      It's hard to know what to put in place of such a large key. I'd be inclined to suggest, maybe, a local currency key (that would change behaviour based on the current locale). It's awkwark hitting AltGr-4 to get a € symbol, for example (and US keyboards don't have an AltGr key!) - especially considering that Shift-4 gives $, and I typically use shift with my left little finger (rarely my right), and AltGr is on the right, and beside the space key, so it's normally right-thumb-on-AltGr. I also have less need for $ and £.

      So the £, €, $, the yen symbol, etc, could be placed next to the A key (or maybe one place to the left again) on all keyboard.

      Still not needing such a big key, there's still space for another normal key here (or maybe just leave caps-lock there, just smaller, as the vast majority of use have muscle memory for its location - moving it somewhere else would cause confusing for too many people - I'd be all for making it smaller, though)

      If we were to move it, I might suggest an alternative shift for special characters, especially for non-English letters, like é í á, etc. AltGr does most of them, but again, it's not a little-finger key, so it breaks the norm of typing.

    26. Re: Caps Lock used to power a huge lever. by Tomahawk · · Score: 3, Insightful

      On a UK and Irish layouts, certainly, and likely others too, the # key already has a more prominent space on the home row. For US users, it's Shift-3. For UK and Irish, Shift-3 is the pound symbol (as in £). # ("hash" for us, or "sharp", or "number" -- never "pound" or "octothorp") is a little-finger key located beside the bottom half of the enter key (which has a different shape for us than on US keyboards)

      My home row is
      capslock ASDFGHJKL;'# bottom_of_enter_key
      (the 3 keys after L with shift are :@~ )

      Putting it where caps-lock is now would be counter-productive for all most non-US keyboard users.

    27. Re:Caps Lock used to power a huge lever. by Tomahawk · · Score: 1

      And the debate about QWERTY keyboards will go on and on and on and on... and the keyboard default layout will never change because at this stage almost everyone in the (developed, at least) world uses a keyboard in that layout. It's too late at this point to change it.

      I, for one, don't want to change. I've been typing on the QWERTY keyboard for over 30 years, and I don't want to have to relearn how to type for nor real valid reason. I find it hard enough switching between US and UK keyboard layouts, and that's only a few keys different. (I actually ended up buying a new keyboard for my US-bought laptop just because of those few key (in both senses of the word) differences.

    28. Re:Caps Lock used to power a huge lever. by AmiMoJo · · Score: 1

      I've actually done that on my machines. There is a Windows app called KbdEdit that lets you make your own keyboard layouts. I changed Caps Lock to an underscore character, and added a lot of alt-gr alternatives for useful symbols such as:

      - Pi
      - o and u with macrons
      - Yen symbol on UK layouts and Pound symbol on Japanese layouts
      - ohm symbol
      - right and left arrows (you can type them with the Japanese IME but not in English)
      - less/greater or equal to symbols
      - delta and sigma symbols
      - degree symbol
      - multiplication symbol

      --
      const int one = 65536; (Silvermoon, Texture.cs)
      SJW, n: "Someone I don't like, and by the way I'm a fuckwit" - AC
    29. Re:Caps Lock used to power a huge lever. by Tomahawk · · Score: 1

      By right, when touch typing, if you need a modifier key, you use the little finger of the opposite hand to press it. Hence, CTRL-M should be left-control and M. CTRL-C should be right-control and C. (same with shift).

      These days, this isn't important (apart from to avoid stretching your fingers and straining your hand), but in the days of typewriters it was. (Well, apart from the CTRL keys... :) )

      I hate when laptop manufacturers place the Fn key in the bottom left (to the left of the CTRL key) as I always hit it instead of the CTRL key. No matter how good the laptop, if the Fn key is in this wrong position, I won't buy it. (Some BIOSes will allow you to remap the CTRL and Fn keys, which helps).

    30. Re:Caps Lock used to power a huge lever. by Anonymous Coward · · Score: 0

      Yeah I remember that.

      I almost never use Caps-lock because for me I CAN HOLD DOWN THE SHIFT KEY WITH MY PINKY and still type at the same speed I normally do.

      There are a few cases where caps-lock is useful, but when you think about why you would use caps-lock, it's much the same as why you would use num-lock

      You need to do a LOT of typing where you need all the keys capitalized. For example, filling out forms (Which are more legibile and more OCR-capable as all-caps), address labels, and emails/sms that are meant to grab someones attention in an emergency.

    31. Re: Caps Lock used to power a huge lever. by Alioth · · Score: 1

      I'd have to question that (not that she has to do it or the reasons she was told, but the supposed reality that elders can't read normal text as well as caps). One of the pieces of research that was done here in the 1950s resulted in motorway road signs in the UK being in mixed case rather than all caps - it caused howls of anguish from old-timers resistant to change - but the thing is words with lower case text have more of a shape - for instance "Manchester" can be resolved as the word "Manchester" much faster than "MANCHESTER" - it was found you could read the mixed case before you could even resolve all the letters because you could recognise the shape of the word, given that lower case text has more features like ascenders and descenders. Hence all UK road signs ever since have been in mixed case.

    32. Re:Caps Lock used to power a huge lever. by Anonymous Coward · · Score: 0

      This would be horrible for anyone using Swiss German Keyboard Layout.
      CAPS is a separate keyboard state.
      CAPS ON, Key !== SHIFT+Key

      And this is why Americans need to stop trying to simplify things down to their level.

    33. Re:Caps Lock used to power a huge lever. by Anonymous Coward · · Score: 0

      It required considerable force to push.

      ...and then it was assigned to the little left hand pinky?

      Probably just because it was practical to make the mechanics that way, but shows how impractical and user-unfriendly the typewriter keyboard actually was developed.

    34. Re:Caps Lock used to power a huge lever. by Eunuchswear · · Score: 1

      I wish it still behaved as shift-lock: affecting all characters, not just letters. When I use caps lock, it's almost always because I'm typing an environment variable or #defined constant. And that means I'm going to be typing lots of _ characters. If caps lock behaved like shift lock, I wouldn't have to press shift for every one of them.

      Get a French AZERTY keyboard.

      (Except that you use shift-lock to get numbers, by default unshifted is symbols).

      --
      Watch this Heartland Institute video
    35. Re:Caps Lock used to power a huge lever. by Big+Hairy+Ian · · Score: 1

      iF only we could mAKE IT As hard to press

      --

      Build a Man a Fire, and He'll Be Warm for a Day. Set a Man on Fire, and He'll Be Warm for the Rest of His Life.

    36. Re: Caps Lock used to power a huge lever. by Anonymous Coward · · Score: 0

      Yes, and Mac OS X, the OS for idiots who are only allowed a single option because choices are too complicated for sheep, in fact has this option in its GUI system preferences.

      So, is Mac OS X then cluttered, too? Or did you just want to take an ineffective shot against software that you don't like. (Who wastes their time hating software, anyway?)

    37. Re: Caps Lock used to power a huge lever. by Anonymous Coward · · Score: 0

      Customizable vs cluttered... if I wanted to swallow what was forced upon me I would just use winblows.

    38. Re:Caps Lock used to power a huge lever. by tepples · · Score: 1

      Good luck fitting any sort of numeric keypad on a compact laptop.

    39. Re:Caps Lock used to power a huge lever. by doccus · · Score: 1

      Hey that's right.. I had one of those really old typewriters with the round ivory keys for years. I think it actually pushed the keyboard up. I held on to that typewriter until the mid 90s thinking it would be valuable one day.. finally donated it to a thrift shop.. JUST when ebay first started.. and that's when these mid 1800s typewriters skyrocketed in value.. "sigh"

    40. Re:Caps Lock used to power a huge lever. by doccus · · Score: 1

      Wow that's a great snippet for those who don't play computer pinball ;-)

    41. Re:Caps Lock used to power a huge lever. by doccus · · Score: 1

      I wish there was an easy way to disable/enable it.. there's no easy way to tell that that it's on.. often the "engaged" light is hardly visible. This can be a really bad problem for passwords which require correct case, since three strikes in a row can make you have to wait a day. I simply pry it off these days. I tried using software to reassign keys but some simply don't want to ge reassigned such as the switching caps lock with, say, scroll lock .. Maybe it an OSX issue?

    42. Re:Caps Lock used to power a huge lever. by Darinbob · · Score: 1

      Early keyboards I used never had a second control key. And it wasn't around when I learned to touch type. So I learned to do things like Ctrl-A by just shifting the fingers over one space (control key *always* being where capslock is).

      Whenever I'm on someone else's keyboard and control key is down in the idiotic IBM position it drives me crazy. Even the Windows and Alt keys are easier to press (Windows/Command is pretty easy as you use your thumb). To push that stupid Control key I have to curl up the pinkie finger and push it with the knuckle.

      I never use laptop keyboards unless I'm forced to, I always use an external keyboard.

    43. Re:Caps Lock used to power a huge lever. by rtb61 · · Score: 1

      So because you are lazy you want to force that confusion on all future generations. Why the fuck are computers intended for primary school not alphabetical, they will not be entering the work force for decades.

      --
      Chaos - everything, everywhere, everywhen
    44. Re:Caps Lock used to power a huge lever. by dacaldar · · Score: 1

      Yeah, I remember the pain of shift lock on my Commodore 64. I wished for the concept of caps lock instead. Of course in those days I was a child, not a developer, and had almost no use for underscore - it was much more likely that I wanted dash. But the number argument wins out above all.

    45. Re:Caps Lock used to power a huge lever. by JustAnotherOldGuy · · Score: 1

      How dare you post working code! This site has standards and we expect you not to exceed them.

      --
      Just cruising through this digital world at 33 1/3 rpm...
    46. Re:Caps Lock used to power a huge lever. by samwichse · · Score: 1

      THE FIRST POST IN THIS STORY IS A TRUE DISAPPOINTMENT.

      THIS MAKES ME ANGRY.

      stupid filter stupid filter stupid filter stupid filter stupid filter stupid filter stupid filter stupid filter stupid filter

    47. Re:Caps Lock used to power a huge lever. by gzuckier · · Score: 1

      The Capslock key inherited the position occupied by the Shift-Lock key. Some keyboards still mark it as shift-lock. In the old mechanical typewriters, the shift lock actually moved the entire framework holding the rack of all the levers that held the letters. It required considerable force to push.

      ...and you could tell from the look and feel of the shift key that it was down. And using the shift key automatically unlocked the shift lock (on many keyboards at least).

      If you really want to have that key, it probably ought to go back to that: some kind of mechanical lock on the shift key. Perhaps a smallish button actually physically on one corner of the left shift key.

      Some keyboards are nice enough to have a status light in the middle of the capslock key. others try to make do with a status light up in the top right corner, along with numlock and scroll lock. and there are the various softwares that put indicators on the screen. but having it in the key is 1000% better. and one of the windows options is to have the shift key release capslock, which is good. also good the windows accessibility options which have the ability to make the lock keys go boop when you set them on and boopboop when you off them. being microsoft, however, the two options don't work together, so now my keyboard goes boop when i hit capslock, but when i hit shift and it unlocks it just stays quiet.

      --
      Star Trek transporters are just 3d printers.
    48. Re:Caps Lock used to power a huge lever. by gzuckier · · Score: 1

      I wish it still behaved as shift-lock: affecting all characters, not just letters. When I use caps lock, it's almost always because I'm typing an environment variable or #defined constant. And that means I'm going to be typing lots of _ characters. If caps lock behaved like shift lock, I wouldn't have to press shift for every one of them.

      absofrigginglutely. the underscore is the enemy of capslock.
      I confess that's why i try to avoid them, and i avoid camelcase too so all my variables and file names looklikethisbuticanreadthemok.

      --
      Star Trek transporters are just 3d printers.
    49. Re:Caps Lock used to power a huge lever. by RockDoctor · · Score: 1

      and the keyboard default layout will never change because at this stage almost everyone in the (developed, at least) world uses a keyboard in that layout.

      Dream on, Sunshine.

      You describe your frustrations with switching between US and UK layouts. Well, I have that fun, because I'm a Brit and the client's laptop includes software (which I don't use, but "meh") which requires a US-ian layout. But, of course, the physical key caps are laid out in the Dutch pattern (about as different from UK and US as they are from each other. But I've got a Russian keyboard layout installed, for when I'm chatting to the wife from the other side of the world. Three month's ago the trainee (uses the machine on night shift) had German installed because she's German. The partner representatives - who also use the machine - had added Arabic and Turkish layouts. And the next job, we'll have Francophones along, so they'll probably go AZERTY too.

      I doubt that a USian or British QWERTY layout is even a majority, worldwide.

      --
      Birds are not dinosaur descendants;birds are dinosaurs, for all useful meanings of "birds", "are" and "dinosaurs"
    50. Re:Caps Lock used to power a huge lever. by adolf · · Score: 1

      First-world problem.

    51. Re:Caps Lock used to power a huge lever. by Hognoxious · · Score: 1

      Get a USB one, like the French do.

      http://www.ldlc.com/informatiq...

      --
      Confucius say, "Find worm in apple - bad. Find half a worm - worse."
    52. Re: Caps Lock used to power a huge lever. by Anonymous Coward · · Score: 0

      Good luck using a compact laptop to type for 8 hours a day in the office. If you ARE doing this you and your employer are breaking the law.

    53. Re:Caps Lock used to power a huge lever. by tepples · · Score: 1

      First-world problem.

      Fallacy of relative privation.

    54. Re: Caps Lock used to power a huge lever. by Anonymous Coward · · Score: 0

      I use autohotkey as well. Mine is single click copy double click paste, and ctrl+click is normal capslock function.

    55. Re:Caps Lock used to power a huge lever. by adolf · · Score: 1

      Case dismissed.

    56. Re:Caps Lock used to power a huge lever. by T.E.D. · · Score: 1

      Did German typewriters used to do that too? As mentioned, the original intent of that key back in the typewriter days was to "lock" the device into shifted mode so that key didn't have to be held down. That looks like a total hack to me.

      When one goes and repurposes ("hacks") a function to do something other than its original design intent, they shouldn't really be surprised (or complain) when a later redesign leaves their hack high-and-dry.

      More realistically, I'm sure if English keyboards get redesigned more sensibly, it wouldn't stop Germans (or anyone else) from using their current Swiss German keyboard layouts to produce their special glyphs. I'd consider renaming it too, but if Germans still want to call it "CAPS-LOCK" even though it does nothing of the sort, that would be their business too.

    57. Re: Caps Lock used to power a huge lever. by ihtoit · · Score: 1

      that's not the reason forms are filled in in uppercase. It's to remove ambiguity in casing when it comes to identifying individuals from documents - you could claim that McCleary and Mccleary are two different people (they're both acceptable variants of the same thing), but when all other details are relevant for two people you can safely make the assumption that the two variants in fact describe the same individual. But still, the argument would be made on the basis of using the wrong camel case! Uppercasing everything removes that avenue and maintains consistency in form data.

      Also, and just as importantly, U.C.C. 1-201(10) requires that important terms on official documents such as legal texts especially contracts are displayed PROMINENTLY. The easiest way to do this on any block of text is to PRINT IT IN UPPERCASE. This denotes specific meaning to individual words and strings within the document that are printed in uppercase (often with the help of a glossary of terms at the beginning or end of the document), to differentiate from those same words printed normally. It's the textual equivalent of Legalese.

      --
      Political debates have me rolling my eyes so much I think I got optical whiplash. I should sue. - Foamy The Squirrel
  2. The Microsoft key!!!! I've never used it...ever. by Anonymous Coward · · Score: 1

    It's the most useless key on the entire keyboard. Far above the caps lock key.

  3. My Pet Peeves (recent Windows laptop keyboards) by shankarunni · · Score: 4, Insightful

    1. CapsLock. Grr.

    2. The numeric keypad on 15" laptops. Why? Why?! Why?!! It causes the rest of the keys to get scrunched up and moved to unnatural positions, and positions the trackpad offset left upto 3 or 4 inches, which makes for a horrible experience for a right-handed typist. The trackpad should ALWAYS be centered.

    3. But please bring back full-size Page Up/Down keys (with maybe a shift action to Begin/End). I'm looking at you, Macbook Pro! Don't run and hide..

    1. Re:My Pet Peeves (recent Windows laptop keyboards) by Anonymous Coward · · Score: 0

      Just hit command+up/down to do begin/end, and fn+up/down for pageup/pagedown

      No need to slam a bunch of extra keys in there.

    2. Re:My Pet Peeves (recent Windows laptop keyboards) by trabby · · Score: 2

      Numpads for the win, handy for spreadsheets, games, entering long numbers etc. I hardly touch the number row on my keyboard. 15" laptop is the minimum that numpads should be included, what I find more disturbing is 17"-18" laptops without them.

    3. Re:My Pet Peeves (recent Windows laptop keyboards) by slinches · · Score: 1

      1. CapsLock. Grr.

      Not having it would be worse. Nearly all engineering drawing (as well as some additional technical writing) standards require the use of all caps to minimize ambiguity. In those cases holding down the shift key is ridiculous.

      2. The numeric keypad on 15" laptops. Why? Why?! Why?!!

      Because some professions require typing in numbers efficiently? The toggle on number pad layout using letters doesn't work since the keys aren't properly aligned.

      3. But please bring back full-size Page Up/Down keys (with maybe a shift action to Begin/End).

      This I can somewhat agree with. Though, it usually isn't a problem on full size keyboards.

      --
      Knowledge Brings Fear
    4. Re:My Pet Peeves (recent Windows laptop keyboards) by __aaclcg7560 · · Score: 1

      I hate having a numeric keypad on a laptop. I want the keyboard to be centered with the screen and not off to one side. I recently bought an inexpensive 14" Dell laptop because the keyboard didn't have a numeric keypad. The sales clerk tried to upsell me on a 15" Dell laptop with much better hardware specs, but the keyboard had a numeric keypad and I didn't want that.

    5. Re:My Pet Peeves (recent Windows laptop keyboards) by rahvin112 · · Score: 2

      The numeric keypad tends to be pretty highly valued by typists that are 10key proficient and type a lot of numbers. It's actually more common than you probably believe. I and many others prefer to buy laptops/keyboards with the 10 key numeric in place.

    6. Re:My Pet Peeves (recent Windows laptop keyboards) by danbert8 · · Score: 1

      Correct me if I'm wrong, but multiple tapping (5x) of the shift key still enables de-facto "caps lock" via Sticky Keys for the rare users who do want it, use it on a regular basis, and are too lazy to map a keyboard shortcut themselves.

      --
      Yes it's an anecdote! Were you expecting original research in a Slashdot comment?
    7. Re:My Pet Peeves (recent Windows laptop keyboards) by Anonymous Coward · · Score: 0

      I hate having a numeric keypad on a laptop. I want the keyboard to be centered with the screen and not off to one side. I recently bought an inexpensive 14" Dell laptop because the keyboard didn't have a numeric keypad. The sales clerk tried to upsell me on a 15" Dell laptop with much better hardware specs, but the keyboard had a numeric keypad and I didn't want that.

      Same here. I have an 17" HP sitting doing nothing just because I hate that the keyboard is offset. There was a time when a the keypad was on the main keyboard (j-k-l == 4-5-6) and I though that was a nice compromise. It's getting harder to find a laptop without a keypad.

    8. Re:My Pet Peeves (recent Windows laptop keyboards) by Noah+Haders · · Score: 4, Informative

      Num pads on a laptop are ergonomics nightmares. Better to get BT numpad.

    9. Re:My Pet Peeves (recent Windows laptop keyboards) by Anonymous Coward · · Score: 0

      With regards to #2, that's the ONLY redeeming feature of the switch to widescreen laptops. Losing all the screen vertical space hurt a lot of functionality, but for anyone who does any amount of data entry, the numpad is the only part that matters. If you have the misfortune of using the EDT editor on an OpenVMS system as your default text editor, it's a downright requirement. Given, that group only includes about 50 people around the country, but still.

      On a related note, Caps Lock is a must-have if you write code in FORTRAN, and want to match the style without duct taping the shift key down and hoping you don't need to use a number on the top row...

    10. Re:My Pet Peeves (recent Windows laptop keyboards) by Anonymous Coward · · Score: 0

      Command? Is that open apple or closed apple?

    11. Re:My Pet Peeves (recent Windows laptop keyboards) by Anonymous Coward · · Score: 0

      Not having it would be worse. Nearly all engineering drawing (as well as some additional technical writing) standards require the use of all caps to minimize ambiguity. In those cases holding down the shift key is ridiculous.

      Worse for your specific case that most people will never hit. A simple shortcut or custom keyboard could fill that role if needed, while not being useless to the rest of us, the much larger case.

      Also, maybe a different convention would come to be if the key wasn't prominent.

    12. Re:My Pet Peeves (recent Windows laptop keyboards) by slinches · · Score: 1

      That's only on Windows as far as I'm aware.

      --
      Knowledge Brings Fear
    13. Re:My Pet Peeves (recent Windows laptop keyboards) by squiggleslash · · Score: 4, Insightful

      It's possible to have capslock functionality without giving it its own key. What about Alt-Numlock for that tiny subset of situations where it's necessary?

      Also https://xkcd.com/1172/

      (Yay I posted an XKCD at last! That means I automatically get +6 Insightful!)

      --
      You are not alone. This is not normal. None of this is normal.
    14. Re:My Pet Peeves (recent Windows laptop keyboards) by Geoffrey.landis · · Score: 1

      Not having it would be worse. Nearly all engineering drawing (as well as some additional technical writing) standards require the use of all caps to minimize ambiguity. In those cases holding down the shift key is ridiculous.

      Worse for your specific case that most people will never hit. A simple shortcut or custom keyboard could fill that role if needed.

      Or chose "all caps" font.

      --
      http://www.geoffreylandis.com
    15. Re:My Pet Peeves (recent Windows laptop keyboards) by Anonymous Coward · · Score: 0

      1. CapsLock. Grr.

      Not having it would be worse. Nearly all engineering drawing (as well as some additional technical writing) standards require the use of all caps to minimize ambiguity. In those cases holding down the shift key is ridiculous.

      Abso-fucking-lutely. What is so hard for people to understand that their world is not the whole world, that they are not the target market, or the only market? I do documentation all day and it seems like I have the Caps Lock key on all day, unless I'm sending emails.

    16. Re:My Pet Peeves (recent Windows laptop keyboards) by Anonymous Coward · · Score: 0

      3. But please bring back full-size Page Up/Down keys (with maybe a shift action to Begin/End).

      Fn+Left/Right = Begin/End, Fn+Up/Down = Page Up/Down

      It's really easy, I do it without thinking. What's the problem?

    17. Re:My Pet Peeves (recent Windows laptop keyboards) by metlin · · Score: 1

      I'm looking at you, Macbook Pro!

      Cmd + up/down arrows. Not the best solution, but it works, and after a while, you get used to it!

    18. Re:My Pet Peeves (recent Windows laptop keyboards) by Anonymous Coward · · Score: 0

      I would add that I'd like to see the function keys moved back to the left side of the keyboard. I used to be able to hit the needed function key with CTRL, SHIFT, or ALT with one hand. Since being moved to the top of the keyboard, I find most function keys useless since it takes two hands to do what I can do with a mouse click or two.

    19. Re:My Pet Peeves (recent Windows laptop keyboards) by Anonymous Coward · · Score: 0

      I believe Apple is more likely to remove the keyboard from their laptops than add any more keys. The design choices between Macbook, iMac, iPad, and iPhone will continue to converge.

    20. Re:My Pet Peeves (recent Windows laptop keyboards) by darkain · · Score: 5, Insightful

      Pretty much any technical field requires capslock. I'm a software engineer in the automotive field. Tons of code from 3rd party libraries are all caps, as well as the part numbers I deal with in the automotive industry.

      Maybe the reason why capslock is used to little is because... think about it. If my entire post were entirely in caps? Count the number of key strokes. Capslock would be pressed once to enter all-caps mode, and once to leave it. To presses of that key vs countless presses of the letters and a few other formatting symbols. Caps lock shouldn't be counted by the number of key presses any more than scroll lock or number lock. Instead they should be counted by the number of other key presses that are modified while they are activated.

    21. Re:My Pet Peeves (recent Windows laptop keyboards) by IcyWolfy · · Score: 1

      Not having a key-pad on the laptop would be a no-go at our office; and for my personal laptops.
      I have to enter numbers quite often; and doing quick calculations is very easy to do touch-typing (not looking at keyboard)

      I tried the num-lock keyboard thing on older laptops, but having they keypad un-aligned across the GCR HTN MWV makes it too error prone.

    22. Re:My Pet Peeves (recent Windows laptop keyboards) by IcyWolfy · · Score: 1

      I so wish Fortran wasn't nearly as popular as it is.
      I am always being innundated with job offers in a surprisingly large number of uninteresting (to me) fields.

    23. Re:My Pet Peeves (recent Windows laptop keyboards) by IcyWolfy · · Score: 1

      1. This would be horrible for anyone using some non US-English keyboards;
      For Example: Swiss German Keyboard Layout.
      CAPS is a separate keyboard state.
      CAPS ON, Key !== SHIFT+Key

      ü = ü
      Shift-ü = è
      CAPS ON, ü = Ü
      CAPS ON, Shift-ü = È

    24. Re:My Pet Peeves (recent Windows laptop keyboards) by xfade551 · · Score: 1

      I'm looking at you, Macbook Pro!

      Cmd + up/down arrows. Not the best solution, but it works, and after a while, you get used to it!

      It doesn't always work, some applications have Cmd-(up/down arrow) mapped already. However Fn-(up/down arrow) is always Page Up/Down, and (IIRC) Shift-Fn-(up/down arrow) is Home/End.

    25. Re:My Pet Peeves (recent Windows laptop keyboards) by Anonymous Coward · · Score: 0

      You child murderer

    26. Re:My Pet Peeves (recent Windows laptop keyboards) by TeknoHog · · Score: 1

      I guess it depends on what you're used to. I practically grew up with laptops, so I always type numbers with the upper row, even if a numeric pad is available. I also think the number pad is a matter of space and reach, even on a desktop, but especially on a laptop where keys are already crammed. I'm sure a lot of proficient typists also appreciate a centred keyboard on a laptop.

      --
      Escher was the first MC and Giger invented the HR department.
    27. Re:My Pet Peeves (recent Windows laptop keyboards) by rahvin112 · · Score: 1

      Proficiency in 10key can literally double or triple typing rates where the data is numeric. There are a lot of data entry jobs that won't even consider anyone that's not 10key proficient because it makes such a big difference in data entry ability.

      Regardless, all I was trying to say is that there are a lot of people out there that won't buy keyboards/laptops that don't have 10key. It's enough market demand that you frequently find laptop keyboards with 10 key even if it makes the rest of the keyboard smaller. The manufacturers wouldn't be doing this if there wasn't a demand for it.

    28. Re:My Pet Peeves (recent Windows laptop keyboards) by MaestroRC · · Score: 1

      1. CapsLock. Grr.

      FYI - if you have a Mac, you can go to System Preferences --> Keyboard --> Modifier Keys, then change Caps Lock to something else. Options are Caps Lock, Control, Option, Command and No Action.

      Very useful.

      --
      I hate sigs...
    29. Re:My Pet Peeves (recent Windows laptop keyboards) by GuB-42 · · Score: 1

      having they keypad un-aligned across the GCR HTN MWV makes it too error prone.

      Unaligned keys, yet another relic.

    30. Re:My Pet Peeves (recent Windows laptop keyboards) by Anonymous Coward · · Score: 0

      THIS ^

      When will people THINK about what they measuring when they design studies?

    31. Re:My Pet Peeves (recent Windows laptop keyboards) by Darinbob · · Score: 1

      Laptops are ergonomic nightmares. Attach a real keyboard except for those times when you're stuck in a weird locale (ie, on the bus).

    32. Re:My Pet Peeves (recent Windows laptop keyboards) by Anonymous Coward · · Score: 0

      The old NeXT keyboards had a led in the shift key. Press command-shift and the caps lock state would be toggled. The location where the capslock is on PC keyboards is the CTRL key! Brilliant design!

    33. Re:My Pet Peeves (recent Windows laptop keyboards) by Noah+Haders · · Score: 1

      i don't think my MPB is too bad... i suppose that the keyboard is flush with the "desktop surface" instead of being raised up a half inch or so... trackpads are probably better than mice for rsi...

    34. Re:My Pet Peeves (recent Windows laptop keyboards) by kimvette · · Score: 1

      > The numeric keypad tends to be pretty highly valued by typists that are 10key proficient and type a lot of numbers. It's actually more common than you probably believe

      That's because a LOT of us spent days keying in program listings from Compute! Magazine in the '80s

      --
      The Christian Right is Neither (Christian nor right). See: Matthew 23, Matthew 25, Ezekiel 16:48-50
    35. Re:My Pet Peeves (recent Windows laptop keyboards) by Gizan · · Score: 1

      I personally refuse to buy a laptop that does NOT have a numpad. If it doesnt have one, i skip to the next laptop. I personally use caps lock often. Now its not every day, but its certainly better than holding shift down with my pinky. Ive learened over the last 20 years on the computer to use caps lock, and not shift-lock. I only had shift lock on 1 keyboard and that was when i was on 98. Ive been using the same keyboard since 2000, and its treated me well. Ive ran it through the dish-washer 3 times now to make sure it gets clean, but im starting to wear through my WASDF/C/V KEYS so trying to find a replacement keyboard is going to be a difficulty for me, as i prefer actual button response. i want it to bounce back up when i press it so i know that i actually pressed that button.

    36. Re:My Pet Peeves (recent Windows laptop keyboards) by gzuckier · · Score: 1

      The numeric keypad tends to be pretty highly valued by typists that are 10key proficient and type a lot of numbers. It's actually more common than you probably believe. I and many others prefer to buy laptops/keyboards with the 10 key numeric in place.

      Absolutely. when i'm doing a lot of entry into excel it's numeric keyboard time. getting numbers from the number row is obviously klunky.

      --
      Star Trek transporters are just 3d printers.
    37. Re:My Pet Peeves (recent Windows laptop keyboards) by toddestan · · Score: 1

      My favorite was the Ultrabay numpad that IBM had on the Thinkpad. You lose your optical drive, but instead you gained a super-handy numpad that would slide in and out of the side of your laptop.

  4. The power button by ShieldW0lf · · Score: 5, Insightful

    Hey, I hardly ever press the power button, lets get rid of that one.

    Idiots

    --
    -1 Uncomfortable Truth
    1. Re:The power button by Anonymous Coward · · Score: 0

      One shift key should be enough for everyone!

    2. Re:The power button by Anonymous Coward · · Score: 0

      If someone put it between two often used keys on the keyboard, say shift and tab, and made it easy to hit by accident, I would be right behind you. Fortunately we don't have something like that.

      Genius

    3. Re:The power button by aaaaaaargh! · · Score: 1

      Only crap keyboards have a power button.

    4. Re:The power button by Fortran+IV · · Score: 5, Insightful

      Bingo. The whole point of the Caps Lock key is that you don't have to press it over and over. "...Around 0.1% of all keypresses" is a completely useless measurement. A measurement of how many other keys were pressed while the Caps Lock was on might actually mean something.

      That said, the size and placement of Caps Lock are simply a historical accident. If keyboard manufacturers wanted to halve the size and stick another key left of A, that would be fine with me. (The "context menu" key that's missing from so many keyboards these days would be a great choice.)

      --
      I figure by 2030 or so my 6-digit UID will be something to brag about.
    5. Re:The power button by Twinbee · · Score: 1

      Except when it's absolutely essential to force power off occasionally.

      --
      Why OpalCalc is the best Windows calc
    6. Re:The power button by bluefoxlucid · · Score: 2

      People don't seem to understand the point of typing multiple capital letters in a row, as they hold shift with a pinky to type COBOL or UNIX. Chromebooks put that useless search button where capslock goes.

    7. Re:The power button by Anonymous Coward · · Score: 0

      See. Exactly this. Just because you don't use it doesn't mean noone does. Believe me those odd little DBAs love CapsLock. :)

    8. Re:The power button by HideyoshiJP · · Score: 2

      I agree. The fools. I work in IT, and have type a lot of things in caps, like certain DNS names, acronyms, and a few other items. At home, I use a Shift-JIS layout for Japanese, and it's one method I switch back and forth between Alpha/Kana/IME input. Right-click has come in handy a few times when my wireless mouse has died and had to go on the charger - then have to re-sync my backup bluetooth mouse. To extend this discussion - I rarely use my backups. Let's get rid of those!

    9. Re:The power button by j2.718ff · · Score: 5, Funny

      Only crap keyboards have a power button.

      The article also mentioned the right mouse button. My keyboard doesn't have one of those either.

    10. Re:The power button by Blaskowicz · · Score: 1

      I now have a keyboard with power button, sleep and "alarm clock" (don't know what this one is for).

      The placement is not too bad (if they were immediately above del, home, page up I would have junked the keyboard)
      I disabled the power key, but now use the sleep key. One press and one second or two later the PC is in S3-mode stand by! Pretty useful.
      The PC does wake up by wildly clicking the left mouse button (I already used that feature, works after shutdown too). That depends too much on the particular BIOS ; good for now. Wish the power key on keyboard could wake the PC up.

    11. Re:The power button by AmiMoJo · · Score: 1

      Some keyboards do have small caps lock keys. Japanese layouts for example, but even in the west... I seem to recall some 80s computers had caps lock keys of "normal" size, i.e. the same as letter keys.

      --
      const int one = 65536; (Silvermoon, Texture.cs)
      SJW, n: "Someone I don't like, and by the way I'm a fuckwit" - AC
    12. Re:The power button by AmiMoJo · · Score: 2

      To be fair though, putting power and sleep buttons on the keyboard was a monumentally stupid idea. It's far too easy to accidentally hit them.

      --
      const int one = 65536; (Silvermoon, Texture.cs)
      SJW, n: "Someone I don't like, and by the way I'm a fuckwit" - AC
    13. Re:The power button by Blaskowicz · · Score: 1

      "Properties menu key" is semi-unnecessary if you know that shift-F10 always does the same thing, but you have to know that.
      It's nice to have for keyboard navigation sometimes. Else it's a very good key for Virtualbox's "get focus out of the VM" key.

    14. Re:The power button by Barefoot+Monkey · · Score: 1

      I suspect that's the very point GP was trying to get across. The summary notes that the context menu button is used roughly 0.1% of the time and ponders whether it might be a good idea to remove it, but that is poor reasoning because the fact that you don't need to press it anywhere near as as often as alphanumerics or the spacebar doesn't diminish its usefulness.

    15. Re:The power button by Anonymous Coward · · Score: 0

      What's to the left of your right Ctrl key?

    16. Re:The power button by IAN · · Score: 1

      The whole point of the Caps Lock key is that you don't have to press it over and over.

      Whew, so I'm not the only one... But why is that point lost on the modern crowd? Is nobody a touch typist anymore? I've been taught that capital letters are typed by pressing the Shift key on the opposite side of the key being input, which gets ridiculous if you have to enter a longish string of capitals, e.g., echo $LD_LIBRARY_PATH (and no, I might not be in a shell which lets me autocomplete that one, thanks for asking). So CapsLock is far from useless. Dual Ctrls likewise, by analogy with dual Shifts -- I'd never contort my fingers by typing Ctrl-T or Ctrl-B single-handedly, even if Ctrl were in the usual CapsLock position (which some people obviously prefer.)

    17. Re:The power button by Anonymous Coward · · Score: 0

      If anything 0.1% for that key seems like it's used more than I'd expect.

      The key should exist. At best you'd make it a single button sized, but you can't shift the ASDF row along as it'll put it in an unnatural position relative to the other rows, which'll cause problems for all touch typists. At best you'd get space for an extra key, but what would you put there?

      The size is also useful. You press it with your left little finger. Probably your least dexterous finger. I have used one keyboard where it was a single key size (shift was L shaped to use half its normal space). It was a PITA to use. You constantly missed Caps and got LShift instead.

    18. Re:The power button by Anonymous Coward · · Score: 0

      Ever wonder what that key is next to the windows key on most standard keyboards? the one with what looks like a listbox and a cursor. yea, that's the right mouse button.

    19. Re:The power button by Anonymous Coward · · Score: 0

      You two are somewhat talking past each other. They are not talking about the https://en.wikipedia.org/wiki/Menu_key but are instead talking about the right-click button on a mouse or trackpad. However, the measurements were taken ON MACs. Gee, I wonder why people didn't right click since the OS X GUI goes out of their way to make you not right click. For what it's worth, I would be surprised if the menu key was low too, as that doesn't exist on most Apple keyboards.

    20. Re:The power button by Anonymous Coward · · Score: 0

      Pretty sure it's referring to the 'application key', which usually functions like a standard right click.

    21. Re:The power button by WallyL · · Score: 1

      Interesting, I press that one all the time!



      Oh, you wanted to know if I meant to press it. Definitely not. Yes, let's can it!

    22. Re:The power button by IcyWolfy · · Score: 2

      That logic doesn't apply for most non-US layouts; and most Americans don't realise that the concept of a right-alt key being required is needed.
      And that due to proliferation of US keyboards and Windows back in the day: ALT-GR ~== CTRL-ALT. Some apps will treat it as CTRL-ALT (incorrectly), some will treat it as ALT-GR. Thus, some applications fail hard when they try to make CTRL-ALT accceleratiors, that can't be typed; or they override the letter on the keyboard (which is probably worse)

      You have three modifier keys: CTRL, ALT, ALTGR, CTRL
      For instance, to type @ on the standard german layout, it's ALTGR-Q
      The Canadian Multilingual Layout (Federal Standard) does this better by having CTRL, ALT, ALTGR, CTRLGR (i.e. there are four alpha states: NONE, SHIFT, ALTGR, CTRLGR)

    23. Re:The power button by Anonymous Coward · · Score: 0

      there is no power button anymore on computers nowadays. not like xt computers with the big red switch :-))))

    24. Re:The power button by Twinbee · · Score: 1

      Ah I see I was whooshed. Surprised I missed it tbh.

      --
      Why OpalCalc is the best Windows calc
    25. Re:The power button by Anonymous Coward · · Score: 0

      No kidding. Right mouse button? Seriously? They obviously did NOT thoroughly evaluate a gamer. Most computer games involving the mouse - MMO, FPS, etc., require frequent use of the right mouse button.

    26. Re:The power button by Anonymous Coward · · Score: 0

      To be honest, I get rid of backups daily.

    27. Re:The power button by Anonymous Coward · · Score: 0

      If you are using a PC, it probably does, between the right Windows button and the right Ctrl key.

    28. Re:The power button by kimvette · · Score: 1

      > To extend this discussion - I rarely use my backups. Let's get rid of those!

      I did better than that - to save time and also the hassle of cycling through and keeping track of tapes; I just back up to /dev/null now... and you'd be amazed at how quickly the backup job runs!

      --
      The Christian Right is Neither (Christian nor right). See: Matthew 23, Matthew 25, Ezekiel 16:48-50
    29. Re:The power button by Anonymous Coward · · Score: 0

      The article also mentioned the right mouse button. My keyboard doesn't have one of those either.

      I'm fairly sure they're referring to the "context" key, which is generally between the right side Windows key and Ctrl key. Most likely your keyboard DOES have one of those.

    30. Re:The power button by tepples · · Score: 1

      Only crap keyboards have a power button.

      How else do you turn on a laptop? Or do better laptops have the power button on the screen half of the assembly?

    31. Re:The power button by Anonymous Coward · · Score: 0

      Shift-F10 is very Windows-centric behaviour. With Linux the Menu key behaves well, but Shift-F10 is not equivalent. On some desktop environments Shift-F10 has a different behaviour to the Menu key (e.g. Gnome 3 uses it to focus the main panel bar) .

    32. Re:The power button by eionmac · · Score: 1

      Once per year perhaps?

      --
      Regards Eion MacDonald
    33. Re:The power button by Anonymous Coward · · Score: 0

      ALTGR is Alternative Graph, what do you imagine a Control Graph to be?

      FWIW, Control is for producing control characters. Typically non-printable. Technically, that happens by masking off the two most significant bits of the character that would be generated without Control. Many control characters already have no practical purpose anymore, so there is no real need for "alternative" control characters.

      IMO, it'd be better to use general-purpose modifiers than to overload the existing ones with even more meanings, making stuff even more confusing

    34. Re:The power button by Blaskowicz · · Score: 1

      Gnome 2 clones (well, at least Mate, perhaps LXDE and Xfce) seem to copy the Windows behavior there.

    35. Re:The power button by Anonymous Coward · · Score: 0

      I've actually disconnected my power button, my system turns on as soon as power is detected and I never press it to turn my PC off

    36. Re:The power button by ihtoit · · Score: 1

      the power button on my laptop is the lid switch.

      I drop the lid when the laptop's already powered down. When I lift it, it powers on.

      Now I want to find a way of remapping that button for something else...

      --
      Political debates have me rolling my eyes so much I think I got optical whiplash. I should sue. - Foamy The Squirrel
  5. Really? by Dr.+Eggman · · Score: 5, Insightful

    "They installed a simple Chrome plugin on every Macbook [...] the least popular keys are Capslock and Right Mouse Button"

    You don't say!

    --
    Demented But Determined.
    1. Re:Really? by Anonymous Coward · · Score: 0

      I was quite surprised about the statement concerning the right mouse button - I use it a lot.

      But indeed, the word in italic in the parent's post explains a lot.

    2. Re:Really? by Anonymous Coward · · Score: 0

      "They installed a simple Chrome plugin on every Macbook [...] the least popular keys are Capslock and Right Mouse Button" You don't say!

      This.

      The problem with metrics is that they don't always make sense. Old Mac UIs were optimized for single-button mice. I can see some UXtard salivating over these metrics and immediately doing away with all the functionality in some "ancient" software from 2010 "because 'the data' shows that some users never right click, and so we can make the interface cleaner by hiding it all under a hamburger menu..."

    3. Re:REALLY? by bev_tech_rob · · Score: 1

      "Why Is the Caps Lock Key Still So Prominent On Keyboards?"

      HAS THE OP BEEN ON THE INTERNET AT ALL? EVER?

      Although, I do like to imagine some of the rage typists are actually holding in the [Shift] key...

      NO KIDDING! CAPS LOCK IS very HANDY WHEN SHOUTING AT PEOPLES!

      --
      You're messin' with my Zen Thing, man.....
    4. Re:REALLY? by Lab+Rat+Jason · · Score: 1

      THIS111

      I wish I had mod points... Also, the assumption that the caps lock key isn't being used because it is pressed infrequently is disingenuous.

      --
      Which has more power: the hammer, or the anvil?
    5. Re:REALLY? by Esther+Schindler · · Score: 1

      Ha!

      I started in mainframe days when SO MANY PROGRAMMERS I KNEW TYPED IN ALL CAPS BECAUSE THAT WAS THE ONLY THING THE COMPILER UNDERSTOOD.

      And then those people tried to use email, and thought that it was perfectly fine to write all non-programming correspondence that way. Including my brother-in-law... and you can't tell your BiL he's an idiot. Not if you want your sister to keep talking to you.

    6. Re:Really? by Anonymous Coward · · Score: 0

      Right Mouse Button is actually really useful. It lets you navigate a lot of UIs with strictly with the keyboard that were only originally intended for the mouse.

    7. Re:Really? by Anonymous Coward · · Score: 0

      Whooosh!!!

    8. Re:Really? by Anonymous Coward · · Score: 0

      I was going to say - how could the right mouse button possibly be the least used? Either I'd just found out that most people have a completely different experience of using a computer to me, when I saw your comment on this coming from Macbooks, when I realized that everyone in the study has a completely different experience of using a computer to me....

    9. Re:Really? by TheRaven64 · · Score: 2, Informative

      Good UIs should be designed to work with a single mouse button, because that means that they'll also work well with a touchscreen. There's nothing wrong with making some things faster with the right mouse button, which is how most Mac applications work. The right mouse button for the context menu was inherited from NeXTSTEP, where the 'normal' menu was a floating version and you could cause a copy of it to pop up wherever the mouse was with the right mouse button (RISC OS took this further and didn't have any kind of menu bar, using the middle mouse button to produce the menu on demand. Using RISC OS with a touchscreen or pen tablet was... interesting, and it only just counted as discoverable because the machines shipped with a mouse with the buttons labelled).

      --
      I am TheRaven on Soylent News
    10. Re:REALLY? by Anonymous Coward · · Score: 0

      So this is really about some attention-seeking socialite trying to impose her view on how people should type on the world?

    11. Re:Really? by Anonymous Coward · · Score: 0

      mac's only have one button dipshit

    12. Re:REALLY? by danbert8 · · Score: 1

      I know when I get angry I hold down shift... I have disabled caps lock on all my keyboards via software.

      --
      Yes it's an anecdote! Were you expecting original research in a Slashdot comment?
    13. Re:Really? by Anonymous Coward · · Score: 0

      More importantly (nobody was thinking of touchscreens until recently) menu commands need to be DISCOVERABLE. Contextual menus are by their nature hidden; unless a user happens to right click on a certain item (possibly at a certain time, too) they will never see the associated commands. By designing a UI that can work without context menus, you ensure that every item is discoverable to novice users because it is in the main menu bar somewhere - while power users still get the benefits of the contextual menu.

    14. Re:Really? by dissy · · Score: 1

      "They installed a simple Chrome plugin on every Macbook [...] the least popular keys are Capslock and Right Mouse Button"

      You don't say!

      Right click is pretty popular on most every desktop OS out there.

      What shocks me the most is they didn't report mouse buttons 3, 4, and 5 as least used.
      Button 3 is pretty well used by power users, but 4/5 require an external mouse, so macbooks don't have those two buttons built in as hardware.

      I'm still waiting on Windows to actually add in support for buttons 4 and 5 instead of faking it and mapping them to browser forward/back.

      The most used desktop OS (Windows) still to this day doesn't support as many mouse buttons as younger OSes like OS X and Linux, it's simply amazing.

    15. Re:REALLY? by Anonymous Coward · · Score: 0

      INSTRUCTIONS UNCLEAR, PROGRAMMED AN EMAIL WHILE EMAIL A PROGRAM
      aaaaaaaaaaaaaaaaaaaaa
      bbbbbbbbbbbbbbbbbbbbb
      ccccccccccccccccccccc

    16. Re:Really? by radarskiy · · Score: 2

      Mice from Apple don't have any buttons any more. However, Mac OS has accepted events for more that the left button for years.

    17. Re:REALLY? by Bing+Tsher+E · · Score: 1

      When I first started programming, it was on Teletype ASR-33 terminals, where there WAS no lower case at all.

      The TRS-80 Model 1 had no lower case, either, unless you bought a hardware upgrade. I think it was a special ROM you added.

    18. Re:REALLY? by Qzukk · · Score: 1

      Although, I do like to imagine some of the rage typists are actually holding in the [Shift] key...

      THANKS FOR TELLING ME ABOUT CAPS LOCK1 NOW I DON'T HAVE TO HOLD THE SHIFT KEY ANYMORE1

      --
      If I have been able to see further than others, it is because I bought a pair of binoculars.
    19. Re:Really? by Anonymous Coward · · Score: 0

      I think they are talking about the right mouse button key that shows up on larger keyboards.

    20. Re:Really? by Mr.+Shiny+And+New · · Score: 1

      I think you're missing the GP's point. Macs usually only have one-button mice. So it's not surprising that the RMB is never used, as there isn't one.

    21. Re:Really? by Blaskowicz · · Score: 1

      Bad wording : I assume they meant the "properties menu" key.

    22. Re:Really? by cant_get_a_good_nick · · Score: 1

      err, I have an Apple mighty mouse I use when logged onto unix machines. It not only has a right mouse, but a scroll wheel and some side click buttons.

      Now, if you talk about a trackpad, they really should be tracking option or Command clicking.

    23. Re:Really? by Anonymous Coward · · Score: 0

      Are they actually talking about the mouse, or are they talking about the menu key?

    24. Re:Really? by SvnLyrBrto · · Score: 1

      That hasn't been true for almost a decade now. Apple began shipping the multiple-button Mighty Mouse with all new Macs in October 2005:

      https://en.wikipedia.org/wiki/...

      Its replacement, the Magic Mouse, supports right-click and replaces the trackball functions by making the entire top surface a trackpad. The Magic Trackpad, and all MacBook trackpads last support right-click; either by tapping with two fingers instead of one, or by clicking in the right-bottom corner instead of the left.

      https://en.wikipedia.org/wiki/...
      https://en.wikipedia.org/wiki/...

      --
      Imagine all the people...
    25. Re:REALLY? by Anonymous Coward · · Score: 0

      http://i411.photobucket.com/albums/pp199/usmarine4160/capslock3.jpg

    26. Re:Really? by Mr.+Shiny+And+New · · Score: 1

      The point still stands that Apple is a one-button-mouse ecosystem. Forever they only had one button and few apps supported multiple buttons. Sure, they eventually made it possible to right-click, but on a touch-pad it's not an obvious feature, and in any case most apps will still be made for only one button. So it's not surprising that Mac users rarely right-click.

    27. Re:Really? by Anonymous Coward · · Score: 0

      A Macbook has no mouse buttons at all, so if the right mouse button is little used, then I can only suppose that the left and centre mouse buttons are even less used.

      Idjits...

    28. Re:Really? by Anonymous Coward · · Score: 0

      Actually, you've always been able to right-click on a Mac. Always. What you do is hold down the Ctrl key and click. That emulates a right-click.

    29. Re:Really? by Anonymous Coward · · Score: 0

      work well with a touchscreen

      Tap = left click, long press = right click. Works well for me. (But I wonder why long press doesn't work on touchpads.)

    30. Re:Really? by xfade551 · · Score: 1

      Even more importantly, the trackpad on a MacBook only has one-button. You have to hold down Ctrl to "right-click", and the trick doesn't work when running Windows through BootCamp or Parallels.

    31. Re:Really? by jrumney · · Score: 1

      These types of studies come in three forms: lies, damned lies and statistics. This statement is a red flag which eliminates one of these.

    32. Re:Really? by Anonymous Coward · · Score: 0

      Please name some of these apps that have no contextual menu support. Mail? Safari? iTunes? Photos? Finder? Yes to all. Every Apple app supports contextual menus. What about the popular third-party apps: Adobe suite? Yes. Chrome? Yes. Firefox? Yes. Office? Yes. Various torrent clients? Yes. Various FTP clients? Yes. VLC? Yes. Evernote and other note taking apps? Yes. Dropbox? Yes. Skype? Yes. I could go on, but obviously I could be here all day.

    33. Re:REALLY? by Anonymous Coward · · Score: 0

      Yup. You had to add an 8th memory chip. I seem to recall it was lower-right(ish) on the PCB. Do not ask me how I know... I have some bad memories. I did like Zork way too much though. I once printed that out (obviously on a dot matrix) and had my own map of the entire game. *sighs* Yes, yes it was alternating colored paper - green and beige.

      KGIII - Stupid post limit nailed me two days in a row. 50 comments per day? Hah! I babble like a little school girl and had a lot of replies when I crawled out from under my bridge this morning. (On the off chance that someone finds this interesting or insightful - save your mod points. ACs don't need 'em and I sure as hell do not need them. I still can't post without limits. They're censoring my speech!!! *chuckles*)

    34. Re:Really? by R3d+M3rcury · · Score: 1

      You have to hold down Ctrl to "right-click"

      Or go to the Trackpad system preference and choose to make a two-finger tap into a right click.

    35. Re:Really? by Anonymous Coward · · Score: 0

      No, you two-finger click to right click. Easier than moving your thumb to hit one or another button, in fact. And Apple's bootcamp drivers allow you to do this in Windows as well: https://support.apple.com/kb/PH17873

      The ignorance in this thread is astounding.

    36. Re:Really? by TheRaven64 · · Score: 1

      That's not been true for a very long time. Current MacBook Pro trackpads (i.e. the ones that TFA is about) use one finger tap for left click, two finger tap for right click, two finger drag for scroll, and four-finger drag for some system-wide gestures. The 'Mac mice only have one button' thing is a decade old (and even before that, Macs supported multi-button mice, they just required that UIs be designed to work well with one-button input devices).

      --
      I am TheRaven on Soylent News
    37. Re:Really? by Anonymous Coward · · Score: 0

      Good UIs should be designed to work with two mouse buttons and a mouse-wheel because that means they'll also work well with a touchscreen. There's nothing wrong with all 3 things which is how most Windows applications work. The Right mouse button for the context menu was inherited ... no, they just started out that way because it was better - why else would everyone eventually use two? Bad form for anyone who used just one.

      I have no problems using Windows' Remote Desktop function.

    38. Re:REALLY? by Anonymous Coward · · Score: 0

      actually, that's me... just hold the shift key down. I even do it for #defines in my code. I don't think I've actually used caps lock more than a handful of times in my life....

    39. Re:Really? by Anonymous Coward · · Score: 0

      you can even configure the buttonless magic mouse so it acts as if it has a left and right button; works really well for me.

    40. Re:Really? by Anonymous Coward · · Score: 0

      I disagree. UIs without context menus tend to feel very clumsy and deliberately making an application clumsy so it will work better on an input device with limitations is doing a disservice to those people using the mouse. That said, I don't know what touchscreen you've been using because on all the ones I've used tap-hold brought up the context menu.
      And while we're on the subject of supposedly useless keys, I'm even glad to have the caps lock. Why? Because I was able to turn it into an F13 which I mapped to switching the Japanese IME between kana + conversion mode and Roman mode. The caps lock may not be useful as such, but if it hadn't been there I would have needed to remap an important key or I would have had to use the mouse to switch. Both aren't attractive options at all.
      And that's one of the things I hate most about the computer industry. Every once in a while some wanker comes in and shouts ‘I never use X and everyone else must use their computers exactly the same way I do so let's cut it out’ and nerds are idiots so they listen to these fuckwits.

    41. Re:Really? by Anonymous Coward · · Score: 0

      "because that means that they'll also work well with a touchscreen"
      Why not just use your left hand for left press and right hand for right presses on the touch screen.
      It should be smart enough to figure out which hand your finger is from.
      Hmm, patent idea, detect the ridges on your fingerprint to work out which hand the finger comes from when touching the screen.

  6. Misunderstood by Anonymous Coward · · Score: 1

    The Caps Lock is the only key near home row that is explicitly a "toggle" function, and maintains that association across uses (whereas Ctrl, Fn, Alt all need to be held down in combination with other keys). What would be a better default function for this keys beside toggling caps?

    1. Re: Misunderstood by Anonymous Coward · · Score: 0

      On Windows it could be 'reboot now'

    2. Re:Misunderstood by wirefarm · · Score: 2

      Ctrl.

      (Typing this on a day-old Chromebook that has a search key mapped to that position. Anyone know how I can map that to Ctrl?)

      --
      -- My Weblog.
    3. Re:Misunderstood by chipschap · · Score: 2

      I always remap caps lock to left ctrl, the way it used to be on rather old keyboards. So much more convenient than having to reach down to the left-ctrl key.

    4. Re:Misunderstood by Anonymous Coward · · Score: 0

      > What would be a better default function for this keys beside toggling caps?

      Nothing? I rip it off of my keyboards, along with the special windows keys. (With some hot glue and black foam, the result looks quite nice too.) I always type SHIT LIKE THIS by holding down the right shift key with my pinky anyway, so the only time I press capslock is by accident anyway, so having it on the keyboard at best has no effect, and at worst frustrates the hell out of me when I accidentally press it. The same reason is why I remove the windows keys, e.g. I like to press shift-insert and shift-delete by using my thumb to press the right shift key, but that is a lot harder to do with stupid keys I never use in the way.

      One of these days I'll wise up and also remove print screen, scroll lock, and pause/break, as I never press them either except by accident when trying to press insert/home/page up or F10, F11 or F12. I'd love to remove number lock as well, but Linux finds too many excuses to disable it, and so I need to a way to turn it back on when that happens.

    5. Re:Misunderstood by DrJimbo · · Score: 1

      Typing this on a day-old Chromebook that has a search key mapped to that position [Caps Lock, I presume]. Anyone know how I can map that to Ctrl?

      On Linux I use:
      setxkbmap -option ctrl:nocaps

      --
      We don't see the world as it is, we see it as we are.
      -- Anais Nin
    6. Re:Misunderstood by Anonymous Coward · · Score: 0

      I'd say actual, cut paste, copy, keys.

      Probably 99% of the time when someone hits the control key it's to do cntl-v, cntl-x, cntl-c so that's another keys that could be re-purposed.

    7. Re:Misunderstood by Anonymous Coward · · Score: 0

      I use it as Compose key.

      On 80s systems like MSX it was CTRL. Caps lock was actually a small key somewhere next to the space bar.

    8. Re:Misunderstood by polymeris · · Score: 1

      I remap it with Esc.
      Only problem is, I am so used to it, I have trouble using vim on other people's computer.

    9. Re:Misunderstood by Fwipp · · Score: 1

      If you're using ChromeOS (which you probably are), go to:
      Settings -> Keyboard Settings
      and adjust the "Search" dropdown to your choice. (Search;Ctrl;Alt;Escape;Caps; or disabled).

      You can also adjust ctrl & alt in the same way.

    10. Re:Misunderstood by Anonymous Coward · · Score: 0

      Fun fact: On other people's computers, you can create this thing called a user account, and set your own preferences. Amazing!

    11. Re:Misunderstood by fisted · · Score: 1

      protip: if you have literally no clue about something, it's best to remain silent.

    12. Re:Misunderstood by fisted · · Score: 1

      Fun fact: creating user accounts requires superuser access, which you generally don't have on other people's computer.

    13. Re:Misunderstood by Anonymous Coward · · Score: 0

      Protip: Stop using that ancient editor with the terrible unergonomic shortcuts and your wrists and hands won't be destroyed.

      Seriously, my wrists are fine. Yours not so much.

    14. Re:Misunderstood by gzuckier · · Score: 1

      I always remap caps lock to left ctrl, the way it used to be on rather old keyboards. So much more convenient than having to reach down to the left-ctrl key.

      The qwerty keyboard uses the little fingers way too much to begin with, for some reason pc keyboard designers seem determined to make it worse.

      --
      Star Trek transporters are just 3d printers.
  7. Because it toggles an LED! by Anonymous Coward · · Score: 5, Interesting

    Old School Fun Fact: If the computer looks hung or otherwise nonresponsive, if you can toggle the caps lock LED, then the OS is still alive.

    1. Re:Because it toggles an LED! by RavenLrD20k · · Score: 1

      Num Lock and Scroll Lock also provide the same functionality, but the positioning of Caps Lock just makes it convenient.

    2. Re:Because it toggles an LED! by trabby · · Score: 1

      Just look out if you computer is an old amiga, flashing capslock = BAD

    3. Re:Because it toggles an LED! by Anonymous Coward · · Score: 0

      Good point. I too did that a lot of times.

    4. Re:Because it toggles an LED! by __aaclcg7560 · · Score: 2

      Does anyone use Scroll Lock for anything?

    5. Re:Because it toggles an LED! by Anonymous Coward · · Score: 0

      A Non-Maskable Interrupt some might call it

    6. Re:Because it toggles an LED! by Anonymous Coward · · Score: 0

      Thats What I use it for! It didn't occur to me that I do use it till you said it.

    7. Re:Because it toggles an LED! by Anonymous Coward · · Score: 4, Funny

      I've long wanted a game where you are a wizard, and thieves steal your scrolls, unless you Scroll Lock. But then you can't use the scrolls, until you toggle it back. It would be pretty perfect.

      Scroll Lock is legitimately used in spreadsheets, but very rarely today. It's generally good that there is some modal switch anyway. It's so rare to find some future expandable slots on a keyboard, you know?

    8. Re:Because it toggles an LED! by Bing+Tsher+E · · Score: 1

      On my KVM, Scroll Lock switches to the next machine.

      That's a really good use for it. It also has use in Excel.

    9. Re:Because it toggles an LED! by squiggleslash · · Score: 1

      Yes, those of us using CP/M on our VT102s can't just pipe everything through more "more" you insensitive clod!

      --
      You are not alone. This is not normal. None of this is normal.
    10. Re:Because it toggles an LED! by j2.718ff · · Score: 1

      Num Lock and Scroll Lock also provide the same functionality, but the positioning of Caps Lock just makes it convenient.

      Caps lock is particularly more convenient on a mac book on account that neither scroll lock nor caps lock exist on current apple keyboards.

    11. Re:Because it toggles an LED! by 72beetle · · Score: 1

      Keeps your character movement to a single space in Rogue.

      --
      -Those who dance are considered insane by those who can't hear the music.
    12. Re:Because it toggles an LED! by Anonymous Coward · · Score: 0

      Most laptop keyboards don't have NumLock or ScrollLock (or do with Fn but have no LED). They all have CapsLock.

    13. Re:Because it toggles an LED! by Anonymous Coward · · Score: 0

      Yes it does something still. Open up Excel and use the arrow keys to move from cell to cell. Now press the scroll lock button and try it again. (Excel is the only program I am aware of that still uses it)

    14. Re:Because it toggles an LED! by Anonymous Coward · · Score: 0

      The MAME guys use it. How do I know? My laptop does not have one. Guess which key I need? None of the Fn shortcut keys work for it either. Apparently on this model of laptop they just decided to not have it. But on the upside I can open media player from a fn key combo!

    15. Re:Because it toggles an LED! by Anonymous Coward · · Score: 0

      The only reason I've ever intentionally pressed scroll lock is to switch a KVM (scroll lock, scroll lock, down arrow). In other words, it was chosen for this function specifically because it is the most rarely used key on the keyboard.

    16. Re:Because it toggles an LED! by Anonymous Coward · · Score: 0

      I have a KVM that listens for a double-press on scroll lock, then intercepts the next keystroke as a command.

      On a Mac keyboard, you have to use a different key. I think it uses double-pressed Ctrl instead, which doesn't work as well because it's much easier to trigger it accidentally.

    17. Re:Because it toggles an LED! by Khashishi · · Score: 1

      Scroll lock is somewhat useful in Excel to switch between cell movement and page movement. For some reason, Word hasn't adopted a similar feature for character movement versus page movement.
      Hell, browsers could make excellent use of scroll lock to switch between caret movement and page movement.

    18. Re:Because it toggles an LED! by IcyWolfy · · Score: 1

      1. This would be horrible for anyone using some non US-English keyboards;
      For Example: Swiss German Keyboard Layout.
      CAPS is a separate keyboard state.
      CAPS ON, Key !== SHIFT+Key

      ü = ü
      Shift-ü = è
      CAPS ON, ü = Ü
      CAPS ON, Shift-ü = È

      The Caps Lock key is needed.
      Sure, you can always use ALT-GR ', SHIFT-E; but that does get very tiring, if you always need to use four-button, two-keystroke combos to type fundamental letters in your alphabet.

    19. Re:Because it toggles an LED! by Anonymous Coward · · Score: 0

      Does anyone use Scroll Lock for anything?

      It still has uses in Excel and for switching inputs on some KVM switches. (I find it somewhat funny that the search results for this Excel feature are basically troubleshooting steps on how to turn off Scroll Lock!)

    20. Re:Because it toggles an LED! by LMariachi · · Score: 1

      The VirtualBox console uses it, I imagine because a guest OS or application might want pgup and pgdown to itself.

    21. Re:Because it toggles an LED! by Anonymous Coward · · Score: 0

      YES. I have to double tap the scroll lock to shift servers on my kvm.

    22. Re:Because it toggles an LED! by ArylAkamov · · Score: 1

      First time I've ever seen anyone else mention this trick, it's always the first thing I do before considering a hard reset. What's the logic behind it though?

    23. Re: Because it toggles an LED! by DNS-and-BIND · · Score: 1

      Pressing shift one time is the least destructive way to wake up a computer that may be in screensaver or sleep.

      --
      Shutting down free speech with violence isn't fighting fascism. It IS fascism!
    24. Re:Because it toggles an LED! by Anonymous Coward · · Score: 0

      All the time to summon my horse.

    25. Re:Because it toggles an LED! by dargaud · · Score: 1
      In a KDE Konsole terminal, it's the same as Ctrl-S / Ctrl-Q, so in other words a real scroll lock.

      I also use it to switch out of a virtual machine in VirtualBox.

      But back to the original question, in Linux, replace Caps-Lock with a Compose key by setting it in [Settings][Input Devices][Keyboard][Advanced][Position of Compose Key][Caps Lock] and then enjoy being able to type any accents or weird letter very simply.

      And also for the idiots who never use right-click or the Menu key: you are an idiot and should never be allowed to hit two stones together to try and make fire. (Dell, I'm looking at you for removing the Menu key even from 17" laptops!)

      --
      Non-Linux Penguins ?
    26. Re:Because it toggles an LED! by Alioth · · Score: 1

      Yes. Switching computers on my KVM switch (scroll lock + console number)

    27. Re:Because it toggles an LED! by Anonymous Coward · · Score: 0

      Switching KVM inputs.

    28. Re:Because it toggles an LED! by Some_Llama · · Score: 1

      you can also toggle the num lock key for the same effect.

    29. Re:Because it toggles an LED! by Ambient+Sheep · · Score: 1

      Num Lock and Scroll Lock also provide the same functionality, but the positioning of Caps Lock just makes it convenient.

      Careful! Not sure how much it's still true, but it used to be the case with many keyboards that Num Lock toggled the LED inside the keyboard, so it would still go on and off even if the main CPU was as hung as hung could be. Only Caps and Scroll provided a decent "are you still alive?" check.

  8. It's shift for some people by spacemky · · Score: 5, Interesting

    Working in IT, and frequently watching desktop users, I was surprised to learn that MANY people actually use the Caps Lock key as shift. To make a capital letter, they will turn on caps, press the letter, then turn off caps. I've see 3 people in the last year do this!

    --
    640YB ought to be enough for anybody.
    1. Re:It's shift for some people by kbranch · · Score: 4, Interesting

      We actually recently hired a developer that does this. He asked for help when he couldn't figure out how to type capital letters on my keyboard (with caps lock remapped to control). Raised an alarm or two for me...

    2. Re:It's shift for some people by Esther+Schindler · · Score: 1

      That's pretty weird, I agree.

    3. Re:It's shift for some people by blue+trane · · Score: 1

      It's convenient. You might be typing with one hand, for example. Please don't take the caps lock away from me because you want everything to be popular.

    4. Re:It's shift for some people by GungaDan · · Score: 1

      A one-handed typist with a thing against popularity? You go for the bizarre fetish stuff, don't you?

      --
      Eloi are stupid, throw morlocks at them!
    5. Re:It's shift for some people by QuietLagoon · · Score: 1

      You might be typing with one hand, for example.

      There are "sticky key" features in many OS's that duplicate that functionality.

    6. Re:It's shift for some people by Esther+Schindler · · Score: 1

      I don't mind there being a caps lock key. But does it have to be bigger than most other keys? And in the way of other more-used ones?

    7. Re:It's shift for some people by RingDev · · Score: 1

      Most of the devs here come from COBOL/Mainframe backgrounds. So capslock is heavily abused, as is 4 letter abbreviations for every word, and excessive use of underscores.

      -Rick

      --
      "Most people in the U.S. wouldn't know they live in a tyrannical state if it walked up and grabbed their junk." - MyFirs
    8. Re:It's shift for some people by Anonymous Coward · · Score: 0

      If you have reason to type with one hand, chances are you're going to end up with sticky keys anyway...

    9. Re:It's shift for some people by gstoddart · · Score: 1

      Rule 34.

      Some things should not be googled. Ever.

      --
      Lost at C:>. Found at C.
    10. Re:It's shift for some people by houghi · · Score: 1

      I see it a lot when people type in their password. That way they know the caps is actually on or off.

      --
      Don't fight for your country, if your country does not fight for you.
    11. Re:It's shift for some people by Anonymous Coward · · Score: 0

      It's convenient. You might be typing with one hand, for example. Please don't take the caps lock away from me because you want everything to be popular.

      My Happy Hooker...I mean Happy Hacker keyboard confuses people which is the reason I use it at work. I do not want to share a keybaord - any keyboard - with anyone. The unclean hands of people refusing to wash their hands after using the toilet is enough to make me sick - literally and figuratively. The keyboards I detest are the flat non-sculptured keys especially common on modern-day notebook computers. At home my primary computer is a notebook so I connect my Happy Hacker keyboard to a USB hub, my mouse to the Happy Hacker keyboard, and my 22-inch flat panel monitor to the notebook via a HDMI port. The best integrated notebook keyboard was on the IBM ThinkPad 755CE.

    12. Re:It's shift for some people by Anonymous Coward · · Score: 0

      I don't mind there being a caps lock key. But does it have to be bigger than most other keys? And in the way of other more-used ones?

      The CAPS LOCK key on my keyboard is the same physical key as the Tab key. Fn + Tab activates/deactivates CAPS LOCK. As a vim user it is hardly an imposition to touch two keys at the same time.

    13. Re:It's shift for some people by MobyDisk · · Score: 1

      When I was in elementary school my computer keyboard had a broken space bar and left shift key. I learned to type space as ALT+032 and used caps lock for shift. It took me years to unlearn the caps-lock thing. Video games were tough, but most were text-based anyway. In some cases I could hack the binary to use a different key instead of space (*).

      And folks, THAT is how you learn to code. Necessity is the mother of learning.

    14. Re:It's shift for some people by dweezil-n0xad · · Score: 1

      I have one functional hand and I have edited my keymap in linux console to have sticky keys in console. In Xfce it's easier, just toggle a switch in the accessibility settings.

    15. Re:It's shift for some people by AmiMoJo · · Score: 1

      A friend of mine uses Caps Lock instead of shift, but he also types insanely fast. He sees it as inserting commands into the input stream, and claims it is faster for him.

      --
      const int one = 65536; (Silvermoon, Texture.cs)
      SJW, n: "Someone I don't like, and by the way I'm a fuckwit" - AC
    16. Re:It's shift for some people by Anonymous Coward · · Score: 0

      I have a user that didn't like the awesome ergonomic keyboards we bought because they don't a CAPS LOCK indicator LED. So now she has a $20 keyboard with a light. Users are weird.

    17. Re:It's shift for some people by Anonymous Coward · · Score: 0

      so what do you use to differentiate between Rick made up variables and system variable ?
      How do you separate multiple different words in a parameter ?

      LAST_RECORD_MARKER or lastrecordmarker ?

      Boy, I can sure tell what the second one means ...

    18. Re:It's shift for some people by Anonymous Coward · · Score: 0

      I can remember doing this as a kid. It's done by people who don't know how to touch-type and therefore find it harder to find and press shift and another key at the same time than press one key at a time.

    19. Re:It's shift for some people by Anonymous Coward · · Score: 0

      Working in IT, and frequently watching desktop users, I was surprised to learn that MANY people actually use the Caps Lock key as shift. To make a capital letter, they will turn on caps, press the letter, then turn off caps. I've see 3 people in the last year do this!

      Although this *is* weird and seems nonintuitive, I remember reading the following from Sean Wrona's website (one of the fastest known typers):
      "I recommend using caps lock instead of shift to type capital letters to allow more flexibility in the hand that you would normally use shift with."

    20. Re:It's shift for some people by Anonymous Coward · · Score: 0

      People who for some reason cannot press multiple keys at once, like my old boss who typed with a pick she held in her mouth, definitely do what you describe.

    21. Re:It's shift for some people by IcyWolfy · · Score: 1

      This is required for some keyboard layouts.
      For Example: Swiss German Keyboard Layout.
      CAPS is a separate keyboard state.
      CAPS ON, Key !== SHIFT+Key

      [u-UMLAUT] = [u-UMLAUT]
      Shift-[u-UMLAUT] = [e-acute]
      CAPS ON, [u-umlaut] = [U-umlaut]
      CAPS ON, Shift-[u-umlaut] = [E-umlaut]

      Thus, to type capital [e-acute]; one would go: Caps; shift-[u-umlaut]; Caps.
      For Capital [u-umlaut]; Caps; [u-umlaut]; Caps.

      For other non-latin layouts:
      CAPS lock is a toggle between QWERTY and native

      This is the same in Czech Layout:
      The top row of keys are + e^ s^ c^ r^ z^ y' a' i' e' =
      Shift top row = 1 2 3 4 5 6 7 8 9 0 %
      Caps: + E^ S^ C^ R^ Z^ Y' A' I' E' =
      Caps Shift: 1 2 3 4 5 6 7 8 9 0 %

      In others, CAPS != SHIFT.
      Devanagari: Caps state is ignored, but SHIFT keys change letter selection.
      Thus CAPS-O == O (dependant-O); and CAPS-SHIFT-O = SHIFT-O (independent-O)

    22. Re:It's shift for some people by IcyWolfy · · Score: 1

      ü = ü
      Shift-ü = è
      CAPS ON, ü = Ü
      CAPS ON, Shift-ü = È

      top row in Czech being: +ýáíéú
      SHIFT state: 1234567890%
      CAPS state: + (uppercased)
      CAPS SHIFT State: 1234567890%

      Didn't realize unicode works in posts.

    23. Re:It's shift for some people by chispito · · Score: 3, Interesting

      I was surprised to learn that MANY people actually use the Caps Lock key as shift.

      It's not just PEBKACs that do that. One of the world's fastest typists does this. http://seanwrona.com/typing.ph... (look under the "Typing Tips" section).

      --
      The Daddy casts sleep on the Baby. The Baby resists!
    24. Re:It's shift for some people by Anonymous Coward · · Score: 0

      It's called Happy Hacking Keyboard, though. Please learn the names of the products you're advertising in multiple comments.

    25. Re:It's shift for some people by DrVxD · · Score: 1

      "One-handed typing" offers plenty of opportunities for "sticky keys" without OS assistance...

      --
      Not everything that can be measured matters; Not everything that matters can be measured.
    26. Re:It's shift for some people by Anonymous Coward · · Score: 0

      So you're going to force everybody to learn a new, less convenient, interface method just because you think the existing, working, convenient one is ugly? Remind me to NEVER hire you as a developer or use any software you designed. We already have one idiot UI designer that is telling our users that he doesn't care what they find useable his design is *ELEGANT* and they will learn to use it no matter how convoluted it makes their interacting with the software. I can't wait until they fire that idiot and hire someone who will actually listen to user feedback and realize that he is designing for the users not his stupid idea of aesthetics.

      If you're reading this - looking at you Terrance.

    27. Re:It's shift for some people by Anonymous Coward · · Score: 0

      CapsLock is still faster than holding shift for 3 seconds, or pressing shift 5 times to turn on sticky keys, and then pounding your keyboard in frustration when you have no idea how to unstick the keys.

    28. Re:It's shift for some people by dargaud · · Score: 1

      Our senior sysadmin here types with only one finger while looking at the keyboard. 40 years experience too...

      --
      Non-Linux Penguins ?
    29. Re:It's shift for some people by Anonymous Coward · · Score: 0

      This isn't surprising.

      The study followed a bunch of computers that have inferior marketshare (20%) followed by a browser with inferior marketshare on that platform (because the built in browser is perfect along with the perfect computer).

      So 20% of 20% is 4% of the entire computer demographic (even less, since most businesses and dev studios are Windows based - most of that 4% are feminine home users).

    30. Re:It's shift for some people by PPalmgren · · Score: 1

      Both my current manager and previous manager do this. You can pry the capslock key from their cold dead hands.

      On another note, I do use it quite extensively. I fill out tax forms whatnot all the time, capslock block print is easier to parse when reviewing for spelling errors. It also prevents over/under capitalization, which shouldn't be the main focus when reviewing those kinds of documents.

    31. Re:It's shift for some people by Anonymous Coward · · Score: 0

      For most people it's a bad idea. The linked article says it gives you more flexibility in your shift-hand, but this is not that useful since normally you shift using your opposite hand, and it puts an enormous constraint on your left hand which has to hit the caps lock, and then turn it off again which is also an extra movement. Maybe there are very rare cases where this trick helps, but in practice it's almost always a net loss.

    32. Re:It's shift for some people by ihtoit · · Score: 1

      my wife does this, it bugs the shit out of me.

      --
      Political debates have me rolling my eyes so much I think I got optical whiplash. I should sue. - Foamy The Squirrel
  9. REALLY? by Anonymous Coward · · Score: 5, Funny

    "Why Is the Caps Lock Key Still So Prominent On Keyboards?"

    HAS THE OP BEEN ON THE INTERNET AT ALL? EVER?

    Although, I do like to imagine some of the rage typists are actually holding in the [Shift] key...

  10. We all hit it by accident by heezer7 · · Score: 1

    So I just tear mine off. Much less frustration.

    1. Re:We all hit it by accident by McLae · · Score: 1
      I just took mine off.

      Bread crumbs, dog hair....

      Oh wait, something thing just moved!

    2. Re:We all hit it by accident by fisted · · Score: 1

      The more intelligent people remap it to something useful, because of its extremely good position on the keyboard.

  11. i'VE BEEN HATING THE caps lock KEY FOR DECADES by QuietLagoon · · Score: 1
    I've tried re-mapping it (Windows occasionally chokes, needing a reboot).

    .
    I've tried removing the key top (bruise on my finger when I accidentally hit it).

    Why is this throwback to punch cards still around?

    1. Re:i'VE BEEN HATING THE caps lock KEY FOR DECADES by Anonymous Coward · · Score: 1

      I've tried re-mapping it (Windows occasionally chokes, needing a reboot).

      .

      I've tried removing the key top (bruise on my finger when I accidentally hit it).

      Why is this throwback to punch cards still around?

      Just because you don't have a use-case for it, doesn't mean that there are no use-cases for it.

      For example: I work for a news-producing television station, and we use caps lock extensively for creating scripts, which are fed to the teleprompter. Mixed case is very hard to read (and prone to mistakes) on a teleprompter screen and on the hard copies that we have on hand in case of a technical failure.

    2. Re:i'VE BEEN HATING THE caps lock KEY FOR DECADES by QuietLagoon · · Score: 1

      Just because you don't have a use-case for it, doesn't mean that there are no use-cases for it.

      This is not about the existence of use-cases, but the amount of use.

      .
      There is a difference.

      I do not deny that the CAPS LOCK key is widely used within niche environments.

      I also do not advocate eliminating the CAPS LOCK key, merely moving it to a place that is more aligned with the amount of use it gets.

    3. Re:i'VE BEEN HATING THE caps lock KEY FOR DECADES by omnichad · · Score: 1

      Why is this throwback to punch cards still around?

      Accessibility? I hurt one hand and typed one-handed for a while. Used caps lock to type capital letters. I use caps-lock on my phone all the time for passwords when operating one-handed.

    4. Re:i'VE BEEN HATING THE caps lock KEY FOR DECADES by Anonymous Coward · · Score: 0

      Why do people who never learned touch typing complaining about key placement?

    5. Re:i'VE BEEN HATING THE caps lock KEY FOR DECADES by Anonymous Coward · · Score: 0

      Honest question.

      What did your keyboard ever do to you that you feel you must punch it so hard with your fingers when you type that when a key is removed you could actually injure yourself? Or is it that you bruise incredibly easily? Because I can't imagine a normal person pushing buttons on a keyboard at a reasonable pressure could cause a bruise if a key were not there.

    6. Re:i'VE BEEN HATING THE caps lock KEY FOR DECADES by Anonymous Coward · · Score: 0

      Can't you keep your pinky on SHIFT when you feel like SHOUTING? I find that much more PRACTICAL than using fucking CAPSLOCK.

    7. Re:i'VE BEEN HATING THE caps lock KEY FOR DECADES by Anonymous Coward · · Score: 0

      Is your hand not large enough to hit the caps key and a key (any key) on the keyboard? You do have one on either side. Are you a midget? Are you a wizard worried about damaging their hand? Did you not play a musical instrument - ever? I mean, most any except a percussion instrument are going to need some dexterity.

  12. caps lock or scroll lock by Anonymous Coward · · Score: 0

    really, the cap lock is the least used. I don't know if I have ever used the Scroll Lock key.

  13. You know you can... by Anonymous Coward · · Score: 0

    Remap it, right?

  14. Re:The Microsoft key!!!! I've never used it...ever by mwvdlee · · Score: 5, Interesting

    Just curious, what OS are you using?
    On both Windows and Linux, it's a pretty handy key.

    --
    Slashdot social media options: AIM, ICQ, Yahoo, Jabber and Mobile Text. Why no MySpace?
  15. QWERTY IS FINE WITH ME by Anonymous Coward · · Score: 0

    I like to type in ALL CAPS

  16. Where's "Scroll Lock"? by xxxJonBoyxxx · · Score: 5, Insightful

    I can't believe that "Scroll Lock" is used more often than "Caps Lock"

    >> least popular keys are...Right Mouse Button

    I'm guessing their "developers" don't actually use an IDE. Even on my Mac I use a two-button mouse just to get context-sensitive menus.

    1. Re:Where's "Scroll Lock"? by Lisias · · Score: 1

      I can't believe that "Scroll Lock" is used more often than "Caps Lock"

      >> least popular keys are...Right Mouse Button

      I'm guessing their "developers" don't actually use an IDE. Even on my Mac I use a two-button mouse just to get context-sensitive menus.

      Half baked researches from half baked researchers about half assed developers.

      (A lot of web designers are calling themselves "developers" nowadays)

      --
      Lisias@Earth.SolarSystem.OrionArm.MilkyWay.Local.Virgo.Universe.org
    2. Re:Where's "Scroll Lock"? by mccalli · · Score: 3, Informative

      The study was performed on a MacBook keyboard. There is no scroll lock, print screen, pause, insert, home, end, page up, page down...

      As a MacBook user myself, I actually miss the insert for shift-insert cut'n'paste on ssh sessions. Other than that, I'm fine with all the others being missing. The right-click is interesting - do they literally mean right-click, or do they mean the context-sensitive event (two fingered click on a trackpad)? On a MacBook I would have thought the second one, and I also use that a fair amount.

    3. Re:Where's "Scroll Lock"? by ceoyoyo · · Score: 1

      They were using a Chrome plugin as a key logger so presumably this only reflects input to their web browser. Not surprising the managers had higher activity than the "developers" either.

    4. Re: Where's "Scroll Lock"? by MadChicken · · Score: 1

      Yeah for function documentation or "jump to declaration" kinda stuff... But once you start to use that often enough you start to look for and then use the keyboard shortcut.

      --
      SYS 64738 NO CARRIER
    5. Re:Where's "Scroll Lock"? by Anonymous Coward · · Score: 0

      I use the scroll lock several times a day. A double tap causes my KVM to switch inputs.

    6. Re:Where's "Scroll Lock"? by Lisias · · Score: 1

      +1 Informative, please.

      (I have a KVM too, and it works exactly the way GP says!)

      --
      Lisias@Earth.SolarSystem.OrionArm.MilkyWay.Local.Virgo.Universe.org
    7. Re:Where's "Scroll Lock"? by Bing+Tsher+E · · Score: 1

      I think you meant to say: "A lot of people who obfuscate standards-based marked up text with shitty scripts, ridgid layout and little widgets and dingbats call themselves web designers nowadays."

    8. Re:Where's "Scroll Lock"? by PitaBred · · Score: 1

      Command-C, command-V. It works in the terminal just like in the rest of your apps. It's one of the things that I actually prefer about the Mac that I'm working on nowadays.

    9. Re:Where's "Scroll Lock"? by ArcadeMan · · Score: 1

      That's what I'm wondering too. Were they really talking about Chrome the Web browser or Chrome OS the Operating System*?

      * brought to you by the Department of Redundancy Department.

    10. Re:Where's "Scroll Lock"? by TimothyDavis · · Score: 1

      I'm guessing their "developers" don't actually use an IDE. Even on my Mac I use a two-button mouse just to get context-sensitive menus.

      I could be wrong, but I was assuming this was because it was being tracked by a Chrome plugin that much of the activity outside of the web browser was not captured.

      I personally use caps lock all the time when typing SQL queries. Outside of that, I rarely use it.

    11. Re:Where's "Scroll Lock"? by Ben174 · · Score: 1

      I think they're referring to the Context Menu button on your standard 104-key keyboard (next to the right win-key or super-key). They might be calling it the 'right-mouse button' because on Windows it pulls up the same context menu the right mouse button does.

      --
      Here is my home page.
    12. Re:Where's "Scroll Lock"? by ejasons · · Score: 1

      Command-C, command-V. It works in the terminal just like in the rest of your apps. It's one of the things that I actually prefer about the Mac that I'm working on nowadays.

      And, since Command is used for shortcuts on the Mac, that leaves Control (mapped to be left of the "A" key, of course) available for emacs-style editing functions...

    13. Re:Where's "Scroll Lock"? by LMariachi · · Score: 1

      Does fn+arrows no longer do pgup, pgdown, home, & end on the newer MacBooks?

    14. Re:Where's "Scroll Lock"? by fisted · · Score: 1

      The one I use does it with a double tap on Numlock. More FreeBSD friendly, I suppose.

    15. Re:Where's "Scroll Lock"? by Lisias · · Score: 1

      I think you meant to say: "A lot of people who obfuscate standards-based marked up text with shitty scripts, ridgid layout and little widgets and dingbats call themselves web designers nowadays."

      That too.

      But from my point of view (I *AM* a software developer), I'm getting too much web designers (and some of them are good web designers, I give them that) demanding to get voice on how I code the functionalities. I agree that they know *WHAT* they want, but I am the fscking technician that know HOW the things must be done - they don't know (neither have how to) what happens behind the doors, that is exactly what I'm specialized on.

      --
      Lisias@Earth.SolarSystem.OrionArm.MilkyWay.Local.Virgo.Universe.org
    16. Re:Where's "Scroll Lock"? by Lisias · · Score: 1

      They're trying to TEACH ME HOW TO CODE, by God's sake!!

      --
      Lisias@Earth.SolarSystem.OrionArm.MilkyWay.Local.Virgo.Universe.org
    17. Re:Where's "Scroll Lock"? by PPalmgren · · Score: 1

      What the hell, no home/end/pgup/pgdn? That sounds like quite the horror story. I use them all day every day. What do you do on webpages, sit there and hold the mouse? Slow scroll with the arrow keys? ewwwwww

      Working in spreadsheets, pgup/pgdn and home/end are insanely useful. ctrl+pg cycles through tabs. End takes you to the end of the current area, home to the top.

    18. Re:Where's "Scroll Lock"? by Anonymous Coward · · Score: 0

      Holding the Function key and pressing and of the four arrow key (up/down for page up/down, left/right for home/end) performs those scroll operations. There's also Command-left/right for moving the insertion point to the beginning/end of the line, Command-up/down which moves the insertion point to the home/end positions, Option-left/right for moving the insertion point one word at a time, and Option-up/down which moves the insertion point one paragraph at a time. Control-Tab cycles through tabs.

      Protip for web browser scrolling: the space bar does page down (on Windows too) so long as you're not in an active text field of course. Shift-space to scroll up.

    19. Re:Where's "Scroll Lock"? by goose-incarnated · · Score: 1

      ?

      * brought to you by the Department of Redundancy Department brought you this message

      *That's* the full joke (is it still funny if you have to explain it?)

      --
      I'm a minority race. Save your vitriol for white people.
  17. Caps lock - Ctrl by judhaz · · Score: 1

    I always remap CapsLock to Ctrl. I am an Emacs user.

  18. Mine is a Ctrl key by Anonymous Coward · · Score: 0

    Caps Lock is rebound to an additional Control key on my Linux and Windows machines. I have a recurring touch of tendinitis in my left wrist and it has made a huge difference.

  19. a nice Linux trick by FudRucker · · Score: 2

    this makes the caps lock and escape keys switch places

    ! Swap caps lock and escape
    remove Lock = Caps_Lock
    keysym Escape = Caps_Lock
    keysym Caps_Lock = Escape
    add Lock = Caps_Lock

    --
    Politics is Treachery, Religion is Brainwashing
    1. Re:a nice Linux trick by aardvarkjoe · · Score: 1

      Unfortunately it's hard to get xmodmap to play nicely in cases like hotplugging keyboards or using Gnome, at least under Linux. There is a standard option for swapping caps lock and control (or escape, or several other similar options), but if you want a layout option that isn't built-in, then prepare yourself for a world of frustration.

      --

      How can we continue to believe in a just universe and freedom to eat crackers if we have no ale?
    2. Re:a nice Linux trick by ciascu · · Score: 1

      Swapping Caps and Escape has changed my life to the extent I would consider carrying little stickers around for all the keyboards I remap. Unsurprisingly, I'm a fairly heavy vim user, but I believe this is an increasing trend, especially on Mac.

      As vi was written on an ADM-3A, which had Esc in the currently common Tab location, the notoriously heavy use of Esc in vim makes sense. However, swapping with Caps makes it reachable from the home position - initially skeptical, I only realised how much of a difference it makes when I tried to switch back...

      On Gnome 3, I have recently switched from using xmodmap to setting org.desktop.gnome.input-sources.xkb-options to ['caps:swapescape'] in dconf-editor. Much easier.

    3. Re:a nice Linux trick by aardvarkjoe · · Score: 1

      Swapping Caps and Escape has changed my life to the extent I would consider carrying little stickers around for all the keyboards I remap. Unsurprisingly, I'm a fairly heavy vim user...

      If you swap caps with control, then in vim you can use Control-[ for escape, which is also a pretty good option. (That's what I do.)

      On Gnome 3, I have recently switched from using xmodmap to setting org.desktop.gnome.input-sources.xkb-options to ['caps:swapescape'] in dconf-editor. Much easier.

      The problem I had was I wanted to map the CapsLock key to Control, and the LeftCtrl key to Hyper. There are built-in xkb rules for doing both, but they don't work right when you try to combine them, and the documentation available for xkb is hard to understand, to say the least. I finally got it working by hacking one of the rules definitions in the system-provided definition files to do what I wanted -- I gave up trying to figure out how to do it the "right" way.

      --

      How can we continue to believe in a just universe and freedom to eat crackers if we have no ale?
  20. SubjectsSuck by aardvarkjoe · · Score: 3, Interesting

    I can I invest in a real alternate keyboard with a different layout...

    You could also invest in a tool to remap the key next to 'A' to "Control," like God intended. You don't need to get a whole new keyboard. Write on the key with a marker if you're the kind of person that looks at key labels when you're typing.

    --

    How can we continue to believe in a just universe and freedom to eat crackers if we have no ale?
    1. Re:SubjectsSuck by dcollins117 · · Score: 1

      You could also invest in a tool to remap the key next to 'A' to "Control," like God intended.

      Do you really need to "invest in a tool" to do that? If so, let me know and I'll sell you one. Price varies, depending on how much you have.

    2. Re:SubjectsSuck by Daniel_Staal · · Score: 1

      If the submitter is working with Kinesis keyboards, remapping is built in to the keyboard. They probably don't want to remap to Control - the Kinesis Advantage keyboards have them in a thumb key array, which is actually awesome - but I find swapping it with the backtick/tilde key is very useful.

      (Kinesis Advantage keyboards have a mostly QWERTY layout (or mostly Dvorak, if you buy that option), but split the keys into two sections, and have separate key clusters under each thumb - putting space directly under the right thumb and backspace directly under the left. Exact layout of Control/Windows/Command/Opt/Alt depends on which model you buy: Windows, Mac, or Other, but they are clustered around the thumbs.)

      --
      'Sensible' is a curse word.
    3. Re:SubjectsSuck by Dynamoo · · Score: 1
      Are you Jerry Pournelle?.

      (How come I can remember an article from 1988, but not remember to buy lemons when I'm at the supermarket?)

      --
      Never email donotemail@WeAreSpammers.com
    4. Re:SubjectsSuck by Anonymous Coward · · Score: 0

      Because lemons suck?

      Lemon tree very pretty but the lemon flowers are sweet
      But the fruit of the poor lemon is impossible to eat
      Lemon tree.... Lemon tree....

      I am *that* old. Also, CapsLock sucks.

    5. Re:SubjectsSuck by ihtoit · · Score: 1

      we know a song about that.

      "Do you suffer from short term memory loss?"

      "...I can't remember."

      https://www.youtube.com/watch?...

      --
      Political debates have me rolling my eyes so much I think I got optical whiplash. I should sue. - Foamy The Squirrel
  21. Re:The Microsoft key!!!! I've never used it...ever by Anonymous Coward · · Score: 0

    I tap the windows key and start typing the app name all the time for launching apps. Faster for me than using shortcuts.

  22. This isn't a problem... just wait by Anonymous Coward · · Score: 0

    Just wait until we have brain to pc input, then your worries about archaic keyboard layouts inherited from the days of typewriters will be over.

    Now get off my lawn

    Epic captcha: backyard

  23. Drivel by Anonymous Coward · · Score: 0

    Instead of whining about what's there, why doesn't somebody suggest what they think should be there instead? What needs to be a large key on the left side of the keyboard and isn't currently? I want a tab key on the right side of the keyboard, so this doesn't help.

  24. keypad by ichthus · · Score: 2

    We talked about this ad naseum back when Chromebooks were about to hit the market. A better question is, why don't keypads (the 10 key-like group of buttons on the right of a PC keyboard) have TAB, SHIFT+TAB and Backspace keys. This would make it much easier to navigate and enter data in web forms and spreadsheets with only one hand. Idunno -- just a thought.

    --
    sig: sauer
    1. Re:keypad by Electricity+Likes+Me · · Score: 1

      I'd settle for a "command space" key and a custom terminal. "Caps Lock" specifies I'm entering a new string in a new array position for argv,

    2. Re:keypad by Bing+Tsher+E · · Score: 1

      A better question would be, why do Chromebooks even have keyboards? Can't you stab at the ads on the Google page with your finger or the huge keyboard-sized touchpad?

    3. Re:keypad by dinfinity · · Score: 1

      Num lock gives you access to arrow keys, and many more keys (Ins, Del, Home, End, PgUp, PgDn) that should suffice for spreadsheet navigation.

      Also: what the hell are you doing with your left hand that you can't press TAB or SHIFT+TAB? What kind of forms are you filling out??

  25. Caps Lock was invented by Kim Fatty III by WillAffleckUW · · Score: 1

    All hail our nation's glorious 50 cent posters from Korea West!

    Shouting is the polite way to show how empty one's brain is.

    --
    -- Tigger warning: This post may contain tiggers! --
  26. SO PEOPLE CAN GET MAD AT YOUR FOR SHOUTING by zenlessyank · · Score: 1

    SEE??!! YOU CAN ALREADY FEEL THE ANGER RISING UP FROM THE LOUD VOICE!!! Filter error: Don't use so many caps. It's like YELLING. ...See??? Slashdot says no when I try to shout. Im sad.

  27. The three keys on the top-right by mwvdlee · · Score: 2

    The three keys on the top-right
    - Print screen/SysRequest: a poor man's screengrabber at best
    - Scroll Lock: does something in MS Office, though I know not what.
    - Pause/Break: as far as I know, does absolutely nothing in any application.

    --
    Slashdot social media options: AIM, ICQ, Yahoo, Jabber and Mobile Text. Why no MySpace?
    1. Re:The three keys on the top-right by davidleelambert · · Score: 1

      On a Lenovo T430, the three keys at top-right are "End", "Insert", "Delete". "PrtSc" is between right "Alt" and right "Ctrl", and RHEL6 with Gnome brings up a nice "Save Screenshot" dialog when I click it.

      On an HP ProBook 6450b, the three kets at top-right are "pause"/"break", "insert"/"prt sc", "delete"/"sys rq" (where the second function requires simultaneously holding boxed "fn", between "ctrl" and the Windows logo key)

      There are OSes and application programs that allow using Caps Lock as a more-general IM switcher, although I don't think I've ever set that up.

      --
      note: I have at least one, possibly two other, Slashdot accounts because OpenID creds can't be merged with an older acco
    2. Re:The three keys on the top-right by ewhac · · Score: 1

      Scroll Lock: does something in MS Office, though I know not what.

      Dunno how Office (mis-)uses it, but the FreeBSD console uses Scroll Lock to freeze the console and let you page up and down through the scrollback buffer.

    3. Re:The three keys on the top-right by Anonymous Coward · · Score: 0

      The three keys on the top-right
      - Print screen/SysRequest: a poor man's screengrabber at best
      - Scroll Lock: does something in MS Office, though I know not what.
      - Pause/Break: as far as I know, does absolutely nothing in any application.

      In the old BIOS days, we used the PAUSE key to freeze the screen long enough to get the BIOS type, version, date off the screen when it would only flash on the screen for a second.

    4. Re:The three keys on the top-right by Anonymous Coward · · Score: 0

      windows key + Pause Break opens system menu.

    5. Re:The three keys on the top-right by SuricouRaven · · Score: 2

      On Excel, scroll lock toggles the action of the arrow keys. With lock off, they move the selected cell one step at a time. With lock on, they move the view one page at a time. The second mode is useful if you work with truly huge spreadsheets.

    6. Re:The three keys on the top-right by Locke2005 · · Score: 1

      Print Screen is actually useful; in Windows it copies the current screen or window to the clipboard, which is useful for people writing manuals. In 32 years of writing software, I don't recall ever using the Scroll Lock or Break key for anything... and I'm not really sure what they are supposed to do. I think Break was supposed to used with modems; not much call for that anymore.

      --
      I've abandoned my search for truth; now I'm just looking for some useful delusions.
    7. Re:The three keys on the top-right by Anonymous Coward · · Score: 0

      Pause/Break is used in many TN3270 clients as the "clear key".

    8. Re:The three keys on the top-right by Anonymous Coward · · Score: 0

      Print screen/SysRequest: a poor man's screengrabber at best

      Or: a rich man's screengrabber trigger.
      Seriously, what else would you map as a global hotkey for a screen shooter? Or, for that instance, when the dropboxes of the world automatically save your screenshots, is it really necessary to use a dedicated screen shooter regularily.
      It's not like people hit PrtScr, open MsPaint and paste their screenshots anymore.

      Pause/Break: as far as I know, does absolutely nothing in any application.

      As far as I know, numerous games use the Pause key to pause the game.

    9. Re:The three keys on the top-right by mattventura · · Score: 1

      SysRq is useful for getting Linux systems unstuck with Magic SysRq key combos. Well, that was until most distros decided to lock it down by default (because if someone wanted to mess with a machine that they have physical access to, that's definitely the worst thing they could come up with).

    10. Re:The three keys on the top-right by Anonymous Coward · · Score: 0

      Really?? You don't know what these do?

      - ctrl+break on win/*nix?
      - winkey+break on windows?

      What do you use your computer for?

    11. Re:The three keys on the top-right by Anonymous Coward · · Score: 0

      Pause/Break works awesome for anyone who uses a emulated console for serial connections

    12. Re:The three keys on the top-right by Anonymous Coward · · Score: 0

      Just remap them to macros for Cut, Copy, and Paste.
      Usefulness regained.

    13. Re:The three keys on the top-right by Anonymous Coward · · Score: 0

      You know nothing John Snow
      SysRq is the best key ever.

    14. Re:The three keys on the top-right by rgbscan · · Score: 1

      So much this.... I spend my life in a 3270 terminal doing work on a mainframe. P/B and SysRq are actually used quite a bit daily.

    15. Re:The three keys on the top-right by ArcadeMan · · Score: 1

      On Apple keyboards, those keys are F13, F14 and F15. I even have F16, F17, F18 and F19... The top row of my keyboard is a freakin' aircraft carrier.

    16. Re:The three keys on the top-right by Anonymous Coward · · Score: 0

      Many games make use of Pause & PrintScreen keys. Total Annihilation uses Pause to pause the game. Numerous MMORPGs make use of PrintScreen to trigger a screencapture.

      It all depends on the apps you are using.

    17. Re:The three keys on the top-right by Anonymous Coward · · Score: 0

      That's what page up/down are for.

    18. Re:The three keys on the top-right by Anonymous Coward · · Score: 0

      - Pause/Break: as far as I know, does absolutely nothing in any application.

      Ctrl + Break cancels an in progress build in Visual Studio. Really useful for those times where you accidentally hit F5 thinking focus is in your web browser instead of your giant project...

    19. Re:The three keys on the top-right by techno-vampire · · Score: 1

      If you expect to need it, create the file /proc/sys/kernel/sysrq with the contents set to 1. This makes the key combo active by default, and survives rebooting. Of course, you need to test it while the system's in good shape because different mobos respond to different combinations. (I had one, once that needed Left-Ctrl, Right-Alt and SysRQ to work, and only that combo worked.)

      --
      Good, inexpensive web hosting
    20. Re:The three keys on the top-right by Pfhorrest · · Score: 1

      Why not just use pgup/pgdn for the latter function?

      --
      -Forrest Cameranesi, Geek of all Trades
      "I am Sam. Sam I am. I do not like trolls, flames, or spam."
    21. Re:The three keys on the top-right by Anonymous Coward · · Score: 0

      Many PC games use Pause/Break to... (drum roll, please)...

      Pause the game.

      Shocking, I know, to have the pause button do what it says right on the key cap.

      Also, Visual Studio can't be alone in using Ctrl-Break to abort long-running processes (specifically, VS allows you to kill a build midway through).

    22. Re:The three keys on the top-right by Anonymous Coward · · Score: 0

      Pause works as game pause in some PC games.

    23. Re:The three keys on the top-right by Anonymous Coward · · Score: 0

      Just tried it in Excel and that's not what it does. With Scroll Lock off, the arrow keys change which cell is selected, moving the selection point by one cell in the specified direction. With Scroll Lock on, the arrow keys scroll the sheet by one cell without changing which cell is selected.

    24. Re:The three keys on the top-right by Khashishi · · Score: 1

      On DOS, CTRL+break was used sometimes to attempt (usually futilely) to exit from a hung program. I think there's actually some difference between ctrl+c and ctrl+break, but in practice I don't think it amounts to much. For some reason, in Windows, they decided to use ctrl+alt+del to bring up the task manager. It used to reboot the computer. It would have been more consistent if they used ctrl-break for the task manager.

    25. Re:The three keys on the top-right by JesseMcDonald · · Score: 2

      If you expect to need it, create the file /proc/sys/kernel/sysrq with the contents set to 1. This makes the key combo active by default, and survives rebooting.

      The /proc directory is a virtual filesystem; nothing in there survives rebooting. If you want the sysrq keys to remain enabled after a reboot you need to write to that file from an init script.

      --
      "The state is that great fiction by which everyone tries to live at the expense of everyone else." - Bastiat
    26. Re:The three keys on the top-right by Anonymous Coward · · Score: 0

      - Pause/Break: as far as I know, does absolutely nothing in any application.

      If you have a Windows command prompt window open and type a command that scrolls a bunch of input (such as DIR /S), you can press Pause to pause it, though that is of limited use given how fast computers are. It can also pause the power on self test of a computer that is first booting up--enough time to figure out the key press to get into BIOS or UEFI settings perhaps.

      Additionally, WindowsKey+Pause will bring up a Microsoft Windows Properties window (same as right clicking on "Computer" icon). Incidentally, some older Microsoft documentation had this incorrectly stated as WindowsKey+Break.

      If scripting something with AutoIt or AutoHotkey, Pause is usually my go-to choice for remapping.

    27. Re:The three keys on the top-right by Anonymous Coward · · Score: 0

      CTRL-ALT-Break toggles the RDP-client full screen on Windows.

    28. Re:The three keys on the top-right by edtice1559 · · Score: 1

      CTRL-ALT-DEL is handled in a very special way by the BIOS. And that propagates all the way up to the OS. ctrl-shift-esc will also bring up the task manager (in one key combination). If the machine isn't responding, you hit ctrl-alt-del. If the OS is healthy enough to bring up a task manager, it can do so. Otherwise, the BIOS will reboot the machine.

    29. Re:The three keys on the top-right by techno-vampire · · Score: 1

      I sit corrected. The article I used as a reference only told how to activate it on a working system, not how to make it active by default, and I misread. If you want it active at boot, you need to add the line kernel.sysrq = 1 to /etc/sysctl.conf.

      --
      Good, inexpensive web hosting
    30. Re:The three keys on the top-right by mattventura · · Score: 1

      The problem is that if a system is hosed to the point of needed to SysRq it, I can't edit that file to enable it.

    31. Re:The three keys on the top-right by techno-vampire · · Score: 1

      So what's to stop you from editing that file right now so that if and when you need it, it's ready?

      --
      Good, inexpensive web hosting
    32. Re:The three keys on the top-right by Anonymous Coward · · Score: 0

      - Pause/Break: as far as I know, does absolutely nothing in any application.

      Pause/Break is a holdover from the old DOS days. When multiple pages of text was being written to the screen you could press Pause and the output stopped until you hit pause again to resume (basically the same as a CTRL-S / CTRL-Q pair on an ASCII teletype). You can still see this in action today when your system is booting and before Windows starts. Break used to generate a user interrupt, it was up to each individual DOS program to interpret what happens when detected. I don't think any Windows software checks for this. Scroll-Lock did something in the old DOS text editors, but I can't remember what.

      The keys I would get rid of are the stupid Windows keys. I never use them and when accidentally hit they will hang or crash most games.

    33. Re:The three keys on the top-right by Anonymous Coward · · Score: 0

      I used scroll lock to replace the stuck switch under N, which I spilled soda on it!

    34. Re:The three keys on the top-right by Anonymous Coward · · Score: 0

      Break would stop programs that scrolled stuff in BASIC. It came in handy.

    35. Re:The three keys on the top-right by SuricouRaven · · Score: 1

      I don't use Excel much, my memory was off.

    36. Re:The three keys on the top-right by mwvdlee · · Score: 1

      Well, I mostly use my computer for checking if I'm still running the same operating system, so I wonder why I never noticed winkey+break before. This combo will save me literally hours every day. Didn't know it could be so incredibly useful. Thanks!

      --
      Slashdot social media options: AIM, ICQ, Yahoo, Jabber and Mobile Text. Why no MySpace?
    37. Re:The three keys on the top-right by Anonymous Coward · · Score: 0

      WinKey/Meta + Pause is a nice shortcut to the system properties in Windows; also gets used in various games to... pause stuff. Furthermore, it can be used to reversibly halt the boot of a computer during POST.

    38. Re:The three keys on the top-right by olterman · · Score: 1

      Scroll lock is good when the text scrolling is a little bit too fast to be readable (you know the timing when to press it but do not have time to read the actual text). Pressing it usually also pauses the program execution. Some old terminals, old computers or "fast" modem connections would be some examples.

    39. Re:The three keys on the top-right by Anonymous Coward · · Score: 0

      in CLI pause will pause the screen when it's scrolling information by you, too fast to read.... ctrl-break will prompt to end a batch file (like ctrl-c). some application (ftp?) does distinguish between ctrl-c and ctrl-break.

  28. False mapping by Pseudonymous+Powers · · Score: 1

    In the light of history, I'm not sure one should draw too many generalizations from the fact that "right mouse button" is the second-least used "key" on the Mac. Getting it added to the mouse at all took decades, and though I don't use Macs often, I wouldn't be on board for making it any smaller.

    Besides, saying that you should make the right mouse-button smaller just because it's only used occasionally is like saying toilets should be the size of pickle jars because you only use them a few minutes a day.

  29. Swap the Ctrl and Alt keys by fustakrakich · · Score: 2

    Please!

    And give us back our reset button, and disk activity light, so I know if the machine froze up! What the hell is the matter with you people?

    And you can have my right mouse button when you can pry it from my cold dead hands.

    --
    “He’s not deformed, he’s just drunk!”
    1. Re:Swap the Ctrl and Alt keys by Anonymous Coward · · Score: 0

      Why in gods name would you swap alt and ctrl?
      And why would you want a disk activity light on your keyboard? I just look at the light on my computer.

    2. Re:Swap the Ctrl and Alt keys by SuricouRaven · · Score: 2

      With SSDs you can't even hear the drive going - that activity light is more important than ever!

    3. Re:Swap the Ctrl and Alt keys by ArcadeMan · · Score: 1

      But wouldn't activity lights (read/write) use more power than the SSD itself?

    4. Re:Swap the Ctrl and Alt keys by lgw · · Score: 2

      Oddly enough, I've always been able to hear my SSDs (of various brands) when they were accessed, at least in a quiet room. I've always wondered why.

      --
      Socialism: a lie told by totalitarians and believed by fools.
    5. Re:Swap the Ctrl and Alt keys by fustakrakich · · Score: 1

      Sure you aren't hearing the network? That's the case with an old laptop I have. Damn thing squeals like an old TV, up and down with the brightness, but not nearly so loud. Maybe it's the power supply.

      --
      “He’s not deformed, he’s just drunk!”
    6. Re:Swap the Ctrl and Alt keys by ThatsMyNick · · Score: 1

      It is the fan revving up to cool the SSD (or the CPU that is using the data)

    7. Re:Swap the Ctrl and Alt keys by AmiMoJo · · Score: 1

      Most likely coil whine from a badly designed power supply.

      --
      const int one = 65536; (Silvermoon, Texture.cs)
      SJW, n: "Someone I don't like, and by the way I'm a fuckwit" - AC
    8. Re:Swap the Ctrl and Alt keys by ihtoit · · Score: 1

      Never mind those, I want my Turbo switch back.

      --
      Political debates have me rolling my eyes so much I think I got optical whiplash. I should sue. - Foamy The Squirrel
    9. Re:Swap the Ctrl and Alt keys by ihtoit · · Score: 1

      no, your average 2.5" SSD draws 600mA on the +5V rail, which is about 3W. Your average 2mm indicator LED draws all of 20mA@3.3V. At 5V it would lase.

      --
      Political debates have me rolling my eyes so much I think I got optical whiplash. I should sue. - Foamy The Squirrel
  30. Two reasons: by Anonymous Coward · · Score: 0

    1. To make it easy to shout in forums
    2. Leave a large mostly unused key for vi users to map to ESC/CTL properly.

    By leaving the writing on it, it prevents MS from putting a cortana logo on it.

  31. First let's consolidate all keyboards. by martiniturbide · · Score: 1

    It will be great if it can be some efforts to try to consolidate the keyboards worldwide to have the same number of keys, key shapes and distributions. Why the US Keyboard has a smaller "enter" key compared to the Latin America Keyboard? I fell more important having a big enter key :)

    After consolidating the world's keyboards, you can remove with CapsLock key with a knife :)

    1. Re:First let's consolidate all keyboards. by SEE · · Score: 1

      Mechanically, it's mostly already consolidated down to three - the ANSI, ISO, and JIS keyboards.

    2. Re:First let's consolidate all keyboards. by mattventura · · Score: 1

      Why the US Keyboard has a smaller "enter" key

      At its left extreme, it's much closer to home row than the ISO enter and thus more efficient to hit. Same thing with the left shift key.

    3. Re:First let's consolidate all keyboards. by CronoCloud · · Score: 1

      Why the US Keyboard has a smaller "enter" key compared to the Latin America Keyboard? I fell more important having a big enter key :)

      It has a smaller enter key to have a larger delete key

      This is the original PC keyboard:
      https://en.wikipedia.org/wiki/...

      Notice how some of the keys are actually wider at their base than the top of the key. Also notice that the pipe/backslash key is next to the Z key. This keyboard was NOT loved by those who had used other keyboards especially the selectric.

      This is the AT keyboard:

      https://en.wikipedia.org/wiki/...

      It's better, but the delete key is small (1 key width rather than 1.5) and the caps lock is in the wrong place for someone trained on a selectric. Which was just about everyone.

      This is the mighty Model M:

      https://en.wikipedia.org/wiki/...

      It's better even if the return key is small, the only way to make the return key bigger would be to shrink the pipe/backslash to 1 keywidth rather than the 1.5.

  32. Different (key)strokes for different folks by Overzeetop · · Score: 1

    I use the capslock all the time. Of course I'm an engineer and I switch between documents (regular case) and drawings (all upper case) so it gets a pretty big workout. Gotta say the same for my right mouse button - and the center scroll, tool. NumLock, though - that's a pretty rare beast for me; typically only gets used when it's accidentally turned off.

    --
    Is it just my observation, or are there way too many stupid people in the world?
  33. Installed a simple Chrome plugin by Anonymous Coward · · Score: 0

    AKA a keylogger.

    1. Re:Installed a simple Chrome plugin by briancox2 · · Score: 1

      Tell us more about how you were able to install a keylogger as a Chrome extension. Please.

      --
      We should learn what we need to know about issues, before we decide what we need to feel about them.
  34. i use caps lock a lot ! by Anonymous Coward · · Score: 1

    i'm an i3 user, and i've overriden the caps_lock key to serve as a function key
    i use it to assign unique keyboard combinations for the window manager

  35. flawed? by Espectr0 · · Score: 1

    I didn't read the article (this is slashdot after all), but if it's a chrome plugin, would that register key presses outside the browser? The caps key is basically never used in a browser. On my job, users rely on caps lock to type into forms inside our iseries system.

    In my opinion the least used key is the scroll lock and the pause key

  36. No One Knows What to Put There Instead by ewhac · · Score: 1

    You'd prefer this, maybe?

    That abomination was the keyboard Lenovo inflicted on the world on their Thinkpad Carbon X1 (2nd. gen). This presumably was green-lit by the same Very Serious People who approved the bundling of the SuperFish on "select" laptops.

    Lenovo seems to have since learned their lesson; the Carbon X1 3rd gen has a proper keyboard, and proper buttons above the touchpad.

    1. Re:No One Knows What to Put There Instead by SuricouRaven · · Score: 1

      But what if the user needs to type the weird bent line on the key beneath escape?

      Slashdot won't accept it, as it has no ASCII character any more and some sites still don't get the UTF-8 thing.

    2. Re:No One Knows What to Put There Instead by CronoCloud · · Score: 1

      You mean the tilde? " ~ "?

      Slashdot accepts it just fine.

    3. Re:No One Knows What to Put There Instead by SuricouRaven · · Score: 1

      No, the right-angle line.

  37. Obligatory bash.org by Junta · · Score: 3, Interesting

    http://bash.org/?835030

    That aside, just don't screw with things. You mention caps lock, which I don't use, but any change is likely to just screw with muscle memory and not have any practical benefit except as some symbolic gesture against caps lock. For example, see second gen X1 carbon which replaced caps lock with home and end keys.

    There is also the troubling by the way mention of the right mouse button. For the love of god do not advocate screwing with the right mouse button. You don't often need it, but when you do, all the schemes that try to de-emphasize it's footprint really screw with you and again *nothing of value is gained*.

    --
    XML is like violence. If it doesn't solve the problem, use more.
    1. Re:Obligatory bash.org by Lab+Rat+Jason · · Score: 1

      Twice in the same thread I've pined for mod points... that bash.org link is hilarious!

      --
      Which has more power: the hammer, or the anvil?
    2. Re:Obligatory bash.org by Dutch+Gun · · Score: 1

      Agreed. I wouldn't change a thing. I spend my time worrying about my current project or my programming skills, not the layout of my keyboard. I internalized key positions decades ago, and I don't see any real benefit in trying to relearn what I've already got down pat.

      There are a lot of slightly sub-optimal things in our lives that hang around due to simple inertia. The "pain in the ass" factor of learning a new keyboard layout probably outweighs potential efficiencies of completely or partially relearning how to touch-type. Most of us don't rely on maximum efficiency when typing, unless you happen to have a very specialized job in which you type a *lot*. A slightly more efficient layout probably won't make any substantial difference for most of us.

      As a practical matter, choosing a non-standard keyboard layout is going to greatly inconvenience you in many ways. You'll have a dramatically limited selection of keyboards to choose from, and you're going to have problems every time you need to temporarily use someone else's standard qwerty keyboard.

      --
      Irony: Agile development has too much intertia to be abandoned now.
    3. Re:Obligatory bash.org by radarskiy · · Score: 1

      "any change is likely to just screw with muscle memory"

      But it is already a change. I've been using computers long enough that I remember when it was a control key.

    4. Re:Obligatory bash.org by AmiMoJo · · Score: 1

      I switch between English and Japanese keyboards every day. I don't find it a problem, I got used to it fairly quickly. The Japanese keyboard has a lot of differences to the UK one, like all the shift characters on the number row and most of the ones next to the enter key.

      --
      const int one = 65536; (Silvermoon, Texture.cs)
      SJW, n: "Someone I don't like, and by the way I'm a fuckwit" - AC
    5. Re:Obligatory bash.org by bidule · · Score: 1

      You mention caps lock, which I don't use, but any change is likely to just screw with muscle memory and not have any practical benefit except as some symbolic gesture against caps lock.

      Do it for the children!

      --
      ID: the nose did not occur naturally, how would we wear glasses otherwise? (apologies to Voltaire)
  38. CAPS-LOCK by mwvdlee · · Score: 3, Funny

    Obviously caps-lock is the least used key. you press it only once after boot, then no more.

    --
    Slashdot social media options: AIM, ICQ, Yahoo, Jabber and Mobile Text. Why no MySpace?
  39. Mangled IRC joke by GoodNewsJimDotCom · · Score: 5, Funny

    Dude1:"HI GUYS! HOW IS EVERYONE?"

    Dude2:"Hey. Doing okay. You?"

    Dude1:"COULDN'T BE BETTER! ANYTHING GOING ON?"

    Dude2:"There's a caps lock key on your keyboard, press it."

    Dude1"OH! THANK YOU! IT'S SO MUCH EASIER TYPING NOW NOT HAVING TO HOLD SHIFT."

    1. Re:Mangled IRC joke by GroeFaZ · · Score: 2

      http://bash.org/?835030 is what you're looking for.

      --
      The grass is always greener on the other side of the light cone.
    2. Re:Mangled IRC joke by Anonymous Coward · · Score: 0

      Owen, is that you?

  40. Give me my Home key back by dave562 · · Score: 1

    On the newer Latitude laptops, Dell moved the Home and End keys down onto the arrow keys and made them Fn enabled. It is really frustrating because I often use Home and End when editing text, often in conjunction with Shift or Control to manipulate large blocks of text.

    This of course has nothing to do with TFA, but this is /. and I need to rant damn it.

    1. Re:Give me my Home key back by xlsior · · Score: 1

      For a (short) while years ago Microsoft tried redesigning their keyboard layout as well, and in their infinite wisdom they got rid of the normal 'insert' key -- instead they gave you a double-height 'delete' key, and the 'Insert' functionality became a 3rd feature of the printscreen/sysreq button, provided you're in Microsoft Office. On all of their keyboard lines at the same time: 'standard', 'office', 'gaming' and 'ergonomic'.

      The big problem with that: no more "shift-insert" shortcut to paste text, and it's -very- hard to break that habit.

      Luckily, their experiment didn't last very long and they've since switched back to a standard keyboard layout.

    2. Re:Give me my Home key back by JakartaDean · · Score: 1

      On the newer Latitude laptops, Dell moved the Home and End keys down onto the arrow keys and made them Fn enabled. It is really frustrating because I often use Home and End when editing text, often in conjunction with Shift or Control to manipulate large blocks of text.

      This of course has nothing to do with TFA, but this is /. and I need to rant damn it.

      Unfortunately, I use the Home key every time I load a /. page. Why only this fscking site jumps to somewhere arbitrarily near the end of the page after loading is mysterious, and very annoying.

      --
      The subject who is truly loyal to the Chief Magistrate will neither advise nor submit to arbitrary measures (Junius)
  41. Re:The Microsoft key!!!! I've never used it...ever by Kkloe · · Score: 1

    i am more frustrated that *nix systems doesnt make a use of it, and just map the same stuff as windows where applicable, its like, we see you have a keyboard with the windows key, all of them?), lets not make use of it and let the user map it themself

  42. irony by ThatsNotPudding · · Score: 1

    no way to argue for caps lock, what with the lameness filter.

  43. "...neat statistics" by xanthines-R-yummy · · Score: 1

    I agree it's pretty neat, but do they have this data in a more readable form? As in one, that doesn't have a million cartoon images interspersed with one sentence? I don't mean to be a crank, but I found it difficult to read. Even more so than the regular site!

  44. Re:The Microsoft key!!!! I've never used it...ever by Pseudonymous+Powers · · Score: 1

    I started using computers regularly in the time before the "Windows" key was added to the keyboard. So, when it appeared, I refused to use it, out of pique. These days I am always very angry when I do press it, because what I mean to press instead is always either Alt or Ctrl. I personally feel that adding a third key to that set makes it a confusing mess. I initially thought that most users would feel the same way, and that the key would quietly go away when the next year's keyboards came out.

    But a lot of people seem to like it, so I guess that's never happening. I will say that, even on Windows, there's usually an alternate keyboard shortcut that makes its use unnecessary.

    What I'd really like is some simple and commonly available system that lets you re-map or disable any key on the keyboard at will. That's another problem that I thought would have been fixed by now, but it never really seems to ever become very practical.

  45. Re: My Pet Peeves (recent Windows laptop keyboards by Anonymous Coward · · Score: 0

    One handed usage when reading a long document.

  46. ctrl:nocaps by ciscon · · Score: 0

    The first thing I do when setting up a new box is to turn that useless key into the control key it should be.

  47. Military Reports by taliesinangelus · · Score: 1

    A lot of military reports and first responder reports are still written in all caps.

  48. Definitely not the least used key by sjbe · · Score: 1

    Keys that never get used ever because they are no longer useful:
    Sys Rq
    Scroll Lock
    Pause/Break

    Let's put Caps Lock where Scroll Lock is currently. Caps Lock is occasionally useful but the key word is occasionally. Most of the time it is just annoying and it is WAY too prominent on the keyboard.

    Personally I'd get rid of the Windows key too since I never ever use it but I know some people actually do. Freaks... ;-)

    1. Re:Definitely not the least used key by buckfeta2014 · · Score: 0

      Win + Pause opens the system properties window.

      --
      Buck Feta. You know what to do.
    2. Re:Definitely not the least used key by BorgAssimilator · · Score: 1

      I don't use the SysRq key too often, but when I'm working with a kernel that's having issues those magic system request combos become really useful.

      I've also become aware that the Pause/Break key is used in the windows command prompt. (I recently had the unfortunate experience of creating a python/django application on windows...)

      --
      "Intelligence has nothing to do with politics!"
      -Londo Mollari
    3. Re:Definitely not the least used key by mattventura · · Score: 1

      They're niche but still used, apart from scroll lock which I really can't seem to think of a use case for. Sometimes you need Pause/Break to stop BIOS output because a lot of BIOSes (especially newfangled UEFI ones) blow past important things faster than your monitor can wake up. SysRq still has a use as the magic SysRq key.

    4. Re:Definitely not the least used key by Anonymous Coward · · Score: 0

      Sys Rq usually functions to get a screenshot.

    5. Re:Definitely not the least used key by IcyWolfy · · Score: 1

      So, inconvenience entire countries because US english doesn't use it.

      Or what about doing away with the # key, because it's rarely used. (On bristish english keyboards, the # is it's own key. Shift-# = ~; Shift-` (backtick) = (not) )

      Several Keyboard layouts have 4 shift states. CAPS !== SHIFT.
      See Czech and Swiss German for common examples.

      the upper row of CZ are letters.
      SHIFT gets you 123457890
      CAPS: gets uppercased letters
      CAPS-Shift: numbers again

      Swiss:
      Shift ü = è
      CAPS ON: Shift Ü = È

      If you get rid of the caps lock, you'll have to introduce a common dual-state key for the dozens of languges that require it.
      n other layouts, CAPS switches between national language script, and latin letter script (which is pretty much required now if you ever want to type a URL)

    6. Re:Definitely not the least used key by Anonymous Coward · · Score: 0

      I use it to launch things quickly, of course I don't use it much, mostly because I have 22 macro keys with four modes. I've got sys rq/print screen hotkeyed to my screen capture software, I use scroll lock in databases and as an assignable hotkey for programs that don't like to take input from the macro keys. Pause/break? I do use it, it's a great thing to have set to pause a game, video, song, whatever. I also have a context menu key, and a full set of multimedia keys. You know what key I probably use least? It's a toss up between mute and tab.
      What ever you you think no-one could possibly use or want, is a core part of someone's workflow. https://xkcd.com/1172/ Seriously, you don't like your keyboard, then remap your keys, or buy one you like, or build one.

      The least worthy source of information in this sort of debate is a bunch of devs and managers output from a freaking Chrome Extension on a fricking mac book. Seriously? You get a bunch of people who are using keyboards that can be painfully small, and which have no mouse by default, and the only data you have is from their web browser. It's not a valid test. I may not use capslock in my web browser because I've already got it enabled from a different application, I may not need a context menu for my web browser because I've mapped shortcuts.

      But basing keyboard design on one, singular, insignificant, developer's bizarre try at recording what their people type into a web browser has got to be one of the single most stupid proposals I have ever seen from /. I thought you people were techies, who realized the value of these keys, and the value of data that isn't complete b*llsh*t when trying to make decisions. I thought you people were better than this. I guess /. really is dying.

    7. Re:Definitely not the least used key by tepples · · Score: 1

      I press Alt+SysRq+REISUB, waiting for disk activity to end after each key, maybe once every few months to reboot a wedged Linux PC. Some PC games use the Pause key for its labeled purpose. And someone else wrote a comment to this story suggesting making a PC game that uses Scroll Lock to keep thieves from stealing items in your tool belt (hotbar).

  49. Re:The Microsoft key!!!! I've never used it...ever by T.E.D. · · Score: 3, Informative

    Just curious, what OS are you using?

    On both Windows and Linux, it's a pretty handy key.

    On Windows 8 (I haven't tried 10 yet), its pretty much required, unless you do something goofy like place an icon for every program you might ever want to use on your desktop. Its the "help me find a program" key. If you'd rather search your hard-drive manually, its still much quicker to bring up file explorer with Windows-e rather than hunt down a picture of it on your desktop (closing any possible obscuring windows) and click that.

  50. Colemak by fwarren · · Score: 1

    On the Colemak keyboard layout the Caps Lock has been assigned to work as a 2nd backspace key. This would be much more useful if I remembered to use it.

    --
    vi + /etc over regedit any day of the week.
  51. Dvorak. by briancox2 · · Score: 3, Informative

    This is the opportunity the obscure Dvorak Keyboard crowd has been waiting for to finally fix the layout of keys.

    Organize now. Latch on to this issue. Or you'll miss your chance.

    --
    We should learn what we need to know about issues, before we decide what we need to feel about them.
    1. Re:Dvorak. by Anonymous Coward · · Score: 0

      This is the opportunity the obscure Dvorak Keyboard crowd has been waiting for to finally fix the layout of keys.

      Organize now. Latch on to this issue. Or you'll miss your chance.

      In the infinite customization world we now live in, I have a better suggestion.

      Fuck your keyboard standards. ALL of them. Just make every damn keyboard programmable. End of story.

    2. Re:Dvorak. by Anonymous Coward · · Score: 0

      Caps lock is for emphasis. Sometimes you simply need that look to make your point and holding shift down for a full phrase is irritating (and very hard for anyone not used to touch typing). I realize this might come as a shock, but most people when using the computer to type a document use it like that at one time or another.
      Programmers don't ever use it for this, but they make up an insignificant size of the market.
      What really surprises me is that people who complain about it don't get creative and think of alternative uses for it remapping it to some action that would better suit THEM.

    3. Re:Dvorak. by Anonymous Coward · · Score: 0

      This is what I have in my .Xsession:

      /usr/local/bin/setxkbmap -layout us -variant dvorak \
          -option \
          ctrl:nocaps,compose:menu

      Also have a hotkey to run setxkbmap -layout us -variant dvorak-l -option ctrl:swapcaps

  52. Shift keys needs moving by Anonymous Coward · · Score: 0

    Using our little pinkies to make letters capital is absurd and a strain on them.

    Instead the shift key should be below the Space key and thumb operated.
    This would allow us to hold the shift down and still type normally. This would also eliminate the need for a CapsLock key, or it could be put somewhere less prominent.

  53. Why is the caps-lock key so prominent? by DeathToBill · · Score: 2

    To give you a nice, big, easy-to-reach key you can remap to Control.

    --
    Slashdot - News for Nerds, Stuff that Matters, in ISO-8859-1 Has just realised that beta makes this signature redundant
    1. Re:Why is the caps-lock key so prominent? by skastrik · · Score: 1

      Good one. But left-alt is easier to reach.
      On my main work computer I have swapped L-ctlr and L-alt via registry scancode map. Prior to that I had started to develop left-pinky-copy-paste syndrome, fixed now.

    2. Re:Why is the caps-lock key so prominent? by Anonymous Coward · · Score: 0

      On Windows, I use "AutoHotkey". Then, emacs gets much easier to use through the following autohotkey script:

      #IfWinActive emacs@LAPTOP
      Capslock::Ctrl
      +Capslock::Capslock
      #IfWinActive

      Otherwise, you get "emacs pinkie". Hell, you get emacs pinkie anyway, if you use emacs for any prolonged period, but the pain is delayed somewhat by using this remapping. As someone who has used keyboards for programming since back in the early 80s, I was truly appalled when I got a PC and found they had moved the Control key all the way DOWN THERE ON THE BOTTOM LEFT! (no, I didn't use caps-lock to type that).

  54. Here's why: by wirefarm · · Score: 1

    CAPS LOCK IS CRUISE CONTROL FOR COOL.
    Filter error: Don't use so many caps. It's like YELLING.

    --
    -- My Weblog.
  55. Re: My Pet Peeves (recent Windows laptop keyboards by aristotle-dude · · Score: 2

    One handed usage when reading a long document.

    Do you fap to Business requirements documents?

    --
    Jesus was a compassionate social conservative who called individuals to sin no more.
  56. Re: My Pet Peeves (recent Windows laptop keyboards by Anonymous Coward · · Score: 0

    The original comment was about a MacBook Pro, on which two finger scrolling is a much more likely way of doing what you're describing.

  57. Nooooooooo by roc97007 · · Score: 1

    Oh goodie, another standard keyboard layout. Because getting rid of the "esc" key and putting an additional key in the bottom row worked so well for DEC.

    But getting used to yet another keyboard layout... I'll leave that to the keyboard experimenters. I have actual work to do.

    --
    Oliver's law of assumed responsibility: If you're seen fixing it, you will be blamed for breaking it.
  58. Re:The Microsoft key!!!! I've never used it...ever by Ksevio · · Score: 1

    On OSX it's the Apple key which is also very useful.

    The context menu key on the other hand...

  59. Re:The Microsoft key!!!! I've never used it...ever by Fire_Wraith · · Score: 3, Informative

    I find that I use it constantly for two things (aside from start menu access): Windows+E = Brings up File Manager/Windows Explorer Windows+L = Lock screen in one keypress (rather than two using the C-A-D plus mouse click)

  60. Get a screwdriver by jafiwam · · Score: 1

    Get a screwdriver and just pry the damn thing off the keyboard.

    Same with the windows and menu keys. You can still press them by poking something in there (often a pinky works).

  61. Why wasn't the caps-lock key like a typewriter? by Anonymous Coward · · Score: 0

    On a typewriter, when the caps-lock key was engaged, when you hit the shift key with a letter, you still got a capital letter and it cleared the caps lock. Why in the world did the shift key print lower case letters when the caps-lock key was engaged?

  62. Why Is the Caps Lock Key Still So Prominent On Key by Rob+Riggs · · Score: 4, Funny

    SO THE OLD GEEZERS WHO ONLY GREW UP WITH TELETYPE MACHINES CAN COMMUNICATE WITH ONE ANOTHER.

    Filter error: Don't use so many caps. It's like YELLING.
    Filter error: Don't use so many caps. It's like YELLING.
    Filter error: Don't use so many caps. It's like YELLING.
    Filter error: Don't use so many caps. It's like YELLING.
    Filter error: Don't use so many caps. It's like YELLING.
    Filter error: Don't use so many caps. It's like YELLING.
    Filter error: Don't use so many caps. It's like YELLING.

    WHAT'S THAT YOU SAY?

    --
    the growth in cynicism and rebellion has not been without cause
  63. Windows key = useless to me by sjbe · · Score: 1

    On both Windows and Linux, it's a pretty handy key.

    Depends on your workflow. I never use it. If you are someone who really never wants to take your hands off the keyboard I get it but I'm not that person so it sits lonely and unused on my keyboard. Only time I ever press it is by accident or if for some reason I'm forced to use Windows 8 (shudder).

    1. Re:Windows key = useless to me by IcyWolfy · · Score: 1

      The Windows key is pretty damned useful in day-to-day activities:
      I for one make use of:

      Windows - LEFT, Windows - RIGHT : Snap half-screen left / Move to next Monitor;
      Windows - UP, Windows DOWN : Maximize, Minimize
      Windows SHIFT UP, Win-Shift-Down : Maximize/Restore Vertical only. (Width stays the same, only window height maximizes/restores)
      Windows - Print Screen: Screenshot and save to file
      Windows - X : Power Menu (Admin Command Promt, Control Panel, Shutdown/Hibernate/Sleep, etc)
      Windows : Windows 8 Screen (Start typing to search for application to run)
      Windows - L : Lock Screen (I use this at work, not at home)
      Windows - P : Second Monitor Mode (Duplicate, Mirror, Laptop Only, Second Monitor Only)
      Windows - D : Show Desktop (Minimize All) / If you don't need to open a new app, a second press will undo the minimize all
      Windows - SPACE : Keyboard Language Selector (Probably not useful for americans); I use it for Intl Dvorak, US English, JP IME
          Windows - / : IME Recovert (Good for ZH, JP, KR)
      Windows - E : New File Explorer Window
      Windows - R : [ No longer useful - Open RUN box; Windows-SPACE has fully replaced this by allowing full text-search of all installed applications]
      Windows - PAUSE : Bring up System Properties Screen (usually for debugging hardware issues, or seeing stats)
      Windows - 1, 2, 3, 4 : (effectively click) Open/Switch to application pinned on task bar at position 1, 2, 3, 4...
      Windows Shift - 1, 2, 3, 4: (effective shift-click) New instance of pinned task-bar application at specificed location
                [ These two I only use Windows 2, to open my IDE; pretty much everything else I just use Windows + (start typing app name) ]
      Windows - Alt - Enter : Open Windows Media Center

      Alt-Tab : Cycle through open windows
      AltGr-Tab : Use keyboard to cycle through all windows in pop-up window; enter to actually switch. (Apparently, americans can use Ctrl-Alt-Tab for this)

        And there are many more Windows-Key shortcuts that I don't use; or probably don't even know about.

    2. Re:Windows key = useless to me by Marxist+Hacker+42 · · Score: 1

      Wait until you have a kid. Windows L becomes VERY useful at home. Also good for curious hacker kitties.

      --
      SJW: a person who perceives an injustice, and while correcting it, commits a greater injustice.
    3. Re:Windows key = useless to me by Sowelu · · Score: 1

      Windows-R is a very nice shortcut for bringing up the run box. Clicking the start button is a mild pain (especially if you have a monitor to the left of your main monitor), ctrl-esc is an extra button to hit...and the 'run' in the start menu in Windows 7 isn't even a normal run thing, it's a search window that happens to let you run things too. You can't scroll through command history. I actually don't know if there's any way to open the run box with a mouse! I can't find it if there is.

    4. Re: Windows key = useless to me by greenlead · · Score: 1

      Don't forget the new WIN + X shortcut (or right clicking start button)! It gives a handy menu with most of the programs you need for everyday Windows administration. It nice of them to think of those of us who have to do daily touch maintenance on desktop computers.

    5. Re:Windows key = useless to me by mvdw · · Score: 1

      I use an old IBM Model M keyboard with no windows key; under OSX I remap the caps-lock key to command; under windows I don't miss not having the windows key. Many of those shortcuts you have listed have alternate shortcuts; the ones that don't could be useful to me if I had a windows key, but I'd rather type on my model M than some mushy newfangled piece of crap. Under Linux, ctrl-alt serves the purpose of the windows key, and the linux desktop is much more flexible than windows for using the keyboard anyway.

  64. Android by Anonymous Coward · · Score: 0

    I'm.really.tired.of.the.period.being.closer.to.my.thumb.than.the.space.key.

  65. Necessary for the forums by k6mfw · · Score: 1

    SO YOU CAN TELL PEOPLE WHAT YOU REALLY THINK

    and probably for those steeped in tradition of the KSR machines
    P 27Ø159Z AUG 2Ø12
    FM NNNØGHA TWO AL
    TO NNNØAVL ALABAMA
    INFO NNNØAS4 GA
    BT
    UNCLAS
    SUBJ: TROPICAL STORM ISAAC - COMCON THREE
    A. ALABAMA ECOM PLAN OF 22 FEB Ø7
    BT

    --
    mfwright@batnet.com
  66. yes please: by Anonymous Coward · · Score: 0

    Make keyboards on laptops with cursor key that don't sink into their surrounding keys - always keep them separate.

    I've actually never used the Caps Lock. Why is it even there, what's the point beside historical curiosity?

    I've never used the keypad ever at all.

    Make the pgup, pgdown, begin, end, etc. keys consistently placed at the same location on every keyboard.

    Remove stupid "Sleep", "Shutdown" function keys (god...)

    Merge all localized layouts into one standard... I hate switching back and forth to qwerty/azerty. Though diacritics should be more easily accessible (or kept localized)

    1. Re:yes please: by Anonymous Coward · · Score: 0

      And again, what's the point of the keypad? Keep track of a time when people mostly mistook computers for big calculators?

    2. Re:yes please: by Ashtead · · Score: 1

      I use the keypad while paying bills. There are account numbers, the amounts themselves, then these other long identifier strings of numbers that makes it certain that the mony ends up where it is supposed to go. Much easier than using the top row.

      As for caps lock -- since I use vi a lot, the accidental turning on of this makes a lot of confusion since the various letter commands are different between upper and lower case: j moves down, J joins the line and the following then u is undo but U is undo to original text of the line. Then :e! starts over for another try...

      Changing it to ctrl isn't great either, I'd type away at some website like this, then hit ^A and a couple letters later it is all: Where TF is all my text gone! Damn...

      Thus, most of the keyboards here have the key removed so as to avoid the above kinds of hassles.

      --
      SIGBUS @ NO-07.308
    3. Re:yes please: by IcyWolfy · · Score: 1

      Swss German
      Czech.

      the upper row of CZ are letters.
      SHIFT gets you 123457890
      CAPS: gets uppercased letters
      CAPS-Shift: numbers again

      Swiss:
      Shift ü = è
      CAPS ON: Shift Ü = È

  67. Short answer ... by gstoddart · · Score: 2

    Because the world doesn't want every idiot who thinks he's made a better keyboard constantly mucking about with stuff for the sake of it.

    Some of us have been typing for decades, and simply don't care that you think it's time to redesign the keyboard.

    "It's time to make some changes to keyboards" -- No, that's your opinion, it isn't fact.

    You want a custom keyboard, buy it or make it. But don't be such an arrogant ass as to assume we give a damn about you whining about it. We don't need some damned keyboard designed by a fucking committee.

    What a stupid article.

    --
    Lost at C:>. Found at C.
    1. Re:Short answer ... by Anonymous Coward · · Score: 0

      Some of us... haven't been typing for decades?

      What a stupid comment.

    2. Re:Short answer ... by Anonymous Coward · · Score: 0

      *stands and applauds wildly*

      Thank you.

  68. frickin' useless POS that makes everything suck by swschrad · · Score: 1

    its counterpart in the Apple world, the splat key, is extremely useful, however.

    --
    if this is supposed to be a new economy, how come they still want my old fashioned money?
    1. Re:frickin' useless POS that makes everything suck by Anonymous Coward · · Score: 0

      open-apple. the key has an open-apple on it. newer keyboards are missing the open-apple but the key works the same.

      unless you mean the one on the right-hand side. that one is closed-apple or open-apple depending on the keyboard.

  69. Backslash right above enter. by GungaDan · · Score: 1

    Me and my sausage fingers would LOVE to see the backslash key moved even just a few millimeters farther from the enter key. I don't know how many times I've gone to enter a command and I catch the backslash just before the enter, dropping me to > .

    --
    Eloi are stupid, throw morlocks at them!
    1. Re:Backslash right above enter. by Anonymous Coward · · Score: 0

      So... just hit enter?

  70. Consistency for Home, End, PgUp, PgDown, Delete by essbase_nerd · · Score: 1

    I couldn't care less about the Caps Lock. I rarely use it, but it doesn't bother me.

    My frustration is when I use different keyboards, and the Home, End, PgUp, PgDown, and Delete keys are in different places, or are shaped differently (double height delete key, for example). The same goes for arrow keys.

    I use the HELL out of the Right Click Context key on my keyboard. I've noticed that Logitech has been replacing that key with a FN key to switch the purpose of F1-F12 to other stupid things no one cares about.

    I also use the crap out of the Windows key to start searches or enter UNC paths to get to network resources quickly. Though if it wasn't there, I would learn and use it's alternative shortcut key.

  71. No. by Qzukk · · Score: 1

    Don't swap the control and alt keys, please. I have to press ^A, ^X, ^C and those are going to be absolutely awkward if the keys are right under each other. Put it where the capslock key is now, so ^A is just shifting my fingers a key left.

    --
    If I have been able to see further than others, it is because I bought a pair of binoculars.
    1. Re:No. by fustakrakich · · Score: 1

      That also works. I'm just used to the Mac, and to me, the Command and Control keys should be in the same place on their respective keyboards. It was more comfortable to use with my thumb.

      --
      “He’s not deformed, he’s just drunk!”
  72. Re:The Microsoft key!!!! I've never used it...ever by SuricouRaven · · Score: 1

    It's also known as the 'agh-bring-me-back-my-game-I-just-grabbed-the-flag!' key.

  73. Compose key by Florian+Weimer · · Score: 1

    It's generally useless, but fairly convenient to reach, so it makes perfect sense to map it to the Compose key instead.

  74. Just disable it? by Anonymous Coward · · Score: 0

    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Keyboard Layout]
    "Scancode Map"=hex:00,00,00,00,00,00,00,00,02,00,00,00,00,00,3a,00,00,00,00,00

    Phew, all gone. Finally.

  75. Re:The Microsoft key!!!! I've never used it...ever by SuricouRaven · · Score: 1

    There are a few such combinations.
    Win-P switches dual display mode.
    Win-D (Aka 'boss key' or 'teacher key') minimises all windows. A second use restores them.

  76. I guess I'm in the minority. by MaWeiTao · · Score: 1

    MacBook... No wonder so few people use the right-click button. For me, that right-click is indispensable. It would hinder productivity to lose it, and people would be smart to learn how to take advantage of it. The capslock key is useful too, although less so because many page layout applications now allow you to set text as all caps. Although having that key available is sometimes quicker.

    Speed and efficiency is what it comes down to. Just because most users do things a certain way doesn't mean they're doing it properly. I see coworkers constantly doing things inefficiently because they can't be bothered to do a simple online search to find a better approach. It's shocking, actually, because I've seen people stressed out, spending full days to do tasks that should take maybe an hour.

    The point of input devices shouldn't be to strip them down to their bare useable minimum. I don't think we need over-designed keyboards with a million buttons, but there is a sensible middle ground that offers reasonable functionality. Removing an underused capslock key isn't going improve anyone's experience, but it will hurt those for whom it's useful. This is not to say I'm opposed to redesigns, but I think they have to be applied holistically and be sensible.

    1. Re:I guess I'm in the minority. by Anonymous Coward · · Score: 0

      Me too. I'm shocked at how little the right-click is apparently used.

  77. Prime space by sjbe · · Score: 1

    You mention caps lock, which I don't use, but any change is likely to just screw with muscle memory and not have any practical benefit except as some symbolic gesture against caps lock.

    You'll get over it. Caps lock needs to be deprecated and relocated. Besides it's not like all keyboards are identical, particularly on laptops. Caps lock takes up lots of space that could be better used. Personally I'd put Home and End in its place or maybe volume controls or perhaps browser forward/back controls.

    1. Re:Prime space by Anonymous Coward · · Score: 0

      I use Caps-Lock to switch input language. You know, English is not only language on this planet, yet.

    2. Re:Prime space by IcyWolfy · · Score: 1

      Several Keyboard layouts have 4 shift states. CAPS !== SHIFT.
      See Czech and Swiss German for common examples.

      the upper row of CZ are letters.
      SHIFT gets you 123457890
      CAPS: gets uppercased letters
      CAPS-Shift: numbers again

      Swiss:
      Shift ü = è
      CAPS ON: Shift Ü = È

      If you get rid of the caps lock, you'll have to introduce a common dual-state key for the dozens of languges that require it.
      In other layouts, CAPS switches between national language script, and latin letter script (which is pretty much required now if you ever want to type a URL)

  78. Sticking with a 1982 design by Locke2005 · · Score: 3, Interesting

    I have a different (possibly more stupid) question: why are computer numeric keypads and phone keypads reversed from each other? This gets even worse when entering your pin for a bank; I've seen both layouts used by banks. I think the answer is, "That's the way we've always done it!" Somebody made an arbitrary and capricious decision many years ago, and nobody has had the wherewithall to change it. Another "standard" that bothers me: In the transition to digital video, they had the chance to do away with the PAL/NTSC dual-standard nonsense... but they still chose to support both 50 and 60 FPS video?!? As I understand, even 4K video comes in both 50 and 60 frames per second variety, because obviously we still need to synchronize our video to our AC line current...

    --
    I've abandoned my search for truth; now I'm just looking for some useful delusions.
    1. Re:Sticking with a 1982 design by swb · · Score: 1

      Whaddya bet that the variation in video formats got left in as some kind of poor DRM to act as a last-chance method to stop people from viewing videos from other regions?

    2. Re:Sticking with a 1982 design by Ashtead · · Score: 1

      From what I remember, the numerical keypads with 789 on the top row were inherited from ancient calculating machines, not entirely unlike the QWERTY ordering of the keyboard -- it was the way it was laid out and as it wasn't broke no-one ever bothered to fix it. There were some mechanical reasons for this originally, then it carried over to electronic calculator keyboards and then their descendants, the computers.

      The phones keypad pedigree is different: from various circular dials that opened and closed a switch a number of times corresponding to the number the user wanted to dial, the keypads that replaced the dials got the numbers in a natural top-to-bottom ascending order, usually with keys organized in a 3 wide 4 tall matrix.

      --
      SIGBUS @ NO-07.308
    3. Re:Sticking with a 1982 design by Anonymous Coward · · Score: 0

      It is even worse than that.

      It is not actually 60fps, it 59.98fps.
      And now for something that will really blow your mind, on HDTV that comes from a movie it is actually 23.98, and they had to slow down the sample rate for that, because actual film in a camera and in a theatre runs as 24 fps.

      However Europe HDTV does actually include a proper 24fps (because we also have a proper 25fps), which is probably never used.

    4. Re:Sticking with a 1982 design by Anonymous Coward · · Score: 0

      I have a different (possibly more stupid) question: why are computer numeric keypads and phone keypads reversed from each other?

      You can thank John Elias Karlin for that one. From the article, it appears it was done to help people remember strings of digits better.

      What I've heard from working in the telecom industry for 25 years is that it was reversed from calculators because the system that interpreted TouchTone(tm) (developed by Bell Labs in the 1960s) was too slow for people that used keypads in calculator layout. Putting the 1 on the top left slowed down people enough for the system to work properly.

    5. Re:Sticking with a 1982 design by Anonymous Coward · · Score: 0

      IIRC, the numeric keypad is like the ten-key keypad for adding machines, which was first. When the phone keypad came out, the phone company didn't want the ten-key users to be able to type in the numbers real fast, because it would overload the phone system.

    6. Re:Sticking with a 1982 design by Anonymous Coward · · Score: 0

      There's legacy and there's legacy. Removing capslock would be pretty easy since humans are really adaptable. And yes, the control key should move there just like God and Emacs intended.

      Changing video frame rates is harder. There is tons and tons of video out there which was recorded at 29.97 or 25 fps. You can't just play it back at 30 fps, you get things like audio/video sync issues and very mild overcranking effects. So you pretty much are stuck with working with 24, 25, 29.97, 30, 59.94, and 60 fps.

      It used to be that changing and mixing frame rates was really difficult. Most video editing software couldn't handle it. I haven't had to deal with professional editing software in a while but my guess is it's much better at adapting to multiple frame rates (adding and dropping frames as needed to keep the audio and video in sync with real time). I agree, adding 4k formats would be a really good time to drop some frame rates and say you're only going to play back at 30 or 60 frames per second.

      In any case, if you really want to get annoyed about too much flexibility in standards, just work with video formats. The number of choices is just insane. Frame rates, drop-frame vs. no-drop-frame, audio formats, resolution, color depth, 4:2:0 vs. 4:2:2 vs. 4:4:4 color sampling, compression format, transport format, and on and on and on. If you really love dealing with arcane minutia, digital video is hog heaven.

      (My favorite war story? Everyone knows a MPEG stream is a sequence of groups-of-pictures, or GOPs. And a GOP is an I-frame with some P-frames and B-frames. Simple, right? Yeah, except it's wrong. Turns out you don't need the I-frame, you can split it into I-slices and scatter them through the GOP. The resulting GOP has nothing but P-frames and B-frames, or maybe nothing but B-frames. It's endless fun when you're writing code which scans a stream for an I-frame so you can detect GOP boundaries. Oops.)

    7. Re:Sticking with a 1982 design by Anonymous Coward · · Score: 0

      Because telephony was a government-endorsed monopoly at the time touch-tone was developed, it was Bell Labs who did the design and usability studies for the touch-tone keypad. Bell wasn't an adding machine manufacturer, but many companies (including IBM) were, so that is why the computer keyboard's number pad has the same layout as adding machines.

    8. Re:Sticking with a 1982 design by Anonymous Coward · · Score: 0

      You're confusing frames-per-second and screen refresh rate, to your argument's detriment.

    9. Re:Sticking with a 1982 design by Anonymous Coward · · Score: 0

      They're swapped because in real testing when designing the touchpad phone layout, the swapped layout was the best (they expected the non-swapped layout would be better, but it wasn't). Now we keep the inconsistent layout because consistency *is* important.

    10. Re:Sticking with a 1982 design by stephows · · Score: 1

      The phone standards created the phone keypad way back in the first half of the 20th century but it didn't become well known until the 1970s when actual hardware reached the mass market. The electronic calculator and computer market knew nothing about the phone standards, so they made their own version and started selling it in the 1960s. Possibly they copied the last generation of mechanical calculator layouts but in the real early days of mechanical calculators (when the telephone standard was designed) these had multiple lines of 1...9 and 0. By the time each knew about each other, neither wanted to change. So now we live with both.

    11. Re:Sticking with a 1982 design by tepples · · Score: 1

      why are computer numeric keypads and phone keypads reversed from each other?

      DTMF keypads have 1 on top because 9 was next to 0 on rotary dial telephones, in turn because 0 was encoded as ten pulses. Computer numeric keypads are descended from mechanical adding machines, which have higher numbers up top.

      Another "standard" that bothers me: In the transition to digital video, they had the chance to do away with the PAL/NTSC dual-standard nonsense... but they still chose to support both 50 and 60 FPS video?!?

      Mostly for movies (which may be 24 or 25 fps per country) and upscaled SD programs embedded in a high-definition stream. Also for the same reason as DVD and BD region coding, namely to continue to enforce decades-old territorial exclusive licenses that specify the "PAL region" (mostly defined as Europe, Australia, and New Zealand).

    12. Re:Sticking with a 1982 design by Anonymous Coward · · Score: 0

      Uh, yeah. Caps lock goes back quite a ways before 1982, mmmmkay? Let's try 1961 for the Selectric typewriter and I'm not sure how much before that because IIRC that was still replicating typewriter locks at the time.

      Anyway, computer numeric keypads are based on copying 10-key machine entry design for which a touch-entry person wants the zero and decimal on the bottom row. Telephone numeration works because of the days when the two-letter exchange was a necessity and you wanted A (tied to the number 1) at the top and Y (tied to 9) at the bottom (they didn't use Q or Z.) So, different purposes requiring different layouts.

      And sure, so you're volunteering to rebuy whichever standard you were on (PAL or NTSC?) Glad to know you're good with disposable income - for others it would have been a major investment.

      Finally, claiming "that's the way we've always done it," is a perfectly fine justification unless you know the actual reason (that's usually a default cop-out for "We forgot the real reason why we did it,") AND you have a much better alternative. Otherwise, see the comment immediately above you that respects that you'd be screwing up centuries of muscle-learning for those who learned to deal with it.

      Oh, and deal with it.

  79. Make it MORE important, not less. by Mal-2 · · Score: 1

    Right now, CapsLock does one thing. You tap it, and toggle the state of the Caps Lock function. Why not make it do more than one thing, namely by giving it a different function when held down? Perhaps it can act something like AltGr. I personally a held-down CapsLock to generate small caps (via Unicode, so I can't demonstrate here) thanks to AutoHotkey.

    I also have other overlapping assignments, such as the AppsKey (aka "Menu Key", which may or may not be what they're calling the "Right Mouse Button" in the article). Tap it and it does the usual. Hold it down and it generates lookalike characters if any exist for that key (otherwise it generates nothing, so you know you didn't get a lookalike), such as a Cyrillic a or capital letters from the Greek alphabet. Why? Because of wordfilters. I encountered one that liked to change all instances of "moot" to "cuck", but it did so with no regard to the characters around the string. Thus the word "smooth" became "scuckh". I dodge this by substituting Cyrillic o in place of one or both of the ones in the word. Another wordfilter I've encountered changes all instances of "wing" to "wang", including when it's part of the word "swing". Time to bust out the Byelorussian "i".

    Another option is to map CapsLock to Ctrl (as many people do), or to Backspace (as is the norm in Colemak). I actually use it though, now that it has the additional Small Caps function. I tried the Backspace assignment, but found myself not using it, and now I have a duplicate Backspace to the left of the Left Shift.

    Other funky double assignments: NumLock sends a Ctrl-Enter, but only in Skype, otherwise it behaves normally. My numeric keypad is also paired up differently and uses all five rows:

    /, 7-PrtSc, 8-ScrLk, 9-Pause
    *, 4-Ins, 5-Home, 6-PgUp
    -, 1-Del, 2-End, 3-PgDn
    +, 0-Ins, Up Arrow, .-Del
    Ctrl, Left Arrow, Down Arrow, Right Arrow

    You can take a look if you really want to.

    --
    How is the Riemann zeta function like Trump rallies? Both have an endless number of trivial zeros.
    1. Re:Make it MORE important, not less. by IcyWolfy · · Score: 1

      In other layouts it does different things.
      Swiss German and Czech; they have four states
      NONE; SHIFT; CAPS; CAPS-SHIFT.
      shift ü = è
      CAPS ON: Shift-Ü = È

      Czech: The number row is actually all letters. ; to get the numbers 1234567890; you have to use shift.
      Caps Lock: the top row are now uppercased; shift still gets you the numbers.

      In some non-latin based layouts:
      Caps-Lock toggles between national script, and latin script (so you can say, type in a URL, or otherwise use the internet that demands usernames be a-z when the letters a-z don't even exist on the keyboard....; people in these markets often allow usernames, passwords, etc in local script; rather than "english letters")

    2. Re:Make it MORE important, not less. by Mal-2 · · Score: 1

      In other layouts it does different things.
      Swiss German and Czech; they have four states
      NONE; SHIFT; CAPS; CAPS-SHIFT.
      shift ü = è
      CAPS ON: Shift-Ü = È

      Microsoft Keyboard Layout Creator calls this "SGCAP", presumably meaning "Swiss German CapsLock". For a while I was using this to access the lookalike characters, but that was before I started using AutoHotkey. I never used it for the entry of characters with accents and other diacritical marks, as I feel that's a role better served by dead keys and modifiers. (I don't normally bother on "rôle", but I do on "résumé" and "façade", and on names.)

      So yeah, this is probably the primary reason CapsLock hasn't gone anywhere – various regional mappings have already addressed this problem, in a variety of ways. Those devoted to English never did, because it simply isn't necessary. This ties right back into my answer, which is to put it to better use like much of the non-English world does.

      --
      How is the Riemann zeta function like Trump rallies? Both have an endless number of trivial zeros.
  80. Re:The Microsoft key!!!! I've never used it...ever by TWX · · Score: 1

    They're only useful because everyone got lazy about the existing modifier keys. We already had two in the form of Control and Alternate, and yet we still introduced another for Apple (Command/Apple) and two for the PC (Window and Menu).

    --
    Do not look into laser with remaining eye.
  81. One Shift Key to rule them all... by DarthVain · · Score: 1

    First of all how am I supposed to yell at people online without the capslock key?

    Second, I think most people use the right mouse button all the time regardless of whatever your stupid study says.

    However on point for this, it might save some IT calls where people are trying to enter in their passwords, and do not notice that capslock is on... Happens so often that many applications have a built in reminder to check that it is indeed off when trying to enter passwords...

  82. Re:The Microsoft key!!!! I've never used it...ever by TWX · · Score: 1

    When we played the original DOS-based DOOM under Windows 95 in order to have the network stack we called them "lamer keys". I had two keyboards that I'd pried off the keys and made my own covers to blank them out.

    --
    Do not look into laser with remaining eye.
  83. Another dangerous key by Anonymous Coward · · Score: 0

    is the apostrophe. So many people can't tell the difference between its and it's, or worse, how to pluralize correctly.

    I think the apostrophe key should be earned.

  84. Use alternate keyboard mapping by koinu · · Score: 1

    I altered the keymap so all keys are more useful. Caps lock is escape which I need quite frequently in vim. I have 105 keys (physical German layout) and I would like to have more keys, not less.

  85. I remap mine by jomcty · · Score: 1

    I remap my CapsLock key to be a Control key; and RShift-CapsLock to invoke the original caps-lock function.

  86. Looking at my 4000 pro: by brokenin2 · · Score: 1

    I think I would remove:
    caps lock (standard)
    print screen (standard)
    scroll lock (standard)
    the entire numeric keypad (standard)
    insert (standard)

    alternate functions for the "F" keys, so they're just F1-F12 again (non-standard)
    F-lock key (non-standard)
    web/Home (non-standard)
    search (non-standard)
    mail (non-standard)
    1,2,3,4,5,Calculator (non-standard)
    zoom (non-standard)
    My favorites (non-standard)

    I would keep:
    mute, volume up, volume down, play/pause (non-standard) ...and add "next track" and "previous track"

    I would keep "back" and "forward" ...and add a joystick where "zoom" is that covers scroll up, down, left and right

    I would have to look at what's left to figure out what would go where caps-lock was.. maybe home and end.
    Then you would just have delete, page up and page down above the arrows, and media keys crammed in above that..

    Much smaller keyboard and still great for my purposes without cramming things together and making it cramped.

    If someone wants a numeric keypad, I would just buy a separate device.

    Yeah.. I'm so going to have to get myself something that's 100% customizable if I'm ever going to get close to what I want. The problem is I really like the physical layout of the main keys on the 4000 pro.... Split keyboard with a slight seagull like affect.. Everything feels like it's in its most natural position.

  87. We should replace the key with... by gurps_npc · · Score: 1

    a ".com" key. Which shifts to .org and alts to .net and I wouldn't mind a button that sends focus tot he url address bar and another to the search bar.

    --
    excitingthingstodo.blogspot.com
    1. Re:We should replace the key with... by Anonymous Coward · · Score: 0

      No need. When you finish typing a domain name in the address bar, pressing Ctrl+Enter automatically attaches a .com suffix in all major browsers (Firefox/Chrome/IE).

      Firefox additionally supports Shift+Enter for .net, and Ctrl+Shift+Enter for .org.

      Ctrl+L moves focus to the address bar (Firefox/Chrome).
      Ctrl+K moves focus to the search bar (Firefox).

    2. Re:We should replace the key with... by gurps_npc · · Score: 1
      What makes you think I was talking about the address bar? I want to be able to use that when I type in my email/login id into fields.

      And the existence of those control characters prove we need the character key.

      What - you think that something that we DON'T already have a control character for sure get it's own key???

      --
      excitingthingstodo.blogspot.com
  88. Proper location for ctrl key by Anonymous Coward · · Score: 0

    It seems like its time to RETURN to the standard keyboard layout, with the control key on the left where the caps-lock key got moved, and the caps loc off in the lower left corner (where ctrl got relegated). That WAS the standard key layout used by everybody (including Apple with the AppleII) before IBM got into the business and screwed everything up...

  89. Flawed? by wardrich86 · · Score: 1

    The caps lock only needs to be pressed twice per string of text. Once to turn it on, once to turn it off. That means, I could hit the caps lock and type out 500 E's. That would be +500 E, but only +2 for capslock. If he really wants to bicker, he should have complained about the Scroll Lock. That button is on the verge of death.

  90. Re:The Microsoft key!!!! I've never used it...ever by TheRaven64 · · Score: 5, Informative

    Control and alternate already have well-defined meanings. Control is for entering control characters, alternate is for entering alternate characters. OS X uses both. UNIX keyboards used to come with a meta key, but this fell out of use as software was written for PCs without such a key. On OS X, the usage of the command key is inherited from classic MacOS: It's the modifier that you hold for commands. This means that the OS X terminal is the only graphical terminal that I've come across that doesn't suck for copy and paste. On OS X, every single program including the terminal uses command-C for copy and command-V for paste. The terminal is therefore free to use control-C for sending the character that they terminal recognises for SIGINT. Windows overloaded the alternate key for opening menus, which meant that it is no longer a convenient key if you need to enter non-ASCII characters (for example, a Euro symbol or a letter with an accent, which are both easy to enter on a Mac). Most desktop environments for Linux inherited a load of bad UI design from Windows before adding their own mistakes.

    --
    I am TheRaven on Soylent News
  91. Re:The Microsoft key!!!! I've never used it...ever by Anonymous Coward · · Score: 0

    You'll sometimes hear it referred to as the "Super Key" in Linux circles and it can be a useful extra modifier for specific tasks. I have to use Windows on my work machine where I use it to get the run dialog in a single-handed key combo or, on the rarest occasions I use it, an explorer window. I also have super+space mapped to run launchy.

  92. Re:The Microsoft key!!!! I've never used it...ever by TheRaven64 · · Score: 1

    Windows-R brings up the run dialog, which will autocomplete program names and used to be the fastest way of launching programs on Windows (it's well over 10 years since I last regularly used Windows, so I don't know if this has changed). Windows-D showed the desktop and Windows-F the system find dialog. All of these were pretty useful, but the key was still quite under-utilised.

    --
    I am TheRaven on Soylent News
  93. While we are at it. by Anonymous Coward · · Score: 0

    Why is the brake pedal so big? I hardly ever use it. Mostly just the gas pedal. Maybe we should move it, and make it smaller.

    CAPTCHA: CONTROLS

  94. Lenovo X1 Carbon Gen 2 - No Caps Lock by Anonymous Coward · · Score: 0

    Despite some other weirdness the second generation Lenovo X1 Carbon doesn't have a caps lock key. Instead you hit shift twice and an LED on the shift button lights up. They said this was to match the behavior on mobile devices. I rather like it. They put home and end in it's place, which I always look for in the other side of the keyboard. I wish they'd do away with caps lock on their other keyboards, but maybe rethink what they replace it with, maybe an 'any' key?

    1. Re:Lenovo X1 Carbon Gen 2 - No Caps Lock by IcyWolfy · · Score: 1

      How would that work in the Swiss (German), or Czech markets?
      As Shift and Caps are different states.
      Shift-ü = è
      CAPS; shift-Ü = È
      would that mean, to type Èt, one would have to do [shift, shift, shift-ü, shift, shift], t ?
      And for that matter, a Ü would be what [shift, shift, ü, shift shift]
      I hope they didn't do that home/end thing in the European markets.

    2. Re:Lenovo X1 Carbon Gen 2 - No Caps Lock by IcyWolfy · · Score: 1

      And apparently, that's what they went with
      http://forum.projektneptun.ch/...

  95. Re:The Microsoft key!!!! I've never used it...ever by serviscope_minor · · Score: 2

    I never understood the hate for the Windows key. Well, sure as a youthful Linux user I was snobbish when it was introduced, but after mapping it to something useful I started disliking keyboards without it.

    What I'd really like is some simple and commonly available system that lets you re-map or disable any key on the keyboard at will.

    xmodmap works well for basic key remapping. If you want to do funky stuff like make it per-keyboard instead of global (useful for UK/US keyboard differences for example) then setxkbmap is really handy.

    You can pseudo-disable a key by mapping it to None. It has minor effects, like triggering a key event but it will never do anything.

    Of course that only works on X based systems, but it's really handy.

    --
    SJW n. One who posts facts.
  96. Caps Lock use by eldorin · · Score: 1

    There are still places where the use of Caps is mandatory and used on a daily basis. I work for a telephone company in Alaska and all the phone switches back end access requires all the commands to be entered in Caps. True, the use is rare and limited, but there is still a use for the Caps Lock.

    1. Re:Caps Lock use by IcyWolfy · · Score: 1

      Use of the caps lock is very common in Switzerland, nad Czech Republic.
      Because in many layouts SHIFT != CAPS

      Swiss German and Czech; they have four states
      NONE; SHIFT; CAPS; CAPS-SHIFT.
      shift ü = è
      CAPS ON: Shift-Ü = È

      Czech: The number row is actually all letters. ; to get the numbers 1234567890; you have to use shift.
      Caps Lock: the top row are now uppercased; shift still gets you the numbers.

      Some non-latin layouts use CAPS to toggle between national characters, and latin-letters. (so caps lock on, gives lowercase latin-alpha); caps-lock off gives you lower-case cyrillic.

  97. I remove it by Verdatum · · Score: 1

    Every new keyboard I use, first thing I do is pluck the capslock key out so I don't hit it by mistake. I tape it to the back in case anyone else ever needs it. I basically never miss it.

  98. Re: My Pet Peeves (recent Windows laptop keyboards by TheRaven64 · · Score: 1

    When I'm reading a document, I'll do two-fingered scrolling on the trackpad to navigate. I only use home/end and page up/down when I'm typing, to navigate within the document, and then I already have both of my hands on the keyboard. The function key can be pressed with the knuckle of the little finger of the left hand, so is pretty easy to hit.

    --
    I am TheRaven on Soylent News
  99. EASY!! by Anonymous Coward · · Score: 0

    i JUST REMOVED MINE FROM THE KEYBOARD. NOT SO PROMINENT ANYMORE.
                                                                                                                                                                 

  100. Remapping Caps Lock On OSX by LihTox · · Score: 2

    It's actually really easy to turn Caps Lock into Control (or Command) on OSX; it's in the Keyboard preference panel, under the button "Modifier Keys".

  101. Re:The Microsoft key!!!! I've never used it...ever by Kiaser+Zohsay · · Score: 3, Informative

    You will not take my context menu key until you pry it from my cold dead fingers. I use that thing constantly. Maybe I use applications that hide an inordinate amount of functionality under the context menu (including my own). I really try to avoid moving my hands from the keyboard to the mouse (and back) until I absolutely have to, so I'm all about keyboard shortcuts. The context menu key is a handy one, for me at least.

    --
    I am not your blowing wind, I am the lightning.
  102. Shrink Caps Lock, increase shift. by GoJays · · Score: 1

    In Canada, some laptops ship with French/English Keyboards. For some reason, hardware manufactures thought it was ok to shrink the left shift key to half of the normal size. As a touch typist this drives me insane as I end up typing a backslash instead of hitting shift for an uppercase letter. If anything they should use backslash just to the left of the "a" and shrink caps lock and not shift.

  103. Re:The Microsoft key!!!! I've never used it...ever by Anonymous Coward · · Score: 0

    What I'd really like is some simple and commonly available system that lets you re-map or disable any key on the keyboard at will. That's another problem that I thought would have been fixed by now, but it never really seems to ever become very practical.

    With Windows, you can simply use a small freeware tool called 'KeyTweak' for re-mapping/disabling keys. It will just change some registry entries, so you only need to run it when you want to change the key mappings. It's working from Win NT4.0 to Windows 8.1 (I haven't tested it with Windows 10 yet). I've used it on a couple of PCs to disable the Windows key, and to remap its functionality to the scroll-lock key instead.

  104. Re:The Microsoft key!!!! I've never used it...ever by Kiaser+Zohsay · · Score: 1

    Windows+L sounds pretty handy. I didn't know that one. You can also lock with Ctrl-Alt-Del and then Alt-K, to avoid having to grab the mouse.

    --
    I am not your blowing wind, I am the lightning.
  105. Change the Caps Lock to Enter by Anonymous Coward · · Score: 0

    It would be handy to have an Enter key on the left side, so that when I am using only my left hand (maybe my right hand is operating the mouse), I can easily hit Enter. It is a little silly that there are two Enter keys on the right, and none on the left.

  106. Re:The Microsoft key!!!! I've never used it...ever by mattventura · · Score: 5, Informative

    On top of opening the start menu, there's tons of Win-letter combinations. Win-R is Run, Win-E is explorer, Win-D shows the desktop, Win-M minimizes all windows. Win-1,2,n launches the 1st, 2nd, nth program pinned to your taskbar. Win-arrows move windows around on the screen and Win-shift-arrows move windows between different monitors. There's plenty of others that I don't remember. It's actually pretty inconvenient to not have a windows key once you're used to it.

  107. U and I by CresCoJeff · · Score: 1

    My dear, I would put 'U' and 'I' together (I use a right-handed Dvorak)

    Seriously though, I'd recommend ditching caps lock, tab, insert, num lock, home, end, page up, page down, scroll lock, pause/break, and roll the delete and backspace keys into a single delete key. Then make all the remaining ones bigger. I'd also take the damnable Windows logo off the command key and just refer to it as CMD across operating systems.

    1. Re:U and I by OrangeTide · · Score: 1

      I don't need arrow keys, so get rid of those too.

      I use tab key, because it's inconvenient to type space exactly 8 times. (or 4 times or whatever your preference. given that 1080p can comfortably fit 120x54 terminal, using 8 space tabs doesn't seem like a big deal.

      --
      “Common sense is not so common.” — Voltaire
    2. Re:U and I by Teckla · · Score: 1

      Seriously though, I'd recommend ditching caps lock, tab, insert, num lock, home, end, page up, page down, scroll lock, pause/break, and roll the delete and backspace keys into a single delete key.

      As a software developer, I'd be pretty unhappy not having keys dedicated to caps lock, tab, home, end, page up, page down, delete, and backspace.

      I'd also take the damnable Windows logo off the command key and just refer to it as CMD across operating systems.

      I like this idea.

  108. Re:The Microsoft key!!!! I've never used it...ever by MightyYar · · Score: 1

    I think you need to look at the first Mac keyboard. There was no "control" key. Just the Command and Option keys. The Command key was for keyboard shortcuts and the Option key was to enter special characters (accents, extra symbols, etc). They later added the "Control" key where the caps lock key is typically located now and moved "caps lock" to a tiny button next to the space bar. This was done to be compatible with terminal applications.

    --
    W..w..W - Willy Waterloo washes Warren Wiggins who is washing Waldo Woo.
  109. Re:The Microsoft key!!!! I've never used it...ever by Anonymous Coward · · Score: 0

    Indeed. Maybe it is a useful key to have, but it is in a terrible location. I fear the day that using it becomes a requirement to use a computer, as I will no longer be able to rip it off of every keyboard I own.

  110. Better than the Menu key by OrangeTide · · Score: 1

    I use my caps lock as much as the windows key / command key / super key, and both I use more than the other windows key (menu key?)

    --
    “Common sense is not so common.” — Voltaire
  111. CRUISE CONTROL FOR COOL by bistromath007 · · Score: 1

    But really though, I use it all the time. It's good for acronyms for a start.

    I notice you're not talking about getting rid of RMB. That would obviously be stupid. People who know what they're doing and do alot of it get a great deal out of 0.1% use cases.

  112. Back in the day... by rossdee · · Score: 1

    Back in the day the CAPSLock key used to have a red LED on it that was lit when it was on.
    Of course that made the keyboards more expensive to produce - they cost 10 x what they do today.
    And the key next to the A key was the control key

  113. Re:The Microsoft key!!!! I've never used it...ever by hackwrench · · Score: 1

    The Windows key does nothing on Windows 3.11

  114. Re:The Microsoft key!!!! I've never used it...ever by ArhcAngel · · Score: 1

    I never understood the hate for the Windows key.

    Then you've never played a FPS on a PC. It would be one thing if the key could be disabled while you are doing a specific task but short of editing the registry it just sits there...mocking you; Waiting for just the right moment when you line up your shot and BAM your looking at the desktop.

    --
    "A person is smart. People are dumb, panicky dangerous animals and you know it." - K
  115. Require Shift+CapsLock instead by Anonymous Coward · · Score: 1

    You want to fix the "problem", require an explicit shift modifier. (Or some other layout appropriate modifier) It even makes conceptual sense. Use shift to uppercase a letter. Use shift+lock to lock in that caps.

    Simple. Problem solved. You're welcome, Inter Net.

  116. Re:The Microsoft key!!!! I've never used it...ever by houghi · · Score: 2

    It depends per user. Coming from Linux, I use keys a lot more than other people do. https://en.wikipedia.org/wiki/...

    That said, I just bought a Roccat Tyon and am using 12 buttons on a regular basis. Note: I am not a gamer.

    Having programable buttons on a mouse is great. As a keyboard I have a Happy Hacker keyboard. So no easily accesible CapsLock there.

    --
    Don't fight for your country, if your country does not fight for you.
  117. Re:The Microsoft key!!!! I've never used it...ever by radarskiy · · Score: 1

    Are you telling me you have noting assigned to super or hyper? Do you have *anything* in your modmap?

    Kids these days!

  118. Capital Umlauts by Anonymous Coward · · Score: 0

    Try typing Ä or Ü or È on a swiss-german keyboard without Capslock.
    Believe it or not there are more letters than 7-bit ASCII and there are more keyboard layouts than ANSI.

  119. For Linux: Remap CapsLock to Compose by houghi · · Score: 3, Interesting

    Just remap your Caps-Lock key to the Compose key.
    http://fsymbols.com/keyboard/l...

    --
    Don't fight for your country, if your country does not fight for you.
  120. Swap Caps Lock and Escape by sdxxx · · Score: 2

    I love the Caps Lock key. I just happen to swap it with Escape, which is very handy when using vi or many other programs (even bash, where some key combinations use Escape). I was very sad when Google got rid of it on some early Chromebooks. I think it's great that such a prime piece of keyboard real estate is unused, because it let's people repurpose it for whatever they want.

  121. Another Function Key please by xx_chris · · Score: 1

    Would that the Caps Lock Key were repurposed as another Function Key.

    As I type this on my MacBook Pro, I notice that ALL of the Function Keys are overloaded. What is so special about the Caps Lock Key that it wouldn't be overloaded? I usually end up disabling it: System Preferences>Keyboard>Keyboard>Modifiers Keys>Caps Lock>No Action. At least this prevents me from accidentally locking my caps which I NEVER EVER want to do.

  122. Drinking Coffee by kreuzotter · · Score: 1

    The caps lock key is necessary when I have to type a password with upper case characters while holding my coffee mug. Don't get rid of it.

  123. Nothing to see here, move along by Anonymous Coward · · Score: 0

    On modern keyboards, the CAPSLOCK key holds the KeyIntercept&Reporting circuit inserted by the NSA.

    Yours,

    ES

  124. Re:It's IBM's fault. Everyone copied the PC. by Anonymous Coward · · Score: 5, Informative

    "Sometime around 1985"? Actually a couple of years before that.

    Listen' up, young uns, and I'll give you some history.

    The computer world until the early 1980s was largely divided between the IBM EBCDIC/coax block mode terminals and ASCII/serial.

    IBM block-mode (3278) keyboards had no CTRL key, and two return keys - one for typical carriage return when entering text, and the ENTER key to signal that all fields on the block-mode screen were filled and to transmit them. All the ASCII stuff including most of the original personal computers had the CTRL key in that position, or required a separate ASCII terminal. Some early ASCII terminals didn't even have backspace or return keys - you used CTRL-H and CTLM-M. Still works in many applications. Us old-timers were accustomed to it and could keep our hands in the touch typing position. Find your nearest proficient, old-timer vi user for a demo of how fast you can edit code with a properly placed CTRL key.

    Then IBM came out with their PC. They had to add a CTRL key because lots of applications used it - Wordstar for instance. But they also wanted to sell it into the corporate IBM corporate customers. So they left the caps lock key where IBM terminal users expected it to be. And they tucked the CTRL key down below the shift key.

    A truly wretched layout. But the IBM PC was a big hit, and everyone rushed to copy it.

    You can still buy keyboards with a DIP switch to swap the CTRL and Caps Lock keys.

  125. Tiny Arrow Keys? by SeanDanielWeeks · · Score: 1

    I'm tired of every other laptop having arrow keys that are so tiny and weak that it makes software development impossible. These, along with the Home and End buttons are my bread & butter. So who here knows the old alternative for Ctrl-C Ctrl-V that still works in almost every application? I like it even more than Ctrl-C/V.

    1. Re:Tiny Arrow Keys? by jonathan.e.bell · · Score: 1

      I was actually using it this Monday to test a data entry screen I just made. Sometimes ctrl+ins/shift+ins is a good way to keep from wearing your hands out when you have a lot to move. Either way I like the variety, it diminishes RMS (whoop, used capsloc there)

  126. Doesn't work. by Anonymous Coward · · Score: 0

    Like the right mouse button (doesn't exist), the Caps Lock key isn't used on Mac devices because it doesn't work. For some reason, in order to activate or deactivate the capslock function it requires several sub-seconds to activate. Simple key-presses won't register its function. Whenever I need this function I find I need to look for the light. It's not a huge problem, but it usually nullify the advantage over just holding the shift key.

  127. Re:The Microsoft key!!!! I've never used it...ever by dissy · · Score: 1

    I started using computers regularly in the time before the "Windows" key was added to the keyboard. So, when it appeared, I refused to use it, out of pique.

    I have to bring that statement into question.

    If you really did use computers back in the day before Windows, you would already know that key - called Super - has existed since the 80s and was first removed on the IBM 8800 computer, which it remained missing until Microsoft requested keyboard manufacturers to put the Super key back and stick their logo on it.

    Unix systems used and still use Super as an extra modifier similar to Hyper, Meta, Alt, AltGr, and Control.
    The classic Macs used it as the "open apple" / command key, which was used for keyboard shortcuts leaving Control free to insert control characters as originally intended.
    Sun had a dedicated key on the left-hand function keys.

    LISP programmers have said they can't live without Meta.
    Even emacs remaps the keycode back in for command shortcuts.

    Personally when the key REappeared I was quite happy, as any cheap-o $10 keyboard would have similar functionality to any 104-key keyboard in the past, and no longer commanded higher prices to get.

  128. Re:The Microsoft key!!!! I've never used it...ever by Pseudonymous+Powers · · Score: 1

    Thanks, I may take a look at that. Though I suppose what has most discouraged me from trying key-remappers over the years is the fact that they're all "freeware", and my mind has a filter that automatically translates "freeware" to "download this registry-editing system utility from some scary filesharing site and then run it in administrator mode, we promise nothing bad will happen, heh heh". I used to think I could avoid being pwned by malware by only downloading such things from Sourceforge, but in our modern age of "special offers", that seems to no longer be the case.

  129. People with disabilities by Anonymous Coward · · Score: 0

    This made me think of a large subset of users who probably like caps lock - people with various disabilities who may find it hard or impossible to press two keys at once.

    When drawing conclusions from statistics, one must think carefully about where those stats come from. Developers would do good to remember that not all computer users are exactly like them.

    1. Re:People with disabilities by IcyWolfy · · Score: 1

      Then there are all the keyboard layouts where
      CAPS != SHIFT.
      Giving 4 states
      NONE (lowercase)
      SHIFT (alternate characters, lowercase)
      CAPS (uppercase)
      CAPS SHIFT (alternate characters, uppercase)

      See Czech, and Swiss German for two common examples.
      in Czech:
      shift-ú = /
      CAPS, ú = Ú
      CAPS, Shift-ú = /
      á í é
      SHIFT: 8 9 0
      CAPS: Á Í É
      CAPS SHIFT: 8 9 0

  130. No. It's useful. by Cyberax · · Score: 2

    I'm using CapsLock as a layout switching key, lots of other people use it as a second 'esc'.

    And why would you remove it, anyway?

  131. CAPs Lock position by Anonymous Coward · · Score: 0

    It used to be in the "right" location, where the control key is;
    likewise, the control key used to be where the CAPs lock key is.
    Thanks Obama!

  132. All Caps is Used a Lot in Programming by Ketorin · · Score: 1

    As a person who uses C-preprocessor extensively, I need my capslock key.

    Jokes aside, I often program these industrial robots where basically every variable is a macro-define on bare memory address. The macro system doesn't know about tokens, but thankfully thinks case matters, so I use all caps on my variables to reduce name clashes.

  133. For people with only one hand for typing? by NeoMorphy · · Score: 1

    I went six months without the use of my left hand because of an injury. During that time I used the "caps lock" key extensively. I know I'm not the only one who had to use it at some point in time. Some people will always need access to it.

    Are you seriously hoping to make a change that will mess with the unfortunate because YOU don't require it? Maybe they should spend extra to get a special keyboard after the "caps lock" is removed? Was there a study done to see how many people use handicap ramps?

  134. Failure by Anonymous Coward · · Score: 0

    So we can fuck up, duh.

  135. I use Caps Lock all the time... by sudden.zero · · Score: 1

    ...Whenever I am programming it is very useful when creating Constant variables as the naming convention for such variables is all caps. I wonder if any surveys of key presses takes into account that caps lock, once pressed, is in use until it's pressed again. Therefore all keys pressed after Caps Lock is pressed, until it's pressed again, should also be counted in usage statistics (imho).

    1. Re:I use Caps Lock all the time... by eyenot · · Score: 1

      Really?

      You stop coding, press Capslock, resume coding, halt again to press Capslock again, and you think that's more efficient than keeping one pinky finger on Shift?

      --
      "Stratigraphically the origin of agriculture and thermonuclear destruction will appear essentially simultaneous" -- Lee
    2. Re:I use Caps Lock all the time... by Anonymous Coward · · Score: 0

      Um, it doesn't take any more effort to press Caps Lock than it does to press shift. In fact it takes less effort to press Caps Lock once than to press and hold shift. When I am creating Constants I typically have a class called constants, and it contains all the constants for the entire package. Using good design principles, design first, then write code, I usually have about 100 plus constants at a time that I am creating. So again yes it is much easier to press Caps Lock type out the 100+ constants, and then press Caps lock again, rather than to hold Shift the entire time.

  136. Re:The Microsoft key!!!! I've never used it...ever by Barefoot+Monkey · · Score: 1

    I find it very useful, but I truly HATE its position on the keyboard.

  137. "Good Enough" by Zcar · · Score: 1

    The problem with reworking keyboard layouts is the current layouts are good enough. Good enough, in that most people have learned to type with them and are familiar with the layouts. Muck about with the layout much at all and there's a significant cost involved in adopting the new layout as these people's productivity decreases as their typing speeds decrease while adjusting to the new layout.

    I don't think there's another keyboard layout out there (currently designed or possible) sufficiently better, objectively, to over come this.

  138. Re:The Microsoft key!!!! I've never used it...ever by Barefoot+Monkey · · Score: 1

    Yes! The context menu button is the best part of the 104 key layout. I use it very often, and it would be terrible to see it go.

  139. If it ain't broke, don't fix it. by Anonymous Coward · · Score: 0

    So what if the Caps Lock key gets pressed only 0.1% of the time (according to your silly analytics)?

    In fact, the keyboard I'm now using has a Calculator button, and volume control buttons. Do they disgust you?

    I swear that some people are making up stupid crap as real work in order to justify their own insubstantial existence.

  140. clickbaity clickbait is clickbait by Anonymous Coward · · Score: 0

    another hipsteriffic unreadable blogsite spammer

  141. Danger keys by eyenot · · Score: 1

    I categorize what I consider "danger keys" and have my endless bouts with them. A "danger key" is any key that carries a heavy burden of control over system ("heavy danger") or performance ("light danger").

    Heavy danger keys include F1, F3, Escape, Break, and Delete.

    Light danger keys include Capslock, F12, Insert, Shift, and Numlock.

    Some of these dangers are clearly the fault of system developers at Microsoft. F1 didn't have to be chosen as a key that will slow your system down trying to open up Windows' top-heavy and useless help system. F3 didn't have to be chosen as a key that will slow your system down trying to open up Windows' top-heavy and useless search window. So those don't have to be danger keys, but they are. Whenever I accidentally press one of them I kick myself.

    But other keys like Delete are hard to blame anyone for. Delete always means "remove something". If you aren't careful of where your focus is, that "something" could be a valuable file or one character out of a password.

    The Break key is a holdover from pre-threaded computing. Windows users don't need it and CLI users probably don't want to ever have to press it, and certainly don't want to press it accidentally.

    The Escape key is one I really hate. It's close to a key I actually use a lot, the Tilde/Gravemark. And because its location is more or less considered remote, programmers feel safe in continuing to make it a dangerous key to press. There should never be a key that I can accidentally press that will eliminate all the work I'm trying to do.

    Capslock poses a threat to performance. I often type while looking at a paper or book, I'm trained to type quickly and accurately and I don't always look at the screen. There's nothing worse than looking up and seeing reversed case for paragraphs. Luckily I use an editor that has a "reverse case" feature, but it still hurts performance to have to go back and correct the error even with an instant fix like that. It hurts performance even if you catch it when it happens, pause, and click it again to go back.

    F12 hurts performance because it is almost always associated with "full-screen view". Not all apps come out of full-screen well behaved. Hell, not all apps go into full-screen well behaved. Some apps lose some functionality in full-screen. Many apps lose important things like menu bars, status bars, and scroll bars. Many apps, when in full-screen, force themselves to be "always on top" which effectively robs you of your ability to change system focus. I prefer apps that put something heavy like full-screen view behind a two-key combination like Alt+Enter. I'd prefer if all programmers adopted the Alt+Enter combo for full-screen, because sometimes full-screen is something I enjoy over-using at certain moments, but it's not something I want to accidentally happen when I'm trying to type simple math or break a sentence with an emdash, or write an underscore.

    Insert hurts performance because most text editors allow a single press of Insert to immediately change whether you're in over-write or insert mode. It doesn't get used for much else in my life but I feel like Shift+Insert would be a better match for something like that. I'd prefer Insert did something more like delete does, and insert a space after the carat. I could deal with that -- at the end of my day I'd just select and delete all the built-up trailing space at the end of my document. Most apps these days don't even effectively give you any sign of what mode you're in, so it's not like you have any way of knowing until you see something going horribly wrong. Go ahead and try it right now: hit "insert" and see if your carat changes to give you a visual cue of what mode you're in. It probably doesn't.

    I'm also a fan of faint, special characters at the ends of lines showing whether there's a carriage return, a linefeed or both, but we can't have everything.

    Shift hurts performance because of one thing and one thing only: "sticky keys". I often hesitate before forming a sentence

    --
    "Stratigraphically the origin of agriculture and thermonuclear destruction will appear essentially simultaneous" -- Lee
    1. Re:Danger keys by IcyWolfy · · Score: 1

      Caps Lock assists in performance for all the language-specific layouts that rely on it to enter characters. (In these layouts, CAPS state, != SHIFT state; and thus yields a new CAPS+SHIFT state. See: Swiss German, Czech, ]

      Others just use it to switch between national language, and latin characters (so caps is more a latin-lock, than caps lock). Which is becoming more required if one wants to type on the Internet which seems to assume that most people have the letters a-z on their keyboard....

    2. Re:Danger keys by Megane · · Score: 1

      At work I have to use Windows. (At home I use a MacBook Pro so there are basically no danger keys.) While currently I only have the keycaps for F1 and INS removed, in the past I have also pulled F12, caps lock, and the Windows/menu keys. I just leave them in a small plastic bag next to the keyboard.

      I don't know how you missed the Windows menu key, since it yanks focus away from your current program if it gets tapped by accident, then you have to waste time getting back to normal. It's almost as bad as F1.

      The insert key is bad if you have an editor that tries to implement "overwrite mode" in a mouse-based text editor, which is pretty silly. It can also rarely get engaged by pressing the keypad zero key under certain conditions. (like with the shift key hald down, I think)

      Actually there is one important danger key with OS X. I don't know why UI implementers insist on being able to do all sorts of file manipulation functions in contexts where you are supposed to be selecting or viewing a file (instead of, you know, switching to the file manager program), but they do. Windows goes out of its way to support moving and deleting files when you need to select a file, and various OS X programs insist on deleting a file whenever you hit command-delete (aka command-backspace).

      The problem is that command-plus and command-minus are used for zoom in and out. (Very useful in the Preview.app image viewer.) Be off by one key when zooming in, and your file is suddenly moved to the trash, and its window (if it has one) closes. In a file viewer program. WITH NO UNDO AVAILABLE. WTF. Now you get to fish it out and put it back where it belongs. At least it also insists on playing a (non-configurable!) sound when it does that, so you can have some idea that something has happened.

      --
      #naabhaprzrag, #sverubfr-000, #agi-fcbafberq, negvpyr[pynff*=' negvpyr-ary-'] { qvfcynl: abar !vzcbegnag; }
  142. Re:The Microsoft key!!!! I've never used it...ever by Barefoot+Monkey · · Score: 1

    Pressing the Windows logo key is equivalent to Ctrl+Esc - it opens the "start" menu on Windows 95 and later operating systems. It also functions as a modifier key which is all-but-guaranteed not to have a meaning imposed by specific applications (unlike Ctrl and Alt, which apps all use for internal shortcuts) so you can safely use it for global hotkeys. Windows has several of these built-in - for example, you can press Win+E to launch Explorer, or Win+R to open the Run dialog, Win+D to hide all windows to expose the desktop, Win+T to give keyboard focus to the taskbar (this is extremely useful, but not widely-known) or Win+L to lock your computer.

    It's a handy key, but is horribly-positioned on the keyboard - especially the one on the left, and especially when playing games.

  143. You have obviously never supported Oracle users by Anonymous Coward · · Score: 0

    Anyone who has every supported customer service/callcenter/sales/service reps that have to enter data into Oracle can tell you that the CapsLock key gets used daily and would result in an "unacceptable" work environment if removed. Obviously it would be better if such systems just default to accepting all text entry as being in caps if that's what the company desires, but that would require hiring another 10,000-20,000 Indian programmers for 6 years to get accomplished, per company.

  144. Developers develop in Chrome? by Anonymous Coward · · Score: 0

    What I don't understand is how they conclude that managers type more and developers type less? They used a chrome plug in... the only thing they can conclude is that manager surf and chat more than developers...

  145. 0.01% of purposeful keypresses by Art3x · · Score: 1

    I don't always use the Caps Lock key, but when I do, it's usually on accident.

    On my computer at work, I got so fed up that I pried off the Caps Lock key. I also pried off the Insert key, a key I never press on purpose. I was much happier.

  146. Popularity vs usefulness by Dcnjoe60 · · Score: 1

    Of course, checking how often Mac users use the right mouse button would really skew things, would it not? Besides, popularity and usefulness are not the same thing. If a two men were standing on a street corner handing out money and one was handing out free $20s while the other was handing out free $10s, which would be more popular? Probably the one giving out $20s. Does that mean the $10 bill isn't useful?

    The reality is that there are some very good use cases for the caps-lock (as others have pointed out). If it isn't hurting anything where it is, then why move it? What other key would you put there that you would want to hit with your pinky to do something else, that most people would find as a useful improvement? Right now if I accidentally hit the caps lock, I get capital letters -- a nuisance but not terrible. What if you replace it with the ctrl or alt key as some have suggested? There could be far worse ramifications.

    Regardless, popularity does not dictate usefulness. Chances are, you will never have to use the flotation device on an airplane or the oxygen max. Based on frequency of use, they must not be very popular. However, for the right user case, they are very useful.

  147. Re: The Microsoft key!!!! I've never used it...eve by Anonymous Coward · · Score: 0

    I like to open folders with win-e, alt-d, type path. I do it very often.

  148. Scroll Lock/FreeBSD and Sun Keyboards by PincushionMan · · Score: 1

    I do! The FreeBSD terminal uses a Scroll Lock tap to freeze the screen so that you can go back and read those make or gcc messages or warnings you just missed with the arrow keys. Another press of Scroll Lock returns you back to your prompt (or output, if you are still processing). LED is also usful to tell you what status you are in. Works great ...

    Until you put your server on a KVM that uses Scroll Lock to select the current server or skip to the next server. So, do those Mac keyboards not have Scroll Lock, Break, and Print Screen? Other than those users using Greenshot or Gadwin ScreenPrint, how could they be using those keys...

    Ah, I remember now - those are F13, F14, and F15. Except that the F-keys are hidden under other items like brightness up/down, volume up/down, screen mirror/extend and so on. So, why didn't researcher note those?

    As for SUN keyboard layouts (USB variant plugged into Windows 7) - I like the Control Key placement(where caps lock is now). Escape is acceptable (replaces tilde & grace accent key). But that Backspace key! What were they smoking!
    Sun Hardware Designer 1: "Most of Sun terminal app users use Ctrl-H and DEL anyway, so lets make the Backspace key the size of every other key, and put it UNDER the BackSlash key. So when a Windows user users our keyboard, every time he goes for BackSlash, he'll hit Backspace instead!"
    Sun Hardware Designer 2: "That's great boss, my idea is to switch the position of the Super and Alt keys. Lets also shrink that BackSlash down and put a tilde/grave key there, too!"
    Sun Hardware Designer 1: "Splendid, we'll keep people locked into using our servers forever because our design is so superior!"

    Tongue firmly in cheek there, for those not getting it. I do like Caps Lock swtiched with Ctrl, though. That's very nice, and really is superior. I just wish those other keys weren't moved about. For those wondering what generation, there's a tiny Sun Sparc 4m that this is supposed to go with. The USB mouse doesn't work with Windows - maybe it needs a reflective pad?, but the keyboard works great.

  149. bad'uns by Anonymous Coward · · Score: 0

    i use right mouse click constantly and have my own ideas about people who've never seen a contextual menu.

  150. :/ mah key mang by bobmajdakjr · · Score: 1

    I depend on the caps lock key - and not just for being cool. I tap the shit out of that key while coding anything like constants that need 3+ big letters in a row. Ain't nobody got time for Shift Dancing long consts.

  151. Happy Hacking Keyboards Again by TechyImmigrant · · Score: 1

    My Happy Hacking Professional 2 keyboard has a control key in the place where a caps lock key usually goes.

    --
    I should use this sig to advertise my book ISBN-13 : 978-1501515132.
  152. /. Lameness filter by AnalogDiehard · · Score: 1

    The CAPS LOCK key is there because some posters need to be reminded to TURN IT OFF so they can get past the /. lameness filter.

    --
    Eternity: will that be smoking, or non-smoking? I Corinthians 6:9-10
  153. Re:The Microsoft key!!!! I've never used it...ever by Isca · · Score: 1

    It's still the fastest way in Windows 7, 8 & 10 + all of the server versions.

  154. There's nothing wrong with caps lock by Anonymous Coward · · Score: 0

    They surveyed the keystrokes of 5 entire people and want to draw conclusions?

    There's nothing wrong with caps lock. It's just that there's very little need to type words ALL IN CAPS in normal conversations, email, or even development. Shocking, I know.

  155. So it can be remapped at CTRL by gvanbelle · · Score: 2

    Just like God intended.

  156. Sample Size too small by Anonymous Coward · · Score: 0

    The tested less than 10 people. Caps lock has not been established as the least used key. Took ten people, all using Macs to determine that the keyboard needs a change. LMFAO. You've gotta be effin kidding me.

  157. Re:The Microsoft key!!!! I've never used it...ever by Travis+Mansbridge · · Score: 1

    It's called "command" and the key predates both OS X and even the Windows key.

  158. Tiny, tiny hands. by Etherwalk · · Score: 1

    It's convenient. You might be typing with one hand, for example. Please don't take the caps lock away from me because you want everything to be popular.

    There are two shift keys. Unless you have tiny, tiny hands, you can reach one of them with one hand that also reaches the key you want to shift. It's not even terrible hard--much easier, for example, than a one-octave split on a piano.

  159. Re:The Microsoft key!!!! I've never used it...ever by Anonymous Coward · · Score: 0

    However because copy and past are cmd-C and cmd-V, it means you can still use cntr-C in a terminal and do proper copy past like in every other apple application.

  160. Only for developers: replace numbers with symbols by gnu-sucks · · Score: 1

    Try this one out: remap the upper numeric keys from numbers to the symbols they have above the numbers. When you need a number, hit shift to get the numbers or use the numeric keypad.

    I find it very annoying to hold down shift so often while coding. I almost never use the upper-row numbers as numbers, but I hit a lot of symbols coding in C and C++. I definitely use the symbols more, why do I have to hit shift to get to them?

    Just look at a hunk of your favorite OSS project's code. Are there more numbers or symbols?

    Granted, any facebook/gmail computer user wouldn't get this at all...

  161. As I used to say to my students by Anonymous Coward · · Score: 0

    I'd like to meet whoever decided to put caps lock next to shift and shake him warmly by the throat.

  162. Re:It's IBM's fault. Everyone copied the PC. by Anonymous Coward · · Score: 0

    I'd like to add that IBM wasn't alone. ADDS terminals had a caps lock key too.

    The old ADM terminals had the control key where the caps lock would have been. Apple and Atari copied the ADM layout (I think they used the same keyboard manufacturer) while Commodore had a caps lock (actually shift lock) on their computers.

  163. Microsoft Key - Useful by IcyWolfy · · Score: 2

    The Windows key is pretty damned useful in day-to-day activities: (Not sure which are Windows 8 or newer, but many were in 7 as well )
    I for one make use of:

    Windows - LEFT, Windows - RIGHT : Snap half-screen left / Move to next Monitor;
    Windows - UP, Windows DOWN : Maximize, Minimize
    Windows SHIFT UP, Win-Shift-Down : Maximize/Restore Vertical only. (Width stays the same, only window height maximizes/restores)
    Windows - Print Screen: Screenshot and save to file
    Windows - X : Power Menu (Admin Command Promt, Control Panel, Shutdown/Hibernate/Sleep, etc)
    Windows : Windows 8 Screen (Start typing to search for application to run)
    Windows - L : Lock Screen (I use this at work, not at home)
    Windows - P : Second Monitor Mode (Duplicate, Mirror, Laptop Only, Second Monitor Only)
    Windows - D : Show Desktop (Minimize All) / If you don't need to open a new app, a second press will undo the minimize all
    Windows - SPACE : Keyboard Language Selector (Probably not useful for americans); I use it for Intl Dvorak, US English, JP IME
        Windows - / : IME Recovert (Good for ZH, JP, KR)
    Windows - E : New File Explorer Window
    Windows - R : [ No longer useful - Open RUN box; Windows-SPACE has fully replaced this by allowing full text-search of all installed applications]
    Windows - PAUSE : Bring up System Properties Screen (usually for debugging hardware issues, or seeing stats)
    Windows - 1, 2, 3, 4 : (effectively click) Open/Switch to application pinned on task bar at position 1, 2, 3, 4...
    Windows Shift - 1, 2, 3, 4: (effective shift-click) New instance of pinned task-bar application at specificed location
              [ These two I only use Windows 2, to open my IDE; pretty much everything else I just use Windows + (start typing app name) ]
    Windows - Alt - Enter : Open Windows Media Center

    Alt-Tab : Cycle through open windows
    AltGr-Tab : Use keyboard to cycle through all windows in pop-up window; enter to actually switch. (Apparently, americans can use Ctrl-Alt-Tab for this)

      And there are many more Windows-Key shortcuts that I don't use; or probably don't even know about.

    1. Re:Microsoft Key - Useful by Barefoot+Monkey · · Score: 1

      I use most of those as well. I also assign various Win+Function keys to my media player's global hotkeys, and use AutoHotkey to make Win+Up/Down a bit more to my liking. Incidentally, here's the AutoHotkey script I developed, in case anyone finds it useful.

      ; Disable Win+F1 opening Windows help - have it mute the volume instead
      #F1::Send {Volume_Mute}

      ; Win+F11/F12 control the system volume
      #F11::Send {Volume_Down}
      #F12::Send {Volume_Up}

      ; Win+Up toggles maximise instead of always maximising
      #Up::
      WinGetPos, width, height, , , A
      if ( width < 0 and height < 0) {
              WinRestore, A
      } else {
              WinMaximize, A
      }
      return

      ; Win+Down always minimises, instead of sometimes unmaximising
      #Down::WinMinimize, A

  164. Why is it still there? by argStyopa · · Score: 1

    BECAUSE SOMETIMES YOU JUST NEED TO SHOUT, GODDAMNIT. /lolslashdot "Filter error: Don't use so many caps. It's like YELLING."

    --
    -Styopa
  165. Re:The Microsoft key!!!! I've never used it...ever by dpidcoe · · Score: 1

    I've never really had that problem of hitting it on accident while gaming unless I was really frantic or horribly misaligned my fingers on the keys (at which point I'd be dead anyway so I never saw it as an issue). I had the opposite problem though once I got my G15. I'd use the switch on the keyboard to toggle it off, then forget to turn it on again and hit win+r-->type program name-->enter-->"wtf why is this random program on my desktop launching that's nowhere near what I typed???"

  166. Most convenient key for semi-common actions by IcyWolfy · · Score: 2

    The Windows key is pretty damned useful in day-to-day activities: (Not sure which are Windows 8 or newer, but many were in 7 as well )
    I for one make use of:

    Windows - LEFT, Windows - RIGHT : Snap half-screen left / Move to next Monitor;
    Windows - UP, Windows DOWN : Maximize, Minimize
    Windows SHIFT UP, Win-Shift-Down : Maximize/Restore Vertical only. (Width stays the same, only window height maximizes/restores)
    Windows - Print Screen: Screenshot and save to file
    Windows - X : Power Menu (Admin Command Promt, Control Panel, Shutdown/Hibernate/Sleep, etc)
    Windows : Windows 8 Screen (Start typing to search for application to run)
    Windows - L : Lock Screen (I use this at work, not at home)
    Windows - P : Second Monitor Mode (Duplicate, Mirror, Laptop Only, Second Monitor Only)
    Windows - D : Show Desktop (Minimize All) / If you don't need to open a new app, a second press will undo the minimize all
    Windows - SPACE : Keyboard Language Selector (Probably not useful for americans); I use it for Intl Dvorak, US English, JP IME
        Windows - / : IME Recovert (Good for ZH, JP, KR)
    Windows - E : New File Explorer Window
    Windows - R : [ No longer useful - Open RUN box; Windows-SPACE has fully replaced this by allowing full text-search of all installed applications]
    Windows - PAUSE : Bring up System Properties Screen (usually for debugging hardware issues, or seeing stats)
    Windows - 1, 2, 3, 4 : (effectively click) Open/Switch to application pinned on task bar at position 1, 2, 3, 4...
    Windows Shift - 1, 2, 3, 4: (effective shift-click) New instance of pinned task-bar application at specificed location
              [ These two I only use Windows 2, to open my IDE; pretty much everything else I just use Windows + (start typing app name) ]
    Windows - Alt - Enter : Open Windows Media Center

    Alt-Tab : Cycle through open windows
    AltGr-Tab : Use keyboard to cycle through all windows in pop-up window; enter to actually switch. (Apparently, americans can use Ctrl-Alt-Tab for this)

      And there are many more Windows-Key shortcuts that I don't use; or probably don't even know about.

    Full list of short-cuts apparently at : http://windows.microsoft.com/e...

  167. GRRR by Ted+Stoner · · Score: 1

    HULK HATE CAPS LOCK. ALWAYS HITTING BY MISTAKE! Oh sorry. Hulk hates caps lock. Always hitting by mistake!

    On one IBM laptop I was so exasperated by caps lock that I did a registry hack to effectively nullify the key.

    I used to shake my head at some of the old IBM 3270 mainframe consoles that had a physical rocker switch to convert lower case displayed to upper case. As I recall though, if you were typing in case-sensitive stuff, it would display as upper case but actually the bytes entered would represent the lower case characters (unless you remembered to use shift of course).

  168. Re:The Microsoft key!!!! I've never used it...ever by tehlinux · · Score: 1

    IMHO, it's the alt key.

    --
    Most linux users don't know this, but the man pages were named after Chuck Norris. Chuck Norris fsck'ing hates noobs!
  169. Re:The Microsoft key!!!! I've never used it...ever by Anonymous Coward · · Score: 0

    Damn, I take that back! It's the stupid menu key between right alt and right ctrl. 99.99999% of the time I've hit that was on accident. The other time was just to see what it would do.

  170. Capslock nay, rightclick yay by Anonymous Coward · · Score: 0

    Capslock is one of the few stateful keyboard keys. But apart from some old-fashioned keyboards that had LEDs in the Capslock and Numlock keys, that state is hidden or only shown at a place (top of keyboard, or on screen) far from the key that toggles it. Keys that behave like a switch should look like a switch, where you can tell at a glance whether it's on or off. A control that toggles state without changing its own appearance is just broken UI.

    The right mouse button, on the contrary, is extremely useful. Context menus depend on the object or area covered by the pointer, not on what object might have "focus". Focus is often hard to see, it's also often meaningless, and having to give something focus first in order to interact with is clumsy and error-prone: Clicking on an object to give it focus might already trigger some unintended action. Right-click doesn't require focussing, and context menus are fully discoverable. "What can I do with this thing I'm pointing at" is object-oriented thinking. It's much more specific than "let's browse the menus and toolbars to see what functions this program offers".

  171. Right mouse button by Anonymous Coward · · Score: 0

    From my cold, dead, hands will you take away my right mouse button. A single button mouse was a complete waste. You have to use two hands to access a function(one keyboard, one mouse), if you don't have a right mouse button.

  172. Re:The Microsoft key!!!! I've never used it...ever by Anonymous Coward · · Score: 0

    Only scrubs hit the windows key when playing.

  173. Re:The Microsoft key!!!! I've never used it...ever by elistan · · Score: 1

    Windows overloaded the alternate key for opening menus, which meant that it is no longer a convenient key if you need to enter non-ASCII characters (for example, a Euro symbol or a letter with an accent, which are both easy to enter on a Mac).

    I don't know how it works on a Mac, but entering alternate characters is still easy with Windows, even 8.1. (I haven't tried it on 10.) Rather, I consider it pretty easy. :-) Just hold down the ALT key, type in the four-digit code for the character you want, then release the ALT key and your character will show up. A Euro sign is ALT+0128, for example. â. (That would show up as proper Euro, except this is slashdot. -roll eyes-) Doesn't matter if numlock is on or off, doesn't matter what you might be doing with a menu at the time.

  174. A relic of the typewriter era. by Anonymous Coward · · Score: 0

    The position of the Tab, Shift, and Caps Lock are a relic of the typewriter era. Keyboard makers didn't bother changing it for the mundane reason that it "just works" or, to put it another way: "if it isn't broken, don't fix it." Laziness pure and simple.

  175. Re:The Microsoft key!!!! I've never used it...ever by Sowelu · · Score: 1

    I've been using some random ergonomic keyboard (with Windows key included) for over a year without realizing that 1) it didn't have a context-menu key, and 2) that's where the 'fn' key lived, which apparently makes my f-keys do weird undesirable things. So...I guess my curiosity towards "what happens if I try to put the menu key into my workflow" will have to wait for a different keyboard.

  176. Bring back the ESCAPE Key! by Anonymous Coward · · Score: 0

    Who decided to move it way up into the upper-left netherworld of the keyboard? IBM? Microsoft? It used to be where the Cap Lock key is now, and in that position is was very handy, especially when using vi.

  177. Shift-lock by Anonymous Coward · · Score: 0

    You could likely add a function in to the wiring or logic that would have a double-tap of Shift turn on capslock.
    I've seen it done with Fn keys where a double tap would turn on an audible sound when you press Fn key combinations.
    It could even still be used as a crash activity detector like you can usually do with any of the state keys with an LED.

    Generally I just use capslock as a hotkey modifier for various functions in programs.
    Capslock as a hotkey is great because it doesn't interfere with hotkeys already defined in almost any program.
    I use it for various things, like window management, quick saving certain things, macros for drawing and such.
    I also use it to slow my mouse to speed1 when I hold. Incredibly useful for quick and precise editing of text, pictures, 3D modelling and so on. I've been using it for years now.

  178. Caps Lock is useful for work by Anonymous Coward · · Score: 0

    I am an engineer. It is still standard for engineering drawings, schematics, instructions, and annotations to be in capital letters.
     
    I use caps lock every day for work. That might explain why the caps lock key isn't commonly used on Macs.

  179. Re:It's IBM's fault. Everyone copied the PC. by jfengel · · Score: 1

    My Osborne 1 split the capslock key into two regular-sized keys, one for CTRL and the other for capslock. That worked well. (And I really miss Wordstar. Amazing what they could cram into 64k. They had to play silly games, loading and unloading parts of the software from the floppy disk, a really primitive kind of virtual memory.)

  180. Caps Lock is required by IcyWolfy · · Score: 1

    Several Keyboard layouts have 4 shift states. CAPS !== SHIFT.
    See Czech and Swiss German for common examples.

    the upper row of CZ are letters.
    SHIFT gets you 123457890
    CAPS: gets uppercased letters
    CAPS-Shift: numbers again

    Swiss:
    Shift ü = è
    CAPS ON: Shift Ü = È

    If you get rid of the caps lock, you'll have to introduce a common dual-state key for the dozens of languges that require it.

  181. Switzerland is a niche environment. by IcyWolfy · · Score: 0

    Niche environments.
    Like the country of Switzerland; or the Czech Republic.

    Several Keyboard layouts have 4 shift states. CAPS !== SHIFT.
    See Czech and Swiss German for common examples.

    the upper row of CZ are letters.
    SHIFT gets you 123457890
    CAPS: gets uppercased letters
    CAPS-Shift: numbers again

    Swiss German:
    Shift ü = è
    CAPS ON: Shift Ü = È

    If you get rid of the caps lock, you'll have to introduce a common dual-state key for the dozens of languges that require it.

    1. Re:Switzerland is a niche environment. by Anonymous Coward · · Score: 0

      How many fucking times are you going to paste this?

    2. Re:Switzerland is a niche environment. by Anonymous Coward · · Score: 0

      As many times as needed.
      Many people only read their sub-threads, or responses to only the threads they expande.
      Thus, responses never get read if they're in fully isolated threads.

      And simply sayng: See comment #50211045 http://ask.slashdot.org/commen...; There's a good answer to your direct question. does get equally spammy, but is much less useful in context.

  182. Re: The Microsoft key!!!! I've never used it...eve by Anonymous Coward · · Score: 0

    Still a problem. Games can be programmed to ignore the windows key, but that don't help old games. Good thing gaming keyboards usually have a toggle button or switch to disable it.

  183. Re:It's IBM's fault. Everyone copied the PC. by Anonymous Coward · · Score: 0

    You can still buy keyboards with a DIP switch to swap the CTRL and Caps Lock keys.

    On the Mac you just go into the Keyboard control panel and switch the modifiers to your heart's content. I never use Caps Lock for anything, so I make it do nothing.

  184. simple by Anonymous Coward · · Score: 0

    FIRST POST.

  185. Re: The Microsoft key!!!! I've never used it...eve by Anonymous Coward · · Score: 0

    There's one other option. You could get a gamer keyboard. I got one from Corsair(the other guys are great too just don't go for off brand) that is extremely customizable. The software is very easy to use and updated. You could make any key do anything... Even set off a chain of macros or just switch profiles or play a sound or nothing at all.
    Imagine that, every time you hit the windows key Homer yells d'oh, but other than that nothing happens.

  186. Too many shortcuts by sjbe · · Score: 1

    The Windows key is pretty damned useful in day-to-day activities:
    I for one make use of:

    That's quite a long list and I have NO interest in memorizing all that. If it works for you that's great but personally I detest arbitrary keyboard shortcuts. I use a handful that are common but to me its a sign of a poorly designed system. If the interface is so clumsy you need to memorize a page long list of shortcuts then I'll just use something else. It's a big part of why I detest both vi and emacs.

    (For the record I also hate tiny icons you have to mouse over to figure out their function)

    1. Re:Too many shortcuts by Wycliffe · · Score: 1

      That's quite a long list and I have NO interest in memorizing all that.

      Shortcut keys are for power users and aren't really meant to be memorized directly. I prefer nice menus but I tend to go look up the shortcut keys or try to create a macro when I notice that I keep doing the same thing over and over again. If you want to know how useful shortcut keys can be, try playing StarCraft 1 with someone who uses shortcut keys. They will beat you every time if you're just using the mouse.

  187. Re:The Microsoft key!!!! I've never used it...ever by fisted · · Score: 1

    let the user map it themself

    The horror. Letting the user decide what to do with the typically three extra keys? Can't have that.

  188. Capital Umlauts -- Or, Don't F with the Swiss by IcyWolfy · · Score: 1

    THIS.
    Shift + Letter yields --- DIFFERENT Lowercased Letters!
    Shift ä = à
    Shift ö = é
    Shift ü = è

    To get uppercased version of any of those letters, you have to turn Caps Lock on.
    With CAPS ON:
    Shift Ä = À
    Shift Ö = É
    Shift Ü = È

  189. super key by Xicor · · Score: 1

    because it makes a great super key.

  190. Another Perspective by Anonymous Coward · · Score: 0

    I understand the desire to protect your families and property, however hear me out. There will come a time soon when drones will be a welcome sight in the right context...like looking for a shooting suspect or searching for live people/animals during an emergency. Sending the message that it's OK to shoot down a drone is the wrong approach to this problem. Some have suggested calling police would do no good, but as they become savvy to these issues they'll learn how to respond. Technical issues could be forthcoming too to identify and/or track drones. My suggestion is to not dig our heels in out of fear and miss out on the benefits that robotics can provide us - just my two cents.

  191. Re:It's IBM's fault. Everyone copied the PC. by tap · · Score: 4, Informative

    That's just not true!

    The IBM PC-AT keyboard, circa 1984, has control as a large key above shift and to the left of the 'A' key, in its proper place. Alt is below shift. There are no right-hand alt or control keys and caps-lock is off on the right side below shift where the right control key is now. There was a large gap between the spaceback and caps-lock, since there was no right alt or windows key.

    The PC-XT keyboard, circa 1981, had the same layout of control-shift-alt in the proper order on the left. The caps-lock key was on the far upper-right corner, above the numeric keypad.

    It wasn't until the 101 key model M that IBM messed up and placed the caps lock key in the incorrect location above shift and next to 'A'.

    Is there really no one else here who remebers typing away on the original PC keyboard, with the control key in the proper location, the giant plus key, break on the scroll lock key and printscreen on the dedicated '*' key?

  192. Re: The Microsoft key!!!! I've never used it...eve by LocalH · · Score: 1

    You don't need the R part of that anymore. Tap Windows, then start typing. This has been the case since 7 for sure, and probably Vista too (although I never really used Vista on my own machines).

    --
    FC Closer
  193. "PC" keyboards are just wrong by NorthWay · · Score: 1

    Why can't you get a properly mapped keyboard nowadays? Doing some funny remap of cap-lock is not the same as having the CTRL key in the right place and the lock key between it and "A".

    Old computers did it right (Unixen, Amiga, probably more). This really irks me.

    OTOH, how often are you shouting at people behind your keyboard? Even then you only need to press it once, so it is working like intended I'd say Oh wait, I'm talking with people on the internet, the lock key gets used a bit I guess...

  194. Don't CHANGE anything. Remove CAPSLOCK cap. by TheRealHocusLocus · · Score: 1

    All of my keyboards have CAPSLOCK key cap popped off and taped to the side, in case I ever want to put it on again. Then a piece of electrical tape over the center post to keep crumbs out and done. Now when I go for 'A' I get just A every time. If I want CAPSLOCK I can press down directly on the post. It has reduced CAPSLOCK errors by 101%.

    People not using Very Useful right mouse button... I'm mystified. Maybe they're just stupid.

    --
    <blink>down the rabbit hole</blink>
  195. Re:The Microsoft key!!!! I've never used it...ever by Anonymous Coward · · Score: 0

    Command Key, not Apple key.

  196. Wrong fix for carpal tunnel by Anonymous Coward · · Score: 0

    (my husband's a big fan of the Kinesis keyboards, initially to cope with carpal tunnel)

    You don't mess around with keyboards to fix that. Just ride a Harley to work. the heavy controls give you strong hands - and then you don't get carpal tunnel from light office work!

  197. Re:The Microsoft key!!!! I've never used it...ever by 0xdeaddead · · Score: 1

    absolutely, I can hit control+esc on my own, thank you very much.

  198. Re:The Microsoft key!!!! I've never used it...ever by spitzak · · Score: 1

    I think you will find a lot of Linux desktops have copied the actions from Windows for the Windows key (Linux calls it the Super key). Super-R for a run box, for instance.

  199. Re:The Microsoft key!!!! I've never used it...ever by spitzak · · Score: 1

    Actually the key at that position was often called "Meta". This was true on early Linux X11 as well. For some reason it was changed to "Super" around 2000, thus breaking a lot of software that assumed it was Meta.

  200. "...Um, International standards" by saccade.com · · Score: 1

    I once (many years ago) found myself in the same room with the manager responsible for Apple's peripherals, including keyboards. I asked (actually, begged) him to get rid of the stupid Caps Lock key. All he did was mumble something about "international standards" required for big corporate/government sales. So maybe the solution is to get corporations & governments to change their keyboard requirements. (Yeah, good luck with that...). In the mean time, every major OS has a tool or setting to make Caps lock control. Once you set that up, you don't even notice it any more.

  201. Re:The Microsoft key!!!! I've never used it...ever by Anonymous Coward · · Score: 0

    It has been painfully easy to use the special characters in Windows for, like, ever. It is called the US English International keyboard layout. It works fine in every flavor of Linux that I have tried as well. CTRL + C and V copy and paste (respectively) in Windows. I do not know enough about Macs as I do not use them - so I avoid commenting on them. That might be a hint.

    Man, as soon as I post AC I am an asshole. This is KGIII - I ran out of posts again. That arbitrary 50 post limit is silly. Anyhow, still gonna post this. General Principle and all that. It is obviously me. Nobody on the planet, except me, types gibberish like this.

  202. caps lock should be on the function row by ILongForDarkness · · Score: 1

    right next to the calculator button. The 1 time a year you wish you had it you can hunt for it and push it. Maybe instead it could be a page down and with shift a page up button Rather than when navigating having to go way the hell off the home row to hit the tiny buttons.

  203. Re:It's IBM's fault. Everyone copied the PC. by Anonymous Coward · · Score: 0

    Option "XkbOptions" "ctrl:nocaps"

  204. Re:It's IBM's fault. Everyone copied the PC. by baegucb · · Score: 1

    Someone who knows what carriage return means :)
    Actually back in the 70s is when IBM did this iirc. But I get old, and yes, I used the original IBM PC.

    A very informative comment :)

    And vi rules! lol

  205. Re: frickin' useless POS that makes everything suc by Anonymous Coward · · Score: 0

    WTF is an opened apple anyways? I call it the "gross apple" because you take 1 bite and set it down forever.

  206. Re:It's IBM's fault. Everyone copied the PC. by Darinbob · · Score: 1

    I still remap it to control. It's the only proper use of that key. If you have tools that use control key, it's extremely inconvenient to use the "standard" control key position, it just doesn't work for touch typists.

    The capslock functionality itself is mostly useless too. You'd only really need it if you were using some language that only used upper case keywords, but even then it's cumbersome to keep turning it on and off.

  207. Re: It's IBM's fault. Everyone copied the PC. by Anonymous Coward · · Score: 0

    I have been a Windows user for many years. I reprogrammed my keyboard so that the left side keys are all "control," the middle keys are all "alt" and the right side keys are all "delete."

  208. Touch typists by FrozenGeek · · Score: 1

    I'm a (very poor) touch typist. If you start radically altering the keyboard, you will seriously P.O. every touch typist out there because our muscle memory won't work with your keyboard. That means that they will be much less likely to buy your keyboard. By extension, if your keyboard happens to be attached to a laptop, they will be much less likely to buy your laptop. Maybe non-touch typists will be more likely to buy your wares and offset the loss of the touch typists. But maybe not - what if they dislike your changes? Bottom line: there's probably no great business advantage to changing the keyboard but there is a significant business risk, so ain't gonna happen.
    If you have a good idea for a better keyboard, start a kickstarter campaign and build/market it yourself. You'll make a huge pile of money. Or not.

    --
    linquendum tondere
  209. Re:The Microsoft key!!!! I've never used it...ever by Darinbob · · Score: 1

    I rarely use it on Windows 8. It's a stupid key. I don't use the feature to find program by name, it's too weird for me. If a program isn't pinned or on an icon, it's just not going to have a name I know by heart (ie, I'd probably type Word instead of Microsoft Word). For explorer it's pinned there and easy to use (and right click to get recent entries is more convenient than just getting explorer).

    When I do use the windows key, it's to pop up (ugh) metro then click "all programs" to get a bizarrely organized start menu where I can browse for stuff I don't know the name of or to see what's there (things install with readme files or extra utilities that you'd never see if you didn't have a start menu or some other way to browse through it all).

    Windows 10 now has a real start menu again, so even they recognize the folly of removing it even if their fanboys won't.

  210. Re:The Microsoft key!!!! I've never used it...ever by Darinbob · · Score: 1

    Alt key is same as meta most of the time. For alternate characters you use AltGr, even though it's not on US keyboards.

  211. Re: My Pet Peeves (recent Windows laptop keyboards by Darinbob · · Score: 1

    I have a macbook pro, but never open it. It's not a laptop for me, but a very thin desktop. So I use the mouse and keyboard, much more sensible (after you swap off Apple's idiotic idea of reversing the scroll direction to match phones).

  212. Acronyms by blue+trane · · Score: 1

    It's easier to type acronyms, and case-sensitive passwords that are generated for you and you need to type once before changing, with a caps lock key.

  213. would love caps to move along with win key next to by Anonymous Coward · · Score: 0

    the escape key - between esc and f1....

    so it would be ESC, WIN, CAPS, F1

    that would be ideal imo.

  214. I can't believe I even need to point this out by Gumbercules!! · · Score: 1

    Because not everyone is a developer?

    Accounts payable / data entry people most definitely use it. However, logically, of course the amount of times they press it is small - it *should* be small numbers of times they press it. That's the whole point of the capslock - you only need to press it occasionally to change your case.

    So a data entry person may push it once - enter 2000 characters into a system that all need to be in upper case (and this is ludicrously common in various ERP or accounting systems), then push it again. For that person, capslock was invaluable - but for some half thought out metrics gathering muppets, they see capslock as hardly being used. I can't believe someone even needs to point this out...

  215. Re:It's IBM's fault. Everyone copied the PC. by bws111 · · Score: 1

    You're both right in a way. The 3278s did have a cap lock next to the A key. That was because the 3278s replaced typewriters in the corporate environment. The original PC/XT/AT systems were not targeted at the corporate environment, they were targeted at the SOHO market. Those keyboards did not have the caps lock next to the A key. The 3270PC was used as a replacement for 3278, and it had the caps lock next to the A. This was the first IBM PC targeted for corporate. After that most of their PCS were corporate use, and they retained that layout.

  216. My Apple mouse doesn't even HAVE a right button... by weav · · Score: 1

    ... you insensitive clod! I have to press the CTRL key when I click, to get a menu!

    Can't say I use caps lock for anything but fouling up passwords, though.

  217. Fuck that! by Anonymous Coward · · Score: 0

    I type really fast however I never learned the normal way of typing and I use the caps lock key instead of the shift key. My hands move all around the keyboard so to have to hold a shift key down is too much work so I simply tap caps lock, type the capital letter and tap caps lock again to turn it off.

    If the caps lock key ever went away I think I'd quit my programming job, sell my home computer and go live in the woods.

  218. Re:It's IBM's fault. Everyone copied the PC. by DocHoncho · · Score: 1

    You can still buy keyboards with a DIP switch to swap the CTRL and Caps Lock keys.

    That sounds expensive and unnecessary. It's pretty simple to remap (or swap) the keys with software, even Windows will let you do it, albeit with a registry change. I typically just remap caps to control. Can't say that I've missed caps lock, it isn't that hard to hold down shift and type. The only problem is being used to having a control key instead of caps is using computers where it isn't remapped. I'm forever turning on caps lock when I have to use other peoples computers. Grrr

    --
    Celebrity worship is a poor substitute for Deity worship and costs more to boot.
  219. Re:The Microsoft key!!!! I've never used it...ever by I4ko · · Score: 1

    I would say F6, F9, F11, Pause, SysRq, PrintScrn, are more useless than caps lock

  220. Re:It's IBM's fault. Everyone copied the PC. by Marginal+Coward · · Score: 1

    IMHO, the IBM PC-AT keyboard was the best there ever was on a PC (or compatible.) It took me quite a long time to retrain myself when they moved that beautiful from that single large Ctrl key in the right place to two small keys in the wrong place. Worse, they put the Caps Lock in that prominent spot, leading to it getting hit a lot by accident - which I still do to this day: I think I hit it more often by accident than I do on purpose!

  221. announcing - SBTK by Anonymous Coward · · Score: 0

    Society for the Banishment of the TAB Key.

    I really, really, really do N.O.T. like the TAB key or finding source code where they've used TAB - I want to scream every time!

  222. Re:The Microsoft key!!!! I've never used it...ever by mvdw · · Score: 1

    ...Or even Ctrl-Alt-Del and Enter (chooses the first item, which is lock screen, at least on Win Xp Pro and 7 Enterprise, the only ones I have experience with).

  223. Some users can't send mail without it... by cstacy · · Score: 1

    AOL still in business

    http://www.businessinsider.com...

  224. Reverse Tab by Anonymous Coward · · Score: 0

    For people who often don't have a mouse or just in general a reverse-Tab would be nice. Just the same function as Tab, but moves Right-Left instead of Left-Right.

  225. Re: The Microsoft key!!!! I've never used it...eve by Anonymous Coward · · Score: 0

    If you type Word it will match up with Microsoft Word automatically, as it's a substring. Have you even used this feature? I think you're lying to us. Useless dickhead. Fuck off.

  226. Cap Lock? by Anonymous Coward · · Score: 0

    I've programmed mine to be another "Enter" key. Nice having them placed symetrically on the KB.
    The "Menu" key is now CL.
    jb

  227. Remap the keyboard by Anonymous Coward · · Score: 0

    Am I the only one here who remaps his keyboard? Linux and Windows both have options to remap the keyboard, I generally switch and keys. For one laptop with / in a ugly place, I fixed up the keyboard. The best part is of course watching someone else sit at my keyboard.

  228. Re:The Microsoft key!!!! I've never used it...ever by SuricouRaven · · Score: 1

    Even worse were the keyboards that appeared for a brief time with 'sleep' and 'power off' keys.

  229. nigerian conspiracy by jjohn_h · · Score: 1

    http://linuxgazette.net/186/an...

    Yes, there must be a Nigerian conspiracy to keep CapsLock.

  230. Obligatory bash.org? by DustPuppySnr · · Score: 1
  231. Re:It's IBM's fault. Everyone copied the PC. by xenobyte · · Score: 1

    I still remap it to control. It's the only proper use of that key. ...

    I tend to hit it when I go for the A-key so I've always simply remapped it to also be an A-key, or if I tend to hit both keys (depends on the keyboard) map it to do absolutely nothing.

    --
    "For every complex problem, there is a solution that is simple, neat, and wrong." -- H.L. Mencken (1880-1956) --
  232. keyboard.io by Laz10 · · Score: 1

    I preordered one from this kickstarter: http://shop.keyboard.io/

    I have been a ergo keyboard nerd for years - looking for the next rethink.
    Of course it has no caps lock. But you could get once, if you really really want to.

    http://shop.keyboard.io/

  233. Testing developers. Developers. Sheesh! by Xtifr · · Score: 1

    This was a study of developers. Developers are not exactly typical users. Developers like things like vi and EMACS. And, in fact, developers can already buy keyboards with (for example) caps lock switched with control. (If they care, and are too lazy to remap their own keys.)

    Do a broader study of general computer users, and then maybe we'll talk. (No real skin off my nose anyway, since if you design a keyboard layout Idon't like, I'll just remap it to be the way I do like. 'Cause I'm a developer.)

  234. I love Caps Lock by Anonymous Coward · · Score: 0

    In Path of Exile it loops ^{Click} because I'm lazy.
    Browsers and text editors it activates Ditto.
    Photoshop it temporarily moves tool menus to my mouse.
    Strokes Plus it activates my keys to LUA script.

    Caps Lock is extremely useful I use it for everything except Caps Lock.

  235. Design drawings by Anonymous Coward · · Score: 0

    A lot of CAD drawings use all caps for annotation for fabrication. You need to follow the drawing style. You will need to pry the caps lock key from my cold dead fingers.

  236. Nobody is using right mouse button? by Kartu · · Score: 1

    Then something is wrong with me, I guess.

  237. Re:The Microsoft key!!!! I've never used it...ever by mwvdlee · · Score: 1

    I've had one where the sleep button was directly below the delete key. That keyboard lasted for about 3 days.

    --
    Slashdot social media options: AIM, ICQ, Yahoo, Jabber and Mobile Text. Why no MySpace?
  238. Re:The Microsoft key!!!! I've never used it...ever by dargaud · · Score: 1

    It's possible to remap the menu key to a different hardware key (such as Ins, Pause, or even the weird 'Calc' key I have on my Dell 17"), but it's harder to remap than most other keys, which you can do easily in Linux (In KDE it's in the advanced options in the keyboard settings).

    --
    Non-Linux Penguins ?
  239. Re:The Microsoft key!!!! I've never used it...ever by TheRaven64 · · Score: 1

    Rather, I consider it pretty easy. :-) Just hold down the ALT key, type in the four-digit code for the character you want, then release the ALT key and your character will show up

    Is this really what Windows users consider easy? On a Mac, it depends on the keyboard layout, but for me it's alt-2. A cent symbol is alt-4 (dollar is shift-4). Entering a character with an accent is alt-something for the accent and then the letter that it goes on top of. For example, i-umlaut is option-u then i.

    If memorising unicode character numbers is your idea of good HCI, then I really hope I never use a program that you've designed.

    --
    I am TheRaven on Soylent News
  240. Re:The Microsoft key!!!! I've never used it...ever by Tomahawk · · Score: 1

    Windows-D show the desktop
    Windows-M minimise all windows
    Windows-E Explorer
    Windows-R Run
    Windows on it's own Start Menu/Screen (CTRL-ESC does the same)

    (and there are plethora more that I don't use - Google knows them)

    So, yeah, when you have to run Windows, it's useful to know the Windows Key shortcuts. Cuts down on having to use the mouse. Lots of old Windows keyboard shortcuts still work too, and have done since at least Windows 3:

    Alt-F4 close the currently running program
    Alt-Space bring up the window menu. (a useful shortcut for a window that opened off-screen is Alt-Space M Left-arrow, then hold down the left mouse button and drag the window back onto the screen - Alt-Space brings up the menu, M for Move, and the left-arrow (or any arrow key) is important to do the initial move of the window before you can drag it with the mouse)
    CTRL-SHIFT-ESC (since Windows 95) bring up the Task manager

    Again, there are a plethora more that Google knows about, but these are the ones that I still use.

  241. Re:The Microsoft key!!!! I've never used it...ever by Tomahawk · · Score: 1

    On a European keyboard, AltGr is used as a modifier. Using that, I can get (on my Irish layout) áéíóú and € easily - I don't need to remember any non-intuitive codes that I wouldn't be able to teach my mother...

  242. Re:The Microsoft key!!!! I've never used it...ever by Tomahawk · · Score: 1

    I had a laptop once that didn't have a context menu key and I hated it. I had another that had the context menu key on the top row, and I hated it too.

    Today, I rarely use the context menu key (certainly not consciously). I had to think for a few seconds to which key you were referring...

    It amazing how usage patterns change over time without you actually noticing... hmmm....

  243. Caps lock is in use by olterman · · Score: 1

    Caps Lock is for the cases where you have to type more uppercase letters while still being able to type lower case letters: having caps lock reduces the amount of typing in this case. Shift is for the cases where you have to type more lowercase letters while still being able to type upper case letters: having shift reduces the amount of typing in this case.

    So the question about "do we need caps lock at all?" requires that we have to think how common are those use cases where caps lock is beneficial. Some people use it for headlines when no other effects are possible. I've seen caps used in SQL commands and some companies even have "coding standard" to make the caps mandatory.

  244. ErgoDox might be the future by ecloud · · Score: 2

    I have ordered a couple variants of these; haven't received either of them yet. But it sounds good in theory. And there are no IP issues: it's an open-source design, with open-source firmware, completely programmable so that each user can customize his own layout. (For the first time I'll have a keyboard I really "own".) The keyboard can still be made flat (although usually the two halves are positioned independently), so any laptop manufacturer could even start shipping with this kind of layout. I hope that will happen at some point.

    The main points are that the two halves are rotated to a better angle to reduce strain, and also that the thumbs are able to operate several keys each, not just the spacebar.

    What to do with capslock is such a minor issue compared to everything else that's wrong with QWERTY. This is why, despite being quite a fast typist, and not suffering particularly much wrist pain, I nevertheless feel that it's time to try something more efficient. I do have some shoulder pain sometimes, so figured maybe that's from having to hold my hands too close together in front of me. It's worse when I use a laptop too much, whereas at work I've been using an old Microsoft 4000 ergo keyboard for years.

    Now if they would just ship... ;-)

    An similar alternative is keyboard.io. From one side, I wish I'd waited for their crowdfunding campaign to get started, because it's gorgeous, and I love the wooden-case idea. From another side, I think theirs is going to be less customizable: every key has a different shape, so you can't have printed rearrangeable keycaps, e.g. if you want to try colemak you have to ignore the legends on the keys, or get keys without legends. And they are definitely not going to ship until the middle of next year, either.

  245. cross-platform remapping by ecloud · · Score: 1

    I actually use Linux, OS X and occasionally Windows at work. (I work on Qt, so I need to be able to test bugs and features on every supported platform.) I use the same keyboard for all of them, on a KVM. It's not so hard to get capslock to be the control key on all of them. (On Linux though, that means remapping it on both the console and in X11 and Wayland globally, not just in some desktop environment's control panel.) But then after using OS X I have grown to like the idea of keeping control (as used on the terminal) separate from command (as used to copy and paste text and other such things, even in the terminal window). I'd like to find a way to make that consistent everywhere. I think I will find a way on Linux. But first I want to have an ergo keyboard with a real command key. (Thus the ergodox, with its customizable firmware.)

    For now though, on a regular ergo keyboard, capslock is control, and control is also control on Linux and Windows, whereas on OS X I map capslock to control and control to command and the windows key to command, so that I can develop portable muscle-memory: I use the same key for control-C or command-C regardless of OS when I want to copy text, and the same capslock key for control-C to stop a running program, for example. And the windows key is closer to where the command key is on a MacBook Pro, so if I hit that one by accident it still works, whereas the windows key has no other use on OS X.

    It IMO doesn't make as much sense to remap the windows key, because it has its own uses in various Linux desktops and window managers now. So, the more bucky keys, the better; it seems I actually use 5 of them now: control, command, alt, window and compose. Oh, and shift, of course. The window key is still the least useful though. Can't decide whether I prefer using window-mouse-drag or alt-mouse-drag for moving windows around. There is some inconsistency about that between openbox, awesome and weston.

    I was using a model-M at home, with no Windows key, but my wife complained that she couldn't sleep, so that's the trouble with that. But then I had to try to use the two alt keys more effectively. The right one has to be compose if you need compose, whereas if you also have a menu key, you could use that for compose. I live in Norway now, and don't want to get used to Norwegian keyboards because they are too different (lots of odd and unnecessary changes), because I don't actually write much in the Norwegian language, and because I will never be able to switch completely due to having lots of old hardware. So I use compose for writing the 3 extra characters ø å and æ. I think it's an intuitive and extensible way to handle all the accented characters, and everyone should have a convenient way of typing them, even if they are only needed in rare cases.

    After I switch to ergodox, I wonder if it's going to get really hard to use other keyboards though.

  246. idea by Anonymous Coward · · Score: 0

    But surely it's time to re-visit the standard key layout? What keys would you eliminate or re-arrange?

    i don't know about eliminating any keys, but I think a few additional keys might be a good idea:

    * IABSDFI key: inserts the phrase "It ain't broke, so don't fix it".
    * WRTW key: inserts the phrase "Why reinvent the wheel".

  247. Shortcuts are a signal of bad design by sjbe · · Score: 1

    Shortcut keys are for power users and aren't really meant to be memorized directly.

    The term "power user" is fairly meaningless. It typically references someone who knows all sorts of arcane stuff about an application or system. But it reinforces my point. If they need to know all this arcane stuff and the system is so clumsy they need shortcuts then the system needs to be designed better. I could be considered a power user of quite a number of applications but I still think shortcut keys are usually a clumsy workaround in most cases. There are exceptions but they are exceptions that prove the rule. I think keyboard shortcuts are a perfect example of the "if the only tool you have is a hammer everything is a nail" principle.

    I prefer nice menus but I tend to go look up the shortcut keys or try to create a macro when I notice that I keep doing the same thing over and over again.

    Exactly my point. I do the same thing (when possible) but I maintain that generally if I need to do that it very often means the interface needs some rework.

    If you want to know how useful shortcut keys can be, try playing StarCraft 1 with someone who uses shortcut keys. They will beat you every time if you're just using the mouse.

    It's not that they aren't useful or that they don't work. The problem I have with them is more of a design principle than a specific complaint. For example I happen to know that the shortcut to display the History in my browser is Ctrl+Shift+H. In my opinion if I'm using that so much that it needs a shortcut then it should be a more prominent part of the interface. As a general rule I think keyboard shortcuts should not be application specific any more than absolutely necessary. Cut/Copy/Paste are fine. Ctrl+Shift+A to open the Add-Ons in Firefox should either be user defined or simply not be given a shortcut or be made more prominent in the GUI.

  248. Re: The Microsoft key!!!! I've never used it...eve by Anonymous Coward · · Score: 0

    The most useful Windows key shortcuts are the cursor keys for moving the current window around.

  249. Architecture by Anonymous Coward · · Score: 0

    Nearly all architecture and related building design 'blueprints' still show text in all caps. My Cad designers spend 80% of their day with Caps Lock on. (And tend to shout a lot in IMs)

  250. flawed. by Anonymous Coward · · Score: 0

    ...but they admit it when they say Macs right out hence the reticence of the right mouse button, which, personally, I use ALL of the time on windows/linux/osx/what have you if it supports useful context menus.

    CAPSLOCK: pretty obvious I'd think but it's really annoy that one guy that thinks ALL CAPS ARE THE WAY TO SEND MESSAGES ALL OF THE FSCKING TIME.

  251. Problem Solved by Anonymous Coward · · Score: 0

    Everyone stops using Swiss German, or any other language besides English, and then we eliminate the dastardly CapsLock key that has been holding back progress for generations.

    FREE AT LAST! FREE AT LAST!

  252. Laptop, you insensitive clod by tepples · · Score: 1

    I've long wanted a game where you are a wizard, and thieves steal your scrolls, unless you Scroll Lock.

    That's fine until you get players using laptops. Imagine the following question in your game's support ticket system or in Arqade:

    How do I lock my scrolls?

    How do I keep thieves from stealing my scrolls? The game's manual says push the Scroll Lock key on the keyboard. But I'm playing on a Dell [model redacted] laptop whose keyboard doesn't have a Scroll Lock key.

    [sparlock] [pc]

  253. Sleep key on a laptop by tepples · · Score: 1

    To be fair though, putting power and sleep buttons on the keyboard was a monumentally stupid idea. It's far too easy to accidentally hit them.

    If they're placed in proper positions on a keyboard, how are they any easier to hit than the corresponding keys on a laptop? In any case, I have my keyboard's sleep key bound to "Ask what to do" (shutdown, restart, log out, or lock and suspend).

  254. Say it nicely by tepples · · Score: 1

    you can't tell your BiL he's an idiot.

    Most insults can be reworded to be both more polite and more precise: "BiL could use some training in email best practices."

  255. Whining like a TV? by tepples · · Score: 1

    It could be magnetostriction along the power path between the wall and your SSD. It's the same source as the 60 Hz hum in a lot of non-motorized devices or the 15.7 kHz whine in a CRT SDTV.

  256. FINANCIAL NEEDS ALL CAPS IN SOME FORMS by eionmac · · Score: 1

    As I do banking and credit payments (letter of credit) between countries, a long time ago the banking indiustry standarised on CAPITALS to avoid problems, and enable secure teletext tranactions. These same conventions apply today. Without a caps lock, I could be unproductive for long periods and I would not estimate the finacial problems for my customers or their suppliers or payroll payments of a mistype.

    --
    Regards Eion MacDonald
  257. Just pop off Caps Lock by Anonymous Coward · · Score: 0

    It's the first thing I do with every keyboard -- I pop off the Caps Lock key. No problems whatsoever.

    Try it, you can always pop it back on if you suddenly need to TYPE IN ALL CAPS WITHOUT USING YOUR PINKIE FINGER.

  258. Needed by cwsumner · · Score: 1

    Many people, who type professionally, find it less tiring to hit the capslock key and then type a letter, rather than having to hold down the shift key while typing a letter at the same time. Of course, it might depend on keyboard layout.

    However, it is very bad to assume a small statistical usage means something is not needed. Like a seat belt, it might not be used very often, but if you need it and don't have it you could be in big trouble.

    It is likely that no one, with any brains, would buy a keyboard with no capslock! 8-)

  259. Re:The Microsoft key!!!! I've never used it...ever by Darinbob · · Score: 1

    Hmm, never need Windows-D, the desktop is the only thing that ever shows. Minimize all windows is never needed (but sadly happens without my asking if my mouse drifts over to the hot corner). Explorer is less useful than right clicking on the pinned Explorer icon on the task bar and choosing the recently used location. Windows-R I have used a few times, but I often just create my own shortcut for the 3 things I have ever used that for (cmd, calc, and regedit).

    So I could pry off that Windows key and never miss it, it can even fit into the same coffin as that pointless menu key.

  260. Re:The Microsoft key!!!! I've never used it...ever by dacaldar · · Score: 1

    By "context menu key", do you mean right-click? I'm assuming the mention of Right-click is either a mistake, or skewed by an inordinate amount of Mac users with their single button philosophy. I don't see how you are doing anything productively (with a mouse) if you aren't using right-click. If you aren't using a mouse at all, like for command line work or vi/vim, that's fine.

  261. Use Colemak. by Sabre+Runner · · Score: 1

    I switched to Colemak about a year ago. It's much better than QWERTY. And in the standard Colemak setup, Caps Lock is replaced with another Backspace key. That's useful.

    --
    No one ever said being a Heretic was easy.
    Let us meet again in "Less Interesting Times"
  262. apples and oranges by gzuckier · · Score: 1

    yeah i guess the right mouse key wouldn't be popular with mac users but might be different among ibmers.

    --
    Star Trek transporters are just 3d printers.
  263. Re:The Microsoft key!!!! I've never used it...ever by gzuckier · · Score: 1

    Just curious, what OS are you using? On both Windows and Linux, it's a pretty handy key.

    when you're in a case-sensitive OS, it's a help alright.

    --
    Star Trek transporters are just 3d printers.
  264. Re:The Microsoft key!!!! I've never used it...ever by gzuckier · · Score: 1

    Just curious, what OS are you using? On both Windows and Linux, it's a pretty handy key.

    when you're in a case-sensitive OS, it's a help alright.

    that was supposed to be the capslock, not the microsoft key. the microsoft key does things in linux??

    --
    Star Trek transporters are just 3d printers.
  265. you might, actually by Chirs · · Score: 1

    Consider the following cases:
    1) You want to hot-swap your keyboards and have the adjustment carry over between keyboards.
    2) You want to switching between host terminals and virtual machines and have the adjustment carry over into the various VMs.
    3) You want the adjustment to affect the BIOS as well.
    4) Your keyboard is on a KVM switch and you want the change to affect multiple computers that may be running different OS's.

    In the above cases, it would be handy to have a physical "bump in the cable" adapter.

  266. Re:It's IBM's fault. Everyone copied the PC. by gzuckier · · Score: 1

    That's just not true! The IBM PC-AT keyboard, circa 1984, has control as a large key above shift and to the left of the 'A' key, in its proper place. Alt is below shift. There are no right-hand alt or control keys and caps-lock is off on the right side below shift where the right control key is now. There was a large gap between the spaceback and caps-lock, since there was no right alt or windows key. The PC-XT keyboard, circa 1981, had the same layout of control-shift-alt in the proper order on the left. The caps-lock key was on the far upper-right corner, above the numeric keypad. It wasn't until the 101 key model M that IBM messed up and placed the caps lock key in the incorrect location above shift and next to 'A'. Is there really no one else here who remebers typing away on the original PC keyboard, with the control key in the proper location, the giant plus key, break on the scroll lock key and printscreen on the dedicated '*' key?

    And the freeware you would install to swap the AT keys back to where they had been.

    --
    Star Trek transporters are just 3d printers.
  267. Re: My Pet Peeves (recent Windows laptop keyboards by Anonymous Coward · · Score: 0

    Well, sometimes when you're reading Schindler's list...

  268. Why? by the_almighty_gooby · · Score: 1

    SO THAT I CAN DO THIS!

  269. Caps Lock be Damned by Anonymous Coward · · Score: 0

    I pull the guts out of the caps-lock key on any keyboard I use exclusively. I type quickly and don't watch the screen, and it's very common that I'll find that I've hit caps-lock accidentally and have to re-type a whole line or more of text. It's way more inconvenient for me to have the caps-lock key than it is to do without it. I almost never use it (on purpose) anyway. It's no problem to hold down the SHIFT with a pinkie while I type with the remaining 9 digits.

  270. Re:It's IBM's fault. Everyone copied the PC. by mcswell · · Score: 1

    "control as a large key above shift and to the left of the 'A' key, in its proper place" Amen, preach it, brother! That's where God intended it to be.

    And on computers where I have permissions to do so, the CapsLock key acts like a Ctrl key. It's a RegEdit hack in Windows; I think there's a similar way to do it in Linux. On most computers the CapsLock LED "knows" I've made the change, but on some keyboards the LED seems to still think that key is CapsLock.

    I put the Ctrl keys to use by remapping most of them to be cursor movement keys, so I don't have to take my fingers off the alphabetic part of the keyboard to move the cursor.

  271. Re:The Microsoft key!!!! I've never used it...ever by mcswell · · Score: 1

    Ctrl-Esc doesn't work? I use that to get to the Start Menu in Win7, I would have assumed Ctrl-Esc would have a similar function in Win8 (which I have avoided ever using).

  272. Re:The Microsoft key!!!! I've never used it...ever by mcswell · · Score: 1

    Meta-Hyper-Nonsense

  273. So what's next by Anonymous Coward · · Score: 0

    Well I also rarely use print screen and numpad keys but when I buy new laptop their presences is one of the major factors in my decision.

    The keys on the keyboard are there because they have useful purpose.

  274. Re:The Microsoft key!!!! I've never used it...ever by Kiaser+Zohsay · · Score: 1

    http://i.stack.imgur.com/sgzBP...

    On a keyboard that follows the Windows 104 key layout, it is the key that activates the same menu that is activated by a right-click of the mouse. One of the ancestor posts mentioned the Apple key and OSX that corresponds to the Windows logo key, but I'm not familiar enough with Apple keyboards to comment on them.

    --
    I am not your blowing wind, I am the lightning.
  275. Re:The Microsoft key!!!! I've never used it...ever by PhloppyPhallus · · Score: 1

    It does! I have an IBM Model M attached to my Windows 8 PC, which gave me a brief bit of trouble until I learned that I could use Ctrl-Esc instead.

    It's not the most ergonomic key chord, but as an Emacs user, I don't care about that anyway!

  276. Haters gonna hate by Anonymous Coward · · Score: 0

    Bah! no fair I want to post this all in caps in a lame attempt to be funny;

    why hate the capslock, how else can angry people mash out long stupid replies to stupid askslashdot article without suffering a major injury to the extremity holding down the fecking shift key..

    you insensitive clod!!!!!1111qqbbq!

    Guess what, I couldn't, the error "Filter error: Don't use so many caps. It's like YELLING."

    Damn you /. damn yooooou!!!

  277. Re:The Microsoft key!!!! I've never used it...ever by Anonymous Coward · · Score: 0

    The reason I hated it back when it first came out was I had several DOS programs I still ran, and if I accidentally pressed that key it'd drop out of DOS mode and into Windows and I'd lose all my work. I could have rebooted to launch that app, sure, but rebooting too a little longer back then than now. I just removed the key and I could feel when I was making the mistake easier... problem solved.

    (sorry for the anon been so long I forgot my password)

  278. Windows key by MoarSauce123 · · Score: 1

    Before killing Caps Lock remove that ridiculous Windows key that constantly gets in the way!

  279. Re:The Microsoft key!!!! I've never used it...ever by Anonymous Coward · · Score: 0

    Nobody really needs to enter control characters anymore and for alternate characters we have already got the Alt Gr keys and the dead keys. (€ = Alt Gr + 5 and ó = ' and then o. Having used both Windows and the Mac, I can say there's no difference at all in the ease of entry of ‘special’ characters.)
    So it's just good sense to make Ctrl and Alt do something that's actually useful, and their current functions in Windows are so useful that if you were to give Ctrl and Alt their former, useless functions back, you'd be obliged to add two extra keys to the keyboard.
    Please think before you post. (And be a bit more practical, and check your facts first. But first and foremost, THINK.)

  280. Re:The Microsoft key!!!! I've never used it...ever by TheRaven64 · · Score: 1

    Nobody really needs to enter control characters anymore

    Except those of us who use a terminal, who find control-C and control-Z (and, on FreeBSD, control-T) indispensable.

    --
    I am TheRaven on Soylent News
  281. Re:You are correct - CTRL was moved on Model M by Anonymous Coward · · Score: 0

    I stand corrected. Went back to look at the pictures.

    How could I forget about that original 5150 keyboard? I did a bunch of custom application development to make use of those F1-F10 keys on the left.

    In corporate environments in 1984, PCs were just starting to replace 3270-family terminals by equipping them with the adapter boards to connect the co-ax cable. The caps lock key placement *and* the move of the function keys to the top made the keyboard look a lot more like the 3178 terminal keyboards, introduced in 1983, with same plastic and feel as the PC keyboards. 3178s were the replacement for the 3278. The 3278s that had those glorious, indestructible keyboards with keycaps that felt like they were made of porcelain. The original Apple II had the same quality feel to the keycaps.

  282. Re:The Microsoft key!!!! I've never used it...ever by I+confirm+I'm+not+a · · Score: 1

    It does, in Gnome at least (not used KDE in donkey's years, other environments YMMV). https://wiki.gnome.org/Gnome3C... This obviously assumes you use a bog-standard keyboard, but you need to make a real effort these days to get one without a Windows key.

    --
    This is where the serious fun begins.
  283. Re:The Microsoft key!!!! I've never used it...ever by Yaztromo · · Score: 1

    I don't know how it works on a Mac, but entering alternate characters is still easy with Windows, even 8.1. (I haven't tried it on 10.) Rather, I consider it pretty easy. :-) Just hold down the ALT key, type in the four-digit code for the character you want, then release the ALT key and your character will show up. A Euro sign is ALT+0128, for example.

    On OS X, you hit Shift-Option-2. Option-3 gives a pound symbol, Option-4 cents.

    You still have to get to know some of the shift-option combinations, but that's WAY easier than having to know all of the character codes for whatever you want to type. Less keystrokes too. Accented characters are somewhat easier, in that you can type the accent, and then the character you want to accent (so if you want a circumflex over a character you type Option-i, followed by the character to accent). Again, it's easier to remember one two-key stroke to get the accent you want, followed by typing the letter you need accented than remembering half a dozen four-digit numeric codes. OS X does this way better than Windows.

    Yaz

  284. Just an ordinary user who is a poor typist by rssrss · · Score: 1

    Yes. Caps Lock is useless to me. One of these days I will install a utility to disable it.

    Other keys:

    I use : about ten times for every ; I use. Why aren't they in the opposite order.

    In the old typing days. the . and , keys were often doubled, i.e. shift . was . and shift , was , It was actually faster for me that way. I don't use < and > enough to have them on that part of the keyboard. Ironically, on /. you have to type four characters to make those things appear.

    While we are moving > and < can we move [ and ] and { and }. I actually use ( and ). If they were down on the [ and ] keys, it would save me some effort. I know that some programers use { and } a lot, but ordinary users don't.

    Also, even in this internet age, I use ? which is part of ordinary English grammar, a lot more than /. Why not put / with \ and send | to some place where kind folks can give it a nice home? Then double the ? like the . and the ,

    I would also like to say that I like and appreciate my right mouse button. I know it is anathema on Macs, but Windows makes good use of it.

    --
    In the land of the blind, the one-eyed man is king.