hanweiweihanweiwei.hashnode.dev·Dec 25, 2024AbstractPipeline: The Backbone of Java Stream APIIntroduction The Java Stream API revolutionized the way developers process collections by introducing a functional programming paradigm. At its core lies the AbstractPipeline class, the foundation for all stream implementations. In this article, we’l...Java
hanweiweihanweiwei.hashnode.dev·Dec 25, 2024Understanding StreamOpFlag in Java Stream APIIntroduction: What is StreamOpFlag? In Java 8, the Stream API introduced a way to process collections of data in a functional style. While using streams, we often focus on operations like map(), filter(), reduce(), and collect(). However, under the h...Java
Toucanvatoucanva.uk·Nov 7, 2024Peaceful Wildflower Meadow Stream FreeDiscover the Tranquility of a Peaceful Wildflower Meadow Stream Imagine stepping into a world where time slows down, and the gentle hum of nature serenades your senses. Enter the enchanting realm of a peaceful wildflower meadow stream, where vibrant ...tranquil
Romman Sabbirrommansabbir.com·Sep 14, 2024Kotlin : How to Flow?Kotlin Flow is a powerful and easy-to-use tool for handling asynchronous data streams in Kotlin, especially useful for modern Android development. At first glance, Flow might seem a bit complex, but don’t worry! In this article, we’ll break it down i...167 readsKotlindata stream
Arya M. Pathakarya2004.hashnode.dev·Jul 22, 2024Mastering Formatted and File I/O in GoIn this blog, we'll delve into the world of formatted and file I/O in Go. We'll explore the powerful fmt package for formatted I/O and the os and io packages for file operations. Along the way, we'll demonstrate these concepts with plenty of code exa...10 likesGo Deep: Mastering Golang Fundamentalsgolang
André Felipe Costa Bentobentodev.hashnode.dev·Jun 7, 2024Java Streams and Lambda Expressions: An In-Depth ExplorationWe have already talked about Streams and Lambda expressions in JAVA on other posts, but on this one, I'd like to talk about it again on more specific topics related to some more common features and functions used by our community. In this article, we...Java
André Felipe Costa Bentobentodev.hashnode.dev·Jun 3, 2024Understanding Streams in JavaIntroduction to Java Streams Java Streams, introduced in Java 8, are a powerful and expressive tool for processing sequences of elements, unlike collections, which store and group data, streams are designed to process data declaratively, providing a ...57 readsJava
tkssharmaarticles.tkssharma.com·May 4, 2024Understand Node JS Buffer for API development5 common use cases of buffers in Node.js. Use Case 1 — Binary Data Handling Buffers are essential for handling binary data in Node.js, which is crucial when working with files, network communication, or raw bytes in streams. Binary data is represent...Node.js
Erick WendelforErick Wendel Trainingblog.erickwendel.com.br·Feb 6, 2024Reimagining RxJS using Web StreamsIntro RxJS but Web Streams? What? Yep! In this blog post, you will implement RxJS operators from scratch using vanilla JS and Web Streams. You're gonna implement a project that lets you keep track of how you move your mouse while holding the mouse cl...23 likes·3.5K readswebstreams
Lee Carverleeca.hashnode.dev·Feb 3, 2024Right Sizing Collected StreamsJava’s streaming APIs have a lot of advantages when processing Collections. Their semantics include several good safety guarantees, and the stream operators can be easy to use and compose. The ease of use comes with a bit of cost in the final “termin...Java