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
require file in rails environment
There are different ways to load particular file in rails application environment if the required file exists. 1. Using RAILS_ROOT if File.exists?(file=File.join(RAILS_ROOT,'config', 'initializers', 'smtp_gmail.rb')) require file end 2. Using Rails.root & join require Rails.root.join('config', 'initializers', 'smtp_gmail.rb') 3. Using Rails.root, join & exists? method. if File.exists?(file = Rails.root.join('config', 'initializers','smtp_gmail.rb')) require file end 4. Using File and … Continue reading require file in rails environment
alternative for tortoise svn on ubuntu
The Tortoise svn client on windows is one of my favorite svn client.I am working on ubuntu karmic koala from last one year.There are kdesvn. smartsvn svn clients available on ubuntu but stilltime haven't found any svn client as good as tortoise svn on windows.Is there any alternative ??? Can tortoise svn client installation possibleusing … Continue reading alternative for tortoise svn on ubuntu
