Wednesday, November 10, 2010

Download Windows 7 ISO – Official Direct Download Links - Direct download, download windows 7, download windows7, win 7, win 7 iso, Windows 7, windows 7 amazon, windows 7 digital river, windows 7 direct download, windows 7 download links, windows 7 ISO, windows 7 iso image, windows7, windows7 iso - Technically Personal!

http://techpp.com/2009/11/11/download-windows-7-iso-official-direct-download-links/

Tuesday, September 7, 2010

PHP Fatal error: Class 'HttpRequest' not found

First, you will need to install PEAR via apt-get to get the necessary package and distribution system that both PEAR and PECL use. From a shell prompt enter: 

         sudo apt-get install php-pear        

Install the HTTP_PECL module with the following command:
sudo pecl install pecl_http


You may need to install these packages for dependencies :


apt-get install zlibc
apt-get install libcurl4-openssl-dev


Enable http.so in apache :

add "extension=http.so" to php.ini

then restart apache :
/etc/init.d/apache2 restart

Tuesday, August 3, 2010

good LPI certification tutorials

This is a good LPI certification preparation
ebook

Make tab completion case insensitive

this is a cool feature,

echo "set completion-ignore-case on" >> ${HOME}/.inputrc

Monday, August 2, 2010

create macro with emacs

Save your time, learn how to use emacs
this explain how to create
macros with emacs

Install Gnome on Centos server 5

I want to share this because I had trouble installing X window system on a centos 5 server

the following command allow you to install X Window System

yum -y groupinstall "X Window System"


then you need to install Gnome Desktop environment,


yum -y groupinstall "GNOME Desktop Environment" --exclude nautilus-sendto

add colors to svn diff

this is a cool function you can add in your ${HOME}/.bashrc

first install colordiff

apt-get install colordiff


Edit ${HOME}/.bashrc and add the following

svndiff ()
{
if [ "$1" != "" ]; then
svn diff $@ | colordiff;
else
svn diff | colordiff;
fi
}


source bashrc file
source ${HOME}/.bashrc


test it
svndiff

Linux and Wifi

I had trouble with my new laptop
my wifi card seems to not work properly, I get disconnected every 5 minutes
after some googling I found ndiswrapper
all I did is installing ndiswrapper then I downloaded the windows driver for my wireless card
and installed it with ndiswrapper and my wireless card is working like a charm now.

for more details see this post