<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/atom10full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><feed xmlns="http://www.w3.org/2005/Atom" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" xml:lang="en-US">
  <title>Ruby/RubyOnRails, jQuery/Prototype Developer | xHTML, CSS Designer | Amazon AWS sysadmin - Home</title>
  <id>tag:www.railsgeek.com,2009:mephisto/</id>
  <generator version="0.8.0" uri="http://mephistoblog.com">Mephisto Drax</generator>
  
  <link href="http://www.railsgeek.com/" rel="alternate" type="text/html" />
  <updated>2009-08-11T07:10:24Z</updated>
  <link rel="self" href="http://feeds.feedburner.com/RubyonrailsRubyAjaxHtmlCssLinuxDevelopment" type="application/atom+xml" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com" /><entry xml:base="http://www.railsgeek.com/">
    <author>
      <name>mikhailov</name>
    </author>
    <id>tag:www.railsgeek.com,2009-08-11:62</id>
    <published>2009-08-11T05:27:00Z</published>
    <updated>2009-08-11T07:10:24Z</updated>
    <link href="http://feedproxy.google.com/~r/RubyonrailsRubyAjaxHtmlCssLinuxDevelopment/~3/3sm8PBUlaH8/backup-shell-script-for-my-rails-applications" rel="alternate" type="text/html" />
    <title>Backup shell script for my Rails applications</title>
<content type="html">
            &lt;p&gt;Howia lads,&lt;br /&gt;
Today I'd like to show you the optimal backup shell script for all of my Rails Applications.
Nobody love to setup the backup workflow, but all want to sleep well and have their data duplicated somewhere like Amazon S3 :)
Here the script who take care of yours backup process&lt;/p&gt;

&lt;pre&gt;
# Take care about folders structure for the usual script workflow:
# /home/demo/backup/
# /home/demo/backup/redmine_folder/
# /home/demo/backup/redmine_folder/script.sh - the following script should be landing here
# /home/demo/backup/redmine_folder/files
# /home/demo/public_html/
# /home/demo/public_html/redmine_folder
#
# crontab -e -u demo
# 0 20 * * * /home/demo/backup/redmine_folder/script.sh


# ---BACKUP SCRIPT---

#!/bin/sh
folder=redmine_folder
db=redmine_production

# Change directory and remove files older than 30days
cd ~/backup/$folder/files
find . -mtime +30 |xargs rm

# Database
file01=$folder.db_$(date +"%Y_%m_%d_%H-%M")
mysqldump -u user_name -pmy_sycret_password --single-transaction $db | gzip -c &gt; $file01.gz

# App
file02=$folder.app_$(date +"%Y_%m_%d_%H-%M")
tar czf ~/backup/$folder/files/$file02.tgz ~/public_html/$folder &gt; /dev/null

# S3 sync
ruby ~/backup/s3sync/s3cmd.rb put s3bucket:backup/$folder/db/$file01.gz $file01.gz
ruby ~/backup/s3sync/s3cmd.rb put s3bucket:backup/$folder/app/$file02.tgz $file02.tgz

# ---BACKUP SCRIPT---

&lt;/pre&gt;

&lt;p&gt;&lt;a href="http://s3sync.net/wiki"&gt;S3Sync&lt;/a&gt;&lt;br /&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="http://pastie.org/579582"&gt;http://pastie.org/579582&lt;/a&gt;&lt;/p&gt;
          
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/08jeV-NtAPEiO4lVo85BVePAZCE/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/08jeV-NtAPEiO4lVo85BVePAZCE/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/08jeV-NtAPEiO4lVo85BVePAZCE/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/08jeV-NtAPEiO4lVo85BVePAZCE/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;</content>  <feedburner:origLink>http://www.railsgeek.com/2009/8/11/backup-shell-script-for-my-rails-applications</feedburner:origLink></entry>
  <entry xml:base="http://www.railsgeek.com/">
    <author>
      <name>mikhailov</name>
    </author>
    <id>tag:www.railsgeek.com,2009-06-20:60</id>
    <published>2009-06-20T16:18:00Z</published>
    <updated>2009-06-20T16:50:57Z</updated>
    <link href="http://feedproxy.google.com/~r/RubyonrailsRubyAjaxHtmlCssLinuxDevelopment/~3/VO4SAc2rNoo/installing-the-latest-stable-nginx-0-7-6-regardless-of-the-nginx-0-6-3-by-mod_rails-default" rel="alternate" type="text/html" />
    <title>Installing the latest stable Nginx 0.7.6 regardless of the Nginx 0.6.3 by mod_rails defaults</title>
<content type="html">
            &lt;p&gt;It's really cool, phusion.nl make my life a little bit easier, nginx with mod_rails can be installed in 2 steps:
&lt;pre&gt;
gem install passenger
passenger-install-nginx-module
&lt;/pre&gt;
Not neccessary known about configure, make, install and other. Also you can use deb package in Ubuntu server case.
&lt;/p&gt;

&lt;p&gt;&lt;/p&gt;
But, what's happen, guys, I want a latest nginx stable instead out-of-date 0.6 branch.
So, I show you how I use two of version nginx (stable 0.6.3 by modrails defaults and latest 0.7.6).
You can use one of them on the yours server.
&lt;/p&gt;&lt;/p&gt;

&lt;pre&gt;
mkdir ~/temp &amp;&amp; cd ~/temp
wget ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/pcre-7.9.tar.gz
tar xzf ./pcre-7.9.tar.gz 

wget http://sysoev.ru/nginx/nginx-0.7.60.tar.gz
tar xzvf ./nginx-0.7.60.tar.gz
cd ~/temp/nginx-0.7.60
./configure --add-module=/opt/ruby-enterprise-1.8.6-20090610/lib/ruby/gems/1.8/gems/passenger-2.2.3/ext/nginx --with-pcre=~/temp/pcre-7.9 --prefix=/opt/nginx076
make
sudo make install
sudo cp /etc/init.d/nginx /etc/init.d/nginx076
sudo sed -i 's,/opt/nginx,/opt/nginx076,g' /etc/init.d/nginx076
sudo /etc/init.d/nginx076 start
&lt;/pre&gt;

