Convert List to String

List of String:

String.join(",", yourListString);

List of Objetcs:

String content = yourListObjs.stream()
        .map(obj -> obj.toString())
        .collect(Collectors.joining(System.lineSeparator()));

Sort List of Objects by Property

yourList.sort(Comparator.comparing(obj -> obj.getYourProperty));

Sort List of String:
list.sort(String::compareToIgnoreCase);

Cold Turkey Blocker

 https://superuser.com/questions/1366153/how-to-get-rid-of-cold-turkey-website-blocker-get-around-the-block Very old question, but still wan...