Translate this web page.

.
About me.


Contact me.


The SEO King
Free Web Directory - Add Your Link
The Little Web Directory
Begin Linux.
Doom WIKI.
slacklinux.darkbb.com/
xorl.wordpress.com/.
linuxaleph.blogspot.com/.
Doom64 for PC.
kernel.org/.
atomicmpc.com.au.
chrisbrogan.com.
Keep the Internet free.
Download: Fast, Fun, Awesome

Install Gnome 3 plugins.

Gnome 3 Live!

Linux user & Developer magazine.

Linux TV Wiki.

The Linux Documentation project.

The GNU Homepage.

Bloggers' Rights at EFF
Join the Blue Ribbon Online Free Speech Campaign

Join the Blue Ribbon Online Free Speech Campaign!

My old Doom Screenshots.

Doom Shots.

Some pictures related to 9/11.

September 11.

Slashdot.

Thinkgeek.

*|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|*

http://www.sitepromotiondirectory.com/computers_and_internet/search_engine_optimization/

My Linux PDF files. -- Old site content.

*|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|*

Installing printers with the CUPS web interface in Debian Linux.

Viewing installed printers in the CUPS administration page.

I recently had to add a printer to my Debian System and the System Settings -> printers dialog in the Gnome 3 System Settings application would not detect my Canon MP150 printer. Therefore, I started the CUPS interface by visiting: http://localhost:631 in my web browser

Continue reading Installing printers with the CUPS web interface in Debian Linux.

Miscellaneous programming tricks with C.

This is a very simple Hello World program in C.

int main() { write(1, "Hello World\n", 14); }

Counting how long a text string is.

#include #include #define MSG "Hello Doctor, let's get back to the TARDIS!" int main() { int g; g = strlen(MSG); if (g < 1) { printf("The string is not very

Continue reading Miscellaneous programming tricks with C.