Explore >> Select a destination


You are here

sigpwned.com
| | inside.java
14.8 parsecs away

Travel
| | Record classes enhance Java's ability to model "plain data" aggregates with less ceremony. A record class declares some immutable state, and commits to an API that matches that state. This means that record classes give up a freedom that classes usu...
| | ryanharter.com
16.2 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.
| | angiejones.tech
13.2 parsecs away

Travel
| | Here is a recipe for deserializing API responses into the new Java construct: Record, and using it for easier verification.
| | brockallen.com
118.0 parsecs away

Travel
| Like MVC 4, in MVC 5 and Visual Studio 2013 we have the ability to use external login providers (aka social logins) in our ASP.NET applications. The big change related to this from the prior version is that we no longer are using DotNetOpenAuth and instead are now using OWIN authentication middleware to handle the...