<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Design by Engineers</title>
	<atom:link href="http://designbye.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://designbye.wordpress.com</link>
	<description></description>
	<lastBuildDate>Thu, 01 Dec 2011 18:00:52 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='designbye.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Design by Engineers</title>
		<link>http://designbye.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://designbye.wordpress.com/osd.xml" title="Design by Engineers" />
	<atom:link rel='hub' href='http://designbye.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Access YQL finance data using Jquery</title>
		<link>http://designbye.wordpress.com/2011/03/01/access-yql-finance-data-using-jquery/</link>
		<comments>http://designbye.wordpress.com/2011/03/01/access-yql-finance-data-using-jquery/#comments</comments>
		<pubDate>Tue, 01 Mar 2011 15:19:40 +0000</pubDate>
		<dc:creator>Max</dc:creator>
				<category><![CDATA[Jquery]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[historical stock quotes]]></category>
		<category><![CDATA[html5]]></category>
		<category><![CDATA[jQuery YQL]]></category>
		<category><![CDATA[JSON]]></category>
		<category><![CDATA[stock data]]></category>
		<category><![CDATA[yahoo finance]]></category>
		<category><![CDATA[YQL]]></category>

		<guid isPermaLink="false">http://designbye.wordpress.com/?p=142</guid>
		<description><![CDATA[Let&#8217;s take a look at how you can access stock information(realtime and historical) without the use of server-side code.  In case you haven&#8217;t noticed, it is hard these days to find a good source of market data that will satisfy most developers&#8217; needs (free, fast and easy). YQL and Open Data tables YQL (Yahoo! Query [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=designbye.wordpress.com&amp;blog=9837499&amp;post=142&amp;subd=designbye&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p style='color:#555;font-size:12px;'>Let&#8217;s take a look at how you can access stock information(realtime and historical) without the use of server-side code.  In case you haven&#8217;t noticed, it is hard these days to find a good source of market data that will satisfy most developers&#8217; needs (free, fast and easy). </p>
<h3 style="color:#666;">YQL and Open Data tables</h3>
<p style='color:#555;font-size:12px;margin-top:5px;'>YQL (Yahoo! Query Language) is  a SQL-like language that lets you query, filter, and join data across the web. Open Data tables are YQL plugins (XML) that can mapped onto any web service or source on the internet. Together, they provide developers a simple way to access data via a RESTful web api in XML or JSON format. For our example we use jQuery to retrieve our information as a JSON object.</p>
<h3 style="color:#666;">HTML</h3>
<p style='color:#555;font-size:12px;margin-top:5px;'>jQueryUI&#8217;s datepicker is a life saver. HTML5&#8242;s input placeholder is a nice little enhancement as well. I commented out the resources the you will need to include in your  tag.</p>
<p><pre class="brush: xml; wrap-lines: false;">
&lt;!-- Header References
http://code.jquery.com/jquery-1.5.js
http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.8/themes/base/jquery-ui.css
http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.7/jquery-ui.js --&gt;

&lt;div id=&quot;inputSymbol&quot;&gt; 
        &lt;p&gt;Enter Stock&lt;/p&gt; 
            &lt;input id=&quot;txtSymbol&quot; class=&quot;required&quot; Placeholder=&quot;Symbol&quot; /&gt;   
            &lt;input id=&quot;startDate&quot; class=&quot;datePick required&quot; type=&quot;text&quot;  Placeholder=&quot;From&quot; /&gt;   
            &lt;input id=&quot;endDate&quot; class=&quot;datePick&quot; type=&quot;text&quot; Placeholder=&quot;To&quot;  /&gt; 
        &lt;button ID=&quot;submit&quot;&gt;Submit&lt;/button&gt; 
    &lt;/div&gt;     
&lt;div class=&quot;realtime&quot;&gt; 
    &lt;div&gt;&lt;p&gt;Name&lt;/p&gt;&lt;span id=&quot;symbol&quot;&gt;&lt;/span&gt;&lt;/div&gt; 
    &lt;div&gt;&lt;p&gt;RealtimeBid&lt;/p&gt;&lt;span id=&quot;bidRealtime&quot;&gt;&lt;/span&gt;&lt;/div&gt; 
&lt;/div&gt;   
&lt;div class=&quot;historical&quot;&gt; 
    &lt;div&gt;&lt;p&gt;Date&lt;/p&gt;&lt;span id=&quot;date&quot;&gt;&lt;/span&gt;&lt;/div&gt;
    &lt;div&gt;&lt;p&gt;Price&lt;/p&gt;&lt;span id=&quot;closeValue&quot;&gt;&lt;/span&gt;&lt;/div&gt; 
&lt;/div&gt; 
</pre></p>
<h3>CSS</h3>
<p style='color:#555;font-size:12px;margin-top:5px;'>Used some CSS3 on the textbox for the required field indicator</p>
<p><pre class="brush: css; wrap-lines: false;">
*{margin:0; padding:0}  body{padding:1em; color:#555; font-family:verdana; text-align:center}

p{padding:0.5em 0; font-weight:bold} input:focus { outline:none; }

input, button{padding:0.4em 0.3em;  margin:0.5em 0em}
input{border:1px solid #999; border-left:1.05em solid #aaa;-moz-border-radius: 15px; border-radius: 15px;}

.required{ border-left:1.05em solid #E8725C;} 

#inputSymbol, .realtime, .historical{ 
    padding:0.5em 0.5em; margin:0% 20%;  
    text-align:left; 
    border-bottom:1px solid #aaa
}
.realtime div, .historical div, .realtime div span, .historical div span{ display:inline-block }
.realtime div, .historical div{width:45%}

#date span, #closeValue span { display:block; color:#666; font-size:90%}
.ui-datepicker { font-size:11px !important} /* skrink datepicker */

</pre></p>
<h3>jQuery</h3>
<p style='color:#555;font-size:12px;margin-top:5px;'>After we pull our JSON object, we output our columns of interest to their appropriate HTML elements. </p>
<p><pre class="brush: jscript; wrap-lines: false;">
var yqlURL=&quot;http://query.yahooapis.com/v1/public/yql?q=&quot;;
var dataFormat=&quot;&amp;format=json&amp;env=store%3A%2F%2Fdatatables.org%2Falltableswithkeys&quot;;

$(function() { //Load jQueryUI DatePicker by class name
    $( &quot;.datePick&quot; ).datepicker({dateFormat: 'yy-mm-dd'} );
});
 
$(&quot;#submit&quot;).click(function() {
    var symbol = $(&quot;#txtSymbol&quot;).val();
    var startDate=$(&quot;#startDate&quot;).val();
    var endDate=$(&quot;#endDate&quot;).val();

    var realtimeQ = yqlURL+&quot;select%20*%20from%20yahoo.finance.quotes%20where%20symbol%20in%20(%22&quot; + symbol + &quot;%22)%0A%09%09&amp;&quot;+ dataFormat;
    var historicalQ = yqlURL+&quot;select%20*%20from%20yahoo.finance.historicaldata%20where%20symbol%20%3D%20%22&quot;+ symbol +&quot;%22%20and%20startDate%20%3D%20%22&quot;+ startDate +&quot;%22%20and%20endDate%20%3D%20%22&quot;+ endDate +&quot;%22&quot;+ dataFormat;

    $(function() {
        $.getJSON(realtimeQ, function(json) {//YQL Request
            $('#symbol').text(json.query.results.quote.Name);//Assign quote.Param to span tag
            $('#bidRealtime').text(json.query.results.quote.BidRealtime);
        });
    });  
    $(function() {
        $.getJSON(historicalQ, function(json) {            
            $.each(json.query.results.quote, function(i, quote) {//loop results.quote object 
                $(&quot;#date&quot;).append('&lt;span&gt;' + quote.Date + '&lt;/span');//create span for each record
            });            
            $.each(json.query.results.quote, function(i, quote) { //new each statement is needed
                $(&quot;#closeValue&quot;).append('&lt;span&gt;' + quote.Close + '&lt;/span');
            });
        });
    });
});
</pre><br />
</p>
<p><a style="font-size:14px;color:#386992;font-weight:bold;margin-top:5px;" target="_blank" href="http://jsfiddle.net/maxmillien/qPVSy/embedded/result/">Editable Demo</a></p>
<p style='color:#555;font-size:12px;'>If anyone is familiar with any free stock market APIs out there, I would be interested in checking it out and taking it out for a test drive.</p>
<p style='color:#555;font-size:12px;margin-top:5px;'>Good Luck,</p>
<p style='color:#555;font-size:12px;'>Max</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/designbye.wordpress.com/142/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/designbye.wordpress.com/142/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/designbye.wordpress.com/142/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/designbye.wordpress.com/142/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/designbye.wordpress.com/142/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/designbye.wordpress.com/142/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/designbye.wordpress.com/142/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/designbye.wordpress.com/142/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/designbye.wordpress.com/142/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/designbye.wordpress.com/142/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/designbye.wordpress.com/142/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/designbye.wordpress.com/142/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/designbye.wordpress.com/142/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/designbye.wordpress.com/142/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=designbye.wordpress.com&amp;blog=9837499&amp;post=142&amp;subd=designbye&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://designbye.wordpress.com/2011/03/01/access-yql-finance-data-using-jquery/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/66a8a1caf5a687f3ad470d0a671ddcee?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">maxmill00</media:title>
		</media:content>
	</item>
		<item>
		<title>Upgrading Rails, Gems, and MySQL to Snow Leopard</title>
		<link>http://designbye.wordpress.com/2010/11/29/upgrading-rails-gems-and-mysql-to-snow-leopard/</link>
		<comments>http://designbye.wordpress.com/2010/11/29/upgrading-rails-gems-and-mysql-to-snow-leopard/#comments</comments>
		<pubDate>Mon, 29 Nov 2010 23:12:40 +0000</pubDate>
		<dc:creator>Mikhail</dc:creator>
				<category><![CDATA[Mac OS X]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[Rails]]></category>

		<guid isPermaLink="false">http://designbye.wordpress.com/?p=112</guid>
		<description><![CDATA[Have been meaning to post this for a while. I have an older MBP that came with OS X version 10.4, and after upgrading to 10.6 my entire coding stack collapsed. After a couple of hours here is the solution I came up with. &#160; First, find what processor you are running on, ie 32 [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=designbye.wordpress.com&amp;blog=9837499&amp;post=112&amp;subd=designbye&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Have been meaning to post this for a while. I have an older MBP that came with OS X version 10.4, and after upgrading to 10.6 my entire coding stack collapsed. After a couple of hours here is the solution I came up with.</p>
<p>&nbsp;</p>
<p>First, find what processor you are running on, ie 32 or 64 bit. If you don&#8217;t know use this guide <a href="http://support.apple.com/kb/ht3696">http://support.apple.com/kb/ht3696</a></p>
<p>&nbsp;</p>
<p>Second, download and install the appropriate MySQL version  from <a href="http://dev.mysql.com/downloads/mysql/">http://dev.mysql.com/downloads/mysql</a>. In my case it was 64-bit MySQL 5.1.37.</p>
<p>&nbsp;</p>
<p>After that you&#8217;ll need to install ruby gems from scratch. You can find more details in my other post <a href="http://designbye.wordpress.com/2009/10/10/how-to-setup-rorpassengermysqlubuntu-server-on-ec2/">How to setup RoR+Passenger+MySql+Ubuntu Server on EC2</a>,but here is an excerpt bash script with all you need:</p>
<pre>echo Installing ruby gems...
cd /usr/local/src
sudo wget http://rubyforge.org/frs/download.php/60718/rubygems-1.3.5.tgz
sudo tar -zvxf rubygems-1.3.5.tgz
cd rubygems-1.3.5/
sudo ruby setup.rb

echo Symlinking...
sudo ln -s /usr/bin/gem1.8 /usr/local/bin/gem
sudo ln -s /usr/bin/ruby1.8 /usr/local/bin/ruby
sudo ln -s /usr/bin/rdoc1.8 /usr/local/bin/rdoc
sudo ln -s /usr/bin/ri1.8 /usr/local/bin/ri
sudo ln -s /usr/bin/irb1.8 /usr/local/bin/irb</pre>
<p>Note: If you find that the gem command still won&#8217;t run try this</p>
<pre>sudo ln -s /usr/bin/gem /usr/local/bin/gem</pre>
<p>&nbsp;</p>
<p>Finally, execute the following:</p>
<pre>sudo gem update --system
sudo env ARCHFLAGS="-arch x86_64" gem install mysql -- --with-mysql-config=/usr/local/mysql/bin/mysql_config</pre>
<p>Note: make sure you set  <span style="font-family:Consolas, Monaco, 'Courier New', Courier, monospace;line-height:18px;font-size:12px;white-space:pre;">ARCHFLAGS </span>flag to the appropriate architecture.</p>
<p>&nbsp;</p>
<p>Good luck and enjoy your new OS.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/designbye.wordpress.com/112/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/designbye.wordpress.com/112/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/designbye.wordpress.com/112/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/designbye.wordpress.com/112/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/designbye.wordpress.com/112/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/designbye.wordpress.com/112/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/designbye.wordpress.com/112/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/designbye.wordpress.com/112/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/designbye.wordpress.com/112/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/designbye.wordpress.com/112/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/designbye.wordpress.com/112/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/designbye.wordpress.com/112/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/designbye.wordpress.com/112/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/designbye.wordpress.com/112/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=designbye.wordpress.com&amp;blog=9837499&amp;post=112&amp;subd=designbye&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://designbye.wordpress.com/2010/11/29/upgrading-rails-gems-and-mysql-to-snow-leopard/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/5738d2cb8d7ceb733aa922f0e92f9fab?s=96&#38;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">Mikhail</media:title>
		</media:content>
	</item>
		<item>
		<title>Installing swftools and pdf2swf on Ubuntu Linux</title>
		<link>http://designbye.wordpress.com/2010/02/23/installing-swftools-and-pdf2swf-on-ubuntu-linux/</link>
		<comments>http://designbye.wordpress.com/2010/02/23/installing-swftools-and-pdf2swf-on-ubuntu-linux/#comments</comments>
		<pubDate>Wed, 24 Feb 2010 02:44:58 +0000</pubDate>
		<dc:creator>Mikhail</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[pdf2swf]]></category>
		<category><![CDATA[swftools]]></category>

		<guid isPermaLink="false">http://designbye.wordpress.com/?p=81</guid>
		<description><![CDATA[Hello, I&#8217;ve been using swftools, mainly pdf2swf functionality, for a while now and installation always sucked. Google usually provides good results for common problems, but lack of a step-by-step installation guide is lacking. Main site, http://swftools.org, has pretty good wiki for documentation and a tidy installation walkthrough. Unfortunately for me I had a ton of [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=designbye.wordpress.com&amp;blog=9837499&amp;post=81&amp;subd=designbye&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Hello,</p>
<p>I&#8217;ve been using swftools, mainly pdf2swf functionality, for a while now and installation always sucked. Google usually provides good results for common problems, but lack of a step-by-step installation guide is lacking.</p>
<p>Main site, http://swftools.org, has pretty good <a href="http://wiki.swftools.org/index.php/Main_Page">wiki</a> for documentation and a tidy installation walkthrough. Unfortunately for me I had a ton of problems getting pdf2swf to work properly on Amazon&#8217;s AWS Ubuntu server (ami-5059be39 – ubuntu-intrepid), but fortunately for you I finally got it working and also put together this guide, which will hopefully save you some time.</p>
<p>Note: swftools version that comes default with aptitude would not work for me hence the need to compile from source.<br />
Note2: this guide assumes the distro is up to date and all system libraries have been installed from <a href="http://designbye.wordpress.com/2009/10/10/how-to-setup-rorpassengermysqlubuntu-server-on-ec2/">Installing RoR on Ubuntu</a> post</p>
<p>Get necessary libraries and extract<br />
<pre class="brush: xml; wrap-lines: false;">
wget http://swftools.org/swftools-0.9.0.tar.gz
tar -zvxf swftools-0.9.0.tar.gz
wget http://www.ijg.org/files/jpegsrc.v7.tar.gz
tar -zvxf jpegsrc.v7.tar.gz
wget http://download.savannah.gnu.org/releases-noredirect/freetype/freetype-2.3.12.tar.gz
tar -zvxf freetype-2.3.12.tar.gz
</pre></p>
<p>Note: v8 produced errors in swftools install so I grabbed v7, which worked wonderfully.</p>
<p>Now order of install. First we install jpeg:<br />
<pre class="brush: xml; wrap-lines: false;">
cd jpegsrc.v7
sudo ./configure
sudo make
sudo make install
</pre></p>
<p>Freetype is a little trickier. For install you have to reset cache, set flags, run ranlib (not sure why but it wouldn&#8217;t work without for me, if you know I&#8217;d love an explanation)<br />
<pre class="brush: xml; wrap-lines: false;">
cd freetype-2.3.12
rm -f config.cache
sudo ranlib /usr/local/lib/libjpeg.a
sudo ldconfig /usr/local/lib
sudo LDFLAGS=&quot;-L/usr/local/lib&quot; CPPFLAGS=&quot;-I/usr/local/include&quot; ./configure
sudo make
sudo make install
</pre></p>
<p>If you want to be able to convert pdf files into text you have to install <a href="http://www.foolabs.com/xpdf/">xpdf</a>. Fortunately aptitude does provide us with the right libraries this time.<br />
<pre class="brush: xml; wrap-lines: false;">
sudo apt-get install xpdf-reader
</pre></p>
<p>And now for the final step:<br />
<pre class="brush: xml; wrap-lines: false;">
cd swftools-0.9.0
sudo LDFLAGS=&quot;-L/usr/local/lib&quot; CPPFLAGS=&quot;-I/usr/local/include&quot; ./configure
sudo make
sudo make install
</pre></p>
<p>Big thanks to swftools for making this possible.</p>
<p>Best,<br />
Mikhail</p>
<p>Edit (3/3/2011): Updated code formatting.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/designbye.wordpress.com/81/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/designbye.wordpress.com/81/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/designbye.wordpress.com/81/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/designbye.wordpress.com/81/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/designbye.wordpress.com/81/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/designbye.wordpress.com/81/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/designbye.wordpress.com/81/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/designbye.wordpress.com/81/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/designbye.wordpress.com/81/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/designbye.wordpress.com/81/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/designbye.wordpress.com/81/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/designbye.wordpress.com/81/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/designbye.wordpress.com/81/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/designbye.wordpress.com/81/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=designbye.wordpress.com&amp;blog=9837499&amp;post=81&amp;subd=designbye&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://designbye.wordpress.com/2010/02/23/installing-swftools-and-pdf2swf-on-ubuntu-linux/feed/</wfw:commentRss>
		<slash:comments>31</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/5738d2cb8d7ceb733aa922f0e92f9fab?s=96&#38;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">Mikhail</media:title>
		</media:content>
	</item>
		<item>
		<title>Incorret user name or password when setting up GMail on iPhone/touch</title>
		<link>http://designbye.wordpress.com/2009/11/14/incorret-user-name-or-password-when-setting-up-gmail-on-iphonetouch/</link>
		<comments>http://designbye.wordpress.com/2009/11/14/incorret-user-name-or-password-when-setting-up-gmail-on-iphonetouch/#comments</comments>
		<pubDate>Sat, 14 Nov 2009 19:08:45 +0000</pubDate>
		<dc:creator>Mikhail</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[gmail]]></category>
		<category><![CDATA[incorrect password]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[ipod]]></category>
		<category><![CDATA[itouch]]></category>

		<guid isPermaLink="false">http://designbye.wordpress.com/?p=74</guid>
		<description><![CDATA[I bought an iPod Touch and was trying to hook it up to my gmail account, but kept getting &#8220;The user name or password for &#8220;imap.gmail.com&#8221; is incorrect&#8221;. I tried going through the official GMail setup but to no avail. Triple checked to make sure IMAP support was enabled, still nothing. Then I stumbled along [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=designbye.wordpress.com&amp;blog=9837499&amp;post=74&amp;subd=designbye&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I bought an iPod Touch and was trying to hook it up to my gmail account, but kept getting &#8220;The user name or password for &#8220;imap.gmail.com&#8221; is incorrect&#8221;. I tried going through the <a href="http://mail.google.com/support/bin/answer.py?hl=en&amp;answer=77702">official GMail setup</a> but to no avail.</p>
<p>Triple checked to make sure IMAP support was enabled, still nothing.</p>
<p>Then I stumbled along a post suggesting to try unlocking captcha on my account (<a href="https://www.google.com/accounts/UnlockCaptcha">https://www.google.com/accounts/UnlockCaptcha</a>). I went ahead and everything worked fine afterward. Awesome!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/designbye.wordpress.com/74/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/designbye.wordpress.com/74/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/designbye.wordpress.com/74/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/designbye.wordpress.com/74/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/designbye.wordpress.com/74/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/designbye.wordpress.com/74/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/designbye.wordpress.com/74/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/designbye.wordpress.com/74/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/designbye.wordpress.com/74/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/designbye.wordpress.com/74/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/designbye.wordpress.com/74/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/designbye.wordpress.com/74/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/designbye.wordpress.com/74/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/designbye.wordpress.com/74/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=designbye.wordpress.com&amp;blog=9837499&amp;post=74&amp;subd=designbye&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://designbye.wordpress.com/2009/11/14/incorret-user-name-or-password-when-setting-up-gmail-on-iphonetouch/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/5738d2cb8d7ceb733aa922f0e92f9fab?s=96&#38;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">Mikhail</media:title>
		</media:content>
	</item>
		<item>
		<title>Cost of hosting development on Amazon EC2</title>
		<link>http://designbye.wordpress.com/2009/11/10/cost-of-hosting-development-on-amazon-ec2/</link>
		<comments>http://designbye.wordpress.com/2009/11/10/cost-of-hosting-development-on-amazon-ec2/#comments</comments>
		<pubDate>Tue, 10 Nov 2009 15:03:29 +0000</pubDate>
		<dc:creator>Mikhail</dc:creator>
				<category><![CDATA[EC2]]></category>
		<category><![CDATA[Hosting]]></category>

		<guid isPermaLink="false">http://designbye.wordpress.com/?p=71</guid>
		<description><![CDATA[I&#8217;ve noticed there were some searches coming through with people asking how much it costs to host servers on Amazon&#8217;s EC2. Without going into detail, last month I ran 3 Linux instances (m1.small) with no EBS and minor S3 usage, which cost me about $200 a month. Compared to my previous hosting company &#8211; hostmonster.com [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=designbye.wordpress.com&amp;blog=9837499&amp;post=71&amp;subd=designbye&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve noticed there were some searches coming through with people asking how much it costs to host servers on Amazon&#8217;s EC2. Without going into detail, last month I ran <strong>3 Linux instances</strong> (m1.small) with no EBS and minor S3 usage, which cost me about <strong>$200 a month</strong>.</p>
<p>Compared to my previous hosting company &#8211; hostmonster.com &#8211; Amazon is way more expensive. However, I now find that taking care of my server administration needs is much easier and (gasp!) fun. </p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/designbye.wordpress.com/71/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/designbye.wordpress.com/71/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/designbye.wordpress.com/71/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/designbye.wordpress.com/71/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/designbye.wordpress.com/71/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/designbye.wordpress.com/71/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/designbye.wordpress.com/71/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/designbye.wordpress.com/71/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/designbye.wordpress.com/71/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/designbye.wordpress.com/71/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/designbye.wordpress.com/71/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/designbye.wordpress.com/71/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/designbye.wordpress.com/71/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/designbye.wordpress.com/71/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=designbye.wordpress.com&amp;blog=9837499&amp;post=71&amp;subd=designbye&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://designbye.wordpress.com/2009/11/10/cost-of-hosting-development-on-amazon-ec2/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/5738d2cb8d7ceb733aa922f0e92f9fab?s=96&#38;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">Mikhail</media:title>
		</media:content>
	</item>
		<item>
		<title>Setting up WordPress on Ubuntu</title>
		<link>http://designbye.wordpress.com/2009/10/20/setting-up-wordpress-on-ubuntu/</link>
		<comments>http://designbye.wordpress.com/2009/10/20/setting-up-wordpress-on-ubuntu/#comments</comments>
		<pubDate>Tue, 20 Oct 2009 18:18:03 +0000</pubDate>
		<dc:creator>Mikhail</dc:creator>
				<category><![CDATA[EC2]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://designbye.wordpress.com/?p=54</guid>
		<description><![CDATA[I just did several projects that required a wordpress install. The setup I used was Ubuntu (ami-5059be39) on EC2, apache and mysql obviously . Here is a script I used to prep the system and install necessary libraries Download WordPress and extract to a directory. I used /home/ubuntu/projectname. Then sym link this directory to /var/www/projectname. [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=designbye.wordpress.com&amp;blog=9837499&amp;post=54&amp;subd=designbye&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I just did several projects that required a wordpress install. The setup I used was Ubuntu (ami-5059be39) on EC2, apache and mysql obviously <img src='http://s1.wp.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> . Here is a script I used to prep the system and install necessary libraries</p>
<p><pre class="brush: xml; wrap-lines: false;">
sudo apt-get update 
sudo apt-get dist-upgrade 
sudo apt-get install git-core
sudo apt-get install apache2 php5-mysql libapache2-mod-php5 mysql server
sudo apt-get install phpmyadmin
</pre></p>
<p>Download <a href="http://wordpress.org/download">WordPress</a> and extract to a directory. I used /home/ubuntu/projectname.</p>
<p>Then sym link this directory to /var/www/projectname.  When you are done, edit apache conf file, which is located at /etc/apache2/sites-enabled/projectname, to point to the deploy directory:</p>
<p><pre class="brush: xml; wrap-lines: false;">
DocumentRoot /var/www/&lt;strong&gt;projectname
</pre></p>
<p>You can use the 000-default file if you want, but I usually rename it to the project name I&#8217;m working on to avoid confusion (or if you have more than one subdomain or website running on the same machine).</p>
<p>Last step, restart apache:</p>
<p><pre class="brush: xml; wrap-lines: false;">
sudo /etc/init.d/apache 2 restart
</pre></p>
<p>Good luck.</p>
<p>Edit (3/3/2011): updated code formatting.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/designbye.wordpress.com/54/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/designbye.wordpress.com/54/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/designbye.wordpress.com/54/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/designbye.wordpress.com/54/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/designbye.wordpress.com/54/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/designbye.wordpress.com/54/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/designbye.wordpress.com/54/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/designbye.wordpress.com/54/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/designbye.wordpress.com/54/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/designbye.wordpress.com/54/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/designbye.wordpress.com/54/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/designbye.wordpress.com/54/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/designbye.wordpress.com/54/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/designbye.wordpress.com/54/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=designbye.wordpress.com&amp;blog=9837499&amp;post=54&amp;subd=designbye&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://designbye.wordpress.com/2009/10/20/setting-up-wordpress-on-ubuntu/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/5738d2cb8d7ceb733aa922f0e92f9fab?s=96&#38;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">Mikhail</media:title>
		</media:content>
	</item>
		<item>
		<title>How to setup RoR+Passenger+MySql+Ubuntu Server on EC2</title>
		<link>http://designbye.wordpress.com/2009/10/10/how-to-setup-rorpassengermysqlubuntu-server-on-ec2/</link>
		<comments>http://designbye.wordpress.com/2009/10/10/how-to-setup-rorpassengermysqlubuntu-server-on-ec2/#comments</comments>
		<pubDate>Sat, 10 Oct 2009 17:03:53 +0000</pubDate>
		<dc:creator>Mikhail</dc:creator>
				<category><![CDATA[EC2]]></category>
		<category><![CDATA[Rails]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[passenger]]></category>
		<category><![CDATA[ruby on rails]]></category>

		<guid isPermaLink="false">http://designbye.wordpress.com/?p=4</guid>
		<description><![CDATA[Hello, this is my first post and I&#8217;m going to show you how to setup Ubuntu Server to run Rails/MySql/Passenger stack on Amazon&#8217;s EC2. There are a lot of tutorials out there showing how to prep Ubuntu Server or get Passenger working or one or the other, but I haven&#8217;t found anything that would walk [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=designbye.wordpress.com&amp;blog=9837499&amp;post=4&amp;subd=designbye&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Hello, this is my first post and I&#8217;m going to show you how to setup Ubuntu Server to run Rails/MySql/Passenger stack on Amazon&#8217;s EC2. There are a lot of tutorials out there showing how to prep Ubuntu Server or get Passenger working or one or the other, but I haven&#8217;t found anything that would walk me through the whole stack, so I put together this script to install everything I need to get my rails app running. I hope you&#8217;ll find it useful as well. Here we go.</p>
<p><strong>1. Prep</strong><br />
I&#8217;m assuming you got your Amazon EC2 account setup and lunched the official Ubuntu server AMI (ami-5059be39 – ubuntu-intrepid is the latest one at the time of this writing).</p>
<p>If you haven&#8217;t done that check out this great post <a href="http://www.robertsosinski.com/2008/01/26/starting-amazon-ec2-with-mac-os-x/">Starting Amazon EC2 with Mac OS X</a> by Robert Sosinksi. I also highly recommend the Elasticfox Firefox plug-in to manage your EC2 instances.</p>
<p><strong>2. Install<br />
</strong></p>
<p>SSH into your server. Go to /home/ubuntu and create setup.sh file. Copy and paste the following:</p>
<p><pre class="brush: xml; wrap-lines: false;">
# Setup Ruby on Rails, MySql, Apache + Passenger
# on Amazon Ubuntu instance (ami-5059be39 – ubuntu-intrepid)
# 10/09/09

echo Updating system...
sudo apt-get update
sudo apt-get dist-upgrade
sudo apt-get install build-essential
sudo apt-get install curl libcurl4-openssl-dev
sudo apt-get install zlib1g-dev libssl-dev libexpat1-dev

echo Installing tools...
sudo apt-get install apache2 apache2-threaded-dev
sudo apt-get install ruby ri rdoc ruby1.8-dev irb libreadline-ruby1.8
sudo apt-get install libruby1.8 libopenssl-ruby libopenssl-ruby1.8
sudo apt-get install mysql-server libmysqlclient15off mysql-client-5.0
sudo apt-get install mysql-common mysql-server-5.0 libmysqlclient-dev
sudo apt-get install libmysql-ruby libmysql-ruby1.8 psmisc

sudo apt-get install subversion
sudo apt-get install git-core gitweb

echo Installing ruby gems...
cd /usr/local/src
sudo wget http://rubyforge.org/frs/download.php/60718/rubygems-1.3.5.tgz
sudo tar -zvxf rubygems-1.3.5.tgz
cd rubygems-1.3.5/
sudo ruby setup.rb

echo Symlinking...
sudo ln -s /usr/bin/gem1.8 /usr/local/bin/gem
sudo ln -s /usr/bin/ruby1.8 /usr/local/bin/ruby
sudo ln -s /usr/bin/rdoc1.8 /usr/local/bin/rdoc
sudo ln -s /usr/bin/ri1.8 /usr/local/bin/ri
sudo ln -s /usr/bin/irb1.8 /usr/local/bin/irb

echo Installing Gems...
sudo gem install sys-proctable --no-rdoc --no-ri
sudo gem install rails --no-rdoc --no-ri
sudo gem install mysql --no-rdoc --no-ri
sudo gem install capistrano rspec rdoc --no-rdoc --no-ri
sudo gem install passenger --no-rdoc --no-ri
sudo gem install haml --no-rdoc --no-ri
sudo gem install hpricot --no-rdoc --no-ri
sudo gem install json --no-rdoc --no-ri
sudo gem install newrelic_rpm --no-rdoc --no-ri
sudo gem install sqlite3-ruby --no-rdoc --no-ri
sudo gem install will_paginate --no-rdoc --no-ri
sudo gem install authlogic --no-rdoc --no-ri
sudo gem install cached_model --no-rdoc --no-ri

echo Installing Phusion Passenger
sudo passenger-install-apache2-module
</pre></p>
<p>Save the file and type <strong>sudo bash ./setup.sh</strong> to start.</p>
<p><em>Note: <strong>&#8211;no-rdoc &#8211;no-ri</strong> makes it so that no gem documentation is installed. Simply remove that line if you want to download documentation files.</em></p>
<p>Make sure to press Y when prompted. You should have plenty of space to get everything.</p>
<p>Let&#8217;s see what this script does now. The first part updates the system, then it installs apache, ruby, mysql server, and necessary libraries. Then we install subversion and git (if you only need one just remove the other. You are using a version control system&#8230;right?)</p>
<p>The next part installs ruby gems. I&#8217;ve had some trouble with aptitude so I built from source. The script just grabs rubygems source from rubyforge, extracts, and installs it. If you want to do this manually don&#8217;t forget to symlink.</p>
<p>Next step is to install your gems. Those listed in the script are the ones that I commonly use when starting out a rails app, but feel free to add/remove which ever you need.</p>
<p>Last part installs Passenger Phusion. The folks at <a href="http://www.modrails.com">modrails.com</a> made it extremely easy to setup so just follow their instructions. I usually put</p>
<p><pre class="brush: xml; wrap-lines: false;">
LoadModule passenger_module /usr/lib/ruby/gems/1.8/gems/passenger-2.2.4/ext/apache2/mod_passenger.so
PassengerRoot /usr/lib/ruby/gems/1.8/gems/passenger-2.2.4
PassengerRuby /usr/bin/ruby1.8
</pre></p>
<p>at the end of apache config file (/etc/apache2/apache2.conf). Then create your app-specific config file at /etc/apache2/sites-enabled/<strong>client-app</strong><br />
and paste</p>
<p><pre class="brush: xml; wrap-lines: false;">
&lt;VirtualHost *:80&gt;
ServerName 123.123.123.123 #Server ip or www.yourhostname.com
DocumentRoot /home/ubuntu/yourapp/public  # Rails public directory!
&lt;/VirtualHost&gt;
</pre></p>
<p>Restart apache</p>
<p><pre class="brush: xml; wrap-lines: false;">
sudo /etc/init.d/apache2 restart
</pre></p>
<p>And voila!</p>
<p>Edit (3/3/2011): updated code formatting</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/designbye.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/designbye.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/designbye.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/designbye.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/designbye.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/designbye.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/designbye.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/designbye.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/designbye.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/designbye.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/designbye.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/designbye.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/designbye.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/designbye.wordpress.com/4/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=designbye.wordpress.com&amp;blog=9837499&amp;post=4&amp;subd=designbye&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://designbye.wordpress.com/2009/10/10/how-to-setup-rorpassengermysqlubuntu-server-on-ec2/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/5738d2cb8d7ceb733aa922f0e92f9fab?s=96&#38;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">Mikhail</media:title>
		</media:content>
	</item>
	</channel>
</rss>
