<?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: Useless Hackery: A Scala Quine</title>
	<atom:link href="http://www.codecommit.com/blog/scala/useless-hackery-a-scala-quine/feed" rel="self" type="application/rss+xml" />
	<link>http://www.codecommit.com/blog/scala/useless-hackery-a-scala-quine</link>
	<description>(permanently in beta)</description>
	<lastBuildDate>Mon, 09 Jan 2012 20:21:24 -0800</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Landei</title>
		<link>http://www.codecommit.com/blog/scala/useless-hackery-a-scala-quine/comment-page-1#comment-3962</link>
		<dc:creator>Landei</dc:creator>
		<pubDate>Wed, 20 Aug 2008 09:20:58 +0000</pubDate>
		<guid isPermaLink="false">http://www.codecommit.com/blog/scala/useless-hackery-a-scala-quine#comment-3962</guid>
		<description>Just for the record, combining our approaches gives a 112 char Scala quine, and I see no easy way to get it shorter:

object Q extends Application{val s=&quot;object Q extends Application{val s=%c%s%1$c;printf(s,34,s)}&quot;;printf(s,34,s)}</description>
		<content:encoded><![CDATA[<p>Just for the record, combining our approaches gives a 112 char Scala quine, and I see no easy way to get it shorter:</p>
<p>object Q extends Application{val s=&#8221;object Q extends Application{val s=%c%s%1$c;printf(s,34,s)}&#8221;;printf(s,34,s)}</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Daniel Spiewak</title>
		<link>http://www.codecommit.com/blog/scala/useless-hackery-a-scala-quine/comment-page-1#comment-3545</link>
		<dc:creator>Daniel Spiewak</dc:creator>
		<pubDate>Thu, 01 May 2008 16:56:38 +0000</pubDate>
		<guid isPermaLink="false">http://www.codecommit.com/blog/scala/useless-hackery-a-scala-quine#comment-3545</guid>
		<description>Wow, you&#039;re right!  That&#039;s pretty clever actually.</description>
		<content:encoded><![CDATA[<p>Wow, you&#8217;re right!  That&#8217;s pretty clever actually.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ricky Clarkson</title>
		<link>http://www.codecommit.com/blog/scala/useless-hackery-a-scala-quine/comment-page-1#comment-3544</link>
		<dc:creator>Ricky Clarkson</dc:creator>
		<pubDate>Thu, 01 May 2008 15:04:24 +0000</pubDate>
		<guid isPermaLink="false">http://www.codecommit.com/blog/scala/useless-hackery-a-scala-quine#comment-3544</guid>
		<description>Actually you can compile and run it, it uses an initialiser instead of main.  The JVM loads the class then tries to call main.  In this case it doesn&#039;t get as far as calling main, because the initialiser exits.</description>
		<content:encoded><![CDATA[<p>Actually you can compile and run it, it uses an initialiser instead of main.  The JVM loads the class then tries to call main.  In this case it doesn&#8217;t get as far as calling main, because the initialiser exits.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Cliff Vick</title>
		<link>http://www.codecommit.com/blog/scala/useless-hackery-a-scala-quine/comment-page-1#comment-3542</link>
		<dc:creator>Cliff Vick</dc:creator>
		<pubDate>Thu, 01 May 2008 13:57:36 +0000</pubDate>
		<guid isPermaLink="false">http://www.codecommit.com/blog/scala/useless-hackery-a-scala-quine#comment-3542</guid>
		<description>Quines are more than just entertaining, the idea is the foundation of Godel&#039;s incompleteness theorem.</description>
		<content:encoded><![CDATA[<p>Quines are more than just entertaining, the idea is the foundation of Godel&#8217;s incompleteness theorem.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jos Hirth</title>
		<link>http://www.codecommit.com/blog/scala/useless-hackery-a-scala-quine/comment-page-1#comment-3536</link>
		<dc:creator>Jos Hirth</dc:creator>
		<pubDate>Thu, 01 May 2008 06:34:26 +0000</pubDate>
		<guid isPermaLink="false">http://www.codecommit.com/blog/scala/useless-hackery-a-scala-quine#comment-3536</guid>
		<description>Quines are somewhat entertaining. I actually managed to wreak some havoc with one:

http://kaioa.com/node/48

But for the most part it&#039;s indeed just a pointless brain teaser. :)</description>
		<content:encoded><![CDATA[<p>Quines are somewhat entertaining. I actually managed to wreak some havoc with one:</p>
<p><a href="http://kaioa.com/node/48" rel="nofollow">http://kaioa.com/node/48</a></p>
<p>But for the most part it&#8217;s indeed just a pointless brain teaser. <img src='http://www.codecommit.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Daniel Spiewak</title>
		<link>http://www.codecommit.com/blog/scala/useless-hackery-a-scala-quine/comment-page-1#comment-3535</link>
		<dc:creator>Daniel Spiewak</dc:creator>
		<pubDate>Wed, 30 Apr 2008 17:12:56 +0000</pubDate>
		<guid isPermaLink="false">http://www.codecommit.com/blog/scala/useless-hackery-a-scala-quine#comment-3535</guid>
		<description>Doesn&#039;t count, because you can&#039;t actually compile and run it (no main method).</description>
		<content:encoded><![CDATA[<p>Doesn&#8217;t count, because you can&#8217;t actually compile and run it (no main method).</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Landei</title>
		<link>http://www.codecommit.com/blog/scala/useless-hackery-a-scala-quine/comment-page-1#comment-3534</link>
		<dc:creator>Landei</dc:creator>
		<pubDate>Wed, 30 Apr 2008 12:03:32 +0000</pubDate>
		<guid isPermaLink="false">http://www.codecommit.com/blog/scala/useless-hackery-a-scala-quine#comment-3534</guid>
		<description>Nope, you can do better in Java, look at this beauty with 135 characters:

enum S{T;System y;String s=&quot;enum S{T;System y;String s=%c%s%1$c;{y.out.printf(s,34,s);y.exit(0);}}&quot;;{y.out.printf(s,34,s);y.exit(0);}}</description>
		<content:encoded><![CDATA[<p>Nope, you can do better in Java, look at this beauty with 135 characters:</p>
<p>enum S{T;System y;String s=&#8221;enum S{T;System y;String s=%c%s%1$c;{y.out.printf(s,34,s);y.exit(0);}}&#8221;;{y.out.printf(s,34,s);y.exit(0);}}</p>
]]></content:encoded>
	</item>
</channel>
</rss>

