Jyotiprakash Mishrablog.jyotiprakash.org·Nov 19, 2024Introduction to Functional Programming in JavaFunctional Programming and Its Growing Popularity Over the years, software development has continuously evolved, with each paradigm addressing specific challenges. Functional programming, an approach that treats computation as the evaluation of mathe...Discussmethod reference
Paras kaushikparaskaushik.hashnode.dev·Sep 13, 2024Stream API in JAVAIntroduction to Streams: A Stream in Java is a sequence of elements supporting sequential and parallel aggregate operations. It's not a data structure but a view of the data. Useful while dealing with bulk processing (can do parallel processing) ...DiscussStreams
Muhire Josuéjosuedev.hashnode.dev·Sep 1, 2024Unleashing the Power of Streams in Java: Key Concepts and Code ExamplesIntroduction The introduction of the Stream API in Java 8 revolutionized the way developers work with collections. Streams provide a powerful, expressive, and declarative way to process sequences of elements, enabling operations like filtering, mappi...Discussprogramming
Anuj Kumar Upadhyayanuj1.hashnode.dev·Aug 13, 2024Working with Streams in Node.jsWelcome to Day 18 of our Node.js Zero to 1 Series! 👱♂️👱♂️ Streams are a powerful feature in Node.js that enable handling of data that is read from or written to a source in a continuous, sequential manner. Streams are especially useful for workin...Discuss·10 likesNodejsNode.js
Kalpesh Malithebackendengineer.hashnode.dev·Aug 10, 2024Mastering Node.js Streams: From Novice to NinjaHey there, Node.js enthusiasts! Ready to dive deep into the world of streams? Buckle up, because we're about to embark on a journey that'll transform you from a stream novice to a data-flow master. What You'll Learn Streams 101: The basics and why t...Discuss·11 likes·90 readsindeep
Vivek Takblog.vivek.codes·Jul 30, 2024Mastering Java Streams for Efficient Data ProcessingHey there, Java enthusiast! Ready to dive into the magical world of Java Streams? If you’ve ever felt overwhelmed by looping through collections or manipulating data, you’re in for a treat. Java Streams will change how you think about data processing...Discuss·71 readsStreams
Michael Pipermichaelpiper.hashnode.dev·Jul 24, 2024What Is Flutter Stream Use ForStreams in Flutter (and Dart) are a way to handle asynchronous data. They provide a continuous flow of data over time, which can be listened to and processed as it arrives. This is particularly useful for handling data from sources like network reque...DiscussFlutter
Matteo CollinaforPlatformatic Blogblog.platformatic.dev·Jul 11, 2024A guide to reading and writing Node.js streamsWorking with large datasets in Node.js applications can be a double-edged sword. The ability to handle massive amounts of data is extremely handy, but can also lead to performance bottlenecks and memory exhaustion. Traditionally, developers tackled t...Priyankar Pal and 7 others are discussing this8 people are discussing thisDiscuss·43 likes·14.2K readsNode.jsThanks, This is really helpful 3
Chibuike Ukomalachi04.hashnode.dev·Jun 28, 2024Streams saves the dayKeystrokes in progress...It all started when I was trying to create a small script, that can be used to encrypt a file and also decrypt the file as well. Not only encryption but the encryption should be efficient when working with large files. Then I...DiscussGeneral Programming
Samadrit Sarkarsamadritsarkar2.hashnode.dev·Jun 23, 2024FeaturedSolving memory leak in NodeJs server while handling StreamsHey everyone, recently I solved one such problem that was bugging me for quite sometime and I was not paying attention to it and running after quick fixes. Background story: I have a NodeJs backend server running for my app Downify thats streams the ...AbulAsar S. and 9 others are discussing this10 people are discussing thisDiscuss·64 likes·924 readsJavaScript