John Ryanarticles.analytics.today·Dec 10, 2024Snowflake Streams and Tasks: Best PracticesAs a Data Engineer, it’s vital to understand the techniques available for Change Data Capture (CDC). Using these methods, you can quickly identify whether incoming data has changed and whether you need to process the new/modified data. Snowflake Stre...393 readssnowflake
Yong Sheanyshean.com·Dec 10, 2024A quick look at async Dart featuresRecently I gave a talk at Google DevFest Kuala Lumpur 2024, about asynchronous Dart features. Here are the slides:50 readsFlutter
Jyotiprakash Mishrablog.jyotiprakash.org·Nov 29, 2024Collections in JavaIn the world of programming, data is king. Everything we design, every application we build, revolves around efficiently managing and processing data. From a simple list of tasks in a to-do app to managing millions of customer records in an enterpris...90 readsJava
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...49 readsmethod 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) ...Streams
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...programming
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...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...11 likes·91 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...73 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...Flutter