Most active commenters
  • mltony(4)

←back to thread

1901 points l2silver | 17 comments | | HN request time: 0.474s | source | bottom

Maybe you've created your own AR program for wearables that shows the definition of a word when you highlight it IRL, or you've built a personal calendar app for your family to display on a monitor in the kitchen. Whatever it is, I'd love to hear it.
1. mltony ◴[] No.35748200[source]
Blind developer here; I often write tools for myself to perform some task that is not well supported by my screenreader. For example:

* I wrote an add-on that allows me to read HN comments in a structured way. A typical screenreader would present page in a linear manner, so you'd have to read all replies in order, which is quite tedious in popular posts. My add-on parses the page and identifies the level of each comment, and then I can navigate to previous/next comment at any level. So I can quickly check top-level comments and then read replies only if I'm interested.

* Another add-on makes Jupyter edit boxes to work with my screenreader. Jupyter was requiered at my company , so I either had to write that add-on or else. The way it works is that it sends Control+C Control+V keystrokes to the browser to retrieve contents and then presents them to me in an accessible window for editing. When I'm done it would Control+A Control+V new content back to edit box.

* BlindCompass - iOS app that I wrote for myself to navigate on the streets. One of the problems of blind people is that it is easy to lose the sense of heading, e.g. where is north vs South. So BlindCompass would read my heading and present it as a two-pitch sound, that allows me to deduce rough direction. It's also easy to figure out the right direction and just maintain it, so with BlindCompass I can cross large open spaces easily.

replies(6): >>35748655 #>>35753082 #>>35754172 #>>35754898 #>>35758113 #>>35764299 #
2. justusthane ◴[] No.35748655[source]
BlindCompass sounds (pun not intended) brilliant! Did you have inspiration for this or was it an original idea? Not any less impressive either way, just curious as someone who’s not at all family with this space.
replies(4): >>35748780 #>>35749454 #>>35750183 #>>35754570 #
3. tnel ◴[] No.35748780[source]
Reminds me of season 5 of person of interest where the super intelligent AI known as "the machine" is giving relative directions to a character using ascending tones for right and descending for left, or something like that. The other character preferred directions in positions on an analog clock.
replies(2): >>35750176 #>>35750330 #
4. heed ◴[] No.35749454[source]
Reminded me of this: https://sensebridge.net/projects/northpaw/. Saw this linked on HN somewhere back in 2012 or so.
5. lucubratory ◴[] No.35750176{3}[source]
That was actually season 2! The final episode, I just watched it last week on a rewatch of the show. A lot of it feels pretty prescient right now, although not quite as intense as when the Snowden leaks happened and confirmed all of the government illegality of the show but none of the AI lol.
6. HanShotFirst ◴[] No.35750183[source]
Reminds me of the train puzzle in Myst!
7. Cyphase ◴[] No.35750330{3}[source]
Haha, this was my immediate thought as well! That was awesome. Root is a badass.

As the sibling says this was the season 2 finale. There were other similar instances.

S02E22 "God Mode": https://www.youtube.com/watch?v=cHIo96yBf70 (3m54s)

8. dahart ◴[] No.35753082[source]
BlindCompass is neat! My child told me that she had learned about the existence of compass implants and wants to get one. Would that be useful from your perspective?
replies(2): >>35753997 #>>35754695 #
9. Viliam1234 ◴[] No.35753997[source]
Implants? Sounds too hardcore. But I remember some people talking about compass anklets; you put one on your leg and it gives a signal (vibration?) on the north side. They said it can greatly improve your orientation on a hike, even if you do not pay conscious attention to the anklet.

(This happened years ago, I do not remember more details.)

10. shariqm ◴[] No.35754172[source]
Those are pretty cool screen reader add-ons. Do you use JAWS, NVDA, or something else?
replies(1): >>35754477 #
11. mltony ◴[] No.35754477[source]
I use NVDA. Here is that add-on if you're interested: https://github.com/mltony/nvda-browser-nav/
12. mltony ◴[] No.35754570[source]
I got the idea when I was learning to cross a wide street with a white cane. three lanes in each direction - and it proved to be a challenge because I would veer left or right and frequently get confused and lost. Then I thought a compass would be helpful, but a quick survey of compass apps on iOS showed that they are either visual, or show your heading as a number that can be read by VoiceOver, but it is still not very practical. So I thought that I need to encode heading as something that my brain can easily decipher during crossing the street. I have prior musical training, so that's why I decided to encode heading as a musical interval. This allows my app to communicate with about 10 degrees precision and in practice this is well enough to go on a straight line for long enough to cross the street.
replies(1): >>35759611 #
13. mltony ◴[] No.35754695[source]
Very interesting idea. I think it depends on precision with which that implant can communicate heading. If precision is 10 degrees or less, this can actually be extremely useful to visually impaired people.
14. aedocw ◴[] No.35754898[source]
I'm not blind but I wrote an EPUB to Text-To-Speech reader using Coqui (a really good AI TTS project). There are books I wanted to listen to while doing other things, and I couldn't find audio-book versions of them, so this worked out perfectly. It could be that I did not do enough searching, but I was surprised I didn't see anything out there that already worked this way.

https://github.com/aedocw/epub2tts

15. tra3 ◴[] No.35758113[source]
Is this it? https://apps.apple.com/ca/app/blind-compass/id1546647415

I’m not blind but I have terrible time with directions and navigation. I’m gonna try it next time I have to stick to a general heading.

16. 6510 ◴[] No.35759611{3}[source]
I see someones cane get hit by a car one time causing him to lose orientation and make an almost 90 degree turn in the middle of the road. If the cane is pointed towards or away from traffic people don't even stop anymore.

This was actually long ago but it stuck with me. Just now I realized what perfect analogy for life it is. You move towards something, something interrupts the journey and then you just continue, thinking you are moving in the same direction.

17. elektrontamer ◴[] No.35764299[source]
This is one of the coolest things I've ever read. If you don't mind me asking, I'm really interested in how you read, write and edit code. What tools do you use? What's your typical workflow like?