Explore >> Select a destination


You are here

hanno.codes
| | shpota.com
14.7 parsecs away

Travel
| | I like Kotlin for its expressiveness. Its interoperability with Java allows the developer to easily use the existing Java ecosystem while enjoying a modern l...
| | ryanharter.com
14.5 parsecs away

Travel
| | In my last article, I gave a basic introduction to AutoValue, the code generating annotation processor that makes immutable value types in Java easy. Now I'd like to take a bit of a deeper look at AutoValue and how it works. Compile Time Annotation Processing First things first, AutoValue is a compile time annotation processor. This means that it only runs when you compile your code, as opposed to when your app is running.
| | www.jrebel.com
10.4 parsecs away

Travel
| | Discover what incubator, preview, and permanent features are coming in Java 24.
| | www.codingem.com
57.0 parsecs away

Travel
| In JavaScript, the practical difference between for...of and for...in loop is that for...of works for arrays and for...in for objects.