Create an account


Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
[Tut] Lost Your Sight? How to Code as a Blind or Visually-Impaired Python Developer

#1
Lost Your Sight? How to Code as a Blind or Visually-Impaired Python Developer

<div><p>I’m a developer who is blind. I’ve been blind since very shortly after birth. I’ve never gone through losing my sight. I wanted to see if my perspective lined up with that of others who are blind, but have lost their sight later on in life. Here is what I found out:</p>
<p><strong>I reached out to parts of the blindness community</strong> in my network to see if anyone wanted to sit down and <strong>talk to me about their experiences</strong>. Six people replied to my query for interviews. I interviewed three of them for this article, and I plan on talking to the others after this writing.</p>
<p>I run an email group where other people who are blind hang out called <a href="https://www.freelists.org/list/pythonvis" target="_blank" rel="noreferrer noopener">Pythonvis</a>. Anyone else can join. I sent one query there. Another group I hang out on is called <a href="https://www.freelists.org/list/program-l" target="_blank" rel="noreferrer noopener">Program-l</a>. That group is broader in scope. Both groups cater to the unique needs of those of us who are looking for both programming help and help using the tools necessary to use our computers.</p>
<h2>Blind Developer Survey — Stories</h2>
<p>Before he lost his sight, <strong>Jeff Thompson</strong> learned to program while in college, using punch cards. He went on to have a career in the insurance industry. It wasn’t until much older that he lost his sight. Jeff is a member of Pythonvis and runs a weekly Python coaching session on a site called Out-of-site. </p>
<p><strong>Taylor Arndt</strong> studies Computer Science at Western Michigan University in the United States. </p>
<p><strong>Vaibhav Saraf</strong> is a software developer from India who lost his sight a little over a year ago.</p>
<p>All three told me that they went through a period where they were despondent about being unable to use their computer, but reached out and learned that they had a way out.</p>
<h2>How They Use Their Computer</h2>
<p>All three developers use software called screen readers. Screen readers speak what the user types into the computer and read what they want to know about the code they write. </p>
<p>Interestingly, the original IBM screen reader software was invented by <a href="https://jimthatcher.com/">Jim Thatcher</a>, who was not blind, but was influenced by his blind thesis advisor. <a href="https://en.wikipedia.org/wiki/Ted_Henter" target="_blank" rel="noreferrer noopener">Ted Henter</a>, who lost his sight in a car accident, invented the most popular screen reading software, JAWS, after he lost his site and went on to co-found <strong>FreedomScientific </strong>(<a href="https://www.freedomscientific.com/">https://www.freedomscientific.com/</a>), which has since become part of the Vispero group of companies. They also all use <a href="https://ww.nvda-project.org/">NVDA</a>, which was created by two blind developers.</p>
<p>NVDA is mostly written in Python and is open-source. One of the reasons I am learning Python is to contribute to that project.</p>
<h2>Programming Tools</h2>
<p>Jeff uses <a href="https://github.com/EmpowermentZone/EdSharp">EdSharp</a>, written in C# by Jamal Mazrui, himself a blind software developer, who works for Amazon.</p>
<p>Taylor and I use <a href="https://code.visualstudio.com/download" target="_blank" rel="noreferrer noopener">Visual Studio Code</a>, which has very strong support for those of us who use screen readers.</p>
<p>Vaibhav uses <a href="https://www.eclipse.org/">Eclipse</a>, which IBM contributed much code to enhance its ability to work with screen reading software.</p>
<h2>[Resources] How They Learned Python</h2>
<p>When I asked how they learned Python, they pointed me to resources, such as:</p>
<ul>
<li><a href="https://www.bookshare.org/">Bookshare</a>, a site that houses many books on both fiction and non-fiction subjects, including Python development.</li>
<li>Professors and team leads who provided them with material in HTML or PDF tagged so that it is able to communicate with screen reading software through accessibility tags similar to HTML, which communicates information about the structure of the documents, such as which elements are headings, tables, form fields, and so on.</li>
<li><a href="https://www.freecodecamp.org/">FreeCodeCamp.org</a> which is a non-profit group that teaches full-stack web development, which has recently branched out into a section on Python.</li>
<li><a href="https://www.w3schools.com">W3Schools</a>, which also has a Python curriculum.</li>
<li><a href="https://www.python.org">The official Python tutorial</a></li>
<li>Various other free resources on the web, some books, others forums.</li>
</ul>
<p>All of the above have in common that they are written in a form easy to consume by screen readers: HTML, DAISY, or EPub.</p>
<h2>How They Communicate On Projects</h2>
<p>All three said that email is something that is easy to use with screen reading software. They also all use Skype, Microsoft Teams, Zoom, or other communication software. All of these packages work with screen reading software. </p>
<p>Taylor and Vaibhav use Microsoft Word, so any specifications or instructions written as Word documents that have adequate text descriptions can serve as specifications for projects. Taylor and Vaibhav told me that wen professors or team members present course materials live that when they point to something on the board or when screen sharing that it helps to say the name of the thing they are pointing too, rather than “this,” or “Click this.” </p>
<p>It also helps to give directions on where to find something or perform an action to help build a mental model of the thing they are describing. At this point, screen reader users can share screens as presenters in communication software, but screen readers cannot communicate to the user the screens shared by others who are presenters. One way to off-set this disadvantage is to get the material before the presentation so they can read it over and become familiar with it.</p>
<h2>How They Understand Program Structure</h2>
<p>All three told me that they use their screen reader’s ability to communicate the number of tab characters appear at the beginnings of lines coupled with the colon characters at the beginnings of conditional expressions, loops, classes, and methods to gain a mental model of the code they work with. As we talked about this, Vaibhav said that he depends on his memory a great deal to understand code flow. </p>
<p>Screen readers can read a line at a time, a word at a time, and a character at a time, and if a developer is able to obtain a Braille display, they can read and follow indentation by using their fingers to feel the dots.</p>
<p>Another helpful tool to gain the understanding of program structure is the previews in Eclipse and Visual Studio Code that list symbols in outline form.</p>
<p>These conveniences for people who are sighted are essential for screen reader users in gaining efficiency, because they cannot glance down through a screen all at once and gain a quick overview of what the code or reading material may communicate. EdSharp also has a way to jump among symbols.</p>
<h2>What It’s Like Working With Other Team Members</h2>
<p>All three said that once those around them become familiar with their disability that they have no issues communicating and working efficiently with others.</p>
<p>They said that others are generally very willing to adapt their working style. </p>
<p>All three say that they are able to pull their own weight as equal contributors to projects. When it comes to working on open-source projects or any that involve using Git and sites like GitHub, command line Git works well with screen readers, because it uses pure text and screen readers and command line environments are good friends.</p>
<h2>Advice For Would-Be Programmers</h2>
<p>I asked all three what advice they would give to anyone who is blind who would like to go into programming. Points mentioned were:</p>
<ul>
<li>This is something you can do if you really want to. You can reach out to forums such as Quora, Stack Exchange, Reddit, etc. and find others in your situation. There are email groups, such as Python-vis, Blind Programming, and other lists that specialize in one language or another where blind people hang out.</li>
<li>You need to learn to use your screen reader to the fullest extent possible and to do all you can to make yourself as efficient as possible using the keyboard and the tools at your disposal.</li>
<li>Take advantage of the communities around your chosen screen reader.</li>
<li>You may need to use alternative tools or methods to do your job more efficiently. Speak up when you need to do this.</li>
<li>Keep looking for more efficient ways to accomplish tasks.</li>
<li>There is enough reading material on the web to enable you to get good at Python.</li>
<li>Don’t get hung up because someone gives you material you cannot read or understand. Find material on the same subject from somewhere else.</li>
<li>You will often find yourself in a situation in which you cannot read something or use some aspect of a piece of software. When reporting bugs, stick to the facts, be tactful, keep your emotions out of the conversation. Most people want to help, once they understand where you are coming from.</li>
<li>You will need to work harder than the people around you and be patient while they come to grips with your disability. This is a given.</li>
<li>Rely on your network of supporters, your faith, meditation, or whatever helps you gain positive energy.</li>
<li>There will always be well-meaning people in your life who will tell you that you cannot do this. Smile and do it anyway.</li>
</ul>
<p>To that I say Amen.</p>
<h2>About the Author</h2>
<p><em>Jim Homme is a former professional musician, father of three, husband, and a 32-year veteran in Information Technology. He loves to read and play chess. He leads a team of accessibility testers at <a href="https://www.benderconsult.com/" target="_blank" rel="noreferrer noopener">Bender Consulting Services</a>. He is the owner of <a href="https://www.jimhomme.com/">jimhomme.com</a>, where he writes about Python and related technologies.</em></p>
</div>


https://www.sickgaming.net/blog/2020/08/...developer/
Reply



Forum Jump:


Users browsing this thread:
1 Guest(s)

Forum software by © MyBB Theme © iAndrew 2016