<?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: Interesting problem</title>
	<atom:link href="http://existentialtype.net/2006/10/17/interesting-problem/feed/" rel="self" type="application/rss+xml" />
	<link>http://existentialtype.net/2006/10/17/interesting-problem/</link>
	<description>For People Who Like Type and Types</description>
	<pubDate>Tue, 06 Jan 2009 15:16:01 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: aaron</title>
		<link>http://existentialtype.net/2006/10/17/interesting-problem/comment-page-1/#comment-135</link>
		<dc:creator>aaron</dc:creator>
		<pubDate>Wed, 18 Oct 2006 03:09:08 +0000</pubDate>
		<guid isPermaLink="false">http://existentialtype.net/?p=65#comment-135</guid>
		<description>That's next on my list, as soon as I finish the draft manual.  We've had good success building a replacement ckit parser.  I am hoping to provide an analog to ckit for SML, which would be pretty exciting given that the new parser supports extensible grammars.  Anyway, I should have a chance to play with an SML grammar before the release, so I'll send you whatever I end up with.</description>
		<content:encoded><![CDATA[<p>That&#8217;s next on my list, as soon as I finish the draft manual.  We&#8217;ve had good success building a replacement ckit parser.  I am hoping to provide an analog to ckit for SML, which would be pretty exciting given that the new parser supports extensible grammars.  Anyway, I should have a chance to play with an SML grammar before the release, so I&#8217;ll send you whatever I end up with.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: washburn</title>
		<link>http://existentialtype.net/2006/10/17/interesting-problem/comment-page-1/#comment-134</link>
		<dc:creator>washburn</dc:creator>
		<pubDate>Wed, 18 Oct 2006 02:56:41 +0000</pubDate>
		<guid isPermaLink="false">http://existentialtype.net/?p=65#comment-134</guid>
		<description>Sounds great.  Have you experimented with converting the SML grammar from LALR(1) to LL(k) yet?  If so that would be a invaluable reference for me to work from.</description>
		<content:encoded><![CDATA[<p>Sounds great.  Have you experimented with converting the SML grammar from LALR(1) to LL(k) yet?  If so that would be a invaluable reference for me to work from.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: aaron</title>
		<link>http://existentialtype.net/2006/10/17/interesting-problem/comment-page-1/#comment-133</link>
		<dc:creator>aaron</dc:creator>
		<pubDate>Wed, 18 Oct 2006 02:33:19 +0000</pubDate>
		<guid isPermaLink="false">http://existentialtype.net/?p=65#comment-133</guid>
		<description>I know that it's been *forever*, but in the meantime we've written a completely new, LL(k) parser generator.  Actually this week we are planning to put out 110.60, which will include the new tools.  I will send you mail when this happens.</description>
		<content:encoded><![CDATA[<p>I know that it&#8217;s been *forever*, but in the meantime we&#8217;ve written a completely new, LL(k) parser generator.  Actually this week we are planning to put out 110.60, which will include the new tools.  I will send you mail when this happens.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: washburn</title>
		<link>http://existentialtype.net/2006/10/17/interesting-problem/comment-page-1/#comment-132</link>
		<dc:creator>washburn</dc:creator>
		<pubDate>Wed, 18 Oct 2006 01:54:03 +0000</pubDate>
		<guid isPermaLink="false">http://existentialtype.net/?p=65#comment-132</guid>
		<description>Ah, I had been meaning to send you some e-mail about this.  I just grabbed the latest version of SML/NJ this afternoon and I didn't see anything about Unicode lexing.  Though right now, I'm only going to add a couple tokens to start with (I've run out of delimiters...) so I can probably just hardcode the UTF-8 for those.</description>
		<content:encoded><![CDATA[<p>Ah, I had been meaning to send you some e-mail about this.  I just grabbed the latest version of SML/NJ this afternoon and I didn&#8217;t see anything about Unicode lexing.  Though right now, I&#8217;m only going to add a couple tokens to start with (I&#8217;ve run out of delimiters&#8230;) so I can probably just hardcode the UTF-8 for those.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: aaron</title>
		<link>http://existentialtype.net/2006/10/17/interesting-problem/comment-page-1/#comment-131</link>
		<dc:creator>aaron</dc:creator>
		<pubDate>Wed, 18 Oct 2006 01:46:00 +0000</pubDate>
		<guid isPermaLink="false">http://existentialtype.net/?p=65#comment-131</guid>
		<description>We thought about this for ml-ulex, but decided it was much simpler to put a hand-written UTF-8 -&#62; Int decoder in front of the lexer, and then have the lexer (internally) work over words rather than bytes...</description>
		<content:encoded><![CDATA[<p>We thought about this for ml-ulex, but decided it was much simpler to put a hand-written UTF-8 -&gt; Int decoder in front of the lexer, and then have the lexer (internally) work over words rather than bytes&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: washburn</title>
		<link>http://existentialtype.net/2006/10/17/interesting-problem/comment-page-1/#comment-130</link>
		<dc:creator>washburn</dc:creator>
		<pubDate>Tue, 17 Oct 2006 23:18:36 +0000</pubDate>
		<guid isPermaLink="false">http://existentialtype.net/?p=65#comment-130</guid>
		<description>A little.  It gives a regular expression for matching valid UTF-8 sequences.  But it will take some additional thinking to pare that down to specific glyph ranges.</description>
		<content:encoded><![CDATA[<p>A little.  It gives a regular expression for matching valid UTF-8 sequences.  But it will take some additional thinking to pare that down to specific glyph ranges.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: kitby</title>
		<link>http://existentialtype.net/2006/10/17/interesting-problem/comment-page-1/#comment-129</link>
		<dc:creator>kitby</dc:creator>
		<pubDate>Tue, 17 Oct 2006 23:15:08 +0000</pubDate>
		<guid isPermaLink="false">http://existentialtype.net/?p=65#comment-129</guid>
		<description>Is &lt;a href="http://www.w3.org/International/questions/qa-forms-utf-8" rel="nofollow"&gt;this page&lt;/a&gt; at all helpful?</description>
		<content:encoded><![CDATA[<p>Is <a href="http://www.w3.org/International/questions/qa-forms-utf-8" rel="nofollow">this page</a> at all helpful?</p>
]]></content:encoded>
	</item>
</channel>
</rss>
