Tagged Questions
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 ...
4
votes
1answer
747 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
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
917 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
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
446 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
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. ...