vote up 41 vote down star
9

Sight is one of the senses a programmer take for granted. Most programmers would spend hours looking at a computer monitor (especially during times when they are in the zone).

I know there are blind programmers who can program (such as T.V. Raman who currently works for google).

If you were a blind person (or slowly becoming blind), how would you set up your development environment to assist you in programming?

(One suggestion per answer please. The purpose of this question is to bring the good ideas to the top. In addition, screen readers can read the good ideas earlier)

flag

58% accept rate

12 Answers

vote up 69 vote down

I am a totally blind college student who’s had several programming internships so my answer will be based off these. I use windows xp as my operating system and Jaws to read what appears on the screen to me in synthetic speech. For java programming I use eclipse, since it’s a fully featured IDE that is accessible.

In my experience as a general rule java programs that use SWT as the GUI toolkit are more accessible then programs that use Swing which is why I stay away from netbeans. For any .net programming I use visual studio 2005 since it was the standard version used at my internship and is very accessible using Jaws and a set of scripts that were developed to make things such as the form designer more accessible.

For C and C++ programming I use cygwin with gcc as my compiler and emacs or vim as my editor depending on what I need to do. A lot of my internship involved programming for Z/OS. I used an rlogin session through Cygwin to access the USS subsystem on the mainframe and C3270 as my 3270 emulator to access the ISPF portion of the mainframe.

I usually rely on synthetic speech but do have a Braille display. I find I usually work faster with speech but use the Braille display in situations where punctuation matters and gets complicated. Examples of this are if statements with lots of nested parenthesis’s and JCL where punctuation is incredibly important.

Update

I'm playing with Emacspeak under cygwin http://emacspeak.sourceforge.net I'm not sure if this will be usable as a programming editor since it appears to be somewhat unresponsive but I haven't looked at any of the configuration options yet.

link|flag
3  
truly amazing . congratulations ! – lurks Oct 30 '08 at 1:18
Having had a blind father, who was very computer aware, knowing what he went through to get windows accessable, your setup astounds me. congrats! :) – geocoin Jan 16 '09 at 10:02
3  
Assuming you use laptops too: do you ever turn the display off to extend battery life? Because that would be made of so much win. – Jens Roland Jan 27 at 7:25
I've checked into it but I can't figure out a way to turn off the monitor on my laptop and keep it off when I press keys. If anyone knows how to do this on a del Vostro 1500 I'd appreciate it google isn't helping. – Jared Feb 5 at 20:57
vote up 13 vote down

I'm blind, and have been programming for about 13 years on Windows, Mac, Linux and DOS, in languages from C/C++, Python, Java, C# and various smaller languages along the way. Though the original question was around configuring the environment, I think it's best answered by looking at how a blind person would use a computer.

Some people use a talking environment, such as T. V. Raman and the Emacspeak environment mentioned in other answers. The more common solution by far is to have a screen reader which runs in the background monitoring OS activity and alerting the user via synthetic speech or a physical braille display (generally showing somewhere from 20 to 80 characters at a time). This then means a blind person can use any accessible application.

So, I personally use Visual Studio 2008 these days, and run it with very few modifications. I turn off certain features like displaying errors as I type since I find this distracting. Prior to joining Microsoft all my development was done in a standard text editor like Notepad, so once again no customisations.

It is possible to configure a screen reader to announce indentation. I personally don't use this, since Visual Studio takes care of this, and C# uses braces. But this would be very important in a language like Python where whitespace matters. Finally, Emacspeak does make use of different voices/pitches to indicate different parts of syntax (keywords, comments, identifiers, etc).

link|flag
vote up 10 vote down

Emacs has a number of extensions to allow blind users to manipulate text files. You'd have to consult an expert on the topic, but emacs has text-to-speech capabilities. And probably more.

In addition, there's BLinux:

http://leb.net/blinux/

Linux for the blind. Been around for a very long time. More than ten years I think, and very mature.

