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!
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:
You may need to install these packages for dependencies :
Enable http.so in apache :
then restart apache :
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
Make tab completion case insensitive
this is a cool feature,
echo "set completion-ignore-case on" >> ${HOME}/.inputrc
Monday, August 2, 2010
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
then you need to install Gnome Desktop environment,
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
Edit ${HOME}/.bashrc and add the following
source bashrc file
test it
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
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
Friday, July 23, 2010
7 Essential emacs Editor Navigation Fundamentals
Emacs my favourite Editor
7 Essential emacs Editor Navigation Fundamentals
7 Essential emacs Editor Navigation Fundamentals
Subscribe to:
Posts (Atom)