<?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 for A Concurrent Affair</title>
	<atom:link href="http://www.concurrentaffair.org/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.concurrentaffair.org</link>
	<description>a blog about Mathias&#039; work and play.</description>
	<lastBuildDate>Wed, 23 Nov 2011 00:35:08 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
	<item>
		<title>Comment on DrJava DefinitionsPaneMemoryLeakTest fails on Mac by Mathias</title>
		<link>http://www.concurrentaffair.org/2011/11/14/drjava-definitionspanememoryleaktest-fails-on-mac/comment-page-1/#comment-389</link>
		<dc:creator>Mathias</dc:creator>
		<pubDate>Wed, 23 Nov 2011 00:35:08 +0000</pubDate>
		<guid isPermaLink="false">http://www.concurrentaffair.org/?p=2735#comment-389</guid>
		<description>&lt;p&gt;Unfortunately I&#039;m not aware of a way to roll back, Charlie. If I find something, I&#039;ll let you know.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Unfortunately I&#8217;m not aware of a way to roll back, Charlie. If I find something, I&#8217;ll let you know.</p>]]></content:encoded>
	</item>
	<item>
		<title>Comment on DrJava DefinitionsPaneMemoryLeakTest fails on Mac by chubbard</title>
		<link>http://www.concurrentaffair.org/2011/11/14/drjava-definitionspanememoryleaktest-fails-on-mac/comment-page-1/#comment-388</link>
		<dc:creator>chubbard</dc:creator>
		<pubDate>Tue, 22 Nov 2011 19:35:53 +0000</pubDate>
		<guid isPermaLink="false">http://www.concurrentaffair.org/?p=2735#comment-388</guid>
		<description>&lt;p&gt;So is there no way we can roll back to the update to Java 1.6.0_29 to a previous version of Java on the Mac?  This update is killing IntelliJ and spiking its memory out almost making it unusable.  It was so stable prior to this upgrade.  Probably the best version yet, but damn this bug is screwing my productivity.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>So is there no way we can roll back to the update to Java 1.6.0_29 to a previous version of Java on the Mac?  This update is killing IntelliJ and spiking its memory out almost making it unusable.  It was so stable prior to this upgrade.  Probably the best version yet, but damn this bug is screwing my productivity.</p>]]></content:encoded>
	</item>
	<item>
		<title>Comment on DrJava DefinitionsPaneMemoryLeakTest fails on Mac by Mathias</title>
		<link>http://www.concurrentaffair.org/2011/11/14/drjava-definitionspanememoryleaktest-fails-on-mac/comment-page-1/#comment-387</link>
		<dc:creator>Mathias</dc:creator>
		<pubDate>Mon, 21 Nov 2011 15:52:39 +0000</pubDate>
		<guid isPermaLink="false">http://www.concurrentaffair.org/?p=2735#comment-387</guid>
		<description>&lt;p&gt;Hi demotivator,&lt;/p&gt;

&lt;p&gt;Thanks for your comments to let me know that I&#039;m not the only one experiencing this, and for your hard work in finding a work-around. I&#039;ll see if this can help us too.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Hi demotivator,</p>

<p>Thanks for your comments to let me know that I&#8217;m not the only one experiencing this, and for your hard work in finding a work-around. I&#8217;ll see if this can help us too.</p>]]></content:encoded>
	</item>
	<item>
		<title>Comment on DrJava DefinitionsPaneMemoryLeakTest fails on Mac by demotivator</title>
		<link>http://www.concurrentaffair.org/2011/11/14/drjava-definitionspanememoryleaktest-fails-on-mac/comment-page-1/#comment-386</link>
		<dc:creator>demotivator</dc:creator>
		<pubDate>Sat, 19 Nov 2011 14:27:03 +0000</pubDate>
		<guid isPermaLink="false">http://www.concurrentaffair.org/?p=2735#comment-386</guid>
		<description>&lt;p&gt;I found the source of the problem. It appears to be caused by the change made for Radar bug #10010502. The following code was new in this release in the JViewport.java:&lt;/p&gt;

