Saturday, March 27, 2010
British Breakfast and Pangaea's People Updated podcast schedule
Updated podcast schedule on http://mmx2.homedns.org:8000
Check the schedule for the stream you want to listen to and tune in at that time (local times are Eastern).Please note: The Pangaea's People 8 AM show and The British Breakfast 3PM show are pre-empted every Saturday to allow for the archiving of the British Breakfast/Big Hair.
Saturday, March 13, 2010
Friday, March 12, 2010
podcast experiment...
I've got a podcast experiment running on http://mmx2.homedns.org:8000/
Schedule
EST | Show | Length | GMT |
02:00 | The British Breakfast - Latest Show | 2 hours | 0700 h |
05:00 | The British Breakfast - Random Show | 2 hours | 1000 h |
08:00 | Pangaea's People - 3rd Eye...Frank | ~ 2 hours 30 minutes | 1300 h |
12:00 | The British Breakfast - Latest Show | 2 hours | 1700 h |
15:00 | The British Breakfast - Random Show | 2 hours | 2000 h |
18:00 | Pangaea's People Gary...Zaelon | ~2 hours 30 minutes | 2300 h |
22:00 | The British Breakfast - Random Show | 2 hours | 0300 h |
Please note: The Pangaea's People 8 AM show is pre-empted every Saturday to allow for the archiving of the British Breakfast.
I forgot to run a command in the background - Cool trick
I forgot to run a shell command in the background and I want to leave!
Found a cool bash trick (amongst others) at this site
http://stackoverflow.com/questions/211378/hidden-features-of-bash
So I run this command and I forgot to append the ampersand to background it.
What do I do? Kill the job and start over? Not a great option if the command
has already done a lot of work and you don't or can't have it start over.
The first thing to do is to stop/suspend the job with control-Z
Find out the pid of the stopped job then use the 'bg' command to send
it to the background. Now use the 'disown' command with the -h flag.
ie. disown -h pid
Found a cool bash trick (amongst others) at this site
http://stackoverflow.com/questions/211378/hidden-features-of-bash
So I run this command and I forgot to append the ampersand to background it.
What do I do? Kill the job and start over? Not a great option if the command
has already done a lot of work and you don't or can't have it start over.
The first thing to do is to stop/suspend the job with control-Z
Find out the pid of the stopped job then use the 'bg' command to send
it to the background. Now use the 'disown' command with the -h flag.
ie. disown -h pid
Subscribe to:
Posts (Atom)