Skip to content

Instantly share code, notes, and snippets.

@foobarhl
Created April 10, 2025 04:43
Show Gist options
  • Select an option

  • Save foobarhl/704d6e9352300a21b8b79c2d3d91161d to your computer and use it in GitHub Desktop.

Select an option

Save foobarhl/704d6e9352300a21b8b79c2d3d91161d to your computer and use it in GitHub Desktop.

Revisions

  1. foobarhl created this gist Apr 10, 2025.
    170 changes: 170 additions & 0 deletions gistfile1.txt
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,170 @@
    <?php
    // shakesphere.php - taunt script from [redacted]

    $c1=array(
    "artless",
    "bawdy",
    "beslubbering",
    "bootless",
    "churlish",
    "cockered",
    "clouted",
    "craven",
    "currish",
    "danikish",
    "disassembling",
    "droning",
    "errant",
    "fawning",
    "froward",
    "errant",
    "fawning",
    "fobbing",
    "froward",
    "frothy",
    "gleeking",
    "goatish",
    "gorbellied",
    "impertinent",
    "jarring",
    "joggerheaded",
    "lumpish",
    "mammering",
    "mangled",
    "mewing",
    "paunchy",
    "pribbling",
    "puking",
    "puny",
    "qualling",
    "rank",
    "reeky",
    "roguish",
    "ruttish",
    "saucy",
    "spleeny",
    "spongy",
    "surly",
    "tottering",
    "unmuzzled",
    "vain",
    "venomed",
    "villainous",
    "warped",
    "wayard",
    "weedy",
    "yeasty"

    );

    $c2=array(
    "base-court",
    "bat-forling",
    "beef-witted",
    "battle-headed",
    "boil-brained",
    "clapper-clawed",
    "clay-brained",
    "common-kissing",
    "crook-pated",
    "dismal-dreaming",
    "dizzy-eyed",
    "doghearted",
    "dread-bolted",
    "earth-vexing",
    "elf-skinned",
    "fat-kidneyed",
    "fen-sucked",
    "flap-mothed",
    "fly-bitten",
    "folly-fallen",
    "fool-born",
    "fil-gorged",
    "guts-griping",
    "half-faced",
    "hasty-witted",
    "hedge-born",
    "hell-hated",
    "idle-headed",
    "ill-breeding",
    "ill-nurtured",
    "knotty-pated",
    "milk-livered",
    "motley-minded",
    "onion-eyed",
    "plume-plucked",
    "pottle-deep",
    "pox-marked",
    "reeling-ripe",
    "rough-hewn",
    "rude-growing",
    "rump-fed",
    "shard-borne",
    "sheep-biting",
    "spur-galled",
    "swag-bellied",
    "tardy-gaited",
    "tickle-brained",
    "toad-spotted",
    "unchin-snoted",
    "weather-bitten"

    );

    $c3=array(
    "apple-john",
    "baggage",
    "barnacle",
    "bladder",
    "boar-pig",
    "bugbear",
    "bum-bailey",
    "canket-blossom",
    "clack-dish",
    "clotpole",
    "coxcomb",
    "codpieve",
    "death-token",
    "dewberry",
    "flap-dragon",
    "flax-wench",
    "flirt-gill",
    "foot-licker",
    "futilarrian",
    "giglet",
    "gudgeon",
    "haggard",
    "harpy",
    "hedge-pig",
    "horn-beast",
    "hugger-mugger",
    "joithead",
    "lewduster",
    "lout",
    "maggot-pie",
    "malt-worm",
    "mammet",
    "measle",
    "minnow",
    "miscreant",
    "moldwarp",
    "mumble-news",
    "nut-hook",
    "pigeon-egg",
    "pignut",
    "puttock",
    "pumpion",
    "ratsbane",
    "scut",
    "skainsmate",
    "strumpot",
    "varlot",
    "vassal",
    "wheyface",
    "wagtail"


    );

    $phrase = $c1[rand(0,count($c1)-1)]." ".$c2[rand(0,count($c2)-1)]." ".$c3[rand(0,count($c3)-1)]."\n";
    echo $phrase;