<?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/"
	>

<channel>
	<title>RIA and Mobile Developer</title>
	<atom:link href="http://www.ivanalvarez.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.ivanalvarez.com</link>
	<description>RIA and Mobile Developer</description>
	<lastBuildDate>Mon, 20 Feb 2012 06:32:52 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Deploying in Heroku</title>
		<link>http://www.ivanalvarez.com/2012/02/deploying-in-heroku/</link>
		<comments>http://www.ivanalvarez.com/2012/02/deploying-in-heroku/#comments</comments>
		<pubDate>Wed, 01 Feb 2012 02:36:38 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[heroku]]></category>

		<guid isPermaLink="false">http://www.ivanalvarez.com/?p=727</guid>
		<description><![CDATA[Steps in order to deploy sucessfully at Heroku: Adding the *.css and *.js to the config/production.rb Precompiling the assets Heroku needs: Commiting all the local changes with git: Pushing the changes to Heroku for the corresponding environment: Execute migrations for the &#8230; <a href="http://www.ivanalvarez.com/2012/02/deploying-in-heroku/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Steps in order to deploy sucessfully at Heroku:</p>
<ul>
<li>Adding the *.css and *.js to the config/production.rb</li>
</ul>
<pre class="brush: ruby; title: ; notranslate">config.assets.precompile = %w[active_admin.css active_admin.js myStyle.css myScript.js] </pre>
<ul>
<li>Precompiling the assets Heroku needs:</li>
</ul>
<pre class="brush: ruby; title: ; notranslate">rake assets:precompile</pre>
<ul>
<li>Commiting all the local changes with git:</li>
</ul>
<pre class="brush: ruby; title: ; notranslate">git add app/assets</pre>
<ul>
<li>Pushing the changes to Heroku for the corresponding environment:</li>
</ul>
<pre class="brush: ruby; title: ; notranslate">git push staging master or git push production master</pre>
<ul>
<li>Execute migrations for the corresponding environment:</li>
</ul>
<pre class="brush: ruby; title: ; notranslate">heroku rake db:migrate --remote staging --app MyAppName</pre>
<ul>
<li>Thats it go to the url provided by Heroku, if something goes wrong invoke:</li>
</ul>
<pre class="brush: ruby; title: ; notranslate"> heroku logs --app MyAppName or  heroku sql --app MyAppName</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.ivanalvarez.com/2012/02/deploying-in-heroku/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ActiveAdmin the best option to administer your backend model</title>
		<link>http://www.ivanalvarez.com/2012/01/activeadmin-the-best-option-to-administer-your-backend-model/</link>
		<comments>http://www.ivanalvarez.com/2012/01/activeadmin-the-best-option-to-administer-your-backend-model/#comments</comments>
		<pubDate>Sat, 28 Jan 2012 00:51:20 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[rails]]></category>

		<guid isPermaLink="false">http://www.ivanalvarez.com/?p=716</guid>
		<description><![CDATA[As usual I&#8217;m collecting the corresponding resources about this new option: http://net.tutsplus.com/tutorials/ruby/create-beautiful-administration-interfaces-with-active-admin/ ActiveAdmin custom example at https://github.com/ianmurrays/active_invoices Important commands rails g active_admin:resource model_name rails destroy active_admin:resource model_name]]></description>
			<content:encoded><![CDATA[<div>As usual I&#8217;m collecting the corresponding resources about this new option:</div>
<ul>
<li><a href="http://net.tutsplus.com/tutorials/ruby/create-beautiful-administration-interfaces-with-active-admin/">http://net.tutsplus.com/tutorials/ruby/create-beautiful-administration-interfaces-with-active-admin/</a></li>
<li>ActiveAdmin custom example at<a href=" https://github.com/ianmurrays/active_invoices"> https://github.com/ianmurrays/active_invoices</a></li>
</ul>
<div>Important commands</div>
<div>
<ul>
<li>rails g active_admin:resource <em>model_name</em></li>
<li>rails destroy active_admin:resource <em>model_name</em></li>
</ul>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.ivanalvarez.com/2012/01/activeadmin-the-best-option-to-administer-your-backend-model/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>iOS 5 Storyboard resources</title>
		<link>http://www.ivanalvarez.com/2012/01/ios-5-storyboard-resources/</link>
		<comments>http://www.ivanalvarez.com/2012/01/ios-5-storyboard-resources/#comments</comments>
		<pubDate>Mon, 16 Jan 2012 06:15:56 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[ios]]></category>
		<category><![CDATA[storyboard]]></category>

		<guid isPermaLink="false">http://www.ivanalvarez.com/?p=708</guid>
		<description><![CDATA[Two good resources about IOS Storyboards for beginners: http://www.raywenderlich.com/5138/beginning-storyboards-in-ios-5-part-1 http://www.scott-sherwood.com/?p=219 &#160;]]></description>
			<content:encoded><![CDATA[<p>Two good resources about IOS Storyboards for beginners:</p>
<ul>
<li><a href="http://www.raywenderlich.com/5138/beginning-storyboards-in-ios-5-part-1" target="_blank">http://www.raywenderlich.com/5138/beginning-storyboards-in-ios-5-part-1</a></li>
<li><a href="http://www.scott-sherwood.com/?p=219" target="_blank">http://www.scott-sherwood.com/?p=219</a></li>
</ul>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ivanalvarez.com/2012/01/ios-5-storyboard-resources/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to install RVM from source</title>
		<link>http://www.ivanalvarez.com/2011/12/how-to-install-rvm-from-source/</link>
		<comments>http://www.ivanalvarez.com/2011/12/how-to-install-rvm-from-source/#comments</comments>
		<pubDate>Thu, 22 Dec 2011 23:13:42 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.ivanalvarez.com/?p=706</guid>
		<description><![CDATA[I have used the next script line to install the rvm tool to switch my ruby version to 1.9.2 mkdir -p ~/.rvm/src/ &#38;&#38; cd ~/.rvm/src &#38;&#38; rm -rf ./rvm/ &#38;&#38; git clone &#8211;depth 1 git://github.com/wayneeseguin/rvm.git &#38;&#38; cd rvm &#38;&#38; ./install &#8230; <a href="http://www.ivanalvarez.com/2011/12/how-to-install-rvm-from-source/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I have used the next script line to install the rvm tool to switch my ruby version to 1.9.2</p>
<p>mkdir -p ~/.rvm/src/ &amp;&amp; cd ~/.rvm/src &amp;&amp; rm -rf ./rvm/ &amp;&amp; git clone &#8211;depth 1 git://github.com/wayneeseguin/rvm.git &amp;&amp; cd rvm &amp;&amp; ./install</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ivanalvarez.com/2011/12/how-to-install-rvm-from-source/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Rmagick in a Linux server</title>
		<link>http://www.ivanalvarez.com/2011/12/rmagick-in-a-linux-server/</link>
		<comments>http://www.ivanalvarez.com/2011/12/rmagick-in-a-linux-server/#comments</comments>
		<pubDate>Thu, 22 Dec 2011 00:13:07 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.ivanalvarez.com/?p=703</guid>
		<description><![CDATA[http://blog.mob1970.org/?p=208]]></description>
			<content:encoded><![CDATA[<p>http://blog.mob1970.org/?p=208</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ivanalvarez.com/2011/12/rmagick-in-a-linux-server/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MongoMapper and 3rd party libs for a project</title>
		<link>http://www.ivanalvarez.com/2011/12/mongo-mongomapper-a-pleasure-to-develope-backend-stuff/</link>
		<comments>http://www.ivanalvarez.com/2011/12/mongo-mongomapper-a-pleasure-to-develope-backend-stuff/#comments</comments>
		<pubDate>Mon, 19 Dec 2011 20:38:32 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.ivanalvarez.com/?p=700</guid>
		<description><![CDATA[To admin user and roles i will try Devise for MongoMapper https://github.com/kristianmandrup/mm-devise To upload an image I will try CarrierWave https://github.com/jnicklas/carrierwave &#160;]]></description>
			<content:encoded><![CDATA[<ul>
<li>To admin user and roles i will try Devise for MongoMapper <a href="https://github.com/kristianmandrup/mm-devise">https://github.com/kristianmandrup/mm-devise</a></li>
<li>To upload an image I will try CarrierWave <a href="https://github.com/jnicklas/carrierwave">https://github.com/jnicklas/carrierwave</a></li>
</ul>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ivanalvarez.com/2011/12/mongo-mongomapper-a-pleasure-to-develope-backend-stuff/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The backend is done with Ruby not with Java</title>
		<link>http://www.ivanalvarez.com/2011/12/the-backend-is-done-with-ruby-not-with-java/</link>
		<comments>http://www.ivanalvarez.com/2011/12/the-backend-is-done-with-ruby-not-with-java/#comments</comments>
		<pubDate>Thu, 15 Dec 2011 17:30:07 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[ruby]]></category>

		<guid isPermaLink="false">http://www.ivanalvarez.com/?p=697</guid>
		<description><![CDATA[So many years i spent learning J2EE tech to build enterprise apps, but this last two years im testing other options like Rails in the front and Mongo in the database. The result is im loving the Ruby language and &#8230; <a href="http://www.ivanalvarez.com/2011/12/the-backend-is-done-with-ruby-not-with-java/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<div>So many years i spent learning J2EE tech to build enterprise apps, but this last two years im testing other options like Rails in the front and Mongo in the database. The result is im loving the Ruby language and Mongo flexibility, thats why im trying to post some usefull resources who have make my way easier.</div>
<ul>
<li>Examples of Hashes in Ruby <a href="http://www.tutorialspoint.com/ruby/ruby_hashes.htm">http://www.tutorialspoint.com/ruby/ruby_hashes.htm</a></li>
<li>Excelent post about how to install ROR in Linux: <a href="http://www.mirceagoia.com/downloads/Installation_Ruby-on-Rails_for_Ubuntu-Linux-Mint_www-mirceagoia-com.pdf">http://www.mirceagoia.com/downloads/Installation_Ruby-on-Rails_for_Ubuntu-Linux-Mint_www-mirceagoia-com.pdf</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.ivanalvarez.com/2011/12/the-backend-is-done-with-ruby-not-with-java/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mongo Screencast Resources</title>
		<link>http://www.ivanalvarez.com/2011/12/mongo-screencast-resources/</link>
		<comments>http://www.ivanalvarez.com/2011/12/mongo-screencast-resources/#comments</comments>
		<pubDate>Sun, 11 Dec 2011 01:42:49 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.ivanalvarez.com/?p=691</guid>
		<description><![CDATA[http://railscasts.com/episodes/194-mongodb-and-mongomapper http://nosql.mypopescu.com/post/304497261/introduction-to-mongodb-screencast]]></description>
			<content:encoded><![CDATA[<ul>
<li>http://railscasts.com/episodes/194-mongodb-and-mongomapper</li>
<li>http://nosql.mypopescu.com/post/304497261/introduction-to-mongodb-screencast</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.ivanalvarez.com/2011/12/mongo-screencast-resources/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>IOS 5 Beta 4 on Iphone 4</title>
		<link>http://www.ivanalvarez.com/2011/08/ios-5-beta-4-in-iphone-4/</link>
		<comments>http://www.ivanalvarez.com/2011/08/ios-5-beta-4-in-iphone-4/#comments</comments>
		<pubDate>Wed, 03 Aug 2011 18:13:07 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.ivanalvarez.com/?p=510</guid>
		<description><![CDATA[Im a huge fan of UX, and every release Apple is taking a lot of care about this. Im gonna share the experience of using this Beta preview, here some pics of the process after restoring. A moment ago a &#8230; <a href="http://www.ivanalvarez.com/2011/08/ios-5-beta-4-in-iphone-4/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Im a huge fan of UX, and every release Apple is taking a lot of care about this. Im gonna share the experience of using this Beta preview, here some pics of the process after restoring. </p>
<p>A moment ago a friend remind me about the confidential agreement i have signed, so its a shame =(</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ivanalvarez.com/2011/08/ios-5-beta-4-in-iphone-4/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Adobe Developer Week 2011</title>
		<link>http://www.ivanalvarez.com/2011/06/adobe-developer-week-2011/</link>
		<comments>http://www.ivanalvarez.com/2011/06/adobe-developer-week-2011/#comments</comments>
		<pubDate>Sat, 18 Jun 2011 06:27:56 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.ivanalvarez.com/?p=498</guid>
		<description><![CDATA[The agenda looks great!!!  only 2 days more!!! Monday 20 Introduction to Flex 4.5 and Flash Builder 4.5 What&#8217;s new in Flex 4.5 New features in Flash Builder 4.5 Flex and PHP integrated development with Flash Builder 4.5 for PHP &#8230; <a href="http://www.ivanalvarez.com/2011/06/adobe-developer-week-2011/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<div><a href="http://www.ivanalvarez.com/wp-content/uploads/2011/06/adobe-developer-week.png"><img class="aligncenter size-medium wp-image-499" title="adobe-developer-week" src="http://www.ivanalvarez.com/wp-content/uploads/2011/06/adobe-developer-week-300x133.png" alt="" width="300" height="133" /></a></div>
<p><br/><br/><br />
The agenda looks great!!!  only 2 days more!!!</p>
<div><strong>Monday 20</strong></div>
<div id="_mcePaste">
<ul>
<li>Introduction to Flex 4.5 and Flash Builder 4.5</li>
<li>What&#8217;s new in Flex 4.5</li>
<li>New features in Flash Builder 4.5</li>
<li>Flex and PHP integrated development with Flash Builder 4.5 for PHP</li>
</ul>
</div>
<div id="_mcePaste"><strong>Tuesday 21</strong></div>
<div id="_mcePaste">
<ul>
<li>Build your first mobile application with Flex 4.5</li>
<li>Architecting Flex applications for reuse across web, desktop, and mobile</li>
<li>Multi-density and multi-platform authoring for smart phones and tablets with Flex 4.5 SDK</li>
<li>Building ColdFusion powered mobile applications</li>
</ul>
</div>
<div><strong>Wednesday 22 </strong></div>
<div id="_mcePaste">
<ul>
<li>Migrating from Flex 3 to Flex 4.5</li>
<li>Creating expressive applications with Flash Builder and Flash Catalyst</li>
<li>Building mobile applications for BlackBerry PlayBook</li>
<li>Coding productivity features in Flash Builder 4.5</li>
</ul>
</div>
<div id="_mcePaste"><strong>Thrusday 23 </strong></div>
<div id="_mcePaste">
<ul>
<li>Next-generation application development for the enterprise</li>
<li>Building data-driven Flex and Java applications</li>
<li>Flex and BlazeDS integration with Spring</li>
<li>Building data-driven Flex and ColdFusion applications</li>
</ul>
</div>
<div id="_mcePaste"><strong>Friday 24 </strong></div>
<div id="_mcePaste">
<ul>
<li>Maximizing Flex application performance (mobile and desktop)</li>
<li>Creating performant skins and item renderers for mobile applications</li>
<li>Anatomy of an enterprise mobile application built with Flex 4.5</li>
</ul>
</div>
<p>Register <a href="http://www.adobe.com/cfusion/event/index.cfm?event=detail&amp;id=1489921&amp;loc=en_us">here</a>!!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ivanalvarez.com/2011/06/adobe-developer-week-2011/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

