Dotfiles, utilities, and other apparatus.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
458 B

  1. #!/usr/bin/env perl
  2. # retrieve sort of a bullety / wingdingy kind of character
  3. # three things code can be:
  4. # a kind of prose
  5. # a kind of poetry
  6. # a kind of mathematics
  7. # i have no idea what is going on here
  8. use utf8;
  9. use open ':std', ':encoding(UTF-8)';
  10. use strict;
  11. use warnings;
  12. use 5.12.0;
  13. my @bullets = qw(
  14. ☆ ✢ ✣ ✤ ✥ ✦ ✧ ✩ ✪ ✴ ✵ ✶ ✮ ✯ ✺ ✾ ❦ ☙ ❂ ❃ ❉ ✿ ❀ ❁ ☼
  15. );
  16. print $bullets[rand @bullets];