&lt;p&gt;final Toolkit toolkit = Toolkit.getDefaultToolkit();
        if (toolkit instanceof apple.awt.CToolkit) {
            final boolean isRunningInHiDPI = ((apple.awt.CToolkit)toolkit).runningInHiDPI();
            if (isRunningInHiDPI) setScrollMode(SIMPLE_SCROLL_MODE);
            toolkit.addPropertyChangeListener(&quot;apple.awt.contentScaleFactor&quot;, new PropertyChangeListener() {
                private int oldScrollMode = isRunningInHiDPI ? SIMPLE_SCROLL_MODE : BLIT_SCROLL_MODE;&lt;/p&gt;

&lt;p&gt;&lt;pre&gt;&lt;code&gt;            @Override
            public void propertyChange(PropertyChangeEvent evt) {
                if (&quot;apple.awt.contentScaleFactor&quot;.equals(evt.getPropertyName())) {
                    final int currentScrollMode = getScrollMode();
                    setScrollMode(((apple.awt.CToolkit)toolkit).runningInHiDPI() ? SIMPLE_SCROLL_MODE : oldScrollMode);
                    oldScrollMode = currentScrollMode;
                }
            }
        });
    }
&lt;/code&gt;&lt;/pre&gt;&lt;/p&gt;

&lt;p&gt;There was no attempt to remove / cleanup the new property listener that is getting added, and it is causing the JVM to not garbage collect the objects associate with the JViewport being created. I found if I manually add the following code to my application, the memory leak is resolved, but it probably breaks their scrolling change since I&#039;m just removing all of these listeners, even ones that are still in scope:&lt;/p&gt;

&lt;p&gt;final Toolkit toolkit = Toolkit.getDefaultToolkit();
        if (toolkit instanceof apple.awt.CToolkit) {
            PropertyChangeListener[] leak = toolkit.getPropertyChangeListeners(&quot;apple.awt.contentScaleFactor&quot;);
            for(int i=0; i&lt;leak.length; i++){
                toolkit.removePropertyChangeListener(&quot;apple.awt.contentScaleFactor&quot;,leak[i]);
            }
        }&lt;/p&gt;

&lt;p&gt;I filed a Radar bug #10473138 for this, hopefully Apple will fix it, but at least I have a workaround now.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>I found the source of the problem. It appears to be caused by the change made for Radar bug #10010502. The following code was new in this release in the JViewport.java:</p>

<p>final Toolkit toolkit = Toolkit.getDefaultToolkit();
        if (toolkit instanceof apple.awt.CToolkit) {
            final boolean isRunningInHiDPI = ((apple.awt.CToolkit)toolkit).runningInHiDPI();
            if (isRunningInHiDPI) setScrollMode(SIMPLE_SCROLL_MODE);
            toolkit.addPropertyChangeListener(&#8220;apple.awt.contentScaleFactor&#8221;, new PropertyChangeListener() {
                private int oldScrollMode = isRunningInHiDPI ? SIMPLE_SCROLL_MODE : BLIT_SCROLL_MODE;</p>

<p><pre>

<div class="codecolorer-container text default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br />2<br />3<br />4<br />5<br />6<br />7<br />8<br />9<br />10<br /></div></td><td><div class="text codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; @Override<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; public void propertyChange(PropertyChangeEvent evt) {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; if (&quot;apple.awt.contentScaleFactor&quot;.equals(evt.getPropertyName())) {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; final int currentScrollMode = getScrollMode();<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; setScrollMode(((apple.awt.CToolkit)toolkit).runningInHiDPI() ? SIMPLE_SCROLL_MODE : oldScrollMode);<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; oldScrollMode = currentScrollMode;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }<br />
&nbsp; &nbsp; &nbsp; &nbsp; });<br />
&nbsp; &nbsp; }</div></td></tr></tbody></table></div>

</pre></p>

<p>There was no attempt to remove / cleanup the new property listener that is getting added, and it is causing the JVM to not garbage collect the objects associate with the JViewport being created. I found if I manually add the following code to my application, the memory leak is resolved, but it probably breaks their scrolling change since I&#8217;m just removing all of these listeners, even ones that are still in scope:</p>

