<?xml version="1.0" encoding="UTF-8"?><rss version="0.92">
<channel>
	<title>Max Ivak Personal Site</title>
	<link>http://maxivak.com</link>
	<description>Entrepreneur, Business Angel, Software Architect. Startups. SaaS, Business Intelligence</description>
	<lastBuildDate>Wed, 10 Apr 2013 18:10:11 +0000</lastBuildDate>
	<docs>http://backend.userland.com/rss092</docs>
	<language>en</language>
	<!-- generator="WordPress/3.2" -->

	<item>
		<title>How to create your own Ruby gem</title>
		<description><![CDATA[This post is the guide to creating your own gem for Rails. What is a Ruby gem? Gems vs. Plugins vs. Engines vs. Realties Create your first gem Use gem in Rails application Test gem Build a new version of gem Gems to build your own gem References What is a Ruby gem? A gem [...]]]></description>
		<link>http://maxivak.com/how-to-create-your-own-gem-for-rails-3/</link>
			</item>
	<item>
		<title>Using CDN with Rails assets</title>
		<description><![CDATA[Using CDN (Content Delivery Network) server to serve assets (images and other static files like css, js) on Rails is very easy with assets pipeline. &#160; Change config in production.rb: If you have an image at http://mydomain.com/assets/myimage.jpg then it will be replaced on your HTML  page with URL http://mydomain.com/myimage.jpg (or http://mydomain.com/myfolder/myimage.jpg for the second example). [...]]]></description>
		<link>http://maxivak.com/using-cdn-with-rails-assets-on-rails/</link>
			</item>
	<item>
		<title>Rails disable logging of asset pipeline messages</title>
		<description><![CDATA[There are many assets related log messages in log file. It causes Rack to use the Rails logger very  frequently. To hide the messages, add this line to your config (config/application.rb or config/environments/production.rb or config/environment.rb): &#160; Solution 2. Place the following code in config/initializers/quiet_assets.rb The code was found here. &#160; &#160; Discussions: * http://stackoverflow.com/questions/6312448/how-to-disable-logging-of-asset-pipeline-sprockets-messages-in-rails-3-1 * [...]]]></description>
		<link>http://maxivak.com/rails-disable-logging-of-asset-pipeline-messages/</link>
			</item>
	<item>
		<title>Password protecting pages of Rails App</title>
		<description><![CDATA[Often it is needed to close a whole app or some pages of a Rails app in Beta mode. A simple and quick way is using http authentication. So users (beta testers, admin) can access a Rails app by entering a single username and password. This example shows how to password protect the whole app [...]]]></description>
		<link>http://maxivak.com/password-protecting-pages-of-rails-app/</link>
			</item>
	<item>
		<title>Rails Best Practices</title>
		<description><![CDATA[A collection of tips and tricks to make Rails applications better. Split out Fat Models Split out your Fat Models into Services, Decorators and Presenters The approach is to put: - Business Logic into Services - Human Data into Decorators - Complex Data Manipulations into Presenters This will follow the single responsibility principle. So our [...]]]></description>
		<link>http://maxivak.com/rails-best-practices/</link>
			</item>
	<item>
		<title>Link to download an image as attachment in Rails (send_file and remote files)</title>
		<description><![CDATA[Build a link_to to download an image. send_file send_file method can be used in a controller to download the file in browser: &#160; But in case when you have an url for the remote file (for example, an image stored in amazon cloud storage like Amazon S3) then this code will give an error &#8220;Cannot [...]]]></description>
		<link>http://maxivak.com/rails-link_to-to-download-an-image-immediately-instead-of-opening-it-in-the-browser-send_file-and-remote-files/</link>
			</item>
	<item>
		<title>Python vs Ruby and Django vs. Rails</title>
		<description><![CDATA[In this post I am collecting opinions about pros and cons of using two popular web frameworks Python&#8217;s Django and Ruby on Rails in web development. I tried to include all factors that matter to choose between two frameworks. Python vs Ruby General Both languages are good, modern, well-designed, flexible, good for your productivity. &#160; [...]]]></description>
		<link>http://maxivak.com/python-django-vs-ruby-on-rails/</link>
			</item>
	<item>
		<title>Sessions do not work in Internet Explorer in Rails</title>
		<description><![CDATA[Recently I had a strange problem when sessions didn&#8217;t work on my site on Rails in production environment. The problem was in Internet Explorer while it worked in Firefox and Chrome. I found out that Internet Explorer doesn&#8217;t set cookies for some reason. I&#8217;ve tried many settings for session_store in my config like and many [...]]]></description>
		<link>http://maxivak.com/sessions-do-not-work-in-internet-explorer-in-rails/</link>
			</item>
	<item>
		<title>US Government: You Don&#8217;t Own Your Cloud Data So We Can Access It At Any Time</title>
		<description><![CDATA[The US government&#8217;s argument that you lose all your property rights by storing your data on the cloud could apply to Amazon&#8217;s S3 or Google Apps or Apple iCloud services as well. &#8220;On Tuesday the EFF filed a brief proposing a process for the Court in the Megaupload case to hold the government accountable for [...]]]></description>
		<link>http://maxivak.com/us-government-you-dont-own-your-cloud-data-so-we-can-access-it-at-any-time/</link>
			</item>
	<item>
		<title>How to block showing your site in IFrame (Anti-iframe)</title>
		<description><![CDATA[Recently, I found that one of my popular sites is shown as part of other site. So visitors of that not-mine site, being on that site, can access all the services of my sites. They used my site content and services via iframe and took benefits from my site. Below is the solution how to [...]]]></description>
		<link>http://maxivak.com/how-to-block-showing-your-site-in-iframe-anti-iframe/</link>
			</item>
</channel>
</rss>
