Pune to Alibag distance :115Km. Route : Pune->Lonawala->Khopoli->Pen->Alibaug Nagaon Beach: This is the one of the cleanest, enjoyable Beach. Friends, Couples can freely enjoy. Very open cultured place. You can drink on the Beach also. Fun… Do you remember “Sagar … Continue reading
Monthly Archives: June 2009
Install Apatana Studio on Fedora 9
Installation of Apatana in Detail 1. Download zip file from this location(http://www.aptana.com/studio/download) File name:Aptana_Studio_Setup_Linux_1.2.7.zip 2. Then uncompress the .zip file. and copy the resulting ‘aptana’ folder under ‘/home/siwan’.(siwan is my username for fedora, you have replace your username) 3. Install … Continue reading
Memcached Server with Rails
To install memcached server on linux/fedora box yum install memcached Find help for memcached commands and option memcached -help Start memcached server(11211 is default port Number for memcached server) memcached -m 500 -l 192.168.2.4 -p 11211 -vv (192.168.2.4 this is … Continue reading
Easy Steps for setting up nginx with php on Linux
I am using Fedora 10 so for that linux version i used these commands for setting up my server. Installing Nginx: yum install nginx Then we create the system startup links for nginx: /sbin/chkconfig –level 35 nginx on We can … Continue reading
deconstructing date_select in rails
// Reconstruct a date object from date_select helper form params // place this code into your application.rb file def build_date_from_params(field_name, params) Date.new(params["#{field_name.to_s}(1i)"].to_i, params["#{field_name.to_s}(2i)"].to_i, params["#{field_name.to_s}(3i)"].to_i) end //You can changes order of displaying into view <%= date_select ‘from’, ‘date’ ,:order => [:day, … Continue reading
How to add the some text or HTML code on home page – WordPress
If you want to add some different text or HTML code just use following code: <?php if (is_home() { ?> HTML CODE GOES HERE OR TEXT <? } ?> Have fun!