Docker run/exec and carriage return

Recently, I was writing a script whose function was to retrieve and parse a list of processes that were running in a docker container. The script was based on another script that did the same by ssh-ing to a remote server. However, my grep/sed/awk command set did not work despite... [Read More]
Tags: #docker

Google Docs and C++ 11

While writing about smart pointers in C++, I noticed a funny thing: Google Docs knows about C++ syntax but not C++ 11! It showed the following suggestion: [Read More]
Tags: #cpp #fun

How to enable in-band FEC for Opus codec

As a reader may know UDP network protocol does not support either message retransmission or acknowledgment. It means that all these problems are supposed to be handled at the application level. In the audio/video transmission domain, the problem is usually solved with the forward error correction technique. The idea is... [Read More]