&lt;p&gt;That's all. You have a choise to use either aby of version of Nginx webserver.&lt;/p&gt;
          
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/auT5M0wol25SgS0Fq48V8QR2VTg/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/auT5M0wol25SgS0Fq48V8QR2VTg/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/auT5M0wol25SgS0Fq48V8QR2VTg/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/auT5M0wol25SgS0Fq48V8QR2VTg/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;</content>  <feedburner:origLink>http://www.railsgeek.com/2009/6/20/installing-the-latest-stable-nginx-0-7-6-regardless-of-the-nginx-0-6-3-by-mod_rails-default</feedburner:origLink></entry>
  <entry xml:base="http://www.railsgeek.com/">
    <author>
      <name>mikhailov</name>
    </author>
    <id>tag:www.railsgeek.com,2009-05-22:57</id>
    <published>2009-05-22T04:09:00Z</published>
    <updated>2009-05-22T04:10:11Z</updated>
    <link href="http://feedproxy.google.com/~r/RubyonrailsRubyAjaxHtmlCssLinuxDevelopment/~3/LvekYlA1tJ0/jquery-beatiful-code-examples" rel="alternate" type="text/html" />
    <title>jQuery beatiful code examples</title>
<content type="html">
            &lt;p&gt;
I really like the semantics of jQuery, is fairly short and predictable. &lt;br /&gt;Look at the code, it is not overloaded with ambiguous and unclear structures.&lt;br /&gt;
Like Ruby, the methods often returns a jQuery object, so you can create a chain of methods.
I want to share the code that I wrote last night. If you are not familiar jQuery, so look over the code.
&lt;/p&gt;
&lt;p&gt;
&lt;a href="http://railsgeek.com/my_jquery_samples.html"&gt;[Demo]&lt;/a&gt; 
&lt;a href="http://gist.github.com/115918"&gt;[Source]&lt;/a&gt;
&lt;/p&gt;
&lt;pre&gt;

...

 
 $("#pics_hide").click(function(){
   $("#images div:first-child").animate({opacity: "0.1"}, 300, 
     function(){$(this).next().animate({opacity: "0.1"}, 
     arguments.callee);
     return false
     }
   );
 });  


 $("#pics_show").click(function(){
   $("#images div:last-child").animate({opacity: "1.0"}, 300, 
     function(){$(this).prev().animate({opacity:"1.0"}, 
     arguments.callee);
     return false
     }
   );
 });  


 $("#pics_move").hover(
   function(){
     $("#images div:even").hide("slow")
   }, 
   function(){ 
     $("#images div:even").show("slow")
   });

 $("#pics_reorder").click(function(){
   $("#images div:last-child")
     .insertBefore($("#images div:first-child"));
   $("#images div:even").animate({opacity: "0.4"}, 300);
   $("#images div:odd").animate({opacity: "1.0"}, 300);
 });  

 $("#pics_anim").click(function(){
  $("#images div:odd").animate({top: '-=20px'}, 300);
  $("#images div:even").animate({top: '+=20px'}, 300);
 });  

...

&lt;/pre&gt;
          
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/kKyRKK37EPmRaVYGpBLcRPqhjFE/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/kKyRKK37EPmRaVYGpBLcRPqhjFE/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/kKyRKK37EPmRaVYGpBLcRPqhjFE/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/kKyRKK37EPmRaVYGpBLcRPqhjFE/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;</content>  <feedburner:origLink>http://www.railsgeek.com/2009/5/22/jquery-beatiful-code-examples</feedburner:origLink></entry>
  <entry xml:base="http://www.railsgeek.com/">
    <author>
      <name>mikhailov</name>
    </author>
    <id>tag:www.railsgeek.com,2009-05-06:54</id>
    <published>2009-05-06T05:22:00Z</published>
    <updated>2009-05-23T15:20:39Z</updated>
    <link href="http://feedproxy.google.com/~r/RubyonrailsRubyAjaxHtmlCssLinuxDevelopment/~3/TzuSxOjfdkc/installing-the-ruby-enterprise-edition-regardless-of-the-preinstalled-ruby" rel="alternate" type="text/html" />
    <title>Installing the Ruby Enterprise Edition regardless of the preinstalled Ruby</title>
<content type="html">
            &lt;p&gt;Honestly, no secret that RubyEE much more productive than standard Ruby. Many use it in conjunction with a passenger, that allows to achieve excellent results in the speed of the application, and in doing so to save memory.
I'm going to tell about experience of myself. I have a vps with 360 megabytes of RAM, so launching more than 6 projects becomes difficult using mongrel or thin, as these processes are continuously running in memory, regardless of whether the load on the application or not. After I installed mod_rails, I noticed an interesting feature - if anyone application is not used, the process of unloaded from memory, respectively, releasing more memory for other projects loaded. It was a pleasant surprise for me. &lt;br /&gt;
In the other hand, ruby 1.8.6 (2008-08-11 patchlevel 287) is more preferable than ruby 1.8.7 (2008-08-11 patchlevel 72) and other.&lt;br /&gt;&lt;/p&gt;

&lt;p&gt;So, let's go to install rubyee mod_rails. I want to give a small warning about the system's interpreter of ruby - no need to remove or recomiple from an older version (older repo), because your operating system has a hard dependency within allover packages, and the repository contains the required version of ruby. No need to touch system Ruby.&lt;br /&gt;&lt;/p&gt;

&lt;p&gt;Let's start with the installation rubyee &lt;a href="http://www.rubyenterpriseedition.com/download.html"&gt;http://www.rubyenterpriseedition.com/download.html&lt;/a&gt;&lt;/p&gt;

&lt;pre&gt;
You need to install some developers packages in Ubuntu case:
sudo apt-get install libssl-dev
sudo apt-get install libreadline5-dev

