<?xml version="1.0"?><rss version="2.0"><channel><title>ronnieq</title><description>View all recently added tech videos, screencasts, and tutorials from members all across the tech industry.</description><link>http://www.techievideos.com/channels/ronnieq/</link>	<item>
		<title>Learn Ruby on Rails: Formatting Time</title>
		<description><![CDATA[<p>Learn how to use the trusty strftime method to format a time, and see how Rails allows you to save this format for later use. Railscast.com<br /><a href="http://www.techievideos.com/videos/1080/Learn-Ruby-on-Rails-Formatting-Time/" title="Learn Ruby on Rails: Formatting Time"><img src="http://c1495132.cdn.cloudfiles.rackspacecloud.com/X3lJdio9PuiEej4BcfNa.jpg" alt="Learn Ruby on Rails: Formatting Time" /></a></p>]]></description>
		<link>http://www.techievideos.com/videos/1080/Learn-Ruby-on-Rails-Formatting-Time/</link>
	</item>
	<item>
		<title>Learn Ruby on Rails: Clean Page Titles</title>
		<description><![CDATA[<p>If you are like me, you avoid creating page titles because it is kind of a pain. But in this episode I will show you a clean way to add titles to your pages.<br /><a href="http://www.techievideos.com/videos/1074/Learn-Ruby-on-Rails-Clean-Page-Titles/" title="Learn Ruby on Rails: Clean Page Titles"><img src="http://c1495132.cdn.cloudfiles.rackspacecloud.com/Ud5u9vXt6b1LLZ7mGzIe.jpg" alt="Learn Ruby on Rails: Clean Page Titles" /></a></p>]]></description>
		<link>http://www.techievideos.com/videos/1074/Learn-Ruby-on-Rails-Clean-Page-Titles/</link>
	</item>
	<item>
		<title>Learn Ruby on Rails: group_by Month</title>
		<description><![CDATA[<p>Learn how to use the very useful group_by method to group an array by anything you want! In this episode I group an array of tasks by month then sort it properly. Railscast.com<br /><a href="http://www.techievideos.com/videos/1073/Learn-Ruby-on-Rails-group-by-Month/" title="Learn Ruby on Rails: group_by Month"><img src="http://c1495132.cdn.cloudfiles.rackspacecloud.com/04MIYqXG4cOfRL9QXkq9.jpg" alt="Learn Ruby on Rails: group_by Month" /></a></p>]]></description>
		<link>http://www.techievideos.com/videos/1073/Learn-Ruby-on-Rails-group-by-Month/</link>
	</item>
	<item>
		<title>Learn Ruby on Rails - in_groups_of</title>
		<description><![CDATA[<p>Have you ever wanted to visually line up items in rows and columns? The in_groups_of method makes this a cinch. Just watch out for the gotcha.<br /><a href="http://www.techievideos.com/videos/1030/Learn-Ruby-on-Rails-in-groups-of/" title="Learn Ruby on Rails - in_groups_of"><img src="http://c1495132.cdn.cloudfiles.rackspacecloud.com/Baxv7Sqg1C3R4bNYo5I1.jpg" alt="Learn Ruby on Rails - in_groups_of" /></a></p>]]></description>
		<link>http://www.techievideos.com/videos/1030/Learn-Ruby-on-Rails-in-groups-of/</link>
	</item>
	<item>
		<title>Learn Ruby on Rails - Cross Site Scripting</title>
		<description><![CDATA[<p>Another common security issue is cross site scripting. In this episode you will see why it is so important to escape any HTML a user may submit.<br /><a href="http://www.techievideos.com/videos/1029/Learn-Ruby-on-Rails-Cross-Site-Scripting/" title="Learn Ruby on Rails - Cross Site Scripting"><img src="http://c1495132.cdn.cloudfiles.rackspacecloud.com/Xuvoo7Yz2eFTC3pRK1kv.jpg" alt="Learn Ruby on Rails - Cross Site Scripting" /></a></p>]]></description>
		<link>http://www.techievideos.com/videos/1029/Learn-Ruby-on-Rails-Cross-Site-Scripting/</link>
	</item>
	<item>
		<title>Learn Ruby on Rails - Hackers Love Mass Assignment</title>
		<description><![CDATA[<p>Your site may be at risk! When using mass assignment, you are giving the user complete control over that model and its associations. See how a hacker might use this vulnerability and learn how to stop it in this episode.<br /><a href="http://www.techievideos.com/videos/1028/Learn-Ruby-on-Rails-Hackers-Love-Mass-Assignment/" title="Learn Ruby on Rails - Hackers Love Mass Assignment"><img src="http://c1495132.cdn.cloudfiles.rackspacecloud.com/7iZH6tqDHm7dJYGklcB9.jpg" alt="Learn Ruby on Rails - Hackers Love Mass Assignment" /></a></p>]]></description>
		<link>http://www.techievideos.com/videos/1028/Learn-Ruby-on-Rails-Hackers-Love-Mass-Assignment/</link>
	</item>
	<item>
		<title>Learn Ruby on Rails - SQL Injection</title>
		<description><![CDATA[<p>One of the most common security problems for dynamic sites is SQL Injection. Thankfully Rails does everything it can in solving this issue, but you still need to be aware of it.<br /><a href="http://www.techievideos.com/videos/1027/Learn-Ruby-on-Rails-SQL-Injection/" title="Learn Ruby on Rails - SQL Injection"><img src="http://c1495132.cdn.cloudfiles.rackspacecloud.com/1nAGR1vhbgXS0QCAzJ8p.jpg" alt="Learn Ruby on Rails - SQL Injection" /></a></p>]]></description>
		<link>http://www.techievideos.com/videos/1027/Learn-Ruby-on-Rails-SQL-Injection/</link>
	</item>
	<item>
		<title>Learn Ruby on Rails - The Stack Trace</title>
		<description><![CDATA[<p>The stack trace can be a very useful tool when it comes to debugging. Learn the ins and outs of how the stack trace works in this episode. Note: I am using an older version of the Rails bundle here so it might be a little different than yours. The command in the newer version is called Install Plugin and requires you to type textmate_footnotes in the search.<br /><a href="http://www.techievideos.com/videos/1026/Learn-Ruby-on-Rails-The-Stack-Trace/" title="Learn Ruby on Rails - The Stack Trace"><img src="http://c1495132.cdn.cloudfiles.rackspacecloud.com/jRx3RHLm37oXHGjFWIDZ.jpg" alt="Learn Ruby on Rails - The Stack Trace" /></a></p>]]></description>
		<link>http://www.techievideos.com/videos/1026/Learn-Ruby-on-Rails-The-Stack-Trace/</link>
	</item>
	<item>
		<title>Learn Ruby on Rails - Counter Cache Column</title>
		<description><![CDATA[<p>If you need to display the record count for a has_many association, you can improve performance by caching that number in a column.<br /><a href="http://www.techievideos.com/videos/1025/Learn-Ruby-on-Rails-Counter-Cache-Column/" title="Learn Ruby on Rails - Counter Cache Column"><img src="http://c1495132.cdn.cloudfiles.rackspacecloud.com/oc3IUMv7nIKcy52UiRfu.jpg" alt="Learn Ruby on Rails - Counter Cache Column" /></a></p>]]></description>
		<link>http://www.techievideos.com/videos/1025/Learn-Ruby-on-Rails-Counter-Cache-Column/</link>
	</item>
	<item>
		<title>Learn Ruby Rails - Eager Loading</title>
		<description><![CDATA[<p>One way to improve performance is to cut down on the number of SQL queries. You can do this through eager loading. Learn all about it in this episode!<br /><a href="http://www.techievideos.com/videos/1024/Learn-Ruby-Rails-Eager-Loading/" title="Learn Ruby Rails - Eager Loading"><img src="http://c1495132.cdn.cloudfiles.rackspacecloud.com/7YAHaOeofG1IM2sv0no0.jpg" alt="Learn Ruby Rails - Eager Loading" /></a></p>]]></description>
		<link>http://www.techievideos.com/videos/1024/Learn-Ruby-Rails-Eager-Loading/</link>
	</item>
	<item>
		<title>Learn Ruby on Rails - Super Simple Authentication</title>
		<description><![CDATA[<p>The final piece of the administration puzzle: authentication. There are many different approaches which is why I saved this step for last. This episode will cover a few techniques including the simple solution used for this site.<br /><a href="http://www.techievideos.com/videos/1023/Learn-Ruby-on-Rails-Super-Simple-Authentication/" title="Learn Ruby on Rails - Super Simple Authentication"><img src="http://c1495132.cdn.cloudfiles.rackspacecloud.com/buNPjXGUJMDN8ALAjmnz.jpg" alt="Learn Ruby on Rails - Super Simple Authentication" /></a></p>]]></description>
		<link>http://www.techievideos.com/videos/1023/Learn-Ruby-on-Rails-Super-Simple-Authentication/</link>
	</item>
	<item>
		<title>Learn Ruby on Rails - Restricting Access</title>
		<description><![CDATA[<p>In this second part of the series on administration, you will learn how to lock down the site to keep the public from accessing the administration features.<br /><a href="http://www.techievideos.com/videos/1021/Learn-Ruby-on-Rails-Restricting-Access/" title="Learn Ruby on Rails - Restricting Access"><img src="http://c1495132.cdn.cloudfiles.rackspacecloud.com/cHqxOgVoNUbLroaRGvls.jpg" alt="Learn Ruby on Rails - Restricting Access" /></a></p>]]></description>
		<link>http://www.techievideos.com/videos/1021/Learn-Ruby-on-Rails-Restricting-Access/</link>
	</item>
	<item>
		<title>Learn Ruby on Rails - Where Administration Goes</title>
		<description><![CDATA[<p>This is the first part of a three part series on building an administration system. Many developers choose to separate it completely from the public side of the site by placing it into an admin subdirectory. This episode will show you an alternative and often better solution.<br /><a href="http://www.techievideos.com/videos/1020/Learn-Ruby-on-Rails-Where-Administration-Goes/" title="Learn Ruby on Rails - Where Administration Goes"><img src="http://c1495132.cdn.cloudfiles.rackspacecloud.com/jw3c0zLekV1ATLTJBsg3.jpg" alt="Learn Ruby on Rails - Where Administration Goes" /></a></p>]]></description>
		<link>http://www.techievideos.com/videos/1020/Learn-Ruby-on-Rails-Where-Administration-Goes/</link>
	</item>
	<item>
		<title>Learn Ruby on Rails - Looping Through Flash</title>
		<description><![CDATA[<p>Displaying flash messages in the layout can be a pain at times. In this episode you will learn an easy way to display any kind of flash message by looping through the hash.<br /><a href="http://www.techievideos.com/videos/1019/Learn-Ruby-on-Rails-Looping-Through-Flash/" title="Learn Ruby on Rails - Looping Through Flash"><img src="http://c1495132.cdn.cloudfiles.rackspacecloud.com/VFJkt5YtT2LuGChHA3Id.jpg" alt="Learn Ruby on Rails - Looping Through Flash" /></a></p>]]></description>
		<link>http://www.techievideos.com/videos/1019/Learn-Ruby-on-Rails-Looping-Through-Flash/</link>
	</item>
	<item>
		<title>Learn Ruby on Rails - HABTM Checkboxes</title>
		<description><![CDATA[<p>It is often asked: how do I create a list of checkboxes for managing a HABTM association? Ask no more because this episode will show you how to do exactly that.<br /><a href="http://www.techievideos.com/videos/1017/Learn-Ruby-on-Rails-HABTM-Checkboxes/" title="Learn Ruby on Rails - HABTM Checkboxes"><img src="http://c1495132.cdn.cloudfiles.rackspacecloud.com/189h7dixsjo7dbkpT6O7.jpg" alt="Learn Ruby on Rails - HABTM Checkboxes" /></a></p>]]></description>
		<link>http://www.techievideos.com/videos/1017/Learn-Ruby-on-Rails-HABTM-Checkboxes/</link>
	</item>
	<item>
		<title>Learn Ruby on Rails - Virtual Attributes</title>
		<description><![CDATA[<p>Keep your controllers clean and forms flexible by adding virtual attributes to your model. This very powerful technique allows you to create form fields which may not directly relate to the database.<br /><a href="http://www.techievideos.com/videos/1016/Learn-Ruby-on-Rails-Virtual-Attributes/" title="Learn Ruby on Rails - Virtual Attributes"><img src="http://c1495132.cdn.cloudfiles.rackspacecloud.com/hMwIVwtw0xKhmuBEwW8G.jpg" alt="Learn Ruby on Rails - Virtual Attributes" /></a></p>]]></description>
		<link>http://www.techievideos.com/videos/1016/Learn-Ruby-on-Rails-Virtual-Attributes/</link>
	</item>
	<item>
		<title>Learn Ruby on Rails - Fun with Find Conditions</title>
		<description><![CDATA[<p>You can pass more than simple strings to find conditions. Arrays, ranges, and nil values can be passed as well. In this episode you will see the tricks involved with passing these odd objects to find conditions. (Update: audio fixed).<br /><a href="http://www.techievideos.com/videos/1015/Learn-Ruby-on-Rails-Fun-with-Find-Conditions/" title="Learn Ruby on Rails - Fun with Find Conditions"><img src="http://c1495132.cdn.cloudfiles.rackspacecloud.com/H7K1QpRVDsYakh3O6Ia7.jpg" alt="Learn Ruby on Rails - Fun with Find Conditions" /></a></p>]]></description>
		<link>http://www.techievideos.com/videos/1015/Learn-Ruby-on-Rails-Fun-with-Find-Conditions/</link>
	</item>
	<item>
		<title>Learn Ruby on Rails - Performing Calculations on Models</title>
		<description><![CDATA[<p>Did you know ActiveRecord provides class methods for performing calculations on models? You can even use these methods through associations.<br /><a href="http://www.techievideos.com/videos/1014/Learn-Ruby-on-Rails-Performing-Calculations-on-Models/" title="Learn Ruby on Rails - Performing Calculations on Models"><img src="http://c1495132.cdn.cloudfiles.rackspacecloud.com/o5Ej0Inlbgl9ULobXfRh.jpg" alt="Learn Ruby on Rails - Performing Calculations on Models" /></a></p>]]></description>
		<link>http://www.techievideos.com/videos/1014/Learn-Ruby-on-Rails-Performing-Calculations-on-Models/</link>
	</item>
	<item>
		<title>Learn Ruby on Rails - Dangers of Model in Session</title>
		<description><![CDATA[<p>Be careful when storing a model in a session. It will behave differently than you expect and can easily get out of sync with the database. Instead of storing the model directly in the session, store the id to the model and use that to fetch it from the database.<br /><a href="http://www.techievideos.com/videos/1013/Learn-Ruby-on-Rails-Dangers-of-Model-in-Session/" title="Learn Ruby on Rails - Dangers of Model in Session"><img src="http://c1495132.cdn.cloudfiles.rackspacecloud.com/X1NwQr759ivGGLPCa0BP.jpg" alt="Learn Ruby on Rails - Dangers of Model in Session" /></a></p>]]></description>
		<link>http://www.techievideos.com/videos/1013/Learn-Ruby-on-Rails-Dangers-of-Model-in-Session/</link>
	</item>
	<item>
		<title>Learn Ruby on Rails - Refactoring User Name Part 3</title>
		<description><![CDATA[<p>In the final part of this series you will see how to refactor your tests. Keeping tests clean is important because it will make testing easier to do in the future.<br /><a href="http://www.techievideos.com/videos/1012/Learn-Ruby-on-Rails-Refactoring-User-Name-Part-3/" title="Learn Ruby on Rails - Refactoring User Name Part 3"><img src="http://c1495132.cdn.cloudfiles.rackspacecloud.com/IeQRldOnHeQQuGkvNxHo.jpg" alt="Learn Ruby on Rails - Refactoring User Name Part 3" /></a></p>]]></description>
		<link>http://www.techievideos.com/videos/1012/Learn-Ruby-on-Rails-Refactoring-User-Name-Part-3/</link>
	</item>
</channel></rss>