Skip to main content

One-handed typing?

I separated my right shoulder so that arm is going to be out of commission for a while.  (I am right-handed.)  I'm managing about 25 wpm with one hand, or about 1/4 my normal speed.  This is frustrating.  The Handkey Twiddler has been out of production for a while.  The BAT is not OS X compatible. Anyone tried the Half Qwerty keyboard?  Are there other good options for under, say, $300?  (I found several very niche products for significantly more.)

I do plan to try voice recognition for email and IM but I can't see that working very well for code.

Comments

Anonymous said…
There are right-handed and left-handed dvorak layouts, I think.
Anonymous said…
*one-handed, that is
Anonymous said…
http://en.wikipedia.org/wiki/Image:KB_Dvorak_Left.svg
jester02k said…
I have tried frog pad in the past it works ..ok but I think i just didn't give it enough time.
http://www.frogpad.com/
then there was Matias half keyboard I almost bought it but my hand had healed enough so I didn't buy it but it did look interesting better than the frog pad.
http://www.matias.ca/halfkeyboard/
I know the agravation your going through i was the worst time for me
Good Luck
Anonymous said…
http://blag.xkcd.com/2007/08/14/mirrorboard-a-one-handed-keyboard-layout-for-the-lazy/
Nikhil said…
try Dasher ( http://www.inference.phy.cam.ac.uk/dasher/DasherSummary.html ). Even if you don't like it, the technique looks really cool
the daniel said…
I have a frogpad - I find it sufficient, after some practice.
Unknown said…
If you don't mind a little soldering, you could make your own custom one-handed chording keyboard.
mike bayer said…
feel better ! we need your code to keep coming.....
I've flirted with Dvorak in the past and had success with it. Never the 1-handed variety, but it might be worth a shot. It really doesn't take much time to "go back" to a traditional layout.

It took me about 2 weeks to overtake my qwerty speed with dvorak - the only reason I dropped it was I was having to use too many machines that I couldn't control layout over.
Philip Jenvey said…
ouch, get better soon!
Nate75Sanders said…
Kinesis sells some foot pedals/switches that you might find useful -- pedals for modifier keys, maybe, and that way you get to use your left hand entirely for non-modifiers. I've heard of people with 2 healthy limbs/hands using them for emacs chording to fight carpal tunnel.

-- Nate
Anonymous said…
Although it's been awhile since your post, I was curious to see what you decided on. Time for a follow-up post?

A buddy of mine shattered both his wrists in a motorcycle accident and went over to one of these datahand dual hand kbs, http://www.atpm.com/7.05/datahand.shtml and did really well, but they don't seem to be made any more.

And there's the original price tag of $1,000+ (ooch).
Viagra said…
Left-handed people are one of the most discriminated beings in society. Most of all the items are design to be used by right-handed persons.
Peter said…
I know this post is a bit old, but I'll post anyway if anyone out there finds this and is looking for a good one-hand keyboard solution.

I'm the developer of a software-based implementation of this one-hand keyboard concept. It's all software, so no need to buy an expensive hardware keyboard. Use the app with your laptop or your favorite keyboard.

The main advantage is that it uses predictive text. So no need to do the "press a modifier key to get the other letter" thing. Just tap "tges" and it will figure out that the word you want is probably "this".

Give it a try if you've injured your arm/hand/fingers:
http://onehandkeyboard.org

Popular posts from this blog

The Missing Piece in AI Coding: Automated Context Discovery

I recently switched tasks from writing the ColBERT Live! library and related benchmarking tools to authoring BM25 search for Cassandra . I was able to implement the former almost entirely with "coding in English" via Aider . That is: I gave the LLM tasks, in English, and it generated diffs for me that Aider applied to my source files. This made me easily 5x more productive vs writing code by hand, even with AI autocomplete like Copilot. It felt amazing! (Take a minute to check out this short thread on a real-life session with Aider , if you've never tried it.) Coming back to Cassandra, by contrast, felt like swimming through molasses. Doing everything by hand is tedious when you know that an LLM could do it faster if you could just structure the problem correctly for it. It felt like writing assembly without a compiler -- a useful skill in narrow situations, but mostly not a good use of human intelligence today. The key difference in these two sce...

Why PHP sucks

(July 8 2005) Apparently I got linked by some PHP sites, and while there were a few well-reasoned comments here I mostly just got people who only knew PHP reacting like I told them their firstborn was ugly. These people tended to give variants on one or more themes: All environments have warts, so PHP is no worse than anything else in this respect I can work around PHP's problems, ergo they are not really problems You aren't experienced enough in PHP to judge it yet As to the first, it is true that PHP is not alone in having warts. However, the lack of qualitative difference does not mean that the quantitative difference is insignificant. Similarly, problems can be worked around, but languages/environments designed by people with more foresight and, to put it bluntly, clue, simply don't make the kind of really boneheaded architecture mistakes that you can't help but run into on a daily baisis in PHP. Finally, as I noted in my original introduction, with PHP, ...

A week of Windows Subsystem for Linux

I first experimented with WSL2 as a daily development environment two years ago. Things were still pretty rough around the edges, especially with JetBrains' IDEs, and I ended up buying a dedicated Linux workstation so I wouldn't have to deal with the pain.  Unfortunately, the Linux box developed a heat management problem, and simultaneously I found myself needing a beefier GPU than it had for working on multi-vector encoding , so I decided to give WSL2 another try. Here's some of the highlights and lowlights. TLDR, it's working well enough that I'm probably going to continue using it as my primary development machine going forward. The Good NVIDIA CUDA drivers just work. I was blown away that I ran conda install cuda -c nvidia and it worked the first try. No farting around with Linux kernel header versions or arcane errors from nvidia-smi. It just worked, including with PyTorch. JetBrains products work a lot better now in remote development mod...