You are here |
lucasfcosta.com | ||
| | | |
blog.eldruin.com
|
|
| | | | Example of inter-process comunication in C++ using STL-like streams. | |
| | | |
kdheepak.com
|
|
| | | | ||
| | | |
rickardlindberg.me
|
|
| | | | 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. | |
| | | |
www.integralist.co.uk
|
|
| | Introduction I'm an engineer with a new laptop, which requires setting up with various development tools and configuration. This post is my attempt to capture and document my process for getting a new dev environment set-up. I used to try and automate a lot of this with bash scripts, but realised over time that things go out of date quite quickly (e.g. OS configurations can change substantially, as well as my preferred ways of working). |