<p>final Toolkit toolkit = Toolkit.getDefaultToolkit();
        if (toolkit instanceof apple.awt.CToolkit) {
            PropertyChangeListener[] leak = toolkit.getPropertyChangeListeners(&#8220;apple.awt.contentScaleFactor&#8221;);
            for(int i=0; i&lt;leak.length; i++){
                toolkit.removePropertyChangeListener(&quot;apple.awt.contentScaleFactor&quot;,leak[i]);
            }
        }</p>

<p>I filed a Radar bug #10473138 for this, hopefully Apple will fix it, but at least I have a workaround now.</p>]]></content:encoded>
	</item>
	<item>
		<title>Comment on DrJava DefinitionsPaneMemoryLeakTest fails on Mac by demotivator</title>
		<link>http://www.concurrentaffair.org/2011/11/14/drjava-definitionspanememoryleaktest-fails-on-mac/comment-page-1/#comment-385</link>
		<dc:creator>demotivator</dc:creator>
		<pubDate>Fri, 18 Nov 2011 18:21:55 +0000</pubDate>
		<guid isPermaLink="false">http://www.concurrentaffair.org/?p=2735#comment-385</guid>
		<description>&lt;p&gt;I ran into a memory leak problem after that Mac update as well. On 10.6 the Update 6 for Java release on 11/8/2011 updates to 1.6.0_29. I have confirmed that it causes massive memory leaks in my application, and I have yet to find a solution other than reverting back to the prior version of Java. I&#039;m only able to do that because I saved a copy of the previous Java version on my Mac before applying the upgrade, Apple doesn&#039;t seem to offer any downgrade options.&lt;/p&gt;

&lt;p&gt;I&#039;ve confirmed that 1.6.0_29 on Windows does not have the problem, only Mac. Fortunately for me I have very few users of my application on Mac, and have been able to help them manually roll back their Java version until we can find a proper solution. I&#039;ve chased down and fixed memory leaks before, but I can&#039;t find anything that I&#039;m doing to cause this one. Seems to be rooted in a pretty similar path as your post shows, AppContext -&gt; property change listener -&gt; JViewport.&lt;/p&gt;

&lt;p&gt;If I find a solution, I&#039;ll try to post it back on your blog in case others are looking for it.&lt;/p&gt;

&lt;p&gt;Glad to see your post, I was starting to wonder if I was the only one who&#039;d encountered this issue!&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>I ran into a memory leak problem after that Mac update as well. On 10.6 the Update 6 for Java release on 11/8/2011 updates to 1.6.0_29. I have confirmed that it causes massive memory leaks in my application, and I have yet to find a solution other than reverting back to the prior version of Java. I&#8217;m only able to do that because I saved a copy of the previous Java version on my Mac before applying the upgrade, Apple doesn&#8217;t seem to offer any downgrade options.</p>

<p>I&#8217;ve confirmed that 1.6.0_29 on Windows does not have the problem, only Mac. Fortunately for me I have very few users of my application on Mac, and have been able to help them manually roll back their Java version until we can find a proper solution. I&#8217;ve chased down and fixed memory leaks before, but I can&#8217;t find anything that I&#8217;m doing to cause this one. Seems to be rooted in a pretty similar path as your post shows, AppContext -&gt; property change listener -&gt; JViewport.</p>

<p>If I find a solution, I&#8217;ll try to post it back on your blog in case others are looking for it.</p>

<p>Glad to see your post, I was starting to wonder if I was the only one who&#8217;d encountered this issue!</p>]]></content:encoded>
	</item>
	<item>
		<title>Comment on Yes, DrJava Works under Mac OS X 10.7 Lion by Mathias</title>
		<link>http://www.concurrentaffair.org/2011/07/28/yes-drjava-works-under-mac-os-x-10-7-lion/comment-page-1/#comment-384</link>
		<dc:creator>Mathias</dc:creator>
		<pubDate>Fri, 07 Oct 2011 06:28:49 +0000</pubDate>
		<guid isPermaLink="false">http://www.concurrentaffair.org/?p=2612#comment-384</guid>
		<description>&lt;p&gt;Hi Nick,&lt;/p&gt;

&lt;p&gt;I had just installed Mac OS X 10.7 Lion. When I clicked on the DrJava icon, my MacBook Pro asked me to download Java. After doing that and installing it, DrJava worked.&lt;/p&gt;

&lt;p&gt;Could you please send an email to &lt;a href=&quot;mailto:drjava at rice dot edu&quot; rel=&quot;nofollow&quot;&gt;drjava at rice dot edu&lt;/a&gt; (change at to @ and dot to .) with as much system information as you can provide? That way, other developers of DrJava can try to help you too.&lt;/p&gt;

&lt;p&gt;Thanks!&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Hi Nick,</p>

<p>I had just installed Mac OS X 10.7 Lion. When I clicked on the DrJava icon, my MacBook Pro asked me to download Java. After doing that and installing it, DrJava worked.</p>

<p>Could you please send an email to <a href="mailto:drjava at rice dot edu" rel="nofollow">drjava at rice dot edu</a> (change at to @ and dot to .) with as much system information as you can provide? That way, other developers of DrJava can try to help you too.</p>

<p>Thanks!</p>]]></content:encoded>
	</item>
	<item>
		<title>Comment on Yes, DrJava Works under Mac OS X 10.7 Lion by nickd</title>
		<link>http://www.concurrentaffair.org/2011/07/28/yes-drjava-works-under-mac-os-x-10-7-lion/comment-page-1/#comment-383</link>
		<dc:creator>nickd</dc:creator>
		<pubDate>Fri, 07 Oct 2011 02:28:50 +0000</pubDate>
		<guid isPermaLink="false">http://www.concurrentaffair.org/?p=2612#comment-383</guid>
		<description>&lt;p&gt;Hey Mathias,&lt;/p&gt;

&lt;p&gt;What are the exact things you did when you first used DrJava? My DrJava merely shows the logo then nothing happens when I open it even after downloading Java. :(&lt;/p&gt;

&lt;p&gt;Any help would be hugely appreciated!&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Hey Mathias,</p>

<p>What are the exact things you did when you first used DrJava? My DrJava merely shows the logo then nothing happens when I open it even after downloading Java. :(</p>

<p>Any help would be hugely appreciated!</p>]]></content:encoded>
	</item>
	<item>
		<title>Comment on FedEx Lost My $1500 Package from Dell by FedEx Horror, Continued &#124; A Concurrent Affair</title>
		<link>http://www.concurrentaffair.org/2011/08/31/fedex-lost-my-1500-package-from-dell/comment-page-1/#comment-377</link>
		<dc:creator>FedEx Horror, Continued &#124; A Concurrent Affair</dc:creator>
		<pubDate>Fri, 02 Sep 2011 01:56:37 +0000</pubDate>
		<guid isPermaLink="false">http://www.concurrentaffair.org/?p=2639#comment-377</guid>
		<description>&lt;p&gt;[...] A Concurrent Affair   a blog about Mathias&#039; work and play.    Skip to content HomeAboutShared Feed ItemsWebsite Disclaimer        &#8592; FedEx Lost My $1500 Package from Dell [...]&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>[...] A Concurrent Affair   a blog about Mathias&#039; work and play.    Skip to content HomeAboutShared Feed ItemsWebsite Disclaimer        &larr; FedEx Lost My $1500 Package from Dell [...]</p>]]></content:encoded>
	</item>
	<item>
		<title>Comment on Does DrJava Work on Mac OS X Lion? by Yes, DrJava Works under Mac OS X 10.7 Lion &#124; A Concurrent Affair</title>
		<link>http://www.concurrentaffair.org/2011/07/23/does-drjava-work-on-mac-os-x-lion/comment-page-1/#comment-375</link>
		<dc:creator>Yes, DrJava Works under Mac OS X 10.7 Lion &#124; A Concurrent Affair</dc:creator>
		<pubDate>Thu, 28 Jul 2011 07:29:59 +0000</pubDate>
		<guid isPermaLink="false">http://www.concurrentaffair.org/?p=2597#comment-375</guid>
		<description>&lt;p&gt;[...] just upgraded to Mac OS X 10.7, and DrJava works flawlessly. The one vague report that someone had filed therefore proved to be [...]&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>[...] just upgraded to Mac OS X 10.7, and DrJava works flawlessly. The one vague report that someone had filed therefore proved to be [...]</p>]]></content:encoded>
	</item>
	<item>
		<title>Comment on Working on Yet Another Flight by PPPJ 2011 Tool Paper Accepted &#124; A Concurrent Affair</title>
		<link>http://www.concurrentaffair.org/2011/05/20/working-on-yet-another-flight/comment-page-1/#comment-373</link>
		<dc:creator>PPPJ 2011 Tool Paper Accepted &#124; A Concurrent Affair</dc:creator>
		<pubDate>Sun, 26 Jun 2011 07:24:06 +0000</pubDate>
		<guid isPermaLink="false">http://www.concurrentaffair.org/?p=2554#comment-373</guid>
		<description>&lt;p&gt;[...] A while ago I worked on a paper together with Vivek, Corky, Vincent, Jared and Raghavan at Rice. We still have to make some final revisions, but I&#8217;m happy to report that our tool paper &#8220;DrHJ &#8212; a lightweight pedagogic IDE for Habanero Java&#8221; has been accepted to PPPJ 2011 in Denmark. [...]&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>[...] A while ago I worked on a paper together with Vivek, Corky, Vincent, Jared and Raghavan at Rice. We still have to make some final revisions, but I&#8217;m happy to report that our tool paper &#8220;DrHJ &mdash; a lightweight pedagogic IDE for Habanero Java&#8221; has been accepted to PPPJ 2011 in Denmark. [...]</p>]]></content:encoded>
	</item>
	<item>
		<title>Comment on Is iConcept Press a Vanity Press? by Review for iConcept Press &#124; A Concurrent Affair</title>
		<link>http://www.concurrentaffair.org/2010/09/11/is-iconcept-press-a-vanity-press/comment-page-1/#comment-368</link>
		<dc:creator>Review for iConcept Press &#124; A Concurrent Affair</dc:creator>
		<pubDate>Mon, 17 Jan 2011 02:25:29 +0000</pubDate>
		<guid isPermaLink="false">http://www.concurrentaffair.org/?p=2217#comment-368</guid>
		<description>&lt;p&gt;[...] I don&#8217;t think this exercise of mine will get us any more information on whether iConcept Press is just a vanity press. I don&#8217;t see reviews by others, and there is obviously no program committee meeting to [...]&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>[...] I don&#8217;t think this exercise of mine will get us any more information on whether iConcept Press is just a vanity press. I don&#8217;t see reviews by others, and there is obviously no program committee meeting to [...]</p>]]></content:encoded>
	</item>
	<item>
		<title>Comment on Is iConcept Press Legitimate? A Review by Review for iConcept Press &#124; A Concurrent Affair</title>
		<link>http://www.concurrentaffair.org/2011/01/03/is-iconcept-press-legitimate-a-review/comment-page-1/#comment-367</link>
		<dc:creator>Review for iConcept Press &#124; A Concurrent Affair</dc:creator>
		<pubDate>Mon, 17 Jan 2011 02:25:03 +0000</pubDate>
		<guid isPermaLink="false">http://www.concurrentaffair.org/?p=2448#comment-367</guid>
		<description>&lt;p&gt;[...] just finished the review of the &#8220;journal&#8221; paper I had agreed to do for iConcept Press. It was an interesting survey paper, written by non-native speakers of English, about a topic [...]&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>[...] just finished the review of the &#8220;journal&#8221; paper I had agreed to do for iConcept Press. It was an interesting survey paper, written by non-native speakers of English, about a topic [...]</p>]]></content:encoded>
	</item>
	<item>
		<title>Comment on Is iConcept Press a Vanity Press? by Is iConcept Press Legitimate? A Review &#124; A Concurrent Affair</title>
		<link>http://www.concurrentaffair.org/2010/09/11/is-iconcept-press-a-vanity-press/comment-page-1/#comment-366</link>
		<dc:creator>Is iConcept Press Legitimate? A Review &#124; A Concurrent Affair</dc:creator>
		<pubDate>Tue, 04 Jan 2011 05:23:53 +0000</pubDate>
		<guid isPermaLink="false">http://www.concurrentaffair.org/?p=2217#comment-366</guid>
		<description>&lt;p&gt;[...] for an article to be published in one of iConcept Press&#8216;s journals today. I already wrote about iConcept Press earlier, when I wondered whether it was a vanity press. Considering the cost of publishing there, I still think it is a vanity press, but I&#8217;m [...]&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>[...] for an article to be published in one of iConcept Press&#8216;s journals today. I already wrote about iConcept Press earlier, when I wondered whether it was a vanity press. Considering the cost of publishing there, I still think it is a vanity press, but I&#8217;m [...]</p>]]></content:encoded>
	</item>
	<item>
		<title>Comment on Back in Houston for a Bit by Not a Memory Leak, But Not Finalized? &#124; A Concurrent Affair</title>
		<link>http://www.concurrentaffair.org/2010/06/03/back-in-houston-for-a-bit/comment-page-1/#comment-362</link>
		<dc:creator>Not a Memory Leak, But Not Finalized? &#124; A Concurrent Affair</dc:creator>
		<pubDate>Mon, 22 Nov 2010 20:37:08 +0000</pubDate>
		<guid isPermaLink="false">http://www.concurrentaffair.org/?p=1880#comment-362</guid>
		<description>&lt;p&gt;[...]   a blog about Mathias&#039; work and play.    Skip to content HomeAboutShared Feed Items        &#8592; Back in Houston for a Bit Hudson Server Swapping Itself to Death [...]&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>[...]   a blog about Mathias&#039; work and play.    Skip to content HomeAboutShared Feed Items        &larr; Back in Houston for a Bit Hudson Server Swapping Itself to Death [...]</p>]]></content:encoded>
	</item>
	<item>
		<title>Comment on Right Margin Line in DrJava by Not a Memory Leak, But Not Finalized? &#124; A Concurrent Affair</title>
		<link>http://www.concurrentaffair.org/2010/05/13/right-margin-line-in-drjava/comment-page-1/#comment-361</link>
		<dc:creator>Not a Memory Leak, But Not Finalized? &#124; A Concurrent Affair</dc:creator>
		<pubDate>Mon, 22 Nov 2010 20:36:01 +0000</pubDate>
		<guid isPermaLink="false">http://www.concurrentaffair.org/?p=1860#comment-361</guid>
		<description>&lt;p&gt;[...] a memory leak in DrJava today. I found the reproducible memory leak quite quickly: When I added the right margin line feature, I added option listeners that change the color and position of the right margin line in [...]&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>[...] a memory leak in DrJava today. I found the reproducible memory leak quite quickly: When I added the right margin line feature, I added option listeners that change the color and position of the right margin line in [...]</p>]]></content:encoded>
	</item>
	<item>
		<title>Comment on Is iConcept Press a Vanity Press? by Vanity Press or Monopoly Busters? &#124; The Alter Egozi</title>
		<link>http://www.concurrentaffair.org/2010/09/11/is-iconcept-press-a-vanity-press/comment-page-1/#comment-359</link>
		<dc:creator>Vanity Press or Monopoly Busters? &#124; The Alter Egozi</dc:creator>
		<pubDate>Mon, 15 Nov 2010 15:40:05 +0000</pubDate>
		<guid isPermaLink="false">http://www.concurrentaffair.org/?p=2217#comment-359</guid>
		<description>&lt;p&gt;[...] another email in a similar vein from another &#8220;publishing house&#8221;, and found at least one blogger who was just as suspicious at this seemingly mass [...]&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>[...] another email in a similar vein from another &#8220;publishing house&#8221;, and found at least one blogger who was just as suspicious at this seemingly mass [...]</p>]]></content:encoded>
	</item>
	<item>
		<title>Comment on Another Image Processing Example in Our Staged DSL by Benoît Mandelbrot Died at Age 85 &#124; A Concurrent Affair</title>
		<link>http://www.concurrentaffair.org/2010/10/10/another-image-processing-example-in-our-staged-dsl/comment-page-1/#comment-356</link>
		<dc:creator>Benoît Mandelbrot Died at Age 85 &#124; A Concurrent Affair</dc:creator>
		<pubDate>Sun, 17 Oct 2010 01:46:48 +0000</pubDate>
		<guid isPermaLink="false">http://www.concurrentaffair.org/?p=2319#comment-356</guid>
		<description>&lt;p&gt;[...] A Concurrent Affair   a blog about Mathias&#039; work and play.    Skip to content HomeAboutShared Feed Items        &#8592; Another Image Processing Example in Our Staged DSL [...]&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>[...] A Concurrent Affair   a blog about Mathias&#039; work and play.    Skip to content HomeAboutShared Feed Items        &larr; Another Image Processing Example in Our Staged DSL [...]</p>]]></content:encoded>
	</item>
	<item>
		<title>Comment on GPCE&#8217;10 Tutorial Slides by Another Image Processing Example in Our Staged DSL &#124; A Concurrent Affair</title>
		<link>http://www.concurrentaffair.org/2010/10/10/gpce10-tutorial-slides/comment-page-1/#comment-355</link>
		<dc:creator>Another Image Processing Example in Our Staged DSL &#124; A Concurrent Affair</dc:creator>
		<pubDate>Sun, 10 Oct 2010 12:56:54 +0000</pubDate>
		<guid isPermaLink="false">http://www.concurrentaffair.org/?p=2317#comment-355</guid>
		<description>&lt;p&gt;[...] A Concurrent Affair   a blog about Mathias&#039; work and play.    Skip to content HomeAboutShared Feed Items        &#8592; GPCE&#8217;10 Tutorial Slides [...]&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>[...] A Concurrent Affair   a blog about Mathias&#039; work and play.    Skip to content HomeAboutShared Feed Items        &larr; GPCE&#8217;10 Tutorial Slides [...]</p>]]></content:encoded>
	</item>
	<item>
		<title>Comment on GPCE&#8217;10 Tutorial Lecture: Agile and Efficient Domain-Specific Languages using Multi-stage Programming in Java Mint by GPCE&#8217;10 Tutorial Source &#124; A Concurrent Affair</title>
		<link>http://www.concurrentaffair.org/2010/08/16/gpce10-tutorial-lecture-agile-and-efficient-domain-specific-languages-using-multi-stage-programming-in-java-mint/comment-page-1/#comment-354</link>
		<dc:creator>GPCE&#8217;10 Tutorial Source &#124; A Concurrent Affair</dc:creator>
		<pubDate>Sun, 10 Oct 2010 10:06:08 +0000</pubDate>
		<guid isPermaLink="false">http://www.concurrentaffair.org/?p=2132#comment-354</guid>
		<description>&lt;p&gt;[...] Here is a zip file with the source code for our GPCE 2010 tutorial. [...]&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>[...] Here is a zip file with the source code for our GPCE 2010 tutorial. [...]</p>]]></content:encoded>
	</item>
	<item>
		<title>Comment on Poster: Java Programming Language Team by Rice Graduate-Undergraduate Research Mixer &#124; A Concurrent Affair</title>
		<link>http://www.concurrentaffair.org/2010/10/07/poster-java-programming-language-team/comment-page-1/#comment-353</link>
		<dc:creator>Rice Graduate-Undergraduate Research Mixer &#124; A Concurrent Affair</dc:creator>
		<pubDate>Fri, 08 Oct 2010 01:19:52 +0000</pubDate>
		<guid isPermaLink="false">http://www.concurrentaffair.org/?p=2298#comment-353</guid>
		<description>&lt;p&gt;[...] A Concurrent Affair   a blog about Mathias&#039; work and play.    Skip to content HomeAboutShared Feed Items        &#8592; Poster: Java Programming Language Team [...]&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>[...] A Concurrent Affair   a blog about Mathias&#039; work and play.    Skip to content HomeAboutShared Feed Items        &larr; Poster: Java Programming Language Team [...]</p>]]></content:encoded>
	</item>
</channel>
</rss>