tar xzvf ruby-enterprise-X.X.X.tar.gz
./ruby-enterprise-X.X.X/installer
&lt;/pre&gt;

&lt;p&gt;Ok, you have installed version RubyEE in the directory /opt/ruby-enterprise-1.8.6-20090421/bin/ruby&lt;br /&gt;
Make symbolic links&lt;/p&gt;

&lt;pre&gt;
sudo ln -s /opt/ruby-enterprise-1.8.6-20090421 /opt/ruby_ee
sudo ln -s /opt/ruby_ee/bin/erb /usr/bin/erb_ee
sudo ln -s /opt/ruby_ee/bin/gem /usr/bin/gem_ee
sudo ln -s /opt/ruby_ee/bin/irb /usr/bin/irb_ee
sudo ln -s /opt/ruby_ee/bin/rails /usr/bin/rails_ee
sudo ln -s /opt/ruby_ee/bin/rake /usr/bin/rake_ee
sudo ln -s /opt/ruby_ee/bin/rdoc /usr/bin/rdoc_ee
sudo ln -s /opt/ruby_ee/bin/ri /usr/bin/ri_ee
sudo ln -s /opt/ruby_ee/bin/ruby /usr/bin/ruby_ee
&lt;/pre&gt;

&lt;p&gt;Done! Now you have an independent Ruby interpreter, as well as the independent "gem", with its own set of plugins
Try to check &lt;/p&gt;

&lt;pre&gt;
ruby -v
ruby_ee -v
gem list
gem_ee list

ruby script/server
ruby_ee script/server
&lt;/pre&gt;

&lt;p&gt;Have a joy with Ruby Enterprise Edition!&lt;br /&gt;&lt;/p&gt;

&lt;p&gt;P.S.
ruby_ee script/console is using "irb", so we should do some modifications:&lt;br /&gt;
vim /opt/ruby_ee/lib/ruby/gems/1.8/gems/rails-2.3.2/lib/commands/console.rb&lt;/p&gt;

&lt;pre&gt;
irb = RUBY_PLATFORM =~ /(:?mswin|mingw)/ ? 'irb.bat' : 'irb_ee'
&lt;/pre&gt;
          
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/8Un2a2Xe0dmJiVT9i_0oS50sK5c/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/8Un2a2Xe0dmJiVT9i_0oS50sK5c/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/8Un2a2Xe0dmJiVT9i_0oS50sK5c/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/8Un2a2Xe0dmJiVT9i_0oS50sK5c/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;</content>  <feedburner:origLink>http://www.railsgeek.com/2009/5/6/installing-the-ruby-enterprise-edition-regardless-of-the-preinstalled-ruby</feedburner:origLink></entry>
  <entry xml:base="http://www.railsgeek.com/">
    <author>
      <name>mikhailov</name>
    </author>
    <id>tag:www.railsgeek.com,2009-03-02:31</id>
    <published>2009-03-02T05:12:00Z</published>
    <updated>2009-03-19T04:27:51Z</updated>
    <category term="Linux" />
    <link href="http://feedproxy.google.com/~r/RubyonrailsRubyAjaxHtmlCssLinuxDevelopment/~3/-R_So09WCTc/internet-explorer-free-ubuntu-linux-virtualbox" rel="alternate" type="text/html" />
    <title>Internet Explorer Free under Ubuntu Linux with VirtualBox</title>
<content type="html">
            &lt;p&gt;My job is web application development, so I have to test my projects under most popular browsers, like Firefox, Internet Explorer, Opera and Google Chrome.&lt;br /&gt;
Firefox, Opera, GoogleChrome work great under my Ubuntu Box, and the other once work under Wine.&lt;br /&gt;&lt;/p&gt;

&lt;h3&gt;*Internet Explorer*. It's pain to setup IE6 and IE7, because you can take a look of many bugs with render html and vml.&lt;/h3&gt;

&lt;p&gt;Just forget Wine for the purpose! &lt;br /&gt;
Microsoft give us &lt;strong&gt;FREE&lt;/strong&gt; virtual PC images with IE6, IE7, IE8 aboard!&lt;br /&gt;
&lt;span&gt;Don't you believe?&lt;/span&gt;&lt;/p&gt;

&lt;p&gt;Internet Explorer Application Compatibility VPC Image&lt;br /&gt;
Brief Description&lt;br /&gt;
VPC Hard Disk Image for testing websites with different IE versions on Windows XP SP2, Windows XP SP3 and Windows Vista&lt;/p&gt;

&lt;table&gt;
&lt;tr&gt;
&lt;td&gt;IE6-XPSP3.exe&lt;/td&gt;
&lt;td&gt;407.3 MB&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;IE7-VIS1.exe&lt;/td&gt;
&lt;td&gt;700.0 MB&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;IE7-VIS2.rar&lt;/td&gt;
&lt;td&gt;700.0 MB&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;IE7-VIS3.rar&lt;/td&gt;
&lt;td&gt;590.5 MB&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;IE7-XPSP3.exe&lt;/td&gt;
&lt;td&gt;512.0 MB&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;IE8RC1-XPSP3.exe&lt;/td&gt;
&lt;td&gt;495.8 MB&lt;/td&gt;
&lt;/tr&gt;
&lt;/table&gt;

&lt;p&gt;Licence: Free.&lt;/p&gt;

&lt;p&gt;&lt;a href="http://www.microsoft.com/downloads/details.aspx?FamilyId=21EABB90-958F-4B64-B5F1-73D0A413C8EF&amp;amp;amp;displaylang=en"&gt;
www.microsoft.com/downloads/details.aspx?FamilyId=21EABB90-958F-4B64-B5F1-73D0A413C8EF&amp;amp;displaylang=en&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="http://www.microsoft.com/downloads/details.aspx?familyid=28C97D22-6EB8-4A09-A7F7-F6C7A1F000B5&amp;amp;amp;displaylang=en"&gt;www.microsoft.com/downloads/details.aspx?familyid=28C97D22-6EB8-4A09-A7F7-F6C7A1F000B5&amp;amp;displaylang=en
&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;After you have file downloaded, just unrar it and add select VHD file extracted earliert to VirtualBox. &lt;a href="http://primeval-soup.blogspot.com/2009/02/ie8-in-ubuntu-intrepid-with-virtual-box.html"&gt;link&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;This &lt;a href="http://maketecheasier.com/upgrading-to-virtualbox-21-in-ubuntu-intrepid/2009/01/01"&gt;link&lt;/a&gt; might be helpful to install last VirtualBox for VHD image file using.&lt;/p&gt;

&lt;div&gt;
And special present to Daniel is "Intel Pro" network adapter driver package ISO image! Just attach the file as CD-Drive image and install the Intel Pro 1000 in 2 minutes.&lt;br /&gt;
&lt;a href="/intel_drivers.iso"&gt;Download&lt;/a&gt;
&lt;/div&gt;
          
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/2ceZsXcwAbPyzR6wZQqoe-pyTvE/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/2ceZsXcwAbPyzR6wZQqoe-pyTvE/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/2ceZsXcwAbPyzR6wZQqoe-pyTvE/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/2ceZsXcwAbPyzR6wZQqoe-pyTvE/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;</content>  <feedburner:origLink>http://www.railsgeek.com/2009/3/2/internet-explorer-free-ubuntu-linux-virtualbox</feedburner:origLink></entry>
  <entry xml:base="http://www.railsgeek.com/">
    <author>
      <name>mikhailov</name>
    </author>
    <id>tag:www.railsgeek.com,2009-01-29:20</id>
    <published>2009-01-29T04:27:00Z</published>
    <updated>2009-02-13T12:10:10Z</updated>
    <category term="Linux" />
    <link href="http://feedproxy.google.com/~r/RubyonrailsRubyAjaxHtmlCssLinuxDevelopment/~3/ewGO4UsInqA/amazon-aws-ec2-rails-all-in-one" rel="alternate" type="text/html" />
    <title>Amazon AWS EC2 RubyOnRails Rails-All-in-one</title>
<content type="html">
            &lt;p&gt;As you may know, standard template “Amazon EC2 Rails-All-in-one-trial” by Amazon AWS is not good… yeap, it is.
Let me show you how fix it by your hads :)&lt;/p&gt;

&lt;p&gt;Let’s start.
We have a useful EC2 based on CentOS 5.2. Great enterprise linux for the Rails application.
But Ruby 1.8.5 on aboard, it’s deeply out-of-date…&lt;/p&gt;

&lt;p&gt;http://rubyonrails.org/download
We recommend Ruby 1.8.7 for use with Rails. Ruby 1.8.6, 1.8.5, 1.8.4 and 1.8.2 are still usable too, but version 1.8.3 is not.&lt;/p&gt;

&lt;p&gt;Well, do you want to run Rails with old Ruby?
If, you have 2 ways to get newer Ruby version:
&lt;ul&gt;
&lt;li&gt; Ruby Enterprise edition as additional package, who need to install from sources (http://www.rubyenterpriseedition.com/download.html). Telling the truth, feel free to install it, very easy.&lt;/li&gt;
&lt;li&gt;Use extra repo to the CentOS who include good version of Ruby 1.8.6 (patch 111) and other dependent libraries
http://www.centos.org/modules/newbb/viewtopic.php?topic_id=1182
or followed bash scrip&lt;/p&gt;

&lt;pre&gt;
#!/bin/bash -e

cat&lt;&lt;EOF&gt; /etc/yum.repos.d/ruby.repo
[ruby]
name=ruby
baseurl=http://repo.premiumhelp.eu/ruby/
gpgcheck=0
enabled=0
EOF

yum update -y
yum --enablerepo=ruby install ruby -y
yum --enablerepo=ruby install ruby-mysql -y
&lt;/pre&gt;

&lt;p&gt;&lt;/li&gt;&lt;/p&gt;
          
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/WjYg5RIyPqfZleSReyLZqH1mdsk/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/WjYg5RIyPqfZleSReyLZqH1mdsk/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/WjYg5RIyPqfZleSReyLZqH1mdsk/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/WjYg5RIyPqfZleSReyLZqH1mdsk/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;</content>  <feedburner:origLink>http://www.railsgeek.com/2009/1/29/amazon-aws-ec2-rails-all-in-one</feedburner:origLink></entry>
  <entry xml:base="http://www.railsgeek.com/">
    <author>
      <name>mikhailov</name>
    </author>
    <id>tag:www.railsgeek.com,2009-01-06:18</id>
    <published>2009-01-06T11:17:00Z</published>
    <updated>2009-01-06T12:36:41Z</updated>
    <category term="Object-oriented programming" />
    <category term="rails" />
    <category term="restful_authentication" />
    <link href="http://feedproxy.google.com/~r/RubyonrailsRubyAjaxHtmlCssLinuxDevelopment/~3/UVcPH2n8EQA/generate-random-password-in-rails" rel="alternate" type="text/html" />
    <title>Generate random password in Rails</title>
<content type="html">
            &lt;p&gt;
I am using Restful_authentication plugin for one of my projects.&lt;br /&gt;
As part of my user creation workflow, system should to generate a random password for the new user.&lt;br /&gt;
So, look at my password creation behaviour:
&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;generate uncrypted password&lt;/li&gt;
&lt;li&gt;send this with e-mail notification&lt;/li&gt;
&lt;li&gt;crypt the password&lt;/li&gt;
&lt;/ul&gt;

&lt;pre&gt;
&lt;span&gt;&lt;controller&gt;&lt;/span&gt;
&lt;span class="Keyword"&gt;class&lt;/span&gt; &lt;span class="Name"&gt;CandidatesController &amp;lt; ApplicationController&lt;/span&gt;
  ...
  &lt;span class="Keyword"&gt;if&lt;/span&gt; @candidate.valid?
    candidate.save
    Notifier.deliver_inv(candidate.email, candidate.crypted_password)
    candidate.encrypt_password
  &lt;span class="Keyword"&gt;end&lt;/span&gt;
&lt;span class="Keyword"&gt;end&lt;/span&gt;

&lt;span&gt;&lt;model&gt;&lt;/span&gt;
require 'digest/sha1'
&lt;span class="Keyword"&gt;class&lt;/span&gt; &lt;span class="Name"&gt;User &amp;lt; ActiveRecord::Base&lt;/span&gt;
  ...
  &lt;span class="Keyword"&gt;def&lt;/span&gt; &lt;span class="Name"&gt;encrypt_password&lt;/span&gt;
    self.salt = Digest::SHA1.hexdigest("--#{Time.now.to_s}--#{name}--")
    self.crypted_password = encrypt(self.crypted_password)
    save(false)
  &lt;span class="Keyword"&gt;end&lt;/span&gt;
  &lt;span class="Keyword"&gt;protected&lt;/span&gt;
    &lt;span class="Keyword"&gt;def&lt;/span&gt; &lt;span class="Name"&gt;save_password&lt;/span&gt;
      (self.crypted_password = password) &lt;span class="Keyword"&gt;unless&lt;/span&gt; self.crypted_password
    &lt;span class="Keyword"&gt;end&lt;/span&gt;
...
&lt;span class="Keyword"&gt;end&lt;/span&gt;

&lt;span class="Keyword"&gt;class&lt;/span&gt; &lt;span class="Name"&gt;Candidate &amp;lt; User&lt;/span&gt;
  # Callbacks:
  before_save :save_password
  &lt;span&gt;before_validation_on_create&lt;/span&gt; Proc.new do |u|
    u.password = Array.new(12) { (rand(122-97) + 97).chr }.join
    u.password_confirmation = u.password
  &lt;span class="Keyword"&gt;end&lt;/span&gt;

&lt;span class="Keyword"&gt;end&lt;/span&gt;

&lt;/pre&gt;
          
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/grJWt4wBYRMWnYsQQ3pt4GZpo3s/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/grJWt4wBYRMWnYsQQ3pt4GZpo3s/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/grJWt4wBYRMWnYsQQ3pt4GZpo3s/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/grJWt4wBYRMWnYsQQ3pt4GZpo3s/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;</content>  <feedburner:origLink>http://www.railsgeek.com/2009/1/6/generate-random-password-in-rails</feedburner:origLink></entry>
  <entry xml:base="http://www.railsgeek.com/">
    <author>
      <name>mikhailov</name>
    </author>
    <id>tag:www.railsgeek.com,2008-12-16:12</id>
    <published>2008-12-16T07:31:00Z</published>
    <updated>2009-01-06T12:09:01Z</updated>
    <category term="Linux" />
    <category term="apache" />
    <category term="deflatecompressionlevel" />
    <category term="httpd" />
    <category term="mod_deflate" />
    <link href="http://feedproxy.google.com/~r/RubyonrailsRubyAjaxHtmlCssLinuxDevelopment/~3/YSbjHRaH07I/apache2-httpd-improving-performance-mod_deflate-gzip" rel="alternate" type="text/html" />
    <title>Apache2 httpd improving performance mod_deflate gzip</title>
<content type="html">
            &lt;p&gt;How often do you think about improving performance of Apache2 httpd web-server?&lt;br /&gt;
“It’s too slow”, “we need more powerfull server”, etc. &lt;br /&gt;
Telling the truth, default settings of Apache2 aren’t good and it’s best to try optimizing those first, before thinking of more advanced solutions.&lt;/p&gt;

&lt;p&gt;
Mod_deflate in apache2 is pretty much the same as mod_gzip in apache1.3, and mod_deflate is included with the apache2 source package. Both modules allow compressing of the apache server on the fly
&lt;/p&gt;

&lt;p&gt;So, I know, professinals from Amazon EC2 AMI have optimized apache configuration file. Let me show that to
&lt;strong&gt;site.vhost&lt;/strong&gt;&lt;/p&gt;

&lt;pre&gt;
&lt;VirtualHost *:80&gt;
...
# Deflate
     AddOutputFilterByType DEFLATE text/html text/plain text/xml application/xml application/xhtml+xml text/javascript text/css application/x-javascript
     BrowserMatch ^Mozilla/4 gzip-only-text/html
     BrowserMatch ^Mozilla/4.0[678] no-gzip
     BrowserMatch bMSIE !no-gzip !gzip-only-text/html
     &amp;lt;font&gt;DeflateCompressionLevel 9&amp;lt;/font&gt;
     SetEnvIf User-Agent ".*MSIE.*" nokeepalive ssl-unclean-shutdown downgrade-1.0 force-response-1.0
...
&lt;/VirtualHost&gt;
&lt;/pre&gt;

&lt;p&gt;It’s simillar to nginx settings &lt;code&gt;gzip_comp_level&lt;/code&gt;.&lt;br /&gt;
So, I have Apache2 httpd with great perfomance improvement with DeflateCompressionLevel.&lt;/p&gt;
          
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/fLO715SVcsbkMIeR-3vfCbXGra8/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/fLO715SVcsbkMIeR-3vfCbXGra8/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/fLO715SVcsbkMIeR-3vfCbXGra8/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/fLO715SVcsbkMIeR-3vfCbXGra8/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;</content>  <feedburner:origLink>http://www.railsgeek.com/2008/12/16/apache2-httpd-improving-performance-mod_deflate-gzip</feedburner:origLink></entry>
  <entry xml:base="http://www.railsgeek.com/">
    <author>
      <name>mikhailov</name>
    </author>
    <id>tag:www.railsgeek.com,2008-11-27:6</id>
    <published>2008-11-27T10:51:00Z</published>
    <updated>2008-11-27T11:23:31Z</updated>
    <category term="Linux" />
    <link href="http://feedproxy.google.com/~r/RubyonrailsRubyAjaxHtmlCssLinuxDevelopment/~3/ye52ldSosiQ/ubuntu-8-10-downgrade-ruby-1-8-7-to-1-8-6" rel="alternate" type="text/html" />
    <title>Ubuntu 8.10 Downgrade Ruby 1.8.7 to 1.8.6</title>
<content type="html">
            &lt;p&gt;As you may know Ruby 1.8.7 don't compatable with Rails(&lt;a href="http://www.rubyonrails.org/down"&gt;http://www.rubyonrails.org/down&lt;/a&gt;)&lt;br /&gt;
&lt;i&gt;We recommend Ruby 1.8.6 for use with Rails. Ruby 1.8.7, 1.8.5, 1.8.4 and 1.8.2 are still usable too, but version 1.8.3 is not. &lt;span&gt;Ruby 1.8.7 still has some bugs to straighten out. &lt;/span&gt;&lt;/i&gt;&lt;/p&gt;

&lt;h4&gt;Step-by-step to downgrade Ruby to 1.8.6&lt;/h4&gt;

&lt;p&gt;1) Replace &lt;b&gt;/etc/apt/sources.list&lt;/b&gt; file with follow data:&lt;/p&gt;

&lt;pre&gt;
# deb cdrom:[Ubuntu 7.10 _Gutsy Gibbon_ - Release i386 (20071016)]/ gutsy main restricted
# See http://help.ubuntu.com/community/UpgradeNotes for how to upgrade to
# newer versions of the distribution.

# Line commented out by installer because it failed to verify:
deb http://mirror.cs.umn.edu/ubuntu/ intrepid main restricted
deb http://mirror.cs.umn.edu/ubuntu/ hardy main restricted
# Line commented out by installer because it failed to verify:
deb-src http://mirror.cs.umn.edu/ubuntu/ intrepid main restricted
deb-src http://mirror.cs.umn.edu/ubuntu/ hardy main restricted

## Major bug fix updates produced after the final release of the
## distribution.
# Line commented out by installer because it failed to verify:
deb http://mirror.cs.umn.edu/ubuntu/ intrepid-updates main restricted
deb http://mirror.cs.umn.edu/ubuntu/ hardy-updates main restricted

# Line commented out by installer because it failed to verify:
deb-src http://mirror.cs.umn.edu/ubuntu/ intrepid-updates main restricted
deb-src http://mirror.cs.umn.edu/ubuntu/ hardy-updates main restricted

## N.B. software from this repository is ENTIRELY UNSUPPORTED by the Ubuntu
## team, and may not be under a free licence. Please satisfy yourself as to
## your rights to use the software. Also, please note that software in
## universe WILL NOT receive any review or updates from the Ubuntu security
## team.
# Line commented out by installer because it failed to verify:
deb http://mirror.cs.umn.edu/ubuntu/ intrepid universe
deb http://mirror.cs.umn.edu/ubuntu/ hardy universe

# Line commented out by installer because it failed to verify:
deb-src http://mirror.cs.umn.edu/ubuntu/ intrepid universe
deb-src http://mirror.cs.umn.edu/ubuntu/ hardy universe

# Line commented out by installer because it failed to verify:
deb http://mirror.cs.umn.edu/ubuntu/ intrepid-updates universe
deb http://mirror.cs.umn.edu/ubuntu/ hardy-updates universe

# Line commented out by installer because it failed to verify:
deb-src http://mirror.cs.umn.edu/ubuntu/ intrepid-updates universe
deb-src http://mirror.cs.umn.edu/ubuntu/ hardy-updates universe

## N.B. software from this repository is ENTIRELY UNSUPPORTED by the Ubuntu 
## team, and may not be under a free licence. Please satisfy yourself as to 
## your rights to use the software. Also, please note that software in 
## multiverse WILL NOT receive any review or updates from the Ubuntu
## security team.
# Line commented out by installer because it failed to verify:
deb http://mirror.cs.umn.edu/ubuntu/ intrepid multiverse
deb http://mirror.cs.umn.edu/ubuntu/ hardy multiverse

# Line commented out by installer because it failed to verify:
deb-src http://mirror.cs.umn.edu/ubuntu/ hardy multiverse
deb-src http://mirror.cs.umn.edu/ubuntu/ intrepid multiverse


# Line commented out by installer because it failed to verify:
deb http://mirror.cs.umn.edu/ubuntu/ intrepid-updates multiverse
deb http://mirror.cs.umn.edu/ubuntu/ hardy-updates multiverse

# Line commented out by installer because it failed to verify:
deb-src http://mirror.cs.umn.edu/ubuntu/ intrepid-updates multiverse
deb-src http://mirror.cs.umn.edu/ubuntu/ hardy-updates multiverse

## Uncomment the following two lines to add software from the 'backports'
## repository.
## N.B. software from this repository may not have been tested as
## extensively as that contained in the main release, although it includes
## newer versions of some applications which may provide useful features.
## Also, please note that software in backports WILL NOT receive any review
## or updates from the Ubuntu security team.
deb http://mirror.cs.umn.edu/ubuntu/ intrepid-backports main restricted universe multiverse
deb http://mirror.cs.umn.edu/ubuntu/ hardy-backports main restricted universe multiverse

deb-src http://mirror.cs.umn.edu/ubuntu/ intrepid-backports main restricted universe multiverse
deb-src http://mirror.cs.umn.edu/ubuntu/ hardy-backports main restricted universe multiverse

## Uncomment the following two lines to add software from Canonical's
## 'partner' repository. This software is not part of Ubuntu, but is
## offered by Canonical and the respective vendors as a service to Ubuntu
## users.
deb http://archive.canonical.com/ubuntu intrepid partner
deb http://archive.canonical.com/ubuntu hardy partner

deb-src http://archive.canonical.com/ubuntu intrepid partner
deb-src http://archive.canonical.com/ubuntu hardy partner

# Line commented out by installer because it failed to verify:
deb http://mirror.cs.umn.edu/ubuntu/ intrepid-security main restricted
deb http://mirror.cs.umn.edu/ubuntu/ hardy-security main restricted

