git branch -r --sort=-committerdate
git branch -r --sort=-committerdate > branches.txt
This is a fork of original gist https://gist.github.com/nrollr/3f57fc15ded7dddddcc4e82fe137b58e, with slight changes on pointing to 5.7 version branch, instead of 8 (latest default of MySQL in Hombrew).
This procedure explains how to install MySQL using Homebrew on macOS (Sierra 10.12 and up)
$ /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"lsof -i tcp:5000
git config --local commit.gpgsign true
git config --local user.email "lo.dennis@gmail.com"
git config --global user.signingkey ZZZZZZZZZ
Use command: gpg --list-secret-keys --keyid-format=long to list the long form of the GPG keys for which you have both a public and private key.
Use command gpg --delete-secret-keys zzzz to delete the GGP key id zzzz
According to Streams API, readable streams effectively operate in one of two modes: flowing and paused. A Readable stream can be in object mode or not, regardless of whether it is in flowing mode or paused mode.
In flowing mode, data is read from the underlying system automatically and provided to an application as quickly as possible using events via the EventEmitter interface.
In paused mode, the stream.read() method must be called explicitly to read chunks of data from the stream.
In a flowing mode, to read data from a stream, it’s possible to listen to data event and attach a callback. When a chunk of data is available, the readable stream emits a data event and your callback executes. Take a look at the following snippet: