WordPress blog software installation

WordPress is a open source software developed by and for community with ongoing development on it.Easy installation, customizable, with lots of available plugins, themes and SEO friendly are the strengths of it!Software is mainly serves the purpose of blogging, hosting static websites.People with knowledge of php, javascipt and little knowledge of mysql db can customize it however they want.Minimum … Continue reading WordPress blog software installation

Programming ruby Linux basics

Remove svn files inside directoryrm -rf `find . -type d -name .svnSet path in linuxexport PATH=$PATH:/usr/ruby/binHere /usr/ruby/bin is the path to ruby extecuatble.grep and print process pidps -ef | grep search_string | grep -v grep | awk '{print  $2 }'Kill processkill -9 process_id_hereps -ef | grep search_string | grep -v grep | awk '{print  $2 … Continue reading Programming ruby Linux basics

Vim editor for ruby on rails development using rails.vim

Vim install On CentOSyum install vim-enhancedVim install on Ubuntu machineInstall vim-full using commandapt-get install vimWhile coding with ruby, html, erb, haml, js and stylesheets.It is great pain to indent code. Using rails vim one can easilykeep code always indented.This increases code readability and minimizes effort, bugs andfinally proves ease of using vim editor.rails.vim script contains … Continue reading Vim editor for ruby on rails development using rails.vim