Skip to content

Instantly share code, notes, and snippets.

@wkjagt
wkjagt / audio-book-reader.md
Last active September 3, 2025 19:58
How I built an audio book reader for my nearly blind grandfather

#How I built an audio book reader for my nearly blind grandfather

Tweet this - Follow me

Last year, when visiting my family back home in Holland, I also stopped by my grand-parents. My grand-father, now 93 years old, had always been a very active man. However, during the presceding couple of months, he'd gone almost completely blind and now spent his days sitting in a chair. Trying to think of something for him to do, I suggested he try out audio books. After finally convincing him -- he said audio books were for sad old people -- that listening to a well performed recording is actually a wonderful experience, I realized the problem of this idea.

####The problem with audio devices and the newly blind. After my first impulse to jump up and go buy him an

@jotux
jotux / test1.c
Last active April 14, 2023 20:32
Embedded C Interview Questions
// What is the expected output?
main()
{
int a;
int b;
for (a = 0,b = 0;a < 10,b < 5;a++,b++)
{
printf("%d %d\n",a,b);
}
return 0;