With Javascript you can use the scrollIntoView() method. If you want to use jQuery you can use scrollTop. [read more]
Ffmpeg is a great quick way to convert media files. I often use it to convert audio files to the desired format. the simplest way to use it is like the following example; In the next example I add a codec to convert to mp3; [read more]
If you ever need to do this, Windows devices won’t connect! Add the following to the register and they will. [read more]
This command finds all Flac files and then converts them to mp3 with FFMPEG keeping meta data. find . -name “*.flac” -exec ffmpeg -i {} -ab 320k -map_metadata 0 -id3v2_version 3 {}.mp3 \; [read more]
For a client I needed to show some text on a webpage that would not be printed and some text that would. This is easily accomplished with some css. found on stackoverflow.com [read more]