P PRAKASHcli-git.hashnode.dev·Apr 30, 2024Command Line Interface (CLI)Why CLI ? Before knowing what is CLI, one should know why CLI is used and it's significance. To get our work done we need to communicate with system, for example to create ten files in a folder we right click and create a new folder which is one way ...Discuss#head tail
Anthony Wilsonanthonywilsong.hashnode.dev·Apr 10, 2024A Step-by-Step Guide to Piping Network CalculationUnderstanding Piping Networks Piping networks play a crucial role in various industries, facilitating the movement of process and utility fluids to ensure smooth operations. Piping networks are an integral part of oil & gas projects, forming a signif...DiscussPipeline
Dhairya Vermarajurastogi.hashnode.dev·Mar 26, 2024Streaming with named pipe in linuxWhile working with ffmpeg recently, I needed a solution to stream multiple videos to an RTMP URL without repeatedly starting the command for each video. That's when I discovered the concept of named pipes in Linux, which provided a seamless way to co...Discuss·157 readsLinux
Jindřich Ivánekjindraivanek.hashnode.dev·Jan 25, 2024F# tips weekly #3: piped lambda functionUsage of lambda functions as parameters for another function is well known. Less commonly used is the application of lambda functions in other contexts. We can leverage the fact that a lambda function is a value and use it wherever we can use a norma...Discuss·3 likes·521 readsF# tips weekly#fsharp
Adil Shaikhadilshaikh165.hashnode.dev·Dec 21, 2023Internals of PIPE command in Unix based SystemPipes allow transfer a data between processes in the first-in-first-out manner (FIFO), and they also allow synchronization of process execution. Their implementation allows processes to communicate even though they do not know what processes are on t...Discuss·502 readsLinux
Bartosz Szłapakblog.procode.pl·Sep 26, 2023RxJS log value pipeSometimes, instead of using debugger keyword, you'll just want to display the values in the console. When using RxJS you'll probably use quick&dirty tap(value => console.log(value)). There's nothing wrong with it, but it can be done a little nicer an...DiscussRxJS
Emmanuella Adekaellaadeka.hashnode.dev·Aug 14, 2023Unleashing the Power of the Pipe (|) OperatorIn the realm of programming and command-line interfaces, the pipe (|) operator might appear deceptively simple. However, beneath its unassuming appearance lies a powerful tool that can transform the way you process data, streamline workflows, and enh...Discuss·18 likespipe
Bartosz Szłapakblog.procode.pl·Apr 9, 2023Angular pipe testingIn this article, I'll show how to test Angular pipes. It can be done in two different ways: directly create pipe and test output use the pipe in the component and test HTML In the example there will be created two simple pipes: trim - for trimmi...Discuss·48 readsTesting Angular applicationsAngular
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·115 readsNode.js
Jean Pierre Erasmustelliks.hashnode.dev·Sep 19, 2017Roll your own async compose & pipe functionsThe functional programming inspired functions compose and pipe are awesome, but they only work with synchronous functions. I will show you how to write your own functions that will work with both synchronous and asynchronous functions combined - if t...Discuss·37 readscompose