[The Java Posse] Lombok @ Devoxx Antwerp 2013

2013-09-09 Thread Roel Spilker
Hi all, Monday November 11th, 2013, Reinier and I will again give a presentation about Lombok at Devoxx. We will attend the conference all week, so if you have any questions or just want to talk, send us a message and we'll try to meet. We owe some of you beer, so please don't hesitate to

[The Java Posse] Re: What if... Java Self-Updated Like Chrome

2012-01-30 Thread Roel Spilker
JDK/JRE 1.6.0u29 was unusable for a lot of our customers since it could no longer connect to an MS-SQL database (see bughttp://bugs.sun.com/bugdatabase/view_bug.do?bug_id=7105007). Those are the things you never ever want to encounter. -- You received this message because you are subscribed

[The Java Posse] Has Java7 really been released?

2012-01-30 Thread Roel Spilker
Pro: - You can download a JDK and JRE from the Oracle website - The latest version number is 1.0.7u02 Contra: - According to http://java.com/en/download/faq/java7.xml it is only available for developers. My company creates standard software (B2B) that we ship to thousands of customers.

[The Java Posse] Re: Has Java7 really been released?

2012-01-30 Thread Roel Spilker
The latest version number is 1.7.0u02 -- You received this message because you are subscribed to the Google Groups The Java Posse group. To view this discussion on the web visit https://groups.google.com/d/msg/javaposse/-/NSUxnHMwlXcJ. To post to this group, send email to

[The Java Posse] Re: Pick your own Pizza Topping

2010-10-06 Thread Roel Spilker
I've encountered a problem using the PizzaToppingFactory; after adding about 100 toppings I got a StackOverflowError. I use a 32-cm model. Someone told me that I should upgrade to 64-cm. Does that really help? On Oct 5, 10:22 pm, Ricky Clarkson ricky.clark...@gmail.com wrote: I just can't

RE: [The Java Posse] Re: JavaFx and disappointment

2010-08-13 Thread Roel Spilker
Eclipse uses the JRE. If you don't believe me, uninstall java and (try to) start eclipse. Or just open eclipse.ini -Oorspronkelijk bericht- Van: jsho...@gmail.com [mailto:javapo...@googlegroups.com] Namens jahid Verzonden: 13 August 2010 16:54 Aan: The Java Posse Onderwerp: [The

RE: [The Java Posse] Bad benchmarks was fastest way to parse

2010-07-29 Thread Roel Spilker
And if array access boundary checks are not jitted out, I'm guessing most modern processors will use branch prediction (http://en.wikipedia.org/wiki/Branch_predictor) to execute the array access at the same time it's checking the bounds. Since usually the array index is within bounds, there is

RE: [The Java Posse] Re: Tab / Spaces anyone?

2010-06-29 Thread Roel Spilker
Reinier, you forgot to mention that empty lines should also contain tabs for the right indentation level. -Oorspronkelijk bericht- Van: reini...@gmail.com [mailto:javapo...@googlegroups.com] Namens Reinier Zwitserloot Verzonden: dinsdag 29 juni 2010 14:41 Aan: The Java Posse Onderwerp:

RE: [The Java Posse] Re: Good gosh J7 lambdas/closures are looking worse by the day

2010-05-31 Thread Roel Spilker
Closures can also be assigned to SAM types. A SAM type is any type that is (1) abstract and (2) has only one undefined method in it. In other words, any interface that mentions only 1 method, and any abstract class where all but 1 method has an implementation. Like FileFilter and

Re: [The Java Posse] Re: New compiler-plugin available for the Scala wags

2009-11-24 Thread Roel Spilker
Project Lombok will not use reflection. It is a compiler plugin and will just generate the code to delegate the call to a field. Roel On Tue, Nov 24, 2009 at 9:46 AM, Patrick Wright pdoubl...@gmail.com wrote: In Java, this would be like implementing Comparable then delegating the comparison

[The Java Posse] Re: Devoxx 09

2009-11-10 Thread Roel Spilker
- No, you do not need to register for sessions, just show up in time. The keynote will be probably be broadcast in a second room. - Apart from http://devoxx.com/display/DV09/Conf+Day+1 etc. I don't know about any online tools... - This should be answered by a Posse member... On Nov 10, 1:20 pm,

[The Java Posse] Re: Java officially lags C

2009-09-01 Thread Roel Spilker
For ARM-blocks you can have a look at the @Cleanup annotation of Lombok and have ARM-blocks for Java right now! The following code will close both streams correctly after they run out of scope. import lombok.Cleanup; import java.io.*; public class CleanupExample { public static void

[The Java Posse] Re: Java officially lags C

2009-09-01 Thread Roel Spilker
FileInputStream( ... );     // Do something else... } /Casper On 1 Sep., 14:53, Roel Spilker r.spil...@gmail.com wrote: For ARM-blocks you can have a look at the @Cleanup annotation of Lombok and have ARM-blocks for Java right now! The following code will close both streams correctly

[The Java Posse] Re: Java officially lags C

2009-09-01 Thread Roel Spilker
the existing Closable. Lombok couldn't care less what it's closing and could in fact be used as a C++ deconstructor. Correct? /Casper On 1 Sep., 15:47, Roel Spilker r.spil...@gmail.com wrote: Caster, that is not entirely correct. The close methode (actually, close is just the default, you can

[The Java Posse] Re: Episode 274 - Lombok

2009-08-25 Thread Roel Spilker
Also, Lombok is the nickname of a small pepper: http://en.wikipedia.org/wiki/Naga_jolokia The tag line on the Project Lombok webside is Spice up your java On Aug 24, 5:27 am, Christian Catchpole christ...@catchpole.net wrote: Although walking into Starbucks and ordering a half-caf

[The Java Posse] Re: Has anybody else tried Lombok?

2009-08-25 Thread Roel Spilker
Hmm. Even if we add knowlegde about Eclipse field prefixes, it would mean that the same file compiled by javac would result in a different file. Maybe we can have a -D command line parameter for javac and use the Eclipse setting implicitly. Is there a reason you are so fond of the field prefix?