I hereby claim:
- I am peterolayinka on github.
- I am peterolayinka (https://keybase.io/peterolayinka) on keybase.
- I have a public key ASALlvuSa3nr1qluFGRJ74RrrjkeHlCRNJN9jJJSZX-RJAo
To claim this, I am signing this object:
| // Helpers. | |
| import { convertToText } from './'; | |
| /* | |
| You would call this when receiving a plain text | |
| value back from an API, and before inserting the | |
| text into the `contenteditable` area on a page. | |
| */ | |
| const convertToMarkup = (str = '') => { | |
| return convertToText(str).replace(/\n/g, '<br>'); |
I hereby claim:
To claim this, I am signing this object:
Once in a while, you may need to cleanup resources (containers, volumes, images, networks) ...
// see: https://github.com/chadoe/docker-cleanup-volumes
$ docker volume rm $(docker volume ls -qf dangling=true)
$ docker volume ls -qf dangling=true | xargs -r docker volume rm