This document provides an overview and best practices for using new features introduced in Java SE 8, based on the author's experience using Java SE 8 for over a year. It covers lambdas, functional interfaces, exceptions, Optional, and streams. The author advocates following best practices such as using expression lambdas over block lambdas, avoiding unnecessary type declarations, and handling exceptions carefully when using functional interfaces. The document also discusses approaches for using Optional to replace null values.