Explore >> Select a destination


You are here

blog.scaledcode.com
| | ryanharter.com
3.4 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.
| | msfjarvis.dev
3.5 parsecs away

Travel
| | Part 1 of my #TeachingKotlin, this post goes over Kotlin classes, objects and how things like finality and staticity vary between Java and Kotlin.
| | javaalmanac.io
4.5 parsecs away

Travel
| | Information about Java 15 including documentation links, new APIs, added features and download options.
| | www.e4developer.com
19.7 parsecs away

Travel
| If you want to write a program that is able to play a strategy game, there are good chances that you will be looking at a Minimax algorithm.