Tagged Questions
The qwerty tag has no wiki summary.
12
votes
6answers
3k views
An Ideal Keyboard Layout for Programming
I often hear complaints that programming languages that make heavy use of symbols for brevity, most notably C and C++ (I'm not going to touch APL), are difficult to type because they require frequent ...
12
votes
7answers
1k views
Mnemonic Password Generation Algorithm for QWERTY Keyboards
I've a "mnemonic" password generation function that goes something like this:
function Mnemonic($mnemonic)
{
$result = null;
$charset = array(str_split('aeiou', 1), ...
11
votes
17answers
3k views
Keyboard layout [closed]
Similar but different to Keyboard for programmers, simply put, what keyboard layout is the best?
I'm using Colemak and it's good but I don't think it's actually faster than Qwerty. Dvorak was ...
10
votes
3answers
1k views
How do you get the number keypad to come up in an iPhone webApp?
On a web page that is to be displayed on an iPhone, is there a way to get the number pad to come up when the user taps in the field, instead of the qwerty keypad?
This guy says here's how to do it, ...
7
votes
4answers
319 views
Determining how difficult a word is to type on a QWERTY keyboard
I'm looking for a reasonably simple algorithm to determine how difficult it is to type a word on the QWERTY layout.
The words would not necessarily be dictionary words, so a list of commonly mistyped ...
4
votes
1answer
748 views
allow users to switch between input languages inside a j2me java midlet keyboard qwerty E71 and such
We have a midlet that needs to allow the user to switch input languages on the fly (its a dictionary type app) between several languages (say English to Arabic etc). All was charming in the "old days" ...
4
votes
6answers
2k views
Mac Style “Dvorak - Qwerty Command” keyboard mapping for Windows?
i would be interested in switching to Dvorak keyboard layout. The problem that everyone runs into is that common programming(1) keyboard shortcuts, such as:
Ctrl+C
Ctrl+V
Ctrl+Z
will no longer be ...
4
votes
13answers
709 views
Is it possible to be ambikeyboardrous?
I switched to the dvorak keyboard layout about a year ago. I now use dvorak full-time at work and at home.
Recently, I went on vacation to Peru and found myself in quite a conundrum. Internet cafes ...
2
votes
1answer
25 views
qwerty keypad existence checking on andrid device
I am new to android, I want to detect whether my android device is having QWERTY keypad and camera or not through coding.
can anybody help me please.
For any help Thanks in Advance.
2
votes
4answers
51 views
How could I detect if a character close to another character on a QWERTY keyboard?
I'm developing a spam detection system and have been alerted to find that it can't detect strings like this - "asdfsdf".
My solution to this involves detecting if the previous keys were near the ...
2
votes
1answer
921 views
can I rearrange the keys on a das keyboard from QWERTY to Dvorak? [closed]
I hate to ask this here, but many people on stackoverflow have talked about the Das.
I want to get the version with the printed keys - and since they don't sell a printed key version already set up ...
1
vote
3answers
259 views
Pair Programming with Qwerty and Dvorak keyboard layouts
Is it possible to plug in 2 keyboards and have one with Dvorak layout and the other with QWERTY layout? (On OSX)
1
vote
2answers
107 views
Most common keystrokes? [closed]
Does anyone have a list of the most commonly pressed keys on an English QWERTY keyboard?
1
vote
1answer
447 views
Intercepting the Nokia Ctrl/Chr key press in Java
I'm trying to intercept the Ctrl/Chr key on a full QWERTY Nokia device (E71). It seems like the keyPress event isn't generated for this particular key.
Any ideas?
0
votes
1answer
54 views
Keyboard didn't appear, FBConnect on iphone
I follow this guide to integrate facebook on my app iPhone: here
But When I click FConnect and I try to insert my user and psw didn't appear the keyboard:
0
votes
1answer
1k views
Qwerty Keyboard in HTML
I need a QWERTY keyboard using HTML buttons, which enters the typed info into a text field. I can put one together, but it seems that this must have been done before, and I hate to reinvent the wheel. ...