# Line commented out by installer because it failed to verify:
deb-src http://mirror.cs.umn.edu/ubuntu/ intrepid-security main restricted
deb-src http://mirror.cs.umn.edu/ubuntu/ hardy-security main restricted

# Line commented out by installer because it failed to verify:
deb http://mirror.cs.umn.edu/ubuntu/ intrepid-security universe
deb http://mirror.cs.umn.edu/ubuntu/ hardy-security universe

# Line commented out by installer because it failed to verify:
deb-src http://mirror.cs.umn.edu/ubuntu/ intrepid-security universe
deb-src http://mirror.cs.umn.edu/ubuntu/ hardy-security universe

# Line commented out by installer because it failed to verify:
deb http://mirror.cs.umn.edu/ubuntu/ intrepid-security multiverse
deb http://mirror.cs.umn.edu/ubuntu/ hardy-security multiverse

# Line commented out by installer because it failed to verify:
deb-src http://mirror.cs.umn.edu/ubuntu/ intrepid-security multiverse
deb-src http://mirror.cs.umn.edu/ubuntu/ hardy-security multiverse
&lt;/pre&gt;

&lt;p&gt;2) Create new file &lt;b&gt;/etc/apt/preferences&lt;/b&gt;&lt;/p&gt;

&lt;pre&gt;
Package: ruby
Pin: release a=hardy
Pin-Priority: 900

Package: ruby1.8
Pin: release a=hardy
Pin-Priority: 900

Package: libruby1.8
Pin: release a=hardy
Pin-Priority: 900

Package: rdoc1.8
Pin: release a=hardy
Pin-Priority: 900

Package: ri1.8
Pin: release a=hardy
Pin-Priority: 900

Package: libgtk2-ruby1.8
Pin: release a=hardy
Pin-Priority: 900

Package: libdbd-sqlite3-ruby1.8
Pin: release a=hardy
Pin-Priority: 900

Package: libopenssl-ruby1.8
Pin: release a=hardy
Pin-Priority: 900

Package: libsqlite3-ruby1.8
Pin: release a=hardy
Pin-Priority: 900

Package: ruby1.8-dev
Pin: release a=hardy
Pin-Priority: 900

Package: libdbi-ruby1.8
Pin: release a=hardy
Pin-Priority: 900

Package: libatk1-ruby1.8
Pin: release a=hardy
Pin-Priority: 900

Package: libpango1-ruby1.8
Pin: release a=hardy
Pin-Priority: 900

Package: libatk1-ruby1.8
Pin: release a=hardy
Pin-Priority: 900

Package: libgdk-pixbuf2-ruby1.8
Pin: release a=hardy
Pin-Priority: 900

Package: libglib2-ruby1.8
Pin: release a=hardy
Pin-Priority: 900

Package: libcairo-ruby1.8
Pin: release a=hardy
Pin-Priority: 900

Package: irb1.8
Pin: release a=hardy
Pin-Priority: 900

Package: libreadline-ruby1.8
Pin: release a=hardy
Pin-Priority: 900

Package: rails
Pin: release a=hardy
Pin-Priority: 900

Package: libncurses-ruby1.8
Pin: release a=hardy
Pin-Priority: 900
&lt;/pre&gt;

&lt;p&gt;3) Open synaptic and find "ruby" relate packages (just search "ruby"). Check for completly removal installed packages (3-7 installed packages will be here)&lt;br /&gt;
4) sudo apt-get update &lt;br /&gt;
5) sudo apt-get install ruby rdoc irb libyaml-ruby libzlib-ruby ri libopenssl-ruby ruby1.8-dev build-essential&lt;/p&gt;

&lt;h4&gt; That's all :) &lt;/h4&gt;

&lt;p&gt;I use the article: &lt;a href="http://sudan.ubuntuforums.com/showthread.php?t=964978"&gt;http://sudan.ubuntuforums.com/showthread.php?t=964978&lt;/a&gt;&lt;/p&gt;
          
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/uv-okcXT_3hZcPDgLYp9Si_dZvE/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/uv-okcXT_3hZcPDgLYp9Si_dZvE/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/uv-okcXT_3hZcPDgLYp9Si_dZvE/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/uv-okcXT_3hZcPDgLYp9Si_dZvE/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;</content>  <feedburner:origLink>http://www.railsgeek.com/2008/11/27/ubuntu-8-10-downgrade-ruby-1-8-7-to-1-8-6</feedburner:origLink></entry>
  <entry xml:base="http://www.railsgeek.com/">
    <author>
      <name>mikhailov</name>
    </author>
    <id>tag:www.railsgeek.com,2008-11-20:5</id>
    <published>2008-11-20T19:33:00Z</published>
    <updated>2008-11-21T06:14:15Z</updated>
    <category term="Linux" />
    <category term="8.10" />
    <category term="intrepid" />
    <category term="network-manager" />
    <category term="pppoe" />
    <category term="ubuntu" />
    <link href="http://feedproxy.google.com/~r/RubyonrailsRubyAjaxHtmlCssLinuxDevelopment/~3/YHJ4UzKncuI/ubuntu-8-10-pppoe-setup" rel="alternate" type="text/html" />
    <title>Ubuntu 8.10 PPPoE setup</title>
<content type="html">
            &lt;p&gt;As you may know not all the network parts have installed in Ubuntu by default, e.g PPPoE.
