6
votes
5answers
238 views
Breaking CAPTCHAs for a Noble Purpose
CAPTCHAs that ask users to read distorted text are fine for sighted people, but a terrible barrier for those who are blind or have other disabilities. Audio alternatives are occasionally available but …
41
votes
12answers
1k views
How can you program if you’re blind?
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 …
0
votes
2answers
72 views
Simple Toggle with Mootools: What am I doing wrong?
<script type="text/javascript">
$(document).ready(function(){
$("#trigger").click(function () {
$("#trigger-banner").toggle();
});
</script>
Help? Thanks!
34
votes
9answers
2k views
Is there a way to convert indentation in Python code to braces?
I am a totally blind programmer who would like to learn Python. Unfortunately the fact that code blocks are represented with different levels of indentation is a major stumbling block. I was wondering …
1
vote
5answers
101 views
Yellow text showing up on website, but hard to troubleshoot
We have gotten several emails and phone calls about yellow text appearing on our webpages at http://www.ciu.edu.
We are specifically using a black text in the stylesheet. It is on a tan background.
…
1
vote
5answers
91 views
making websites accessible to visually impaired people?
can anyone give me some tips or hook me up with some good links on this?
i'm having trouble finding much more than 'add alt text to the images' and i'm not sure how current the info is...
i get the …
0
votes
2answers
166 views
Blind with jQuery
I'm trying to write a blind function that would close a DIV in a display:none mode.
The unseen DIV is inside a wider DIV, containing the blind trigger.
This:
$(document).ready(function(){
…
0
votes
2answers
63 views
Same JS function — Many times?
I previously got this (useful!) answer about using .next() for same DIV blind effect.
However, I can't seem to get this simple function to work for more than one DIV at the same time:
…
22
votes
7answers
475 views
Best languages to teach a blind adult the basics of programming?
I have a friend who is blind and wants to learn how to program. I’m also blind but I taught my self how to program on an old computer with a version of gwbasic and an audio book written in 1980 which …
