DEV Community

Christopher Kocel
Christopher Kocel

Posted on • Updated on

Wednesday Links - Edition 2021-07-14

Moduliths 1.1 released (4 min read) ๐Ÿ—ฟ
http://www.odrotbohm.de/2021/07/moduliths-1.1-released/

4 ready-to-try Java tools your team may not know about (4 min read) ๐Ÿงฐ
https://blogs.oracle.com/javamagazine/java-tools-jdeprscan-jlink-jpackage-jfr

Express JPA Queries as Java Streams (5 min read) ๐Ÿšฟ
https://piotrminkowski.com/2021/07/13/express-jpa-queries-as-java-streams

Blaze Persistence โ€“ the best way to write JPA Criteria queries (3 min read) ๐Ÿ”ช
https://vladmihalcea.com/blaze-persistence-jpa-criteria-queries

Kotlinโ€™s โ€œinternalโ€ Visibility Modifier and Java Interoperability (2 min read) ๐Ÿ›‚
https://4comprehension.com/kotlins-internal-visibility-modifier-and-java-interoperability

Kotlin flow: Nesting vs Chaining (5 min read) ๐Ÿ”—
https://krossovochkin.com/posts/2021_07_08_kotlin_flow_nesting_vs_chaining/

Visitor Pattern Considered Pointless - Use Pattern Switches Instead (7 min read) ๐Ÿ”€
https://nipafx.dev/java-visitor-pattern-pointless/

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.