As I was eyeballing some beautifully indented code earlier today, it struck me:

Programming is a primarily mental task, but it must be catastrophically difficult if one were blind.

If you were blind, what would you want in a programming language? Would verbosity help, or would it actually make it more difficult to keep your place in the code?

Would a language closely resembling your native tongue be the easiest, or would a specialized language designed specifically to be easy to remember and "keep in your head" ultimately be the better choice?

I imagine that a good IDE would be vital. For example, if I were listening to my code, I would want the ability to "jump back" to the beginning of the current scope and recite everything up to my cursor's position.


What traits would make make a programming language easier for a blind person?

link

5  
Awesome links! Thanks! – ClosureCowboy Dec 10 '10 at 5:24
feedback

locked by Tim Post Sep 17 '11 at 15:19

This question exists because it has historical significance, but it is not considered a good, on-topic question for this site, so please do not use it as evidence that you can ask similar questions here. This question and its answers are frozen and cannot be changed. More info: FAQ.

closed as not constructive by ChrisF, Tim Post Sep 17 '11 at 15:18

This question is not a good fit to our Q&A format. We expect answers to generally involve facts, references, or specific expertise; this question will likely solicit opinion, debate, arguments, polling, or extended discussion. See the FAQ for guidance on how to improve it.

6 Answers

up vote 5 down vote accepted

I happened to have had a blind classmate in several of my comp sci classes. Got to hear how a C program sounds in a screen reader. Sounds something like this:

pound sign include less than sign es tee dee i o dot h greater than sign int main left paren right paren left brace print-f left paren quote hello world backslash n quote right paren semicolon return zero semicolon right brace

So, the main feature I'd want in a language is pronounceability. Keywords and functions that are words instead of punctuation like # or random jumbles of letters like strpbrk. And needless to say, the coding conventions should disapprove of Hungarian notation.

This implies case-insensitivity. It's one thing to distinguish between Var and VAR. It's another to distinguish between "capital V small A small R" and "capital V capital A capital R".

link
Those are awesome points, and case-insensitivity was something that never even crossed my mind. – ClosureCowboy Dec 10 '10 at 6:38
feedback

I personally would suggest FORTH for several reasons:

  1. Lack of nesting: no long braced or parenthesized block of code makes screen reading easier.
  2. Shortness of code: most functions are a single line long!
  3. Case insensitive: makes writing and reading code easier.

And unlike Lisp, no parenthesis (well, less parenthesis. parens are use for comments).

FORTH is widely used by hardware engineers to test their hardware designs because it's easy to type a small amount of code interactively and get the hardware to respond without having to deal with pesky things like APIs and frameworks. As an anecdote, I've once seen a friend remote-debug a piece of hardware by relaying lines of FORTH code over the phone.

link
+1 I had never looked at Forth before! I thought I had become familiar with every (non-trollish) "genre" of programming language... – ClosureCowboy Dec 11 '10 at 3:50
feedback

I would want it to somehow include a bathrobe, pipe, newspaper, fireplace, and someone, who never sees anything but the back of my high back red chair, to dictate code to.

In all seriousness though, something without braces would be a must. For starters

link
feedback

Lisp.

As much as I personally can't stand the language, its extreme simplicity in syntax and its case-insensitive nature for symbols would make it ideal for a text reader. The only possible problem I could foresee would be the plethora of parentheses: "open parentheses open parentheses open parentheses open parentheses open ..." This could be mitigated with one of the better text readers that can be programmed with the smarts to say things like "six open parentheses".

link
feedback

Code is simply a means of building a tree structure for the compiler. For example .Net has many languages that all use the same framework and compile to a Common Language Runtime. All of these langues currently rely heavily some form of textual syntax. But it wouldn't have to if a user could manipulate the structure using speech recognition and voice synthesis.

  • Intellisense that speaks
  • A non-visual way to query and navigate program structure. Maybe some sort of reflection or CodeDOM that accepts voice commands.
  • A way to manipulate that structure using simple voice commnads.
  • A smart way to format the output for visual users so that non-visual programmers can write code that is readable to other programmers without having to worry about formatting.

Perhaps this could be accomplished by transforming existing code to and from some sort of non-visual meta-language.

link
feedback

To answer your question with a counterexample: much as I like Python, I'd have to say the significance of whitespace would make it a rather bad language for a blind programmer.

link
feedback

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