Explore >> Select a destination


You are here

jameshfisher.com
| | blog.eldruin.com
47.6 parsecs away

Travel
| | Example of inter-process comunication in C++ using STL-like streams.
| | rickardlindberg.me
100.0 parsecs away

Travel
| | I thought I knew how Bash redirects worked. If I wanted to redirect the output of a command to a file, I'd type this: program > /tmp/log.txt If I wanted to pipe both stdout and stderr to a text editor for further processing, I'd type this: program 2>&1 | vim - I knew that 2>&1 meant redirect stderr to stdout making it appear on stdout as well. I knew certain patterns for certain situations.
| | thorstenball.com
100.0 parsecs away

Travel
| | [AI summary] The article explains how Unicorn, a web server, leverages Unix system calls and concepts like fork, pipe, and signal handling to efficiently manage web requests. It highlights features such as hot reloading, zero downtime deployments, and worker process scaling using signals. The author emphasizes that these capabilities are not magic but a result of understanding and utilizing Unix's low-level mechanisms. The article also discusses the importance of knowing system-level details for debugging, architectural decisions, and deeper understanding of how software operates on the underlying system.
| | initialcommit.com
124.2 parsecs away

Travel
| In this article, we will try to shed some light on the question How Long Does it Take to Learn Coding?