link|flag
vote up 7 vote down

Hanselman had a really interesting podcast with a blind developer recently.

link|flag
vote up 7 vote down

Keep in mind that "blind" is a range of conditions - there are some who are legally blind that could read a really large monitor or with magnification help, and then there are those who have no vision at all. I remember a classmate in college who had a special device to magnify books, and special software she could use to magnify a part of the screen. She was working hard to finish college, because her eyesight was getting worse and was going to go away completely.

Programming also has a spectrum of needs - some people are good at cranking out lots and lots of code, and some people are better at looking at the big picture and architecture. I would imagine that given the difficulty imposed by the screen interface, blindness may enhance your ability to get the big picture...

link|flag
vote up 3 vote down

This blog post has some information about how the Visual Studio team is making their product accessible:

Visual Studio Core Team's Accessibility Lab Tour Activity

Many programmers use Emacspeak:

Emacspeak --The Complete Audio Desktop

link|flag
vote up 2 vote down

Here is a suggestion for coding and building...

  1. Braille Keyboard
  2. Compiler/Linker with speech feedback. So the build gives feedback using pre-recorded text on failure conditions.

iterative tests?

link|flag
vote up 2 vote down

One place to start is the Blinux project:

http://leb.net/blinux/

That project describes how to get Emacspeak (editor with text-to-speech) and has a lot of other resources.

I worked with one person who's eye sight all but prevented them from using a monitor - they did well with Screen reader software and spent a lot of time using text based applications and the shell.

Wikipedia's list of screen reader packages is another place to start: http://en.wikipedia.org/wiki/List_of_screen_readers

link|flag
vote up 1 vote down

Text to speech

link|flag
maybe speech to text? – Jurassic_C Sep 23 '08 at 3:51
vote up 1 vote down

What in the world would a braille keyboard even be??

There are such things as braille writers but you would never use one as an input device for a computer.

If you're simply talking about a keyboard with the braille symbols on it this would also be a very bad idea. You're going to have a lot more keys to reach while typing and it would still be slower.

Touch typing is NOT a visual skill, a blind person can do it just as well as a sighted person.

link|flag
A Braille keyboard has six keys, each representing one of the six dots that make up a Braille character. Most Braille keyboards also have extra keys for things like space, delete, forward, back, etc. Lots of pictures of Braille keyboards can be found in Google Images. – Barry Brown Jan 13 '09 at 23:59
That's the controls of a braille writer. You use that to produce braille output, you would never use such a device as an input device as it's MUCH slower than an ordinary keyboard. – Loren Pechtel Jan 14 '09 at 5:36
1  
there is no need for a braille keyboard, braille writer exist to write braille, not print. My dad was blind and could touch type faster than most sighted people. Braille output keyboards exist as it's easier than speech output in some situations. complex punctuation springs to mind in this context – geocoin Jan 16 '09 at 9:59
vote up 0 vote down

I can't recall the source, but I've heard/read about a form of audible syntax "colouring" - so that instead of a string assignment being read as

foo equals quote this is a string quote

the string part would be read with a different pitch or voice to make the separation of elements clearer.

link|flag
vote up 0 vote down

I think that this would work well in extreme programming using the pair programming principle. If you're making software for blind people, who better to make it then someone who would literally be in touch with the business requirements, so I don't think it's very far fetched at all.

As for writing code, well unless there was some kind of feedback I think a person may struggle with syntax. Audio feedback may help to a point though.

link|flag
3  
If I was making software for blind people, I'd just close my eyes. – John Millikin Sep 23 '08 at 3:47
If you write web pages you probably ARE developing for blind people! – Aidan Sep 29 '08 at 14:45
I worked (indirectly) with a blind programmer at my last co-op at IBM in the early 1990s, on ScreenReader/2 (extension to help blind people use OS/2). It can be done, and no pair programming is required. – M1EK Sep 2 at 21:26

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.