<?xml version="1.0" encoding="UTF-8"?><rss version="0.92">
<channel>
	<title>skater coder</title>
	<link>http://www.skatercoder.com</link>
	<description>angela chng - Ruby on Rails / PHP web developer &#38; skater girl in Singapore</description>
	<lastBuildDate>Thu, 02 Sep 2010 16:41:03 +0000</lastBuildDate>
	<docs>http://backend.userland.com/rss092</docs>
	<language>en</language>
	<!-- generator="WordPress/3.0.1" -->

	<item>
		<title>Commonly used Rails 2.3 commands</title>
		<description><![CDATA[Rails &#038; Database 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 Start server with debugging enabled $ script/server --debugger &#160; Start server with debugging enabled - specify environment $ script/server --debugger RAILS_ENV=production &#160; [...]]]></description>
		<link>http://www.skatercoder.com/2010/08/31/commonly-used-rails-2-3-command-line/</link>
			</item>
	<item>
		<title>How to upload multiple files on rails (uploadify + paperclip + jquery)</title>
		<description><![CDATA[Setting Up Download Uploadify from http://www.uploadify.com/ copy the uploadify files into the following directories 1 2 3 4 5 6 7 public/javascripts/uploadify/jquery.uploadify-2.1.0.min.js public/javascripts/uploadify/uploadify.swf public/javascripts/uploadify/swfobject.js &#160; public/images/cancel.png &#160; public/stylesheets/uploadify.css Create this file app/middleware/flash_session_cookie_middleware.rb 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 require 'rack/utils' class FlashSessionCookieMiddleware def initialize&#40;app, session_key = [...]]]></description>
		<link>http://www.skatercoder.com/2010/08/31/how-to-upload-multiple-files-on-rails-uploadify-paperclip-jquery/</link>
			</item>
	<item>
		<title>Comma Separated List in Rails</title>
		<description><![CDATA[Here&#8217;s a useful tip I found from http://ariejan.net/2007/03/27/rails-tip-snippet-create-a-comma-seperate-list/ To get &#8216;Tom, Dick, Harry&#8217; 1 @users.collect&#123;&#124;u&#124; u.name&#125;.join&#40;', '&#41; To get &#8216;Tom, Dick and Harry&#8217; 1 @users.collect&#40;&#38;:name&#41;.to_sentence]]></description>
		<link>http://www.skatercoder.com/2010/07/25/comma-separated-list-in-rails/</link>
			</item>
	<item>
		<title>How to: Create a Rails model that has categories and subcategories</title>
		<description><![CDATA[Another reason to love rails, it&#8217;s so easy! Just install the acts_as_tree plugin 1 $ script/plugin install git://github.com/rails/acts_as_tree.git and in your model, eg. app/models/category.rb, just add 1 acts_as_tree :order =&#62; 'name' And here&#8217;s the plugin&#8217;s readme on how to use it 1 2 3 4 5 6 7 8 9 10 11 12 13 14 [...]]]></description>
		<link>http://www.skatercoder.com/2010/07/23/how-to-create-a-rails-model-that-has-categories-and-subcategories/</link>
			</item>
	<item>
		<title>How to: Receive email in rails with mail fetcher</title>
		<description><![CDATA[Dan Weinand and Luke Francl have written a nice plugin which simplifies the task of retrieving emails. Kudos to them! So basically what you need to do is install the plugin, create the Action Mailer receiver, and then use cron to schedule the script to run Here are the steps: First install the fetcher plugin [...]]]></description>
		<link>http://www.skatercoder.com/2010/07/23/how-to-receive-email-in-rails-with-mail-fetcher/</link>
			</item>
	<item>
		<title>Tricolor rice bowl success!</title>
		<description><![CDATA[Was inspired to cook today :) Found out how to make the sweet japanese style omelette, it was surprisingly easy! Ingredients: 2 eggs 2 tsp sugar Dash of salt Mirin Fresh ginger juice Olive oil Steps: Beat eggs and mix in the ginger juice,  sugar, salt and mirin Heat oil in small frying pan, I [...]]]></description>
		<link>http://www.skatercoder.com/2010/07/22/tricolor-rice-bowl-success/</link>
			</item>
	<item>
		<title>www.wendyphua.com</title>
		<description><![CDATA[Just recently launched a WordPress website for a very talented Singaporean bassist and composer, Wendy Phua. Check out her site at www.wendyphua.com!]]></description>
		<link>http://www.skatercoder.com/2010/07/21/new-site-launch-www-wendyphua-com/</link>
			</item>
	<item>
		<title>Rails fetcher mail.yml IMAP setting for bluehost</title>
		<description><![CDATA[I was getting this error when trying to create a mailbox using create(mailbox) from Net::IMAP 1 /opt/local/lib/ruby/1.8/net/imap.rb:981:in `pick_up_tagged_response': Unknown namespace. (Net::IMAP::NoResponseError) Realised that the processed and error mailboxes names had to be appended to &#8220;INBOX.&#8221; 1 2 3 4 5 6 7 8 9 type: imap server: boxXXX.bluehost.com port: 993 ssl: true username: username@domain.com password: [...]]]></description>
		<link>http://www.skatercoder.com/2010/07/21/rails-fetcher-mail-yml-imap-setting-for-bluehost/</link>
			</item>
	<item>
		<title>Create a self-signed SSL certificate with IIS 6.0 Resource Kit SelfSSL</title>
		<description><![CDATA[ Internet Information Services (IIS) 6.0 Resource Kit Tools http://www.microsoft.com/downloads/details.aspx?FamilyID=56fc92ee-a71a-4c73-b628-ade629c89499&#38;displaylang=en]]></description>
		<link>http://www.skatercoder.com/2009/07/23/create-a-self-signed-ssl-certificate-with-iis-6-0-resource-kit-selfssl/</link>
			</item>
	<item>
		<title>MySQL &#8211; Select rows from Table A that do not exist in Table B</title>
		<description><![CDATA[Here&#8217;s a useful MySQL code snippet: Select rows from table A that do not exist in table B 1 SELECT FROM A WHERE id NOT IN &#40;SELECT id FROM B&#41;]]></description>
		<link>http://www.skatercoder.com/2009/03/25/mysql-select-rows-from-table-a-that-do-not-exist-in-table-b/</link>
			</item>
</channel>
</rss>
