Daniel Lopesdanieljalopes.hashnode.dev·Sep 19, 2023Spring Cloud Data FlowAbstract This is the 1st part of a series dedicated to Spring Cloud Data Flow (SCDF). Here it will be explained how to create a simple SCDF Stream application just to show how to interact with SCDF. The Stream will perform a simple operation, receive...Discusskafka
Delwar Ahmeddelwar.hashnode.dev·Jun 25, 2023Serve or Stream static files?Whether to serve or stream static files depends on the specific requirements and characteristics of your application. Let's explore both approaches: 1. Serving Static Files: Serving static files involves sending the entire file in the response when ...DiscussBackend Development - Learning Checkliststream
Bikash Mainalibikash8848.hashnode.dev·Jun 24, 2023Functional Interface Java8Reverse String using functional interface in java public class ReverseStringWithLamda { @FunctionalInterface public interface Reverser<T> { T reverse(T t); } public static void main(String[] args) { Reverser<String> r...Discussjava8
Asharam Seerviseervi.hashnode.dev·Jun 7, 2023Unleashing the Power of RTMP: A Guide to Free RTMP Servers for Seamless Live StreamingIntroduction The rise of video consumption and the popularity of live-streaming platforms have created a growing demand for efficient and cost-effective streaming solutions. Real-Time Messaging Protocol (RTMP) has emerged as a key player in powering ...Discussvideo streaming
Swapnil GuptaforJava Learn |Java | Spring Bootjavalearn.hashnode.dev·Jun 2, 2023Bonus: Java Stream 8A stream is an Object, type of data Stream and file streams are different You can use Stream once, cannot be using again after consumption import java.util.Arrays ; import java.util.List; import java.util.function.Consumer; import java.util.stre...Discuss·35 readsBackend Development with Spring BootJava
Osikhena OshomahforDeveloper DAO Blog | Web3 Tutorialsblog.developerdao.com·Apr 6, 2023Getting Started with StreamrStreamr is a decentralized, real-time data network that operates on a peer-to-peer (P2P) computer network where each node connects with other nodes without a central server. Streamr uses a publish-subscribe system where one peer writes data to the ne...Discuss·1 like·343 readsstream
Kim GeonHyeongunn96.hashnode.dev·Jan 8, 2023[Java] Stream APIStream은 JAVA8에서 추가된 기능으로 함수형으로 데이터를 처리한다. JAVA8 이전에는 컬렉션이나 배열을 다루려면 for또는 foreach문을 돌면서 요소를 하나씩 꺼내서 다뤘다. 하지만 복잡한 로직을 다룰 때에는 가독성이 떨어졌다. 배열 또는 컬렉션에 함수 여러개를 조합해서 원하는 결과를 필터링하고 가공된 결과를 얻을 수 있다. 또한 병렬처리(multi-threading)가 가능하다. 하나의 작업을 둘 이상의 작업으로 잘게 ...DiscussJava&SpringJava
Ganesh Sinspire99.hashnode.dev·Dec 30, 2022Java 8 - my learnings in progressAmazing possibilities with Streams Though I have been coding for a while with Java, I was recently wowed by the following possibility - to think of a file as a stream of lines and operate on each line and once I executed the code with a file size of ...Discuss·35 readsJava
Markos Korvesiscodingmantis.hashnode.dev·Sep 12, 2022Java Stream & Why To Use ItWelcome to the series "Java Coding"; brought to you by "Coding Mantis"! We're familiar with indexed for-loops, they were helpful when we needed to iterate over a collection so as to perform some actions per collection element. In 2004, with Java 1.5,...Discuss·3 likes·54 readsJava CodingJava
Bilal Mubarak Idriscodewithbilal.hashnode.dev·Sep 11, 2022Easiest way to master Stream, Buffer, and Pipe in NodejsHello everyone, in this tutorial, I will explain how Stream, Buffer, and Pipe work in NodeJs by providing an example of each of them. So without further ado let's get started. Introduction before we start defining them word by word let me give you a ...Discuss·97 readsNode.js