Live data from Hacker News

Completion audio alerts for long running, remote jobs

derwiki.tumblr.com

1–10 of 10 posts

Re: Completion audio alerts for long running, remote jobs

#2
I like this idea a lot; however, I don't like beeps. Ubuntu (and possibly other linux distros) now supports desktop notifications via Notify OSD. So instead of having the other machine ssh to me and beep, instead I use a utility called "notify-send" to create a desktop notification pop-up. You can install notify-send on ubuntu using:

sudo apt-get install libnotify-bin

Then call notify-send like so:

notify-send "Back to work."

The text can be anything you want, and you can also supply a summary, an icon, etc.

Re: Completion audio alerts for long running, remote jobs

#3

I like this idea a lot; however, I don't like beeps. Ubuntu (and possibly other linux distros) now supports desktop notifications via Notify OSD. So instead of having the other machine ssh to me and beep, instead I use a utility called "notify-send" to create a desktop notification pop-up. You can install notify-send on ubuntu using: sudo apt-get install libnotify-bin Then call notify-send like so: notify-send "Back…

That's a good alternative. Can you do something like that in OS X?

Re: Completion audio alerts for long running, remote jobs

#5
post #3

I like this idea a lot; however, I don't like beeps. Ubuntu (and possibly other linux distros) now supports desktop notifications via Notify OSD. So instead of having the other machine ssh to me and beep, instead I use a utility called "notify-send" to create a desktop notification pop-up. You can install notify-send on ubuntu using: sudo apt-get install libnotify-bin Then call notify-send like so: notify-send "Back…

That's a good alternative. Can you do something like that in OS X?

I haven't tried it, but it looks like there's a similar growl command line utility called "growlnotify" that you could call:

http://growl.info/extras.php

Re: Completion audio alerts for long running, remote jobs

#6
post #4

I want a neural interface to "feel" that my important processes are up and running. In every given moment I want to feel the functions getting called, smell the call frames, and the rounded corners of the system calls returning values different than -1.

You really need to read Jupiter by Ben Bova.

Re: Completion audio alerts for long running, remote jobs

#7
post #6
post #4

I want a neural interface to "feel" that my important processes are up and running. In every given moment I want to feel the functions getting called, smell the call frames, and the rounded corners of the system calls returning values different than -1.

You really need to read Jupiter by Ben Bova.

note taken :) Thanks

Re: Completion audio alerts for long running, remote jobs

#8

I like this idea a lot; however, I don't like beeps. Ubuntu (and possibly other linux distros) now supports desktop notifications via Notify OSD. So instead of having the other machine ssh to me and beep, instead I use a utility called "notify-send" to create a desktop notification pop-up. You can install notify-send on ubuntu using: sudo apt-get install libnotify-bin Then call notify-send like so: notify-send "Back…

I've been doing something like this for a LONG time when I have long running jobs and want to run down to the pub for a beer:

# dosomething;mail -s "Job is done" XXXXXXXXXX@mobile.att.net

That way I can be anywhere and just wait for a text message on my iPhone to let me know the job is complete!

Isn't *nix great?

Re: Completion audio alerts for long running, remote jobs

#9
post #8

I like this idea a lot; however, I don't like beeps. Ubuntu (and possibly other linux distros) now supports desktop notifications via Notify OSD. So instead of having the other machine ssh to me and beep, instead I use a utility called "notify-send" to create a desktop notification pop-up. You can install notify-send on ubuntu using: sudo apt-get install libnotify-bin Then call notify-send like so: notify-send "Back…

I've been doing something like this for a LONG time when I have long running jobs and want to run down to the pub for a beer: # dosomething;mail -s "Job is done" XXXXXXXXXX@mobile.att.net That way I can be anywhere and just wait for a text message on my iPhone to let me know the job is complete! Isn't *nix great?

This is basically what I used to do as well, except just to my normal e-mail account.

Love *nix :)

Re: Completion audio alerts for long running, remote jobs

#10
post #8

I like this idea a lot; however, I don't like beeps. Ubuntu (and possibly other linux distros) now supports desktop notifications via Notify OSD. So instead of having the other machine ssh to me and beep, instead I use a utility called "notify-send" to create a desktop notification pop-up. You can install notify-send on ubuntu using: sudo apt-get install libnotify-bin Then call notify-send like so: notify-send "Back…

I've been doing something like this for a LONG time when I have long running jobs and want to run down to the pub for a beer: # dosomething;mail -s "Job is done" XXXXXXXXXX@mobile.att.net That way I can be anywhere and just wait for a text message on my iPhone to let me know the job is complete! Isn't *nix great?

I use "ping -a localhost" to annoy myself when a job finishes.