Recent Items listed in the start menu are stored in: %appdata%\Microsoft\Windows\Recent To delete, you can either right-click on Recent Items from the start menu and select Clear recent items list or you can empty the folder from inside Windows Explorer. Recent items listed in jump lists are stored in: %appdata%\microsoft\windows\recent\automaticdestinations…
Create github SSH key
ssh-keygen -t rsa -C “your_email@youremail.com” #Creates a new ssh key using the provided email Generating public/private rsa key pair. Enter file in which to save the key (/home/user/.ssh/id_rsa):<press enter> Enter passphrase (empty for no passphrase):<enter a passphrase> Enter same passphrase again:<enter passphrase again> Your identification has been saved in /home/user/.ssh/id_rsa.…
Install ruby-1.9.3-p0.tar.gz
yum -y install make gcc openssl-devel zlib-devel gcc gcc-c++ make autoconf readline-devel curl-devel expat-devel gettext-devel ncurses-devel sqlite3-devel mysql-devel httpd-devel wget which yum install php-mysql mysql mysql-server /sbin/chkconfig –levels 235 mysqld on /etc/init.d/mysqld start #/usr/bin/mysqladmin -u root password ‘new-password’ cd /usr/local/src wget http://ftp.ruby-lang.org/pub/ruby/1.9/ruby-1.9.3-p0.tar.gz wget http://pyyaml.org/download/libyaml/yaml-0.1.4.tar.gz tar xzvf yaml-0.1.4.tar.gz cd yaml-0.1.4 ./configure…