<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments for Codemate</title>
	<atom:link href="http://codemate.wordpress.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://codemate.wordpress.com</link>
	<description>Being friends with the code</description>
	<lastBuildDate>Sat, 01 Aug 2009 13:48:58 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on Alan Kay on history of computer languages, Java and Squeak by srini</title>
		<link>http://codemate.wordpress.com/2007/11/12/alan-kay-on-history-of-computer-languages-java-and-squeak/#comment-4419</link>
		<dc:creator>srini</dc:creator>
		<pubDate>Sat, 01 Aug 2009 13:48:58 +0000</pubDate>
		<guid isPermaLink="false">http://codemate.wordpress.com/2007/11/12/alan-kay-on-history-of-computer-languages-java-and-squeak/#comment-4419</guid>
		<description>Though Smalltalk is not that popular these days, there is a new renaissance in Smalltalk development, thanks to Squeak.I went through many sites of the Smalltalk and agree with all the supporters of Smalltalk. The more I learn about Smalltalk and Squeak the more I’m impressed. In the process of my learning I have collected some good sites (more than 200) related to Smalltalk and Squeak (lessons, tutorials and programming). If you are interested take a look at the below link.
200 sites to know about smalltalk and squeak programming http://bit.ly/g3iow</description>
		<content:encoded><![CDATA[<p>Though Smalltalk is not that popular these days, there is a new renaissance in Smalltalk development, thanks to Squeak.I went through many sites of the Smalltalk and agree with all the supporters of Smalltalk. The more I learn about Smalltalk and Squeak the more I’m impressed. In the process of my learning I have collected some good sites (more than 200) related to Smalltalk and Squeak (lessons, tutorials and programming). If you are interested take a look at the below link.<br />
200 sites to know about smalltalk and squeak programming <a href="http://bit.ly/g3iow" rel="nofollow">http://bit.ly/g3iow</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Writing a SQL parser by Danil Glinenko</title>
		<link>http://codemate.wordpress.com/2009/02/06/writing-a-sql-parser/#comment-4415</link>
		<dc:creator>Danil Glinenko</dc:creator>
		<pubDate>Mon, 01 Jun 2009 20:48:45 +0000</pubDate>
		<guid isPermaLink="false">http://codemate.wordpress.com/?p=277#comment-4415</guid>
		<description>Thanks for the link. I didn&#039;t consider such alternatives.</description>
		<content:encoded><![CDATA[<p>Thanks for the link. I didn&#8217;t consider such alternatives.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Writing a SQL parser by Vijay A</title>
		<link>http://codemate.wordpress.com/2009/02/06/writing-a-sql-parser/#comment-4414</link>
		<dc:creator>Vijay A</dc:creator>
		<pubDate>Mon, 01 Jun 2009 18:50:07 +0000</pubDate>
		<guid isPermaLink="false">http://codemate.wordpress.com/?p=277#comment-4414</guid>
		<description>Using the Derby Parser could be an alternative to folks who want SQL parsing abilities in their applications.

http://issues.apache.org/jira/browse/DERBY-3946</description>
		<content:encoded><![CDATA[<p>Using the Derby Parser could be an alternative to folks who want SQL parsing abilities in their applications.</p>
<p><a href="http://issues.apache.org/jira/browse/DERBY-3946" rel="nofollow">http://issues.apache.org/jira/browse/DERBY-3946</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Image manipulation in Java by Basil Shikin</title>
		<link>http://codemate.wordpress.com/2009/05/07/image-manipulation-in-java/#comment-4407</link>
		<dc:creator>Basil Shikin</dc:creator>
		<pubDate>Fri, 08 May 2009 04:13:13 +0000</pubDate>
		<guid isPermaLink="false">http://codemate.wordpress.com/?p=337#comment-4407</guid>
		<description>Looks very, very, very familiar.
Seems like almost every swing project has some sort of these utils.</description>
		<content:encoded><![CDATA[<p>Looks very, very, very familiar.<br />
Seems like almost every swing project has some sort of these utils.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Writing a SQL parser by Danil Glinenko</title>
		<link>http://codemate.wordpress.com/2009/02/06/writing-a-sql-parser/#comment-4399</link>
		<dc:creator>Danil Glinenko</dc:creator>
		<pubDate>Tue, 14 Apr 2009 05:29:33 +0000</pubDate>
		<guid isPermaLink="false">http://codemate.wordpress.com/?p=277#comment-4399</guid>
		<description>Yes, you&#039;re supposed to create them. They are very simple though. Just java beans. 
[code language=&quot;java&quot;]
public class Column implements Comparable {
    private String name;
    private String dataType;
    private String constraint;
    private Integer length;

    public Column(final String name, final String dataType, final String constraint, final Integer len) {
        this.name = name;
        this.dataType = dataType;
        this.constraint = constraint;
        this.length = len;
    }
// setters, getters go here


public class Table {
    private String name;
    private List&lt;Column&gt; columns;

    public Table(final String name, List&lt;Column&gt; cols) {
        this.name = name;
        Collections.sort(cols);
        this.columns = cols;
    }
// getters, setters go here.


[/code]</description>
		<content:encoded><![CDATA[<p>Yes, you&#8217;re supposed to create them. They are very simple though. Just java beans. </p>
<pre class="brush: java;">
public class Column implements Comparable {
    private String name;
    private String dataType;
    private String constraint;
    private Integer length;

    public Column(final String name, final String dataType, final String constraint, final Integer len) {
        this.name = name;
        this.dataType = dataType;
        this.constraint = constraint;
        this.length = len;
    }
// setters, getters go here

public class Table {
    private String name;
    private List&lt;Column&gt; columns;

    public Table(final String name, List&lt;Column&gt; cols) {
        this.name = name;
        Collections.sort(cols);
        this.columns = cols;
    }
// getters, setters go here.
</pre>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Writing a SQL parser by jason henriksen</title>
		<link>http://codemate.wordpress.com/2009/02/06/writing-a-sql-parser/#comment-4398</link>
		<dc:creator>jason henriksen</dc:creator>
		<pubDate>Sat, 11 Apr 2009 22:27:54 +0000</pubDate>
		<guid isPermaLink="false">http://codemate.wordpress.com/?p=277#comment-4398</guid>
		<description>When I generate your grammer I get code that fails because Table and Column are not defined classes. 

Is ANTLR supposed to be generating those, or am I supposed to have coded them myself?  What should they look like?

Thanks!</description>
		<content:encoded><![CDATA[<p>When I generate your grammer I get code that fails because Table and Column are not defined classes. </p>
<p>Is ANTLR supposed to be generating those, or am I supposed to have coded them myself?  What should they look like?</p>
<p>Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on On the Edge—Trying Chromium on Mac by Danil Glinenko</title>
		<link>http://codemate.wordpress.com/2009/03/29/on-the-edge%e2%80%94trying-chromium-on-mac/#comment-4395</link>
		<dc:creator>Danil Glinenko</dc:creator>
		<pubDate>Fri, 03 Apr 2009 15:33:25 +0000</pubDate>
		<guid isPermaLink="false">http://codemate.wordpress.com/?p=298#comment-4395</guid>
		<description>Where is google search bar in the browser? ;) Cmd+, (Preferences) looks missing too.</description>
		<content:encoded><![CDATA[<p>Where is google search bar in the browser? ;) Cmd+, (Preferences) looks missing too.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on On the Edge—Trying Chromium on Mac by Mikhail Naganov</title>
		<link>http://codemate.wordpress.com/2009/03/29/on-the-edge%e2%80%94trying-chromium-on-mac/#comment-4394</link>
		<dc:creator>Mikhail Naganov</dc:creator>
		<pubDate>Fri, 03 Apr 2009 09:40:32 +0000</pubDate>
		<guid isPermaLink="false">http://codemate.wordpress.com/?p=298#comment-4394</guid>
		<description>Yes, tabs are definitely better than in Safari.

I think that error reporting issues will be added later, when Mac Chromium will be ready for testing on real users.

Also, Chrome automatically reports crashes. I think that something similar will be in Mac and Linux versions too.</description>
		<content:encoded><![CDATA[<p>Yes, tabs are definitely better than in Safari.</p>
<p>I think that error reporting issues will be added later, when Mac Chromium will be ready for testing on real users.</p>
<p>Also, Chrome automatically reports crashes. I think that something similar will be in Mac and Linux versions too.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on On the Edge—Trying Chromium on Mac by Yurii Soldak</title>
		<link>http://codemate.wordpress.com/2009/03/29/on-the-edge%e2%80%94trying-chromium-on-mac/#comment-4393</link>
		<dc:creator>Yurii Soldak</dc:creator>
		<pubDate>Fri, 03 Apr 2009 06:47:24 +0000</pubDate>
		<guid isPermaLink="false">http://codemate.wordpress.com/?p=298#comment-4393</guid>
		<description>Cool, Tried your binary and I like it! Especially how tabs are implemented comparing to Safari4beta.

I think they need a button like in Safari4beta -- &quot;report bug&quot;.</description>
		<content:encoded><![CDATA[<p>Cool, Tried your binary and I like it! Especially how tabs are implemented comparing to Safari4beta.</p>
<p>I think they need a button like in Safari4beta &#8212; &#8220;report bug&#8221;.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on On the Edge—Trying Chromium on Mac by Mikhail Naganov</title>
		<link>http://codemate.wordpress.com/2009/03/29/on-the-edge%e2%80%94trying-chromium-on-mac/#comment-4392</link>
		<dc:creator>Mikhail Naganov</dc:creator>
		<pubDate>Mon, 30 Mar 2009 05:33:28 +0000</pubDate>
		<guid isPermaLink="false">http://codemate.wordpress.com/?p=298#comment-4392</guid>
		<description>Here is a compiled version: http://sites.google.com/site/mikhailnaganov/files/chromium-20090329.tgz

Building is easy. Just follow the instructions: http://code.google.com/p/chromium/wiki/MacBuildInstructions
But, yes, it takes time. Also you need the newest XCode.</description>
		<content:encoded><![CDATA[<p>Here is a compiled version: <a href="http://sites.google.com/site/mikhailnaganov/files/chromium-20090329.tgz" rel="nofollow">http://sites.google.com/site/mikhailnaganov/files/chromium-20090329.tgz</a></p>
<p>Building is easy. Just follow the instructions: <a href="http://code.google.com/p/chromium/wiki/MacBuildInstructions" rel="nofollow">http://code.google.com/p/chromium/wiki/MacBuildInstructions</a><br />
But, yes, it takes time. Also you need the newest XCode.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