While I'm searching for a solution to the problem (PPPoE with Ubuntu Linux) I have found short article about it.
Secret is here:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt; Go to the url &lt;a href="http://packages.ubuntu.com/intrepid/pppoe"&gt;http://packages.ubuntu.com/intrepid/pppoe&lt;/a&gt; &lt;/li&gt;
&lt;li&gt; Download pppoe deb packet &lt;/li&gt;
&lt;li&gt; Install this deb on the fresh installed Ubuntu &lt;/li&gt;
&lt;li&gt; sudo pppoeconf &lt;/li&gt;
&lt;li&gt; type yours login and pass &lt;/li&gt;
&lt;li&gt; Congratulations!!! &lt;/li&gt;
&lt;/ul&gt;
          
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/hAjr5D7OAqGuquXO3Cco8i7NUf4/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/hAjr5D7OAqGuquXO3Cco8i7NUf4/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/hAjr5D7OAqGuquXO3Cco8i7NUf4/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/hAjr5D7OAqGuquXO3Cco8i7NUf4/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;</content>  <feedburner:origLink>http://www.railsgeek.com/2008/11/20/ubuntu-8-10-pppoe-setup</feedburner:origLink></entry>
  <entry xml:base="http://www.railsgeek.com/">
    <author>
      <name>mikhailov</name>
    </author>
    <id>tag:www.railsgeek.com,2008-11-20:4</id>
    <published>2008-11-20T13:09:00Z</published>
    <updated>2008-11-20T13:15:30Z</updated>
    <category term="Overview" />
    <link href="http://feedproxy.google.com/~r/RubyonrailsRubyAjaxHtmlCssLinuxDevelopment/~3/9FiLMnFzaNI/why-develop-using-ruby-on-rails" rel="alternate" type="text/html" />
    <title>Why develop using Ruby on Rails</title>
<content type="html">
            &lt;p&gt;Put the fun back into the creative process of application creation with Ruby on Rails. Here are just a few reasons developers are making the move:&lt;/p&gt;

      &lt;h3&gt;Less learning curve&lt;/h3&gt;
        &lt;ul&gt;
          &lt;li&gt; Ruby uses a natural language syntax &lt;/li&gt;
          &lt;li&gt; One framework to use, stressing convention over configuration &lt;/li&gt;
          &lt;li&gt; Rapidly increasing availability of resources &lt;/li&gt;
          &lt;li&gt; Growing community of developers &lt;/li&gt;
          &lt;li&gt; More books published every month &lt;/li&gt;
       &lt;/ul&gt;
      &lt;h3&gt;Higher productivity&lt;/h3&gt;
       &lt;ul&gt;
          &lt;li&gt; Less code creating more functionality &lt;/li&gt;
          &lt;li&gt; Less accidental complexity &lt;/li&gt;
       &lt;/ul&gt;
      &lt;h3&gt;Built-in testing&lt;/h3&gt;
       &lt;ul&gt;
          &lt;li&gt; Generate basic tests along with scaffolding &lt;/li&gt;
       &lt;/ul&gt;
      &lt;h3&gt;Something for everybody&lt;/h3&gt;
       &lt;ul&gt;
          &lt;li&gt; You don't have to be an expert or learn a bunch of frameworks in order to begin &lt;/li&gt;
          &lt;li&gt; Full OOP for experienced developers &lt;/li&gt;
          &lt;li&gt; More advanced techniques are available for advanced developers &lt;/li&gt;
       &lt;/ul&gt;
      &lt;h3&gt;Rapid feedback&lt;/h3&gt;
       &lt;ul&gt;
          &lt;li&gt; No compiling, just a quick browser refresh &lt;/li&gt;
       &lt;/ul&gt;
      &lt;h3&gt;Rapid prototyping&lt;/h3&gt;
       &lt;ul&gt;
          o Show em faster
       &lt;/ul&gt;

see more: &lt;a href="http://www.railsforall.org/info/why_develop_using_ruby_on_rails"&gt;http://www.railsforall.org/info/why_develop_using_ruby_on_rails
          
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/T2WZ6PMlvEFhE1aGrMfL6Fzn61Y/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/T2WZ6PMlvEFhE1aGrMfL6Fzn61Y/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/T2WZ6PMlvEFhE1aGrMfL6Fzn61Y/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/T2WZ6PMlvEFhE1aGrMfL6Fzn61Y/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;</content>  <feedburner:origLink>http://www.railsgeek.com/2008/11/20/why-develop-using-ruby-on-rails</feedburner:origLink></entry>
  <entry xml:base="http://www.railsgeek.com/">
    <author>
      <name>mikhailov</name>
    </author>
    <id>tag:www.railsgeek.com,2008-10-20:1</id>
    <published>2008-10-20T10:43:00Z</published>
    <updated>2009-01-08T08:42:31Z</updated>
    <category term="github" />
    <category term="linode" />
    <category term="railsrumble" />
    <category term="rdocker" />
    <link href="http://feedproxy.google.com/~r/RubyonrailsRubyAjaxHtmlCssLinuxDevelopment/~3/yIKZI9m7KEw/rails-rumble" rel="alternate" type="text/html" />
    <title>RailsRumble</title>
<content type="html">
            &lt;p&gt;I was very happy to participate in &lt;strong&gt;RailsRumble&lt;/strong&gt; last weekend.&lt;br /&gt;
We developed &lt;strong&gt;Rdocker&lt;/strong&gt; project, which makes rdoc browsing of favorite ruby projects less painful.&lt;br /&gt;&lt;/p&gt;

&lt;p&gt;
Rdocker  - Personalized RDoc browser and Gem server
&lt;/p&gt;

&lt;p&gt;&lt;img src="http://farm4.static.flickr.com/3038/2966959344_fc16c99277.jpg?v=0" alt="me and Dekart" /&gt;&lt;br /&gt;
Please check this out &lt;a href="http://vote.railsrumble.com/entries?page=4"&gt;http://vote.railsrumble.com/entries?page=4&lt;/a&gt;&lt;/p&gt;
          
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/DN8NZAlI4jS4xBJxR1XskGGRrJA/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/DN8NZAlI4jS4xBJxR1XskGGRrJA/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/DN8NZAlI4jS4xBJxR1XskGGRrJA/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/DN8NZAlI4jS4xBJxR1XskGGRrJA/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;</content>  <feedburner:origLink>http://www.railsgeek.com/2008/10/20/rails-rumble</feedburner:origLink></entry>
</feed>
