Not sure if it counts as tech, but I created a voiceboard for my mother to help her communicate while in hospice. She had a massive stroke and could no longer speak. I thought of a tablet app, but the stakes were too high, so it wound up as a laminated paper. You can read about my design decisions here: https://voiceboard.org
Ask HN: Most interesting tech you built for just yourself?
961–970 of 1001 posts
Re: Ask HN: Most interesting tech you built for just yourself?
#962where all you do is input the queries your application needs and then it will automatically determine which columns are affected & do all caching / cache invalidation for you.
I have it to the point where due to Redis being able to push onto a list that only writes hit the database & it even will update the cache keys automatically so that after an insert or update the cache is still hot.
Re: Ask HN: Most interesting tech you built for just yourself?
#963- our puppy would bark in his room
- I set up a web based interface to generate commands via the Linux utility espeak
- I trained him to be quiet when he the espeak "quiet" word played
- The first time I did this from the other room and he stopped barking, my wife was impressed
Re: Ask HN: Most interesting tech you built for just yourself?
#964Re: Ask HN: Most interesting tech you built for just yourself?
#965Throwaway time! I built a custom smart motorized masturbator. It borrows from 3D printer design, and has a NEMA 17 stepper motor driving a 2GT belt loop around a short length of 2020 extrusion to slide a carriage along a linear rail. The carriage has attachment points that I've put clamps on, that close around a fleshlight-style sheath. There's a brace at the business end that you put around the base of the penis and…
Re: Ask HN: Most interesting tech you built for just yourself?
#966I created a todo thermal printer so that I can write messages whenever I remember something. For example when I'm lying in bed and I remember that I have to do something or reading a book and think that's a great thought that I should look more into someday. Basically I have a mobile app that I can send a message to a api. Sometimes it's just a note, sometimes it is a todo item. Then I have a raspberry pi that polls…
Re: Ask HN: Most interesting tech you built for just yourself?
#967My grandmother has dementia. About twice a day, she calls my parents every 5 minutes, forgetting that she just hung up. The calls are always the same: "You live there now. Yes you have money. We came to visit you yesterday." This can go on for an hour or so. My parents are incredibly patient, but after a couple of these calls, they'll just leave the phone to ring. The soundtrack of the phone constantly ringing in the…
Re: Ask HN: Most interesting tech you built for just yourself?
#968I have a rail line right under my apartment, so I built a small computer vision app running on a Rasperry Pi which records each train passing, and tries to stitch an image of it. It has a frontend at https://trains.jo-m.ch/ . Edit: it's currently raining and the rain drops are disturbing the images a bit.
Re: Ask HN: Most interesting tech you built for just yourself?
#969I just moved to the bay area. I made an app that scrapes all bay area events from meetup, eventbrite, and a couple of other sites- This way you end up with around 100 events a day, way too much to read through. So next I take each event, send it to chatgpt3.5 and ask it to rate this event on around 20 parameters. Next, I take the latitude/longitude of each event and measure driving distance from my house. Then I have…
Re: Ask HN: Most interesting tech you built for just yourself?
#970I built a program in Go to defeat GeoIP lock-outs for my home network. It runs on our home router and functions as the primary DNS server. If the record name matches a regex the DNS request is forwarded over a VPN to a DNS server in the target country. Any other requests are forwarded to my ISP’s DNS. If the response is a CNAME then the A record name is cached so that follow-up requests are also forwarded over the VP…