Mustufa khancoder-class.hashnode.dev·Feb 1, 2025Parallel Streams in JavaMaximizing Performance with Parallel Streams in Java In the world of software development, performance optimization is a constant focus. One of the most powerful features introduced in Java 8 is streams, a part of the java.util.stream package. Strea...Java
Affan Shaikhsurabaffanshaikhsurab.hashnode.dev·Jan 19, 2025Flowing Like Water: Understanding Futures and Streams in DartWhat Are Futures? In Dart, futures are very simple. As the word itself suggests, they happen in the future. An Analogy to Understand Futures Let’s consider this analogy:You have a friend, and you’re working on a project. You tell your friend, "I want...Eploring Flutter: How Apps Come to Lifeflutter streams
João Esperancinhajesperancinha.hashnode.dev·Jan 6, 2025The streaming bridges — A Kafka, RabbitMQ, MQTT and CoAP example1. Introduction Nowadays, we can rely on different streaming systems to transmit and collect our data. Some of the systems that we use, require extremely high availability. On the other hand, for other systems, high availability can be a trade-off be...mqtt
Mihai Popescujavainterviewprep.hashnode.dev·Dec 28, 2024Java StreamsJava Streams are part of the java.util.stream package introduced in Java 8. They provide a way to process sequences of data in a functional programming style. Streams can be used to perform operations like filtering, mapping, and reducing on collecti...Java
Sushil Kumarlet-us-node.hashnode.dev·Dec 24, 2024Node.js FS Module : Files, Directories, StreamsHey everyone, In this article, we’re going to dive deep into the fs module in Node.js and explore its capabilities in detail. The fs module, short for File System, is a built-in module in Node.js that provides a range of functionalities to work with ...10 likesNode.js
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). These methods allow you to quickly identify whether incoming data has changed and whether you need to process the new/modified data. Snowflake Stream...695 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:61 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...105 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...59 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