DEV Community

Cover image for Java 8 to Kotlin, Clojure and Java 17 - Part 1 Java 8
Jorge Tovar
Jorge Tovar

Posted on • Updated on

 

Java 8 to Kotlin, Clojure and Java 17 - Part 1 Java 8

100DaysOfCode #Java

Implementing java 8 example. BookParser

Next step: move the code to Java 17, then Kotlin and Clojure
https://github.com/jorgetovar/from-java-8-to-java-17-kotlin-clojure/pull/1/files

Top comments (0)

An Animated Guide to Node.js Event Loop

Node.js doesn’t stop from running other operations because of Libuv, a C++ library responsible for the event loop and asynchronously handling tasks such as network requests, DNS resolution, file system operations, data encryption, etc.

What happens under the hood when Node.js works on tasks such as database queries? We will explore it by following this piece of code step by step.