Fear is Temporary
“FEAR IS TEMPORARY
REGRET IS FOREVER“
- Unknown
Posted in Motivational on January 10th, 2010 by Jeremy at 7:52 am with (11 views)
“FEAR IS TEMPORARY
REGRET IS FOREVER“
- Unknown
Posted in Motivational on January 10th, 2010 by Jeremy at 7:52 am with (11 views)
Interesting video, I’ve heard some of this before but there were some interesting analogies in it.
“The opposite of courage in our society is not cowardice, it is conformity.” – Rollo May
Posted in Motivational on January 10th, 2010 by Jeremy at 7:43 am with (15 views)
In life it is important to remember we need to focus on who we are and not who are aren’t. We should focus on what our passion is so we can flourish and not be something different than what our heart tells us to be. Whether it is kids, dogs, or people in general, I think that is very important.
Posted in Uncategorized on January 9th, 2010 by Jeremy at 9:04 am with (8 views)
Howard was nominated for the Medal of Honor, the highest honor for valor, three times during a 13-month period. His long list of awards also included the Distinguished Service Cross, the Silver Star and eight Purple Hearts.
Posted in Motivational on January 9th, 2010 by Jeremy at 8:02 am with (38 views)

I needed to create a .FLV file in Ubuntu from a .MOV for the Jungle Jim’s video and learned about FFmpeg which allows you to use the command line to convert files. Open terminal and copy/paste one of the following commands below. Replace the original and final file names and press the enter key. Depending on the size of your video it could take several minutes for the video to encode.
Convert a FLV file to a MPG
ffmpeg -i original_file.flv new_file.mpg
Convert a MPG file to a FLV
ffmpeg -i original_file.flv new_file.mpg
Make a MP3 from a MPG
ffmpeg -i input.mpg -vn output.mp3
Convert a WAV file to a MP3
ffmpeg -i son_original_file.avi -vn -ar 44100 -ac 2 -ab 192 -f mp3 new_file.mp3
Extract Sound from a Video and Make it a MP3
ffmpeg -i source_video_here.avi -vn -ar 44100 -ac 2 -ab 192 -f mp3 soundHere.mp3
Extracting Sound from a Video and Save it as a Mp3
ffmpeg -i source_video_here.avi -vn -ar 44100 -ac 2 -ab 192 -f mp3 videoSoundHere.mp3
Posted in Open Source & Linux on January 9th, 2010 by Jeremy at 12:09 am with (42 views)