Skip to content

Instantly share code, notes, and snippets.

@CashWilliams
Created August 8, 2012 20:19
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save CashWilliams/3298258 to your computer and use it in GitHub Desktop.
Save CashWilliams/3298258 to your computer and use it in GitHub Desktop.
Drupal cowsay
$the_cow = <<"EOC";
$thoughts ..Z..
$thoughts .7,#8
$thoughts ...Z.=###..
..=.=Z######Oo..
..N. .~+###########~.
..8. ..~7##############8.
..?.. .~~##################D.
... ..+=#Z####################~.
? ....~=#########################8.
.D=.:~~?###########################OD.
8#:=###############################OO8.
.###################################OOO,.
.#################################OOOOOO,
################################OOOOOOOOO
#############+......##########OOOOOOOOZO8
###########.. ..=#####ZOOOO... ..OI
##########. ..#OOOZO.. O.
8########. ...... Z.
.########. .=O8. ..,
.#######. #ZZOOOOZ.. .D.
.+#######. .ZOO8....OOOI. .8.
.OOOOOOOOZ.. OZZOOO.:OOO8.OOOO,:O.
..ZOOOOOOOOOOOOOOOOOOOOOOOOOOOOOD.
...OOOOOOOOOOOZ.OOOOOOOOOZ.ZOD..
...OOOOOOOOOZ:.........ZZD..
...OOOOOOOOOOOOOOOOD....
.......:7OOO#I......
EOC
@ThatGuyCND
Copy link

var defaultGreeting =            '\n                    dN                     ' +
                                 '\n                   N-ym                    ' +
                                 '\n                 Nh-.yyhdN                 ' +
                                 '\n              mh+.`:syyyyyhdmNN            ' +
                                 '\n          Ndo-`  `:oyyyyyyyyyyyhmN         ' +
                                 '\n        mo.    .:+yyyyyyyyyyyyyyyydN       ' +
                                 '\n      m+`  ``-/oyyyyyyyyyyyyyyyyyyyydN     ' +
                                 '\n     d:`.-:+osyyyyyyyyyyyyyyyyyyyyyyyhm    ' +
                                 '\n    ds+ossyyyyyyyyyyyyyyyyyyyyyyyyyyyhhm   ' +
                                 '\n   myyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyhhhhm  ' +
                                 '\n  NhyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyhhhhhdN ' +
                                 '\n  myyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyhhhhhhhm ' +
                                 '\n  dyyyyyyyyyyyyso+++osyyyyyyyyyyhhhhyyhhhm ' +
                                 '\n  myyyyyyyyys:.`     `./oyyyyhhhhs+-``./hm ' +
                                 '\n  Nyyyyyyyy+`            `:oyys/.`      yN ' +
                                 '\n   myyyyyyy`               .::.        `d  ' +
                                 '\n    dyyyyyy.           `-+yhhhyo-      o   ' +
                                 '\n     mhyyyys:.     `-/oyy/::::+hho-  .s    ' +
                                 '\n      Ndhhhhhhysssyhhhhh+shhhh+hhhhyhm     ' +
                                 '\n        Nmhhhhhhhhhh/+yhhhhhhyo/hhdN       ' +
                                 '\n           Nmdhhhhhhs+::-:::/+sdm          ' +
                                 '\n               NmmmdddddddmmN              ';

From a YeoMan generator I use to scaffold Drupaly things ... enjoy

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment