Java

63 articles

Java for Shell Scripting

 · 4 min
No matter what your daily driver is, most of us also have to write some shell scripts to automate stuff. Usually, bash script, Python, Perl, etc. is used. But what if we could use a compiled language instead?
Read More
A new addition to the Java repertoire are default methods for interfaces: Non-abstract methods directly in an interface.
Read More

Java Streams: Order Matters

 · 3 min
Streams are one of my most used features of Java 8, especially in combination with lambdas. They make code more concise, and we all love shorter, more readable code. But a lot can go wrong along the way.
Read More