Print PDF's without installing any special plug-ins for php. Necessary, because most hosting ISP's do not install PDF support by default.
http://www.fpdf.org/

Technical notes, and other ideas.
Print PDF's without installing any special plug-ins for php. Necessary, because most hosting ISP's do not install PDF support by default.
http://www.fpdf.org/
Zip recursively
zip -r my.backup.001.zip htdocs
Unzip recursively by default
zip my.backup.001.zip
Append the following to your url ?contents=1, such as
http://mysite/itsbroken/?contents=1
This throws the page into debug mode to disable the bad parts.
Check out: http://codex.wordpress.org/Template_Tags/wp_list_categories
This page may help too with what I'm going to say next: http://codex.wordpress.org/Template_Hierarchy
Your going to want to copy your current theme's index.php file, name it home.php. Then go in and replace the_content(); or the_excerpt(); with wp_list_categories();
I would also replace the post title line, which has the_title(); in it, to be a non-linking title that says "Categories" or something.
That's the basic idea... I bet there are going to be some things your going to want to change about it, such as the text size.
There are a number of keyboard shortcuts and combinations that you can make use of instead of your mouse or your taskbar options. This article will give you the list of the most common shortcuts used while using a Windows operating system.
Windows System
In a General Folder and text programs
In a General Folder
For a Selected Item a Folder
For Microsoft Word
For Microsoft Excel
For Microsoft PowerPoint
For Internet Explorer
sudo apt-get install ffmpeg
convert .flv to .mpg using ffmpeg
First you need to download your .flv file to a folder and you need to Open a terminal window and go in to the .flv file folder and type the following command
ffmpeg -i jokes.flv -ab 56 -ar 22050 -b 500 -s 320×240 jokes.mpg
Currently untested, but possible way to convert to MPG4. It properly converted the flv to an mp4 but when I tried to burn the mp4 to DVD using Nero the audio was lost. Properly need to properly convert the audio.
According to google search, the AC3 filter must be installed, that did not do the trick Ubuntu must have used some other codec to encode the audio where VLC had the built-in codecs.
http://ac3filter.net/project/1/releases (ac3filter_1_51a.exe)
ffmpeg -i inputfile.flv -acodec copy -vcodec mpeg4 outputfile.mp4
jokes.flv is the file you want to convert, so the name must be the same as the source file.You can name jokes.mpg whatever you want as long as it has the .mpg extension.
-b bitrate: set the video bitrate in kbit/s (default = 200 kb/s)
-ab bitrate: set the audio bitrate in kbit/s (default = 64)
-ar sample rate: set the audio samplerate in Hz (default = 44100 Hz)
-s size: set frame size. The format is WxH (default 160×128 )
Update:
I was able to convert an FLV file directly to DVD using the application DeVeDe. It's a bit basic but it was able to create a DVD with a menu system too. The audio ended up being on Track 3 for the test. It looks like audio moves around a little and I don't know how to specifiy where to put it. The program writes its output to an ISO which you can then test.