<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: Timed Memoization</title>
	<atom:link href="http://blog.stevenlevithan.com/archives/timed-memoization/feed" rel="self" type="application/rss+xml" />
	<link>http://blog.stevenlevithan.com/archives/timed-memoization</link>
	<description>A JavaScript and regular expression centric blog</description>
	<lastBuildDate>Thu, 09 Feb 2012 10:18:35 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
	<item>
		<title>By: ??javascript?memoize &#124; GearCode&#039;s Blog</title>
		<link>http://blog.stevenlevithan.com/archives/timed-memoization/comment-page-1#comment-74190</link>
		<dc:creator>??javascript?memoize &#124; GearCode&#039;s Blog</dc:creator>
		<pubDate>Sun, 30 Jan 2011 15:55:18 +0000</pubDate>
		<guid isPermaLink="false">http://blog.stevenlevithan.com/archives/timed-memoization#comment-74190</guid>
		<description>[...] http://blog.stevenlevithan.com/archives/timed-memoization [...]</description>
		<content:encoded><![CDATA[<p>[...] <a href="http://blog.stevenlevithan.com/archives/timed-memoization" rel="nofollow">http://blog.stevenlevithan.com/archives/timed-memoization</a> [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ??Memoization &#124; ?????</title>
		<link>http://blog.stevenlevithan.com/archives/timed-memoization/comment-page-1#comment-55652</link>
		<dc:creator>??Memoization &#124; ?????</dc:creator>
		<pubDate>Tue, 13 Jul 2010 09:06:04 +0000</pubDate>
		<guid isPermaLink="false">http://blog.stevenlevithan.com/archives/timed-memoization#comment-55652</guid>
		<description>[...] JAVASCRIPT MEMOIZATION???Memoization in JavaScript???Timed Memoization???Javascript?Lazy Definition Pattern?  Javascript ????Javascript lazy definition [...]</description>
		<content:encoded><![CDATA[<p>[...] JAVASCRIPT MEMOIZATION???Memoization in JavaScript???Timed Memoization???Javascript?Lazy Definition Pattern?  Javascript ????Javascript lazy definition [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: A Better Javascript Memoizer &#124; Unscriptable.com</title>
		<link>http://blog.stevenlevithan.com/archives/timed-memoization/comment-page-1#comment-51824</link>
		<dc:creator>A Better Javascript Memoizer &#124; Unscriptable.com</dc:creator>
		<pubDate>Wed, 28 Apr 2010 20:43:33 +0000</pubDate>
		<guid isPermaLink="false">http://blog.stevenlevithan.com/archives/timed-memoization#comment-51824</guid>
		<description>[...] Timed Memoization [...]</description>
		<content:encoded><![CDATA[<p>[...] Timed Memoization [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: sam</title>
		<link>http://blog.stevenlevithan.com/archives/timed-memoization/comment-page-1#comment-24957</link>
		<dc:creator>sam</dc:creator>
		<pubDate>Fri, 18 Jul 2008 13:08:18 +0000</pubDate>
		<guid isPermaLink="false">http://blog.stevenlevithan.com/archives/timed-memoization#comment-24957</guid>
		<description>great function .  took it  to my website</description>
		<content:encoded><![CDATA[<p>great function .  took it  to my website</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kris Kowal</title>
		<link>http://blog.stevenlevithan.com/archives/timed-memoization/comment-page-1#comment-16136</link>
		<dc:creator>Kris Kowal</dc:creator>
		<pubDate>Mon, 17 Mar 2008 01:17:24 +0000</pubDate>
		<guid isPermaLink="false">http://blog.stevenlevithan.com/archives/timed-memoization#comment-16136</guid>
		<description>@Dean sorry for the delay.  Steve just let me know I missed your message.  I&#039;m using Chiron for a variety of projects including a browser-based MUD-like game, a remote Python shell, a log aggregation service, and some other data-visualization stuff.  I&#039;ve been promoting it as much as I can (the http://modulesjs.com website, presented at Barcamp LA a couple weeks ago http://cixar.com/barcamp for slides); it&#039;s designed to be a platform for a &quot;batteries included&quot; JavaScript library.  If it looks awesome, it&#039;s partially because I read your base2 code to help inform its design, although I would still like to integrate more of your code.

In recent news, I&#039;m using memoize, and my Dict-like Cookie type in tandem to do cookie-based caching on a function.

include(&#039;cookie.js&#039;);
include(&#039;cache.js&#039;);
this.fib = memoize(cookie, fib);</description>
		<content:encoded><![CDATA[<p>@Dean sorry for the delay.  Steve just let me know I missed your message.  I&#8217;m using Chiron for a variety of projects including a browser-based MUD-like game, a remote Python shell, a log aggregation service, and some other data-visualization stuff.  I&#8217;ve been promoting it as much as I can (the <a href="http://modulesjs.com" rel="nofollow">http://modulesjs.com</a> website, presented at Barcamp LA a couple weeks ago <a href="http://cixar.com/barcamp" rel="nofollow">http://cixar.com/barcamp</a> for slides); it&#8217;s designed to be a platform for a &#8220;batteries included&#8221; JavaScript library.  If it looks awesome, it&#8217;s partially because I read your base2 code to help inform its design, although I would still like to integrate more of your code.</p>
<p>In recent news, I&#8217;m using memoize, and my Dict-like Cookie type in tandem to do cookie-based caching on a function.</p>
<p>include(&#8216;cookie.js&#8217;);<br />
include(&#8216;cache.js&#8217;);<br />
this.fib = memoize(cookie, fib);</p>
]]></content:encoded>
	</item>
</channel>
</rss>

