From C++ Concurrency in Action, Second Edition by Anthony Williams
This article talks about how you can improve the responsiveness by separating concerns with concurrency.
From Modern Fortran by Milan Curcic
Stock price analysis and prediction has been an increasingly popular topic since the early days of high-level programming, and Fortran has been used in the bowels of many financial trading and banking systems, mainly thanks to its robustness, reliability, and efficiency. In this article, we’ll work with a dataset that is freely available, small enough to be easily downloaded, and yet large enough to demonstrate the power of Fortran arrays.
From Elixir in Action, Second Edition by Saša Jurić
This article gives a short overview of Erlang and then delves into the benefits of Elixir.
From Phoenix in Action by Geoffrey Lessel
This article, excerpted from Phoenix in Action, introduces you to the power of web development using Elixir and the Phoenix framework.
From Concurrency in .NET by Riccardo Terrell
In this article, you’re going to implement one of the most common coordination techniques—the pipeline pattern. In general, a pipeline is composed of a series of computational steps, organized as a chain of stages, where each stage depends on the output of its predecessor and usually performs a transformation on the input data.
From C++ Concurrency in Action, Second Edition by Anthony Williams
This article explores how to synchronize concurrent operations in the C++ programming language and how this relates to threads and their respective function.