I built an accelerometer-based washing machine sensor which sends a notification to my phone when the washing is done. This is useful because the machine itself has no indication when it's done: http://www.instructables.com/id/Washing-Machine-Notification...
My solution for this was an ESP8266-based Sonoff POW (wireless smart switch and power monitor), running Tasmota, sending data through MQTT to Home Assistant, scripted to send notifications through Telegram. https://www.itead.cc/sonoff-pow.html https://github.com/arendst/Sonoff-Tasmota https://www.home-assistant.io
Ask HN: What are the things that you have automated in your personal life?
291–300 of 749 posts
Re: Ask HN: What are the things that you have automated in your personal life?
#292Re: Ask HN: What are the things that you have automated in your personal life?
#293I have semi-automated cooking for the week ahead. We recently started cooking meals for the week ahead on Sundays and then freezing them. The aim was to give us more time with the kids and to cut down on housework. To save time on the Sunday cooking session I have cobbled together a very clunky, and I mean VERY clunky semi-automated cooking system. It comprises a Raspberry PI which controls a couple of WiFi mains swi…
Re: Ask HN: What are the things that you have automated in your personal life?
#294I have a robot lawn mower that is wire guided. Instead of the traditional lawn mowers that basically cut the grass in all directions (making a sloppy cut pattern) my mower knows how to cut in straight lines so you get a traditional cut pattern. It also has the ability to dump the grass cuttings into a composting bin. Basically, I put down wire guide cable into the lawn and into the cement as well. It is all powered b…
Do you have any information that would allow some to build something similar? Would love to see the setup!
Re: Ask HN: What are the things that you have automated in your personal life?
#295I automated my Investment Portfolio. My investment thesis is to buy high-growth tech company stocks with an upcoming earnings call in the next 90 days. I have a script that scrapes Yahoo finance and tells me which stocks to buy. Surprisingly it's worked well, and I've gotten a return of 44% last year
To clarify: I still have to execute the orders to buy and sell, but the thinking for when to buy and what to buy is automated. I just sell after the earnings or when I gain the desired amount (5-10% return)
Re: Ask HN: What are the things that you have automated in your personal life?
#296I've automated almost all of my diabetes management into a level I basically can look into graphs and decide the level I want my glucose to go. For glucose monitoring I use Dexcom G5 sensors[0] and xDrip[1] open source monitoring application for Android. Insulin delivery is handled by a Accu-Chek Spirit Combo[2] pump, that is one of the rare pumps with a Bluetooth connection. The entity deciding the basal rates and c…
https://www.nature.com/articles/s41541-018-0062-8
My little sister is type I and using the BCG vaccine in this way blows my mind.
Re: Ask HN: What are the things that you have automated in your personal life?
#297Ok, I'll bite! About 20 years ago I inherited enough money to retire on for the rest of my life. But the only evidence of those assets was, a dot matrix printout that anyone could have done in five minutes. So over the next few weeks, I created accounts in the various share registries and online banking websites, and manually cross-checked the printed list against those accounts. All was good, but I wanted to do that…
I have had my bank remove records from my online account, or not have the ledger balance add up, so your idea interest me. I contacted the controller of the currency about my bank messing with my records, and they did absolutely nothing.
Re: Ask HN: What are the things that you have automated in your personal life?
#298I have semi-automated cooking for the week ahead. We recently started cooking meals for the week ahead on Sundays and then freezing them. The aim was to give us more time with the kids and to cut down on housework. To save time on the Sunday cooking session I have cobbled together a very clunky, and I mean VERY clunky semi-automated cooking system. It comprises a Raspberry PI which controls a couple of WiFi mains swi…
Re: Ask HN: What are the things that you have automated in your personal life?
#299I used Tasker to make my phone vibrate in Morse code. Now I don't have to take it out of my pocket to read a notification.
[deleted]
[1] https://en.wikipedia.org/wiki/Morse_code#Speed_in_words_per_...
Re: Ask HN: What are the things that you have automated in your personal life?
#300Parsing my monthly credit card bill (PDF), categorizing, and displaying statistics.
Ooh, I've been looking for something like this. Could I ask how you parse your bills? Did you just hack together your own script or did you find a parser online? I tried doing this several times but it seems rather painful to get right since the formats can differ and since copying text from PDFs can sometimes ignore the table layouts and whatnot.
pdftk input.pdf output output.pdf uncompress
Then try grepping or using whatever tools you like (there will be binary parts of the file still, like embedded fonts and bitmaps).