Free Culture
Recently, I’ve read a phenomenal book which was recommended in an equally fantastic video on copyright law, made by David Bruce, a classical music composer and enthusiast. The full name of the book...
Recently, I’ve read a phenomenal book which was recommended in an equally fantastic video on copyright law, made by David Bruce, a classical music composer and enthusiast. The full name of the book...
Disclaimer: this is in no way an objective article on RIO1, just a collection of random thoughts which occured to me (read as “I found on the Internet, am too much lazy to find and list all the res...
Since the middle of March 2019, I’ve been discovering my deep love of classical music. Since I already don’t know what I’ve listened to so far, I will keep track of all the pieces from now on here....
This article will consider various implementations of a shutdown hook: simply a piece of code we wish to execute at the very end of the application. The usual scenario of using shutdown hooks is w...
Consider the following code: import java.util.List; import java.util.ArrayList; public class UncheckedChecker { List list = new ArrayList(); } When compiled with javac -Xlint (nonstardard o...