Toucanvatoucanva.hashnode.dev·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 ...Discusstranquil
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...Discuss·140 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...Discuss·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...DiscussJava
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 ...Discuss·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...DiscussNode.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...Discuss·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...DiscussJava
Henry Aduhenryadu.hashnode.dev·Jan 5, 2024Effortless Stream Management: Cancelling and Restarting Streams in Flutter BlocA simple guide to efficiently canceling and restarting streams for seamless app development Introduction In this article, we'll explore the lesser-known aspects of canceling and restarting streams in Flutter Bloc. This discussion builds on a previous...Discuss·1.2K readsBlocobservables
Raineraineyang.hashnode.dev·Jan 2, 2024Rust Learning Note: async/await and StreamThis article is a summary of Chapter 4.11.4 of Rust Course (course.rs/) The Lifecycle of async If an async function has reference type parameters, the parameter it refers to must life longer than the Future the function returns. For instance, the cod...DiscussRust