Live data from Hacker News

Ask HN: What are the things that you have automated in your personal life?

news.ycombinator.com

371–380 of 749 posts

Re: Ask HN: What are the things that you have automated in your personal life?

#371
post #327

Earlier quoted context omitted.

I want to do something similar with my Lifx lights, they would glow green in the morning if the train is 10 mins away, they would glow red if its 5 mins away which means I wont be able to walk to the station and catch it.

My little light script is here if you want to see how it's hitting an a web API for the weather, then talking to the bulbs: https://github.com/egypturnash/weatherlight It ain't pretty, and the menubar app part of it stopped working a while back, but it still does the job.

Thanks, will play with it this weekend.

Re: Ask HN: What are the things that you have automated in your personal life?

#372

1. When I plug my camera's SD card into the front of my Linux server it automatically copies off any new photos and sorts them into a YYYY/DD/MM folder structure. 2. I wrote a cryptocurrency trading bot because I'm too lazy/uninterested to actually learn anything about the market. It seemed to do pretty well when the market was flat or going up. Hard to tell if it's doing badly now or if it's just reflecting the stat…

What exchange service are you using in #2?

Re: Ask HN: What are the things that you have automated in your personal life?

#373
post #327

Colored lights (LIFX) change color automatically during the day. mostly thanks to their scheduling, though the one in the foyer changes color based on both the time of day and on the temperature and rain forecast - during the day I can glance at the light and know how to dress. That happens with a Python script on my computer, which I should really move to the Raspberry Pi in the living room that I could leave on 24-…

I want to do something similar with my Lifx lights, they would glow green in the morning if the train is 10 mins away, they would glow red if its 5 mins away which means I wont be able to walk to the station and catch it.

You need to follow a gradient

Re: Ask HN: What are the things that you have automated in your personal life?

#374

1. When I plug my camera's SD card into the front of my Linux server it automatically copies off any new photos and sorts them into a YYYY/DD/MM folder structure. 2. I wrote a cryptocurrency trading bot because I'm too lazy/uninterested to actually learn anything about the market. It seemed to do pretty well when the market was flat or going up. Hard to tell if it's doing badly now or if it's just reflecting the stat…

What exchange service are you using in #2?

And sorry, that folder structure in #1 has no sense

Re: Ask HN: What are the things that you have automated in your personal life?

#378
Oh boy, great question. Over the last couple of months, I've been writing apps for a single user: me. Here's what all I've built so far:

1. A custom twitter client

I feel like tweeting whenever I get an insight so I post a tweet several times a day. But I whenever I used to tweet, I'd get pulled into an endless stream of notifications and timeline. So I wrote myself a client that does only one thing: posting of tweets. It has no timeline, no notification. In case you want to use it, it's hosted on https://tweetaway.herokuapp.com/

2. Site-specific search (along with Google)

I find great content on HN, so I built myself a stupidly simple website which opens up Google.com and site:ycombinator.com +keyword whenever I search. Using it, I've come across so many interesting threads that I would have never discovered. E.g. when I searched for entropy, I came across this gem: https://news.ycombinator.com/item?id=14709896

You can access it at https://dualsearch.glitch.me/ (you'll require a Chrome addon to modify Cross-origin headers because Google doesn't open in Iframe)

3. I miss my cat at work, so I built a Chrome plugin that shows an icon of her + a funny one-liner https://chrome.google.com/webstore/detail/orbit-the-cat/fjni...

4. Last weekend, I wrote a twitter bot that retweets my old tweets that got many retweets (to resurface them in US timezone, because at that time I'm asleep)

Re: Ask HN: What are the things that you have automated in your personal life?

#379
Pushing music onto my phone. I have Termux installed, and can thus run `sshd` on Termux (I have ssh keys copied over), and then copy any music I want into a temporary directory on my desktop and use https://github.com/ehmry/dir2opus to convert everything to 96kbps opus and push it over using rsync and then cleanup the temporary directory:

`python2 ~/builds/dir2opus/dir2opus -a -b 96 --delete-input . -r && rsync -av --progress -e "ssh -p 8022" . 192.168.1.111:"/sdcard/Music/music-OPUS/" && rm ./* -rf #music`

Likewise audiobooks, but to 24kbps opus:

`python2 ~/builds/dir2opus/dir2opus -a -b 24 --delete-input . -r && rsync -av --progress -e "ssh -p 8022" . 192.168.1.111:"/sdcard/Audiobooks/" && rm ./* -rf #audiobooks`

Re: Ask HN: What are the things that you have automated in your personal life?

#380

Oh boy, great question. Over the last couple of months, I've been writing apps for a single user: me. Here's what all I've built so far: 1. A custom twitter client I feel like tweeting whenever I get an insight so I post a tweet several times a day. But I whenever I used to tweet, I'd get pulled into an endless stream of notifications and timeline. So I wrote myself a client that does only one thing: posting of tweet…

For searching HN, also (using searx.me): `ddg !hn topic here`
Post reply on HN