05 July, 2019Java interface changed a lot through the years. What were the changes during its evolution? 23 June, 2019Java 13 finally brings support for multi-line string literals after dropping similar functionality from Java 12. 07 June, 2019How to detect third party libraries with security vulnerabilities directly in IntelliJ IDEA. 05 May, 2019With IntelliJ IDEA Edu Tools plugin you can study various programming courses directly in your IDE and work on all the assignments. Alternatively, you can create courses yourself to share with others. 30 April, 2019How to analyze dependencies in IDEA using Dependency Structure Matrix and other tools. 23 April, 2019Try with resources offers an easy and foolproof way to make sure all your resources are properly closed. It manages closing automatically instead of explicitly using "try-finally". 13 April, 2019This book aims to teach you how to write cleaner, more elegant code in Java. It covers 70 issues of various topics with before and after comparison in a concise, easy to read and understand way. 07 April, 2019Java 12 introduced a whole lot of useful improvements to the good old switch, which makes it way more useful. 31 March, 2019Async await allows you to work with asynchronous code in a cleaner and more convenient way. 28 March, 2019Promises are a useful, modern technique in javascript to handle async behavior and a good alternative to callbacks.