<?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>redredred &#187; javascript</title>
	<atom:link href="http://www.redredred.com.au/category/javascript/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.redredred.com.au</link>
	<description>redredred developers talk about what they are working on</description>
	<lastBuildDate>Sat, 20 Feb 2010 01:55:41 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>jQuery Week Calendar 1.2.0 Release</title>
		<link>http://www.redredred.com.au/jquery-week-calendar-120-release/</link>
		<comments>http://www.redredred.com.au/jquery-week-calendar-120-release/#comments</comments>
		<pubDate>Sat, 20 Jun 2009 11:31:26 +0000</pubDate>
		<dc:creator>rob</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[jquery week calendar]]></category>

		<guid isPermaLink="false">http://www.redredred.com.au/?p=211</guid>
		<description><![CDATA[A new release of the week calendar plugin has been published with a number of enhancements and bug fixes. Part of this release included an internal refactoring to base the calendar off the jQuery-UI widget framework. I think this has helped to clean the code up and certainly simplified things. I think there&#8217;s still more [...]]]></description>
		<wfw:commentRss>http://www.redredred.com.au/jquery-week-calendar-120-release/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>New jQuery Weekly Calendar Plugin</title>
		<link>http://www.redredred.com.au/new-jquery-weekly-calendar-plugin/</link>
		<comments>http://www.redredred.com.au/new-jquery-weekly-calendar-plugin/#comments</comments>
		<pubDate>Wed, 06 May 2009 02:40:44 +0000</pubDate>
		<dc:creator>rob</dc:creator>
				<category><![CDATA[Javascript/HTML/CSS]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[jquery week calendar]]></category>

		<guid isPermaLink="false">http://www.redredred.com.au/?p=130</guid>
		<description><![CDATA[After being inspired by the recent fullcalendar (month based) plugin by Adam Shaw, I decided to port a weekly calendar i&#8217;ve been working on into a proper jquery plugin. Until a couple of days ago it was practically impossible to use this calendar functionality outside of it&#8217;s host application but now it should be simple [...]]]></description>
		<wfw:commentRss>http://www.redredred.com.au/new-jquery-weekly-calendar-plugin/feed/</wfw:commentRss>
		<slash:comments>14</slash:comments>
		</item>
		<item>
		<title>Evolve The Future &#8211; Evolution in Javascript</title>
		<link>http://www.redredred.com.au/evolve-the-future-evolution-in-javascript/</link>
		<comments>http://www.redredred.com.au/evolve-the-future-evolution-in-javascript/#comments</comments>
		<pubDate>Sun, 03 May 2009 11:25:43 +0000</pubDate>
		<dc:creator>Jonathan</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[evolvethefuture]]></category>
		<category><![CDATA[javascript]]></category>

		<guid isPermaLink="false">http://www.redredred.com.au/blog/?p=17</guid>
		<description><![CDATA[Evolve The Future is a “proof of concept” evolution simulator inspired by Thomas Ray&#8217;s Tierra application, which he always promised would be a networked environment for digital wildlife. I haven&#8217;t created that, but hopefully this is a step in that direction. Little animals run around, reproduce and eat each other. Each animal is written in [...]]]></description>
		<wfw:commentRss>http://www.redredred.com.au/evolve-the-future-evolution-in-javascript/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>javascript closures are fun</title>
		<link>http://www.redredred.com.au/javascript-closures-are-fun/</link>
		<comments>http://www.redredred.com.au/javascript-closures-are-fun/#comments</comments>
		<pubDate>Thu, 29 Jan 2009 11:09:31 +0000</pubDate>
		<dc:creator>Jonathan</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[javascript]]></category>

		<guid isPermaLink="false">http://www.redredred.com.au/blog/?p=27</guid>
		<description><![CDATA[I really like closures in javascript. I really miss them when I am doing work in Java,  but sometimes when I use them I get a little messed up. Take the following example:
var i;
var objects=[1,2];
for (i=0;i &#60; objects.length;i++) {
    var callback=function() {
        console.log(objects[i]);
   [...]]]></description>
		<wfw:commentRss>http://www.redredred.com.au/javascript-closures-are-fun/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Currying in javascript</title>
		<link>http://www.redredred.com.au/currying-in-javascript/</link>
		<comments>http://www.redredred.com.au/currying-in-javascript/#comments</comments>
		<pubDate>Sat, 24 Jan 2009 10:34:37 +0000</pubDate>
		<dc:creator>Jonathan</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[javascript]]></category>

		<guid isPermaLink="false">http://www.redredred.com.au/blog/?p=20</guid>
		<description><![CDATA[I read an example chapter from Professional JavaScript for Web Developers, 2nd Edition: Chapter 18, “Advanced Techniques” last week and the discussion about currying functions finally made sense to me as in &#8220;oh, I see how I would use that&#8221;. If you want to understand it better look at the chapter linked above.
I have been [...]]]></description>
		<wfw:commentRss>http://www.redredred.com.au/currying-in-javascript/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
