Man pages are meant to help understand how certain Unix/Linux/BSD/macOS console commands work, but it is not clear who they are trying to help, certainly not humans, right? Joking aside, it can be hard to understand a man page and if you want to do something really simple, having to read through a man page can waste a lot of time.
The [tldr](http://tldr.sh/) utility aims to solve that, it is a community driven effort to create useful examples for command line applications. The output of `tldr tar` for example shows you very succinctly how to compress and decompress tarballs:

Or maybe you are a fan of p7zip:

There are even examples for everyone's favorite text editor Vim:

Sorry, I meant Emacs:

And even programming languages like Python:

or Go:

The tldr tool has been implemented in lots of different languages, but the most mature implementation is the node.js one. If you have node installed, installing tldr is as simple as: `npm install -g tldr`
You can also try the tool out on the [web](https://tldr.ostera.io/).

Credit where credit is due, I found this handy tool on [r/programming](https://www.reddit.com/r/programming/comments/7f11wn/tldr_pages_simplified_and_communitydriven_man/).