Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What programming environment and toolchain would best accommodate web developers with severe muscular disabilities?

I have worked extensively in the area of accessible applications using TTS (Text to speech) and VR (Voice Recognition). I have had occasion to use one handed keyboards for extended periods of time. Traditional UNIX development (my nice little black box of joy) is losing market share to more modern technologies and development environments. Complex GUIs are frustrating by themselves and adding additional hardships has made them intollerable. Given the currently available choices Microsoft does seem to have the upper hand in enabling features in the environment to accommodate programmers with disabilities. This question might simply boil down to which environment and tool chain best supports automation and the notion that everything the GUI can do I can do effectively from the command line?

like image 553
ojblass Avatar asked Apr 05 '09 21:04

ojblass


1 Answers

Traditional UNIX development (my nice little black box of joy) is losing market share to more modern technologies and development environments.

While there are certainly many great IDEs out there today with support for web development like Visual Studio, Eclipse, and Netbeans, many web developers find them unnecessary and continue to work entirely in standard text editor like vi and emacs.

The unix platform has a very rich selection of contemporary web development frameworks - Ruby on Rails, and Django are two of the most popular today. You could develop an application using one of these frameworks without the use of an IDE entirely from the command line. Both of these frameworks are open source, free, and run on a variety of Unix and non-unixy platforms.

The gnome desktop has several accessibility features that might aid you in your development. The section on mobility impairments in the GNOME desktop accessibility guide might be the most relevant for you. That would give you the best of both worlds in that you'd have a very rich commandline environment, but could also run GUI apps and IDEs such as Eclipse. MacOS X might give you a similar benefit.

If you find the benefit from the MS Accessibility features in Windows too great to abandon, perhaps consider installing and learning to use Powershell. My understanding of Powershell is that it allows you to execute many GUI based tasks entirely from the commandline (allowing you to interact with Windows in a more unix like manner).

like image 86
Bayard Randel Avatar answered Jan 03 '23 15:01

Bayard Randel