Monthly Archive: February 2017

[SOLVED] Adding epel repo to Centos 6.8 0

[SOLVED] Adding epel repo to Centos 6.8

$> su - $> yum update # optional but recommanded $> rpm --import https://www.elrepo.org/RPM-GPG-KEY-elrepo.org $> rpm -Uvh https://dl.fedoraproject.org/pub/epel/6/x86_64/epel-release-6-8.noarch.rpm  

Install OpenVPN on CentOS 6.8 0

Install OpenVPN on CentOS 6.8

1. Install EPEL Repo http://tech.yipp.ca/linux/adding-epel-repo-centos-6-8/ 2. Install openvpn $> sudo yum install openvpn 3. Find the proper configuration, run VPN client using this command $> sudo openvpn --config myconfig.conf  

Unit tests in Ruby on Rails 0

Unit tests in Ruby on Rails

How to write and run your first unit test for your ruby on rails webapp Fist time setup $ rake db:test:load This will recreate a new test DB based ont the current schema! Tasks...