Chandan kumardeveloperchandan.hashnode.dev·Dec 11, 2024Mastering Angular: Top 10 Topics for Building Scalable Web ApplicationsDiscover the essential Angular topics every developer must know, including components, modules, routing, forms, RxJS, and more. Learn with detailed explanations and diagrams to build scalable and dynamic web applications. 1. Angular Architecture Key ...Angular
Aman Kumaramankumar29.hashnode.dev·Oct 26, 2024Linux Internals - 2: How Inter-Process Communication (IPC) works in LinuxInter-process communication (IPC) in Linux is essential for processes to exchange data and synchronize their actions, enabling more complex and modular applications. Several IPC methods exist in Linux, including pipes, message queues, and shared memo...inter-process-communication
Derek Murawskyblog.murawsky.net·Aug 14, 2024EventBridge Pipes in PracticeAmazon released EventBridge Pipes in December of 2022. It is a fantastic tool that attempts to simplify gluing pieces of a cloud infrastructure together in a serverless way. Where you previously needed a glue lambda and queues, you may be able to use...11 likes·140 readsAWS
jean joel Nteppblog.nameksoft.xyz·Mar 22, 2024Angular Observables: building an account activation countdown timer.Introduction One of the approaches generally used to validate a user’s email address during signup is to send a n-digit code to this address. He is then asked to provide this code within a relatively short time in minutes. The problem we want to solv...10 likesAngular
Karlygash Yakiyayevakarlygash-yakiyayeva.dev·Feb 27, 2024Linux Data Streams OverviewLinux data streams are fundamental to how the operating system and its applications communicate and manage data. They are essentially channels through which data is transmitted. Linux automatically provides three standard streams for every process. E...36 readsLinuxLinux
Abdullah Bin Altafdevopswithabdullah.hashnode.dev·Feb 10, 2024Lecture # 22 - Redirection and PipesRedirection: Redirection is used to save the output of a command in a file instead of showing the output on the terminal. By default the output is shown on the terminal but when we use redirection, we can save the output of an executed command into a...Devops
Mladen Drmacsenselessevents.hashnode.dev·Jul 23, 2023Named pipes (FIFOs)In the previous article we learned how to connect 2 processes using a pipe. Although interesting, that technique is limited because a process has to fork another process in order to connect to it via pipe. If we want 2 unrelated processes to communic...48 readsInter-process communication in Unixunix
Mladen Drmacsenselessevents.hashnode.dev·Jul 22, 2023Pipes and file descriptorsPipes are a simple way to connect the output of one process to the input of the other one. You have probably used pipes at some point, for example when executing commands such as ls | grep foo. Here, the output of ls command is fed into grep command ...176 readsInter-process communication in Unixunix
Gekko Wrldgekkowrld.hashnode.dev·Apr 3, 2023How to use Pipes "|" in GNU/Linux (and programming)"Brief History of pipe in Unix The pipe was introduced around the year 1973. It was used to glue together small commands so as to produce an efficient command to do a task. Instead of creating a monolithic command that was only good in one task, you g...3 likes·114 readsgnu
AKhil kumar Singhakhilstyles.hashnode.dev·Feb 26, 2023Pure and Impure Pipe in Angular with an Example.Pipes are simple functions to use in template expressions to accept an input value and return a transformed value A pure pipe is a pipe that is stateless and does not depend on any external factors. This means that if we pass the same input to a pu...10 likes·65 readsAngular