<?xml version="1.0" encoding="UTF-8"?> <rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" 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:slash="http://purl.org/rss/1.0/modules/slash/" ><channel><title>Java Code Geeks &#187; Cyrille Martraire</title> <atom:link href="http://www.javacodegeeks.com/author/Cyrille-Martraire/feed" rel="self" type="application/rss+xml" /><link>http://www.javacodegeeks.com</link> <description>Java 2 Java Developers Resource Center</description> <lastBuildDate>Fri, 24 May 2013 19:00:57 +0000</lastBuildDate> <language>en-US</language> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <generator>http://wordpress.org/?v=3.5.1</generator> <item><title>TDD Vs. math formalism: friend or foe?</title><link>http://www.javacodegeeks.com/2013/01/tdd-vs-math-formalism-friend-or-foe.html</link> <comments>http://www.javacodegeeks.com/2013/01/tdd-vs-math-formalism-friend-or-foe.html#comments</comments> <pubDate>Thu, 10 Jan 2013 20:00:39 +0000</pubDate> <dc:creator>Cyrille Martraire</dc:creator> <category><![CDATA[Software Development]]></category> <category><![CDATA[TDD]]></category><guid isPermaLink="false">http://www.javacodegeeks.com/?p=6796</guid> <description><![CDATA[It is not uncommon to oppose the empirical process of TDD, together with its heavy use of unit tests, to the more mathematically based techniques, with the »formal methods » and formal verification at the other end of the spectrum. However I experienced again recently that the process of TDD can indeed help discover and [...]]]></description> <wfw:commentRss>http://www.javacodegeeks.com/2013/01/tdd-vs-math-formalism-friend-or-foe.html/feed</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Collaborative Artifacts as Code</title><link>http://www.javacodegeeks.com/2012/11/collaborative-artifacts-as-code.html</link> <comments>http://www.javacodegeeks.com/2012/11/collaborative-artifacts-as-code.html#comments</comments> <pubDate>Tue, 13 Nov 2012 08:00:37 +0000</pubDate> <dc:creator>Cyrille Martraire</dc:creator> <category><![CDATA[Software Development]]></category><guid isPermaLink="false">http://www.javacodegeeks.com/?p=3183</guid> <description><![CDATA[A software development project is a collaborative endeavor. Several team members work together and produce artifacts that evolve continuously over time, a process that Alberto Brandolini (@ziobrando) calls Collaborative Construction. Regularly, these artifacts are taken in their current state and transformed into something that become a release. Typically, source code is compiled and packaged into [...]]]></description> <wfw:commentRss>http://www.javacodegeeks.com/2012/11/collaborative-artifacts-as-code.html/feed</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Signal-to-noise ratio in your code</title><link>http://www.javacodegeeks.com/2012/09/signal-to-noise-ratio-in-your-code.html</link> <comments>http://www.javacodegeeks.com/2012/09/signal-to-noise-ratio-in-your-code.html#comments</comments> <pubDate>Fri, 07 Sep 2012 10:00:00 +0000</pubDate> <dc:creator>Cyrille Martraire</dc:creator> <category><![CDATA[Software Development]]></category><guid isPermaLink="false">http://www.javacodegeeks.com/2012/10/signal-to-noise-ratio-in-your-code.html</guid> <description><![CDATA[You write code to deliver business value, hence your code deals with a business domain like e-trading in finance, or the navigation for an online shoe store. If you look at a random piece of your code, how much of what you see tells you about the domain concepts? How much of it is nothing [...]]]></description> <wfw:commentRss>http://www.javacodegeeks.com/2012/09/signal-to-noise-ratio-in-your-code.html/feed</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Java Enums: You have grace, elegance and power and this is what I Love!</title><link>http://www.javacodegeeks.com/2012/08/java-enums-you-have-grace-elegance-and.html</link> <comments>http://www.javacodegeeks.com/2012/08/java-enums-you-have-grace-elegance-and.html#comments</comments> <pubDate>Fri, 24 Aug 2012 10:00:00 +0000</pubDate> <dc:creator>Cyrille Martraire</dc:creator> <category><![CDATA[Core Java]]></category> <category><![CDATA[Enums]]></category><guid isPermaLink="false">http://www.javacodegeeks.com/2012/10/java-enums-you-have-grace-elegance-and-power-and-this-is-what-i-love.html</guid> <description><![CDATA[While Java 8 is coming, are you sure you know well the enums that were introduced in Java 5? Java enums are still underestimated, and it’s a pity since they are more useful than you might think, they’re not just for your usual enumerated constants! Java enum is polymorphic Java enums are real classes that [...]]]></description> <wfw:commentRss>http://www.javacodegeeks.com/2012/08/java-enums-you-have-grace-elegance-and.html/feed</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Functional style in Java with predicates &#8211; Part 2</title><link>http://www.javacodegeeks.com/2012/05/functional-style-in-java-with_23.html</link> <comments>http://www.javacodegeeks.com/2012/05/functional-style-in-java-with_23.html#comments</comments> <pubDate>Wed, 23 May 2012 19:13:00 +0000</pubDate> <dc:creator>Cyrille Martraire</dc:creator> <category><![CDATA[Core Java]]></category> <category><![CDATA[Functional Programming]]></category><guid isPermaLink="false">http://www.javacodegeeks.com/2012/10/functional-style-in-java-with-predicates-part-2.html</guid> <description><![CDATA[In the first part of this article we introduced predicates, which bring some of the benefits of functional programming to object-oriented languages such as Java, through a simple interface with one single method that returns true or false. In this second and last part, we’ll cover some more advanced notions to get the best out [...]]]></description> <wfw:commentRss>http://www.javacodegeeks.com/2012/05/functional-style-in-java-with_23.html/feed</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Functional style in Java with predicates &#8211; Part 1</title><link>http://www.javacodegeeks.com/2012/05/functional-style-in-java-with.html</link> <comments>http://www.javacodegeeks.com/2012/05/functional-style-in-java-with.html#comments</comments> <pubDate>Wed, 23 May 2012 19:12:00 +0000</pubDate> <dc:creator>Cyrille Martraire</dc:creator> <category><![CDATA[Core Java]]></category> <category><![CDATA[Functional Programming]]></category><guid isPermaLink="false">http://www.javacodegeeks.com/2012/10/functional-style-in-java-with-predicates-part-1.html</guid> <description><![CDATA[You keep hearing about functional programming that is going to take over the world, and you are still stuck to plain Java? Fear not, since you can already add a touch of functional style into your daily Java. In addition, it’s fun, saves you many lines of code and leads to fewer bugs. What is [...]]]></description> <wfw:commentRss>http://www.javacodegeeks.com/2012/05/functional-style-in-java-with.html/feed</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Functional programming with Map and Fold in Java</title><link>http://www.javacodegeeks.com/2012/03/functional-programming-with-map-and.html</link> <comments>http://www.javacodegeeks.com/2012/03/functional-programming-with-map-and.html#comments</comments> <pubDate>Fri, 09 Mar 2012 15:51:00 +0000</pubDate> <dc:creator>Cyrille Martraire</dc:creator> <category><![CDATA[Core Java]]></category> <category><![CDATA[Functional Programming]]></category><guid isPermaLink="false">http://www.javacodegeeks.com/2012/10/functional-programming-with-map-and-fold-in-java.html</guid> <description><![CDATA[In functional programming, Map and Fold are two extremely useful operators, and they belong to every functional language. If the Map and Fold operators are so powerful and essential, how do you explain that we can do our job using Java even though the Java programming language is lacking these two operators? The truth is [...]]]></description> <wfw:commentRss>http://www.javacodegeeks.com/2012/03/functional-programming-with-map-and.html/feed</wfw:commentRss> <slash:comments>0</slash:comments> </item> </channel> </rss>
<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk: basic
Page Caching using disk: enhanced
Database Caching 2/4 queries in 0.001 seconds using apc
Object Caching 951/952 objects using apc
Content Delivery Network via jcg.javacodegeeks.netdna-cdn.com

Served from: www.javacodegeeks.com @ 2013-05-25 03:50:49 -->