Wheel of Lunch

Wheel of Lunch

No longer do you need to go through the antagonizing ritual of deciding where to eat for lunch! Spin The-Wheel-of-Lunch to find out! Function Spi

Deprecating TLS 1.0 and TLS 1.1
Testing SSL and TLS with PowerShell
Remove unwanted Windows applications

No longer do you need to go through the antagonizing ritual of deciding where to eat for lunch! Spin The-Wheel-of-Lunch to find out!

Function Spin-WheelOfLunch {
    $FastFood = @(
                    "Burger King",
                    "McDonald's",
                    "Wendy's",
                    "Arby's",
                    "Sonic Drive-in",
                    "Five Guys",
                    "Chic-fil-A",
                    "Long John Silvers",
                    "Panda Express",
                    "Hardee's",
                    "Bojangle's",
                    "Subway",
                    "Charley's Grilled Subs",
                    "Popeyes",
                    "Dairy Queen",
                    "Krystal",
                    "Nu-Way Weiners",
                    "Taco Bell",
                    "Captain D's",
                    "Chipotle",
                    "Zaxby's",
                    "Quiznos",
                    "Checkers",
                    "The Cookout"
                    )
    $American = @(
                    "Garden Grille & Bar",
                    "Fatz",
                    "Cheddar's",
                    "Owen's Boarding House",
                    "Liz Southern Cooking",
                    "Cracker Barrel",
                    "Golden Corral",
                    "Outback Steakhouse",
                    "Mike's Hot Dogs & Hamburgers",
                    "Logan's Roadhouse",
                    "Ole Times Country Buffet"
                    )
    $Mexican = @(
                    "Casa Mexico II",
                    "El Jalisciense",
                    "El Bronco",
                    "Tacos & More Luncheria",
                    "El Cotija",
                    "John's Mexican",
                    "La Cabana Mexican",
                    "Margarita's Mexican Grill",
                    "Moe's Southwest Grill",
                    "Barberitos",
                    "Salsa's Mexican Grill",
                    "El Jimador Mexican",
                    "El Mariachi Mexican",
                    "Chipotle",
                    "Taco Bell",
                    "Marin's Mexican Food",
                    "Luis Mexican Food & Grill"
                    )
    $Chinese = @(
                    "China Wok",
                    "Happy China",
                    "Peking Garden",
                    "Top Wok",
                    "New China Buffet",
                    "China Buffet",
                    "Happy Wok",
                    "Hong Kong Express",
                    "Chen's Wok",
                    "Shanghai Chinese",
                    "Benson's Steak & Sushi",
                    "Stir King",
                    "Wok N Roll",
                    "Panda Express",
                    "Hibachi Buffet"
                    )
    $Japanese = @(
                    "Genji Japanese Steaks & Seafood",
                    "Dai Ihci Japenese Steakhouse",
                    "Ichiban Japanese Steakhouse & Sushi",
                    "Zen Steakhouse & Sushi Bar",
                    "Hibachi Express",
                    "Benson's Steak & Sushi"
                    )
    $Korean = @(
                    "Seoul House Korean",
                    "Choi's Oriental Market"
                    )
    $Indian = @(
                    "Metropolis Grill",
                    "Curry Mantra"
                    )
    $Italian = @(
                    "Olive Garden",
                    "Marco's Pizza",
                    "Mellow Mushroom",
                    "Atlanta Bread Company",
                    "Marco Ristorante",
                    "Mama Mia"
                    )
    $Greek = @(
                    "Greek Villave",
                    "Metropolis Grill",
                    "Greek Corner Pizza"
                    )
    $Pizza = @(
                    "My Father's Place",
                    "Allen's Stone-Baked Pizzeria",
                    "Pizza Hut",
                    "Stevi B's Pizza",
                    "Marco's Pizza",
                    "Domino's Pizza",
                    "Johnny's New York Style Pizza",
                    "Papa John's Pizza",
                    "Uncle Maddio's Pizza Joint",
                    "Mellow Mushroom",
                    "Little Caesars Pizza",
                    "Mama Mia",
                    "Pig on a Pizza",
                    "Atlanta Bread Company"
                    )
    $Burgers = @(
                    "Burger King",
                    "McDonalds",
                    "Wendy's",
                    "Checkers",
                    "Big Picture Burgers",
                    "Krystal",
                    "Five Guys"
                    "Sonic Drive-in",
                    "Red Robin",
                    "Ann's Snack Bar",
                    "Mike's Hot Dogs & Hamburgers",
                    "McCall's Taste to Rememebr"
                    )
    $Country = @(
                    "Cracker Barrel",
                    "Ole Times Country Buffet",
                    "Owens Boarding House",
                    "3 J's Soulfood"
                    )
    $Buffet = @(
                    "China Buffet",
                    "Ole Times Country Buffet",
                    "Golden Corral",
                    "New China Buffet",
                    "Hibachi Buffet"
                    )
    $Vietnamese = @(
                    "Monsoon Thai & Vietnamese",
                    "Thai Pepper"
                    )
    $BBQ = @(
                    "Martin's Bar-B-Que",
                    "Sonny's BBQ"
                    )
    $Frozen = @(
                    "Dairy Queen",
                    "Menchie's",
                    "Let It Snow",
                    "Cold Stone"
                    )
    $All = @(
                $FastFood,
                $American,
                $Japanese,
                $Chinese,
                $Mexican,
                $Pizza,
                $Burgers,
                $Frozen,
                $Vietnamese,
                $BBQ,
                $Buffet,
                $Country,
                $Greek,
                $Korean,
                $Italian,
                $Indian
                )
    $Captions = @(
                "Fast Food",
                "American",
                "Japanese",
                "Chinese",
                "Mexican",
                "Pizza",
                "Burgers",
                "Frozen",
                "Vietnamese",
                "BBQ",
                "Buffet",
                "Country",
                "Greek",
                "Korean",
                "Italian",
                "Indian"
                )

    # The magic happens...

    $SelectionNum = Get-Random -Minimum 0 -Maximum $($All.Length-1)
    "Type: "+$Captions[$SelectionNum]
    "Restaurant: "+$All[$SelectionNum][$(Get-Random -Minimum 0 -Maximum $($All[$SelectionNum].Length-1))]
    }

Spin-WheelOfLunch

COMMENTS

WORDPRESS: 0