<?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 Rafael Naufal&#039;s blog	</title>
	<atom:link href="https://rafaelnaufal.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>https://rafaelnaufal.com/</link>
	<description>Communicating my thoughts on software development</description>
	<lastBuildDate>Tue, 06 Sep 2016 20:19:00 +0000</lastBuildDate>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.7.2</generator>
	<item>
		<title>
		Comment on Converting a Map to a List in Java 8, Groovy and Ruby by rnaufal		</title>
		<link>https://rafaelnaufal.com/2016/07/16/converting-a-map-to-a-list-in-java-8-groovy-and-ruby/#comment-141</link>

		<dc:creator><![CDATA[rnaufal]]></dc:creator>
		<pubDate>Tue, 06 Sep 2016 20:19:00 +0000</pubDate>
		<guid isPermaLink="false">http://rafaelnaufal.com/blog/?p=459#comment-141</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://rafaelnaufal.com/2016/07/16/converting-a-map-to-a-list-in-java-8-groovy-and-ruby/#comment-140&quot;&gt;Bruno Patini Furtado&lt;/a&gt;.

Good post! Your Java 8 version is more expressive and also works, but your lambda has a side effect, which is not recommended. You are changing the state of the pairs list inside the lambda. My version computes the partial results and collects them into a list at the end.]]></description>
			<content:encoded><![CDATA[<p>In reply to <a href="https://rafaelnaufal.com/2016/07/16/converting-a-map-to-a-list-in-java-8-groovy-and-ruby/#comment-140">Bruno Patini Furtado</a>.</p>
<p>Good post! Your Java 8 version is more expressive and also works, but your lambda has a side effect, which is not recommended. You are changing the state of the pairs list inside the lambda. My version computes the partial results and collects them into a list at the end.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		Comment on Converting a Map to a List in Java 8, Groovy and Ruby by Bruno Patini Furtado		</title>
		<link>https://rafaelnaufal.com/2016/07/16/converting-a-map-to-a-list-in-java-8-groovy-and-ruby/#comment-140</link>

		<dc:creator><![CDATA[Bruno Patini Furtado]]></dc:creator>
		<pubDate>Mon, 25 Jul 2016 00:11:00 +0000</pubDate>
		<guid isPermaLink="false">http://rafaelnaufal.com/blog/?p=459#comment-140</guid>

					<description><![CDATA[Take a look at my version of the Java code here: http://bpfurtado.livejournal.com/70341.html

Overall the main lines are these:

mapOfLists.forEach((k, list) -&#062; list.forEach(e -&#062; pairs.add(new Pair(k, e))));
System.out.println(pairs);]]></description>
			<content:encoded><![CDATA[<p>Take a look at my version of the Java code here: <a href="http://bpfurtado.livejournal.com/70341.html" rel="nofollow ugc">http://bpfurtado.livejournal.com/70341.html</a></p>
<p>Overall the main lines are these:</p>
<p>mapOfLists.forEach((k, list) -&gt; list.forEach(e -&gt; pairs.add(new Pair(k, e))));<br />
System.out.println(pairs);</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		Comment on Configuration classes with Enums by Bruno Patini Furtado		</title>
		<link>https://rafaelnaufal.com/2010/09/23/configuration-classes-with-enums/#comment-139</link>

		<dc:creator><![CDATA[Bruno Patini Furtado]]></dc:creator>
		<pubDate>Thu, 03 Jan 2013 12:59:00 +0000</pubDate>
		<guid isPermaLink="false">http://rafaelnaufal.com/blog/?p=324#comment-139</guid>

					<description><![CDATA[Nice tip!]]></description>
			<content:encoded><![CDATA[<p>Nice tip!</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		Comment on Singleton in Java with Enum types by Rohit5		</title>
		<link>https://rafaelnaufal.com/2010/09/07/singleton-in-java-with-enum-types/#comment-138</link>

		<dc:creator><![CDATA[Rohit5]]></dc:creator>
		<pubDate>Tue, 02 Oct 2012 08:51:00 +0000</pubDate>
		<guid isPermaLink="false">http://rafaelnaufal.com/blog/?p=312#comment-138</guid>

					<description><![CDATA[From Java 5 on wards you can also use &lt;b&gt;&lt;a href=&quot;http://javarevisited.blogspot.tw/2012/07/why-enum-singleton-are-better-in-java.html&quot; rel=&quot;nofollow ugc&quot;&gt;Java Enum as Singleton class&lt;/a&gt;&lt;/b&gt;, its simpler, thread-safe, handles serialization and neat.]]></description>
			<content:encoded><![CDATA[<p>From Java 5 on wards you can also use <b><a href="http://javarevisited.blogspot.tw/2012/07/why-enum-singleton-are-better-in-java.html" rel="nofollow ugc">Java Enum as Singleton class</a></b>, its simpler, thread-safe, handles serialization and neat.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		Comment on Java-Quiz: The Iterator Quiz by rnaufal		</title>
		<link>https://rafaelnaufal.com/2010/08/03/java-quiz-the-iterator-quiz/#comment-136</link>

		<dc:creator><![CDATA[rnaufal]]></dc:creator>
		<pubDate>Thu, 05 Aug 2010 02:14:13 +0000</pubDate>
		<guid isPermaLink="false">http://rafaelnaufal.com/blog/?p=267#comment-136</guid>

					<description><![CDATA[And other:&lt;br&gt;&lt;br&gt;&lt;code&gt;&lt;br&gt;final List&#060;String&#062; list = new ArrayList() {{ &lt;br&gt;            add(&quot;Hello&quot;); &lt;br&gt;        }};&lt;br&gt;        final Iterator&#060;String&#062; iterator = list.iterator();&lt;br&gt;        System.out.println(iterator.next());&lt;br&gt;        list.add(&quot;World&quot;);&lt;br&gt;        System.out.println(list.get( 1 ));&lt;br&gt;        System.exit( 0 );&lt;br&gt;        System.out.println(iterator.next());&lt;br&gt;&lt;/code&gt;]]></description>
			<content:encoded><![CDATA[<p>And other:</p>
<p><code><br />final List&lt;String&gt; list = new ArrayList() {{ <br />            add("Hello"); <br />        }};<br />        final Iterator&lt;String&gt; iterator = list.iterator();<br />        System.out.println(iterator.next());<br />        list.add("World");<br />        System.out.println(list.get( 1 ));<br />        System.exit( 0 );<br />        System.out.println(iterator.next());<br /></code></p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		Comment on Java-Quiz: The Iterator Quiz by rnaufal		</title>
		<link>https://rafaelnaufal.com/2010/08/03/java-quiz-the-iterator-quiz/#comment-137</link>

		<dc:creator><![CDATA[rnaufal]]></dc:creator>
		<pubDate>Thu, 05 Aug 2010 02:09:29 +0000</pubDate>
		<guid isPermaLink="false">http://rafaelnaufal.com/blog/?p=267#comment-137</guid>

					<description><![CDATA[I think one possible solution is:&lt;br&gt;&lt;br&gt;&lt;code&gt;&lt;br&gt; final List&#060;String&#062; list = new ArrayList() {{ &lt;br&gt;            add(&quot;Hello&quot;); &lt;br&gt;        }};&lt;br&gt;        final Iterator&#060;String&#062; iterator = list.iterator();&lt;br&gt;        System.out.println(iterator.next());&lt;br&gt;        list.add(&quot;World&quot;);&lt;br&gt;        System.out.println(list.get( 1 ));&lt;br&gt;        try&lt;br&gt;        {&lt;br&gt;            System.out.println(iterator.next());&lt;br&gt;        } catch ( Exception e )&lt;br&gt;        {&lt;br&gt;        }&lt;br&gt;&lt;/code&gt;]]></description>
			<content:encoded><![CDATA[<p>I think one possible solution is:</p>
<p><code><br /> final List&lt;String&gt; list = new ArrayList() {{ <br />            add("Hello"); <br />        }};<br />        final Iterator&lt;String&gt; iterator = list.iterator();<br />        System.out.println(iterator.next());<br />        list.add("World");<br />        System.out.println(list.get( 1 ));<br />        try<br />        {<br />            System.out.println(iterator.next());<br />        } catch ( Exception e )<br />        {<br />        }<br /></code></p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		Comment on JDK7 Tackles Java Verbosity by Bruno		</title>
		<link>https://rafaelnaufal.com/2009/09/22/jdk7-tackles-java-verbosity/#comment-106</link>

		<dc:creator><![CDATA[Bruno]]></dc:creator>
		<pubDate>Sat, 20 Mar 2010 14:21:48 +0000</pubDate>
		<guid isPermaLink="false">http://rafaelnaufal.com/blog/?p=86#comment-106</guid>

					<description><![CDATA[I&#039;m still more fond of the Groovy syntax to Lists and Maps: 

def list = [5, 6, 7, 8]

def map = [name:&quot;Gromit&quot;, likes:&quot;cheese&quot;, id:1234]

:)]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m still more fond of the Groovy syntax to Lists and Maps: </p>
<p>def list = [5, 6, 7, 8]</p>
<p>def map = [name:&#8221;Gromit&#8221;, likes:&#8221;cheese&#8221;, id:1234]</p>
<p>🙂</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		Comment on My first experiences on a Scrum team by Ariel Cook		</title>
		<link>https://rafaelnaufal.com/2009/12/02/my-first-experiences-on-a-scrum-team/#comment-126</link>

		<dc:creator><![CDATA[Ariel Cook]]></dc:creator>
		<pubDate>Sun, 21 Feb 2010 17:14:17 +0000</pubDate>
		<guid isPermaLink="false">http://rafaelnaufal.com/blog/?p=183#comment-126</guid>

					<description><![CDATA[I would appreciate more visual materials, to make your blog more attractive, but your writing style really compensates it. But there is always place for improvement]]></description>
			<content:encoded><![CDATA[<p>I would appreciate more visual materials, to make your blog more attractive, but your writing style really compensates it. But there is always place for improvement</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		Comment on Using Scala to update LiveJournal tags &#8211; Part I by Microwave Manualunjuctphync		</title>
		<link>https://rafaelnaufal.com/2009/05/23/using-scala-to-update-livejournal-tags-part-i/#comment-104</link>

		<dc:creator><![CDATA[Microwave Manualunjuctphync]]></dc:creator>
		<pubDate>Fri, 19 Feb 2010 03:46:48 +0000</pubDate>
		<guid isPermaLink="false">http://rnaufal.wordpress.com/2009/05/23/using-scala-to-update-livejournal-tags-part-i/#comment-104</guid>

					<description><![CDATA[Hey there thanks regarding your post.I truly enjoy your site.Its extremely informative.On the other hand I actually want you to post how you put social bookmarking below your post.My partner and i like it because it&#039;s a very clean cool blogger mod.
thank you very much]]></description>
			<content:encoded><![CDATA[<p>Hey there thanks regarding your post.I truly enjoy your site.Its extremely informative.On the other hand I actually want you to post how you put social bookmarking below your post.My partner and i like it because it&#8217;s a very clean cool blogger mod.<br />
thank you very much</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		Comment on The power of pair programming by Ross Huggett		</title>
		<link>https://rafaelnaufal.com/2010/01/14/the-power-of-pair-programming/#comment-133</link>

		<dc:creator><![CDATA[Ross Huggett]]></dc:creator>
		<pubDate>Mon, 01 Feb 2010 10:39:33 +0000</pubDate>
		<guid isPermaLink="false">http://rafaelnaufal.com/blog/?p=206#comment-133</guid>

					<description><![CDATA[Nice post. My experiences are that it&#039;s more effective than a separate code review.]]></description>
			<content:encoded><![CDATA[<p>Nice post. My experiences are that it&#8217;s more effective than a separate code review.</p>
]]></content:encoded>
		
			</item>
	</channel>
</rss>
