Skip to content

Instantly share code, notes, and snippets.

@jimbrig
Created June 11, 2025 01:18
Show Gist options
  • Save jimbrig/db93c4310be6d4bfb29794a4b8ff7460 to your computer and use it in GitHub Desktop.
Save jimbrig/db93c4310be6d4bfb29794a4b8ff7460 to your computer and use it in GitHub Desktop.
R Banner Generator
ascii_banner <- function(text, font = "slant") {
if (Sys.which("figlet") == "") stop("figlet is not installed.")
system(sprintf("figlet -f %s \"%s\"", font, text), intern = TRUE) |> cat(sep = "\n")
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment