None of the answers were about the questions I had about how to program when you're blind. While the tools they use are interesting. I'm more concerned with how you would browse the code. Say you wanted to find a method, how do you scroll in a large file to locate it? I guess deft use of find & go to definition helps out here. How do you locate a line of code in a large function? Do you have to listen for the screen…
This is certainly one of the harder aspects of programming blind - particularly tackling a large, unfamiliar, codebase. In the case of a new project, I build up a mental map of how the program works - and memorise the conceptual organisation. With an existing codebase go-to-definition is invaluable, and stepping through in a debugger is just as useful for a blind person as for anyone - you get to see the lines in the…
How can you program if you're blind?
31–40 of 48 posts
Re: How can you program if you're blind?
#32None of the answers were about the questions I had about how to program when you're blind. While the tools they use are interesting. I'm more concerned with how you would browse the code. Say you wanted to find a method, how do you scroll in a large file to locate it? I guess deft use of find & go to definition helps out here. How do you locate a line of code in a large function? Do you have to listen for the screen…
I suspect Braille displays help with those sort of problems.
Re: How can you program if you're blind?
#33Does anyone know a service that will review your website for accessibility? I don't have a budget to pay them, but I'd be willing to put in reasonable recommendations. I do already use alt attributes and label tags on everything.
Re: How can you program if you're blind?
#34I am curious about what blind programmers consider to be aesthetically appealing code.
Re: How can you program if you're blind?
#35I was part of the team that rebuilt Narrator (the built in screen reader for Windows) for Vista. A few days after we had a minimal version running I tried to use it with Visual Studio to make a small change with the monitor turned off. For me it was next to impossible.
Re: How can you program if you're blind?
#36Re: How can you program if you're blind?
#37Interesting. This post has inspired me to actually improve the usability of my sites. Anyone have any good guides? Strangers for Dinner and edgeyo are pretty much text-driven, but what about CSS layout etc? Will screenreaders parse those?
Re: How can you program if you're blind?
#38I imagine it would be hard for a blind programmer to program using Python, Coffeescript and other language where white space plays important part. Can anyone give more insight about this?
Re: How can you program if you're blind?
#39Does anyone know a service that will review your website for accessibility? I don't have a budget to pay them, but I'd be willing to put in reasonable recommendations. I do already use alt attributes and label tags on everything.
Ping me on Twitter and I can take a quick look. @cannona
Re: How can you program if you're blind?
#40I imagine it would be hard for a blind programmer to program using Python, Coffeescript and other language where white space plays important part. Can anyone give more insight about this?
Python is one of my favorite languages to program in, but the white space thing was an issue for a while. Fortunately, I found an editor that will work well with my screen reader and will tell me what level of indenting I'm at, so it's now just a mild annoyance. However, when browsing on the web or elsewhere outside my editor, I do find myself occasionally counting spaces if it's not obvious from the context what ind…