Live data from Hacker News

Ask HN: Does anyone use sound effects in their dev environment?

news.ycombinator.com

271–280 of 336 posts

Re: Ask HN: Does anyone use sound effects in their dev environment?

#275
Here's my very simple solution

Add this to your ~/.zshrc or ~/.bashrc

alias alertme='printf \\a; sleep 0.1; printf \\a; sleep 0.1; printf \\a; sleep 0.1; printf \\a; sleep 0.1; printf \\a'

I add this after longish tasks - eg:

python longtest.py; alertme

seeddb; alertme

Re: Ask HN: Does anyone use sound effects in their dev environment?

#276
I have a completely local dev environment for a cloud based project. It requires me to stand up a few things so I can mock resources like Google Cloud. It can sometimes take a bit to populate all the customer config, depending on the machine I’m using anywhere from 5 sec to 45 sec. I think I’m using systemd to pop a notification at the end of a lengthy start up script For everything.

Re: Ask HN: Does anyone use sound effects in their dev environment?

#280
I have scripts that run in the background to check for the health status of some systems I am monitoring. I use a program to display results on my wallpaper and I trigger a "say" command if it fails.

I also commonly use a "say" command to just get notified when a long running command is done.

Post reply on HN