r package to deliver praise to the user, made as an introduction to building r packages
install using devtools
devtools::install_github("perikarya/praiseme")
praiseme(praisefor): print a short message of praise, and specify what to praise for. will return a generic message if praisefor is unspecified.
praiseme_graphics(praisefor, colour1, colour2): show the user a message of praise. change the text and background colours using colour1 and colour2, or leave blank for default to black and white.
default
```library(praiseme) praiseme()
tell the user what they're great at
```library(praiseme)
praiseme("art")
#> "You're great at art!"
show the user a message of praise
library(praiseme)
praiseme_graphics("art", "darkmagenta", "thistle3")
a list of colour names supported in r can be found here to use with this package
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.