From e26c812fc86fcbe47ee85b622e199e822525e878 Mon Sep 17 00:00:00 2001 From: Vault108 Date: Mon, 6 Mar 2023 02:22:55 -0500 Subject: [PATCH] update HTTP to HTTPS --- CONTRIBUTING.md | 6 +- LICENSE | 2 +- README.md | 6 +- cloudbot/util/http.py | 2 +- cloudbot/util/tokenbucket.py | 2 +- cloudbot/util/web.py | 4 +- data/drinks.json | 21582 ++++++++++++++-------------- data/reaction_macros.json | 4 +- docs/README.md | 10 +- docs/installing/win.md | 4 +- docs/user/googledevconsole_api.md | 2 +- docs/user/wordnik_api.md | 2 +- plugins/animal_gifs.py | 6 +- plugins/brainfuck.py | 2 +- plugins/chatbot.py | 2 +- plugins/duckhunt.py | 4 +- plugins/etymology.py | 2 +- plugins/fact.py | 2 +- plugins/feeds.py | 8 +- plugins/giphy.py | 2 +- plugins/google_cse.py | 2 +- plugins/googleurlparse.py | 2 +- plugins/horoscope.py | 2 +- plugins/imgur.py | 2 +- plugins/issafe.py | 2 +- plugins/jokes.py | 2 +- plugins/lastfm.py | 2 +- plugins/lmgtfy.py | 2 +- plugins/lyricsnmusic.py | 2 +- plugins/minecraft_wiki.py | 4 +- plugins/myfitnesspal.py | 2 +- plugins/mylife.py | 2 +- plugins/octopart.py | 2 +- plugins/pagecheck.py | 6 +- plugins/pastebins/sprunge.py | 2 +- plugins/reddit_info.py | 4 +- plugins/speedtest.py | 2 +- plugins/steam_store.py | 6 +- plugins/steam_user.py | 2 +- plugins/suggest.py | 2 +- plugins/urban.py | 4 +- plugins/utility.py | 2 +- plugins/validate.py | 2 +- plugins/vimeo.py | 2 +- plugins/wikipedia.py | 2 +- plugins/wolframalpha.py | 4 +- plugins/wordnik.py | 2 +- plugins/wyr.py | 2 +- plugins/xkcd.py | 4 +- plugins/youtube.py | 2 +- tests/data/dogpile-images.html | 74 +- 51 files changed, 10904 insertions(+), 10902 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 8a695efb6..c1242f17c 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -3,7 +3,7 @@ The following guidelines for contribution should be followed if you want to submit a pull request. ## Basic Overview -1. Read [Github documentation](http://help.github.com/) and [Pull Request documentation](http://help.github.com/send-pull-requests/) +1. Read [Github documentation](https://help.github.com/) and [Pull Request documentation](https://help.github.com/send-pull-requests/) 2. Fork the repository 3. Create a new branch with a descriptive name for your feature 4. Edit the files, add new files @@ -26,8 +26,8 @@ This project uses [pre-commit] 4. Join the [IRC channel] if you have any questions or concerns, or if you just want to talk with other devs # Additional Resources -* [General GitHub documentation](http://help.github.com/) -* [GitHub pull request documentation](http://help.github.com/send-pull-requests/) +* [General GitHub documentation](https://help.github.com/) +* [GitHub pull request documentation](https://help.github.com/send-pull-requests/) * [Read the Issue Guidelines by @necolas](https://github.com/necolas/issue-guidelines/blob/master/CONTRIBUTING.md) for more details * [This CONTRIBUTING.md from here](https://github.com/anselmh/CONTRIBUTING.md) diff --git a/LICENSE b/LICENSE index 2f349f867..f73fa52bc 100644 --- a/LICENSE +++ b/LICENSE @@ -2,7 +2,7 @@ GNU GENERAL PUBLIC LICENSE Version 3, 29 June 2007 -Copyright © 2007 Free Software Foundation, Inc. +Copyright © 2007 Free Software Foundation, Inc. Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. diff --git a/README.md b/README.md index 8150d0f47..69d1865ed 100644 --- a/README.md +++ b/README.md @@ -24,7 +24,7 @@ To install CloudBot on Windows, see [here](docs/installing/win.md) ### Running CloudBot -Before you run the bot, rename `config.default.json` to `config.json` and edit it with your preferred settings. You can check if your JSON is valid using [jsonlint.com](http://jsonlint.com/)! +Before you run the bot, rename `config.default.json` to `config.json` and edit it with your preferred settings. You can check if your JSON is valid using [jsonlint.com](https://jsonlint.com/)! Once you have installed the required dependencies and renamed the config file, you can run the bot! Make sure you are in the correct folder and run the following command: @@ -74,13 +74,13 @@ CloudBot is **licensed** under the **GPL v3** license. The terms are as follows. GNU General Public License for more details. You should have received a copy of the GNU General Public License - along with CloudBot. If not, see . + along with CloudBot. If not, see . ![Powered by wordnik](https://www.wordnik.com/img/wordnik_badge_a1.png) TV information is provided by [TheTVDB.com], but we are not endorsed or certified by [TheTVDB.com] or its affiliates. -This product uses data from http://wordnik.com in accordance with the wordnik.com API terms of service. +This product uses data from https://wordnik.com in accordance with the wordnik.com API terms of service. [latest source]: https://github.com/TotallyNotRobots/CloudBot/archive/main.zip [latest release]: https://github.com/TotallyNotRobots/CloudBot/releases/latest diff --git a/cloudbot/util/http.py b/cloudbot/util/http.py index a85602a77..a031d7b10 100644 --- a/cloudbot/util/http.py +++ b/cloudbot/util/http.py @@ -17,7 +17,7 @@ # security parser = etree.XMLParser(resolve_entities=False, no_network=True) -ua_cloudbot = "Cloudbot/DEV http://github.com/CloudDev/CloudBot" +ua_cloudbot = "Cloudbot/DEV https://github.com/CloudDev/CloudBot" ua_firefox = ( "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:17.0) Gecko/17.0 Firefox/17.0" diff --git a/cloudbot/util/tokenbucket.py b/cloudbot/util/tokenbucket.py index be3b6c664..303c2bdfe 100644 --- a/cloudbot/util/tokenbucket.py +++ b/cloudbot/util/tokenbucket.py @@ -2,7 +2,7 @@ tokenbucket.py A python implementation of the token bucket algorithm. -Adapted from +Adapted from Maintainer: - Luke Rogers diff --git a/cloudbot/util/web.py b/cloudbot/util/web.py index 80a3484c7..12f94835b 100644 --- a/cloudbot/util/web.py +++ b/cloudbot/util/web.py @@ -224,7 +224,7 @@ class Isgd(Shortener): def shorten(self, url, custom=None, key=None): p = {"url": url, "shorturl": custom, "format": "json"} try: - r = requests.get("http://is.gd/create.php", params=p) + r = requests.get("https://is.gd/create.php", params=p) r.raise_for_status() except HTTPError as e: r = e.response @@ -242,7 +242,7 @@ def shorten(self, url, custom=None, key=None): def expand(self, url): p = {"shorturl": url, "format": "json"} try: - r = requests.get("http://is.gd/forward.php", params=p) + r = requests.get("https://is.gd/forward.php", params=p) r.raise_for_status() except HTTPError as e: r = e.response diff --git a/data/drinks.json b/data/drinks.json index 7a2cbb8d8..6df56af90 100644 --- a/data/drinks.json +++ b/data/drinks.json @@ -6,7 +6,7 @@ "peach schnapps" ], "title": "Bad Habit recipe", - "url": "http://www.drinksmixer.com/drink1000.html" + "url": "https://www.drinksmixer.com/drink1000.html" }, { "directions": "Shake with ice strain into cocktail glass. Sprinkle with grated chocolate.", @@ -16,7 +16,7 @@ "Nestle\u00ae condensed milk" ], "title": "Baduizm recipe", - "url": "http://www.drinksmixer.com/drink1001.html" + "url": "https://www.drinksmixer.com/drink1001.html" }, { "directions": "Fill glass with crushed ice. Pour pernod and Tia Maria into glass. Pour all ingredients into cocktail shaker and give shaker a rapid 3 second shake. Pour contents back into glass.\r", @@ -26,7 +26,7 @@ "crushed ice" ], "title": "Bag of Filth recipe", - "url": "http://www.drinksmixer.com/drink1002.html" + "url": "https://www.drinksmixer.com/drink1002.html" }, { "directions": "Shake ingredients with cracked ice. Serve in a 12 oz. glass. Garnish with a cherry and 1/2 slice orange in a tooth pick.", @@ -40,7 +40,7 @@ "grenadine syrup" ], "title": "Bahama Mama #2 recipe", - "url": "http://www.drinksmixer.com/drink1003.html" + "url": "https://www.drinksmixer.com/drink1003.html" }, { "directions": "Serve over ice in a tall glass.", @@ -52,7 +52,7 @@ "grenadine syrup" ], "title": "Bahama Mama Sunrise recipe", - "url": "http://www.drinksmixer.com/drink1004.html" + "url": "https://www.drinksmixer.com/drink1004.html" }, { "directions": "Combine all ingredients and pour over cracked ice in a collins glass. Decorate with a strawberry or cherry and serve.", @@ -65,7 +65,7 @@ "pineapple juice" ], "title": "Bahama Mama recipe", - "url": "http://www.drinksmixer.com/drink1005.html" + "url": "https://www.drinksmixer.com/drink1005.html" }, { "directions": "Add light rum, dark rum, spiced rum, and malibu rum to an ice-filled glass. Mix in pineapple juice and blue curacao. Float 151 rum on top, and serve.", @@ -79,7 +79,7 @@ "pineapple juice" ], "title": "Bahama Todd recipe", - "url": "http://www.drinksmixer.com/drink1006.html" + "url": "https://www.drinksmixer.com/drink1006.html" }, { "directions": "Mix it up varying the ingredients to taste. Balance the Orange and Pineapple, add a little Malibu rum till you can slightly taste the coconut, then enough Campari to redden it and then make up the rest with rum. A delicious and authentic island drink that will make you very drunk if you aren't careful ('cuz its so good to drink!).", @@ -91,7 +91,7 @@ "orange juice" ], "title": "Bahamas Rum Punch recipe", - "url": "http://www.drinksmixer.com/drink1007.html" + "url": "https://www.drinksmixer.com/drink1007.html" }, { "directions": "Put the banana and banana liqueur into a blender until it becomes a thick paste. Add bailey's to taste; pina colada mix and rum to taste as well. Blend well, add ice, and blend again until smooth. Serve in a pina-colada glass.", @@ -103,7 +103,7 @@ "dark rum" ], "title": "Bailey's Banana Colada recipe", - "url": "http://www.drinksmixer.com/drink1008.html" + "url": "https://www.drinksmixer.com/drink1008.html" }, { "directions": "Shake and Strain the Butterscotch, Bailey's, and Goldschlager into a cocktail glass. Float the Sambuca, then sprinkle Cinnamon or Nutmeg into drink (Before you flame the drink). Just before presentation, flame the drink. As the Sambuca burns, the cinnamon will sparkle. A dazzling effect if the bartender or server is walking with the drink while it's burning (give the comet a tail).\r\n", @@ -114,7 +114,7 @@ "sambuca" ], "title": "Bailey's Comet recipe", - "url": "http://www.drinksmixer.com/drink1009.html" + "url": "https://www.drinksmixer.com/drink1009.html" }, { "directions": "Layer in order given, splash 151 on top, light on fire, and sprinkle cinnamon on top to produce sparks instead of just a flame.", @@ -124,7 +124,7 @@ "Bacardi\u00ae 151 rum" ], "title": "Bailey's Comet #2 recipe", - "url": "http://www.drinksmixer.com/drink1010.html" + "url": "https://www.drinksmixer.com/drink1010.html" }, { "directions": "Mix the hot coffee with Bailey's. Enjoy!", @@ -133,7 +133,7 @@ "coffee" ], "title": "Bailey's Cup of Coffee recipe", - "url": "http://www.drinksmixer.com/drink1011.html" + "url": "https://www.drinksmixer.com/drink1011.html" }, { "directions": "Blend ingredients for 30 seconds. Definitely refreshing for a hot summer's day!", @@ -143,7 +143,7 @@ "cream" ], "title": "Bailey's Dream Shake recipe", - "url": "http://www.drinksmixer.com/drink1012.html" + "url": "https://www.drinksmixer.com/drink1012.html" }, { "directions": "Put Irish Cream in large glass and microwave on HIGH power for half a minute or so. - While that's going, rim the shot glasses with sugar - Pour heated Bailey's into shot glasses and serve immediately.", @@ -152,7 +152,7 @@ "granulated sugar" ], "title": "Bailey's Hot Shot recipe", - "url": "http://www.drinksmixer.com/drink1013.html" + "url": "https://www.drinksmixer.com/drink1013.html" }, { "directions": "Blend all ingredients together in a blender until smooth. Serve in a tall glass.", @@ -162,7 +162,7 @@ "ice cream" ], "title": "Bailey's Shake #2 recipe", - "url": "http://www.drinksmixer.com/drink1014.html" + "url": "https://www.drinksmixer.com/drink1014.html" }, { "directions": "Fill glass with ice, then add Bailey's and root beer. Stir. Serve in frosted beer mug.\r", @@ -172,7 +172,7 @@ "ice" ], "title": "Baileyfloat recipe", - "url": "http://www.drinksmixer.com/drink1015.html" + "url": "https://www.drinksmixer.com/drink1015.html" }, { "directions": "Mix over ice and shake. Strain into an old-fashioned glass on the rocks.", @@ -182,7 +182,7 @@ "orange bitters" ], "title": "Bairn recipe", - "url": "http://www.drinksmixer.com/drink1016.html" + "url": "https://www.drinksmixer.com/drink1016.html" }, { "directions": "Pour the ingredients into a cocktail shaker and shake well, pour into a tall cocktail glass and add a slice of lemon.", @@ -194,7 +194,7 @@ "lemon juice" ], "title": "Bakkus recipe", - "url": "http://www.drinksmixer.com/drink1017.html" + "url": "https://www.drinksmixer.com/drink1017.html" }, { "directions": "Put all ingredients in shaker together with some ice-cubes. Shake well. Serve with piece of banana on top of the glass.", @@ -208,7 +208,7 @@ "orange juice" ], "title": "Bali Dream recipe", - "url": "http://www.drinksmixer.com/drink1018.html" + "url": "https://www.drinksmixer.com/drink1018.html" }, { "directions": "In shot glass, mix 1 part Gold with 1 part Rump, add a splash of Jager over the top. Manly shot with a tasty surprise.", @@ -218,7 +218,7 @@ "Jagermeister\u00ae herbal liqueur" ], "title": "Ball and Chain recipe", - "url": "http://www.drinksmixer.com/drink1019.html" + "url": "https://www.drinksmixer.com/drink1019.html" }, { "directions": "Fill a shaker with ice. Pour in equal parts liquor. Shake or swirl. Strain into shot glass(es). Serve with a short, cold glass of beer.", @@ -228,7 +228,7 @@ "beer" ], "title": "Ball Hooter recipe", - "url": "http://www.drinksmixer.com/drink1020.html" + "url": "https://www.drinksmixer.com/drink1020.html" }, { "directions": "Pour all ingredients into a punch bowl and stir.\r\n\r\n\"Drink the fuck up, get fucked up, and break the ball of fun.\" (BSU)", @@ -240,7 +240,7 @@ "ice cubes" ], "title": "Ball of Fun recipe", - "url": "http://www.drinksmixer.com/drink1021.html" + "url": "https://www.drinksmixer.com/drink1021.html" }, { "directions": "In a mixing glass half-filled with ice cubes, combine all of the ingredients. Stir well. Strain into a cocktail glass.", @@ -251,7 +251,7 @@ "bitters" ], "title": "Balmoral recipe", - "url": "http://www.drinksmixer.com/drink1022.html" + "url": "https://www.drinksmixer.com/drink1022.html" }, { "directions": "Pour vodka and creme de cassis in cocktail glass and fill with 7-up. If it is too sweet, try soda water. A slice of lemon compliments the drink quite nicely.", @@ -261,7 +261,7 @@ "7-Up\u00ae soda" ], "title": "Baltic Murder Mystery recipe", - "url": "http://www.drinksmixer.com/drink1023.html" + "url": "https://www.drinksmixer.com/drink1023.html" }, { "directions": "Shake all ingredients with ice, strain into a cocktail glass, and serve.", @@ -271,7 +271,7 @@ "egg" ], "title": "Baltimore Bracer recipe", - "url": "http://www.drinksmixer.com/drink1024.html" + "url": "https://www.drinksmixer.com/drink1024.html" }, { "directions": "Shake all ingredients well with cracked ice and strain into a collins glass. Sprinkle nutmeg on top and serve.", @@ -284,7 +284,7 @@ "milk" ], "title": "Baltimore Eggnog recipe", - "url": "http://www.drinksmixer.com/drink1025.html" + "url": "https://www.drinksmixer.com/drink1025.html" }, { "directions": "Put ice in glass.\r", @@ -295,7 +295,7 @@ "7-Up\u00ae soda" ], "title": "Bambi's Iced Tea recipe", - "url": "http://www.drinksmixer.com/drink1027.html" + "url": "https://www.drinksmixer.com/drink1027.html" }, { "directions": "Pour ingredients into a red wine glass and serve.", @@ -304,7 +304,7 @@ "Coca-Cola\u00ae" ], "title": "Bambus recipe", - "url": "http://www.drinksmixer.com/drink1028.html" + "url": "https://www.drinksmixer.com/drink1028.html" }, { "directions": "Place a banana into a 12-oz glass, and add cracked ice. Combine the other ingredients in another glass and pour over the ice. Add the pineapple slice and enjoy.", @@ -317,7 +317,7 @@ "pineapple" ], "title": "Banana Boat recipe", - "url": "http://www.drinksmixer.com/drink1029.html" + "url": "https://www.drinksmixer.com/drink1029.html" }, { "directions": "Juice cantaloupe, pour juice into blender, add banana, and liquify.", @@ -326,7 +326,7 @@ "banana" ], "title": "Banana Cantaloupe Smoothie recipe", - "url": "http://www.drinksmixer.com/drink1030.html" + "url": "https://www.drinksmixer.com/drink1030.html" }, { "directions": "Layer in order given.Pour into a shot glass.", @@ -336,7 +336,7 @@ "Blue Curacao liqueur" ], "title": "4th of July recipe", - "url": "http://www.drinksmixer.com/drink1031.html" + "url": "https://www.drinksmixer.com/drink1031.html" }, { "directions": "Blend 4 first ingredients with 1/2 cut cracked ice at high speed in 15-25 seconds. Pour into a chilled highball glass. Garnish with cherry and pineapple slice.", @@ -349,7 +349,7 @@ "pineapple" ], "title": "Banana Colada recipe", - "url": "http://www.drinksmixer.com/drink1032.html" + "url": "https://www.drinksmixer.com/drink1032.html" }, { "directions": "Combine all ingredients in a blender except for the ice and blend. Then add ice until the drink begins to thicken then serve.", @@ -362,7 +362,7 @@ "ice" ], "title": "Banana Colada #2 recipe", - "url": "http://www.drinksmixer.com/drink1033.html" + "url": "https://www.drinksmixer.com/drink1033.html" }, { "directions": "Shake rum, creme de banana, cream, and grenadine with crushed ice and strain into a cocktail glass. Decorate with the banana slice, sprinkle nutmeg on top, and serve.", @@ -375,7 +375,7 @@ "nutmeg" ], "title": "Banana Cow recipe", - "url": "http://www.drinksmixer.com/drink1034.html" + "url": "https://www.drinksmixer.com/drink1034.html" }, { "directions": "Layer in a shot glass.", @@ -385,7 +385,7 @@ "99 Bananas\u00ae banana schnapps" ], "title": "Banana Cream Pie #2 recipe", - "url": "http://www.drinksmixer.com/drink1035.html" + "url": "https://www.drinksmixer.com/drink1035.html" }, { "directions": "Mix in a shaker with ice then strain.", @@ -396,7 +396,7 @@ "half-and-half" ], "title": "Banana Cream Pie recipe", - "url": "http://www.drinksmixer.com/drink1036.html" + "url": "https://www.drinksmixer.com/drink1036.html" }, { "directions": "Pour all ingredients into a glass and stir well. Much better if mixed with a blender, but a stir stick will do.", @@ -407,7 +407,7 @@ "cream" ], "title": "Banana Dream recipe", - "url": "http://www.drinksmixer.com/drink1038.html" + "url": "https://www.drinksmixer.com/drink1038.html" }, { "directions": "Pour banana liqueur into a highball glass over ice. Add malibu rum, top with mountain dew, and serve.", @@ -418,7 +418,7 @@ "ice" ], "title": "Banana Jabs recipe", - "url": "http://www.drinksmixer.com/drink1039.html" + "url": "https://www.drinksmixer.com/drink1039.html" }, { "directions": "Blend very well, preferably in a household mixer. Serve in a wine glass, garnish with whipped cream and a piece of banana.", @@ -429,7 +429,7 @@ "banana" ], "title": "Banana Milk Shake recipe", - "url": "http://www.drinksmixer.com/drink1040.html" + "url": "https://www.drinksmixer.com/drink1040.html" }, { "directions": "Boil water and sugar for 5 minutes. Cool and add the remaining ingredients except ginger ale. Freeze. Remove from freezer 2 to 3 hours before serving. Mix with ginger ale. Float assorted fruit in punch bowl. Vodka could also be added.", @@ -443,7 +443,7 @@ "ginger ale" ], "title": "Banana Punch #2 recipe", - "url": "http://www.drinksmixer.com/drink1041.html" + "url": "https://www.drinksmixer.com/drink1041.html" }, { "directions": "In a shaker half-filled with ice cubes, combine all of the ingredients. Shake well. Strain into a cocktail glass.", @@ -453,7 +453,7 @@ "light cream" ], "title": "Banana Rum Cream recipe", - "url": "http://www.drinksmixer.com/drink1042.html" + "url": "https://www.drinksmixer.com/drink1042.html" }, { "directions": "Fill Cocktail glass with ice. Shake Stoli Vanil, Creme de Banane, and half & half. Pour over ice.\r", @@ -463,7 +463,7 @@ "half-and-half" ], "title": "Banana Russian recipe", - "url": "http://www.drinksmixer.com/drink1043.html" + "url": "https://www.drinksmixer.com/drink1043.html" }, { "directions": "Blend all together in a blender until smooth.", @@ -473,7 +473,7 @@ "apple juice" ], "title": "Banana Strawberry Shake recipe", - "url": "http://www.drinksmixer.com/drink1044.html" + "url": "https://www.drinksmixer.com/drink1044.html" }, { "directions": "Blend all together in a blender until smooth.", @@ -484,7 +484,7 @@ "milk" ], "title": "Banana Strawberry Shake #2 recipe", - "url": "http://www.drinksmixer.com/drink1045.html" + "url": "https://www.drinksmixer.com/drink1045.html" }, { "directions": "Add ingredients to a shaker with ice, shake, and strain into a highball glass.", @@ -495,7 +495,7 @@ "orange juice" ], "title": "Banana Sunrise recipe", - "url": "http://www.drinksmixer.com/drink1046.html" + "url": "https://www.drinksmixer.com/drink1046.html" }, { "directions": "Put all ingredients in a blender and blend for 3 minutes. If the mix isn't liquid enough (depends on the banana), add another shot of pineapple juice. Decorate with a piece of the banana and a piece of a pineapple.", @@ -505,7 +505,7 @@ "pineapple juice" ], "title": "Banana Tropical recipe", - "url": "http://www.drinksmixer.com/drink1047.html" + "url": "https://www.drinksmixer.com/drink1047.html" }, { "directions": "Shake with ice and strain into a cocktail glass filled with crushed ice.\r", @@ -515,7 +515,7 @@ "orange juice" ], "title": "Bananaball recipe", - "url": "http://www.drinksmixer.com/drink1048.html" + "url": "https://www.drinksmixer.com/drink1048.html" }, { "directions": "Stir until ingredients are mixed well.", @@ -525,7 +525,7 @@ "99 Bananas\u00ae banana schnapps" ], "title": "Bananas and Cream recipe", - "url": "http://www.drinksmixer.com/drink1049.html" + "url": "https://www.drinksmixer.com/drink1049.html" }, { "directions": "Align the shot glasses in the following order: Tomato (red), Tequila (white) and Lemon (green), resembling the Mexican Flag. Quickly gulp one after another: Tomato, Tequila and finally finish with the Lemon.", @@ -535,7 +535,7 @@ "lemon juice" ], "title": "Banderas recipe", - "url": "http://www.drinksmixer.com/drink1050.html" + "url": "https://www.drinksmixer.com/drink1050.html" }, { "directions": "Put the spirits in together then add the soda water. Stir.", @@ -547,7 +547,7 @@ "soda water" ], "title": "Bankers Doom recipe", - "url": "http://www.drinksmixer.com/drink1051.html" + "url": "https://www.drinksmixer.com/drink1051.html" }, { "directions": "In a mixing glass half-filled with crushed ice, combine all of the ingredients. Stir well. Strain into a cocktail glass.", @@ -558,7 +558,7 @@ "grenadine syrup" ], "title": "Bannister recipe", - "url": "http://www.drinksmixer.com/drink1052.html" + "url": "https://www.drinksmixer.com/drink1052.html" }, { "directions": "Pour each of the three ingredients into a shot glass. Stir.", @@ -568,7 +568,7 @@ "creme de cacao" ], "title": "Banshee Berry recipe", - "url": "http://www.drinksmixer.com/drink1053.html" + "url": "https://www.drinksmixer.com/drink1053.html" }, { "directions": "Combine ingredients w/ crushed ice in a mixing glass, then shake & strain into a cocktail glass.", @@ -578,7 +578,7 @@ "cream" ], "title": "Banshee recipe", - "url": "http://www.drinksmixer.com/drink1054.html" + "url": "https://www.drinksmixer.com/drink1054.html" }, { "directions": "Pour over crushed ice in a rocks glass. Lightly stir, and serve.", @@ -587,7 +587,7 @@ "Irish Mist\u00ae herbal liqueur" ], "title": "Banshe recipe", - "url": "http://www.drinksmixer.com/drink1055.html" + "url": "https://www.drinksmixer.com/drink1055.html" }, { "directions": "Pour root beer into mug. Add a shot of Blackberry Brandy.", @@ -596,7 +596,7 @@ "blackberry brandy" ], "title": "Barbarian recipe", - "url": "http://www.drinksmixer.com/drink1056.html" + "url": "https://www.drinksmixer.com/drink1056.html" }, { "directions": "Pour Tequila and Amaretto over ice into collins glass. Fill with pineapple juice and top with grenadine. Garnish with a cherry and serve with a straw.", @@ -607,7 +607,7 @@ "grenadine syrup" ], "title": "Big Red Hooter recipe", - "url": "http://www.drinksmixer.com/drink1057.html" + "url": "https://www.drinksmixer.com/drink1057.html" }, { "directions": "Pour ingredients into a stainless steel shaker over ice, and shake until completely cold. Strain into an old-fashioned glass, and serve.", @@ -616,7 +616,7 @@ "cinnamon schnapps" ], "title": "Cinnamon Rose recipe", - "url": "http://www.drinksmixer.com/drink1058.html" + "url": "https://www.drinksmixer.com/drink1058.html" }, { "directions": "Pour ingredients into a stainless steel shaker over ice, shake until completely cold then strain into a chilled stemmed glass or rocks glass filled with ice.", @@ -626,7 +626,7 @@ "brown creme de cacao" ], "title": "Irish Rose recipe", - "url": "http://www.drinksmixer.com/drink1059.html" + "url": "https://www.drinksmixer.com/drink1059.html" }, { "directions": "Pour ingredients into a stainless steel shaker over ice, shake until completely cold then strain into a chilled stemmed or a Rocks glass filled with ice.Side garnish with a York Peppermint Paddy or a Fudge Mint Oreo.", @@ -636,7 +636,7 @@ "green creme de menthe" ], "title": "Irish Paddy recipe", - "url": "http://www.drinksmixer.com/drink1060.html" + "url": "https://www.drinksmixer.com/drink1060.html" }, { "directions": "Pour into a stainless steel shaker over ice,shake until completely cold then strain into a chilled steemed glass or Rocks glass filled with ice.", @@ -646,7 +646,7 @@ "butterscotch schnapps" ], "title": "Slippery Virgin recipe", - "url": "http://www.drinksmixer.com/drink1061.html" + "url": "https://www.drinksmixer.com/drink1061.html" }, { "directions": "Pour ingredients into a Collins glass filled with ice. Stir and serve!", @@ -657,7 +657,7 @@ "cranberry juice" ], "title": "Caribbean Breeze recipe", - "url": "http://www.drinksmixer.com/drink1062.html" + "url": "https://www.drinksmixer.com/drink1062.html" }, { "directions": "Pour ingredients into a stainless steel shaker over ice, and shake until completely cold. Strain into an old-fashioned glass, and serve.", @@ -668,7 +668,7 @@ "white creme de menthe" ], "title": "Silver Spider recipe", - "url": "http://www.drinksmixer.com/drink1063.html" + "url": "https://www.drinksmixer.com/drink1063.html" }, { "directions": "Shake all ingredients with ice, strain into a cocktail glass, and serve.", @@ -680,7 +680,7 @@ "light cream" ], "title": "Barbary Coast recipe", - "url": "http://www.drinksmixer.com/drink1064.html" + "url": "https://www.drinksmixer.com/drink1064.html" }, { "directions": "In shaker tin with ice, mix and shake all ingredients.", @@ -691,7 +691,7 @@ "orange juice" ], "title": "Barbie Shot recipe", - "url": "http://www.drinksmixer.com/drink1065.html" + "url": "https://www.drinksmixer.com/drink1065.html" }, { "directions": "Put the juice of 1/2 Lime in glass, then pour in cola and bacardi dark. Top up with Everclear. Light. Figure out how to drink it!", @@ -702,7 +702,7 @@ "Everclear\u00ae alcohol" ], "title": "Bacardi Volcano recipe", - "url": "http://www.drinksmixer.com/drink1066.html" + "url": "https://www.drinksmixer.com/drink1066.html" }, { "directions": "Shake and strain into shot glass.", @@ -712,7 +712,7 @@ "cranberry juice" ], "title": "Barney on Acid recipe", - "url": "http://www.drinksmixer.com/drink1067.html" + "url": "https://www.drinksmixer.com/drink1067.html" }, { "directions": "Stir all ingredients (except lemon wedge) with ice and strain into a cocktail glass. Add the lemon wedge and serve.", @@ -724,7 +724,7 @@ "lemon" ], "title": "Baron Cocktail recipe", - "url": "http://www.drinksmixer.com/drink1068.html" + "url": "https://www.drinksmixer.com/drink1068.html" }, { "directions": "Put the liquor in the shot glass equally.", @@ -734,7 +734,7 @@ "vodka" ], "title": "Barracuda recipe", - "url": "http://www.drinksmixer.com/drink1069.html" + "url": "https://www.drinksmixer.com/drink1069.html" }, { "directions": "Pour all of the ingredients into an Irish coffee glass filled with crushed ice. Stir well.", @@ -746,7 +746,7 @@ "crushed ice" ], "title": "Barrier Breaker recipe", - "url": "http://www.drinksmixer.com/drink1070.html" + "url": "https://www.drinksmixer.com/drink1070.html" }, { "directions": "Blend ingredients together in a blender. Pour into a champagne saucer, and serve.", @@ -756,7 +756,7 @@ "vanilla ice cream" ], "title": "Barrier Reef recipe", - "url": "http://www.drinksmixer.com/drink1071.html" + "url": "https://www.drinksmixer.com/drink1071.html" }, { "directions": "Chill and serve in large shot glass.", @@ -767,7 +767,7 @@ "cranberry juice" ], "title": "Bart Simpson recipe", - "url": "http://www.drinksmixer.com/drink1072.html" + "url": "https://www.drinksmixer.com/drink1072.html" }, { "directions": "Shake tequila, triple sec, sweet & sour, cranberry juice, and lime juice in a pint glass. Rim another pint glass with salt and transfer contents. Float the Gran Marnier, garnish with a lime and straw, and serve.", @@ -780,7 +780,7 @@ "Grand Marnier\u00ae orange liqueur" ], "title": "Bartender's Margarita recipe", - "url": "http://www.drinksmixer.com/drink1073.html" + "url": "https://www.drinksmixer.com/drink1073.html" }, { "directions": "Simply put the ingredients in a shot glass and place a little bit of whipped cream on the top.", @@ -791,7 +791,7 @@ "whipped cream" ], "title": "Bartender's Wet Dream recipe", - "url": "http://www.drinksmixer.com/drink1074.html" + "url": "https://www.drinksmixer.com/drink1074.html" }, { "directions": "Add rum and Mountain Dew to glass. Then add enough Maui to make the drink bright green.", @@ -801,7 +801,7 @@ "Maui\u00ae Blue Hawaiian schnapps" ], "title": "The Bartman recipe", - "url": "http://www.drinksmixer.com/drink1075.html" + "url": "https://www.drinksmixer.com/drink1075.html" }, { "directions": "Shake all ingredients with ice, strain into an old-fashioned glass over ice cubes, and serve.", @@ -811,7 +811,7 @@ "Scotch whisky" ], "title": "Barton Special recipe", - "url": "http://www.drinksmixer.com/drink1076.html" + "url": "https://www.drinksmixer.com/drink1076.html" }, { "directions": "Begin by making a standard Screwdriver (OJ and vodka). Add the whiskey and the amaretto, mix and serve.", @@ -822,7 +822,7 @@ "amaretto almond liqueur" ], "title": "Baseball Pleasure recipe", - "url": "http://www.drinksmixer.com/drink1077.html" + "url": "https://www.drinksmixer.com/drink1077.html" }, { "directions": "In a mixing glass half-filled with ice cubes, combine all of the ingredients. Stir well. Strain into a cocktail glass.", @@ -833,7 +833,7 @@ "bitters" ], "title": "Basic Bill recipe", - "url": "http://www.drinksmixer.com/drink1078.html" + "url": "https://www.drinksmixer.com/drink1078.html" }, { "directions": "Add ingredients to a shaker with ice. Shake vigorously, strain into a highball glass, garnish with lime, and serve.", @@ -846,7 +846,7 @@ "club soda" ], "title": "Baso recipe", - "url": "http://www.drinksmixer.com/drink1079.html" + "url": "https://www.drinksmixer.com/drink1079.html" }, { "directions": "Ice, then rum, then orange juice. Mix.", @@ -856,7 +856,7 @@ "ice" ], "title": "Bastardized Screwdriver recipe", - "url": "http://www.drinksmixer.com/drink1080.html" + "url": "https://www.drinksmixer.com/drink1080.html" }, { "directions": "Place all ingredients into a blender. Blend well, pour into a wine glass, and serve.", @@ -867,7 +867,7 @@ "crushed ice" ], "title": "Batida Abacaxi recipe", - "url": "http://www.drinksmixer.com/drink1081.html" + "url": "https://www.drinksmixer.com/drink1081.html" }, { "directions": "Blend well and add crushed ice.", @@ -876,7 +876,7 @@ "coconut cream" ], "title": "Batida de Coco recipe", - "url": "http://www.drinksmixer.com/drink1082.html" + "url": "https://www.drinksmixer.com/drink1082.html" }, { "directions": "Place all ingredients into a blender. Blend well, pour into a wine glass, and serve.", @@ -887,7 +887,7 @@ "crushed ice" ], "title": "Batida Mango recipe", - "url": "http://www.drinksmixer.com/drink1083.html" + "url": "https://www.drinksmixer.com/drink1083.html" }, { "directions": "Place all ingredients into a blender. Blend well, pour into a wine glass, and serve.", @@ -898,7 +898,7 @@ "crushed ice" ], "title": "Batida Morango recipe", - "url": "http://www.drinksmixer.com/drink1084.html" + "url": "https://www.drinksmixer.com/drink1084.html" }, { "directions": "Mix all. Serve cold.", @@ -908,7 +908,7 @@ "ice cubes" ], "title": "Batman recipe", - "url": "http://www.drinksmixer.com/drink1085.html" + "url": "https://www.drinksmixer.com/drink1085.html" }, { "directions": "Mix vodka and tequila in a highball glass, fill up with ice cold Battery and add a dash of lime. Stir and serve.", @@ -919,7 +919,7 @@ "lime juice" ], "title": "Battering Ram recipe", - "url": "http://www.drinksmixer.com/drink1086.html" + "url": "https://www.drinksmixer.com/drink1086.html" }, { "directions": "Shake or stir and enjoy.", @@ -930,7 +930,7 @@ "ice cubes" ], "title": "B.A.V. recipe", - "url": "http://www.drinksmixer.com/drink1087.html" + "url": "https://www.drinksmixer.com/drink1087.html" }, { "directions": "Shake together all ingredients and serve in a frosted glass.", @@ -940,7 +940,7 @@ "milk" ], "title": "Bavarian Alps recipe", - "url": "http://www.drinksmixer.com/drink1088.html" + "url": "https://www.drinksmixer.com/drink1088.html" }, { "directions": "Fill glass with tonic, pour Fernet over spoon and add a straw.", @@ -949,7 +949,7 @@ "tonic water" ], "title": "Bavorak recipe", - "url": "http://www.drinksmixer.com/drink1089.html" + "url": "https://www.drinksmixer.com/drink1089.html" }, { "directions": "Pour southern comfort and lemonade into a 12 oz glass. Stir. Add ice if desired.", @@ -958,7 +958,7 @@ "lemonade" ], "title": "Bayou Backwater recipe", - "url": "http://www.drinksmixer.com/drink1090.html" + "url": "https://www.drinksmixer.com/drink1090.html" }, { "directions": "First, add cubed ice, then add the three parts stoli, then add the pineapple juice and last but not least, add the cranberry juice for color.", @@ -968,7 +968,7 @@ "pineapple juice" ], "title": "Bay Breeze recipe", - "url": "http://www.drinksmixer.com/drink1091.html" + "url": "https://www.drinksmixer.com/drink1091.html" }, { "directions": "Pour equal parts of all ingrediants into a shaker filled with ice. Chill, shake and strain!", @@ -980,7 +980,7 @@ "pineapple juice" ], "title": "Bayou Juice recipe", - "url": "http://www.drinksmixer.com/drink1092.html" + "url": "https://www.drinksmixer.com/drink1092.html" }, { "directions": "Shake the vodka, the galliano and the juice in a shaker. Then add ice and finally put cream on top. A little bit of chocolate makes it look really great. Should be served in a hurricane glass with a straw.", @@ -991,7 +991,7 @@ "cream" ], "title": "Baywatch recipe", - "url": "http://www.drinksmixer.com/drink1093.html" + "url": "https://www.drinksmixer.com/drink1093.html" }, { "directions": "Fill tin with ice. Mix all three ingredients with ice. Shake and strain into glass.", @@ -1001,7 +1001,7 @@ "banana liqueur" ], "title": "Bazooka Joe recipe", - "url": "http://www.drinksmixer.com/drink1094.html" + "url": "https://www.drinksmixer.com/drink1094.html" }, { "directions": "Add a few ice cubes and fill the glass with ginger ale.", @@ -1011,7 +1011,7 @@ "ginger ale" ], "title": "Be Sweet recipe", - "url": "http://www.drinksmixer.com/drink1095.html" + "url": "https://www.drinksmixer.com/drink1095.html" }, { "directions": "Pour into a glass with ice. Stir.", @@ -1021,7 +1021,7 @@ "Sprite\u00ae soda" ], "title": "Beach Bum recipe", - "url": "http://www.drinksmixer.com/drink1096.html" + "url": "https://www.drinksmixer.com/drink1096.html" }, { "directions": "Pour vodka and raspberry liqueur over ice. Add cranberry juice, and the freshly squeezed lime juice. Stir and serve.", @@ -1032,7 +1032,7 @@ "limes" ], "title": "Beach Sunday recipe", - "url": "http://www.drinksmixer.com/drink1097.html" + "url": "https://www.drinksmixer.com/drink1097.html" }, { "directions": "Add pineapple juice, orange juice, Smirnoff No.21 Vodka, Captain Morgan Parrot Bay Coconut Rum.\r", @@ -1044,7 +1044,7 @@ "orange" ], "title": "Beachcomber recipe", - "url": "http://www.drinksmixer.com/drink1098.html" + "url": "https://www.drinksmixer.com/drink1098.html" }, { "directions": "Stir ingredients with ice, strain into a cocktail glass, and serve.", @@ -1053,7 +1053,7 @@ "Scotch whisky" ], "title": "Beadlestone Cocktail recipe", - "url": "http://www.drinksmixer.com/drink1099.html" + "url": "https://www.drinksmixer.com/drink1099.html" }, { "directions": "Add ice cubes, stir, and garnish with cherry.", @@ -1065,7 +1065,7 @@ "sweet and sour mix" ], "title": "Beakers Blue recipe", - "url": "http://www.drinksmixer.com/drink1100.html" + "url": "https://www.drinksmixer.com/drink1100.html" }, { "directions": "Stir all ingredients with ice, strain into a cocktail glass, and serve.", @@ -1075,7 +1075,7 @@ "Scotch whisky" ], "title": "Beal's Cocktail recipe", - "url": "http://www.drinksmixer.com/drink1101.html" + "url": "https://www.drinksmixer.com/drink1101.html" }, { "directions": "Chill rum. Then layer. Creme de Banana first, then Bailey's and float rum on top.", @@ -1085,7 +1085,7 @@ "Bailey's\u00ae Irish cream" ], "title": "Scottie Mac recipe", - "url": "http://www.drinksmixer.com/drink1102.html" + "url": "https://www.drinksmixer.com/drink1102.html" }, { "directions": "Fill cocktail glass with ice. Add Jim Beam Bourbon and Amaretto. Then add Coca-Cola and stir.", @@ -1096,7 +1096,7 @@ "ice" ], "title": "Beam Me Up recipe", - "url": "http://www.drinksmixer.com/drink1104.html" + "url": "https://www.drinksmixer.com/drink1104.html" }, { "directions": "Mix shots in 3-4 oz glass, stir, then drain it.", @@ -1105,7 +1105,7 @@ "Jim Beam\u00ae bourbon whiskey" ], "title": "Beam Scream recipe", - "url": "http://www.drinksmixer.com/drink1105.html" + "url": "https://www.drinksmixer.com/drink1105.html" }, { "directions": "Pour each ingredient into a brandy snifter and serve.", @@ -1114,7 +1114,7 @@ "Grand Marnier\u00ae orange liqueur" ], "title": "Beautiful recipe", - "url": "http://www.drinksmixer.com/drink1108.html" + "url": "https://www.drinksmixer.com/drink1108.html" }, { "directions": "Pour a dash of grenadine into a cocktail glass. Shake remaining ingredients with ice, strain into glass over grenadine, and serve.", @@ -1126,7 +1126,7 @@ "grenadine syrup" ], "title": "Beauty Spot Cocktail recipe", - "url": "http://www.drinksmixer.com/drink1109.html" + "url": "https://www.drinksmixer.com/drink1109.html" }, { "directions": "Pour all the ingredients together, and hope it don't explode! Drink as fast as you can, with no food, and say your prayers.", @@ -1141,7 +1141,7 @@ "Southern Comfort\u00ae peach liqueur" ], "title": "The Beavis recipe", - "url": "http://www.drinksmixer.com/drink1110.html" + "url": "https://www.drinksmixer.com/drink1110.html" }, { "directions": "Fill glass with ice. Add vodkas and fill with cranberrry juice.", @@ -1152,7 +1152,7 @@ "cranberry juice" ], "title": "Becky's Bomber recipe", - "url": "http://www.drinksmixer.com/drink1111.html" + "url": "https://www.drinksmixer.com/drink1111.html" }, { "directions": "Shake ingredients with ice, strain into a cocktail glass, and serve.", @@ -1161,7 +1161,7 @@ "white creme de menthe" ], "title": "Bee Stinger recipe", - "url": "http://www.drinksmixer.com/drink1112.html" + "url": "https://www.drinksmixer.com/drink1112.html" }, { "directions": "Mix all ingredients in a tall glass with ice. Garnish with a lime wedge.", @@ -1173,7 +1173,7 @@ "lime juice" ], "title": "Beau's Rum and Coke recipe", - "url": "http://www.drinksmixer.com/drink1113.html" + "url": "https://www.drinksmixer.com/drink1113.html" }, { "directions": "Usually you mix the Cointreau with the hot chili sauce before you start to mix the drink. It needs to mix well. Then you pour the right amount into a shot glass, and add the vodka.(50/50)(The amount of chili sauce can be altered to find the mix that will grow hair on your chest)", @@ -1183,7 +1183,7 @@ "hot chili pepper sauce" ], "title": "Beelzebub recipe", - "url": "http://www.drinksmixer.com/drink1114.html" + "url": "https://www.drinksmixer.com/drink1114.html" }, { "directions": "Add freezer chilled vodka to frosted glass, add tabasco and celery salt, top up with very cold very strong lager.", @@ -1194,7 +1194,7 @@ "celery salt" ], "title": "Beer Breezer recipe", - "url": "http://www.drinksmixer.com/drink1115.html" + "url": "https://www.drinksmixer.com/drink1115.html" }, { "directions": "Fill glass with Beer and top it off with some 7-up. You can add more or less 7-up to suit your taste. If you make it 50/50 it is known as a Shandy. Great on a hot Summer day or the night after a lot of drinking.", @@ -1203,7 +1203,7 @@ "7-Up\u00ae soda" ], "title": "Beer Top recipe", - "url": "http://www.drinksmixer.com/drink1116.html" + "url": "https://www.drinksmixer.com/drink1116.html" }, { "directions": "Pour into a blender in this order: ice - beer - tequila - rum - daquari mix - margarita mix. Blend until frothy, then pour.", @@ -1216,7 +1216,7 @@ "margarita mix" ], "title": "Beeraquirilla recipe", - "url": "http://www.drinksmixer.com/drink1117.html" + "url": "https://www.drinksmixer.com/drink1117.html" }, { "directions": "In a tall mixing glass with ice pour the vodka on the bottom. Then fill the glass 3/4 full with sour mix. Pour in the rest of the ingredients one at a time. Garnish with pineapple spear and cherry.", @@ -1231,7 +1231,7 @@ "cranberry juice" ], "title": "Beetlejuice recipe", - "url": "http://www.drinksmixer.com/drink1118.html" + "url": "https://www.drinksmixer.com/drink1118.html" }, { "directions": "Add couple of ice cubes to a highball glass. Measure vodka and banana liqueur. Fill with ginger ale, and stirr couple of times. Garnish with a red cherry. Add a straw and serve.", @@ -1242,7 +1242,7 @@ "ice cubes" ], "title": "Ampiainen recipe", - "url": "http://www.drinksmixer.com/drink1119.html" + "url": "https://www.drinksmixer.com/drink1119.html" }, { "directions": "Build over ice drink with a straw.", @@ -1252,7 +1252,7 @@ "ice" ], "title": "Belfast Bomber recipe", - "url": "http://www.drinksmixer.com/drink1120.html" + "url": "https://www.drinksmixer.com/drink1120.html" }, { "directions": "Pour all ingredients into the glass and stir.", @@ -1263,7 +1263,7 @@ "Sprite\u00ae soda" ], "title": "Belgian Blue recipe", - "url": "http://www.drinksmixer.com/drink1121.html" + "url": "https://www.drinksmixer.com/drink1121.html" }, { "directions": "Pour the gin, cognac and chocolate liqueur over the ice cubes. Fill with heavy cream. Stir gently.", @@ -1275,7 +1275,7 @@ "ice cubes" ], "title": "Belgian Brownie recipe", - "url": "http://www.drinksmixer.com/drink1122.html" + "url": "https://www.drinksmixer.com/drink1122.html" }, { "directions": "Pour buttershots into a chilled shot glass. Carefully layer or float the irish cream on top, and serve.\n\n", @@ -1284,7 +1284,7 @@ "Irish cream" ], "title": "Buttery Nipple recipe", - "url": "http://www.drinksmixer.com/drink1123.html" + "url": "https://www.drinksmixer.com/drink1123.html" }, { "directions": "Mix the alcohol in a mixing glass with ice. Fill a clear glass 1/4 full with the mixture, add 2 parts orange juice, 1 part pineapple juice, and pour 2 count of grenadine to finish. DO NOT MIX ONCE GRENADINE IS ADDED!!! It should settle out on the bottom. Serve cold :-)", @@ -1299,7 +1299,7 @@ "grenadine syrup" ], "title": "Time of the month recipe", - "url": "http://www.drinksmixer.com/drink1125.html" + "url": "https://www.drinksmixer.com/drink1125.html" }, { "directions": "Combine and mix vodka, schnapps and gin over ice in a tall glass. Pour and add equal parts of orange juice and sprite. Add 2 counts of grenadine and mix.", @@ -1312,7 +1312,7 @@ "grenadine syrup" ], "title": "Heavy Flow recipe", - "url": "http://www.drinksmixer.com/drink1126.html" + "url": "https://www.drinksmixer.com/drink1126.html" }, { "directions": "Put into glass. Stir.\r", @@ -1322,7 +1322,7 @@ "Pepsi\u00ae cola" ], "title": "I Love Rosa recipe", - "url": "http://www.drinksmixer.com/drink1128.html" + "url": "https://www.drinksmixer.com/drink1128.html" }, { "directions": "Mix thoroughly.\r\n", @@ -1331,7 +1331,7 @@ "Tanqueray\u00ae gin" ], "title": "Italian Valium recipe", - "url": "http://www.drinksmixer.com/drink1129.html" + "url": "https://www.drinksmixer.com/drink1129.html" }, { "directions": "mix aquavit and banana liqueur insert dash with lime fill up with 7-up Served with ice cubes strawberry\r", @@ -1342,7 +1342,7 @@ "7-Up\u00ae soda" ], "title": "IAS-Special recipe", - "url": "http://www.drinksmixer.com/drink1130.html" + "url": "https://www.drinksmixer.com/drink1130.html" }, { "directions": "Mix the ingredients in equal parts in a highball glass, and serve.", @@ -1352,7 +1352,7 @@ "Coca-Cola\u00ae" ], "title": "CJC recipe", - "url": "http://www.drinksmixer.com/drink1132.html" + "url": "https://www.drinksmixer.com/drink1132.html" }, { "directions": "Pour liqueurs into a shot glass and top with whipped cream. Have an individual place their hands behind their back, then; pick-up the filled shot glass with their mouth, tilt head back, and drink. ", @@ -1361,7 +1361,7 @@ "amaretto almond liqueur" ], "title": "Blow Job recipe", - "url": "http://www.drinksmixer.com/drink1133.html" + "url": "https://www.drinksmixer.com/drink1133.html" }, { "directions": "Pour ingredients as listed above into a shot glass and shoot!", @@ -1370,7 +1370,7 @@ "Wild Turkey\u00ae 101 bourbon whiskey" ], "title": "Gorilla Fart recipe", - "url": "http://www.drinksmixer.com/drink1135.html" + "url": "https://www.drinksmixer.com/drink1135.html" }, { "directions": "Pour ingredients into a stainless steel shaker over ice, and shake until completely cold. Strain into an old-fashioned glass, and serve.", @@ -1380,7 +1380,7 @@ "pineapple juice" ], "title": "Watermelon recipe", - "url": "http://www.drinksmixer.com/drink1136.html" + "url": "https://www.drinksmixer.com/drink1136.html" }, { "directions": "Pour ingredients into a stainless steel shaker over ice, and shake until completely cold. Strain into an old-fashioned glass, and serve.", @@ -1389,7 +1389,7 @@ "7-Up\u00ae soda" ], "title": "Watermelon #2 recipe", - "url": "http://www.drinksmixer.com/drink1137.html" + "url": "https://www.drinksmixer.com/drink1137.html" }, { "directions": "Pour ingredients into a stainless steel shaker over ice, and shake until completely cold. Strain into an old-fashioned glass, and serve.", @@ -1399,7 +1399,7 @@ "peppermint schnapps" ], "title": "Girl Scout Cookie recipe", - "url": "http://www.drinksmixer.com/drink1138.html" + "url": "https://www.drinksmixer.com/drink1138.html" }, { "directions": "Pour ingredients into a stainless steel shaker over ice. Shake until ice cold. Strain into a large shot glass, and serve.", @@ -1409,7 +1409,7 @@ "7-Up\u00ae soda" ], "title": "Purple Hooter recipe", - "url": "http://www.drinksmixer.com/drink1139.html" + "url": "https://www.drinksmixer.com/drink1139.html" }, { "directions": "Pour ingredients into a stainless steel shaker over ice, and shake until completely cold. Strain into an old-fashioned glass, and serve.", @@ -1419,7 +1419,7 @@ "Bailey's\u00ae Irish cream" ], "title": "Oatmeal Cookie recipe", - "url": "http://www.drinksmixer.com/drink1140.html" + "url": "https://www.drinksmixer.com/drink1140.html" }, { "directions": "Pour ingredients as listed into a Collins glass filled with ice.", @@ -1432,7 +1432,7 @@ "7-Up\u00ae soda" ], "title": "Daredevil recipe", - "url": "http://www.drinksmixer.com/drink1141.html" + "url": "https://www.drinksmixer.com/drink1141.html" }, { "directions": "Pour ingredients into a stainless steel shaker over ice, shake until completely cold then strain into a chilled stemmed glass or a Rocks glass filled with ice.", @@ -1442,7 +1442,7 @@ "Chambord\u00ae raspberry liqueur" ], "title": "Black Pearls recipe", - "url": "http://www.drinksmixer.com/drink1142.html" + "url": "https://www.drinksmixer.com/drink1142.html" }, { "directions": "Combine everything in a cocktail shaker with ice. Shake well and strain into a chilled cocktail glass. ", @@ -1453,7 +1453,7 @@ "sweet and sour mix" ], "title": "Cable Car recipe", - "url": "http://www.drinksmixer.com/drink1143.html" + "url": "https://www.drinksmixer.com/drink1143.html" }, { "directions": "Add vodka and frangelico to a shaker with ice. Shake. Garnish with a sugar-coated lemon. Shoot the drink, like you would tequila.", @@ -1463,7 +1463,7 @@ "sugar" ], "title": "Chocolate Cake recipe", - "url": "http://www.drinksmixer.com/drink1144.html" + "url": "https://www.drinksmixer.com/drink1144.html" }, { "directions": "Add sweet and sour & Midori to a shaker w/ice, shake and strain. Layer in razzberry liqueur and jager. Razzberry should go to the bottom and jager should float on top. Works best in Martini glass.", @@ -1474,7 +1474,7 @@ "Jagermeister\u00ae herbal liqueur" ], "title": "Sex with an Alligator recipe", - "url": "http://www.drinksmixer.com/drink1145.html" + "url": "https://www.drinksmixer.com/drink1145.html" }, { "directions": "Add liqueurs in an old-fashioned glass filled with ice. Add 1/2 oz lime juice. Fill with orange juice and float the grenadine.", @@ -1488,7 +1488,7 @@ "lime juice" ], "title": "Hop Skip and Go Naked recipe", - "url": "http://www.drinksmixer.com/drink1146.html" + "url": "https://www.drinksmixer.com/drink1146.html" }, { "directions": "Serve as is.", @@ -1497,7 +1497,7 @@ "butterscotch schnapps" ], "title": "Slippery Nipple recipe", - "url": "http://www.drinksmixer.com/drink1147.html" + "url": "https://www.drinksmixer.com/drink1147.html" }, { "directions": "Pour sambuca into a shot glass and float Bailey's on top. Enjoy.", @@ -1506,7 +1506,7 @@ "sambuca" ], "title": "Slippery Nipple #2 recipe", - "url": "http://www.drinksmixer.com/drink1148.html" + "url": "https://www.drinksmixer.com/drink1148.html" }, { "directions": "Put the Irish cream in first. Then slowly pour the Kahlua down the side of the glass so it doesn't mix. Then add the Butterscoth Schnapps on top nice and slow.", @@ -1516,7 +1516,7 @@ "Kahlua\u00ae coffee liqueur" ], "title": "Slippery Nipple #3 recipe", - "url": "http://www.drinksmixer.com/drink1149.html" + "url": "https://www.drinksmixer.com/drink1149.html" }, { "directions": "Place equal measures of tequila and kahlua in a glass with ice, stir, and serve.", @@ -1525,7 +1525,7 @@ "tequila" ], "title": "Cucaracha recipe", - "url": "http://www.drinksmixer.com/drink1150.html" + "url": "https://www.drinksmixer.com/drink1150.html" }, { "directions": "Pour the Skyy Vodka, Chamborde, Grape Pucker and Soda with a splash of cream into a shaker full of ice. \r", @@ -1539,7 +1539,7 @@ "ice" ], "title": "Grape Bubbolicious recipe", - "url": "http://www.drinksmixer.com/drink1151.html" + "url": "https://www.drinksmixer.com/drink1151.html" }, { "directions": "Blend ingredients. Best served in a hurricane glass with a straw.", @@ -1550,7 +1550,7 @@ "pineapple juice" ], "title": "Midori Colada recipe", - "url": "http://www.drinksmixer.com/drink1152.html" + "url": "https://www.drinksmixer.com/drink1152.html" }, { "directions": "Pour malibu rum in a highball glass, and top with orange juice. Stir. \r", @@ -1560,7 +1560,7 @@ "grenadine syrup" ], "title": "Malibu Sunrise recipe", - "url": "http://www.drinksmixer.com/drink1153.html" + "url": "https://www.drinksmixer.com/drink1153.html" }, { "directions": "Place an equal amount of Smirnoff Ice into three seperate half-pint glasses (from a full bottle of Smirnoff Ice). Add both half a shot of cointreau and half a shot of cassique to each. Mix the ingredients.\r", @@ -1571,7 +1571,7 @@ "Coca-Cola\u00ae" ], "title": "Complete Mess recipe", - "url": "http://www.drinksmixer.com/drink1154.html" + "url": "https://www.drinksmixer.com/drink1154.html" }, { "directions": "Pour the buttershots and carolanns into a shot glass. (let them mix) \r", @@ -1581,7 +1581,7 @@ "DeKuyper\u00ae Buttershots liqueur" ], "title": "The Real Slippery Nipple recipe", - "url": "http://www.drinksmixer.com/drink1155.html" + "url": "https://www.drinksmixer.com/drink1155.html" }, { "directions": "Add all ingredients in mixing tin with ice and shake til' VERY chilled. \r", @@ -1593,7 +1593,7 @@ "orange juice" ], "title": "Black Leather Whip recipe", - "url": "http://www.drinksmixer.com/drink1157.html" + "url": "https://www.drinksmixer.com/drink1157.html" }, { "directions": "add ingredients to a 16 oz draft glass, allow to mix, then chug, and enjoy the bathroom floor.", @@ -1604,7 +1604,7 @@ "Captain Morgan\u00ae Original spiced rum" ], "title": "The Bathroom Floor recipe", - "url": "http://www.drinksmixer.com/drink1158.html" + "url": "https://www.drinksmixer.com/drink1158.html" }, { "directions": "Mix all ingredients except cranberry juice and sprite in a shaker of ice. Add cranberry juice slowly till you reach desired gray color. Shake, top off wiht a splash of sprite. Garnish with a lemon peel. Enjoy", @@ -1619,7 +1619,7 @@ "Sprite\u00ae soda" ], "title": "The Maxim recipe", - "url": "http://www.drinksmixer.com/drink1159.html" + "url": "https://www.drinksmixer.com/drink1159.html" }, { "directions": "Layer:\r", @@ -1629,7 +1629,7 @@ "vodka" ], "title": "Bee Bite recipe", - "url": "http://www.drinksmixer.com/drink1160.html" + "url": "https://www.drinksmixer.com/drink1160.html" }, { "directions": "Build the ingredients in a coffee mug. Top with whipped cream, and garnish with a cherry.", @@ -1640,7 +1640,7 @@ "whipped cream" ], "title": "Spanish Coffee recipe", - "url": "http://www.drinksmixer.com/drink1161.html" + "url": "https://www.drinksmixer.com/drink1161.html" }, { "directions": "Beat yolks until light in color. Slowly add bourbon, cognac, while beating at slow speed. Chill 3 hrs. Add salt to whites, beat to peaks. Whip s cream until stiff. Fold whipped cream into yolk mixture, then fold in the beaten egg whites. Chill one hour. Serve with nutmeg sprinkled on top. For thinner mixture add 1 or 2 cups of milk. Serve in a punch bowl or another big bowl.\r\n", @@ -1654,7 +1654,7 @@ "salt" ], "title": "Egg Nog recipe", - "url": "http://www.drinksmixer.com/drink1162.html" + "url": "https://www.drinksmixer.com/drink1162.html" }, { "directions": "Separate 6 eggs. Beat yolks well. Beat in 1/2 cup sugar. Clean/degrease beaters and bowl. Beat egg whites until stiff peaks form. Beat in 1/2 cup sugar. Fold in yolks to whites. Gently stir in 1 pt heavy cream, 1 pt milk, 1 pt bourbon, and 1 oz rum. Serve as is or well chilled. Double recipe to fill a punch bowl.\r", @@ -1667,7 +1667,7 @@ "bourbon whiskey" ], "title": "Egg Nog #2 recipe", - "url": "http://www.drinksmixer.com/drink1163.html" + "url": "https://www.drinksmixer.com/drink1163.html" }, { "directions": "Separate eggs and refrigerate the whites. Beat ylks until light in color. Gradually beat in sugar, then slowly beat in 1 cup of rum. Let stand covered for atleast 1 hr. Add rest of liquor, cream, and peack brandy, beating constantly. Refrigerate, covered, for 3 hours. Beat egg whites until stiff, fold in. Serve sprinkled with nutmeg. Serve in a punch bowl or another medium sized bowl.\r", @@ -1680,7 +1680,7 @@ "apricot brandy" ], "title": "Egg Nog #3 recipe", - "url": "http://www.drinksmixer.com/drink1164.html" + "url": "https://www.drinksmixer.com/drink1164.html" }, { "directions": "In a small mixer bowl beat egg yolks till blended. Gradually add 1/4 cup sugar, beating at high speed till thick and lemon colored. Stir in milk, stir in rum, bourbon, vanilla, and salt. Chill thoroughly. Whip cream. Wash beaters well. In a large mixer bowl beat egg whites till soft peaks form. Gradually add remaining 1/4 cup sugar, beating to stiff peaks. Fold yolk mixture and whipped cream into egg whites. Serve immediately. Sprinkle nutmeg over each serving. Serve in a punch bowl or another big bowl. NOTE: For a nonalcoholic eggnog, prepare Eggnog as above, except omit the bourbon and rum and increase the milk to 3 cups.\r", @@ -1698,7 +1698,7 @@ "sugar" ], "title": "Egg Nog #4 recipe", - "url": "http://www.drinksmixer.com/drink1165.html" + "url": "https://www.drinksmixer.com/drink1165.html" }, { "directions": "In an electric mixer, beat the egg yolks with the sugar until thick and lemon colored. Slowly add the bourbon and cognac, while beating at a slow speed. Chill several hours. Add the salt to the egg whites and beat until almost stiff, or until the beaten whites form a peak that bends slightly. Whip the cream until stiff. Fold the whipped cream intothe yolk mixture, then fold in the beaten egg whites. Chill one hour. When ready to serve, sprinkle the top with freshly grated nutmeg. Serve in punch bowl. If desired, add one or two cups of milk to the yolk mixture for a thinner eggnog.\r", @@ -1712,7 +1712,7 @@ "salt" ], "title": "Egg Nog #5 recipe", - "url": "http://www.drinksmixer.com/drink1166.html" + "url": "https://www.drinksmixer.com/drink1166.html" }, { "directions": "Here's an egg nog recipe using cooked eggs, so no one has to be paranoid about salmonella. Mix granulated sugar, 2 Tbl. of water, and lemon juice in a med. sized sauce pan. Let boil, cook 5 min, until it turns dark amber. Remove from heat, and slowly stir in remaining 1/4 c. of water. Beat eggs and milk together in a bowl. Stir into sugar mixture, cook over med.-low heat for about 10 to 12 minutes. (It should thicken enough to stick to spoon) Poor into a clean bowl (punch bowl or something), stir in vanilla, nutmeg and salt. Refigerate, covered, until cold. Before serving, beat together cream, liquer, adn 10x sugar, until soft peaks form. Pour chilled eggnog into a serving bowl, fold in whipped cream with a whisk.\r", @@ -1730,7 +1730,7 @@ "hazelnut liqueur" ], "title": "Egg Nog - Cooked recipe", - "url": "http://www.drinksmixer.com/drink1167.html" + "url": "https://www.drinksmixer.com/drink1167.html" }, { "directions": "In large saucepan, beat together eggs, sugar and salt, if desired. Stir in 2 cups of the milk. Cook over low heat, stirring constantly, until mixture is thick enough to coat a metal spoon and reaches 160 degrees F. Remove from heat. Stir in remaining 2 cups milk and vanilla. Cover and regfigerate until thoroughly chilled, several hours or overnight. Just before serving, pour into bowl or pitcher. Garnish or add stir-ins, if desired. Choose 1 or several of: Chocolate curls, cinnamon sticks, extracts of flavorings, flavored brandy or liqueur, fruit juice or nectar, ground nutmeg, maraschino cherries, orange slices, peppermint sticks or candy canes, plain brandy, run or whiskey, sherbet or ice-cream, whipping cream, whipped. Serve immediately.\r", @@ -1742,7 +1742,7 @@ "vanilla" ], "title": "Egg-Nog - Classic Cooked recipe", - "url": "http://www.drinksmixer.com/drink1168.html" + "url": "https://www.drinksmixer.com/drink1168.html" }, { "directions": "Whip egg substitute and sugar together, combine with the two kinds of milk, vanilla, and rum. Mix well. Chill over night. Sprinkle with nutmeg. Makes 6 servings.\r", @@ -1756,7 +1756,7 @@ "vanilla" ], "title": "Egg Nog - Healthy recipe", - "url": "http://www.drinksmixer.com/drink1169.html" + "url": "https://www.drinksmixer.com/drink1169.html" }, { "directions": "Beat egg yolks until thick and lemon yellow, then beat in 1 cup sugar. Add slowly the rye, rum and peach liquer. Beat until smooth. Add the milk and half-and-half. Beat the egg whites until stiff but not dry, gradually adding 1/2 cup of confectioners sugar. Fold the egg whites into the batter. Just before serving, whip the cream and fold it into the other ingredients. Garnish with ground nutmeg. Serve in a punch bowl or another big bowl.\r", @@ -1771,7 +1771,7 @@ "peach liqueur" ], "title": "Egg Nog - Katie's recipe", - "url": "http://www.drinksmixer.com/drink1170.html" + "url": "https://www.drinksmixer.com/drink1170.html" }, { "directions": "Separate the eggs. In an electric mixer, beat the egg yolks with the sugar until thick and lemon colored. Slowly add the bourbon and cognac, while beating at slow speed. Chill several hours. Add the salt to the egg whites and beat until almost stiff, or until the beaten whites form a peak that bends slightly. Whip the cream until stiff. Fold the whipped cream into the yolk mixture, then fold in the beaten egg whites. Chill one hour. When ready to serve, sprinkle the top with freshly grated nutmeg.\r", @@ -1785,7 +1785,7 @@ "salt" ], "title": "Eggnog - Spiked recipe", - "url": "http://www.drinksmixer.com/drink1171.html" + "url": "https://www.drinksmixer.com/drink1171.html" }, { "directions": "Separate the eggs (yolk and white) Set the white aside. Mix yolks well, gradually adding the cream, milk, and sugar. Get back to the egg white - WHIP IT (whip it good!) until \"soft peaks\" form. Fold the white into the rest. Gradually add the alcohol. Either add nutmeg right away, or sprinkle on top later. AGE for at least 2 hours in refridgerator, uncovered.\r", @@ -1800,7 +1800,7 @@ "nutmeg" ], "title": "Egg Nog - Williamsburg recipe", - "url": "http://www.drinksmixer.com/drink1172.html" + "url": "https://www.drinksmixer.com/drink1172.html" }, { "directions": "Separate eggs. Beat yolks, add sugar. Add bourbon slowly while beating. Beat egg whites until stiff. Fold whites into egg yolk mixture, then fold whipped cream into mixture. Refrigerate for more than 4 days. Stir frequently to avoid separation. Color will change to a pale Serve w/nutmeg or cinnamon.\r", @@ -1811,7 +1811,7 @@ "bourbon whiskey" ], "title": "Eggnog - Kentucky Style recipe", - "url": "http://www.drinksmixer.com/drink1173.html" + "url": "https://www.drinksmixer.com/drink1173.html" }, { "directions": "Beat yolks until light. Add sugar and mix well. Add milk and rum. Mix well, then chill for at least 3 hours. One hour before serving, whip cream and stir into chilled mixture. Return to refrigerator for an hour. Serve in punch cups and dust with nutmeg. Serves 20", @@ -1824,7 +1824,7 @@ "whipping cream" ], "title": "Grandma's Swingin' Eggnog recipe", - "url": "http://www.drinksmixer.com/drink1174.html" + "url": "https://www.drinksmixer.com/drink1174.html" }, { "directions": "Shake all ingredients (except nutmeg) with ice and strain into a collins glass. Sprinkle nutmeg on top and serve.\r", @@ -1836,7 +1836,7 @@ "nutmeg" ], "title": "Rum Eggnog recipe", - "url": "http://www.drinksmixer.com/drink1175.html" + "url": "https://www.drinksmixer.com/drink1175.html" }, { "directions": "Shake sherry, powdered sugar, and egg with ice and strain into a collins glass. Fill with milk and stir. Sprinkle nutmeg on top and serve.\r", @@ -1848,7 +1848,7 @@ "nutmeg" ], "title": "Sherry Eggnog recipe", - "url": "http://www.drinksmixer.com/drink1176.html" + "url": "https://www.drinksmixer.com/drink1176.html" }, { "directions": "Shake well over ice cubes in a shaker and strain into a large highball glass over ice cubes. Sprinkle with nutmeg.\r", @@ -1862,7 +1862,7 @@ "milk" ], "title": "Waldorf-Astoria Eggnog recipe", - "url": "http://www.drinksmixer.com/drink1177.html" + "url": "https://www.drinksmixer.com/drink1177.html" }, { "directions": "Shake all ingredients (except nutmeg) with ice and strain into a collins glass. Sprinke nutmeg on top and serve.\r", @@ -1874,7 +1874,7 @@ "nutmeg" ], "title": "Whiskey Eggnog recipe", - "url": "http://www.drinksmixer.com/drink1178.html" + "url": "https://www.drinksmixer.com/drink1178.html" }, { "directions": "Mix the light rum, lemon juice, and grenadine. Add the ice cubes and fill to your own taste with Cranberry juice. Add a wedge of lemon on your glass and voila! Enjoy!", @@ -1887,7 +1887,7 @@ "cranberry juice" ], "title": "Rudolph the Red Nose Reindeer recipe", - "url": "http://www.drinksmixer.com/drink1179.html" + "url": "https://www.drinksmixer.com/drink1179.html" }, { "directions": "Place ice in a cocktail glass. Fill 1/2 the glass with Vodka and the rest of the glass (leaving 3 cm at the top) with sour mix. Add a tablespoon of Grenadine per 8 oz. glass. Garnish with an orange slice and cherry!\r", @@ -1897,7 +1897,7 @@ "grenadine syrup" ], "title": "Cherry Vodka Sour recipe", - "url": "http://www.drinksmixer.com/drink1180.html" + "url": "https://www.drinksmixer.com/drink1180.html" }, { "directions": "Pour just a tad of Crown (depending on how much you can handle) into a shot glass. Fill the rest of the shot glass with Apple Pucker.", @@ -1906,7 +1906,7 @@ "DeKuyper\u00ae Sour Apple Pucker schnapps" ], "title": "Royal Fuck recipe", - "url": "http://www.drinksmixer.com/drink1181.html" + "url": "https://www.drinksmixer.com/drink1181.html" }, { "directions": "Combine Captain Morgan spiced rum with IBC Root Beer over ice in a collins or tall glass. Stir, and serve.", @@ -1915,7 +1915,7 @@ "Captain Morgan\u00ae Original spiced rum" ], "title": "Hard Root Beer recipe", - "url": "http://www.drinksmixer.com/drink1182.html" + "url": "https://www.drinksmixer.com/drink1182.html" }, { "directions": "Shake and strain into a highball glass.", @@ -1927,7 +1927,7 @@ "Sprite\u00ae soda" ], "title": "Belinda's Fuzzy Melon recipe", - "url": "http://www.drinksmixer.com/drink1183.html" + "url": "https://www.drinksmixer.com/drink1183.html" }, { "directions": "Fill tall glass with ice, add first 5 ingredients then top off with pineapple juice. Shake thoroughly. Add a dash or two of grenadine, stir gently and then listen to the sound of the warm Carribean breezes flowing through the palm trees.", @@ -1941,7 +1941,7 @@ "cream of coconut" ], "title": "Belize Rum Punch recipe", - "url": "http://www.drinksmixer.com/drink1184.html" + "url": "https://www.drinksmixer.com/drink1184.html" }, { "directions": "Shake and pour into cocktail glass.", @@ -1951,7 +1951,7 @@ "light cream" ], "title": "Belle Melon recipe", - "url": "http://www.drinksmixer.com/drink1185.html" + "url": "https://www.drinksmixer.com/drink1185.html" }, { "directions": "In a shaker half-filled with ice cubes, combine all of the ingredients. Shake well. Strain into a cocktail glass.", @@ -1962,7 +1962,7 @@ "lemon juice" ], "title": "Belles Of St. Mary's recipe", - "url": "http://www.drinksmixer.com/drink1186.html" + "url": "https://www.drinksmixer.com/drink1186.html" }, { "directions": "Mix ingredients and serve.", @@ -1971,7 +1971,7 @@ "peach schnapps" ], "title": "Bellini #2 recipe", - "url": "http://www.drinksmixer.com/drink1187.html" + "url": "https://www.drinksmixer.com/drink1187.html" }, { "directions": "Add ice cubes to shaker. Add vodka. Add peach schnapps. Add peach nectar. Shake. Strain into glass. Add lemon twist.(peel)", @@ -1983,7 +1983,7 @@ "lemon" ], "title": "Bellini Martini recipe", - "url": "http://www.drinksmixer.com/drink1188.html" + "url": "https://www.drinksmixer.com/drink1188.html" }, { "directions": "Pour peach puree into glass and slowly add champagne. Stir gently. Garnish with a peach slice.", @@ -1992,7 +1992,7 @@ "Champagne" ], "title": "Bellini recipe", - "url": "http://www.drinksmixer.com/drink1189.html" + "url": "https://www.drinksmixer.com/drink1189.html" }, { "directions": "Mix all ingredients, and pour over ice if desired.", @@ -2002,7 +2002,7 @@ "orange juice" ], "title": "Bend Me Over recipe", - "url": "http://www.drinksmixer.com/drink1190.html" + "url": "https://www.drinksmixer.com/drink1190.html" }, { "directions": "In a shaker half-filled with ice cubes, combine all of the ingredients. Shake well. Strain into a cocktail glass.", @@ -2014,7 +2014,7 @@ "bitters" ], "title": "Bengal recipe", - "url": "http://www.drinksmixer.com/drink1191.html" + "url": "https://www.drinksmixer.com/drink1191.html" }, { "directions": "Shake all ingredients with ice, strain into a cocktail glass, and serve.", @@ -2025,7 +2025,7 @@ "orange bitters" ], "title": "Bennett Cocktail recipe", - "url": "http://www.drinksmixer.com/drink1192.html" + "url": "https://www.drinksmixer.com/drink1192.html" }, { "directions": "Fill Collins Glass with a heaping of ice. Pour in Vodka, Gin, 1/2 of remaining glass with O.J., then rest with Grapefruit. Skake, don't stir. Then add a healthy splah of Coca-cola.", @@ -2037,7 +2037,7 @@ "Coca-Cola\u00ae" ], "title": "Bent Bum recipe", - "url": "http://www.drinksmixer.com/drink1193.html" + "url": "https://www.drinksmixer.com/drink1193.html" }, { "directions": "Stir apple brandy and Dubonnet with cracked ice and strain into a cocktail glass. Add the twist of lemon peel and serve.", @@ -2047,7 +2047,7 @@ "lemon" ], "title": "Bentley recipe", - "url": "http://www.drinksmixer.com/drink1194.html" + "url": "https://www.drinksmixer.com/drink1194.html" }, { "directions": "Take a shaker filled with ice. Add 2 oz smirnoff vodka, 3 dashes of schnapps, a wee splash of black zambuca and shake well, keeping your feet firmly planted, posture perfect. Strain into a chilled martini glass. Garnish with a blackberry.", @@ -2057,7 +2057,7 @@ "black sambuca" ], "title": "Berlin Martini recipe", - "url": "http://www.drinksmixer.com/drink1195.html" + "url": "https://www.drinksmixer.com/drink1195.html" }, { "directions": "Pour brandy, gin, and dry vermouth into a highball glass over ice cubes. Fill with carbonated water and stir. Add the twist of lemon and serve. (Ginger ale may be substituted for carbonated water, if preferred.)", @@ -2069,7 +2069,7 @@ "lemon" ], "title": "Bermuda Highball recipe", - "url": "http://www.drinksmixer.com/drink1196.html" + "url": "https://www.drinksmixer.com/drink1196.html" }, { "directions": "Shake all ingredients with ice, strain into a cocktail glass, and serve.", @@ -2079,7 +2079,7 @@ "grenadine syrup" ], "title": "Bermuda Rose recipe", - "url": "http://www.drinksmixer.com/drink1197.html" + "url": "https://www.drinksmixer.com/drink1197.html" }, { "directions": "Stir or shake vigorously until a frothing head appears. Strain into sour glasses. Garnish with a slice of orange or a Maraschino Cherry.", @@ -2093,7 +2093,7 @@ "grenadine syrup" ], "title": "Bermuda Rum Swizzle recipe", - "url": "http://www.drinksmixer.com/drink1198.html" + "url": "https://www.drinksmixer.com/drink1198.html" }, { "directions": "Add ingredients over ice, stir gently and garnish with a fresh orange slice.", @@ -2103,7 +2103,7 @@ "orange juice" ], "title": "Bermuda Triangle recipe", - "url": "http://www.drinksmixer.com/drink1199.html" + "url": "https://www.drinksmixer.com/drink1199.html" }, { "directions": "The Bernardete is very sweet, lots of fun and yet very easy to mix. Just put 3-4 ice cubes in a tall glass and cover with the Peach Liqueur. Then fill up the glass to the top with Peach Juice. Both ingredients should have been in the fridge before serving.", @@ -2113,7 +2113,7 @@ "ice cubes" ], "title": "Bernardete recipe", - "url": "http://www.drinksmixer.com/drink1200.html" + "url": "https://www.drinksmixer.com/drink1200.html" }, { "directions": "In a shaker half-filled with ice cubes, combine the gin, triple sec, lemon juice, and bitters. Shake well. Strain into a cocktail glass and garnish with the lemon twist.", @@ -2125,7 +2125,7 @@ "lemon" ], "title": "Bernardo recipe", - "url": "http://www.drinksmixer.com/drink1201.html" + "url": "https://www.drinksmixer.com/drink1201.html" }, { "directions": "Combine all ingredients in a shaker and shake vigorously for 20 sec. Strain and serve with one fresh ice cube.\r", @@ -2136,7 +2136,7 @@ "ice cubes" ], "title": "Berry Buster recipe", - "url": "http://www.drinksmixer.com/drink1202.html" + "url": "https://www.drinksmixer.com/drink1202.html" }, { "directions": "Add all ingredients to large bowl. Stir gently. Serve chilled.\r", @@ -2147,7 +2147,7 @@ "Kool-Aid\u00ae Berry Blue mix" ], "title": "Berry Deadly recipe", - "url": "http://www.drinksmixer.com/drink1203.html" + "url": "https://www.drinksmixer.com/drink1203.html" }, { "directions": "Pour ingredients over ice in a small highball glass, and serve.", @@ -2157,7 +2157,7 @@ "orange juice" ], "title": "Berry Me In The Sand recipe", - "url": "http://www.drinksmixer.com/drink1204.html" + "url": "https://www.drinksmixer.com/drink1204.html" }, { "directions": "Place all ingredients in the blender jar - cover and whiz on medium speed until well blended. Pour into a collins glass, and serve.", @@ -2167,7 +2167,7 @@ "honey" ], "title": "Berry-Berry recipe", - "url": "http://www.drinksmixer.com/drink1205.html" + "url": "https://www.drinksmixer.com/drink1205.html" }, { "directions": "Shake all ingredients with ice and strain into a highball glass. Garnish with a strawberry on the glass, and with another summer berry held on with a toothpick.", @@ -2181,7 +2181,7 @@ "sugar syrup" ], "title": "Berrynice recipe", - "url": "http://www.drinksmixer.com/drink1206.html" + "url": "https://www.drinksmixer.com/drink1206.html" }, { "directions": "Pour shot of Amaretto into glass and fill with pineapple juice. Mixing is optional.", @@ -2190,7 +2190,7 @@ "pineapple juice" ], "title": "The Berserker recipe", - "url": "http://www.drinksmixer.com/drink1207.html" + "url": "https://www.drinksmixer.com/drink1207.html" }, { "directions": "Mix alcohol first, then add cola.", @@ -2201,7 +2201,7 @@ "Coca-Cola\u00ae" ], "title": "Beth's Own recipe", - "url": "http://www.drinksmixer.com/drink1208.html" + "url": "https://www.drinksmixer.com/drink1208.html" }, { "directions": "F\ufffdrst you take Vodka but don't swallow it and then you take Cream in you mouth and mix then in your mouth and swallow.", @@ -2210,7 +2210,7 @@ "Bailey's\u00ae Irish cream" ], "title": "Betonimylly recipe", - "url": "http://www.drinksmixer.com/drink1209.html" + "url": "https://www.drinksmixer.com/drink1209.html" }, { "directions": "Pour ingredients over ice. Stir. Garnish with an orange wedge. Enjoy!", @@ -2220,7 +2220,7 @@ "Sprite\u00ae soda" ], "title": "Betsy Clear recipe", - "url": "http://www.drinksmixer.com/drink1210.html" + "url": "https://www.drinksmixer.com/drink1210.html" }, { "directions": "Combine ingredients in a mixing glass half-filled with crushed ice. Stir well, strain into a cocktail glass, and serve.", @@ -2231,7 +2231,7 @@ "crushed ice" ], "title": "Betsy Ross recipe", - "url": "http://www.drinksmixer.com/drink1211.html" + "url": "https://www.drinksmixer.com/drink1211.html" }, { "directions": "Mix ingredients together, then freeze drink until slushy (usually 2 hours). Serve in highball glass, and enjoy!", @@ -2241,7 +2241,7 @@ "ginger ale" ], "title": "The Better Fuzzy Navel recipe", - "url": "http://www.drinksmixer.com/drink1212.html" + "url": "https://www.drinksmixer.com/drink1212.html" }, { "directions": "Add grenadine (based on desired sweetness), followed by absolut. Add ice and then sprite (her preferred mixing).", @@ -2251,7 +2251,7 @@ "grenadine syrup" ], "title": "The Betty Ford recipe", - "url": "http://www.drinksmixer.com/drink1213.html" + "url": "https://www.drinksmixer.com/drink1213.html" }, { "directions": "Mix the gin and vermouth like you would a normal martini. Pour into cocktail glass and add cherry liqueur. Garnish with cherry.", @@ -2262,7 +2262,7 @@ "cherry" ], "title": "Betty Paige recipe", - "url": "http://www.drinksmixer.com/drink1214.html" + "url": "https://www.drinksmixer.com/drink1214.html" }, { "directions": "Fill glass half full with ice. Add vodka, triple sec, & Everclear. Top off with grapefruit juice.", @@ -2273,7 +2273,7 @@ "grapefruit juice" ], "title": "B.F.D. recipe", - "url": "http://www.drinksmixer.com/drink1216.html" + "url": "https://www.drinksmixer.com/drink1216.html" }, { "directions": "Pour coconut rum first then add amaretto.", @@ -2282,7 +2282,7 @@ "amaretto almond liqueur" ], "title": "The Bianca Pop recipe", - "url": "http://www.drinksmixer.com/drink1217.html" + "url": "https://www.drinksmixer.com/drink1217.html" }, { "directions": "Mix all ingredients, pour over ice, and serve.", @@ -2293,7 +2293,7 @@ "sweet and sour mix" ], "title": "Bible Belt recipe", - "url": "http://www.drinksmixer.com/drink1218.html" + "url": "https://www.drinksmixer.com/drink1218.html" }, { "directions": "Shake all ingredients with ice, strain into a cocktail glass, and serve.", @@ -2303,7 +2303,7 @@ "lemons" ], "title": "Biffy Cocktail recipe", - "url": "http://www.drinksmixer.com/drink1219.html" + "url": "https://www.drinksmixer.com/drink1219.html" }, { "directions": "Pour vodka into a collins glass over three or four ice cubes and fill with apple juice. Pour creme de menthe, stir, and serve.", @@ -2313,7 +2313,7 @@ "green creme de menthe" ], "title": "Big Apple recipe", - "url": "http://www.drinksmixer.com/drink1220.html" + "url": "https://www.drinksmixer.com/drink1220.html" }, { "directions": "Sling Malibu, RedRum and Midori in a highball glass filled with ice. Top off with Orange, pineapple juices and a splash of soda. Mix it up with your swizzle stick and Go Daddy-O!", @@ -2326,7 +2326,7 @@ "pineapple juice" ], "title": "Big Bad Voodoo Kooler recipe", - "url": "http://www.drinksmixer.com/drink1221.html" + "url": "https://www.drinksmixer.com/drink1221.html" }, { "directions": "Over ice in a 20 oz glass; pour booze in first and top with pineapple juice, giving it a two layered look with the brown amaretto on bottom. Add two straws, two cherries and serve.", @@ -2338,7 +2338,7 @@ "pineapple juice" ], "title": "The Big Banana recipe", - "url": "http://www.drinksmixer.com/drink1222.html" + "url": "https://www.drinksmixer.com/drink1222.html" }, { "directions": "Blend.", @@ -2349,7 +2349,7 @@ "Southern Comfort\u00ae peach liqueur" ], "title": "Big Booty Shake recipe", - "url": "http://www.drinksmixer.com/drink1223.html" + "url": "https://www.drinksmixer.com/drink1223.html" }, { "directions": "Combine ingredients on-the-rocks (over ice cubes) in an old-fashioned glass, and serve.", @@ -2359,7 +2359,7 @@ "lemon" ], "title": "Big Brothers recipe", - "url": "http://www.drinksmixer.com/drink1224.html" + "url": "https://www.drinksmixer.com/drink1224.html" }, { "directions": "Mix tequila and kahlua in a whiskey glass and serve with lotsa ice...", @@ -2368,7 +2368,7 @@ "Kahlua\u00ae coffee liqueur" ], "title": "Big Bull recipe", - "url": "http://www.drinksmixer.com/drink1225.html" + "url": "https://www.drinksmixer.com/drink1225.html" }, { "directions": "Pour over ice & stir.", @@ -2379,7 +2379,7 @@ "ice cubes" ], "title": "Big Daddy recipe", - "url": "http://www.drinksmixer.com/drink1226.html" + "url": "https://www.drinksmixer.com/drink1226.html" }, { "directions": "Fill the glass with ice. I like to use a standard beer glass. Add about 2 shots of vodka. Then fill the glass about 3/4th of the way with Sprite. Then add just a splash of pineapple juice. Finally, add the Blue Maui until you get a faint (almost skyblue) blue color. Stir.", @@ -2391,7 +2391,7 @@ "Maui\u00ae Blue Hawaiian schnapps" ], "title": "Big Dumb Russian recipe", - "url": "http://www.drinksmixer.com/drink1227.html" + "url": "https://www.drinksmixer.com/drink1227.html" }, { "directions": "Make shot in mixing glass with ice and strain into a shot glass.", @@ -2403,7 +2403,7 @@ "cranberry juice" ], "title": "Big Pine Puss recipe", - "url": "http://www.drinksmixer.com/drink1229.html" + "url": "https://www.drinksmixer.com/drink1229.html" }, { "directions": "Combine peach, lime juice, sugar and rum in a blender; puree until smooth. Almost fill a large wine glass with crushed ice. Pour peach mixture over, garnish with a mint sprig and serve immediately. ", @@ -2414,7 +2414,7 @@ "white rum" ], "title": "Peach Daiquiri recipe", - "url": "http://www.drinksmixer.com/drink1231.html" + "url": "https://www.drinksmixer.com/drink1231.html" }, { "directions": "Combine in blender with ice until smooth. Serve in a large cocktail glass.\r", @@ -2425,7 +2425,7 @@ "rum" ], "title": "Classic Peach Daiquiri recipe", - "url": "http://www.drinksmixer.com/drink1232.html" + "url": "https://www.drinksmixer.com/drink1232.html" }, { "directions": "Mix with shaved ice in blender; serve in wine glass. \r", @@ -2437,7 +2437,7 @@ "peaches" ], "title": "Frozen Peach Daiquiri recipe", - "url": "http://www.drinksmixer.com/drink1233.html" + "url": "https://www.drinksmixer.com/drink1233.html" }, { "directions": "Combine the peaches, lime juice, rum, schnapps, brandy, vanilla, and sugar in the blender until smooth. Slowly add the ice with the blender running and process until smooth. Serve in chilled cocktail glasses.", @@ -2452,7 +2452,7 @@ "apricot brandy" ], "title": "Peach Daiquiri #2 recipe", - "url": "http://www.drinksmixer.com/drink1234.html" + "url": "https://www.drinksmixer.com/drink1234.html" }, { "directions": "Pour over Ice and serve.\r", @@ -2461,7 +2461,7 @@ "vodka" ], "title": "Heart Attack recipe", - "url": "http://www.drinksmixer.com/drink1235.html" + "url": "https://www.drinksmixer.com/drink1235.html" }, { "directions": "Pour ingredients into 1 ounce shot glass", @@ -2470,7 +2470,7 @@ "Goldschlager\u00ae cinnamon schnapps" ], "title": "Big Red recipe", - "url": "http://www.drinksmixer.com/drink1236.html" + "url": "https://www.drinksmixer.com/drink1236.html" }, { "directions": "Throw the five shots into a glass, and add the coke or pepsi. Some ice may be necessary.", @@ -2483,7 +2483,7 @@ "amaretto almond liqueur" ], "title": "The Big Robowski recipe", - "url": "http://www.drinksmixer.com/drink1237.html" + "url": "https://www.drinksmixer.com/drink1237.html" }, { "directions": "Build over ice in an 11 oz. glass. Looks and tastes like a big stick popsicle.", @@ -2493,7 +2493,7 @@ "peach schnapps" ], "title": "Big Stick recipe", - "url": "http://www.drinksmixer.com/drink1238.html" + "url": "https://www.drinksmixer.com/drink1238.html" }, { "directions": "Mix in a shot glass and enjoy.", @@ -2502,7 +2502,7 @@ "Pernod\u00ae licorice liqueur" ], "title": "Big Time recipe", - "url": "http://www.drinksmixer.com/drink1239.html" + "url": "https://www.drinksmixer.com/drink1239.html" }, { "directions": "With tequila already in glass, pour Blue Curacao down the side so that it underlays the tequila. Do not mix!", @@ -2511,7 +2511,7 @@ "Blue Curacao liqueur" ], "title": "Big Unit recipe", - "url": "http://www.drinksmixer.com/drink1240.html" + "url": "https://www.drinksmixer.com/drink1240.html" }, { "directions": "Try to layer in shot glass.", @@ -2522,7 +2522,7 @@ "sweet and sour mix" ], "title": "The Big-V recipe", - "url": "http://www.drinksmixer.com/drink1241.html" + "url": "https://www.drinksmixer.com/drink1241.html" }, { "directions": "Pour over ice in glass. Shake or stir, add cherry and if you would like an additional splash of color, add a few drops of cherry grenadine.", @@ -2535,7 +2535,7 @@ "cherry" ], "title": "Bigger Better Blue Lagoon recipe", - "url": "http://www.drinksmixer.com/drink1242.html" + "url": "https://www.drinksmixer.com/drink1242.html" }, { "directions": "Shake all ingredients (except the cherry) with ice and strain into a cocktail glass. Add the cherry on top and serve.", @@ -2547,7 +2547,7 @@ "cherry" ], "title": "Bijou Cocktail recipe", - "url": "http://www.drinksmixer.com/drink1243.html" + "url": "https://www.drinksmixer.com/drink1243.html" }, { "directions": "Shake rum, vodka, milk, sugar, and juice of lemon with ice and strain into a cocktail glass. Decorate with a twist of lemon and serve.", @@ -2560,7 +2560,7 @@ "lemons" ], "title": "Bikini Cocktail recipe", - "url": "http://www.drinksmixer.com/drink1244.html" + "url": "https://www.drinksmixer.com/drink1244.html" }, { "directions": "Pour gin and juice of lime into a collins glass over ice cubes. Fill with carbonated water, stir, and serve.", @@ -2570,7 +2570,7 @@ "carbonated water" ], "title": "Billy Taylor recipe", - "url": "http://www.drinksmixer.com/drink1245.html" + "url": "https://www.drinksmixer.com/drink1245.html" }, { "directions": "Build in highball glass with lots of ice. Garnish with slice of orange and cocktail cherry.", @@ -2581,7 +2581,7 @@ "Farris\u00ae soda water" ], "title": "Bingo recipe", - "url": "http://www.drinksmixer.com/drink1246.html" + "url": "https://www.drinksmixer.com/drink1246.html" }, { "directions": "Put a little crushed ice in the bottom of the pitcher, then the beer, and then the shots. Then top off the pitcher with equal amounts of Orange Juice and 7-Up. Stir.", @@ -2596,7 +2596,7 @@ "grenadine syrup" ], "title": "Bionic Beaver recipe", - "url": "http://www.drinksmixer.com/drink1247.html" + "url": "https://www.drinksmixer.com/drink1247.html" }, { "directions": "First pour the Vodka then fill up with the Grapefruit soda or juice. Then add the lemon juice.", @@ -2606,7 +2606,7 @@ "lemons" ], "title": "The Bionic Drink recipe", - "url": "http://www.drinksmixer.com/drink1248.html" + "url": "https://www.drinksmixer.com/drink1248.html" }, { "directions": "Combine all ingredients, stir, and serve.", @@ -2617,7 +2617,7 @@ "ice cubes" ], "title": "Bird of Paradise recipe", - "url": "http://www.drinksmixer.com/drink1249.html" + "url": "https://www.drinksmixer.com/drink1249.html" }, { "directions": "Shake juice of lemon, juice of orange, and powdered sugar with ice and strain into a highball glass. Add two ice cubes, fill with burgundy, and stir well. Decorate with various fruits and serve.", @@ -2628,7 +2628,7 @@ "Burgundy wine" ], "title": "Bishop Cocktail recipe", - "url": "http://www.drinksmixer.com/drink1250.html" + "url": "https://www.drinksmixer.com/drink1250.html" }, { "directions": "Let sugar, water and spices simmer for two hours. Strain. Add wine and alcohol. Serve.", @@ -2642,7 +2642,7 @@ "alcohol" ], "title": "Bisp recipe", - "url": "http://www.drinksmixer.com/drink1251.html" + "url": "https://www.drinksmixer.com/drink1251.html" }, { "directions": "Add ingredients (cream as desired), shake and pour over ice in a hurricane glass.", @@ -2654,7 +2654,7 @@ "cream" ], "title": "Bit of Russian Honey recipe", - "url": "http://www.drinksmixer.com/drink1252.html" + "url": "https://www.drinksmixer.com/drink1252.html" }, { "directions": "Mix vodka, 7-up, gin, everclear and rum together over ice in a highball glass. Fill with lemonade, and serve.", @@ -2667,7 +2667,7 @@ "lemonade" ], "title": "Bitch Slap recipe", - "url": "http://www.drinksmixer.com/drink1253.html" + "url": "https://www.drinksmixer.com/drink1253.html" }, { "directions": "In a mixing glass half-filled with ice cubes, combine all of the ingredients. Stir well. Strain into a cocktail glass.", @@ -2678,7 +2678,7 @@ "Pernod\u00ae licorice liqueur" ], "title": "Bitch-On-Wheels recipe", - "url": "http://www.drinksmixer.com/drink1254.html" + "url": "https://www.drinksmixer.com/drink1254.html" }, { "directions": "Pour the chamborde into a shaker, add cream or milk and shake well. Pour into an Irish Cream mug filled with ice. Enjoy!", @@ -2688,7 +2688,7 @@ "ice" ], "title": "Bitches Tit recipe", - "url": "http://www.drinksmixer.com/drink1255.html" + "url": "https://www.drinksmixer.com/drink1255.html" }, { "directions": "Mix ingredients and shake. Strain and pour into shot glass. Share with a friend.", @@ -2701,7 +2701,7 @@ "sweet and sour mix" ], "title": "Bite of the Iguana recipe", - "url": "http://www.drinksmixer.com/drink1257.html" + "url": "https://www.drinksmixer.com/drink1257.html" }, { "directions": "Mix JD & vodka together, add dash of lemon juice and top up glass with coke!", @@ -2712,7 +2712,7 @@ "Coca-Cola\u00ae" ], "title": "Bitter Pill recipe", - "url": "http://www.drinksmixer.com/drink1259.html" + "url": "https://www.drinksmixer.com/drink1259.html" }, { "directions": "Stir ingredients in a mixing glass with ice. Strain into a cocktail glass. Garnish with an orange peel.", @@ -2723,7 +2723,7 @@ "Angostura\u00ae bitters" ], "title": "Bittersweet Jack recipe", - "url": "http://www.drinksmixer.com/drink1260.html" + "url": "https://www.drinksmixer.com/drink1260.html" }, { "directions": "Add all liquid ingredients to mason jar and add ice to taste. Stir well and add slice of lemon.", @@ -2733,7 +2733,7 @@ "lemon" ], "title": "Bittersweet With A Twist recipe", - "url": "http://www.drinksmixer.com/drink1261.html" + "url": "https://www.drinksmixer.com/drink1261.html" }, { "directions": "Pour lemon juice and vodka into a collins glass. Mix together, fill with ginger ale, and serve.", @@ -2743,7 +2743,7 @@ "ginger ale" ], "title": "Bjorns Moscow Mule recipe", - "url": "http://www.drinksmixer.com/drink1262.html" + "url": "https://www.drinksmixer.com/drink1262.html" }, { "directions": "Place all ingredients into a blender jar. Cover, and whiz on medium speed until well blended. Pour into a collins glass, and serve.", @@ -2754,7 +2754,7 @@ "lemon juice" ], "title": "Black & Blue Berries recipe", - "url": "http://www.drinksmixer.com/drink1263.html" + "url": "https://www.drinksmixer.com/drink1263.html" }, { "directions": "Fill stien half full with Bass. Next pour Guiness over a spoon slowly until glass is full. If done correctly the Guiness will stay on top and the Bass on bottom hence the name Black & Tan.", @@ -2763,7 +2763,7 @@ "Guinness\u00ae stout" ], "title": "Black & Tan recipe", - "url": "http://www.drinksmixer.com/drink1264.html" + "url": "https://www.drinksmixer.com/drink1264.html" }, { "directions": "Gently shake ingredients with ice and strain into cocktail glass.", @@ -2773,7 +2773,7 @@ "vodka" ], "title": "Black and Blue #2 recipe", - "url": "http://www.drinksmixer.com/drink1265.html" + "url": "https://www.drinksmixer.com/drink1265.html" }, { "directions": "Mix all ingredients into a small glass shot and enjoy.", @@ -2784,7 +2784,7 @@ "Blue Curacao liqueur" ], "title": "Black and Blue Shark recipe", - "url": "http://www.drinksmixer.com/drink1266.html" + "url": "https://www.drinksmixer.com/drink1266.html" }, { "directions": "Layer in order.", @@ -2793,7 +2793,7 @@ "Blavod\u00ae vodka" ], "title": "Black and Blue recipe", - "url": "http://www.drinksmixer.com/drink1267.html" + "url": "https://www.drinksmixer.com/drink1267.html" }, { "directions": "CAREFULLY to avoid explosive head formation: Pour Beer glass half full of favorite rootbeer and top off with Guinness.\r", @@ -2802,7 +2802,7 @@ "root beer" ], "title": "Black and Brown recipe", - "url": "http://www.drinksmixer.com/drink1268.html" + "url": "https://www.drinksmixer.com/drink1268.html" }, { "directions": "Stir the ingredients with and and pour into a well-chilled cocktail glass.", @@ -2811,7 +2811,7 @@ "milk" ], "title": "Black and White recipe", - "url": "http://www.drinksmixer.com/drink1269.html" + "url": "https://www.drinksmixer.com/drink1269.html" }, { "directions": "Pour gently, i'ts important to get 2 layers. Use a shot glass. You can use 2 cl of each, if 3 is too much for you.", @@ -2820,7 +2820,7 @@ "Jagermeister\u00ae herbal liqueur" ], "title": "Black Army recipe", - "url": "http://www.drinksmixer.com/drink1270.html" + "url": "https://www.drinksmixer.com/drink1270.html" }, { "directions": "In a shaker half-filled with ice cubes, combine all of the ingredients. Shake well. Strain into a cocktail glass.", @@ -2830,7 +2830,7 @@ "egg" ], "title": "Black Baltimore recipe", - "url": "http://www.drinksmixer.com/drink1271.html" + "url": "https://www.drinksmixer.com/drink1271.html" }, { "directions": "Add the Cider to the liqueur. Serve Cold.", @@ -2839,7 +2839,7 @@ "Hornsby's Draft\u00ae cider" ], "title": "Black Bird Cider recipe", - "url": "http://www.drinksmixer.com/drink1272.html" + "url": "https://www.drinksmixer.com/drink1272.html" }, { "directions": "Layer Bailey's irish cream over black sambuca. Top with bacardi 151 rum.", @@ -2849,7 +2849,7 @@ "Bacardi\u00ae 151 rum" ], "title": "Black Bitch recipe", - "url": "http://www.drinksmixer.com/drink1273.html" + "url": "https://www.drinksmixer.com/drink1273.html" }, { "directions": "Pour Tequila and blackberry brandy together. Add club soda. Drink like a shooter.", @@ -2859,7 +2859,7 @@ "club soda" ], "title": "Black Cactus recipe", - "url": "http://www.drinksmixer.com/drink1274.html" + "url": "https://www.drinksmixer.com/drink1274.html" }, { "directions": "Mix black sambuca into a glass filled with 6 ounces of eggnog. Stir, and serve.", @@ -2868,7 +2868,7 @@ "eggnog" ], "title": "Black Christmas recipe", - "url": "http://www.drinksmixer.com/drink1276.html" + "url": "https://www.drinksmixer.com/drink1276.html" }, { "directions": "Pour over ice. Stir lightly. Tastes like the treat known as a Black Cow, which is vanilla ice cream and root beer.", @@ -2878,7 +2878,7 @@ "Coca-Cola\u00ae" ], "title": "Black Cow #2 recipe", - "url": "http://www.drinksmixer.com/drink1277.html" + "url": "https://www.drinksmixer.com/drink1277.html" }, { "directions": "Pour Coke into glass of milk.", @@ -2887,7 +2887,7 @@ "Coca-Cola\u00ae" ], "title": "Black Cow #3 recipe", - "url": "http://www.drinksmixer.com/drink1278.html" + "url": "https://www.drinksmixer.com/drink1278.html" }, { "directions": "Pour root beer over ice cream and chocolate syrup in a large tumbler glass. Garnish with whipped cream and a maraschino cherry. Serve with a straw and a long spoon.", @@ -2899,7 +2899,7 @@ "maraschino cherries" ], "title": "Black Cow recipe", - "url": "http://www.drinksmixer.com/drink1279.html" + "url": "https://www.drinksmixer.com/drink1279.html" }, { "directions": "Mix ingredients in shaker and pour over ice. Serve cold. Great on a hot day!", @@ -2908,7 +2908,7 @@ "soy sauce" ], "title": "The Black Death recipe", - "url": "http://www.drinksmixer.com/drink1280.html" + "url": "https://www.drinksmixer.com/drink1280.html" }, { "directions": "In a layering glass, layer the ingredients in the following order: Kahlua, Romana Sambuca, Bailey's, and half and half.", @@ -2919,7 +2919,7 @@ "half-and-half" ], "title": "Black Death recipe", - "url": "http://www.drinksmixer.com/drink1281.html" + "url": "https://www.drinksmixer.com/drink1281.html" }, { "directions": "Stir rum and vermouth with cracked ice and strain into a cocktail glass. Top with the black olive and serve.", @@ -2929,7 +2929,7 @@ "olive" ], "title": "Black Devil recipe", - "url": "http://www.drinksmixer.com/drink1282.html" + "url": "https://www.drinksmixer.com/drink1282.html" }, { "directions": "First add the mint schnapps, then add the kahlua and finally add the scotch. If done correctly you should have three different layers.", @@ -2939,7 +2939,7 @@ "Glenfiddich\u00ae Scotch whisky" ], "title": "Black Dragon recipe", - "url": "http://www.drinksmixer.com/drink1283.html" + "url": "https://www.drinksmixer.com/drink1283.html" }, { "directions": "Stir with ice. Strain into a chilled cocktail glass. Garnish with an Orange Twist.", @@ -2950,7 +2950,7 @@ "Angostura\u00ae bitters" ], "title": "Black Feather recipe", - "url": "http://www.drinksmixer.com/drink1284.html" + "url": "https://www.drinksmixer.com/drink1284.html" }, { "directions": "Pour the Chambord in to a mug of Guinness. Swirl slightly to mix.", @@ -2959,7 +2959,7 @@ "Chambord\u00ae raspberry liqueur" ], "title": "Black Fog recipe", - "url": "http://www.drinksmixer.com/drink1285.html" + "url": "https://www.drinksmixer.com/drink1285.html" }, { "directions": "Blend all ingredients; chocolate syrup, cherry brandy, vodka, and milk with ice cubes very well in a blender. Pour into an attractive low glass, and serve.", @@ -2970,7 +2970,7 @@ "milk" ], "title": "Black Forest Shake recipe", - "url": "http://www.drinksmixer.com/drink1286.html" + "url": "https://www.drinksmixer.com/drink1286.html" }, { "directions": "Shake ingredients together and pour into glass. Add a little more cream as a floater, then add a cherry.", @@ -2981,7 +2981,7 @@ "cream" ], "title": "Black Forest recipe", - "url": "http://www.drinksmixer.com/drink1287.html" + "url": "https://www.drinksmixer.com/drink1287.html" }, { "directions": "Add all ingredients to glass with ice and stir.", @@ -2993,7 +2993,7 @@ "blackberry brandy" ], "title": "Black Fruit Tree recipe", - "url": "http://www.drinksmixer.com/drink1288.html" + "url": "https://www.drinksmixer.com/drink1288.html" }, { "directions": "Pour both ingredients in shot glass and enjoy!", @@ -3002,7 +3002,7 @@ "Goldschlager\u00ae cinnamon schnapps" ], "title": "Black Gold recipe", - "url": "http://www.drinksmixer.com/drink1289.html" + "url": "https://www.drinksmixer.com/drink1289.html" }, { "directions": "Stir blended whiskey and sloe gin with ice and strain into a cocktail glass. Top with the cherry and serve.", @@ -3012,7 +3012,7 @@ "cherry" ], "title": "Black Hawk recipe", - "url": "http://www.drinksmixer.com/drink1290.html" + "url": "https://www.drinksmixer.com/drink1290.html" }, { "directions": "Fill glass 2/3 with ice, add Sambuca and fill with soda.", @@ -3021,7 +3021,7 @@ "club soda" ], "title": "Black Hole recipe", - "url": "http://www.drinksmixer.com/drink1291.html" + "url": "https://www.drinksmixer.com/drink1291.html" }, { "directions": "Stir ingredients and let sit for one minute.", @@ -3032,7 +3032,7 @@ "ice cubes" ], "title": "Black Irish recipe", - "url": "http://www.drinksmixer.com/drink1292.html" + "url": "https://www.drinksmixer.com/drink1292.html" }, { "directions": "Mix all of the ingredients together over ice, shake 'til very chilled and strain into two glasses.", @@ -3043,7 +3043,7 @@ "7-Up\u00ae soda" ], "title": "Black Jack WV recipe", - "url": "http://www.drinksmixer.com/drink1293.html" + "url": "https://www.drinksmixer.com/drink1293.html" }, { "directions": "Start with glass 2/3 filled with ice cubes. Add Triple Sec, Malibu, and Citrus Vodka. Add splash of Rose's lime juice. Fill glass with cola. Stir.", @@ -3056,7 +3056,7 @@ "Coca-Cola\u00ae" ], "title": "Black Lodge recipe", - "url": "http://www.drinksmixer.com/drink1294.html" + "url": "https://www.drinksmixer.com/drink1294.html" }, { "directions": "Mix ingredients with cracked ice in a shaker or blender. Pour into a chilled old-fashioned glass.", @@ -3066,7 +3066,7 @@ "lemon juice" ], "title": "Black Magic recipe", - "url": "http://www.drinksmixer.com/drink1295.html" + "url": "https://www.drinksmixer.com/drink1295.html" }, { "directions": "Combine and stir all ingredients in a brandy snifter. Add cracked ice and serve.", @@ -3077,7 +3077,7 @@ "powdered sugar" ], "title": "Black Maria recipe", - "url": "http://www.drinksmixer.com/drink1296.html" + "url": "https://www.drinksmixer.com/drink1296.html" }, { "directions": "Pour ingredients over ice. Shake gently. Strain into cocktail glass.", @@ -3086,7 +3086,7 @@ "black sambuca" ], "title": "Black Martini recipe", - "url": "http://www.drinksmixer.com/drink1297.html" + "url": "https://www.drinksmixer.com/drink1297.html" }, { "directions": "Combine in shaker. Shake vigorously. Strain into cocktail glass.", @@ -3097,7 +3097,7 @@ "ice" ], "title": "Black Martini #2 recipe", - "url": "http://www.drinksmixer.com/drink1298.html" + "url": "https://www.drinksmixer.com/drink1298.html" }, { "directions": "In a shaker half-filled with ice cubes, combine all of the ingredients. Shake well. Strain into a cocktail glass.", @@ -3108,7 +3108,7 @@ "lemon juice" ], "title": "Black Monday recipe", - "url": "http://www.drinksmixer.com/drink1299.html" + "url": "https://www.drinksmixer.com/drink1299.html" }, { "directions": "Shake and serve.\r", @@ -3118,7 +3118,7 @@ "grenadine syrup" ], "title": "Black Orchid recipe", - "url": "http://www.drinksmixer.com/drink1300.html" + "url": "https://www.drinksmixer.com/drink1300.html" }, { "directions": "Just pour, stir, and enjoy.", @@ -3129,7 +3129,7 @@ "Absolut\u00ae vodka" ], "title": "Black Orgasm recipe", - "url": "http://www.drinksmixer.com/drink1301.html" + "url": "https://www.drinksmixer.com/drink1301.html" }, { "directions": "In a mixing glass half-filled with ice cubes, combine all of the ingredients. Stir well. Strain into a cocktail glass.", @@ -3140,7 +3140,7 @@ "triple sec" ], "title": "Black Pagoda recipe", - "url": "http://www.drinksmixer.com/drink1302.html" + "url": "https://www.drinksmixer.com/drink1302.html" }, { "directions": "Combine all ingredients in a glass and mix well.", @@ -3151,7 +3151,7 @@ "7-Up\u00ae soda" ], "title": "Black River Boogie recipe", - "url": "http://www.drinksmixer.com/drink1303.html" + "url": "https://www.drinksmixer.com/drink1303.html" }, { "directions": "Shake or stir, pour it into a coctail glass, add some crushed ice and serve.", @@ -3162,7 +3162,7 @@ "Rose's\u00ae lime juice" ], "title": "Black Rose Bacardi recipe", - "url": "http://www.drinksmixer.com/drink1305.html" + "url": "https://www.drinksmixer.com/drink1305.html" }, { "directions": "Pour Stoli, Kahlua into a highball glass over ice. Top with Coke and serve.", @@ -3172,7 +3172,7 @@ "Coca-Cola\u00ae" ], "title": "Black Russian #2 recipe", - "url": "http://www.drinksmixer.com/drink1306.html" + "url": "https://www.drinksmixer.com/drink1306.html" }, { "directions": "Stir briefly or until spoon disintegrates.", @@ -3183,7 +3183,7 @@ "oranges" ], "title": "Black Russian #3 recipe", - "url": "http://www.drinksmixer.com/drink1307.html" + "url": "https://www.drinksmixer.com/drink1307.html" }, { "directions": "Pour ingredients over ice cubes in an old-fashioned glass and serve.", @@ -3192,7 +3192,7 @@ "vodka" ], "title": "Black Russian recipe", - "url": "http://www.drinksmixer.com/drink1308.html" + "url": "https://www.drinksmixer.com/drink1308.html" }, { "directions": "Add the one oz. of Sake to a shot glass, followed by the 1/2 oz. of Soy Sauce...Let settle for 30sec...", @@ -3201,7 +3201,7 @@ "soy sauce" ], "title": "Black Samurai recipe", - "url": "http://www.drinksmixer.com/drink1309.html" + "url": "https://www.drinksmixer.com/drink1309.html" }, { "directions": "Pour all of the ingredients into a mixing glass and stir well to dissolve the honey and molasses. Pour into an old-fashioned glass filled with crushed ice. Stir well.", @@ -3213,7 +3213,7 @@ "crushed ice" ], "title": "Black Stripe Cold recipe", - "url": "http://www.drinksmixer.com/drink1310.html" + "url": "https://www.drinksmixer.com/drink1310.html" }, { "directions": "Mix on the rocks.", @@ -3224,7 +3224,7 @@ "7-Up\u00ae soda" ], "title": "Black Swedish Virgin recipe", - "url": "http://www.drinksmixer.com/drink1311.html" + "url": "https://www.drinksmixer.com/drink1311.html" }, { "directions": "Straight: Float all ingredients. -- On the Rocks: Shake w/ice and strain over ice.", @@ -3235,7 +3235,7 @@ "Kahlua\u00ae coffee liqueur" ], "title": "Black Tartan recipe", - "url": "http://www.drinksmixer.com/drink1312.html" + "url": "https://www.drinksmixer.com/drink1312.html" }, { "directions": "Fill a shot glass with a shot of crown royal. Add just enough Coca-Cola to give the shot a black appearance.", @@ -3244,7 +3244,7 @@ "Coca-Cola\u00ae" ], "title": "Black Tooth recipe", - "url": "http://www.drinksmixer.com/drink1313.html" + "url": "https://www.drinksmixer.com/drink1313.html" }, { "directions": "Pour in kahlua, then butterscotch schnapps. Layer Irish cream on top.", @@ -3254,7 +3254,7 @@ "Irish cream" ], "title": "Black Unicorn recipe", - "url": "http://www.drinksmixer.com/drink1314.html" + "url": "https://www.drinksmixer.com/drink1314.html" }, { "directions": "Pour stout into a champagne flute. Add champagne carefully, so it does not mix with stout, and serve.", @@ -3263,7 +3263,7 @@ "Champagne" ], "title": "Black Velvet recipe", - "url": "http://www.drinksmixer.com/drink1315.html" + "url": "https://www.drinksmixer.com/drink1315.html" }, { "directions": "Pour all ingrediants into a shaker 2/3 full of ice. Stir well - strain into a highball glass.", @@ -3273,7 +3273,7 @@ "soda water" ], "title": "Black Watch recipe", - "url": "http://www.drinksmixer.com/drink1316.html" + "url": "https://www.drinksmixer.com/drink1316.html" }, { "directions": "Add chartreuse first and then sambuca. Top with tabasco.", @@ -3283,7 +3283,7 @@ "Tabasco\u00ae sauce" ], "title": "Black Wolf recipe", - "url": "http://www.drinksmixer.com/drink1318.html" + "url": "https://www.drinksmixer.com/drink1318.html" }, { "directions": "Chill all ingredients. Just before serving combine in a punch bowl. Unmold ice ring and float in bowl. Serve in tall glasses. Makes 10 large servings.", @@ -3297,7 +3297,7 @@ "pineapple juice" ], "title": "Black-Eyed Susan recipe", - "url": "http://www.drinksmixer.com/drink1319.html" + "url": "https://www.drinksmixer.com/drink1319.html" }, { "directions": "In a shaker half-filled with ice cubes, combine all of the ingredients. Shake well. Strain into an old-fashioned glass.", @@ -3308,7 +3308,7 @@ "lemon juice" ], "title": "Blackjack recipe", - "url": "http://www.drinksmixer.com/drink1321.html" + "url": "https://www.drinksmixer.com/drink1321.html" }, { "directions": "Shake all ingredients with cracked ice, strain into an old-fashioned glass over ice cubes, and serve.", @@ -3318,7 +3318,7 @@ "coffee" ], "title": "Blackjack #2 recipe", - "url": "http://www.drinksmixer.com/drink1322.html" + "url": "https://www.drinksmixer.com/drink1322.html" }, { "directions": "Fill a large margarita glass with ice. Add with tequila, triple sec, and chambord. Add the lime juice or sour mix. Shake, garnish with a lime wedge and serve.", @@ -3329,7 +3329,7 @@ "lime juice" ], "title": "Blackjack Margarita recipe", - "url": "http://www.drinksmixer.com/drink1323.html" + "url": "https://www.drinksmixer.com/drink1323.html" }, { "directions": "Stir sloe gin and vermouth with ice and strain into a cocktail glass. Add the twist of lemon peel and serve.", @@ -3339,7 +3339,7 @@ "lemon" ], "title": "Blackthorn recipe", - "url": "http://www.drinksmixer.com/drink1324.html" + "url": "https://www.drinksmixer.com/drink1324.html" }, { "directions": "Pour Blavod Vodka in hurricane glass with ice. Pour in Bloody Mary mix. Add jalepeno pickle for spicy taste.", @@ -3348,7 +3348,7 @@ "Longbranch\u00ae bloody mary mix" ], "title": "Blackula recipe", - "url": "http://www.drinksmixer.com/drink1325.html" + "url": "https://www.drinksmixer.com/drink1325.html" }, { "directions": "Shake Irish whiskey, anis, triple sec, and maraschino with ice and strain into a cocktail glass. Add the twist of orange peel, top with the olive, and serve.", @@ -3361,7 +3361,7 @@ "orange" ], "title": "Blarney Stone Cocktail recipe", - "url": "http://www.drinksmixer.com/drink1326.html" + "url": "https://www.drinksmixer.com/drink1326.html" }, { "directions": "Shake well with ice and strain into martini glass. Add cherry.", @@ -3371,7 +3371,7 @@ "maraschino cherry" ], "title": "Blavod Martini recipe", - "url": "http://www.drinksmixer.com/drink1327.html" + "url": "https://www.drinksmixer.com/drink1327.html" }, { "directions": "Pour butterscotch over rum. Do not stir.", @@ -3380,7 +3380,7 @@ "Bacardi\u00ae 151 rum" ], "title": "Bleacher Creature recipe", - "url": "http://www.drinksmixer.com/drink1328.html" + "url": "https://www.drinksmixer.com/drink1328.html" }, { "directions": "Cut the pineapple into small chunks and soak them in the vodka and rum for 20-30 minutes. Add the rest of the ingredients and you're all good.", @@ -3392,7 +3392,7 @@ "Mountain Dew\u00ae citrus soda" ], "title": "Bleeding Orgasm recipe", - "url": "http://www.drinksmixer.com/drink1329.html" + "url": "https://www.drinksmixer.com/drink1329.html" }, { "directions": "Add ingredients together in highball glass stir with cinnamon stick, and enjoy your very own bleeding snatch.", @@ -3403,7 +3403,7 @@ "V8\u00ae vegetable juice" ], "title": "Bleeding Snatch recipe", - "url": "http://www.drinksmixer.com/drink1330.html" + "url": "https://www.drinksmixer.com/drink1330.html" }, { "directions": "Pour Shot of Rum over slice of orange. Fill the remaining space in glass half way full of surge or similar drink. Finish off glass with cranberry juice. Be carefull, warm surge may foam over the glass.", @@ -3414,7 +3414,7 @@ "cranberry juice" ], "title": "Bleeding Surgeon recipe", - "url": "http://www.drinksmixer.com/drink1331.html" + "url": "https://www.drinksmixer.com/drink1331.html" }, { "directions": "In a shaker half-filled with ice cubes, combine all of the ingredients. Shake well. Strain into a cocktail glass.", @@ -3424,7 +3424,7 @@ "superfine sugar" ], "title": "Blimey recipe", - "url": "http://www.drinksmixer.com/drink1332.html" + "url": "https://www.drinksmixer.com/drink1332.html" }, { "directions": "Fill glass with ice. Add all liqueurs. Add milk. shake.", @@ -3436,7 +3436,7 @@ "milk" ], "title": "Blind Russian recipe", - "url": "http://www.drinksmixer.com/drink1333.html" + "url": "https://www.drinksmixer.com/drink1333.html" }, { "directions": "Pour the scotch and grapefruit juice into a highball glass alomst filled with ice cubes. Drop the grenadine into the center of the drink.", @@ -3446,7 +3446,7 @@ "grenadine syrup" ], "title": "Blinder recipe", - "url": "http://www.drinksmixer.com/drink1334.html" + "url": "https://www.drinksmixer.com/drink1334.html" }, { "directions": "Pour strawberry syrup, orange juice, and grapefruit juice into a large glass. Add vodka, and serve.", @@ -3457,7 +3457,7 @@ "strawberry syrup" ], "title": "Blindside recipe", - "url": "http://www.drinksmixer.com/drink1335.html" + "url": "https://www.drinksmixer.com/drink1335.html" }, { "directions": "Shake and strain into glass.", @@ -3469,7 +3469,7 @@ "orange juice" ], "title": "Blister recipe", - "url": "http://www.drinksmixer.com/drink1336.html" + "url": "https://www.drinksmixer.com/drink1336.html" }, { "directions": "Shake with ice. Strain or with ice.", @@ -3482,7 +3482,7 @@ "lemon juice" ], "title": "Blitz recipe", - "url": "http://www.drinksmixer.com/drink1337.html" + "url": "https://www.drinksmixer.com/drink1337.html" }, { "directions": "Shake and strain into collins glass with ice. Garnish with a cherry.", @@ -3494,7 +3494,7 @@ "orange juice" ], "title": "Bloated Bag of Monkey Spunk recipe", - "url": "http://www.drinksmixer.com/drink1338.html" + "url": "https://www.drinksmixer.com/drink1338.html" }, { "directions": "Shake with ice and strain into a cocktail glass.", @@ -3505,7 +3505,7 @@ "Pernod\u00ae licorice liqueur" ], "title": "Block and Fall recipe", - "url": "http://www.drinksmixer.com/drink1339.html" + "url": "https://www.drinksmixer.com/drink1339.html" }, { "directions": "Add ice, rum, and frozen lemonade concentrate to a blender. Blend at high speed. Pour into a margarita glass.", @@ -3515,7 +3515,7 @@ "lemonade" ], "title": "Blonde Bombshell recipe", - "url": "http://www.drinksmixer.com/drink1340.html" + "url": "https://www.drinksmixer.com/drink1340.html" }, { "directions": "Mix over Ice and garnish with a cherry.", @@ -3527,7 +3527,7 @@ "soda water" ], "title": "Blonde Moment recipe", - "url": "http://www.drinksmixer.com/drink1341.html" + "url": "https://www.drinksmixer.com/drink1341.html" }, { "directions": "Just fill ice, then pour rum, 7up, and slash of pineapple.", @@ -3538,7 +3538,7 @@ "pineapple juice" ], "title": "Blonde Ron recipe", - "url": "http://www.drinksmixer.com/drink1342.html" + "url": "https://www.drinksmixer.com/drink1342.html" }, { "directions": "Scoop ice-cream into a large bowl (stainless or glass, but plastic will do). Slowly pour wine into bowl and mix until smooth (but not runny, or melted). Fold in (well drained) fruit cocktail. Serve in wine glass with ice-cream scoop (add tacky paper umbrella if desired). Keep in freezer when not being served.", @@ -3548,7 +3548,7 @@ "fruit cocktail" ], "title": "Blonde Smoothie recipe", - "url": "http://www.drinksmixer.com/drink1343.html" + "url": "https://www.drinksmixer.com/drink1343.html" }, { "directions": "Mix in the glass. Serve cool!", @@ -3559,7 +3559,7 @@ "ice cubes" ], "title": "Blonde's Death recipe", - "url": "http://www.drinksmixer.com/drink1344.html" + "url": "https://www.drinksmixer.com/drink1344.html" }, { "directions": "Drop shot glass of s.c. into lowball glass mixed with 7-UP and grenadine. Slam it!!!", @@ -3569,7 +3569,7 @@ "7-Up\u00ae soda" ], "title": "Blood Clot recipe", - "url": "http://www.drinksmixer.com/drink1345.html" + "url": "https://www.drinksmixer.com/drink1345.html" }, { "directions": "Pour Cointreau into glass. Using a spoon, drop the Cherry Advocaat in so it sits on the bottom of the glass. Making sure you have a straw handy, throw the shot back, place the glass on the nearest table and quickly cover the opening of the glass with your hand. Stick the straw between the fingers covering the glass and suck!", @@ -3578,7 +3578,7 @@ "Continental\u00ae cherry advocaat liqueur" ], "title": "Blood Clot #2 recipe", - "url": "http://www.drinksmixer.com/drink1346.html" + "url": "https://www.drinksmixer.com/drink1346.html" }, { "directions": "Shake all ingredients (except strawberries) with ice and strain into a cocktail glass. Decorate with the 3 crushed strawberries and serve.", @@ -3589,7 +3589,7 @@ "strawberries" ], "title": "Bloodhound Cocktail recipe", - "url": "http://www.drinksmixer.com/drink1348.html" + "url": "https://www.drinksmixer.com/drink1348.html" }, { "directions": "Combine all ingredients in a shaker and shake until well blended. Pour over ice in an old-fashioned glass, and serve.\r", @@ -3602,7 +3602,7 @@ "lime" ], "title": "Bloody Biker recipe", - "url": "http://www.drinksmixer.com/drink1349.html" + "url": "https://www.drinksmixer.com/drink1349.html" }, { "directions": "Pour peach schnapps into a cordial glass, and gently float bailey's irish cream on top. Add the grenadine, in seperate drops, into the glass. Serve.", @@ -3612,7 +3612,7 @@ "grenadine syrup" ], "title": "Bloody Brain recipe", - "url": "http://www.drinksmixer.com/drink1350.html" + "url": "https://www.drinksmixer.com/drink1350.html" }, { "directions": "Pour vodka, tomato juice, and beef bouillon over ice in a highball glass and stir. Add the slice of lime and the wedge of lemon and serve.", @@ -3624,7 +3624,7 @@ "lemon" ], "title": "Bloody Bull recipe", - "url": "http://www.drinksmixer.com/drink1351.html" + "url": "https://www.drinksmixer.com/drink1351.html" }, { "directions": "Rim tall glass with celery salt, fill with ice and ingredients. Garnish with a celery stick, straw, and lime.", @@ -3638,7 +3638,7 @@ "clamato juice" ], "title": "Bloody Caesar recipe", - "url": "http://www.drinksmixer.com/drink1352.html" + "url": "https://www.drinksmixer.com/drink1352.html" }, { "directions": "Pour Wild Turkey into shot glass. Fill the rest up with the Tequila. Finally, add the drop of Tabasco Sauce.\r", @@ -3648,7 +3648,7 @@ "Tabasco\u00ae sauce" ], "title": "Bloody Chicken recipe", - "url": "http://www.drinksmixer.com/drink1353.html" + "url": "https://www.drinksmixer.com/drink1353.html" }, { "directions": "Fill a glass half full of ice.\r", @@ -3660,7 +3660,7 @@ "fruit punch" ], "title": "Bloody Coochie recipe", - "url": "http://www.drinksmixer.com/drink1354.html" + "url": "https://www.drinksmixer.com/drink1354.html" }, { "directions": "Shake all ingredients (except lemon slice) with cracked ice and strain into an old-fashioned glass over ice cubes. Add the slice of lemon and serve.", @@ -3673,7 +3673,7 @@ "celery salt" ], "title": "Bloody Maria recipe", - "url": "http://www.drinksmixer.com/drink1355.html" + "url": "https://www.drinksmixer.com/drink1355.html" }, { "directions": "Add together in an old-fashioned glass, and stir. Garnish with a lemon or lime wedge, a chunk of cheese and an olive.", @@ -3689,7 +3689,7 @@ "Tabasco\u00ae sauce" ], "title": "Bloody Mary Jolly Style recipe", - "url": "http://www.drinksmixer.com/drink1356.html" + "url": "https://www.drinksmixer.com/drink1356.html" }, { "directions": "Pour ingredients over two crushed ice cubes in an old-fashioned glass. Stir, and decorate with a bloody glove if available.", @@ -3700,7 +3700,7 @@ "soda water" ], "title": "Bloody O.J. recipe", - "url": "http://www.drinksmixer.com/drink1357.html" + "url": "https://www.drinksmixer.com/drink1357.html" }, { "directions": "Stir well with ice. Adding a few drops of hot sauce for flavor is optional.", @@ -3711,7 +3711,7 @@ "ice cubes" ], "title": "Bloody Pearl Harbor recipe", - "url": "http://www.drinksmixer.com/drink1359.html" + "url": "https://www.drinksmixer.com/drink1359.html" }, { "directions": "Pour schnapps into glass filled with ice. Add cranberry juice and stir.", @@ -3721,7 +3721,7 @@ "ice" ], "title": "Bloody Smurf recipe", - "url": "http://www.drinksmixer.com/drink1361.html" + "url": "https://www.drinksmixer.com/drink1361.html" }, { "directions": "Add gin, orange liqueur and cointreau to a shaker. Fill with orange juice, and shake well. Pour into a glass filled with ice cubes and serve.", @@ -3732,7 +3732,7 @@ "orange juice" ], "title": "Bloody Sun recipe", - "url": "http://www.drinksmixer.com/drink1362.html" + "url": "https://www.drinksmixer.com/drink1362.html" }, { "directions": "Mix Yukon Jack, tequila, and vodka (all chilled) in a cocktail glass. Add room temperature V-8 tomato juice without mixing. Strain irish cream on top and then splash with lemon juice to curdle giving drink a cotton-like texture.", @@ -3745,7 +3745,7 @@ "Bailey's\u00ae Irish cream" ], "title": "Bloody Tampon recipe", - "url": "http://www.drinksmixer.com/drink1363.html" + "url": "https://www.drinksmixer.com/drink1363.html" }, { "directions": "Fill glass with ice. Add bacardi limon. Fill with iced tea. Add lemon wedge, and serve.", @@ -3754,7 +3754,7 @@ "iced tea" ], "title": "B.L.T. recipe", - "url": "http://www.drinksmixer.com/drink1365.html" + "url": "https://www.drinksmixer.com/drink1365.html" }, { "directions": "Mix all ingredients. Chill with ice and strain into a shooter glass!", @@ -3766,7 +3766,7 @@ "Sprite\u00ae soda" ], "title": "Blue Balls recipe", - "url": "http://www.drinksmixer.com/drink1366.html" + "url": "https://www.drinksmixer.com/drink1366.html" }, { "directions": "Pour creme de banana in a glass. Pour blue curacao on top of it creating two layers. Pound it.", @@ -3775,7 +3775,7 @@ "Hiram Walker\u00ae Blue Curacao liqueur" ], "title": "Blue Banana recipe", - "url": "http://www.drinksmixer.com/drink1367.html" + "url": "https://www.drinksmixer.com/drink1367.html" }, { "directions": "Mix in a highball glass. Stir. Garnish with a slice of lemon.", @@ -3785,7 +3785,7 @@ "ice cubes" ], "title": "Blue Bay recipe", - "url": "http://www.drinksmixer.com/drink1368.html" + "url": "https://www.drinksmixer.com/drink1368.html" }, { "directions": "Mix all ingredients in a saucepan and heat until the honey has completely dissolved. Pour in Old-fashioned glasses with a spoon in it (to prevent the glass from breaking if the drink is too hot).", @@ -3796,7 +3796,7 @@ "water" ], "title": "Blue Blazer #2 recipe", - "url": "http://www.drinksmixer.com/drink1369.html" + "url": "https://www.drinksmixer.com/drink1369.html" }, { "directions": "Boil water and whisky in seperate glasses, ignite whisky, then slowly mix the whisky and water 4-6 times.", @@ -3805,7 +3805,7 @@ "water" ], "title": "Blue Blazer recipe", - "url": "http://www.drinksmixer.com/drink1370.html" + "url": "https://www.drinksmixer.com/drink1370.html" }, { "directions": "Shake ingredients, garnish with an orange twist and a cherry, and serve.", @@ -3817,7 +3817,7 @@ "tonic water" ], "title": "Blue Bohemian recipe", - "url": "http://www.drinksmixer.com/drink1371.html" + "url": "https://www.drinksmixer.com/drink1371.html" }, { "directions": "Layer first 2 ingredients in shot glass. Set aside. Pour 7-Up and soda water in a foot glass, then drop the shot glass in the foot glass and drink.", @@ -3828,7 +3828,7 @@ "soda water" ], "title": "Blue Bomber recipe", - "url": "http://www.drinksmixer.com/drink1372.html" + "url": "https://www.drinksmixer.com/drink1372.html" }, { "directions": "Pour each measure in to the shot glass(Do not mix!!!) and enjoy.", @@ -3838,7 +3838,7 @@ "amaretto almond liqueur" ], "title": "Blue Caboose recipe", - "url": "http://www.drinksmixer.com/drink1373.html" + "url": "https://www.drinksmixer.com/drink1373.html" }, { "directions": "Shake the first 5 ingredients in a shaker. Shake well. Strain into a cocktail class. Add a dash of sprite. Garnish with cherry and lemon reel.", @@ -3851,7 +3851,7 @@ "ice" ], "title": "Blue Chili recipe", - "url": "http://www.drinksmixer.com/drink1374.html" + "url": "https://www.drinksmixer.com/drink1374.html" }, { "directions": "Frost the rim of a chilled cocktail glass with sugar. Stir absolut citron, blue curacao, grapefruit juice, and sugar syrup in a mixing glass with ice to prevent cloudiness. Strain into cocktail glass. Garnish with a maraschino cherry.", @@ -3864,7 +3864,7 @@ "sugar" ], "title": "Blue Cosmopolitan recipe", - "url": "http://www.drinksmixer.com/drink1375.html" + "url": "https://www.drinksmixer.com/drink1375.html" }, { "directions": "In a mixing glass half-filled with crushed ice, combine both of the ingredients. Stir well. Strain into a cocktail glass.", @@ -3874,7 +3874,7 @@ "Blue Curacao liqueur" ], "title": "Blue Cowboy recipe", - "url": "http://www.drinksmixer.com/drink1376.html" + "url": "https://www.drinksmixer.com/drink1376.html" }, { "directions": "Shake all ingredients with ice, strain into a cocktail glass, and serve.", @@ -3885,7 +3885,7 @@ "Blue Curacao liqueur" ], "title": "Blue Devil Cocktail recipe", - "url": "http://www.drinksmixer.com/drink1377.html" + "url": "https://www.drinksmixer.com/drink1377.html" }, { "directions": "Pour 3/4 shots of each into an old-fashioned glass, and serve.", @@ -3894,7 +3894,7 @@ "Goldschlager\u00ae cinnamon schnapps" ], "title": "Blue Diamond recipe", - "url": "http://www.drinksmixer.com/drink1378.html" + "url": "https://www.drinksmixer.com/drink1378.html" }, { "directions": "Combine both while cold.", @@ -3903,7 +3903,7 @@ "grapefruit juice" ], "title": "Blue Dog recipe", - "url": "http://www.drinksmixer.com/drink1379.html" + "url": "https://www.drinksmixer.com/drink1379.html" }, { "directions": "Put all ingredients into a shaker filled with cracked ice. Shake well. Strain into a cocktail glass.", @@ -3913,7 +3913,7 @@ "lemon juice" ], "title": "Blue Edisonian recipe", - "url": "http://www.drinksmixer.com/drink1381.html" + "url": "https://www.drinksmixer.com/drink1381.html" }, { "directions": "Fill 16oz glass with Ice. Add liquor. Fill with sour.", @@ -3925,7 +3925,7 @@ "sweet and sour mix" ], "title": "Blue Ed recipe", - "url": "http://www.drinksmixer.com/drink1382.html" + "url": "https://www.drinksmixer.com/drink1382.html" }, { "directions": "Fill the glass with ice and build ordinary with vodka, Battery, Sweet & Sour and Blue curacao at the end.", @@ -3936,7 +3936,7 @@ "Blue Curacao liqueur" ], "title": "Blue Eye recipe", - "url": "http://www.drinksmixer.com/drink1383.html" + "url": "https://www.drinksmixer.com/drink1383.html" }, { "directions": "Shake with ice and strain into a chilled cocktail glass.", @@ -3946,7 +3946,7 @@ "Blue Curacao liqueur" ], "title": "Blue Fox Trot recipe", - "url": "http://www.drinksmixer.com/drink1384.html" + "url": "https://www.drinksmixer.com/drink1384.html" }, { "directions": "Blend light rum, blue curacao, pineapple juice, and cream of coconut with one cup ice in an electric blender at high speed. Pour contents into a highball glass. Decorate with the slice of pineapple and a cherry.\n\n", @@ -3959,7 +3959,7 @@ "pineapple" ], "title": "Blue Hawaiian recipe", - "url": "http://www.drinksmixer.com/drink1385.html" + "url": "https://www.drinksmixer.com/drink1385.html" }, { "directions": "Pour the blue curacao in the glass. Fill the shaker with ice cubes and shake amaretto, rum, and pineapple juice. Pour it in the glass and stir. Garnish with pineapple slice.", @@ -3971,7 +3971,7 @@ "pineapple" ], "title": "Blue Heaven recipe", - "url": "http://www.drinksmixer.com/drink1386.html" + "url": "https://www.drinksmixer.com/drink1386.html" }, { "directions": "Combine the first three ingredient into a high-ball glass. Stir well. Top with club soda.", @@ -3982,7 +3982,7 @@ "club soda" ], "title": "Blue Ice Mountain recipe", - "url": "http://www.drinksmixer.com/drink1387.html" + "url": "https://www.drinksmixer.com/drink1387.html" }, { "directions": "Blend with ice until smooth. Serve in a frozen mug.", @@ -3994,7 +3994,7 @@ "Everclear\u00ae alcohol" ], "title": "Blue Iguana recipe", - "url": "http://www.drinksmixer.com/drink1388.html" + "url": "https://www.drinksmixer.com/drink1388.html" }, { "directions": "Fill glass half full with ice. Add liquors. Add sugar and tonic to taste. Stir.", @@ -4007,7 +4007,7 @@ "sugar" ], "title": "Blue In The Face recipe", - "url": "http://www.drinksmixer.com/drink1389.html" + "url": "https://www.drinksmixer.com/drink1389.html" }, { "directions": "Combine the Vodka, Blue Curacao, and Lime Juice in a glass with ice. Shake well, then pour through a strainer into a normal glass with ice in it. Makes 1 drink.\n\n", @@ -4018,7 +4018,7 @@ "ice cubes" ], "title": "Blue Kamikaze recipe", - "url": "http://www.drinksmixer.com/drink1390.html" + "url": "https://www.drinksmixer.com/drink1390.html" }, { "directions": "Pour an half ounce of Blue Curacao into shot glass. Follow with quarter of an ounce of Vodka. (Try and use Smirnoff) One table spoon of lime juice. Then fill rest of glass with sprite.", @@ -4029,7 +4029,7 @@ "Sprite\u00ae soda" ], "title": "Blue Kisok recipe", - "url": "http://www.drinksmixer.com/drink1391.html" + "url": "https://www.drinksmixer.com/drink1391.html" }, { "directions": "Shake the Vodka, Blue Curacao, Galliano and pineapple juice in a shaker. Pour into glass and add a layer of cream to the top. Serve with a straw and an orange wedge. Drink is to be sipped through the straw.", @@ -4041,7 +4041,7 @@ "cream" ], "title": "Blue Knickers recipe", - "url": "http://www.drinksmixer.com/drink1392.html" + "url": "https://www.drinksmixer.com/drink1392.html" }, { "directions": "Pour vodka and curacao over ice in a highball glass. Fill with lemonade, top with the cherry, and serve.", @@ -4052,7 +4052,7 @@ "cherry" ], "title": "Blue Lagoon recipe", - "url": "http://www.drinksmixer.com/drink1394.html" + "url": "https://www.drinksmixer.com/drink1394.html" }, { "directions": "Mix into punch bowl and make sure that the koolaid is already pre measurable with sugar already added. Be careful, hard to taste alcohol so intoxication sets in quickly!", @@ -4063,7 +4063,7 @@ "vodka" ], "title": "Blue Lemonade recipe", - "url": "http://www.drinksmixer.com/drink1395.html" + "url": "https://www.drinksmixer.com/drink1395.html" }, { "directions": "Shake.", @@ -4074,7 +4074,7 @@ "pineapple juice" ], "title": "Blue Light Special recipe", - "url": "http://www.drinksmixer.com/drink1396.html" + "url": "https://www.drinksmixer.com/drink1396.html" }, { "directions": "Rub rim of cocktail glass with lime juice. Dip rim in coarse salt. Shake tequila, blue curacao, and lime juice with ice, strain into the salt-rimmed glass, and serve.", @@ -4085,7 +4085,7 @@ "salt" ], "title": "Blue Margarita recipe", - "url": "http://www.drinksmixer.com/drink1397.html" + "url": "https://www.drinksmixer.com/drink1397.html" }, { "directions": "Build ingredients over ice cubes in a collins glass. Stir, and serve.", @@ -4096,7 +4096,7 @@ "orange juice" ], "title": "Blue Marlin recipe", - "url": "http://www.drinksmixer.com/drink1398.html" + "url": "https://www.drinksmixer.com/drink1398.html" }, { "directions": "Combine Blue Curacao, Vodka and Sour mix in a shaker with ice, shake and strain into a shot glass. Could also be made on the rocks.", @@ -4106,7 +4106,7 @@ "sweet and sour mix" ], "title": "Blue Meanie recipe", - "url": "http://www.drinksmixer.com/drink1399.html" + "url": "https://www.drinksmixer.com/drink1399.html" }, { "directions": "Pour in hurricane glass with crushed ice. Stir or mix gently.", @@ -4117,7 +4117,7 @@ "pineapple juice" ], "title": "Blue Monkey recipe", - "url": "http://www.drinksmixer.com/drink1400.html" + "url": "https://www.drinksmixer.com/drink1400.html" }, { "directions": "Mix all ingredients into an ice-filled shaker. Shake and strain into an ice-filled highball glass. Garnish with a lemon wheel.", @@ -4128,7 +4128,7 @@ "pineapple juice" ], "title": "Blue Moon recipe", - "url": "http://www.drinksmixer.com/drink1402.html" + "url": "https://www.drinksmixer.com/drink1402.html" }, { "directions": "Fill glass with ice, add the ingredients, shake and serve.", @@ -4140,7 +4140,7 @@ "Sprite\u00ae soda" ], "title": "Blue Motorcycle #2 recipe", - "url": "http://www.drinksmixer.com/drink1403.html" + "url": "https://www.drinksmixer.com/drink1403.html" }, { "directions": "Build over ice in a collins glass. Fill with sour mix and add a splash of 7-Up.", @@ -4154,7 +4154,7 @@ "Blue Curacao liqueur" ], "title": "Blue Motorcycle recipe", - "url": "http://www.drinksmixer.com/drink1404.html" + "url": "https://www.drinksmixer.com/drink1404.html" }, { "directions": "In a shaker half-filled with ice cubes, combine all of the ingredients. Shake well. Strain into an old-fashioned glass almost filled with ice cubes.", @@ -4166,7 +4166,7 @@ "lemon juice" ], "title": "Blue Mountain recipe", - "url": "http://www.drinksmixer.com/drink1405.html" + "url": "https://www.drinksmixer.com/drink1405.html" }, { "directions": "Pour into a shaker with ice and shake and strain.", @@ -4176,7 +4176,7 @@ "pineapple juice" ], "title": "Blue Nut recipe", - "url": "http://www.drinksmixer.com/drink1406.html" + "url": "https://www.drinksmixer.com/drink1406.html" }, { "directions": "Mix the two in shaker with ice. Shake. Pour in shot glass.", @@ -4185,7 +4185,7 @@ "Blue Curacao liqueur" ], "title": "Blue Peach recipe", - "url": "http://www.drinksmixer.com/drink1407.html" + "url": "https://www.drinksmixer.com/drink1407.html" }, { "directions": "Fill glass with ice, pour Mandrin and Blue in, then fill it with OJ. Simple.", @@ -4195,7 +4195,7 @@ "orange juice" ], "title": "Blue Screw recipe", - "url": "http://www.drinksmixer.com/drink1409.html" + "url": "https://www.drinksmixer.com/drink1409.html" }, { "directions": "Combine vodka and rum in a cocktail shaker with cracked ice. Add several dashes of blue curacao, and shake well. Strain into a chilled old-fashioned glass, and serve.", @@ -4205,7 +4205,7 @@ "Blue Curacao liqueur" ], "title": "Blue Shark recipe", - "url": "http://www.drinksmixer.com/drink1410.html" + "url": "https://www.drinksmixer.com/drink1410.html" }, { "directions": "Simply follow the order above, pouring directly into the glass. Garnish with a slice of orange on the glass.", @@ -4216,7 +4216,7 @@ "Finches\u00ae white lemonade" ], "title": "Blue Skies recipe", - "url": "http://www.drinksmixer.com/drink1411.html" + "url": "https://www.drinksmixer.com/drink1411.html" }, { "directions": "Put drop of lemon in first, then add Blue Curacao, and Sambuca. Then slowly add vodka. Sit down, shoot back, and enjoy!", @@ -4227,7 +4227,7 @@ "lemon juice" ], "title": "Blue Slammer recipe", - "url": "http://www.drinksmixer.com/drink1412.html" + "url": "https://www.drinksmixer.com/drink1412.html" }, { "directions": "Pour as listed. Strain through Ice.", @@ -4240,7 +4240,7 @@ "Blue Curacao liqueur" ], "title": "Blue Smurf Piss recipe", - "url": "http://www.drinksmixer.com/drink1413.html" + "url": "https://www.drinksmixer.com/drink1413.html" }, { "directions": "Mix over ice and serve.", @@ -4252,7 +4252,7 @@ "orange juice" ], "title": "Blue Sunset recipe", - "url": "http://www.drinksmixer.com/drink1414.html" + "url": "https://www.drinksmixer.com/drink1414.html" }, { "directions": "Put all ingredients in together followed by the champagne last.", @@ -4268,7 +4268,7 @@ "orange" ], "title": "Blue Tahoe recipe", - "url": "http://www.drinksmixer.com/drink1415.html" + "url": "https://www.drinksmixer.com/drink1415.html" }, { "directions": "Fill one shot glass with the Blue Curacao. Fill another shot glass with the lemon juice, and serve. To drink, first put lemon shot in mouth, then put curacao shot in mouth, swish around then swallow. Remember, yellow before blue!!", @@ -4277,7 +4277,7 @@ "lemon juice" ], "title": "Blue Thrill recipe", - "url": "http://www.drinksmixer.com/drink1416.html" + "url": "https://www.drinksmixer.com/drink1416.html" }, { "directions": "Pour all ingredients into a cooler, add fruit and serve. A great party drink.", @@ -4288,7 +4288,7 @@ "fruits" ], "title": "PJ recipe", - "url": "http://www.drinksmixer.com/drink1417.html" + "url": "https://www.drinksmixer.com/drink1417.html" }, { "directions": "Mix into a glass and drink.", @@ -4299,7 +4299,7 @@ "sugar" ], "title": "La Tigre recipe", - "url": "http://www.drinksmixer.com/drink1418.html" + "url": "https://www.drinksmixer.com/drink1418.html" }, { "directions": "Mix all ingredients over ice. Garnish with a thermometer.", @@ -4310,7 +4310,7 @@ "lemon juice" ], "title": "Ship's Doctor recipe", - "url": "http://www.drinksmixer.com/drink1419.html" + "url": "https://www.drinksmixer.com/drink1419.html" }, { "directions": "Fill a highball glass with ice. Add the midori, sour mix and sprite, give a quick stir, and add cherries.\n\n", @@ -4321,7 +4321,7 @@ "cherries" ], "title": "Midori Sour recipe", - "url": "http://www.drinksmixer.com/drink1421.html" + "url": "https://www.drinksmixer.com/drink1421.html" }, { "directions": "Pour raspberry syrup in a shooter. Fill the rest of the shooter with Vodka very slowly, so it will not get mixed with the syrup.\r", @@ -4330,7 +4330,7 @@ "vodka" ], "title": "Poland recipe", - "url": "http://www.drinksmixer.com/drink1422.html" + "url": "https://www.drinksmixer.com/drink1422.html" }, { "directions": "Pour ingredients over ice and mix in a shaker. Strain into a tall glass, and serve.", @@ -4342,7 +4342,7 @@ "sweet and sour mix" ], "title": "Blue Whale recipe", - "url": "http://www.drinksmixer.com/drink1423.html" + "url": "https://www.drinksmixer.com/drink1423.html" }, { "directions": "Mix ingredients and serve over ice.", @@ -4352,7 +4352,7 @@ "Midori\u00ae melon liqueur" ], "title": "Brian Fabulous recipe", - "url": "http://www.drinksmixer.com/drink1424.html" + "url": "https://www.drinksmixer.com/drink1424.html" }, { "directions": "To make the batter: beat egg whites stiff with electric beator. Add sugar gradually. Add cinnamon, nutmeg and vanilla. Add in half of the eggs yolks, and blend until smooth. \r", @@ -4367,7 +4367,7 @@ "vanilla" ], "title": "Tom and Jerry recipe", - "url": "http://www.drinksmixer.com/drink1425.html" + "url": "https://www.drinksmixer.com/drink1425.html" }, { "directions": "Pour 1/2 oz. vodka and a 1/2 oz. blueberry schnapps in a tall glass. Balance with cranberry juice.", @@ -4377,7 +4377,7 @@ "cranberry juice" ], "title": "Blue-Woo recipe", - "url": "http://www.drinksmixer.com/drink1427.html" + "url": "https://www.drinksmixer.com/drink1427.html" }, { "directions": "Blend with crushed ice.", @@ -4388,7 +4388,7 @@ "sugar syrup" ], "title": "Blueberry Daiquiri recipe", - "url": "http://www.drinksmixer.com/drink1428.html" + "url": "https://www.drinksmixer.com/drink1428.html" }, { "directions": "Shake in shaker with ice. Pour the shots.", @@ -4399,7 +4399,7 @@ "cream" ], "title": "Blueberry Kami recipe", - "url": "http://www.drinksmixer.com/drink1429.html" + "url": "https://www.drinksmixer.com/drink1429.html" }, { "directions": "Pour amaretto and grand marnier into a glass. Add hot tea, and serve immediately.", @@ -4409,7 +4409,7 @@ "tea" ], "title": "Blueberry Tea #2 recipe", - "url": "http://www.drinksmixer.com/drink1430.html" + "url": "https://www.drinksmixer.com/drink1430.html" }, { "directions": "Mix amaretto and grand marnier in a brandy snifter or glass. Add hot tea to taste.", @@ -4419,7 +4419,7 @@ "Orange Pekoe\u00ae tea" ], "title": "Blueberry Tea recipe", - "url": "http://www.drinksmixer.com/drink1431.html" + "url": "https://www.drinksmixer.com/drink1431.html" }, { "directions": "In a mixing glass half-filled with crushed ice, combine the gin, triple sec, Curacao, and bitters. Stir well. Strain into a cocktail glass and garnish with the lemon twist and the cherry.", @@ -4432,7 +4432,7 @@ "bitters" ], "title": "Bluebird recipe", - "url": "http://www.drinksmixer.com/drink1432.html" + "url": "https://www.drinksmixer.com/drink1432.html" }, { "directions": "Fill coctail chimney glass with crushed ice, fill 3/4 full with club soda, add a shot of blueberry schnapps and a splash of o.j. Can garnish with an orange peel or a blueberry.", @@ -4442,7 +4442,7 @@ "orange juice" ], "title": "Bluesberry Cooler recipe", - "url": "http://www.drinksmixer.com/drink1433.html" + "url": "https://www.drinksmixer.com/drink1433.html" }, { "directions": "Shake with ice and strain into shot glass.", @@ -4452,7 +4452,7 @@ "white creme de cacao" ], "title": "BMW #2 recipe", - "url": "http://www.drinksmixer.com/drink1434.html" + "url": "https://www.drinksmixer.com/drink1434.html" }, { "directions": "Shake and strain ingredients into a hurricane glass.", @@ -4464,7 +4464,7 @@ "grenadine syrup" ], "title": "Boardwalk Breeze recipe", - "url": "http://www.drinksmixer.com/drink1435.html" + "url": "https://www.drinksmixer.com/drink1435.html" }, { "directions": "Pour captain morgan's spiced rum into a glass, and add a splash of tonic water. Circle the rim of the glass with a lime, and serve.", @@ -4474,7 +4474,7 @@ "limes" ], "title": "Boat Drink recipe", - "url": "http://www.drinksmixer.com/drink1436.html" + "url": "https://www.drinksmixer.com/drink1436.html" }, { "directions": "Combine all ingredients in a blender, mix until smooth. Be careful surge is carbonated, it will foam up. Enjoy!", @@ -4484,7 +4484,7 @@ "ice" ], "title": "Bob Dylan recipe", - "url": "http://www.drinksmixer.com/drink1437.html" + "url": "https://www.drinksmixer.com/drink1437.html" }, { "directions": "Layer in a 2 oz shot glass or pony glass.", @@ -4494,7 +4494,7 @@ "Goldschlager\u00ae cinnamon schnapps" ], "title": "Bob Marley recipe", - "url": "http://www.drinksmixer.com/drink1438.html" + "url": "https://www.drinksmixer.com/drink1438.html" }, { "directions": "Using a chilled cooper mug, fill with ice. Pour ingredients over ice. Garnish with sprig of fresh mint.", @@ -4503,7 +4503,7 @@ "ginger ale" ], "title": "Bob's Moscow Mule recipe", - "url": "http://www.drinksmixer.com/drink1439.html" + "url": "https://www.drinksmixer.com/drink1439.html" }, { "directions": "Add them all together in any order you wish, just make sure you stir it all together well.", @@ -4518,7 +4518,7 @@ "peach schnapps" ], "title": "Bob's Special Punch recipe", - "url": "http://www.drinksmixer.com/drink1440.html" + "url": "https://www.drinksmixer.com/drink1440.html" }, { "directions": "Stir all ingredients (except lemon peel) with ice and strain into a cocktail glass. Add the twist of lemon peel and serve.", @@ -4529,7 +4529,7 @@ "lemon" ], "title": "Bobby Burns Cocktail recipe", - "url": "http://www.drinksmixer.com/drink1441.html" + "url": "https://www.drinksmixer.com/drink1441.html" }, { "directions": "Shake well and strain into a large cocktail glass.", @@ -4540,7 +4540,7 @@ "cream" ], "title": "Bobby Cocktail recipe", - "url": "http://www.drinksmixer.com/drink1442.html" + "url": "https://www.drinksmixer.com/drink1442.html" }, { "directions": "Shake amaretto and orange juice first then top with soda.", @@ -4550,7 +4550,7 @@ "soda water" ], "title": "Bocci Ball recipe", - "url": "http://www.drinksmixer.com/drink1443.html" + "url": "https://www.drinksmixer.com/drink1443.html" }, { "directions": "Pour sake and coconut milk into the glass. Fill with pink lemonade. Fill the glass with ice first if desired.", @@ -4561,7 +4561,7 @@ "ice" ], "title": "Bogomip recipe", - "url": "http://www.drinksmixer.com/drink1445.html" + "url": "https://www.drinksmixer.com/drink1445.html" }, { "directions": "Fill shot glass with whiskey. Drop full shot glass into mug o' beer. Drink immediately, enjoy.", @@ -4570,7 +4570,7 @@ "beer" ], "title": "Boilermaker recipe", - "url": "http://www.drinksmixer.com/drink1446.html" + "url": "https://www.drinksmixer.com/drink1446.html" }, { "directions": "Pour shots into an old-fashioned glass. Fill with dr. pepper or mountain dew, mix and serve.", @@ -4579,7 +4579,7 @@ "Dr. Pepper\u00ae soda" ], "title": "The Boiling Panther recipe", - "url": "http://www.drinksmixer.com/drink1447.html" + "url": "https://www.drinksmixer.com/drink1447.html" }, { "directions": "Put all ingredients in the blender and blend until slushy. Serve very cold.", @@ -4592,7 +4592,7 @@ "ice" ], "title": "Boku's Blend recipe", - "url": "http://www.drinksmixer.com/drink1448.html" + "url": "https://www.drinksmixer.com/drink1448.html" }, { "directions": "Combine all in a shaker with adequate ice. Shake vigorously. Strain into a chilled martini glass.", @@ -4603,7 +4603,7 @@ "grenadine syrup" ], "title": "Bold Gold Monkey recipe", - "url": "http://www.drinksmixer.com/drink1449.html" + "url": "https://www.drinksmixer.com/drink1449.html" }, { "directions": "Mix in glass. Serve on the rocks (optional).", @@ -4613,7 +4613,7 @@ "grapefruit juice" ], "title": "Bolduc On The Beach recipe", - "url": "http://www.drinksmixer.com/drink1450.html" + "url": "https://www.drinksmixer.com/drink1450.html" }, { "directions": "Stir all ingredients well with cracked ice. Strain into a cocktail glass and serve.", @@ -4623,7 +4623,7 @@ "sweet vermouth" ], "title": "Bolero recipe", - "url": "http://www.drinksmixer.com/drink1451.html" + "url": "https://www.drinksmixer.com/drink1451.html" }, { "directions": "Pour mango puree into a champagne flute (recommended) or a glass and slowly add champagne. Stir gently. Garnish with a mango slice.", @@ -4632,7 +4632,7 @@ "Champagne" ], "title": "Bombay Bellini recipe", - "url": "http://www.drinksmixer.com/drink1452.html" + "url": "https://www.drinksmixer.com/drink1452.html" }, { "directions": "Stir all ingredients with ice, strain into a cocktail glass, and serve.", @@ -4644,7 +4644,7 @@ "anis liqueur" ], "title": "Bombay Cocktail recipe", - "url": "http://www.drinksmixer.com/drink1453.html" + "url": "https://www.drinksmixer.com/drink1453.html" }, { "directions": "Mix over ice in a shaker cup, strain and shoot.", @@ -4656,7 +4656,7 @@ "7-Up\u00ae soda" ], "title": "The Bomb recipe", - "url": "http://www.drinksmixer.com/drink1455.html" + "url": "https://www.drinksmixer.com/drink1455.html" }, { "directions": "Shake & Strain.", @@ -4665,7 +4665,7 @@ "peppermint schnapps" ], "title": "BonBon recipe", - "url": "http://www.drinksmixer.com/drink1457.html" + "url": "https://www.drinksmixer.com/drink1457.html" }, { "directions": "Pour all ingredients into a mixing cup, cover cup with a lid and shake. Pour over ice and enjoy.", @@ -4680,7 +4680,7 @@ "grenadine syrup" ], "title": "Bondages' No Problem recipe", - "url": "http://www.drinksmixer.com/drink1458.html" + "url": "https://www.drinksmixer.com/drink1458.html" }, { "directions": "Mix ingredients and serve.", @@ -4694,7 +4694,7 @@ "grenadine syrup" ], "title": "Bonecrusher recipe", - "url": "http://www.drinksmixer.com/drink1459.html" + "url": "https://www.drinksmixer.com/drink1459.html" }, { "directions": "Layer this drink! Grenadine first, Amaretto next, and 151 on top. Light the 151 and let it warm for about 3 seconds. Blow (lightly) to put the flame out and take the shot.", @@ -4704,7 +4704,7 @@ "151 proof rum" ], "title": "Bonfire recipe", - "url": "http://www.drinksmixer.com/drink1460.html" + "url": "https://www.drinksmixer.com/drink1460.html" }, { "directions": "Mix together, with the most alcoholic drinks last in order.", @@ -4715,7 +4715,7 @@ "milk" ], "title": "Bongs Anfield Slammer recipe", - "url": "http://www.drinksmixer.com/drink1461.html" + "url": "https://www.drinksmixer.com/drink1461.html" }, { "directions": "In shoot glass add Wild Turkey and melon liqeur. Float Bacardi 151 on top. Light drink, and squeeze lime in drink. Blow out and shoot.", @@ -4725,7 +4725,7 @@ "Bacardi\u00ae 151 rum" ], "title": "Bonsai Pipeline recipe", - "url": "http://www.drinksmixer.com/drink1462.html" + "url": "https://www.drinksmixer.com/drink1462.html" }, { "directions": "Combine Orange Kool-Aid and Vodka. Add some Jagermeister and it will look and taste scary.", @@ -4735,7 +4735,7 @@ "Jagermeister\u00ae herbal liqueur" ], "title": "Boo Punch recipe", - "url": "http://www.drinksmixer.com/drink1463.html" + "url": "https://www.drinksmixer.com/drink1463.html" }, { "directions": "After the first 1/2 oz, drop just a tiny bit of Bailey's on top.", @@ -4746,7 +4746,7 @@ "Bailey's\u00ae Irish cream" ], "title": "Booger recipe", - "url": "http://www.drinksmixer.com/drink1465.html" + "url": "https://www.drinksmixer.com/drink1465.html" }, { "directions": "Add Vodka and White Wine to the coffee. The coffee must still be hot.", @@ -4756,7 +4756,7 @@ "coffee" ], "title": "Boom Box recipe", - "url": "http://www.drinksmixer.com/drink1466.html" + "url": "https://www.drinksmixer.com/drink1466.html" }, { "directions": "Fill a shot glass 1/2 way with the yukon jack. top it off with the jagermeister.", @@ -4765,7 +4765,7 @@ "Yukon Jack\u00ae Canadian whisky" ], "title": "Boomerang Shot recipe", - "url": "http://www.drinksmixer.com/drink1467.html" + "url": "https://www.drinksmixer.com/drink1467.html" }, { "directions": "In a mixing glass half-filled with ice cubes, combine the gin, vermouth, bitters, and maraschino liqueur. Stir well. Strain into a cocktail glass and garnish with the cherry.", @@ -4777,7 +4777,7 @@ "maraschino cherry" ], "title": "Boomerang recipe", - "url": "http://www.drinksmixer.com/drink1468.html" + "url": "https://www.drinksmixer.com/drink1468.html" }, { "directions": "Blend, add ice, strain.", @@ -4789,7 +4789,7 @@ "sweet and sour mix" ], "title": "Boomer recipe", - "url": "http://www.drinksmixer.com/drink1469.html" + "url": "https://www.drinksmixer.com/drink1469.html" }, { "directions": "Half fill a 20oz glass (preferrably in the shape of a Cowboy Boot) with ice, regular or crushed. Pour the spirits over the ice. Add lemon-lime mix leaving room at the top for the 1/2 oz of coca-cola to dirty the drink.", @@ -4802,7 +4802,7 @@ "lemon-lime mix" ], "title": "Boot Blaster recipe", - "url": "http://www.drinksmixer.com/drink1470.html" + "url": "https://www.drinksmixer.com/drink1470.html" }, { "directions": "Pour vodka, rum and triple sec over ice in a pint glass. Fill with equal parts of sweet and sour mix and 7-up, add grenadine, and serve.", @@ -4815,7 +4815,7 @@ "7-Up\u00ae soda" ], "title": "Bootlegger Tea recipe", - "url": "http://www.drinksmixer.com/drink1471.html" + "url": "https://www.drinksmixer.com/drink1471.html" }, { "directions": "Mix three shots together in a mixing glass, pour over ice in an old-fashioned glass, and serve.", @@ -4825,7 +4825,7 @@ "sambuca" ], "title": "The Bootlegger recipe", - "url": "http://www.drinksmixer.com/drink1472.html" + "url": "https://www.drinksmixer.com/drink1472.html" }, { "directions": "Fill mixing glass 1/2 full with ice. Add all ingredients. Strain into a rocks glass.", @@ -4836,7 +4836,7 @@ "Bacardi\u00ae 151 rum" ], "title": "Booty Juice recipe", - "url": "http://www.drinksmixer.com/drink1473.html" + "url": "https://www.drinksmixer.com/drink1473.html" }, { "directions": "Fill glass with ice. Add liquors. Fill with Pineapple juice. Shake. Garnish with Orange slice. Serve.", @@ -4849,7 +4849,7 @@ "peach schnapps" ], "title": "Bootzilla recipe", - "url": "http://www.drinksmixer.com/drink1474.html" + "url": "https://www.drinksmixer.com/drink1474.html" }, { "directions": "Mix and serve.", @@ -4858,7 +4858,7 @@ "7-Up\u00ae soda" ], "title": "Boozy Maria recipe", - "url": "http://www.drinksmixer.com/drink1475.html" + "url": "https://www.drinksmixer.com/drink1475.html" }, { "directions": "Prepare in a blender or shaker, serve in a highball glass on the rocks. Garnish with 1 slice of pineapple and one cherry.", @@ -4869,7 +4869,7 @@ "grenadine syrup" ], "title": "Bora Bora recipe", - "url": "http://www.drinksmixer.com/drink1476.html" + "url": "https://www.drinksmixer.com/drink1476.html" }, { "directions": "Pour the tequila, lime juice, lemon juice, and cola into a highball glass almost filled with ice cubes. Stir well and garnish with the lime wedge.", @@ -4881,7 +4881,7 @@ "lime" ], "title": "Border Crossing recipe", - "url": "http://www.drinksmixer.com/drink1477.html" + "url": "https://www.drinksmixer.com/drink1477.html" }, { "directions": "Fill the glass 3/4 full with ice cubes. Add the Tequila, Vodka, Pisang Ambon, Sprite and lime. Stir. Garnish with a slice of orange and a cocktail cerry.", @@ -4894,7 +4894,7 @@ "Sprite\u00ae soda" ], "title": "Born To Be Wild recipe", - "url": "http://www.drinksmixer.com/drink1479.html" + "url": "https://www.drinksmixer.com/drink1479.html" }, { "directions": "In a mixing glass half-filled with crushed ice, combine all of the ingredients. Stir well. Strain into a cocktail glass.", @@ -4905,7 +4905,7 @@ "triple sec" ], "title": "Bosom Caresser recipe", - "url": "http://www.drinksmixer.com/drink1480.html" + "url": "https://www.drinksmixer.com/drink1480.html" }, { "directions": "In a LARGE shot glass (or small juice glass), add Rootbeer Schnapps, Amaretto, Butterscotch Schnapps and Bacardi 151 dark. Top off with Bailey's Irish Cream. Add 4 to 6 drops (or more for the daring) of Tabasco on top. Slam, do not sip!", @@ -4918,7 +4918,7 @@ "Bailey's\u00ae Irish cream" ], "title": "Boston Burn-Out recipe", - "url": "http://www.drinksmixer.com/drink1481.html" + "url": "https://www.drinksmixer.com/drink1481.html" }, { "directions": "Shake all ingredients with ice, strain into a cocktail glass, and serve.", @@ -4929,7 +4929,7 @@ "lemons" ], "title": "Boston Cocktail recipe", - "url": "http://www.drinksmixer.com/drink1482.html" + "url": "https://www.drinksmixer.com/drink1482.html" }, { "directions": "Build over ice. Stir. Garnish with lemon slice and a straw.", @@ -4943,7 +4943,7 @@ "Grand Marnier\u00ae orange liqueur" ], "title": "Boston Ice Tea recipe", - "url": "http://www.drinksmixer.com/drink1483.html" + "url": "https://www.drinksmixer.com/drink1483.html" }, { "directions": "Shake all ingredients with ice, strain into a cocktail glass, and serve.", @@ -4954,7 +4954,7 @@ "limes" ], "title": "Boston Sidecar recipe", - "url": "http://www.drinksmixer.com/drink1484.html" + "url": "https://www.drinksmixer.com/drink1484.html" }, { "directions": "Shake juice of lemon, powdered sugar, blended whiskey, and egg white with cracked ice and strain into a whiskey sour glass. Add the slice of lemon, top with the cherry, and serve.", @@ -4967,7 +4967,7 @@ "lemon" ], "title": "Boston Sour recipe", - "url": "http://www.drinksmixer.com/drink1485.html" + "url": "https://www.drinksmixer.com/drink1485.html" }, { "directions": "Just add all ingredients and add quite a lot of Angostura and try to make sure that the Angostura is mixed through the drink.", @@ -4977,7 +4977,7 @@ "Angostura\u00ae bitters" ], "title": "Boswandeling recipe", - "url": "http://www.drinksmixer.com/drink1486.html" + "url": "https://www.drinksmixer.com/drink1486.html" }, { "directions": "Combine ingredients. May be served on the rocks or chilled and strained as a shot.", @@ -4987,7 +4987,7 @@ "root beer schnapps" ], "title": "Bottlecap recipe", - "url": "http://www.drinksmixer.com/drink1487.html" + "url": "https://www.drinksmixer.com/drink1487.html" }, { "directions": "The easy way to make this drink is to add all listed ingredients with ice into shaker and strain into glass. \r", @@ -4999,7 +4999,7 @@ "orange juice" ], "title": "Bot Cocktail recipe", - "url": "http://www.drinksmixer.com/drink1488.html" + "url": "https://www.drinksmixer.com/drink1488.html" }, { "directions": "In a shaker half-filled with ice cubes, combine all of the ingredients. Shake well. Strain into a cocktail glass.", @@ -5009,7 +5009,7 @@ "lemon juice" ], "title": "Bourble recipe", - "url": "http://www.drinksmixer.com/drink1489.html" + "url": "https://www.drinksmixer.com/drink1489.html" }, { "directions": "Pour the bourbon and water into a highball glass almost filled with ice cubes.", @@ -5018,7 +5018,7 @@ "mineral water" ], "title": "Bourbon and Branch recipe", - "url": "http://www.drinksmixer.com/drink1490.html" + "url": "https://www.drinksmixer.com/drink1490.html" }, { "directions": "Pour the bourbon into a highball glass with some ice cubes. Fill glass with sprite or 7-up, and serve.", @@ -5027,7 +5027,7 @@ "Sprite\u00ae soda" ], "title": "Bourbon and Sprite recipe", - "url": "http://www.drinksmixer.com/drink1491.html" + "url": "https://www.drinksmixer.com/drink1491.html" }, { "directions": "Chill liquor prior to mixing. Pour both in a shot glass.", @@ -5036,7 +5036,7 @@ "banana liqueur" ], "title": "Banana Jack recipe", - "url": "http://www.drinksmixer.com/drink1492.html" + "url": "https://www.drinksmixer.com/drink1492.html" }, { "directions": "Mix the champagne and cranberry juice, then float the Grand Marnier on top.", @@ -5046,7 +5046,7 @@ "Champagne" ], "title": "Poinsettia recipe", - "url": "http://www.drinksmixer.com/drink1494.html" + "url": "https://www.drinksmixer.com/drink1494.html" }, { "directions": "Stir gin and vermouth with ice in a mixing glass. Strain into a cocktail glass, add the olive, and serve.", @@ -5056,7 +5056,7 @@ "olive" ], "title": "Dry Martini recipe", - "url": "http://www.drinksmixer.com/drink1495.html" + "url": "https://www.drinksmixer.com/drink1495.html" }, { "directions": "Chill ouzo beforehand. Pour into a shot glass, add a splash of tabasco sauce, and serve. ", @@ -5065,7 +5065,7 @@ "ouzo anise liqueur" ], "title": "Tabouzo recipe", - "url": "http://www.drinksmixer.com/drink1496.html" + "url": "https://www.drinksmixer.com/drink1496.html" }, { "directions": "Pour in rum and then add orange juice. Add three ice cubes and serve.", @@ -5074,7 +5074,7 @@ "rum" ], "title": "Screwdriver #2 recipe", - "url": "http://www.drinksmixer.com/drink1498.html" + "url": "https://www.drinksmixer.com/drink1498.html" }, { "directions": "Mix desired amount of Captain Morgan (I prefer 2 shots) and one 12 oz IBC Root Beer over ice. Goes down smooth! ", @@ -5083,7 +5083,7 @@ "Captain Morgan\u00ae Original spiced rum" ], "title": "Hard Rootbeer recipe", - "url": "http://www.drinksmixer.com/drink1501.html" + "url": "https://www.drinksmixer.com/drink1501.html" }, { "directions": "Added ice and ingredients in a shaker. Shake well until top becomes frosted. Then poor in a shooter glass. This will be best yet smoothes shot you'll ever taste.", @@ -5094,7 +5094,7 @@ "sweet and sour mix" ], "title": "Water Moccasin recipe", - "url": "http://www.drinksmixer.com/drink1502.html" + "url": "https://www.drinksmixer.com/drink1502.html" }, { "directions": "Just pour a 1/3 of each bottle into a pint glass and enjoy", @@ -5104,7 +5104,7 @@ "Smirnoff\u00ae Ice" ], "title": "Green Monkey recipe", - "url": "http://www.drinksmixer.com/drink1503.html" + "url": "https://www.drinksmixer.com/drink1503.html" }, { "directions": "Pour each of the above into a tall bar glass. Shake with ice, pour into a cocktail or martini glass, and serve.", @@ -5115,7 +5115,7 @@ "lemon" ], "title": "French Martini recipe", - "url": "http://www.drinksmixer.com/drink1504.html" + "url": "https://www.drinksmixer.com/drink1504.html" }, { "directions": "Pour 3/4 oz. Crown Royal in shot glass. Add 1/4 oz. Amaretto. Serve", @@ -5124,7 +5124,7 @@ "amaretto almond liqueur" ], "title": "Red Royal recipe", - "url": "http://www.drinksmixer.com/drink1506.html" + "url": "https://www.drinksmixer.com/drink1506.html" }, { "directions": "Place 1/2 of Draft in a mug.\r", @@ -5134,7 +5134,7 @@ "amaretto almond liqueur" ], "title": "Doctor Pepper recipe", - "url": "http://www.drinksmixer.com/drink1508.html" + "url": "https://www.drinksmixer.com/drink1508.html" }, { "directions": "Dissolve lime jello in a cup of boiling water. Add another cup (or more to taste) of tequila (for special occasions add slices of lime) and mix well. Chill for 2 hours in a freezer or 4 hours in a fridge. Serve in shot glasses.", @@ -5144,7 +5144,7 @@ "Jose Cuervo\u00ae Especial gold tequila" ], "title": "Sublime recipe", - "url": "http://www.drinksmixer.com/drink1509.html" + "url": "https://www.drinksmixer.com/drink1509.html" }, { "directions": "Mix 1 packet Black Cherry jello with 1 cup boiling water. Mix until sugar dissolved. Mix 1 cup Vodka (or more to taste) and chill in freezer for 2 hours or fridge for 4.. ", @@ -5154,7 +5154,7 @@ "vodka" ], "title": "Mid-Night Passion recipe", - "url": "http://www.drinksmixer.com/drink1510.html" + "url": "https://www.drinksmixer.com/drink1510.html" }, { "directions": "Pour contents on ice pour into shaker give one hard shake then pour back into glass serve chilled", @@ -5165,7 +5165,7 @@ "Coca-Cola\u00ae" ], "title": "Get Faced recipe", - "url": "http://www.drinksmixer.com/drink1512.html" + "url": "https://www.drinksmixer.com/drink1512.html" }, { "directions": "Pour 2 oz of vodka into glass, then add the gummi bears. Pour in orange juice and serve.", @@ -5175,7 +5175,7 @@ "gummi bears" ], "title": "The Teddy Toolman recipe", - "url": "http://www.drinksmixer.com/drink1513.html" + "url": "https://www.drinksmixer.com/drink1513.html" }, { "directions": "Pour all ingredients into a highball glass over ice cubes, stir, and serve.", @@ -5185,7 +5185,7 @@ "cranberry juice" ], "title": "Woo Woo recipe", - "url": "http://www.drinksmixer.com/drink1514.html" + "url": "https://www.drinksmixer.com/drink1514.html" }, { "directions": "Drink your Corona a little bit past the neck.\r", @@ -5196,7 +5196,7 @@ "lime" ], "title": "Red Corona recipe", - "url": "http://www.drinksmixer.com/drink1515.html" + "url": "https://www.drinksmixer.com/drink1515.html" }, { "directions": "Pour shot of smirnoff and frangelico into short glass. Heavily coat the lemon slice.\r", @@ -5207,7 +5207,7 @@ "lemon" ], "title": "German Chocolate recipe", - "url": "http://www.drinksmixer.com/drink1516.html" + "url": "https://www.drinksmixer.com/drink1516.html" }, { "directions": "Pour red bull into a shot glass. Add a shot of jagermeister, including the shot glass, into the red bull.\r", @@ -5216,7 +5216,7 @@ "Red Bull\u00ae energy drink" ], "title": "Liquid Viagra recipe", - "url": "http://www.drinksmixer.com/drink1517.html" + "url": "https://www.drinksmixer.com/drink1517.html" }, { "directions": "In a medium glass half-filled with ice, add jack daniels and southern comfort. Fill the remainder of the glass with 7-up or sprite. Add a squeeze of a lemon wedge, and serve.", @@ -5226,7 +5226,7 @@ "7-Up\u00ae soda" ], "title": "Southern Sour recipe", - "url": "http://www.drinksmixer.com/drink1519.html" + "url": "https://www.drinksmixer.com/drink1519.html" }, { "directions": "Mix ingredients together and serve cold.", @@ -5236,7 +5236,7 @@ "Malibu\u00ae coconut rum" ], "title": "Jessica in the Snow recipe", - "url": "http://www.drinksmixer.com/drink1520.html" + "url": "https://www.drinksmixer.com/drink1520.html" }, { "directions": "Add into a shot glass in equal parts.", @@ -5246,7 +5246,7 @@ "Jack Daniel's\u00ae Tennessee whiskey" ], "title": "Three Wise Men recipe", - "url": "http://www.drinksmixer.com/drink1521.html" + "url": "https://www.drinksmixer.com/drink1521.html" }, { "directions": "Add in to shot glass in equal parts.", @@ -5257,7 +5257,7 @@ "Wild Turkey\u00ae bourbon whiskey" ], "title": "Three Wise Men Go Hunting recipe", - "url": "http://www.drinksmixer.com/drink1522.html" + "url": "https://www.drinksmixer.com/drink1522.html" }, { "directions": "Add in parts into a shot glass. \r", @@ -5267,7 +5267,7 @@ "Goldschlager\u00ae cinnamon schnapps" ], "title": "Three Wise Men #2 recipe", - "url": "http://www.drinksmixer.com/drink1525.html" + "url": "https://www.drinksmixer.com/drink1525.html" }, { "directions": "Add all ingredients and fill the rest of the shaker with Orange Juice. Add ice and shake.", @@ -5279,7 +5279,7 @@ "orange juice" ], "title": "Illusions recipe", - "url": "http://www.drinksmixer.com/drink1526.html" + "url": "https://www.drinksmixer.com/drink1526.html" }, { "directions": "Lick the back of your hand, put salt on the (now) sticky back of your hand, lick the salt, down a large dose of straight tequila and then bite into the lemon.", @@ -5289,7 +5289,7 @@ "lemons" ], "title": "Tequila Slammer recipe", - "url": "http://www.drinksmixer.com/drink1527.html" + "url": "https://www.drinksmixer.com/drink1527.html" }, { "directions": "Pour ingredients in a shot glass. Doesn't matter which order. Enjoy. Beep Beep", @@ -5299,7 +5299,7 @@ "McGuinness\u00ae creme de menthe" ], "title": "Dinky Car Vrroooom recipe", - "url": "http://www.drinksmixer.com/drink1530.html" + "url": "https://www.drinksmixer.com/drink1530.html" }, { "directions": "Add all ingredients in a shaker with ice and strain into a chilled cocktail glass or serve on the rocks.", @@ -5309,7 +5309,7 @@ "Kahlua\u00ae coffee liqueur" ], "title": "Delhis Devils recipe", - "url": "http://www.drinksmixer.com/drink1531.html" + "url": "https://www.drinksmixer.com/drink1531.html" }, { "directions": "First pour Creme de Menthe into a shooter glass.\r", @@ -5319,7 +5319,7 @@ "cognac" ], "title": "Indian Flag recipe", - "url": "http://www.drinksmixer.com/drink1532.html" + "url": "https://www.drinksmixer.com/drink1532.html" }, { "directions": "Take shot glass and pour in this order:\r", @@ -5329,7 +5329,7 @@ "Bailey's\u00ae Irish cream" ], "title": "Green Legunes recipe", - "url": "http://www.drinksmixer.com/drink1533.html" + "url": "https://www.drinksmixer.com/drink1533.html" }, { "directions": "In a shaker half-filled with ice cubes, combine the bourbon, sloe gin, lemon juice, and sugar. Shake well. Strain into a cocktail glass. Garnish with the cherry.", @@ -5341,7 +5341,7 @@ "maraschino cherry" ], "title": "Bourbon Black Hawk #2 recipe", - "url": "http://www.drinksmixer.com/drink1534.html" + "url": "https://www.drinksmixer.com/drink1534.html" }, { "directions": "In a mixing glass half-filled with ice cubes, combine the bourbon and sloe gin. Stir and strain into a cocktail glass. Garnish with the cherry.", @@ -5351,7 +5351,7 @@ "maraschino cherry" ], "title": "Bourbon Black Hawk recipe", - "url": "http://www.drinksmixer.com/drink1535.html" + "url": "https://www.drinksmixer.com/drink1535.html" }, { "directions": "In an old-fashioned glass, dissolve the sugar in the club soda. Add crushed ice until the glass is almost full. Add the bourbon and stir well. Garnish with the cherry, orange and lemon slices.", @@ -5364,7 +5364,7 @@ "blended bourbon whiskey" ], "title": "Bourbon Cobbler recipe", - "url": "http://www.drinksmixer.com/drink1536.html" + "url": "https://www.drinksmixer.com/drink1536.html" }, { "directions": "In a large wine glass, dissolve the sugar in the club soda. Almost fill the glass with crushed ice. Add the bourbon. Garnish with strawberry, lime and pineapple wedges.", @@ -5377,7 +5377,7 @@ "lime" ], "title": "Bourbon Cobbler #2 recipe", - "url": "http://www.drinksmixer.com/drink1537.html" + "url": "https://www.drinksmixer.com/drink1537.html" }, { "directions": "Pour the bourbon and the soda into a highball glass almost filled with ice cubes. Stir well. Garnish with the lemon wedge.", @@ -5387,7 +5387,7 @@ "lemon" ], "title": "Bourbon Cooler recipe", - "url": "http://www.drinksmixer.com/drink1538.html" + "url": "https://www.drinksmixer.com/drink1538.html" }, { "directions": "In a shaker half-filled with ice cubes, combine the bourbon and cream. Shake well. Strain into a cocktail glass.", @@ -5396,7 +5396,7 @@ "light cream" ], "title": "Bourbon County Cowboy recipe", - "url": "http://www.drinksmixer.com/drink1539.html" + "url": "https://www.drinksmixer.com/drink1539.html" }, { "directions": "In a shaker half-filled with ice cubes, combine the bourbon, lemon juice, grenadine, and sugar. Shake well. Pour into an old-fashioned glass. Garnish with the orange slice and the cherry.", @@ -5409,7 +5409,7 @@ "maraschino cherry" ], "title": "Bourbon Daisy recipe", - "url": "http://www.drinksmixer.com/drink1540.html" + "url": "https://www.drinksmixer.com/drink1540.html" }, { "directions": "In a shaker half-filled with ice cubes, combine the sugar, lemon juice, and water. Shake well. Strain into a highball glass almost filled with crushed ice. Add the bourbon. Stir well and garnish with the cherry and the lemon slice.", @@ -5422,7 +5422,7 @@ "lemon" ], "title": "Bourbon Fix recipe", - "url": "http://www.drinksmixer.com/drink1541.html" + "url": "https://www.drinksmixer.com/drink1541.html" }, { "directions": "In a shaker half-filled with ice cubes, combine the bourbon, egg, sugar, and cream. Shake well. Strain into a sour glass and garnish with the nutmeg.", @@ -5434,7 +5434,7 @@ "nutmeg" ], "title": "Bourbon Flip recipe", - "url": "http://www.drinksmixer.com/drink1542.html" + "url": "https://www.drinksmixer.com/drink1542.html" }, { "directions": "Pour bourbon into a highball glass over ice cubes. Fill with carbonated water and stir. Add the twist of lemon peel and serve. (Ginger ale may be substituted for carbonated water, if preferred.)", @@ -5444,7 +5444,7 @@ "lemon" ], "title": "Bourbon Highball recipe", - "url": "http://www.drinksmixer.com/drink1543.html" + "url": "https://www.drinksmixer.com/drink1543.html" }, { "directions": "In a highball glass, dissolve the sugar in the bourbon by stirring with a teaspoon. Add 6 ice cubes and the milk. Stir well. Garnish with the cinnamon.", @@ -5455,7 +5455,7 @@ "cinnamon" ], "title": "Bourbon Milk Punch #2 recipe", - "url": "http://www.drinksmixer.com/drink1544.html" + "url": "https://www.drinksmixer.com/drink1544.html" }, { "directions": "In a shaker half-filled with ice cubes, combine the bourbon, creme de cacao, and milk. Shake well. Pour into a highball glass and garnish with the nutmeg.", @@ -5466,7 +5466,7 @@ "nutmeg" ], "title": "Bourbon Milk Punch #3 recipe", - "url": "http://www.drinksmixer.com/drink1545.html" + "url": "https://www.drinksmixer.com/drink1545.html" }, { "directions": "In a shaker half-filled with ice cubes, combine the bourbon, half-and-half, sugar, and vanilla extract. Shake well. Strain into a highball glass and garnish with the nutmeg.", @@ -5478,7 +5478,7 @@ "nutmeg" ], "title": "Bourbon Milk Punch recipe", - "url": "http://www.drinksmixer.com/drink1546.html" + "url": "https://www.drinksmixer.com/drink1546.html" }, { "directions": "In an old-fashioned glass, muddle the bitters and water into the sugar cube, using the back of a teaspoon. Almost fill the glass with ice cubes and add the bourbon. Garnish with the orange slice and the cherry. Serve with a swizzle stick.", @@ -5491,7 +5491,7 @@ "maraschino cherry" ], "title": "Bourbon Old-Fashioned recipe", - "url": "http://www.drinksmixer.com/drink1547.html" + "url": "https://www.drinksmixer.com/drink1547.html" }, { "directions": "In a shaker half-filled with ice cubes, combine the sugar, water, lemon juice, and bourbon. Shake well. Strain well. Strain into a highball glass. Garnish with the lemon twist.", @@ -5503,7 +5503,7 @@ "lemon" ], "title": "Bourbon Sling recipe", - "url": "http://www.drinksmixer.com/drink1548.html" + "url": "https://www.drinksmixer.com/drink1548.html" }, { "directions": "Mix all ingredients a day ahead and place in freezer. When ready to serve, take out of freezer and put desired amount in blender for a second or put in a bowl and mix till it is semi-liquified. Serve in old-fashioned glasses.", @@ -5516,7 +5516,7 @@ "tea" ], "title": "Bourbon Slush recipe", - "url": "http://www.drinksmixer.com/drink1549.html" + "url": "https://www.drinksmixer.com/drink1549.html" }, { "directions": "In a shaker half-filled with ice cubes, combine the bourbon, lemon juice, and sugar. Shake well. Strain into a whiskey sour glass, garnish with the orange slice and cherry.", @@ -5528,7 +5528,7 @@ "maraschino cherry" ], "title": "Bourbon Sour recipe", - "url": "http://www.drinksmixer.com/drink1550.html" + "url": "https://www.drinksmixer.com/drink1550.html" }, { "directions": "In a shaker half-filled with ice cubes, combine the lime juice, sugar, bourbon, and bitters. Shake well. Almost fill a collins glass with crushed ice. Stir until glass is frosted. Strain the mixture in the shaker into the glass and add the club soda.", @@ -5541,7 +5541,7 @@ "club soda" ], "title": "Bourbon Swizzle recipe", - "url": "http://www.drinksmixer.com/drink1551.html" + "url": "https://www.drinksmixer.com/drink1551.html" }, { "directions": "Pour in the bourbon, then pour in the ouzo and serve.", @@ -5550,7 +5550,7 @@ "ouzo anise liqueur" ], "title": "Bouzo recipe", - "url": "http://www.drinksmixer.com/drink1552.html" + "url": "https://www.drinksmixer.com/drink1552.html" }, { "directions": "In a shaker half-filled with ice cubes, combine all of the ingredients. Shake well. Strain into a sour glass.", @@ -5562,7 +5562,7 @@ "egg" ], "title": "Boxcar recipe", - "url": "http://www.drinksmixer.com/drink1553.html" + "url": "https://www.drinksmixer.com/drink1553.html" }, { "directions": "Add ingrediants in following order: ice, vodka, lime, and then pineapple. Stir vigorously.", @@ -5573,7 +5573,7 @@ "ice cubes" ], "title": "The Bozek recipe", - "url": "http://www.drinksmixer.com/drink1554.html" + "url": "https://www.drinksmixer.com/drink1554.html" }, { "directions": "Shake alcohols and juices. Add to glass with ice. Pour grenadine and ginger ale on top. Garnish with cherry and orange wheel.", @@ -5586,7 +5586,7 @@ "ginger ale" ], "title": "Brain Candy recipe", - "url": "http://www.drinksmixer.com/drink1555.html" + "url": "https://www.drinksmixer.com/drink1555.html" }, { "directions": "Pour all the ingredients over an ice-cube and stir gently.", @@ -5596,7 +5596,7 @@ "dry gin" ], "title": "Brain Damage recipe", - "url": "http://www.drinksmixer.com/drink1556.html" + "url": "https://www.drinksmixer.com/drink1556.html" }, { "directions": "Add the Bailey's, Kahlua, and Amaretto together in the shot glass. Then add a dash of Bacardi 151.", @@ -5607,7 +5607,7 @@ "Bacardi\u00ae 151 rum" ], "title": "Brain Destroyer recipe", - "url": "http://www.drinksmixer.com/drink1557.html" + "url": "https://www.drinksmixer.com/drink1557.html" }, { "directions": "In a sizable shot glass pour the Schlager, then Kahlua, then Vodka. Keep liquor levels seperate. Carefully slide a straw to bottom along side of the glass. Shoot from bottom thru straw. Bombs away!", @@ -5617,7 +5617,7 @@ "vodka" ], "title": "Brain Eraser recipe", - "url": "http://www.drinksmixer.com/drink1558.html" + "url": "https://www.drinksmixer.com/drink1558.html" }, { "directions": "Pour ingredients in shotglass. (Try it in a frozen shotglass.)", @@ -5626,7 +5626,7 @@ "Ice 101\u00ae peppermint schnapps" ], "title": "Brain Eraser #2 recipe", - "url": "http://www.drinksmixer.com/drink1559.html" + "url": "https://www.drinksmixer.com/drink1559.html" }, { "directions": "Pour first two ingredients over ice, fill glass with club soda. Drink through straw.", @@ -5636,7 +5636,7 @@ "club soda" ], "title": "Brain Eraser #3 recipe", - "url": "http://www.drinksmixer.com/drink1560.html" + "url": "https://www.drinksmixer.com/drink1560.html" }, { "directions": "Pre-chill soda, and mix slowly with other ingredients and ice in a punch bowl.", @@ -5649,7 +5649,7 @@ "Bacardi\u00ae white rum" ], "title": "Brain Fart recipe", - "url": "http://www.drinksmixer.com/drink1561.html" + "url": "https://www.drinksmixer.com/drink1561.html" }, { "directions": "Add Schnapps, Dribble Bailey's to give the look of a brain and add a few drops of grenadine to make that hemmorage look.", @@ -5659,7 +5659,7 @@ "grenadine syrup" ], "title": "Brain Tumor #2 recipe", - "url": "http://www.drinksmixer.com/drink1562.html" + "url": "https://www.drinksmixer.com/drink1562.html" }, { "directions": "Pour the peach schnapps into the shot glass, almost to the top. Slowly, and gently layer the Bailey's in on the side of the glass, to almost full. Add a touch of grenadine down the middle and a touch of cherry brandy down the middle.", @@ -5670,7 +5670,7 @@ "cherry brandy" ], "title": "Brain Tumor recipe", - "url": "http://www.drinksmixer.com/drink1563.html" + "url": "https://www.drinksmixer.com/drink1563.html" }, { "directions": "Fill the shaker half with ice cubes, and add the ingredients. Shake well. Serve in a shot glass.", @@ -5681,7 +5681,7 @@ "ice cubes" ], "title": "Braindead recipe", - "url": "http://www.drinksmixer.com/drink1564.html" + "url": "https://www.drinksmixer.com/drink1564.html" }, { "directions": "In a mixing glass half-filled with ice cubes, combine all of the ingredients. Stir well. Strain into a cocktail glass.", @@ -5691,7 +5691,7 @@ "sweet vermouth" ], "title": "Brainstorm recipe", - "url": "http://www.drinksmixer.com/drink1565.html" + "url": "https://www.drinksmixer.com/drink1565.html" }, { "directions": "Layered Erin Cream first, then sambuca and then advocaat (should sit in middle of other two). \r", @@ -5701,7 +5701,7 @@ "advocaat liqueur" ], "title": "Brainteaser recipe", - "url": "http://www.drinksmixer.com/drink1566.html" + "url": "https://www.drinksmixer.com/drink1566.html" }, { "directions": "Mix together in a double shot glass (alcohol first!) then float the pepper on top.", @@ -5711,7 +5711,7 @@ "peppers" ], "title": "Bram Stoker's Dracula recipe", - "url": "http://www.drinksmixer.com/drink1567.html" + "url": "https://www.drinksmixer.com/drink1567.html" }, { "directions": "Float each ingredient over the previous, set on fire, and shoot it!", @@ -5722,7 +5722,7 @@ "151 proof rum" ], "title": "Branded Nipple recipe", - "url": "http://www.drinksmixer.com/drink1568.html" + "url": "https://www.drinksmixer.com/drink1568.html" }, { "directions": "In a shaker half-filled with ice cubes, crack the egg and add the rest of the ingredients. Shake well. Strain into a cocktail glass.", @@ -5734,7 +5734,7 @@ "superfine sugar" ], "title": "Brandied Egg Sour recipe", - "url": "http://www.drinksmixer.com/drink1569.html" + "url": "https://www.drinksmixer.com/drink1569.html" }, { "directions": "Stir all ingredients (except lemon peel) with cracked ice and strain into an old-fashioned glass over ice cubes. Add the twist of lemon peel and serve.", @@ -5745,7 +5745,7 @@ "lemon" ], "title": "Brandied Madeira recipe", - "url": "http://www.drinksmixer.com/drink1570.html" + "url": "https://www.drinksmixer.com/drink1570.html" }, { "directions": "Scoop two large scoops of vanilla ice-cream into frosted beer mug. Next, add 2 ounces Maker's Mark. Then, pour in coke. Gently stir and enjoy.", @@ -5755,7 +5755,7 @@ "Maker's Mark\u00ae bourbon whiskey" ], "title": "Brandon and Will's Coke Float recipe", - "url": "http://www.drinksmixer.com/drink1571.html" + "url": "https://www.drinksmixer.com/drink1571.html" }, { "directions": "In a shaker half-filled with ice cubes, combine the brandy, creme de cacao, and cream. Shake well. Strain into a cocktail glass and garnish with the nutmeg.", @@ -5766,7 +5766,7 @@ "nutmeg" ], "title": "Brandy Alexander #2 recipe", - "url": "http://www.drinksmixer.com/drink1572.html" + "url": "https://www.drinksmixer.com/drink1572.html" }, { "directions": "In a shaker half-filled with ice cubes, combine the brandy, creme de cacao, and half-and-half. Shake well. Strain into a cocktail glass and garnish with the nutmeg.", @@ -5777,7 +5777,7 @@ "nutmeg" ], "title": "Brandy Alexander recipe", - "url": "http://www.drinksmixer.com/drink1573.html" + "url": "https://www.drinksmixer.com/drink1573.html" }, { "directions": "Blend all the ingredients in blender, garnished with cinnamon powder.", @@ -5789,7 +5789,7 @@ "cinnamon" ], "title": "Brandy Alexandra recipe", - "url": "http://www.drinksmixer.com/drink1574.html" + "url": "https://www.drinksmixer.com/drink1574.html" }, { "directions": "Pour the brandy and club soda into a collins glass almost filled with ice cubes. Stir well.", @@ -5798,7 +5798,7 @@ "club soda" ], "title": "Brandy and Soda recipe", - "url": "http://www.drinksmixer.com/drink1575.html" + "url": "https://www.drinksmixer.com/drink1575.html" }, { "directions": "In an old-fashioned glass, dissolve the sugar in brandy. Add the orange slice. Tilt the glass and carefully ignite the drink with a match. Stir with a long spoon until the flame is extinguished. Strain into a punch cup and garnish with the lemon twist.", @@ -5809,7 +5809,7 @@ "lemon" ], "title": "Brandy Blazer recipe", - "url": "http://www.drinksmixer.com/drink1576.html" + "url": "https://www.drinksmixer.com/drink1576.html" }, { "directions": "In an old-fashioned glass, dissolve the sugar in the club soda. Add crushed ice until the glass is almost full. Add the brandy. Stir well. Garnish with the cherry and the orange and lemon slices.", @@ -5822,7 +5822,7 @@ "orange" ], "title": "Brandy Cobbler recipe", - "url": "http://www.drinksmixer.com/drink1577.html" + "url": "https://www.drinksmixer.com/drink1577.html" }, { "directions": "Stir all ingredients (except lemon peel) with ice and strain into a cocktail glass. Add the twist of lemon peel and serve.", @@ -5833,7 +5833,7 @@ "lemon" ], "title": "Brandy Cocktail recipe", - "url": "http://www.drinksmixer.com/drink1578.html" + "url": "https://www.drinksmixer.com/drink1578.html" }, { "directions": "Shake juice of lemon, brandy, and powdered sugar with cracked ice and strain into a collins glass. Add ice cubes, fill with carbonated water, and stir. Garnish with a slice of orange and top with a cherry. Serve with a straw.", @@ -5846,7 +5846,7 @@ "cherry" ], "title": "Brandy Collins recipe", - "url": "http://www.drinksmixer.com/drink1579.html" + "url": "https://www.drinksmixer.com/drink1579.html" }, { "directions": "Pour the brandy and the soda into a highball glass almost filled with ice cubes. Stir well. Garnish with the lemon wedge.", @@ -5856,7 +5856,7 @@ "lemon" ], "title": "Brandy Cooler recipe", - "url": "http://www.drinksmixer.com/drink1580.html" + "url": "https://www.drinksmixer.com/drink1580.html" }, { "directions": "In a shaker half-filled with ice cubes, combine the brandy, lemon juice, sugar, and grenadine. Shake well. Pour into an old-fashioned glass and garnish with the cherry and the orange slice.", @@ -5869,7 +5869,7 @@ "orange" ], "title": "Brandy Daisy recipe", - "url": "http://www.drinksmixer.com/drink1581.html" + "url": "https://www.drinksmixer.com/drink1581.html" }, { "directions": "Combine juice of lemon, powdered sugar, and water in a highball glass. Stir, fill with shaved ice, and add brandy. Stir again, add the lemon slice, and serve with a straw.", @@ -5881,7 +5881,7 @@ "lemon" ], "title": "Brandy Fix recipe", - "url": "http://www.drinksmixer.com/drink1582.html" + "url": "https://www.drinksmixer.com/drink1582.html" }, { "directions": "In a shaker half-filled with ice cubes, combine the brandy, lemon juice, and sugar. Shake well. Strain into a highball glass almost filled with ice cubes. Add the club soda. Stir well.", @@ -5892,7 +5892,7 @@ "club soda" ], "title": "Brandy Fizz recipe", - "url": "http://www.drinksmixer.com/drink1583.html" + "url": "https://www.drinksmixer.com/drink1583.html" }, { "directions": "In a shaker half-filled with ice cubes, combine the brandy, egg, sugar, and cream. Shake well. Strain into a sour glass and garnish with the nutmeg.", @@ -5904,7 +5904,7 @@ "nutmeg" ], "title": "Brandy Flip recipe", - "url": "http://www.drinksmixer.com/drink1584.html" + "url": "https://www.drinksmixer.com/drink1584.html" }, { "directions": "Pour brandy into a highball glass over ice cubes. Fill with carbonated water, add the twist of lemon peel, stir gently, and serve. (Ginger ale may be substituted for carbonated water, if preferred.)", @@ -5914,7 +5914,7 @@ "lemon" ], "title": "Brandy Highball recipe", - "url": "http://www.drinksmixer.com/drink1585.html" + "url": "https://www.drinksmixer.com/drink1585.html" }, { "directions": "Fill rocks glass with ice. Add Cherry juice and cherry, then bitters. Add brandy, then sweet vermouth. Add water, stir. Enjoy!", @@ -5927,7 +5927,7 @@ "water" ], "title": "Brandy Manhattan recipe", - "url": "http://www.drinksmixer.com/drink1586.html" + "url": "https://www.drinksmixer.com/drink1586.html" }, { "directions": "Shake brandy, milk, and powdered sugar with ice and strain into a collins glass. Sprinkle nutmeg on top and serve.", @@ -5938,7 +5938,7 @@ "nutmeg" ], "title": "Brandy Milk Punch recipe", - "url": "http://www.drinksmixer.com/drink1587.html" + "url": "https://www.drinksmixer.com/drink1587.html" }, { "directions": "Dissolve powdered sugar in 1 tsp. water. Add brandy and pour into a highball glass over ice cubes. Fill with carbonated water and stir. Float port on top, sprinkle lightly with nutmeg, and serve.", @@ -5951,7 +5951,7 @@ "nutmeg" ], "title": "Brandy Sangaree recipe", - "url": "http://www.drinksmixer.com/drink1588.html" + "url": "https://www.drinksmixer.com/drink1588.html" }, { "directions": "In a shaker half-filled with ice cubes, combine the sugar, water, lemon juice, and brandy. Shake well. Strain into an old-fashioned glass. Garnish with the lemon twist.", @@ -5963,7 +5963,7 @@ "lemon" ], "title": "Brandy Sling recipe", - "url": "http://www.drinksmixer.com/drink1589.html" + "url": "https://www.drinksmixer.com/drink1589.html" }, { "directions": "In an old-fashioned glass, muddle the mint sprigs lightly with the sugar and club soda. Fill the glass with ice cubes. Add the brandy. Stir well and garnish with the orange slice and the cherry.", @@ -5976,7 +5976,7 @@ "maraschino cherry" ], "title": "Brandy Smash recipe", - "url": "http://www.drinksmixer.com/drink1590.html" + "url": "https://www.drinksmixer.com/drink1590.html" }, { "directions": "Shake brandy, juice of lemon, and powdered sugar with ice and strain into a whiskey sour glass. Decorate with the lemon slice, top with the cherry, and serve.", @@ -5988,7 +5988,7 @@ "cherry" ], "title": "Brandy Sour recipe", - "url": "http://www.drinksmixer.com/drink1591.html" + "url": "https://www.drinksmixer.com/drink1591.html" }, { "directions": "In a shaker half-filled with ice cubes, combine the lime juice, sugar, brandy, and bitters. Shake well. Almost fill a collins glass with crushed ice and stir until glass is frosted. Strain the mixture in the shaker into the glass and add the club soda.", @@ -6001,7 +6001,7 @@ "club soda" ], "title": "Brandy Swizzle recipe", - "url": "http://www.drinksmixer.com/drink1592.html" + "url": "https://www.drinksmixer.com/drink1592.html" }, { "directions": "Dissolve powdered sugar in 1 tsp. water in an old-fashioned glass. Add brandy and one ice cube and stir. Add twist of lemon peel on top and serve.", @@ -6012,7 +6012,7 @@ "lemon" ], "title": "Brandy Toddy recipe", - "url": "http://www.drinksmixer.com/drink1593.html" + "url": "https://www.drinksmixer.com/drink1593.html" }, { "directions": "Stir all ingredients with ice, strain into a cocktail glass, and serve.", @@ -6022,7 +6022,7 @@ "bitters" ], "title": "Brandy Vermouth Cocktail recipe", - "url": "http://www.drinksmixer.com/drink1594.html" + "url": "https://www.drinksmixer.com/drink1594.html" }, { "directions": "Stir all ingredients (except lemon peel) with cracked ice and strain into an old-fashioned glass over ice cubes. Add the twist of lemon peel and serve.", @@ -6033,7 +6033,7 @@ "lemon" ], "title": "Brantini recipe", - "url": "http://www.drinksmixer.com/drink1595.html" + "url": "https://www.drinksmixer.com/drink1595.html" }, { "directions": "Mix the three, and chill'em. Then pour and serve.", @@ -6043,7 +6043,7 @@ "pineapple juice" ], "title": "Brass Balls recipe", - "url": "http://www.drinksmixer.com/drink1596.html" + "url": "https://www.drinksmixer.com/drink1596.html" }, { "directions": "Toss the rum and vodka together and stir gently. Pour in the orange juice, and shake well. Pour over ice in a highball or tall glass.", @@ -6053,7 +6053,7 @@ "orange juice" ], "title": "Brass Monkey recipe", - "url": "http://www.drinksmixer.com/drink1597.html" + "url": "https://www.drinksmixer.com/drink1597.html" }, { "directions": "Pour Tabasco into bottom of shot glass and fill with tequila.", @@ -6062,7 +6062,7 @@ "Tabasco\u00ae sauce" ], "title": "Brave Bull Shooter recipe", - "url": "http://www.drinksmixer.com/drink1598.html" + "url": "https://www.drinksmixer.com/drink1598.html" }, { "directions": "Pour tequila and coffee liqueur over ice cubes in an old-fashioned glass and stir. Add the twist of lemon and serve.", @@ -6072,7 +6072,7 @@ "lemon" ], "title": "Brave Bull recipe", - "url": "http://www.drinksmixer.com/drink1599.html" + "url": "https://www.drinksmixer.com/drink1599.html" }, { "directions": "Stir all ingredients with ice, strain into a cocktail glass, and serve.", @@ -6083,7 +6083,7 @@ "bitters" ], "title": "Brazil Cocktail recipe", - "url": "http://www.drinksmixer.com/drink1600.html" + "url": "https://www.drinksmixer.com/drink1600.html" }, { "directions": "The amount of ingredients can vary depending upon the size of the punch bowl.", @@ -6095,7 +6095,7 @@ "collins mix" ], "title": "The Breakfast Drink recipe", - "url": "http://www.drinksmixer.com/drink1601.html" + "url": "https://www.drinksmixer.com/drink1601.html" }, { "directions": "Mix all ingredients in tin with crushed ice. Shake, strain, and serve.", @@ -6106,7 +6106,7 @@ "half-and-half" ], "title": "Breast Milk recipe", - "url": "http://www.drinksmixer.com/drink1602.html" + "url": "https://www.drinksmixer.com/drink1602.html" }, { "directions": "Place the mint leaf in the bottom of the glass. Add the vodka first and fill with the creme de menthe.", @@ -6116,7 +6116,7 @@ "mint" ], "title": "Breath Freshener recipe", - "url": "http://www.drinksmixer.com/drink1603.html" + "url": "https://www.drinksmixer.com/drink1603.html" }, { "directions": "Add chartreuse and Yukon Jack to 151.", @@ -6126,7 +6126,7 @@ "Green Chartreuse\u00ae" ], "title": "Breath Stealer recipe", - "url": "http://www.drinksmixer.com/drink1604.html" + "url": "https://www.drinksmixer.com/drink1604.html" }, { "directions": "Mix together and serve.", @@ -6135,7 +6135,7 @@ "Bacardi\u00ae white rum" ], "title": "Breathalizer recipe", - "url": "http://www.drinksmixer.com/drink1605.html" + "url": "https://www.drinksmixer.com/drink1605.html" }, { "directions": "Pour ingredients into large pot, stir, serve. As punch disappears continue to add more rum.", @@ -6145,7 +6145,7 @@ "fruit punch" ], "title": "Brendan's Punch of Happiness recipe", - "url": "http://www.drinksmixer.com/drink1606.html" + "url": "https://www.drinksmixer.com/drink1606.html" }, { "directions": "Build the three ingredients in a shot glass in the order listed. Fold a paper bar napkin and place firmly over the top. Slam the shot glass on the table, bar, etc. Make sure the drink fizzes. Turn the drink up and 'Slam It Into Your Head' before the fizzing subsides or try to be the first to re-slam the empty shot glass to the bar in a 'Group Head Slam'.", @@ -6155,7 +6155,7 @@ "7-Up\u00ae soda" ], "title": "Tequila Head Slam recipe", - "url": "http://www.drinksmixer.com/drink1607.html" + "url": "https://www.drinksmixer.com/drink1607.html" }, { "directions": "Shake, then add Orangina and ice cubes.", @@ -6169,7 +6169,7 @@ "ice cubes" ], "title": "The Brett Schroeder recipe", - "url": "http://www.drinksmixer.com/drink1608.html" + "url": "https://www.drinksmixer.com/drink1608.html" }, { "directions": "Everything goes in a highball glass with ice. Pour Seven Up or Sprite on the top Garnish with lemon and some other fresh fruit. Drink with a straw.", @@ -6180,7 +6180,7 @@ "7-Up\u00ae soda" ], "title": "Brevann Springwater recipe", - "url": "http://www.drinksmixer.com/drink1609.html" + "url": "https://www.drinksmixer.com/drink1609.html" }, { "directions": "Mix Kool-Aid, juice, lemonade, sugar, and water. Add booze and ice cubes and let cool. Add champagne and ginger ale before serving. Adjust punch to party mood with more vodka.", @@ -6198,7 +6198,7 @@ "Champagne" ], "title": "Brian Sinnott Family Punch recipe", - "url": "http://www.drinksmixer.com/drink1610.html" + "url": "https://www.drinksmixer.com/drink1610.html" }, { "directions": "Mix Kool-Aid, juice, lemonaid, sugar, and water. Add ice cubes and let cool. Add ginger ale before serving.", @@ -6213,7 +6213,7 @@ "ginger ale" ], "title": "Brian Sinnott Family Punch #2 recipe", - "url": "http://www.drinksmixer.com/drink1611.html" + "url": "https://www.drinksmixer.com/drink1611.html" }, { "directions": "In a shaker half-filled with ice cubes, combine the rum, creme de cacao, lemon juice, and sugar. Shake well. Strain into a highball glass almost filled with ice cubes. Top with the tea and stir well.", @@ -6225,7 +6225,7 @@ "tea" ], "title": "Brian's Belief recipe", - "url": "http://www.drinksmixer.com/drink1612.html" + "url": "https://www.drinksmixer.com/drink1612.html" }, { "directions": "Shake with cracked ice.", @@ -6239,7 +6239,7 @@ "orange juice" ], "title": "Brimstone recipe", - "url": "http://www.drinksmixer.com/drink1613.html" + "url": "https://www.drinksmixer.com/drink1613.html" }, { "directions": "Mix in no particular order. Serve over ice.", @@ -6248,7 +6248,7 @@ "Sprite\u00ae soda" ], "title": "Brittle Fracture recipe", - "url": "http://www.drinksmixer.com/drink1614.html" + "url": "https://www.drinksmixer.com/drink1614.html" }, { "directions": "Stir all ingredients with ice, strain into a cocktail glass, and serve.", @@ -6258,7 +6258,7 @@ "triple sec" ], "title": "Broken Spur Cocktail recipe", - "url": "http://www.drinksmixer.com/drink1615.html" + "url": "https://www.drinksmixer.com/drink1615.html" }, { "directions": "Place amaretto, melon liqueur, cranberry juice, and ice in a shaker. Then strain into a shot glass.", @@ -6268,7 +6268,7 @@ "cranberry juice" ], "title": "Broken Down Golf Cart #2 recipe", - "url": "http://www.drinksmixer.com/drink1616.html" + "url": "https://www.drinksmixer.com/drink1616.html" }, { "directions": "Shake and strain through ice.", @@ -6278,7 +6278,7 @@ "lime juice" ], "title": "Broken Down Golf Cart recipe", - "url": "http://www.drinksmixer.com/drink1617.html" + "url": "https://www.drinksmixer.com/drink1617.html" }, { "directions": "In a shaker half-filled with ice cubes, combine all of the ingredients. Shake well. Strain into a cocktail glass.", @@ -6288,7 +6288,7 @@ "orange juice" ], "title": "The Bronx Ain't So Sweet recipe", - "url": "http://www.drinksmixer.com/drink1618.html" + "url": "https://www.drinksmixer.com/drink1618.html" }, { "directions": "Shake all ingredients (except orange slice) with ice and strain into a cocktail glass. Add orange slice and serve.", @@ -6299,7 +6299,7 @@ "orange" ], "title": "Bronx Cocktail recipe", - "url": "http://www.drinksmixer.com/drink1619.html" + "url": "https://www.drinksmixer.com/drink1619.html" }, { "directions": "Shake all ingredients (except orange slice) with ice and strain into a whiskey sour glass. Add the orange slice and serve.", @@ -6312,7 +6312,7 @@ "egg" ], "title": "Bronx Golden Cocktail recipe", - "url": "http://www.drinksmixer.com/drink1620.html" + "url": "https://www.drinksmixer.com/drink1620.html" }, { "directions": "Shake all ingredients with ice, strain into a whiskey sour glass, and serve.", @@ -6323,7 +6323,7 @@ "egg" ], "title": "Bronx Silver Cocktail recipe", - "url": "http://www.drinksmixer.com/drink1621.html" + "url": "https://www.drinksmixer.com/drink1621.html" }, { "directions": "Shake all ingredients (except cherry) with ice and strain into a cocktail glass. Top with the cherry and serve.", @@ -6334,7 +6334,7 @@ "cherry" ], "title": "Bronx Terrace Cocktail recipe", - "url": "http://www.drinksmixer.com/drink1622.html" + "url": "https://www.drinksmixer.com/drink1622.html" }, { "directions": "Fill glass with ice. Mix rum vodka, and gin. Add splash of pinepple juice, Razzmatazz, and sour mix. Drinker or assistant pours beer.", @@ -6348,7 +6348,7 @@ "beer" ], "title": "Brooklyn Zoo recipe", - "url": "http://www.drinksmixer.com/drink1623.html" + "url": "https://www.drinksmixer.com/drink1623.html" }, { "directions": "Shake all ingredients with ice, strain into a cocktail glass, and serve.", @@ -6358,7 +6358,7 @@ "light cream" ], "title": "Brown Bomber recipe", - "url": "http://www.drinksmixer.com/drink1624.html" + "url": "https://www.drinksmixer.com/drink1624.html" }, { "directions": "Stir all ingredients with ice, strain into a cocktail glass, and serve.", @@ -6368,7 +6368,7 @@ "dry vermouth" ], "title": "Brown Cocktail recipe", - "url": "http://www.drinksmixer.com/drink1625.html" + "url": "https://www.drinksmixer.com/drink1625.html" }, { "directions": "Fill the glass with the amount of Tia Maria you would like and put an equal amount, or a little more, of milk. Add two ice cubes and down.", @@ -6378,7 +6378,7 @@ "ice cubes" ], "title": "Brown Cow #2 recipe", - "url": "http://www.drinksmixer.com/drink1626.html" + "url": "https://www.drinksmixer.com/drink1626.html" }, { "directions": "Mix all ingredients until no chocolate residue is left on bottom of glass. Serve chilled.", @@ -6388,7 +6388,7 @@ "chocolate syrup" ], "title": "Brown Cow From Hell recipe", - "url": "http://www.drinksmixer.com/drink1627.html" + "url": "https://www.drinksmixer.com/drink1627.html" }, { "directions": "In a champagne flute with ice, add kahlua and top with milk. Stir. Garnish stirrer with nutmeg.", @@ -6398,7 +6398,7 @@ "nutmeg" ], "title": "Brown Cow recipe", - "url": "http://www.drinksmixer.com/drink1628.html" + "url": "https://www.drinksmixer.com/drink1628.html" }, { "directions": "Mix all five together then chill.", @@ -6410,7 +6410,7 @@ "butterscotch schnapps" ], "title": "Brown Eye Opener recipe", - "url": "http://www.drinksmixer.com/drink1629.html" + "url": "https://www.drinksmixer.com/drink1629.html" }, { "directions": "Fill glass with ice, then vodka, then bitters. Stir.", @@ -6419,7 +6419,7 @@ "Angostura\u00ae bitters" ], "title": "Brown Hen recipe", - "url": "http://www.drinksmixer.com/drink1630.html" + "url": "https://www.drinksmixer.com/drink1630.html" }, { "directions": "Combine in a mixing glass, stir gently and pour over ice cubes in a highball glass.", @@ -6429,7 +6429,7 @@ "ice" ], "title": "Brown Pelican recipe", - "url": "http://www.drinksmixer.com/drink1631.html" + "url": "https://www.drinksmixer.com/drink1631.html" }, { "directions": "In a regular-sized shot glass, layer, with a spoon or cherry, the grenadine, the Kahlua, then the Bailey's Irish cream in equal portions. It goes down really smooth ,and you don't even need a chaser. It tastes just like chocolate milk.(Really!)", @@ -6439,7 +6439,7 @@ "Bailey's\u00ae Irish cream" ], "title": "Bruce's Puce recipe", - "url": "http://www.drinksmixer.com/drink1632.html" + "url": "https://www.drinksmixer.com/drink1632.html" }, { "directions": "Pour all ingredients in a mixing tin over ice, stir, and strain into shot glass.", @@ -6450,7 +6450,7 @@ "cranberry juice" ], "title": "Bruised Heart recipe", - "url": "http://www.drinksmixer.com/drink1633.html" + "url": "https://www.drinksmixer.com/drink1633.html" }, { "directions": "Mix strega and tequila in a blender the crushed ice. Moist the rim of the glass with lemon and decorate with sugar. Add a little sugar syrup. Pour in and fill with soda.", @@ -6463,7 +6463,7 @@ "sugar" ], "title": "Bruja Mexicana recipe", - "url": "http://www.drinksmixer.com/drink1634.html" + "url": "https://www.drinksmixer.com/drink1634.html" }, { "directions": "Pour 1/3 ounce tabasco sauce into a one ounce shot glass. Fill the rest of the shot glass with either HOT 100 or if you prefer you can use a regular cinnamon schnapps. Drink immediately after making. This drink will lose flavor quickly.", @@ -6472,7 +6472,7 @@ "Tabasco\u00ae sauce" ], "title": "Brush Fire recipe", - "url": "http://www.drinksmixer.com/drink1635.html" + "url": "https://www.drinksmixer.com/drink1635.html" }, { "directions": "Pour ingredients into an old-fashioned glass, and slam.", @@ -6481,7 +6481,7 @@ "vodka" ], "title": "Brutal Hammer recipe", - "url": "http://www.drinksmixer.com/drink1636.html" + "url": "https://www.drinksmixer.com/drink1636.html" }, { "directions": "Layer in order into a shot glass.", @@ -6492,7 +6492,7 @@ "peach schnapps" ], "title": "Bubble Gum recipe", - "url": "http://www.drinksmixer.com/drink1637.html" + "url": "https://www.drinksmixer.com/drink1637.html" }, { "directions": "Pour the corona into an 18oz beer glass pour the bacardi limon into the beer stir very gently.", @@ -6501,7 +6501,7 @@ "Bacardi\u00ae Limon rum" ], "title": "Buccaneer recipe", - "url": "http://www.drinksmixer.com/drink1638.html" + "url": "https://www.drinksmixer.com/drink1638.html" }, { "directions": "Pour rum, sherry, and juice of lime in a highball glass over ice cubes. Fill with ginger ale, stir, and serve.", @@ -6512,7 +6512,7 @@ "ginger ale" ], "title": "Buck Jones recipe", - "url": "http://www.drinksmixer.com/drink1639.html" + "url": "https://www.drinksmixer.com/drink1639.html" }, { "directions": "The Tequila and Whiskey are mixed in the bottom of the shot glass. The Baileys is to act like the 'wax' in a shotgun shell and is layered on top of the whiskey/tequila mix. The fresh ground pepper is your 'buckshot' that creates the spice/burning sensation. Sprinkle it on the top.", @@ -6523,7 +6523,7 @@ "pepper" ], "title": "Buckshot recipe", - "url": "http://www.drinksmixer.com/drink1640.html" + "url": "https://www.drinksmixer.com/drink1640.html" }, { "directions": "Pour ingredients into a highball glass, stir, and serve without ice.", @@ -6532,7 +6532,7 @@ "water" ], "title": "Buddy's Favorite recipe", - "url": "http://www.drinksmixer.com/drink1641.html" + "url": "https://www.drinksmixer.com/drink1641.html" }, { "directions": "Pour Mad Dog and Mountain Dew into a glass (plastic beer glasses work the best). Stir. Add a couple ice cubes.", @@ -6541,7 +6541,7 @@ "Mountain Dew\u00ae citrus soda" ], "title": "Buddy recipe", - "url": "http://www.drinksmixer.com/drink1642.html" + "url": "https://www.drinksmixer.com/drink1642.html" }, { "directions": "Use a large glass, add ice, add JD, add tequila, add water, then insert straw and serve.", @@ -6552,7 +6552,7 @@ "ice" ], "title": "Bull Breaker recipe", - "url": "http://www.drinksmixer.com/drink1644.html" + "url": "https://www.drinksmixer.com/drink1644.html" }, { "directions": "Mix all ingredients well and enjoy!", @@ -6564,7 +6564,7 @@ "half-and-half" ], "title": "Bull Rider recipe", - "url": "http://www.drinksmixer.com/drink1645.html" + "url": "https://www.drinksmixer.com/drink1645.html" }, { "directions": "Dissolve boullion cube in water. Mix in vodka and Tabasco. Garnish with celery.", @@ -6575,7 +6575,7 @@ "water" ], "title": "Bullshot #2 recipe", - "url": "http://www.drinksmixer.com/drink1646.html" + "url": "https://www.drinksmixer.com/drink1646.html" }, { "directions": "Shake with ice and strain into an old-fashioned glass.", @@ -6587,7 +6587,7 @@ "peppers" ], "title": "Bullshot #3 recipe", - "url": "http://www.drinksmixer.com/drink1647.html" + "url": "https://www.drinksmixer.com/drink1647.html" }, { "directions": "Pour brandy and hard cider into a highball glass over ice cubes. Fill with ginger ale, stir, and serve.", @@ -6597,7 +6597,7 @@ "ginger ale" ], "title": "Bull's Eye recipe", - "url": "http://www.drinksmixer.com/drink1648.html" + "url": "https://www.drinksmixer.com/drink1648.html" }, { "directions": "Shake rum, brandy, milk, and powdered sugar with ice and strain into a collins glass. Sprinkle nutmeg and the pinch of cinnamon on top and serve.", @@ -6610,7 +6610,7 @@ "cinnamon" ], "title": "Bull's Milk recipe", - "url": "http://www.drinksmixer.com/drink1649.html" + "url": "https://www.drinksmixer.com/drink1649.html" }, { "directions": "Just mix, shake and pour.", @@ -6619,7 +6619,7 @@ "Tabasco\u00ae sauce" ], "title": "Bull's Sweat recipe", - "url": "http://www.drinksmixer.com/drink1650.html" + "url": "https://www.drinksmixer.com/drink1650.html" }, { "directions": "Shake all ingredients with ice, strain into a cocktail glass, and serve.", @@ -6629,7 +6629,7 @@ "limes" ], "title": "Bulldog Cocktail recipe", - "url": "http://www.drinksmixer.com/drink1651.html" + "url": "https://www.drinksmixer.com/drink1651.html" }, { "directions": "Pour gin and juice of orange into a highball glass over ice cubes. Fill with ginger ale, stir, and serve.", @@ -6639,7 +6639,7 @@ "ginger ale" ], "title": "Bulldog Highball recipe", - "url": "http://www.drinksmixer.com/drink1652.html" + "url": "https://www.drinksmixer.com/drink1652.html" }, { "directions": "Shake well in a closed container, pour into an open container and stir well.", @@ -6648,7 +6648,7 @@ "lemonade" ], "title": "Bullfrog recipe", - "url": "http://www.drinksmixer.com/drink1654.html" + "url": "https://www.drinksmixer.com/drink1654.html" }, { "directions": "Add all ingredients to a cocktail shaker or pitcher with several ice cubes and stir. Strain into glass straight up or on the rocks and garnish with a stick of celery.", @@ -6661,7 +6661,7 @@ "celery salt" ], "title": "Bullshot #4 recipe", - "url": "http://www.drinksmixer.com/drink1655.html" + "url": "https://www.drinksmixer.com/drink1655.html" }, { "directions": "Pour 2 shots of Vodka in glass. Fill with cold Red Bull. Add 2 ice cubes (optional).", @@ -6670,7 +6670,7 @@ "Red Bull\u00ae energy drink" ], "title": "Bullvodka recipe", - "url": "http://www.drinksmixer.com/drink1657.html" + "url": "https://www.drinksmixer.com/drink1657.html" }, { "directions": "This is a layered shot. First pour the Bailey's into the shot glass. Then take an upside down spoon and touch it to the inside wall of the glass. Carefully add the Kahlua. Repeat this process for the Sambuca. If done properly, the alcohol will stay separated and resemble a bumble bee. Enjoy!", @@ -6680,7 +6680,7 @@ "sambuca" ], "title": "Bumble Bee recipe", - "url": "http://www.drinksmixer.com/drink1658.html" + "url": "https://www.drinksmixer.com/drink1658.html" }, { "directions": "Both liquors should be chilled. Pour the 1 oz of Jagermeister into glass. Add 1 oz of Barenjager, it will float on top. Enjoy!", @@ -6689,7 +6689,7 @@ "Barenjager\u00ae honey liqueur" ], "title": "Bumble Bee #2 recipe", - "url": "http://www.drinksmixer.com/drink1659.html" + "url": "https://www.drinksmixer.com/drink1659.html" }, { "directions": "The crushed ice should be added first, followed by the honey. Stir the mixture as you pour the gin on top, which should be relatively chilled. Add the squirts of lemon to your liking, and place a wedge over the rim, if desired.", @@ -6700,7 +6700,7 @@ "honey" ], "title": "Bumble Bee #3 recipe", - "url": "http://www.drinksmixer.com/drink1660.html" + "url": "https://www.drinksmixer.com/drink1660.html" }, { "directions": "In a shaker half-filled with ice cubes, combine all of the ingredients. Shake well. Strain into a cocktail glass.", @@ -6711,7 +6711,7 @@ "nutmeg" ], "title": "Bumbo recipe", - "url": "http://www.drinksmixer.com/drink1661.html" + "url": "https://www.drinksmixer.com/drink1661.html" }, { "directions": "Shake rum, juice of lemon, and powdered sugar with ice and strain into a highball glass over ice cubes. Fill with red wine and stir. Decorate with various fruits and serve.", @@ -6722,7 +6722,7 @@ "red wine" ], "title": "Burgundy Bishop recipe", - "url": "http://www.drinksmixer.com/drink1662.html" + "url": "https://www.drinksmixer.com/drink1662.html" }, { "directions": "In shot glass, drop in one small ice cube. Pour in Ouzo and then Rumple Minze.", @@ -6732,7 +6732,7 @@ "Rumple Minze\u00ae peppermint liqueur" ], "title": "Buried Under An Avalanche recipe", - "url": "http://www.drinksmixer.com/drink1663.html" + "url": "https://www.drinksmixer.com/drink1663.html" }, { "directions": "Combine the George Dickel, Jack Daniels, and Jim Beam into a 2 ounce shot glass. Splash in the grenadine. Give a quick stir-spin with a straw or stir rod. Slam fast and hard. Exhale.", @@ -6743,7 +6743,7 @@ "grenadine syrup" ], "title": "Burning Cherry recipe", - "url": "http://www.drinksmixer.com/drink1664.html" + "url": "https://www.drinksmixer.com/drink1664.html" }, { "directions": "Keep bottles chilled or mix over ice and strain into shot glass.", @@ -6752,7 +6752,7 @@ "Rumple Minze\u00ae peppermint liqueur" ], "title": "Burning Nazi recipe", - "url": "http://www.drinksmixer.com/drink1665.html" + "url": "https://www.drinksmixer.com/drink1665.html" }, { "directions": "Pour over ice in highball glass, stir. Garnish with a fresh strawberry.", @@ -6761,7 +6761,7 @@ "pineapple juice" ], "title": "Burning Sun recipe", - "url": "http://www.drinksmixer.com/drink1666.html" + "url": "https://www.drinksmixer.com/drink1666.html" }, { "directions": "Put into seperate shot glasses. Shoot the mezcal first then chase with goldschlager.", @@ -6770,7 +6770,7 @@ "Goldschlager\u00ae cinnamon schnapps" ], "title": "Burning Worm recipe", - "url": "http://www.drinksmixer.com/drink1667.html" + "url": "https://www.drinksmixer.com/drink1667.html" }, { "directions": "Fill high ball glass with ice cubes. Add one ounce each of vodka and peach schnapps. Then add 3 oz of pineapple juice and 1 oz of cranberry juice. Shake and serve.", @@ -6782,7 +6782,7 @@ "ice cubes" ], "title": "Burnso Tropical recipe", - "url": "http://www.drinksmixer.com/drink1668.html" + "url": "https://www.drinksmixer.com/drink1668.html" }, { "directions": "In a shaker half-filled with ice cubes, combine all of the ingredients. Shake well. Strain into a cocktail glass.", @@ -6792,7 +6792,7 @@ "pineapple juice" ], "title": "Burnt Embers recipe", - "url": "http://www.drinksmixer.com/drink1669.html" + "url": "https://www.drinksmixer.com/drink1669.html" }, { "directions": "Fill a shot glass half full with vodka, and add several drops of tabasco sauce. Add a half dash of salt and pepper, stir, and shoot.", @@ -6803,7 +6803,7 @@ "pepper" ], "title": "Burn Cocktail recipe", - "url": "http://www.drinksmixer.com/drink1670.html" + "url": "https://www.drinksmixer.com/drink1670.html" }, { "directions": "In a mixing glass half-filled with ice cubes, combine the rum, Dubonnet, and bitters. Stir well. Strain into a cocktail glass and garnish with the lemon twist.", @@ -6814,7 +6814,7 @@ "lemon" ], "title": "Bushranger recipe", - "url": "http://www.drinksmixer.com/drink1671.html" + "url": "https://www.drinksmixer.com/drink1671.html" }, { "directions": "Stir all ingredients with cracked ice, strain into a cocktail glass, and serve.", @@ -6824,7 +6824,7 @@ "bitters" ], "title": "Bushranger #2 recipe", - "url": "http://www.drinksmixer.com/drink1672.html" + "url": "https://www.drinksmixer.com/drink1672.html" }, { "directions": "Combine ingredients with two cups of ice in a blender. Blend until smooth, and serve up in two 12 oz cups.", @@ -6836,7 +6836,7 @@ "milk" ], "title": "Bushwacker recipe", - "url": "http://www.drinksmixer.com/drink1673.html" + "url": "https://www.drinksmixer.com/drink1673.html" }, { "directions": "Fill blender 3/4 with ice (small cubes best).\r", @@ -6850,7 +6850,7 @@ "ice" ], "title": "Bushwacker #2 recipe", - "url": "http://www.drinksmixer.com/drink1674.html" + "url": "https://www.drinksmixer.com/drink1674.html" }, { "directions": "Put all contents in a blender with ice and blend until smooth. Ice-cream can be substituted for the half-and-half.", @@ -6863,7 +6863,7 @@ "ice" ], "title": "Bushwacker #3 recipe", - "url": "http://www.drinksmixer.com/drink1675.html" + "url": "https://www.drinksmixer.com/drink1675.html" }, { "directions": "First place three or four ice cubes in a rock glass. The Bailey's is placed in the glass first otherwise the cream will curdle. Then the Bushmill's whiskey is added slowly and stirred until thoroughly mixed.", @@ -6873,7 +6873,7 @@ "ice cubes" ], "title": "Bushwacker #4 recipe", - "url": "http://www.drinksmixer.com/drink1676.html" + "url": "https://www.drinksmixer.com/drink1676.html" }, { "directions": "Blend all ingredients with ice thoroughly and consume. Put a pair of pink panties on and go out and mow the grass.", @@ -6882,7 +6882,7 @@ "Mountain Dew\u00ae citrus soda" ], "title": "Butch's Pink Panties recipe", - "url": "http://www.drinksmixer.com/drink1677.html" + "url": "https://www.drinksmixer.com/drink1677.html" }, { "directions": "Pour all ingredients over ice in a large glass. Shake vigorously. Garnish with grated chocolate.", @@ -6892,7 +6892,7 @@ "half-and-half" ], "title": "Butcherblock recipe", - "url": "http://www.drinksmixer.com/drink1678.html" + "url": "https://www.drinksmixer.com/drink1678.html" }, { "directions": "Fill a resealable 32. oz container with one can of Mountain Dew. Add the 2 shots of everclear then the second can of Mountain Dew. Add the sprees and shake until they turn white. Strain the mixture into the serving pitcher. Keep the sprees and eat them later.", @@ -6902,7 +6902,7 @@ "candies" ], "title": "Butt Naked Kiwi recipe", - "url": "http://www.drinksmixer.com/drink1679.html" + "url": "https://www.drinksmixer.com/drink1679.html" }, { "directions": "In a cocktail shaker, combine all ingredients except club soda and cherry with cracked ice. Shake well. Strain into glass over ice cubes and fill with club soda. Stir, then add cherry.", @@ -6915,7 +6915,7 @@ "maraschino cherry" ], "title": "Buttafuoco recipe", - "url": "http://www.drinksmixer.com/drink1680.html" + "url": "https://www.drinksmixer.com/drink1680.html" }, { "directions": "Mix butterscotch shnapps with Bailey's irish cream then pour milk over the mixture. Add crushed ice.\r", @@ -6926,7 +6926,7 @@ "crushed ice" ], "title": "Butter Cream recipe", - "url": "http://www.drinksmixer.com/drink1681.html" + "url": "https://www.drinksmixer.com/drink1681.html" }, { "directions": "Pour ingredients into an old-fashioned glass over ice and serve.", @@ -6936,7 +6936,7 @@ "amaretto almond liqueur" ], "title": "Butter Nut Scotch recipe", - "url": "http://www.drinksmixer.com/drink1682.html" + "url": "https://www.drinksmixer.com/drink1682.html" }, { "directions": "Use a double shot glass. Pour the Butterscotch Schnapps first, then the coffee liqueur.", @@ -6945,7 +6945,7 @@ "coffee liqueur" ], "title": "Butterballs recipe", - "url": "http://www.drinksmixer.com/drink1683.html" + "url": "https://www.drinksmixer.com/drink1683.html" }, { "directions": "Add Amaretto first and then layer Butterscotch schnapps on top, don't mix. Add whipped cream if desired.", @@ -6954,7 +6954,7 @@ "amaretto almond liqueur" ], "title": "Butterball recipe", - "url": "http://www.drinksmixer.com/drink1684.html" + "url": "https://www.drinksmixer.com/drink1684.html" }, { "directions": "Pour the butterscotch shnapps in first, then slowly, pour the baileys down the inside, so that it rests on top of the butterscotch.", @@ -6963,7 +6963,7 @@ "Bailey's\u00ae Irish cream" ], "title": "Butterbee recipe", - "url": "http://www.drinksmixer.com/drink1685.html" + "url": "https://www.drinksmixer.com/drink1685.html" }, { "directions": "Pour amaretto, irish cream, and Kahlua over ice cubes. Add half-and-half, and stir well.", @@ -6975,7 +6975,7 @@ "ice cubes" ], "title": "Buttered Toffee recipe", - "url": "http://www.drinksmixer.com/drink1686.html" + "url": "https://www.drinksmixer.com/drink1686.html" }, { "directions": "Fill glass with ice. Pour Butterscotch Schnapps and Bailey's into the glass. Fill with Milk. Shake. Serve with sip straw.", @@ -6985,7 +6985,7 @@ "milk" ], "title": "Butterfinger recipe", - "url": "http://www.drinksmixer.com/drink1687.html" + "url": "https://www.drinksmixer.com/drink1687.html" }, { "directions": "Mix ingredients. Chill over ice. Strain into shot glass.", @@ -6996,7 +6996,7 @@ "pineapple juice" ], "title": "Butternut Rum Lifesaver recipe", - "url": "http://www.drinksmixer.com/drink1688.html" + "url": "https://www.drinksmixer.com/drink1688.html" }, { "directions": "The Butterscotch Schnapps makes up the bottom layer. The top layer of Baileys should be added using a spoon. This is a layered shot. Delicious!", @@ -7005,7 +7005,7 @@ "Bailey's\u00ae Irish cream" ], "title": "Buttery Nipple #2 recipe", - "url": "http://www.drinksmixer.com/drink1689.html" + "url": "https://www.drinksmixer.com/drink1689.html" }, { "directions": "Pour schnapps into shot glass. Carefully add Bailey's to surface. Do not mix.", @@ -7014,7 +7014,7 @@ "Bailey's\u00ae Irish cream" ], "title": "Buttery Nipple #3 recipe", - "url": "http://www.drinksmixer.com/drink1690.html" + "url": "https://www.drinksmixer.com/drink1690.html" }, { "directions": "Layer Bailey's on top of Butterscotch. Then you take the cherry liqueur along with a cherry and place the cherry on top of the spoon, while pouring the cherry liqueur into the shot.", @@ -7024,7 +7024,7 @@ "cherry liqueur" ], "title": "Buttery Nipple With A Cherry Kiss recipe", - "url": "http://www.drinksmixer.com/drink1691.html" + "url": "https://www.drinksmixer.com/drink1691.html" }, { "directions": "Pour ingredients into mixing glass, swirl and strain into shot glass.", @@ -7033,7 +7033,7 @@ "butterscotch schnapps" ], "title": "Buttmeister recipe", - "url": "http://www.drinksmixer.com/drink1692.html" + "url": "https://www.drinksmixer.com/drink1692.html" }, { "directions": "Shake all ingredients with ice, strain into a cocktail glass, and serve.", @@ -7044,7 +7044,7 @@ "white creme de menthe" ], "title": "Button Hook Cocktail recipe", - "url": "http://www.drinksmixer.com/drink1693.html" + "url": "https://www.drinksmixer.com/drink1693.html" }, { "directions": "Start with the coffee, preferably espresso. Add in the vodka, triple sec and lemon juice (lime juice can be used instead) and stir. Top with the whipped cream.", @@ -7056,7 +7056,7 @@ "whipped cream" ], "title": "Buttsex recipe", - "url": "http://www.drinksmixer.com/drink1694.html" + "url": "https://www.drinksmixer.com/drink1694.html" }, { "directions": "Put the two shots into frosty beer mug. Add IBC Root Beer into glass. Ice cubes are optional.", @@ -7065,7 +7065,7 @@ "Yukon Jack\u00ae Canadian whisky" ], "title": "Buzz Inducer recipe", - "url": "http://www.drinksmixer.com/drink1695.html" + "url": "https://www.drinksmixer.com/drink1695.html" }, { "directions": "Pour over cracked ice filled in glass and stir briefly.", @@ -7075,7 +7075,7 @@ "orange juice" ], "title": "Buzz Lightyear recipe", - "url": "http://www.drinksmixer.com/drink1696.html" + "url": "https://www.drinksmixer.com/drink1696.html" }, { "directions": "Pour ingredients into a shaker half filled with ice. Shake vigorously and strain into a shot glass.", @@ -7085,7 +7085,7 @@ "peppermint schnapps" ], "title": "Buzzard's Breath recipe", - "url": "http://www.drinksmixer.com/drink1697.html" + "url": "https://www.drinksmixer.com/drink1697.html" }, { "directions": "Pour all ingredients into a highball glass with ice, and stir. Add a slice of lime if desired, and serve.", @@ -7097,7 +7097,7 @@ "lime juice" ], "title": "Buzzby recipe", - "url": "http://www.drinksmixer.com/drink1698.html" + "url": "https://www.drinksmixer.com/drink1698.html" }, { "directions": "Add ice first, then vodka, OJ and tomato juice. Give a light stir. \r", @@ -7108,7 +7108,7 @@ "ice cubes" ], "title": "The BV recipe", - "url": "http://www.drinksmixer.com/drink1700.html" + "url": "https://www.drinksmixer.com/drink1700.html" }, { "directions": "Shake briskley for 10 seconds and serve in a tall glass over ice.", @@ -7120,7 +7120,7 @@ "ice" ], "title": "By The Pool recipe", - "url": "http://www.drinksmixer.com/drink1701.html" + "url": "https://www.drinksmixer.com/drink1701.html" }, { "directions": "Fill glass with crushed ice. Add rum and punch. Stir. Float banana liqueur. Garnish with pineapple, orange slice and maraschino cherry.", @@ -7130,7 +7130,7 @@ "99 Bananas\u00ae banana schnapps" ], "title": "Bye Bye Bahamas recipe", - "url": "http://www.drinksmixer.com/drink1702.html" + "url": "https://www.drinksmixer.com/drink1702.html" }, { "directions": "Drink this just like a shot of tequila. Mix the cognac and cointreau together in the shot glass. Lick between your thumb and forefinger and sprinkle sugar on it. Then lick the sugar, drink the shot, and suck on the lemon wedge when you're done.", @@ -7141,7 +7141,7 @@ "sugar" ], "title": "S.O.B. recipe", - "url": "http://www.drinksmixer.com/drink1703.html" + "url": "https://www.drinksmixer.com/drink1703.html" }, { "directions": "Pour into tall glass and serve.", @@ -7153,7 +7153,7 @@ "Rose's\u00ae lime juice" ], "title": "S2C3 recipe", - "url": "http://www.drinksmixer.com/drink1704.html" + "url": "https://www.drinksmixer.com/drink1704.html" }, { "directions": "Pour the Midori, Malibu, Schnapps, and orange juice into a shaker filled halfway with ice. Shake well. Pour into a collins glass and add the grenadine. Garnish with orange wedges and cherries as seen fit.", @@ -7165,7 +7165,7 @@ "grenadine syrup" ], "title": "The Sabino Special recipe", - "url": "http://www.drinksmixer.com/drink1705.html" + "url": "https://www.drinksmixer.com/drink1705.html" }, { "directions": "Chill together in the shaker and strain into a shot glass.", @@ -7174,7 +7174,7 @@ "Godiva\u00ae chocolate liqueur" ], "title": "Sabra recipe", - "url": "http://www.drinksmixer.com/drink1706.html" + "url": "https://www.drinksmixer.com/drink1706.html" }, { "directions": "Chill and strain into a shot glass.", @@ -7184,7 +7184,7 @@ "lime juice" ], "title": "Sacrilicious recipe", - "url": "http://www.drinksmixer.com/drink1707.html" + "url": "https://www.drinksmixer.com/drink1707.html" }, { "directions": "Pour over ice in a chilled glass and stir. Garnish with a cherry.", @@ -7195,7 +7195,7 @@ "maraschino cherry" ], "title": "Safe Sex on the Beach recipe", - "url": "http://www.drinksmixer.com/drink1708.html" + "url": "https://www.drinksmixer.com/drink1708.html" }, { "directions": "Shake with ice and strain into a brandy snifter.", @@ -7206,7 +7206,7 @@ "ice" ], "title": "Sailor Mercury recipe", - "url": "http://www.drinksmixer.com/drink1709.html" + "url": "https://www.drinksmixer.com/drink1709.html" }, { "directions": "Shake and strain to pousse cafe glass. Garnish with a peel of lemon.", @@ -7218,7 +7218,7 @@ "ice" ], "title": "Sailor Venus recipe", - "url": "http://www.drinksmixer.com/drink1710.html" + "url": "https://www.drinksmixer.com/drink1710.html" }, { "directions": "Stir together. Serve.", @@ -7227,7 +7227,7 @@ "cranberry juice" ], "title": "Sailor's Delight recipe", - "url": "http://www.drinksmixer.com/drink1711.html" + "url": "https://www.drinksmixer.com/drink1711.html" }, { "directions": "Mix with ice, serve. \"Oranges and lemons say the bells of St Clemence\"", @@ -7236,7 +7236,7 @@ "bitter lemon soda" ], "title": "Saint Clemence recipe", - "url": "http://www.drinksmixer.com/drink1712.html" + "url": "https://www.drinksmixer.com/drink1712.html" }, { "directions": "Stir, pour into plastic cup and chug.", @@ -7245,7 +7245,7 @@ "Mad Dog\u00ae grape wine" ], "title": "The Saint Lawrence recipe", - "url": "http://www.drinksmixer.com/drink1713.html" + "url": "https://www.drinksmixer.com/drink1713.html" }, { "directions": "Take a tall glass, put a few ice cubes on top of each other. Pour the Gin and the rum in the glass. Fill the glass with bitter lemon. Leave some of the ice over the surface, so that you can pour the angostura on top of it. It should leave a rather nice track of red down the ice cubes.", @@ -7257,7 +7257,7 @@ "Angostura\u00ae bitters" ], "title": "Saint Paul recipe", - "url": "http://www.drinksmixer.com/drink1714.html" + "url": "https://www.drinksmixer.com/drink1714.html" }, { "directions": "It's real easy. Drop the shot of Sake into a glass of beer and the just slam it.", @@ -7266,7 +7266,7 @@ "beer" ], "title": "Sake Bomb recipe", - "url": "http://www.drinksmixer.com/drink1715.html" + "url": "https://www.drinksmixer.com/drink1715.html" }, { "directions": "In a mixing glass half-filled with ice cubes, combine the gin or vodka with the sake. Stir well. Strain into a cocktail glass. Garnish with the olive.", @@ -7276,7 +7276,7 @@ "olive" ], "title": "Saketini recipe", - "url": "http://www.drinksmixer.com/drink1716.html" + "url": "https://www.drinksmixer.com/drink1716.html" }, { "directions": "Pour coke into an old-fashioned glass, then orange juice, then vodka. Stir it about a bit, then add cordial. Enjoy.", @@ -7287,7 +7287,7 @@ "Stolichnaya\u00ae vodka" ], "title": "Salisbury Special recipe", - "url": "http://www.drinksmixer.com/drink1718.html" + "url": "https://www.drinksmixer.com/drink1718.html" }, { "directions": "Salt the rim of a Collins glass. Fill with ice, pour vodka along with the OJ. Fill the rest of the glass with grapefruit juice, and float midori melon liqueur on top.", @@ -7299,7 +7299,7 @@ "salt" ], "title": "Salty Balls recipe", - "url": "http://www.drinksmixer.com/drink1720.html" + "url": "https://www.drinksmixer.com/drink1720.html" }, { "directions": "Pour tequila over ice in a cocktail glass. Fill with grapefruit juice and add a dash of salt.", @@ -7309,7 +7309,7 @@ "salt" ], "title": "Salty Chihuahua recipe", - "url": "http://www.drinksmixer.com/drink1721.html" + "url": "https://www.drinksmixer.com/drink1721.html" }, { "directions": "In a shaker, add Smirnoff No.21 Vodka and grapefruit juice. Stir and serve over ice in salt-rimmed glass.\r", @@ -7319,7 +7319,7 @@ "salt" ], "title": "Salty Dog (Vodka) recipe", - "url": "http://www.drinksmixer.com/drink1722.html" + "url": "https://www.drinksmixer.com/drink1722.html" }, { "directions": "Pour all ingredients over ice cubes in a highball glass. Stir well and serve. (Vodka may be substituted for gin, if preferred.)", @@ -7329,7 +7329,7 @@ "salt" ], "title": "Salty Dog recipe", - "url": "http://www.drinksmixer.com/drink1723.html" + "url": "https://www.drinksmixer.com/drink1723.html" }, { "directions": "Combine and drink.", @@ -7339,7 +7339,7 @@ "peach schnapps" ], "title": "Sammy Slammer recipe", - "url": "http://www.drinksmixer.com/drink1724.html" + "url": "https://www.drinksmixer.com/drink1724.html" }, { "directions": "Put all ingredients in a blender with ice cubes. (More ice = more froth.) Blend until smooth and frothy. Pour into glass and enjoy.", @@ -7350,7 +7350,7 @@ "orange juice" ], "title": "Sammy Special recipe", - "url": "http://www.drinksmixer.com/drink1725.html" + "url": "https://www.drinksmixer.com/drink1725.html" }, { "directions": "Build all ingredients in a collins glass, cover, shake and serve.", @@ -7363,7 +7363,7 @@ "blackberry brandy" ], "title": "San Diego Seabreeze recipe", - "url": "http://www.drinksmixer.com/drink1726.html" + "url": "https://www.drinksmixer.com/drink1726.html" }, { "directions": "Shake the ingredients over ice, strain into an old-fashioned glass and serve. Down it in one.", @@ -7372,7 +7372,7 @@ "sambuca" ], "title": "San Diego Silver Bullet recipe", - "url": "http://www.drinksmixer.com/drink1727.html" + "url": "https://www.drinksmixer.com/drink1727.html" }, { "directions": "Shake all ingredients (except cherry) with ice and strain into a cocktail glass. Add the cherry on top and serve.", @@ -7385,7 +7385,7 @@ "cherry" ], "title": "San Francisco Cocktail recipe", - "url": "http://www.drinksmixer.com/drink1728.html" + "url": "https://www.drinksmixer.com/drink1728.html" }, { "directions": "Take a tall glass and put in a few ice cubes, fill the vodka over it and fill with juice then the \"creme\", to end fill in the grenadine but very carefully at the side of the glass so it will lay down in the bottom. garnish with orange and strawberry.", @@ -7396,7 +7396,7 @@ "orange juice" ], "title": "San Francisco recipe", - "url": "http://www.drinksmixer.com/drink1729.html" + "url": "https://www.drinksmixer.com/drink1729.html" }, { "directions": "Fill a highball glass with ice. \r", @@ -7406,7 +7406,7 @@ "pineapple juice" ], "title": "San Juan Cooler recipe", - "url": "http://www.drinksmixer.com/drink1730.html" + "url": "https://www.drinksmixer.com/drink1730.html" }, { "directions": "Shake liquor and sour mix. Garnish with lemon wedge.", @@ -7417,7 +7417,7 @@ "Coca-Cola\u00ae" ], "title": "San Juan Tea recipe", - "url": "http://www.drinksmixer.com/drink1731.html" + "url": "https://www.drinksmixer.com/drink1731.html" }, { "directions": "Fill mug 3/4 full with coffee. Add Kahlua, Bailey's and cream. Stir and serve.", @@ -7428,7 +7428,7 @@ "cream" ], "title": "San Patricio recipe", - "url": "http://www.drinksmixer.com/drink1732.html" + "url": "https://www.drinksmixer.com/drink1732.html" }, { "directions": "Stir and serve neat. Add a cherry.", @@ -7438,7 +7438,7 @@ "Angostura\u00ae bitters" ], "title": "Sancho Panza recipe", - "url": "http://www.drinksmixer.com/drink1733.html" + "url": "https://www.drinksmixer.com/drink1733.html" }, { "directions": "In a shaker half-filled with ice cubes, combine all of the ingredients. Shake well. Strain into a cocktial glass.", @@ -7450,7 +7450,7 @@ "sugar" ], "title": "Sand-Grown-Un recipe", - "url": "http://www.drinksmixer.com/drink1734.html" + "url": "https://www.drinksmixer.com/drink1734.html" }, { "directions": "Stir all ingredients with ice, strain into a cocktail glass, and serve.", @@ -7460,7 +7460,7 @@ "Green Chartreuse\u00ae" ], "title": "Sand-Martin Cocktail recipe", - "url": "http://www.drinksmixer.com/drink1735.html" + "url": "https://www.drinksmixer.com/drink1735.html" }, { "directions": "Fill shaker with ice, add ingredients, chill, strain.", @@ -7473,7 +7473,7 @@ "ice" ], "title": "Sandbar Sleeper recipe", - "url": "http://www.drinksmixer.com/drink1736.html" + "url": "https://www.drinksmixer.com/drink1736.html" }, { "directions": "Pour all of the ingredients into a highball glass almost filled with ice cubes. Stir well.", @@ -7485,7 +7485,7 @@ "bitters" ], "title": "Sandra Buys A Dog recipe", - "url": "http://www.drinksmixer.com/drink1737.html" + "url": "https://www.drinksmixer.com/drink1737.html" }, { "directions": "Mix all together and put in the refrigerator till cold. Add cloves and cinnamon sticks to taste.", @@ -7498,7 +7498,7 @@ "cinnamon" ], "title": "Sangria Liqueur recipe", - "url": "http://www.drinksmixer.com/drink1738.html" + "url": "https://www.drinksmixer.com/drink1738.html" }, { "directions": "Peel the apples and cut into small cubes. Peel the oranges, take out the pips and cut them into small cubes. Warm the orange juice, the sugar and the mandarin peels until the sugar dissolves. Mix all the ingredients - except the ice and the soda. The ice and the soda add just before serving.", @@ -7514,7 +7514,7 @@ "ice cubes" ], "title": "Sangria Liqueur #2 recipe", - "url": "http://www.drinksmixer.com/drink1739.html" + "url": "https://www.drinksmixer.com/drink1739.html" }, { "directions": "Melt the sugar in a couple of cups of hot water. I do this so I don't end up with a lot of undissolved sugar in the end. Cut apples into small chunks (1\" or so)the apples absorb the wine the most, so I tend to use a lot of apples. \r", @@ -7528,7 +7528,7 @@ "lemons" ], "title": "Sangria Liqueur - Sweet recipe", - "url": "http://www.drinksmixer.com/drink1740.html" + "url": "https://www.drinksmixer.com/drink1740.html" }, { "directions": "1. Mix ingredients together in a large container, stir, and let sit in a refrigerator for 18-24 hours. \r", @@ -7541,7 +7541,7 @@ "apple" ], "title": "Sangria Liqueur - The World's Best recipe", - "url": "http://www.drinksmixer.com/drink1741.html" + "url": "https://www.drinksmixer.com/drink1741.html" }, { "directions": "Cut orance and half (1/2 into thin slices), and juice the other half of the orange. Cut the lemon into thin slices and combine with orange juice, wine, sugar, brandy and contreau. Chill. To serve, add ice and club soda, stir gently.", @@ -7556,7 +7556,7 @@ "club soda" ], "title": "Sangria Liqueur Classic recipe", - "url": "http://www.drinksmixer.com/drink1742.html" + "url": "https://www.drinksmixer.com/drink1742.html" }, { "directions": "Fill one shooter with Tequila. Take a second shot glass and fill it with clamato. Then add a couple drops of tabasco and worchestershire sauce. Shoot the tequila and chase it with the second shot. Enjoy!", @@ -7567,7 +7567,7 @@ "Worcestershire sauce" ], "title": "Sangrita recipe", - "url": "http://www.drinksmixer.com/drink1743.html" + "url": "https://www.drinksmixer.com/drink1743.html" }, { "directions": "In a highball glass full of ice, pour a full shot of your favorite Tequila. Fill the glass almost to the top with 7-Up Add Triple Sec, and garnish with a lime wedge.", @@ -7578,7 +7578,7 @@ "lime" ], "title": "Santa Fe recipe", - "url": "http://www.drinksmixer.com/drink1744.html" + "url": "https://www.drinksmixer.com/drink1744.html" }, { "directions": "Combine all ingredients except orange in shaker with ice. Shake gently, and strain into chilled cocktail glass. Garnish with orange slice.", @@ -7589,7 +7589,7 @@ "orange" ], "title": "Santa Maria recipe", - "url": "http://www.drinksmixer.com/drink1745.html" + "url": "https://www.drinksmixer.com/drink1745.html" }, { "directions": "In a tall glass with ice, pour the Alize and Triple Sec, stir and enjoy.", @@ -7598,7 +7598,7 @@ "triple sec" ], "title": "Santa Monica Pier recipe", - "url": "http://www.drinksmixer.com/drink1746.html" + "url": "https://www.drinksmixer.com/drink1746.html" }, { "directions": "Taste like a candycane layer these in the order listed to get a red green and white(clear) shot.", @@ -7608,7 +7608,7 @@ "peppermint schnapps" ], "title": "Santa Shot recipe", - "url": "http://www.drinksmixer.com/drink1747.html" + "url": "https://www.drinksmixer.com/drink1747.html" }, { "directions": "Shake all ingredients with ice, strain into a cocktail glass, and serve.", @@ -7619,7 +7619,7 @@ "powdered sugar" ], "title": "Santiago Cocktail recipe", - "url": "http://www.drinksmixer.com/drink1748.html" + "url": "https://www.drinksmixer.com/drink1748.html" }, { "directions": "Shake and strain the drink into a well chilled margarita glass. Garnish with a red cherry.", @@ -7629,7 +7629,7 @@ "port" ], "title": "Santorini Sundown recipe", - "url": "http://www.drinksmixer.com/drink1749.html" + "url": "https://www.drinksmixer.com/drink1749.html" }, { "directions": "Shake all ingredients with ice, strain into a cocktail glass, and serve.", @@ -7641,7 +7641,7 @@ "bitters" ], "title": "Saratoga Cocktail recipe", - "url": "http://www.drinksmixer.com/drink1750.html" + "url": "https://www.drinksmixer.com/drink1750.html" }, { "directions": "Pour rum into shot glass. Add tabasco to the top. Serve room temperature.", @@ -7650,7 +7650,7 @@ "Tabasco\u00ae sauce" ], "title": "Satan's Piss recipe", - "url": "http://www.drinksmixer.com/drink1751.html" + "url": "https://www.drinksmixer.com/drink1751.html" }, { "directions": "Combine in sequence in shot glass, shoot.", @@ -7661,7 +7661,7 @@ "Tabasco\u00ae sauce" ], "title": "Satan's Revenge recipe", - "url": "http://www.drinksmixer.com/drink1752.html" + "url": "https://www.drinksmixer.com/drink1752.html" }, { "directions": "Add the Tabasco first, then the Firewater.", @@ -7670,7 +7670,7 @@ "Tabasco\u00ae sauce" ], "title": "Satan's Spawn recipe", - "url": "http://www.drinksmixer.com/drink1753.html" + "url": "https://www.drinksmixer.com/drink1753.html" }, { "directions": "Add a splash of Coca-Cola to the Frangelico over Ice, and fill add the cream.", @@ -7681,7 +7681,7 @@ "ice" ], "title": "Satin Angel recipe", - "url": "http://www.drinksmixer.com/drink1754.html" + "url": "https://www.drinksmixer.com/drink1754.html" }, { "directions": "Combine first four ingredients in a mixing glass, stir, and pour into a collins glass half filled with ice cubes. For those with a sweet tooth, use a sugar frosted rim.", @@ -7693,7 +7693,7 @@ "ice cubes" ], "title": "Satin Sheet recipe", - "url": "http://www.drinksmixer.com/drink1755.html" + "url": "https://www.drinksmixer.com/drink1755.html" }, { "directions": "Stir all ingredients with ice, strain into a cocktail glass, and serve.", @@ -7703,7 +7703,7 @@ "Pernod\u00ae licorice liqueur" ], "title": "Saucy Sue Cocktail recipe", - "url": "http://www.drinksmixer.com/drink1756.html" + "url": "https://www.drinksmixer.com/drink1756.html" }, { "directions": "Put orange rind in a half-pint jar with 1/4 cup vodka. Seal it and shake occasionally. Let it steep overnight. \r", @@ -7714,7 +7714,7 @@ "grade A maple syrup" ], "title": "Saurian Brandy recipe", - "url": "http://www.drinksmixer.com/drink1757.html" + "url": "https://www.drinksmixer.com/drink1757.html" }, { "directions": "Mix the cognac and curacao several hours ahead of time. When ready to serve, pour the necessary amount of this mixture over a block of ice or ice mold in a cold punch bowl, and add thoroughly chilled champagne. Stir and serve at once.\r", @@ -7725,7 +7725,7 @@ "Curacao orange liqueur" ], "title": "Sauterne recipe", - "url": "http://www.drinksmixer.com/drink1758.html" + "url": "https://www.drinksmixer.com/drink1758.html" }, { "directions": "Shake all ingredients with ice, strain into a cocktail glass, and serve.", @@ -7736,7 +7736,7 @@ "egg" ], "title": "Savannah recipe", - "url": "http://www.drinksmixer.com/drink1759.html" + "url": "https://www.drinksmixer.com/drink1759.html" }, { "directions": "Mix over ice in shaker and strain.", @@ -7749,7 +7749,7 @@ "grenadine syrup" ], "title": "Sax With T. recipe", - "url": "http://www.drinksmixer.com/drink1760.html" + "url": "https://www.drinksmixer.com/drink1760.html" }, { "directions": "Shake all ingredients (except orange peel) with ice and strain into a cocktail glass. Add the twist of orange peel and serve.", @@ -7760,7 +7760,7 @@ "orange" ], "title": "Saxon Cocktail recipe", - "url": "http://www.drinksmixer.com/drink1761.html" + "url": "https://www.drinksmixer.com/drink1761.html" }, { "directions": "In a spare glass, mix the bourbon, the sugar syrup, and the two kinds of bitters. Make a twist of lemon peel by peeling it from a lemon with a sharp vegetable peeler. Rub firmly around the rim of a well-iced old-fashioned glass. Put the Pernod in the glass and swirl it around to coat the bottom. Add the contents of the other glass along with one ice cube. Serve.", @@ -7773,7 +7773,7 @@ "sugar syrup" ], "title": "Sazerac #2 recipe", - "url": "http://www.drinksmixer.com/drink1762.html" + "url": "https://www.drinksmixer.com/drink1762.html" }, { "directions": "Chill an old-fashioned glass by filling with crushed ice. In another glass mix the sugar with the bitters dissolving the sugar. Add some ice, stirring to chill. In the old-fashioned glass remove the ice and pour in the absinthe coating the entire glass. Remove the excess absinthe. Add the rye whiskey and bitters/sugar mixture. Add the lemon twist.", @@ -7787,7 +7787,7 @@ "ice" ], "title": "Sazerac Cocktail recipe", - "url": "http://www.drinksmixer.com/drink1763.html" + "url": "https://www.drinksmixer.com/drink1763.html" }, { "directions": "Pour ricard into a glass and swirl around to coat the glass; discard any excess. Place the sugar, peychaud bitters, and water into the glass and muddle with the back of a teaspoon. Almost fill the glass with ice cubes. Pour the bourbon over the ice cubes, add a twist of lemon peel, and serve.", @@ -7800,7 +7800,7 @@ "lemon" ], "title": "Sazerac recipe", - "url": "http://www.drinksmixer.com/drink1764.html" + "url": "https://www.drinksmixer.com/drink1764.html" }, { "directions": "Shake and serve.", @@ -7812,7 +7812,7 @@ "sugar" ], "title": "Scanex recipe", - "url": "http://www.drinksmixer.com/drink1765.html" + "url": "https://www.drinksmixer.com/drink1765.html" }, { "directions": "Mix together and shake, pour into a draft glass. Add 3 ice cubes and garnish with a lemon wheel on the side.", @@ -7823,7 +7823,7 @@ "cranberry juice" ], "title": "Scarlet Fever recipe", - "url": "http://www.drinksmixer.com/drink1766.html" + "url": "https://www.drinksmixer.com/drink1766.html" }, { "directions": "Pour 2 oz. Southern Comfort over ice in an 8 oz. glass. Fill with cranberry juice. Squeeze one wedge of lime into drink. Stir and serve.", @@ -7833,7 +7833,7 @@ "lime" ], "title": "Scarlet O'Hara recipe", - "url": "http://www.drinksmixer.com/drink1767.html" + "url": "https://www.drinksmixer.com/drink1767.html" }, { "directions": "Shake ingredients in a cocktail shaker with cracked ice. Strain into a cocktail glass.", @@ -7843,7 +7843,7 @@ "lime" ], "title": "Scarlett Martini recipe", - "url": "http://www.drinksmixer.com/drink1768.html" + "url": "https://www.drinksmixer.com/drink1768.html" }, { "directions": "Add the egg nog and Goldschlager together in a bowl. Add nutmeg if desired.", @@ -7853,7 +7853,7 @@ "nutmeg" ], "title": "Schlag-n-nog recipe", - "url": "http://www.drinksmixer.com/drink1769.html" + "url": "https://www.drinksmixer.com/drink1769.html" }, { "directions": "Add Orange Juice and 7-up. Stir. Add ice.", @@ -7863,7 +7863,7 @@ "ice" ], "title": "Schmooze recipe", - "url": "http://www.drinksmixer.com/drink1770.html" + "url": "https://www.drinksmixer.com/drink1770.html" }, { "directions": "Stir all ingredients together in a mixing glass. Strain over ice in a cocktail glass, and serve.", @@ -7874,7 +7874,7 @@ "cranberry juice" ], "title": "Schnapp It Up recipe", - "url": "http://www.drinksmixer.com/drink1771.html" + "url": "https://www.drinksmixer.com/drink1771.html" }, { "directions": "Fill glass with ice, add schnapps and fill with club soda. Turn over once to mix. Serve with straw.", @@ -7884,7 +7884,7 @@ "ice" ], "title": "Schnapp Pop recipe", - "url": "http://www.drinksmixer.com/drink1772.html" + "url": "https://www.drinksmixer.com/drink1772.html" }, { "directions": "Mix together in a large collins glass, and serve.", @@ -7893,7 +7893,7 @@ "Squirt\u00ae citrus soda" ], "title": "Schnappster recipe", - "url": "http://www.drinksmixer.com/drink1773.html" + "url": "https://www.drinksmixer.com/drink1773.html" }, { "directions": "Pour schnapps in a pint glass, top up with cider, and serve.", @@ -7902,7 +7902,7 @@ "cider" ], "title": "Schnider recipe", - "url": "http://www.drinksmixer.com/drink1774.html" + "url": "https://www.drinksmixer.com/drink1774.html" }, { "directions": "Serve in a tall glass.", @@ -7913,7 +7913,7 @@ "pineapple juice" ], "title": "Schwartzy recipe", - "url": "http://www.drinksmixer.com/drink1775.html" + "url": "https://www.drinksmixer.com/drink1775.html" }, { "directions": "Mix all ingredients together in mixer, chill, then serve in shot glass.", @@ -7925,7 +7925,7 @@ "Jagermeister\u00ae herbal liqueur" ], "title": "Schwimmer recipe", - "url": "http://www.drinksmixer.com/drink1776.html" + "url": "https://www.drinksmixer.com/drink1776.html" }, { "directions": "Shake ingredients in a mixing cup with ice. Strain into 7 oz. rocks glass and serve.", @@ -7936,7 +7936,7 @@ "7-Up\u00ae soda" ], "title": "Scooby Snack #2 recipe", - "url": "http://www.drinksmixer.com/drink1777.html" + "url": "https://www.drinksmixer.com/drink1777.html" }, { "directions": "Pour all into shaker with ice. Shake until cold. Strain into highball glass.", @@ -7946,7 +7946,7 @@ "milk" ], "title": "Scooby Snack #3 recipe", - "url": "http://www.drinksmixer.com/drink1778.html" + "url": "https://www.drinksmixer.com/drink1778.html" }, { "directions": "Fill glass with ice. Pour Triple Sec and Peachtree into glass. Add Sour mix and Sprite. Stir gently and enjoy.", @@ -7957,7 +7957,7 @@ "Sprite\u00ae soda" ], "title": "Scooley Slammer recipe", - "url": "http://www.drinksmixer.com/drink1779.html" + "url": "https://www.drinksmixer.com/drink1779.html" }, { "directions": "Shake all ingredients well with cracked ice, strain into a cocktail glass, and serve.", @@ -7967,7 +7967,7 @@ "light cream" ], "title": "Scooter recipe", - "url": "http://www.drinksmixer.com/drink1780.html" + "url": "https://www.drinksmixer.com/drink1780.html" }, { "directions": "Place ice in a tin then pour 1/2 oz. of Midori melon liqueur and 1/2 oz. of Rumple Minze. Shake and then strain into a rocks glass.", @@ -7976,7 +7976,7 @@ "Rumple Minze\u00ae peppermint liqueur" ], "title": "Scope #2 recipe", - "url": "http://www.drinksmixer.com/drink1781.html" + "url": "https://www.drinksmixer.com/drink1781.html" }, { "directions": "Put double of creme de menthe in a 10-12 oz (300-350ml) glass and fill to the top with ginger ale, tonic, or soda water.", @@ -7985,7 +7985,7 @@ "ginger ale" ], "title": "Scope recipe", - "url": "http://www.drinksmixer.com/drink1782.html" + "url": "https://www.drinksmixer.com/drink1782.html" }, { "directions": "Mix over ice, shake and serve.", @@ -7996,7 +7996,7 @@ "cranberry juice" ], "title": "Scorpion's Tail recipe", - "url": "http://www.drinksmixer.com/drink1783.html" + "url": "https://www.drinksmixer.com/drink1783.html" }, { "directions": "Fill a 12 oz wine glass with ice, add a lime wedge and transfer into shaker. Add ingredients, shake and pour back into glass. Garnish stirrer, straw, cherry-pineapple, parasol, and mint.", @@ -8010,7 +8010,7 @@ "sugar syrup" ], "title": "Scorpion recipe", - "url": "http://www.drinksmixer.com/drink1784.html" + "url": "https://www.drinksmixer.com/drink1784.html" }, { "directions": "Pour the Scotch and the water into a highball glass almost filled with ice cubes. Stir well.", @@ -8019,7 +8019,7 @@ "water" ], "title": "Scotch And Water recipe", - "url": "http://www.drinksmixer.com/drink1785.html" + "url": "https://www.drinksmixer.com/drink1785.html" }, { "directions": "Shake all ingredients with ice, strain into a champagne flute, and serve.", @@ -8031,7 +8031,7 @@ "egg" ], "title": "Scotch Bird Flyer recipe", - "url": "http://www.drinksmixer.com/drink1786.html" + "url": "https://www.drinksmixer.com/drink1786.html" }, { "directions": "Shake all ingredients (except lemon peel) with ice and strain into a cocktail glass. Add the twist of lemon peel and serve.", @@ -8044,7 +8044,7 @@ "lemon" ], "title": "Scotch Bishop Cocktail recipe", - "url": "http://www.drinksmixer.com/drink1787.html" + "url": "https://www.drinksmixer.com/drink1787.html" }, { "directions": "Pour scotch, brandy, and curacao over ice in an old-fashioned glass. Add the orange slice, top with the mint sprig, and serve.", @@ -8056,7 +8056,7 @@ "mint" ], "title": "Scotch Cobbler recipe", - "url": "http://www.drinksmixer.com/drink1788.html" + "url": "https://www.drinksmixer.com/drink1788.html" }, { "directions": "Pour scotch and creme de menthe over ice cubes in a highball glass. Fill with carbonated water, stir, and serve.", @@ -8066,7 +8066,7 @@ "carbonated water" ], "title": "Scotch Cooler recipe", - "url": "http://www.drinksmixer.com/drink1789.html" + "url": "https://www.drinksmixer.com/drink1789.html" }, { "directions": "In a shaker half-filled with ice cubes, combine the Scotch, lemon juice, sugar, and grenadine. Shake well. Pour into an old-fashioned glass. Garnish with the cherry and the orange slice.", @@ -8079,7 +8079,7 @@ "orange" ], "title": "Scotch Daisy recipe", - "url": "http://www.drinksmixer.com/drink1790.html" + "url": "https://www.drinksmixer.com/drink1790.html" }, { "directions": "In a shaker half-filled with ice cubes, combine the sugar, lemon juice, and water. Shake well. Strain into a highball glass almost filled with crushed ice. Add the Scotch. Stir well and garnish with the cherry and the lemon slice.", @@ -8092,7 +8092,7 @@ "lemon" ], "title": "Scotch Fix recipe", - "url": "http://www.drinksmixer.com/drink1791.html" + "url": "https://www.drinksmixer.com/drink1791.html" }, { "directions": "In a shaker half-filled with ice cubes, combine the Scotch, egg, sugar, and cream. Shake well. Strain into a sour glass and garnish with the nutmeg.", @@ -8104,7 +8104,7 @@ "nutmeg" ], "title": "Scotch Flip recipe", - "url": "http://www.drinksmixer.com/drink1792.html" + "url": "https://www.drinksmixer.com/drink1792.html" }, { "directions": "Pour scotch in a highball glass over ice cubes. Fill with carbonated water, stir, and serve.", @@ -8114,7 +8114,7 @@ "lemon" ], "title": "Scotch Highball recipe", - "url": "http://www.drinksmixer.com/drink1793.html" + "url": "https://www.drinksmixer.com/drink1793.html" }, { "directions": "Shake all ingredients (except lemon slice) with ice and strain into an old-fashioned glass over ice cubes. Add the slice of lemon and serve.", @@ -8126,7 +8126,7 @@ "lemon" ], "title": "Scotch Holiday Sour recipe", - "url": "http://www.drinksmixer.com/drink1794.html" + "url": "https://www.drinksmixer.com/drink1794.html" }, { "directions": "Pack a collins glass with crushed ice. Pour in scotch. Add the twist of lemon peel and serve with a straw.", @@ -8136,7 +8136,7 @@ "lemon" ], "title": "Scotch Mist recipe", - "url": "http://www.drinksmixer.com/drink1795.html" + "url": "https://www.drinksmixer.com/drink1795.html" }, { "directions": "In an old-fashioned glass, muddle the bitters and water into the sugar cube, using the back of a teaspoon. Almost fill the glass with ice cubes and add the scotch. Garnish with the orange slice and the cherry. Serve with a swizzle stick.", @@ -8149,7 +8149,7 @@ "maraschino cherry" ], "title": "Scotch Old-Fashioned recipe", - "url": "http://www.drinksmixer.com/drink1796.html" + "url": "https://www.drinksmixer.com/drink1796.html" }, { "directions": "Pour scotch and juice of lime into a highball glass over ice cubes. Fill with carbonated water and stir. Add the lime peel/rind and serve.", @@ -8160,7 +8160,7 @@ "lime" ], "title": "Scotch Rickey recipe", - "url": "http://www.drinksmixer.com/drink1797.html" + "url": "https://www.drinksmixer.com/drink1797.html" }, { "directions": "Shake scotch, juice of lime, and powdered sugar with ice and strain into a whiskey sour glass. Decorate with 1/2 slice lemon, top with the cherry, and serve.", @@ -8172,7 +8172,7 @@ "cherry" ], "title": "Scotch Sour recipe", - "url": "http://www.drinksmixer.com/drink1798.html" + "url": "https://www.drinksmixer.com/drink1798.html" }, { "directions": "In a standard coffee mug put the scotch, honey and tea bag. Pour boiling hot water to fill mug. Steep for about one or two minutes. Then remove and dispose of tea bag.", @@ -8183,7 +8183,7 @@ "water" ], "title": "Scotch Toddy recipe", - "url": "http://www.drinksmixer.com/drink1799.html" + "url": "https://www.drinksmixer.com/drink1799.html" }, { "directions": "In a shaker half-filled with ice cubes, combine all of the ingredients except the Grenadine. Shake well. Strain into an old-fashioned glass. Add ice if you like. Drop the Grenadine into the center and serve.", @@ -8196,7 +8196,7 @@ "grenadine syrup" ], "title": "Scottalian recipe", - "url": "http://www.drinksmixer.com/drink1800.html" + "url": "https://www.drinksmixer.com/drink1800.html" }, { "directions": "Combine all ingreds in aging container. Cover tightly and shake gently several times during the first 24 hrs. After 24 hrs, remove the lemon zest. Cover again and let stand in a cool, dark place for 2 weeks, shaking gently every other day. Strain through a wire sieve to remove the angelica root and fennel. Return to aging container, cover and let stand undisturbed in a cool dark place for 6 months. Siphon or pour clear liqueur into a sterile bottle. The cloudy dregs may be saved for cooking.", @@ -8208,7 +8208,7 @@ "lemons" ], "title": "Scottish Highland Liqueur recipe", - "url": "http://www.drinksmixer.com/drink1801.html" + "url": "https://www.drinksmixer.com/drink1801.html" }, { "directions": "Pour a lot of kurant into ice filled glass. Fill with sour mix. Shake, always shake and add a splash of soda.", @@ -8218,7 +8218,7 @@ "soda water" ], "title": "Scotty Boy recipe", - "url": "http://www.drinksmixer.com/drink1802.html" + "url": "https://www.drinksmixer.com/drink1802.html" }, { "directions": "Shake all ingredients (except cherry) with ice and strain into a chilled cocktail glass. Add the cherry on top and serve.", @@ -8230,7 +8230,7 @@ "cherry" ], "title": "Screaming Banana Banshee recipe", - "url": "http://www.drinksmixer.com/drink1803.html" + "url": "https://www.drinksmixer.com/drink1803.html" }, { "directions": "Shake or mix with a straw in a glass full of ice.", @@ -8241,7 +8241,7 @@ "ice" ], "title": "Screaming Banana recipe", - "url": "http://www.drinksmixer.com/drink1804.html" + "url": "https://www.drinksmixer.com/drink1804.html" }, { "directions": "Build in a shot glass.", @@ -8250,7 +8250,7 @@ "Blue Curacao liqueur" ], "title": "Screaming Blue Messiah recipe", - "url": "http://www.drinksmixer.com/drink1805.html" + "url": "https://www.drinksmixer.com/drink1805.html" }, { "directions": "Combine liquors in a shaker of ice and shake. Strain into shot glasses. Partakers must scream \"Valhalla!!\" before doing the shot. Can also be served on the rocks in a large goblet for the brave warrior.", @@ -8260,7 +8260,7 @@ "Blue Curacao liqueur" ], "title": "Screaming Blue Viking recipe", - "url": "http://www.drinksmixer.com/drink1806.html" + "url": "https://www.drinksmixer.com/drink1806.html" }, { "directions": "Shake well and pour over ice, top with cherry or chocolate sprinkles.", @@ -8271,7 +8271,7 @@ "milk" ], "title": "Screaming Chocolate Monkey recipe", - "url": "http://www.drinksmixer.com/drink1807.html" + "url": "https://www.drinksmixer.com/drink1807.html" }, { "directions": "Pour all in shot glass, one by one. Set a flame, blow it out, and enjoy.", @@ -8281,7 +8281,7 @@ "Rumple Minze\u00ae peppermint liqueur" ], "title": "Screaming Dead Nazi recipe", - "url": "http://www.drinksmixer.com/drink1808.html" + "url": "https://www.drinksmixer.com/drink1808.html" }, { "directions": "Combine all of the ingredients in a blender set on high speed for 15-30 seconds.", @@ -8295,7 +8295,7 @@ "ice" ], "title": "Screaming Epsilon recipe", - "url": "http://www.drinksmixer.com/drink1809.html" + "url": "https://www.drinksmixer.com/drink1809.html" }, { "directions": "Best if built in a mixing glass with ice, shaken and poured into Hurricane glass, but can be built directly in the Hurricane glass.", @@ -8308,7 +8308,7 @@ "cream" ], "title": "Screaming Multiple Climax recipe", - "url": "http://www.drinksmixer.com/drink1810.html" + "url": "https://www.drinksmixer.com/drink1810.html" }, { "directions": "Fill glass 1/2 full with ice. Add all liquors and speed shake. Top with club soda.", @@ -8321,7 +8321,7 @@ "club soda" ], "title": "Screaming Multiple Orgasm On The Beach recipe", - "url": "http://www.drinksmixer.com/drink1811.html" + "url": "https://www.drinksmixer.com/drink1811.html" }, { "directions": "Build over ice. Garnish with strawberries or cherries, and serve.", @@ -8333,7 +8333,7 @@ "strawberries" ], "title": "Screaming Multiple Orgasm recipe", - "url": "http://www.drinksmixer.com/drink1812.html" + "url": "https://www.drinksmixer.com/drink1812.html" }, { "directions": "Mix it up and serve.", @@ -8342,7 +8342,7 @@ "Goldschlager\u00ae cinnamon schnapps" ], "title": "Screaming Nazi #2 recipe", - "url": "http://www.drinksmixer.com/drink1813.html" + "url": "https://www.drinksmixer.com/drink1813.html" }, { "directions": "Add ingredents with ice and shake.", @@ -8351,7 +8351,7 @@ "Rumple Minze\u00ae peppermint liqueur" ], "title": "Screaming Nazi recipe", - "url": "http://www.drinksmixer.com/drink1814.html" + "url": "https://www.drinksmixer.com/drink1814.html" }, { "directions": "Combine and stir ingredients, add ice, and serve.", @@ -8361,7 +8361,7 @@ "cognac" ], "title": "Screaming Orgasm (San Francisco Style) recipe", - "url": "http://www.drinksmixer.com/drink1815.html" + "url": "https://www.drinksmixer.com/drink1815.html" }, { "directions": "Stir together and serve over ice.", @@ -8371,7 +8371,7 @@ "vodka" ], "title": "Screaming Orgasm II recipe", - "url": "http://www.drinksmixer.com/drink1816.html" + "url": "https://www.drinksmixer.com/drink1816.html" }, { "directions": "Pour first vodka, then Bailey's, then Kahlua into a cocktail glass over crushed ice. Stir.\r", @@ -8381,7 +8381,7 @@ "Kahlua\u00ae coffee liqueur" ], "title": "Screaming Orgasm recipe", - "url": "http://www.drinksmixer.com/drink1817.html" + "url": "https://www.drinksmixer.com/drink1817.html" }, { "directions": "Mix together and serve over ice.", @@ -8390,7 +8390,7 @@ "Kool-Aid\u00ae Grape mix" ], "title": "Screaming Purple Jesus recipe", - "url": "http://www.drinksmixer.com/drink1818.html" + "url": "https://www.drinksmixer.com/drink1818.html" }, { "directions": "Stir liquids with ice then strain into a cocktail glass. Garnish with celery and cucumber. Serve immediately.", @@ -8402,7 +8402,7 @@ "cucumber" ], "title": "Screaming Viking recipe", - "url": "http://www.drinksmixer.com/drink1819.html" + "url": "https://www.drinksmixer.com/drink1819.html" }, { "directions": "Fill up the shaker with ice and put the ingredients in it. \r", @@ -8415,7 +8415,7 @@ "ice" ], "title": "Screaming White Orgasm recipe", - "url": "http://www.drinksmixer.com/drink1820.html" + "url": "https://www.drinksmixer.com/drink1820.html" }, { "directions": "Fill glass with ice cubes, add all ingredients, mix then drink.", @@ -8425,7 +8425,7 @@ "7-Up\u00ae soda" ], "title": "Screw-Up recipe", - "url": "http://www.drinksmixer.com/drink1821.html" + "url": "https://www.drinksmixer.com/drink1821.html" }, { "directions": "Add orange juice first, then add vodka, and finally add apple juice and stir lightly. The pouring should do most of the stirring.", @@ -8435,7 +8435,7 @@ "apple juice" ], "title": "Screwdriver #3 recipe", - "url": "http://www.drinksmixer.com/drink1822.html" + "url": "https://www.drinksmixer.com/drink1822.html" }, { "directions": "Mix with ice.", @@ -8446,7 +8446,7 @@ "ice" ], "title": "Screwdriver Boricua recipe", - "url": "http://www.drinksmixer.com/drink1823.html" + "url": "https://www.drinksmixer.com/drink1823.html" }, { "directions": "Start with a shot or two (depending on your preference) of vodka in the glass. Add orange juice until its almost full. Then add a shot or two of Kahlua, just until it has a bit of color. Then some ice, and stir.", @@ -8457,7 +8457,7 @@ "ice" ], "title": "Screwdriver With Color recipe", - "url": "http://www.drinksmixer.com/drink1824.html" + "url": "https://www.drinksmixer.com/drink1824.html" }, { "directions": "Mix the orange juice with sugar and the yolk of an egg. Then pour in the vodka with some ice cubes and stir. Serve well chilled.", @@ -8468,7 +8468,7 @@ "egg" ], "title": "Screwdriver a la Carla recipe", - "url": "http://www.drinksmixer.com/drink1825.html" + "url": "https://www.drinksmixer.com/drink1825.html" }, { "directions": "Put ice in highball glass, about 1/2 full, then pour in the banana liqueur and the Peach Schnapps. Fill with orange juice. Stir.", @@ -8478,7 +8478,7 @@ "orange juice" ], "title": "Screwed Banana recipe", - "url": "http://www.drinksmixer.com/drink1826.html" + "url": "https://www.drinksmixer.com/drink1826.html" }, { "directions": "Fill glass with ice. Add vodka. Fill with lemonade and add a dash of cranberry juice.", @@ -8489,7 +8489,7 @@ "ice" ], "title": "Screwed Driver recipe", - "url": "http://www.drinksmixer.com/drink1827.html" + "url": "https://www.drinksmixer.com/drink1827.html" }, { "directions": "Mix the vodka and orange juice in a chilled highball glass over ice. Add several dashes of lime juice at your discretion.", @@ -8499,7 +8499,7 @@ "lime juice" ], "title": "Scrumdriver recipe", - "url": "http://www.drinksmixer.com/drink1828.html" + "url": "https://www.drinksmixer.com/drink1828.html" }, { "directions": "Sweeten the coffee with brown sugar to taste. Mix coffee, liquor, and orange peel in a pan. Heat gently, but do not boil. Let infuse for a couple of minutes. Pour into pre-warmed heat-resistent glasses. Float whipped cream on top. Garnish with thin strip of peel of orange and nutmeg.", @@ -8514,7 +8514,7 @@ "orange" ], "title": "Scrumptious Coffee recipe", - "url": "http://www.drinksmixer.com/drink1829.html" + "url": "https://www.drinksmixer.com/drink1829.html" }, { "directions": "Layer the ingredients in a shot glass.", @@ -8524,7 +8524,7 @@ "Bailey's\u00ae Irish cream" ], "title": "Scurvy #2 recipe", - "url": "http://www.drinksmixer.com/drink1830.html" + "url": "https://www.drinksmixer.com/drink1830.html" }, { "directions": "Pour the banana liqueur into a glass. Add vodka and last the orange juice to taste.", @@ -8534,7 +8534,7 @@ "orange juice" ], "title": "Scurvy recipe", - "url": "http://www.drinksmixer.com/drink1831.html" + "url": "https://www.drinksmixer.com/drink1831.html" }, { "directions": "Make fresh homemade lemonade by mixing the juice of one lemon and 8 oz. (one glass) of water. Be sure not to add sugar. Add the vodka and stir. Add 5 ice cubes, and serve.", @@ -8544,7 +8544,7 @@ "vodka" ], "title": "SD Special recipe", - "url": "http://www.drinksmixer.com/drink1832.html" + "url": "https://www.drinksmixer.com/drink1832.html" }, { "directions": "Shake with ice and strain into a highball glass and fill with seltzer.", @@ -8556,7 +8556,7 @@ "soda water" ], "title": "Sea Fizz recipe", - "url": "http://www.drinksmixer.com/drink1833.html" + "url": "https://www.drinksmixer.com/drink1833.html" }, { "directions": "Shake all ingredients (except mint leaves) with ice and strain into an old-fashioned glass over ice cubes. Decorate with mint leaves and serve.", @@ -8568,7 +8568,7 @@ "mint" ], "title": "Seaboard recipe", - "url": "http://www.drinksmixer.com/drink1834.html" + "url": "https://www.drinksmixer.com/drink1834.html" }, { "directions": "Pour vodka over ice into highball glass. Add mixers. May be garnished with a wedge of lime.", @@ -8578,7 +8578,7 @@ "grapefruit juice" ], "title": "Seabreeze recipe", - "url": "http://www.drinksmixer.com/drink1835.html" + "url": "https://www.drinksmixer.com/drink1835.html" }, { "directions": "Add the vodka to a tall glass with lots of ice.Throw in a splash or two of cranberry juice and then fill with the soda.", @@ -8588,7 +8588,7 @@ "soda water" ], "title": "Seadoo recipe", - "url": "http://www.drinksmixer.com/drink1836.html" + "url": "https://www.drinksmixer.com/drink1836.html" }, { "directions": "Red wine first, then the cider.", @@ -8597,7 +8597,7 @@ "apple cider" ], "title": "Seaside-Summerbliss recipe", - "url": "http://www.drinksmixer.com/drink1837.html" + "url": "https://www.drinksmixer.com/drink1837.html" }, { "directions": "Pour shots into mason jar filled with ice. Fill 2/3 of remaining with cranberry juice and top with orange juice. Stir.", @@ -8609,7 +8609,7 @@ "orange juice" ], "title": "Seattle Smog recipe", - "url": "http://www.drinksmixer.com/drink1838.html" + "url": "https://www.drinksmixer.com/drink1838.html" }, { "directions": "Ingredients can be mixed in any order over ice.", @@ -8622,7 +8622,7 @@ "Sprite\u00ae soda" ], "title": "Seaweed recipe", - "url": "http://www.drinksmixer.com/drink1839.html" + "url": "https://www.drinksmixer.com/drink1839.html" }, { "directions": "Shake ingredient vodka, lime and sugar with shaker. Add soda. Pour into Beer-pilsner with Ice. Drop curacao and creme de menthe. Decorate with cut-lime and cherry.", @@ -8635,7 +8635,7 @@ "green creme de menthe" ], "title": "Secret Blue recipe", - "url": "http://www.drinksmixer.com/drink1840.html" + "url": "https://www.drinksmixer.com/drink1840.html" }, { "directions": "Pour all of the ingredients into an Irish coffee glass filled with crushed ice. Stir well.", @@ -8647,7 +8647,7 @@ "crushed ice" ], "title": "Secret Place recipe", - "url": "http://www.drinksmixer.com/drink1841.html" + "url": "https://www.drinksmixer.com/drink1841.html" }, { "directions": "Pour Butterscotch schnapps and orange juice into glass, then add lemon-lime soda. Add one to two ice cubes before serving.", @@ -8657,7 +8657,7 @@ "lemon-lime soda" ], "title": "Seduction on the Rocks recipe", - "url": "http://www.drinksmixer.com/drink1842.html" + "url": "https://www.drinksmixer.com/drink1842.html" }, { "directions": "Add bourbon, bitters, and triple sec first. Fill rest of glass with champagne. Depending on the size up your flute, you might need to put less bourbon in. Garnish with orange twist.", @@ -8669,7 +8669,7 @@ "Angostura\u00ae bitters" ], "title": "Seelbach Cocktail recipe", - "url": "http://www.drinksmixer.com/drink1843.html" + "url": "https://www.drinksmixer.com/drink1843.html" }, { "directions": "Pour ingredients over crushed ice in a hurricane glass. Mix through a couple times and serve.", @@ -8681,7 +8681,7 @@ "apple juice" ], "title": "Seizure recipe", - "url": "http://www.drinksmixer.com/drink1844.html" + "url": "https://www.drinksmixer.com/drink1844.html" }, { "directions": "Put the crushed ice in glass first then add the Captain Morgan then add the Amaretto then top off with Coke.", @@ -8691,7 +8691,7 @@ "ice cubes" ], "title": "Selena Jo recipe", - "url": "http://www.drinksmixer.com/drink1845.html" + "url": "https://www.drinksmixer.com/drink1845.html" }, { "directions": "First pour Goldschlager into a shot glass, then add grenadine.", @@ -8700,7 +8700,7 @@ "grenadine syrup" ], "title": "The Seminole recipe", - "url": "http://www.drinksmixer.com/drink1846.html" + "url": "https://www.drinksmixer.com/drink1846.html" }, { "directions": "Shake all ingredients (except mint sprigs) with ice and strain into a cocktail glass. Add the sprigs of mint and serve.", @@ -8711,7 +8711,7 @@ "mint" ], "title": "Sensation Cocktail recipe", - "url": "http://www.drinksmixer.com/drink1847.html" + "url": "https://www.drinksmixer.com/drink1847.html" }, { "directions": "With ice cubes in the the glass, add the Kahlua and Malibu and stir them together. Add the splash of Jack and fill the rest up with milk. Stir and serve.", @@ -8723,7 +8723,7 @@ "ice cubes" ], "title": "Sensei on the Rocks recipe", - "url": "http://www.drinksmixer.com/drink1848.html" + "url": "https://www.drinksmixer.com/drink1848.html" }, { "directions": "Fill rocks glass with ice, add brandy, Kahlua, and milk. Shake well, return to glass.\r", @@ -8733,7 +8733,7 @@ "milk" ], "title": "Separator recipe", - "url": "http://www.drinksmixer.com/drink1849.html" + "url": "https://www.drinksmixer.com/drink1849.html" }, { "directions": "In a shaker half-filled with ice cubes, combine all of the ingredients. Shake well. Strain into a cocktail glass.", @@ -8745,7 +8745,7 @@ "egg" ], "title": "September Morning recipe", - "url": "http://www.drinksmixer.com/drink1850.html" + "url": "https://www.drinksmixer.com/drink1850.html" }, { "directions": "First of all put in the mixing glass absolut vodka then strawberry vodka, dry vermouth, pineapple juice, blue curacao and lemon juice. Now shake with ice and fill up the glass.", @@ -8758,7 +8758,7 @@ "lemon juice" ], "title": "Serena recipe", - "url": "http://www.drinksmixer.com/drink1851.html" + "url": "https://www.drinksmixer.com/drink1851.html" }, { "directions": "In a shaker half-filled with ice cubes, combine the rum, brandy, vermouth, lemon juice, and sugar. Shake well. Strain into a cocktail glass and garnish with the lemon twist.", @@ -8771,7 +8771,7 @@ "lemon" ], "title": "Serpentine recipe", - "url": "http://www.drinksmixer.com/drink1852.html" + "url": "https://www.drinksmixer.com/drink1852.html" }, { "directions": "Put a few cubes of ice into an old-fashioned glass. Pour a shot of Seagram 7 into the glass, then pour the 7-up into the glass. Shake or stir briskly.", @@ -8780,7 +8780,7 @@ "7-Up\u00ae soda" ], "title": "Seven and Seven recipe", - "url": "http://www.drinksmixer.com/drink1853.html" + "url": "https://www.drinksmixer.com/drink1853.html" }, { "directions": "Mix over ice. Stir lightly.", @@ -8791,7 +8791,7 @@ "7-Up\u00ae soda" ], "title": "Seven Veils recipe", - "url": "http://www.drinksmixer.com/drink1854.html" + "url": "https://www.drinksmixer.com/drink1854.html" }, { "directions": "Shake all ingredients (except mint sprig) with ice and strain into a cocktail glass. Add the sprig of mint and serve.", @@ -8802,7 +8802,7 @@ "mint" ], "title": "Seventh Heaven Cocktail recipe", - "url": "http://www.drinksmixer.com/drink1855.html" + "url": "https://www.drinksmixer.com/drink1855.html" }, { "directions": "Fill a Collins glass most of the way with ice. Pour in the Yukon Jack. Fill with Sprite. Stir.", @@ -8812,7 +8812,7 @@ "ice" ], "title": "Sever St. Special recipe", - "url": "http://www.drinksmixer.com/drink1856.html" + "url": "https://www.drinksmixer.com/drink1856.html" }, { "directions": "In a shaker half-filled with ice cubes, combine all of the ingredients. Shake well. Strain into a sour glass.", @@ -8823,7 +8823,7 @@ "egg" ], "title": "Sevilla Cocktail #2 recipe", - "url": "http://www.drinksmixer.com/drink1857.html" + "url": "https://www.drinksmixer.com/drink1857.html" }, { "directions": "Shake all ingredients with ice, strain into a whiskey sour glass, and serve.", @@ -8834,7 +8834,7 @@ "egg" ], "title": "Sevilla Cocktail recipe", - "url": "http://www.drinksmixer.com/drink1858.html" + "url": "https://www.drinksmixer.com/drink1858.html" }, { "directions": "Mix two rums, melon, peach and blue curacao in a mixing tin with the sour mix. Pour into a collins glass with ice and add a dash of lemonade. Garnish with lemon squeeze.", @@ -8849,7 +8849,7 @@ "lemon" ], "title": "Sex Appeal recipe", - "url": "http://www.drinksmixer.com/drink1859.html" + "url": "https://www.drinksmixer.com/drink1859.html" }, { "directions": "Pour all ingredients into shaker. Shake and strain.", @@ -8859,7 +8859,7 @@ "pineapple juice" ], "title": "Sex At My House recipe", - "url": "http://www.drinksmixer.com/drink1860.html" + "url": "https://www.drinksmixer.com/drink1860.html" }, { "directions": "Shake and serve on the rocks.", @@ -8871,7 +8871,7 @@ "cranberry juice" ], "title": "Sex in the Desert recipe", - "url": "http://www.drinksmixer.com/drink1861.html" + "url": "https://www.drinksmixer.com/drink1861.html" }, { "directions": "Put vodka and sloe gin into glass. Add lemonade.", @@ -8881,7 +8881,7 @@ "lemonade" ], "title": "Sex in the Red Zone recipe", - "url": "http://www.drinksmixer.com/drink1862.html" + "url": "https://www.drinksmixer.com/drink1862.html" }, { "directions": "Shake with ice and strain into Champagne Flute.", @@ -8893,7 +8893,7 @@ "ice" ], "title": "Sex in the Shower recipe", - "url": "http://www.drinksmixer.com/drink1863.html" + "url": "https://www.drinksmixer.com/drink1863.html" }, { "directions": "Shake ingredients with ice. Strain. Serve as a shooter", @@ -8905,7 +8905,7 @@ "cranberry juice" ], "title": "Sex On Acid recipe", - "url": "http://www.drinksmixer.com/drink1864.html" + "url": "https://www.drinksmixer.com/drink1864.html" }, { "directions": "Mix ingredients and add some ice.", @@ -8917,7 +8917,7 @@ "grenadine syrup" ], "title": "Sex On An Arizona Beach recipe", - "url": "http://www.drinksmixer.com/drink1865.html" + "url": "https://www.drinksmixer.com/drink1865.html" }, { "directions": "Blend ingredients by shaking well.", @@ -8929,7 +8929,7 @@ "pineapple juice" ], "title": "Sex On Daytona Beach recipe", - "url": "http://www.drinksmixer.com/drink1866.html" + "url": "https://www.drinksmixer.com/drink1866.html" }, { "directions": "Mix in tall glass w/ice.", @@ -8943,7 +8943,7 @@ "orange juice" ], "title": "Sex On My Face recipe", - "url": "http://www.drinksmixer.com/drink1867.html" + "url": "https://www.drinksmixer.com/drink1867.html" }, { "directions": "Mix all ingredients together over ice. Chill and strain into a cocktail glass.", @@ -8954,7 +8954,7 @@ "pineapple juice" ], "title": "Sex on the Beach #2 recipe", - "url": "http://www.drinksmixer.com/drink1868.html" + "url": "https://www.drinksmixer.com/drink1868.html" }, { "directions": "Mix all ingredients in a pitcher of ice to chill, adding just enough grenadine to color pink. Add more or less OJ and 7-up to achieve desired strength. Strain into bottle to serve as shooters or serve the whole pitcher with a number of straws for a group to slurp down at the same time!", @@ -8969,7 +8969,7 @@ "grenadine syrup" ], "title": "Sex on the Beach #3 recipe", - "url": "http://www.drinksmixer.com/drink1869.html" + "url": "https://www.drinksmixer.com/drink1869.html" }, { "directions": "This can be on the rocks or up... but best on the rocks! Start with the Midori since it is heaviest, then the Chambord and the Absolut. Fill the glass 2/3 full with Cranberry juice, and then a splash of grapefruit for color. It should be an orangish-red color. Garnish with several cherries.", @@ -8981,7 +8981,7 @@ "cranberry juice" ], "title": "Sex on the Beach #4 recipe", - "url": "http://www.drinksmixer.com/drink1870.html" + "url": "https://www.drinksmixer.com/drink1870.html" }, { "directions": "Pour vodka over crushed ice in a champagne saucer. Add cranberry juice, midori, chambord, and top off with pineapple juice. Stir gently and serve.", @@ -8993,7 +8993,7 @@ "cranberry juice" ], "title": "Sex On The Beach #5 recipe", - "url": "http://www.drinksmixer.com/drink1871.html" + "url": "https://www.drinksmixer.com/drink1871.html" }, { "directions": "Highball glass 1/2 full ice. Add vodka and schnapps. Fill to near top with OJ, amount depends on ice and glass size. Add cream last and stir. May be served up after mixing. The amount of OJ and dairy cream may be adjusted to taste.", @@ -9004,7 +9004,7 @@ "cream" ], "title": "Sex On The Beach #6 recipe", - "url": "http://www.drinksmixer.com/drink1872.html" + "url": "https://www.drinksmixer.com/drink1872.html" }, { "directions": "Combine all ingredients and stir heavily. Serve cold.", @@ -9015,7 +9015,7 @@ "orange juice" ], "title": "Sex on the Beach #7 recipe", - "url": "http://www.drinksmixer.com/drink1873.html" + "url": "https://www.drinksmixer.com/drink1873.html" }, { "directions": "Pour the rum into a highball glass. Almost-fill with pineapple juice, and top with grenadine and sprite. Coconut rum can be substituted for malibu rum.", @@ -9026,7 +9026,7 @@ "Sprite\u00ae soda" ], "title": "Sex on the Beach #8 recipe", - "url": "http://www.drinksmixer.com/drink1874.html" + "url": "https://www.drinksmixer.com/drink1874.html" }, { "directions": "Use a shaker: first put in the ice, then add the orange juice ( you should always add the fruit juices before the alcohol! ). Put both the Passoa and the Malibu in and give it a good shake. Poor in a glass and add a cube of ice. The poor a bit of cream on top of the ice cubes ( preferably using a teaspoon or so to keep the cream from mixing with the other stuff ). Put a cherry on top and voila, there's your Sex on the Beach.", @@ -9038,7 +9038,7 @@ "crushed ice" ], "title": "Sex on the Beach #9 recipe", - "url": "http://www.drinksmixer.com/drink1875.html" + "url": "https://www.drinksmixer.com/drink1875.html" }, { "directions": "Shake vigorously with some ice, strain into a hurricane glass, and serve.", @@ -9049,7 +9049,7 @@ "orange juice" ], "title": "Sex on the Beach #10 recipe", - "url": "http://www.drinksmixer.com/drink1876.html" + "url": "https://www.drinksmixer.com/drink1876.html" }, { "directions": "Pour into a glass, and serve unstirred.", @@ -9060,7 +9060,7 @@ "cranberry juice" ], "title": "Sex on the Beach #11 recipe", - "url": "http://www.drinksmixer.com/drink1877.html" + "url": "https://www.drinksmixer.com/drink1877.html" }, { "directions": "Mix all ingredients in order in ordinary glass. Add cranberry and orange juice to your liking.", @@ -9072,7 +9072,7 @@ "orange juice" ], "title": "Sex on the Beach #12 recipe", - "url": "http://www.drinksmixer.com/drink1878.html" + "url": "https://www.drinksmixer.com/drink1878.html" }, { "directions": "Makes 1 gallon of punch -- mix all 4 liqueurs in 1 parts and fill rest with pineapple and cranberry juice.", @@ -9086,7 +9086,7 @@ "ice" ], "title": "Sex on the Beach - Jersey Style recipe", - "url": "http://www.drinksmixer.com/drink1879.html" + "url": "https://www.drinksmixer.com/drink1879.html" }, { "directions": "Pour ingredients over crushed ice in a Highball glass. Stir until mixture is pink. Add a bit of cranberry juice if you want to make it Bettsy Style.", @@ -9097,7 +9097,7 @@ "orange juice" ], "title": "Sex on the Beach - Bettsy Style recipe", - "url": "http://www.drinksmixer.com/drink1880.html" + "url": "https://www.drinksmixer.com/drink1880.html" }, { "directions": "Fill glass with ice, insert a straw and then add the first three ingredients (Vodka, Midori, Schnapps) then layer the juices using a barspoon to get a separation of alcohol and mixers. Leave a little room at top of glass to float the Sloe gin on top. \r", @@ -9110,7 +9110,7 @@ "sloe gin" ], "title": "Sex on the Brain recipe", - "url": "http://www.drinksmixer.com/drink1881.html" + "url": "https://www.drinksmixer.com/drink1881.html" }, { "directions": "Shake all except orange juice with ice. Pour into a hiball glass filled with ice. Fill with orange juice.", @@ -9123,7 +9123,7 @@ "orange juice" ], "title": "Sex on the Grass recipe", - "url": "http://www.drinksmixer.com/drink1882.html" + "url": "https://www.drinksmixer.com/drink1882.html" }, { "directions": "Shake with ice and strain into an old-fashioned glass.", @@ -9133,7 +9133,7 @@ "Midori\u00ae melon liqueur" ], "title": "Sex under the Boardwalk recipe", - "url": "http://www.drinksmixer.com/drink1883.html" + "url": "https://www.drinksmixer.com/drink1883.html" }, { "directions": "Mix rum, triple sec, lime juice, grenadine and 7-up. Garnish with lemon and lime, then splash irish cream down the middle.", @@ -9148,7 +9148,7 @@ "Irish cream" ], "title": "Sex with the Bartender recipe", - "url": "http://www.drinksmixer.com/drink1884.html" + "url": "https://www.drinksmixer.com/drink1884.html" }, { "directions": "Build drink in glass over ice. Garnish with a cherry.", @@ -9160,7 +9160,7 @@ "orange juice" ], "title": "Sex with the Captain recipe", - "url": "http://www.drinksmixer.com/drink1885.html" + "url": "https://www.drinksmixer.com/drink1885.html" }, { "directions": "First 5 droplets tabasco sauce in the shot glass. Make sure the inside are covered with sauce. Top it up with drambuie.", @@ -9169,7 +9169,7 @@ "Drambuie\u00ae Scotch whisky" ], "title": "Sexoholic recipe", - "url": "http://www.drinksmixer.com/drink1886.html" + "url": "https://www.drinksmixer.com/drink1886.html" }, { "directions": "Shake well and serve on the rocks.", @@ -9182,7 +9182,7 @@ "soda water" ], "title": "Sexual Chocolate recipe", - "url": "http://www.drinksmixer.com/drink1887.html" + "url": "https://www.drinksmixer.com/drink1887.html" }, { "directions": "Pour all ingredients in a mixing tin with ice. Shake and strain.\r", @@ -9194,7 +9194,7 @@ "pineapple juice" ], "title": "Sexual Harrassment recipe", - "url": "http://www.drinksmixer.com/drink1888.html" + "url": "https://www.drinksmixer.com/drink1888.html" }, { "directions": "Shake well with ice and strain over ice cherry garnish.", @@ -9207,7 +9207,7 @@ "sweet and sour mix" ], "title": "Sexual Trance recipe", - "url": "http://www.drinksmixer.com/drink1889.html" + "url": "https://www.drinksmixer.com/drink1889.html" }, { "directions": "Add all ingredients to a blender with 2 ice cubes, and blend until smooth. Pour into a tall glass, and serve.", @@ -9219,7 +9219,7 @@ "ice cream" ], "title": "Sexy Blue Eyed Boy recipe", - "url": "http://www.drinksmixer.com/drink1890.html" + "url": "https://www.drinksmixer.com/drink1890.html" }, { "directions": "Pour melon liqueur, tequila, and grapefruit juice over ice in a highball glass and stir. Add the slice of lime, top with the cherry, and serve.", @@ -9231,7 +9231,7 @@ "cherry" ], "title": "Shady Lady recipe", - "url": "http://www.drinksmixer.com/drink1891.html" + "url": "https://www.drinksmixer.com/drink1891.html" }, { "directions": "Pour Apoerol and gin over ice in a highball glass. Stir. Fill with sparkling white wine.", @@ -9241,7 +9241,7 @@ "sparkling white wine" ], "title": "Shaft recipe", - "url": "http://www.drinksmixer.com/drink1892.html" + "url": "https://www.drinksmixer.com/drink1892.html" }, { "directions": "Build the midori and orange into the collins glass, filled with ice, then pour peach schnapps and cranberry into mixing tin and shake with ice. Strain into glass so it floats above orange & midori. Float Blavod vodka on top.", @@ -9253,7 +9253,7 @@ "Blavod\u00ae vodka" ], "title": "Shag by the Shore recipe", - "url": "http://www.drinksmixer.com/drink1893.html" + "url": "https://www.drinksmixer.com/drink1893.html" }, { "directions": "Build in a shot glass.", @@ -9264,7 +9264,7 @@ "oranges" ], "title": "Shake That Ass recipe", - "url": "http://www.drinksmixer.com/drink1894.html" + "url": "https://www.drinksmixer.com/drink1894.html" }, { "directions": "Drink the first 6oz of a fresh samantha and then discretely add the triple sec and vodka. Then shake baby.", @@ -9274,7 +9274,7 @@ "triple sec" ], "title": "Shakes - Party To Go recipe", - "url": "http://www.drinksmixer.com/drink1895.html" + "url": "https://www.drinksmixer.com/drink1895.html" }, { "directions": "Shake all ingredients (except orange slice) with ice and strain into an old-fashioned glass over ice cubes. Add the slice of orange and serve.", @@ -9285,7 +9285,7 @@ "orange" ], "title": "Shalom recipe", - "url": "http://www.drinksmixer.com/drink1896.html" + "url": "https://www.drinksmixer.com/drink1896.html" }, { "directions": "Pour ingredients in a cocktail glass.", @@ -9295,7 +9295,7 @@ "Bailey's\u00ae Irish cream" ], "title": "Shamrock #2 recipe", - "url": "http://www.drinksmixer.com/drink1897.html" + "url": "https://www.drinksmixer.com/drink1897.html" }, { "directions": "In an Hurricane Glass filled with Ice pour equal amounts of all liquors. Top off with Orange Juice. Garnish with a slice of an Orange and a couple of cherries.", @@ -9308,7 +9308,7 @@ "orange juice" ], "title": "Shamrock Juice recipe", - "url": "http://www.drinksmixer.com/drink1898.html" + "url": "https://www.drinksmixer.com/drink1898.html" }, { "directions": "Mix equal parts Curacao and Vodka and and Orange Juice for a light green color.", @@ -9318,7 +9318,7 @@ "orange juice" ], "title": "Shamrocks recipe", - "url": "http://www.drinksmixer.com/drink1899.html" + "url": "https://www.drinksmixer.com/drink1899.html" }, { "directions": "Stir all ingredients (except olive) with ice and strain into a cocktail glass. Add the olive and serve.", @@ -9329,7 +9329,7 @@ "olive" ], "title": "Shamrock recipe", - "url": "http://www.drinksmixer.com/drink1900.html" + "url": "https://www.drinksmixer.com/drink1900.html" }, { "directions": "Mix the water and rum, and add powdered lemonade mix to taste. Stir, and serve.", @@ -9339,7 +9339,7 @@ "lemonade mix" ], "title": "The Shanaynay recipe", - "url": "http://www.drinksmixer.com/drink1901.html" + "url": "https://www.drinksmixer.com/drink1901.html" }, { "directions": "Fill a glass half full of beer (lighter beer works better). Fill the rest with Ginger Ale or 7-Up (preference).", @@ -9348,7 +9348,7 @@ "ginger ale" ], "title": "Shandy recipe", - "url": "http://www.drinksmixer.com/drink1902.html" + "url": "https://www.drinksmixer.com/drink1902.html" }, { "directions": "Shake all ingredients with ice, strain into a cocktail glass, and serve.", @@ -9359,7 +9359,7 @@ "lemons" ], "title": "Shanghai Cocktail recipe", - "url": "http://www.drinksmixer.com/drink1903.html" + "url": "https://www.drinksmixer.com/drink1903.html" }, { "directions": "Mix the two alcohols and fill with orange and cranberry juice.", @@ -9370,7 +9370,7 @@ "cranberry juice" ], "title": "Shannon on the Beach recipe", - "url": "http://www.drinksmixer.com/drink1904.html" + "url": "https://www.drinksmixer.com/drink1904.html" }, { "directions": "Mix in a large container like a coleman cooler.", @@ -9382,7 +9382,7 @@ "water" ], "title": "Shark Attack Punch recipe", - "url": "http://www.drinksmixer.com/drink1905.html" + "url": "https://www.drinksmixer.com/drink1905.html" }, { "directions": "Mix lemonade and water according to instructions on back of can. If the instructions say to add 4 1/3 cans of water do so. Mix into pitcher. Add 1 1/2 cup of Vodka (Absolut). Mix well. Pour into glass of crushed ice. Excellent!", @@ -9392,7 +9392,7 @@ "Absolut\u00ae vodka" ], "title": "Shark Attack recipe", - "url": "http://www.drinksmixer.com/drink1906.html" + "url": "https://www.drinksmixer.com/drink1906.html" }, { "directions": "Combine Myers's rum, Orange Juice, Sour Mix, and Ice in a blender. Blend until smooth. Pour into Hurricane Glass, and add Grenadine. Serve with a straw, but do not stir before serving.", @@ -9404,7 +9404,7 @@ "ice" ], "title": "Shark Bite #2 recipe", - "url": "http://www.drinksmixer.com/drink1907.html" + "url": "https://www.drinksmixer.com/drink1907.html" }, { "directions": "Fill a shaker with ice. Add the spiced rum, light rum, sour, and blue curacco. Shake the ingredients well. Strain into a rocks glass. Garnish with three drops of grenadine.", @@ -9416,7 +9416,7 @@ "grenadine syrup" ], "title": "Shark Bite recipe", - "url": "http://www.drinksmixer.com/drink1908.html" + "url": "https://www.drinksmixer.com/drink1908.html" }, { "directions": "Mix vodka and lemonade in a large glass. Drop in grenadine last, but do not stir. Best served over ice, through a straw.", @@ -9426,7 +9426,7 @@ "grenadine syrup" ], "title": "Shark Tank recipe", - "url": "http://www.drinksmixer.com/drink1909.html" + "url": "https://www.drinksmixer.com/drink1909.html" }, { "directions": "Mix together the Southern Comfort and the Cranberry Juice and stir. then add the Lime Juice (be careful not to get too much lime). Serve cold! You can substitute lemon juice for the lime juice if needed.", @@ -9436,7 +9436,7 @@ "lime juice" ], "title": "Shark's Bite recipe", - "url": "http://www.drinksmixer.com/drink1910.html" + "url": "https://www.drinksmixer.com/drink1910.html" }, { "directions": "Mix all ingedients in a blender except for the 151 rum. Pour into a cocktail glass with ice to about 1 inch below the rim. Add the shot of 151 but do not mix. Let settle for about 1 minute before serving.", @@ -9449,7 +9449,7 @@ "ice" ], "title": "Shark's Mai Tai recipe", - "url": "http://www.drinksmixer.com/drink1911.html" + "url": "https://www.drinksmixer.com/drink1911.html" }, { "directions": "Pour rum in over the ice, fill approximately to halfway with Mt. Dew, fill with cranberry juice, then mix again.", @@ -9460,7 +9460,7 @@ "ice cubes" ], "title": "Shark's Nipple recipe", - "url": "http://www.drinksmixer.com/drink1912.html" + "url": "https://www.drinksmixer.com/drink1912.html" }, { "directions": "Pour rum, lemon juice, lime juice, and grenadine in a short collins glass. Shake or stir, then add splash of soda.", @@ -9472,7 +9472,7 @@ "soda water" ], "title": "Shark's Tooth recipe", - "url": "http://www.drinksmixer.com/drink1913.html" + "url": "https://www.drinksmixer.com/drink1913.html" }, { "directions": "Shake all ingredients except the 7-Up and pour over ice into the glass. Add a splash of 7-up and stir carefully: don't kill the carbonation.\r", @@ -9484,7 +9484,7 @@ "vodka" ], "title": "Shattered Dreams recipe", - "url": "http://www.drinksmixer.com/drink1914.html" + "url": "https://www.drinksmixer.com/drink1914.html" }, { "directions": "Add all ingredients to shaker. Shake to chill. Strain out ice and pour into glass.", @@ -9495,7 +9495,7 @@ "ice" ], "title": "Shazam Shooter recipe", - "url": "http://www.drinksmixer.com/drink1915.html" + "url": "https://www.drinksmixer.com/drink1915.html" }, { "directions": "Mix fifth of a gallon of bacardi to a splash of cranberry juice.", @@ -9504,7 +9504,7 @@ "cranberry juice" ], "title": "The Shearer Special recipe", - "url": "http://www.drinksmixer.com/drink1916.html" + "url": "https://www.drinksmixer.com/drink1916.html" }, { "directions": "Add, grab glass and shoot back.", @@ -9514,7 +9514,7 @@ "pineapple juice" ], "title": "The Sheedy recipe", - "url": "http://www.drinksmixer.com/drink1917.html" + "url": "https://www.drinksmixer.com/drink1917.html" }, { "directions": "Pour clamato juice over salt, pepper and lemon. Then add beer slowly as it will fizz up.", @@ -9527,7 +9527,7 @@ "Tabasco\u00ae sauce" ], "title": "Shellshock recipe", - "url": "http://www.drinksmixer.com/drink1918.html" + "url": "https://www.drinksmixer.com/drink1918.html" }, { "directions": "Shake all ingredients (except nutmeg) with ice and strain into a whiskey sour glass. Sprinkle nutmeg on top and serve.", @@ -9539,7 +9539,7 @@ "nutmeg" ], "title": "Sherry Flip recipe", - "url": "http://www.drinksmixer.com/drink1919.html" + "url": "https://www.drinksmixer.com/drink1919.html" }, { "directions": "Shake all ingredients (except nutmeg) with ice and strain into a collins glass. Sprinkle nutmeg on top and serve.", @@ -9550,7 +9550,7 @@ "nutmeg" ], "title": "Sherry Milk Punch recipe", - "url": "http://www.drinksmixer.com/drink1920.html" + "url": "https://www.drinksmixer.com/drink1920.html" }, { "directions": "Pour the st. hallvard over ice (on the rocks) in an old-fashioned glass, then add aquavit. Add a lemon twist, and serve.", @@ -9559,7 +9559,7 @@ "St. Hallvard\u00ae herbal liqueur" ], "title": "Shimmers recipe", - "url": "http://www.drinksmixer.com/drink1921.html" + "url": "https://www.drinksmixer.com/drink1921.html" }, { "directions": "Stir with ice. Pour into glass.", @@ -9568,7 +9568,7 @@ "Cinzano\u00ae Orancio French vermouth" ], "title": "Shiny Nail recipe", - "url": "http://www.drinksmixer.com/drink1922.html" + "url": "https://www.drinksmixer.com/drink1922.html" }, { "directions": "Build in a highball glass. Add ginger ale over ice and sprinkle grenadine syrup over it. Garnish with a lemon slice and a cherry.", @@ -9577,7 +9577,7 @@ "grenadine syrup" ], "title": "Shirley Temple recipe", - "url": "http://www.drinksmixer.com/drink1923.html" + "url": "https://www.drinksmixer.com/drink1923.html" }, { "directions": "First add half a shot of Midori Melon Liqueur, then pour Kahlua to top it off.", @@ -9586,7 +9586,7 @@ "Kahlua\u00ae coffee liqueur" ], "title": "Shit On Grass recipe", - "url": "http://www.drinksmixer.com/drink1924.html" + "url": "https://www.drinksmixer.com/drink1924.html" }, { "directions": "In a shot glass add Creme de Menthe on bottom of glass and then add baileys on top of creme de menthe, thus making the effect as what the cocktail is called.", @@ -9595,7 +9595,7 @@ "Bailey's\u00ae Irish cream" ], "title": "Shit on the Grass recipe", - "url": "http://www.drinksmixer.com/drink1925.html" + "url": "https://www.drinksmixer.com/drink1925.html" }, { "directions": "Add rum, grenadine, and sugar syrup in glass. Fill with orange juice. Add ice and shake, strain into glass and garnish with marachino cherry.", @@ -9606,7 +9606,7 @@ "orange juice" ], "title": "Shitface recipe", - "url": "http://www.drinksmixer.com/drink1926.html" + "url": "https://www.drinksmixer.com/drink1926.html" }, { "directions": "Mix in this order: blueberry schnapps, blue caracoa, vodka. Carefully drop in the blue syrup. Drink down and enjoy!", @@ -9617,7 +9617,7 @@ "food coloring" ], "title": "Shittin' Blue recipe", - "url": "http://www.drinksmixer.com/drink1927.html" + "url": "https://www.drinksmixer.com/drink1927.html" }, { "directions": "Shake well with ice and pour into Hurricane glass. Add a floater of Myer's dark rum for an additional kick.", @@ -9631,7 +9631,7 @@ "pineapple juice" ], "title": "The Shiwala recipe", - "url": "http://www.drinksmixer.com/drink1928.html" + "url": "https://www.drinksmixer.com/drink1928.html" }, { "directions": "Put two scoops of vanilla ice-cream in a glass. Pour in a shot of Goldschlager then fill the glass with root beer. Mix with a spoon and enjoy.", @@ -9641,7 +9641,7 @@ "root beer" ], "title": "Schlagerfloat recipe", - "url": "http://www.drinksmixer.com/drink1929.html" + "url": "https://www.drinksmixer.com/drink1929.html" }, { "directions": "Heat the hot chocolate and add the cinnamon schnapps.", @@ -9650,7 +9650,7 @@ "hot chocolate" ], "title": "Shocking Chocolate recipe", - "url": "http://www.drinksmixer.com/drink1930.html" + "url": "https://www.drinksmixer.com/drink1930.html" }, { "directions": "Mix in blender and garnish with orange slice.", @@ -9660,7 +9660,7 @@ "orange juice" ], "title": "Shogun recipe", - "url": "http://www.drinksmixer.com/drink1931.html" + "url": "https://www.drinksmixer.com/drink1931.html" }, { "directions": "In a tall drink glass, fill it up half way with cubed ice. Add liquor. Then add cranberry juice, grenadine and soda, and mix well.", @@ -9673,7 +9673,7 @@ "7-Up\u00ae soda" ], "title": "Shoot to the Moon recipe", - "url": "http://www.drinksmixer.com/drink1932.html" + "url": "https://www.drinksmixer.com/drink1932.html" }, { "directions": "Mix everything and shake with ice and strain into a highball glass. Serve.", @@ -9685,7 +9685,7 @@ "powdered sugar" ], "title": "Shoot recipe", - "url": "http://www.drinksmixer.com/drink1933.html" + "url": "https://www.drinksmixer.com/drink1933.html" }, { "directions": "Pour all ingredients, except Coke, over ice. Fill with Coca-cola and stir.", @@ -9696,7 +9696,7 @@ "ice" ], "title": "Short Island Iced Tea recipe", - "url": "http://www.drinksmixer.com/drink1934.html" + "url": "https://www.drinksmixer.com/drink1934.html" }, { "directions": "Add to shot glass and shoot.", @@ -9705,7 +9705,7 @@ "Tabasco\u00ae sauce" ], "title": "Shot in the Pot recipe", - "url": "http://www.drinksmixer.com/drink1935.html" + "url": "https://www.drinksmixer.com/drink1935.html" }, { "directions": "Pour shot of vodka into shot glass then top off with a generous portion of Tabasco.", @@ -9714,7 +9714,7 @@ "Tabasco\u00ae sauce" ], "title": "Shot of Hell recipe", - "url": "http://www.drinksmixer.com/drink1936.html" + "url": "https://www.drinksmixer.com/drink1936.html" }, { "directions": "Add the tequila and 151 proof rum in a shot glass.Then pour in the tabasco.", @@ -9724,7 +9724,7 @@ "Tabasco\u00ae sauce" ], "title": "Shot of Respect recipe", - "url": "http://www.drinksmixer.com/drink1937.html" + "url": "https://www.drinksmixer.com/drink1937.html" }, { "directions": "Pour one part Jack Daneils and one part Jim Beam into shot glass then float Wild Turkey on top.", @@ -9734,7 +9734,7 @@ "Wild Turkey\u00ae bourbon whiskey" ], "title": "Shotgun recipe", - "url": "http://www.drinksmixer.com/drink1938.html" + "url": "https://www.drinksmixer.com/drink1938.html" }, { "directions": "Combine 1 oz. Goldschlager, 1 oz. razmatazz, splash of pineapple juice, splash of sweet-n-sour with ice in a shaker tin. Shake and strain into a shot glass. Add a splash of 7-up.", @@ -9746,7 +9746,7 @@ "7-Up\u00ae soda" ], "title": "Shot-o-Happiness recipe", - "url": "http://www.drinksmixer.com/drink1939.html" + "url": "https://www.drinksmixer.com/drink1939.html" }, { "directions": "Mix brandy, milk and brown sugar on ice. Top with ginger ale, and serve.", @@ -9757,7 +9757,7 @@ "ginger ale" ], "title": "Shotgun Lou recipe", - "url": "http://www.drinksmixer.com/drink1940.html" + "url": "https://www.drinksmixer.com/drink1940.html" }, { "directions": "Stir each ingredient in a mixing tin, then strain into a shot glass.", @@ -9767,7 +9767,7 @@ "apple cider" ], "title": "Shrewsbury Slammer recipe", - "url": "http://www.drinksmixer.com/drink1941.html" + "url": "https://www.drinksmixer.com/drink1941.html" }, { "directions": "Stir all ingredients (except lemon peel) with ice and strain into a cocktail glass. Add the twist of lemon peel and serve.", @@ -9779,7 +9779,7 @@ "lemon" ], "title": "Shriner Cocktail recipe", - "url": "http://www.drinksmixer.com/drink1942.html" + "url": "https://www.drinksmixer.com/drink1942.html" }, { "directions": "Begin with gentle fruit juices. Put a little less than 1 pint orange juice and the juice of 2 or 3 lemons into a half-gallon or gallon jar.\r", @@ -9791,7 +9791,7 @@ "water" ], "title": "Shrub recipe", - "url": "http://www.drinksmixer.com/drink1943.html" + "url": "https://www.drinksmixer.com/drink1943.html" }, { "directions": "Pour Jager at bottom of glass. Mix Crown, Everclear, & 151 separately to layer on top of the Jager. Splash the Grenadine. Attempt to shoot & shut the hell up.", @@ -9803,7 +9803,7 @@ "grenadine syrup" ], "title": "Shut the Hell Up recipe", - "url": "http://www.drinksmixer.com/drink1944.html" + "url": "https://www.drinksmixer.com/drink1944.html" }, { "directions": "Mix vodka and cinnamon schnapps in cocktail glass, add carbonated water, serve with ice.", @@ -9813,7 +9813,7 @@ "carbonated water" ], "title": "Si Kami Ki recipe", - "url": "http://www.drinksmixer.com/drink1945.html" + "url": "https://www.drinksmixer.com/drink1945.html" }, { "directions": "Mix ingredients, and pour over ice into highball glass.", @@ -9825,7 +9825,7 @@ "coffee" ], "title": "Siberian Dutchman recipe", - "url": "http://www.drinksmixer.com/drink1946.html" + "url": "https://www.drinksmixer.com/drink1946.html" }, { "directions": "Mix equal parts into a tumber filled with cracked ice. Stir liberally and sip slowly.", @@ -9835,7 +9835,7 @@ "white rum" ], "title": "Siberian Slider recipe", - "url": "http://www.drinksmixer.com/drink1947.html" + "url": "https://www.drinksmixer.com/drink1947.html" }, { "directions": "Mix all ingredients with cracked ice in a shaker or blender and pour into highball glass.", @@ -9845,7 +9845,7 @@ "triple sec" ], "title": "Siberian Sunrise recipe", - "url": "http://www.drinksmixer.com/drink1948.html" + "url": "https://www.drinksmixer.com/drink1948.html" }, { "directions": "Pour both ingredients into 1 ounce shot glass Take as a beer chaser when arriving late at the bar.", @@ -9854,7 +9854,7 @@ "Southern Comfort\u00ae peach liqueur" ], "title": "Sicilian Kiss recipe", - "url": "http://www.drinksmixer.com/drink1949.html" + "url": "https://www.drinksmixer.com/drink1949.html" }, { "directions": "Pour whiskey, gin, vermouth over ice and stir. Strain into an old-fashioned glass, add bitters and worcestershire sauce. Garnish with poppy seeds.", @@ -9866,7 +9866,7 @@ "Worcestershire sauce" ], "title": "Sid Vicious recipe", - "url": "http://www.drinksmixer.com/drink1950.html" + "url": "https://www.drinksmixer.com/drink1950.html" }, { "directions": "Place cubes in glass, add gin, frozen lime juice concentrate, and 7-up then stir and enjoy.", @@ -9877,7 +9877,7 @@ "7-Up\u00ae soda" ], "title": "Sid's Special recipe", - "url": "http://www.drinksmixer.com/drink1951.html" + "url": "https://www.drinksmixer.com/drink1951.html" }, { "directions": "Shake all ingredients with lot's of ice.", @@ -9888,7 +9888,7 @@ "lemons" ], "title": "Side Kick recipe", - "url": "http://www.drinksmixer.com/drink1952.html" + "url": "https://www.drinksmixer.com/drink1952.html" }, { "directions": "Mix ingredients, stir, and add ice to bring level to top of glass.", @@ -9901,7 +9901,7 @@ "ice" ], "title": "SigTau Scorpion recipe", - "url": "http://www.drinksmixer.com/drink1954.html" + "url": "https://www.drinksmixer.com/drink1954.html" }, { "directions": "In a shaker half-filled with ice cubes, combine all of the ingredients. Shake well. Strain into a cocktail glass.", @@ -9912,7 +9912,7 @@ "grenadine syrup" ], "title": "Silent Broadsider recipe", - "url": "http://www.drinksmixer.com/drink1955.html" + "url": "https://www.drinksmixer.com/drink1955.html" }, { "directions": "Shake all ingredients (except cinnamon) with ice and strain into a cocktail glass. Sprinkle cinnamon on top and serve.", @@ -9924,7 +9924,7 @@ "cinnamon" ], "title": "Silk Stockings recipe", - "url": "http://www.drinksmixer.com/drink1957.html" + "url": "https://www.drinksmixer.com/drink1957.html" }, { "directions": "In a shaker half-filled with ice cubes, combine all of the ingredients. Shake well. Strain into a sour glass.", @@ -9936,7 +9936,7 @@ "egg" ], "title": "Silver Bronx recipe", - "url": "http://www.drinksmixer.com/drink1958.html" + "url": "https://www.drinksmixer.com/drink1958.html" }, { "directions": "In a mixng glass half-filled with ice cubes, combine the gin and Scotch. Stir well. Strain into a shot glass. Carnish with the lemon twist.", @@ -9946,7 +9946,7 @@ "lemon" ], "title": "Silver Bullet recipe", - "url": "http://www.drinksmixer.com/drink1959.html" + "url": "https://www.drinksmixer.com/drink1959.html" }, { "directions": "Pour scotch into an iced glass and coat sides. Empty scotch out pour in vodka.", @@ -9955,7 +9955,7 @@ "vodka" ], "title": "Silver Bullet #2 recipe", - "url": "http://www.drinksmixer.com/drink1960.html" + "url": "https://www.drinksmixer.com/drink1960.html" }, { "directions": "Mix amaretto, kahlua, and milk together. Fill with ice cubes and top with whipped cream.", @@ -9966,7 +9966,7 @@ "whipped cream" ], "title": "Silver Cloud recipe", - "url": "http://www.drinksmixer.com/drink1961.html" + "url": "https://www.drinksmixer.com/drink1961.html" }, { "directions": "Stir all ingredients (except lemon peel) with ice and strain into a cocktail glass. Add the twist of lemon peel and serve.", @@ -9979,7 +9979,7 @@ "lemon" ], "title": "Silver Cocktail recipe", - "url": "http://www.drinksmixer.com/drink1962.html" + "url": "https://www.drinksmixer.com/drink1962.html" }, { "directions": "Combine ingredients in a blender half-filled with ice. Pour into a tall glass, and serve.", @@ -9991,7 +9991,7 @@ "pink lemonade" ], "title": "Silver Fizz recipe", - "url": "http://www.drinksmixer.com/drink1963.html" + "url": "https://www.drinksmixer.com/drink1963.html" }, { "directions": "Shake all ingredients with ice, strain into a cocktail glass, and serve.", @@ -10003,7 +10003,7 @@ "egg" ], "title": "Silver King Cocktail recipe", - "url": "http://www.drinksmixer.com/drink1964.html" + "url": "https://www.drinksmixer.com/drink1964.html" }, { "directions": "Shake gin and vanilla ice-cream with ice and strain into a highball glass. Fill with carbonated water, stir, and serve", @@ -10013,7 +10013,7 @@ "carbonated water" ], "title": "Silver Stallion Fizz recipe", - "url": "http://www.drinksmixer.com/drink1965.html" + "url": "https://www.drinksmixer.com/drink1965.html" }, { "directions": "Pour ingredients over ice into an old-fashioned glass. Stir and serve.", @@ -10023,7 +10023,7 @@ "orange juice" ], "title": "Silverado recipe", - "url": "http://www.drinksmixer.com/drink1966.html" + "url": "https://www.drinksmixer.com/drink1966.html" }, { "directions": "Boil water, sugars, beer and the yellow part of the lemon's peel. Let the mixture cool down. Peel the white part of the lemon's peel carefully and cut the fruit part of the lemon into small pieces, then add to sima. \r", @@ -10038,7 +10038,7 @@ "sugar" ], "title": "Sima recipe", - "url": "http://www.drinksmixer.com/drink1967.html" + "url": "https://www.drinksmixer.com/drink1967.html" }, { "directions": "Shake and serve in a hurricane glass with a salted rim. Garnish with a celery stalk.", @@ -10055,7 +10055,7 @@ "ice" ], "title": "Simon Sez Seazar recipe", - "url": "http://www.drinksmixer.com/drink1968.html" + "url": "https://www.drinksmixer.com/drink1968.html" }, { "directions": "Pour vodka in rocks glass. Half fill with apricot nectar.", @@ -10064,7 +10064,7 @@ "apricot nectar" ], "title": "Simple But Sweet recipe", - "url": "http://www.drinksmixer.com/drink1969.html" + "url": "https://www.drinksmixer.com/drink1969.html" }, { "directions": "Stir liquors and strain in to coctail-glass. Float cream gently on top. Garnish with cinnamon powder.", @@ -10076,7 +10076,7 @@ "cinnamon" ], "title": "Simple Charm recipe", - "url": "http://www.drinksmixer.com/drink1970.html" + "url": "https://www.drinksmixer.com/drink1970.html" }, { "directions": "Add all ingrediants in mixing tin with ice and strain.", @@ -10086,7 +10086,7 @@ "orange juice" ], "title": "Simpson Bronco recipe", - "url": "http://www.drinksmixer.com/drink1971.html" + "url": "https://www.drinksmixer.com/drink1971.html" }, { "directions": "Get a sports container like the All Sport or Gatorade ones at sports events and combine three ingredients together. Put in about 4-5 pounds of cocktail ice and watch it disappear faster than water!", @@ -10096,7 +10096,7 @@ "Sunny Delight\u00ae orange juice" ], "title": "Simpson Solution recipe", - "url": "http://www.drinksmixer.com/drink1972.html" + "url": "https://www.drinksmixer.com/drink1972.html" }, { "directions": "In the shot glass, layer equal parts of each liquor, the Grenadine on the bottom, the Kahlua in the middle, and the Grand Marnier on top. This creates Red, Black, and Gold layers.", @@ -10106,7 +10106,7 @@ "Grand Marnier\u00ae orange liqueur" ], "title": "Sinfonian recipe", - "url": "http://www.drinksmixer.com/drink1973.html" + "url": "https://www.drinksmixer.com/drink1973.html" }, { "directions": "Combine gin, cherry brandy, pineapple juice, and grenadine into a collins glass. Stir well. Top up with club soda and garnish with the cherry.", @@ -10120,7 +10120,7 @@ "ice" ], "title": "Singapore Sling #2 recipe", - "url": "http://www.drinksmixer.com/drink1974.html" + "url": "https://www.drinksmixer.com/drink1974.html" }, { "directions": "Mix the ingredients with a great deal of ice cubes and garnish with a maraschino cherry.", @@ -10130,7 +10130,7 @@ "Rose's\u00ae lime juice" ], "title": "Sinlet recipe", - "url": "http://www.drinksmixer.com/drink1975.html" + "url": "https://www.drinksmixer.com/drink1975.html" }, { "directions": "Mix ingredients and slam it.", @@ -10141,7 +10141,7 @@ "7-Up\u00ae soda" ], "title": "Sip And Get Funky recipe", - "url": "http://www.drinksmixer.com/drink1976.html" + "url": "https://www.drinksmixer.com/drink1976.html" }, { "directions": "Mix all ingrediants together in a pitcher. Tastes and smells non-alcoholic, but packs a wallop.", @@ -10152,7 +10152,7 @@ "water" ], "title": "Sip And Go Naked recipe", - "url": "http://www.drinksmixer.com/drink1977.html" + "url": "https://www.drinksmixer.com/drink1977.html" }, { "directions": "First, pour all 3 vodkas over ice in highball glass. Fill with lemonade, top with grenadine, shake & serve.", @@ -10164,7 +10164,7 @@ "grenadine syrup" ], "title": "Sir Francis recipe", - "url": "http://www.drinksmixer.com/drink1978.html" + "url": "https://www.drinksmixer.com/drink1978.html" }, { "directions": "Shake with cracked ice and strain into a chilled cocktail glass. Garnish with a twist of lemon.", @@ -10175,7 +10175,7 @@ "Angostura\u00ae bitters" ], "title": "Sir Knight recipe", - "url": "http://www.drinksmixer.com/drink1979.html" + "url": "https://www.drinksmixer.com/drink1979.html" }, { "directions": "Shake all ingredients with ice, strain into a cocktail glass, and serve.", @@ -10187,7 +10187,7 @@ "lemon juice" ], "title": "Sir Walter Cocktail recipe", - "url": "http://www.drinksmixer.com/drink1980.html" + "url": "https://www.drinksmixer.com/drink1980.html" }, { "directions": "Pour the rum, lemon juice, grenadine, and tonic water into a highball glass almost filled with ice cubes. Stir well and garnish with the lemon wedge.", @@ -10199,7 +10199,7 @@ "lemon" ], "title": "Sister Starseeker recipe", - "url": "http://www.drinksmixer.com/drink1981.html" + "url": "https://www.drinksmixer.com/drink1981.html" }, { "directions": "Pour all three ingredients into the shot glass and shake until mixed together.", @@ -10209,7 +10209,7 @@ "Crown Royal\u00ae Canadian whisky" ], "title": "Sit On My Face Mary Jane recipe", - "url": "http://www.drinksmixer.com/drink1982.html" + "url": "https://www.drinksmixer.com/drink1982.html" }, { "directions": "Layer in order.", @@ -10219,7 +10219,7 @@ "Bailey's\u00ae Irish cream" ], "title": "Sit on my face recipe", - "url": "http://www.drinksmixer.com/drink1983.html" + "url": "https://www.drinksmixer.com/drink1983.html" }, { "directions": "In a shaker half-filled with ice cubes, combine all of the ingredients. Shake well. Strain into an old-fashioned glass almost filled with ice cubes.", @@ -10231,7 +10231,7 @@ "superfine sugar" ], "title": "Sitarski recipe", - "url": "http://www.drinksmixer.com/drink1984.html" + "url": "https://www.drinksmixer.com/drink1984.html" }, { "directions": "Pour the two measures of Schnapps into the cocktail glass. \r", @@ -10241,7 +10241,7 @@ "lemonade" ], "title": "Sizz Snot recipe", - "url": "http://www.drinksmixer.com/drink1985.html" + "url": "https://www.drinksmixer.com/drink1985.html" }, { "directions": "Mix altogether until fizzing.", @@ -10252,7 +10252,7 @@ "Miller\u00ae Red Dog lager" ], "title": "Sizzler recipe", - "url": "http://www.drinksmixer.com/drink1986.html" + "url": "https://www.drinksmixer.com/drink1986.html" }, { "directions": "Add the coffee first, then add alchohol and finally you should add the sugar. Shake well.", @@ -10262,7 +10262,7 @@ "sugar" ], "title": "Sjarsk recipe", - "url": "http://www.drinksmixer.com/drink1987.html" + "url": "https://www.drinksmixer.com/drink1987.html" }, { "directions": "Fill glass with ice. Add whiskey, Malibu and Dr. Pepper. Stir.", @@ -10273,7 +10273,7 @@ "Dr. Pepper\u00ae soda" ], "title": "Skane-i-Fier recipe", - "url": "http://www.drinksmixer.com/drink1988.html" + "url": "https://www.drinksmixer.com/drink1988.html" }, { "directions": "Put ice in a shaker, then the vodka, followed by the amaretto and the sweet and sour. Cover and shake like crazy. Pour into shot glasses.", @@ -10284,7 +10284,7 @@ "ice cubes" ], "title": "Ski Shooter recipe", - "url": "http://www.drinksmixer.com/drink1989.html" + "url": "https://www.drinksmixer.com/drink1989.html" }, { "directions": "Mix in any order, serve in glass with ice.", @@ -10298,7 +10298,7 @@ "7-Up\u00ae soda" ], "title": "Ski Slope recipe", - "url": "http://www.drinksmixer.com/drink1990.html" + "url": "https://www.drinksmixer.com/drink1990.html" }, { "directions": "Add Chocolate syrup at bottom of shot glass.\r", @@ -10307,7 +10307,7 @@ "chocolate syrup" ], "title": "Skid Marks recipe", - "url": "http://www.drinksmixer.com/drink1991.html" + "url": "https://www.drinksmixer.com/drink1991.html" }, { "directions": "Rinse out a large mug with boiling water, add steaming hot chocolate, and stir in liqueurs. Top with several marshmallows.", @@ -10318,7 +10318,7 @@ "marshmallows" ], "title": "Skier's Toddy recipe", - "url": "http://www.drinksmixer.com/drink1992.html" + "url": "https://www.drinksmixer.com/drink1992.html" }, { "directions": "Add all ingredients in a collins glass. Do not stir. Garnish with a lime wedge or an ear of baby corn.", @@ -10330,7 +10330,7 @@ "lemon-lime soda" ], "title": "Skinhead Paramedic recipe", - "url": "http://www.drinksmixer.com/drink1993.html" + "url": "https://www.drinksmixer.com/drink1993.html" }, { "directions": "Mix ingredients and serve in a tall glass over ice.", @@ -10339,7 +10339,7 @@ "cranberry juice" ], "title": "Skinny Dipper recipe", - "url": "http://www.drinksmixer.com/drink1994.html" + "url": "https://www.drinksmixer.com/drink1994.html" }, { "directions": "In a blender throw in: 8 scoops of sherbet, 1 can of Fresca and 2 shots of Vodka. Blend until you reach desired thickness.", @@ -10349,7 +10349,7 @@ "vodka" ], "title": "Skinny Dip recipe", - "url": "http://www.drinksmixer.com/drink1995.html" + "url": "https://www.drinksmixer.com/drink1995.html" }, { "directions": "Pour beer into mug. Add lemonade. Float SoCo on top.", @@ -10359,7 +10359,7 @@ "Southern Comfort\u00ae peach liqueur" ], "title": "Skip And Go Naked #2 recipe", - "url": "http://www.drinksmixer.com/drink1996.html" + "url": "https://www.drinksmixer.com/drink1996.html" }, { "directions": "Pour gin and sweet and sour into a collins glass over ice cubes and stir well. Fill with chilled beer, stir lightly, and serve.", @@ -10369,7 +10369,7 @@ "beer" ], "title": "Skip And Go Naked recipe", - "url": "http://www.drinksmixer.com/drink1997.html" + "url": "https://www.drinksmixer.com/drink1997.html" }, { "directions": "Add rum, whiskey, and grenadine to glass. Fill the rest of the way with Coke. Stir once to mix.", @@ -10380,7 +10380,7 @@ "Coca-Cola\u00ae" ], "title": "Skipper's Ripper recipe", - "url": "http://www.drinksmixer.com/drink1998.html" + "url": "https://www.drinksmixer.com/drink1998.html" }, { "directions": "Add Absolut Vodka and Banana Liqueur to Collins glass. Fill glass 3/4 full with Kool-Aid. Add crushed ice, stir, and serve.\r", @@ -10391,7 +10391,7 @@ "crushed ice" ], "title": "Skittle recipe", - "url": "http://www.drinksmixer.com/drink1999.html" + "url": "https://www.drinksmixer.com/drink1999.html" }, { "directions": "Mix ingredients and serve.", @@ -10401,7 +10401,7 @@ "Old Grandad\u00ae bourbon whiskey" ], "title": "Skull recipe", - "url": "http://www.drinksmixer.com/drink2000.html" + "url": "https://www.drinksmixer.com/drink2000.html" }, { "directions": "Add alcohol to a brandy snifter, then add ice with the 7-up.", @@ -10412,7 +10412,7 @@ "7-Up\u00ae soda" ], "title": "The Skunk Pussy recipe", - "url": "http://www.drinksmixer.com/drink2001.html" + "url": "https://www.drinksmixer.com/drink2001.html" }, { "directions": "Mix all ingredients except 7-Up in a mixing glass. Pour into a hurricane glass and add the 7-Up. Stir lightly with a straw and serve.", @@ -10428,7 +10428,7 @@ "ice" ], "title": "Sky Blue Fallout recipe", - "url": "http://www.drinksmixer.com/drink2002.html" + "url": "https://www.drinksmixer.com/drink2002.html" }, { "directions": "Add together and serve.", @@ -10438,7 +10438,7 @@ "peppermint schnapps" ], "title": "Sky Pilot recipe", - "url": "http://www.drinksmixer.com/drink2003.html" + "url": "https://www.drinksmixer.com/drink2003.html" }, { "directions": "Fill glass with ice, add Skyy vodka, add orange juice, preferable fresh orange juice. Garnish with orange slice.", @@ -10447,7 +10447,7 @@ "orange juice" ], "title": "Skydiver recipe", - "url": "http://www.drinksmixer.com/drink2004.html" + "url": "https://www.drinksmixer.com/drink2004.html" }, { "directions": "Put plenty of ice in glass pour rum and everclear first refill with ice - put your tequila, gin, vodka and your blue curacao in. Put your pinapple juice in and shake serve with a lemon slice and cherry.", @@ -10461,7 +10461,7 @@ "pineapple juice" ], "title": "Skylab Fallout recipe", - "url": "http://www.drinksmixer.com/drink2005.html" + "url": "https://www.drinksmixer.com/drink2005.html" }, { "directions": "Add Vodka, Root Beer Schnapps and Root Beer to a glass. Place one scoop of ice-cream on the top and serve.", @@ -10472,7 +10472,7 @@ "ice cream" ], "title": "Slacker's Slammer recipe", - "url": "http://www.drinksmixer.com/drink2006.html" + "url": "https://www.drinksmixer.com/drink2006.html" }, { "directions": "Start with a rocks glass filled with ice. \r", @@ -10482,7 +10482,7 @@ "cranberry juice" ], "title": "Slam Dunk recipe", - "url": "http://www.drinksmixer.com/drink2007.html" + "url": "https://www.drinksmixer.com/drink2007.html" }, { "directions": "Add amaretto and triple sec to ice-filled glass. Pour in orange juice and top off with apple-cranberry juice to taste. Stir.", @@ -10493,7 +10493,7 @@ "cranberry-apple juice" ], "title": "Slammin' Sammy recipe", - "url": "http://www.drinksmixer.com/drink2008.html" + "url": "https://www.drinksmixer.com/drink2008.html" }, { "directions": "Shake one part Orange Juice and one part Vodka together. Pour over ice and add one part Mountain Dew, then stir slightly.", @@ -10503,7 +10503,7 @@ "spiced rum" ], "title": "Slap Your Mama recipe", - "url": "http://www.drinksmixer.com/drink2009.html" + "url": "https://www.drinksmixer.com/drink2009.html" }, { "directions": "Stir well before adding whipped cream.", @@ -10516,7 +10516,7 @@ "whipped cream" ], "title": "Slapshot recipe", - "url": "http://www.drinksmixer.com/drink2010.html" + "url": "https://www.drinksmixer.com/drink2010.html" }, { "directions": "Shake the Grand Marnier, Orange Curacao, freshly squeezed lemon juice and a dash of grenadine with ice and strain into a cocktail glass.", @@ -10527,7 +10527,7 @@ "lemon juice" ], "title": "Slaughtering the Slothman recipe", - "url": "http://www.drinksmixer.com/drink2011.html" + "url": "https://www.drinksmixer.com/drink2011.html" }, { "directions": "Float the ingredients in order by pouring over the bottom of a spoon.", @@ -10537,7 +10537,7 @@ "silver tequila" ], "title": "Sleigh Ride recipe", - "url": "http://www.drinksmixer.com/drink2012.html" + "url": "https://www.drinksmixer.com/drink2012.html" }, { "directions": "Mix vodka and midori and kiwi with ice. Add sourmix. Shake. Fill with soda. Decorate glass with pineapple.", @@ -10548,7 +10548,7 @@ "sweet and sour mix" ], "title": "Slemmig Slyna recipe", - "url": "http://www.drinksmixer.com/drink2013.html" + "url": "https://www.drinksmixer.com/drink2013.html" }, { "directions": "Add Rye, kahlua and milk to a high ball glass, glass should be full of ice. Stir and enjoy.", @@ -10558,7 +10558,7 @@ "milk" ], "title": "Slider recipe", - "url": "http://www.drinksmixer.com/drink2014.html" + "url": "https://www.drinksmixer.com/drink2014.html" }, { "directions": "Add liquor first. Use a glass beverage container to highlight the the green color.", @@ -10567,7 +10567,7 @@ "Surge\u00ae citrus soda" ], "title": "Slimer #2 recipe", - "url": "http://www.drinksmixer.com/drink2015.html" + "url": "https://www.drinksmixer.com/drink2015.html" }, { "directions": "In a glass, put in all liquor and then fill the remaining glass with the kool-aid.", @@ -10578,7 +10578,7 @@ "Kool-Aid\u00ae Grape mix" ], "title": "Slippery Box recipe", - "url": "http://www.drinksmixer.com/drink2017.html" + "url": "https://www.drinksmixer.com/drink2017.html" }, { "directions": "Pour over ice in 10-12 oz. rocks/old-fashioned glass.", @@ -10588,7 +10588,7 @@ "half-and-half" ], "title": "Slippery Dick recipe", - "url": "http://www.drinksmixer.com/drink2018.html" + "url": "https://www.drinksmixer.com/drink2018.html" }, { "directions": "Stir ingredients well so that the drink is the original color of the eggnog.", @@ -10599,7 +10599,7 @@ "ice cubes" ], "title": "Slippery Eggs recipe", - "url": "http://www.drinksmixer.com/drink2019.html" + "url": "https://www.drinksmixer.com/drink2019.html" }, { "directions": "Stir or shake ingredients & serve with ice.", @@ -10610,7 +10610,7 @@ "vodka" ], "title": "Sloe Comfortable Screw recipe", - "url": "http://www.drinksmixer.com/drink2020.html" + "url": "https://www.drinksmixer.com/drink2020.html" }, { "directions": "Shake with ice in a tumbler. Strain and pour.", @@ -10621,7 +10621,7 @@ "orange juice" ], "title": "Sloe Comfortable Screw #2 recipe", - "url": "http://www.drinksmixer.com/drink2021.html" + "url": "https://www.drinksmixer.com/drink2021.html" }, { "directions": "Pour gin, liqueurs and whiskey over ice in a collins glass. Fill with orange juice, and serve.", @@ -10634,7 +10634,7 @@ "orange juice" ], "title": "Sloe Comfortable Screw #3 recipe", - "url": "http://www.drinksmixer.com/drink2022.html" + "url": "https://www.drinksmixer.com/drink2022.html" }, { "directions": "Add the southern comfort to the sloe gin, and fill with orange juice. Float galliano on top, decorate with a cherry, and serve.", @@ -10645,7 +10645,7 @@ "Galliano\u00ae herbal liqueur" ], "title": "Sloe Comfortable Screw #4 recipe", - "url": "http://www.drinksmixer.com/drink2023.html" + "url": "https://www.drinksmixer.com/drink2023.html" }, { "directions": "Stir all ingredients with ice, strain into a cocktail glass, and serve.", @@ -10655,7 +10655,7 @@ "orange bitters" ], "title": "Sloe Gin Cocktail recipe", - "url": "http://www.drinksmixer.com/drink2024.html" + "url": "https://www.drinksmixer.com/drink2024.html" }, { "directions": "Shake sloe gin and juice of lemon with ice and strain into a collins glass. Add several ice cubes, fill with carbonated water, and stir. Add slices of lemon and orange, top with the cherry, and serve with a straw.", @@ -10668,7 +10668,7 @@ "cherry" ], "title": "Sloe Gin Collins recipe", - "url": "http://www.drinksmixer.com/drink2025.html" + "url": "https://www.drinksmixer.com/drink2025.html" }, { "directions": "Shake all ingredients (except nutmeg) with ice and strain into a whiskey sour glass. Sprinkle nutmeg on top and serve.", @@ -10680,7 +10680,7 @@ "nutmeg" ], "title": "Sloe Gin Flip recipe", - "url": "http://www.drinksmixer.com/drink2026.html" + "url": "https://www.drinksmixer.com/drink2026.html" }, { "directions": "Pour sloe gin and juice of lime into a highball glass over ice cubes. Fill with carbonated water and stir. Drop the wedge of lime in glass and serve.", @@ -10691,7 +10691,7 @@ "lime" ], "title": "Sloe Gin Rickey recipe", - "url": "http://www.drinksmixer.com/drink2027.html" + "url": "https://www.drinksmixer.com/drink2027.html" }, { "directions": "Combine ingredients with a half-cup of crushed ice in blender. Blend at low speed and pour into old-fashioned glass. Add ice cubes and twist of cucumber peel.", @@ -10701,7 +10701,7 @@ "lime juice" ], "title": "Sloe Tequila recipe", - "url": "http://www.drinksmixer.com/drink2028.html" + "url": "https://www.drinksmixer.com/drink2028.html" }, { "directions": "Shake all ingredients with ice, strain into a cocktail glass, and serve.", @@ -10711,7 +10711,7 @@ "lemon juice" ], "title": "Sloe Vermouth recipe", - "url": "http://www.drinksmixer.com/drink2029.html" + "url": "https://www.drinksmixer.com/drink2029.html" }, { "directions": "Stir ingredients with ice, strain into a cocktail glass, and serve.", @@ -10720,7 +10720,7 @@ "bitters" ], "title": "Sloeberry Cocktail recipe", - "url": "http://www.drinksmixer.com/drink2030.html" + "url": "https://www.drinksmixer.com/drink2030.html" }, { "directions": "Shake all ingredients with ice, strain into a cocktail glass, and serve.", @@ -10732,7 +10732,7 @@ "limes" ], "title": "Sloppy Joe's Cocktail No. 1 recipe", - "url": "http://www.drinksmixer.com/drink2031.html" + "url": "https://www.drinksmixer.com/drink2031.html" }, { "directions": "Shake all ingredients with ice, strain into a cocktail glass, and serve.", @@ -10744,7 +10744,7 @@ "grenadine syrup" ], "title": "Sloppy Joe's Cocktail No. 2 recipe", - "url": "http://www.drinksmixer.com/drink2032.html" + "url": "https://www.drinksmixer.com/drink2032.html" }, { "directions": "Fill the glass with ice. Add 2 shots of Blavod black vodka. Fill the rest of the glass with orange juice. Sprinkle shredded orange peel on top.", @@ -10753,7 +10753,7 @@ "orange juice" ], "title": "Sloughdriver recipe", - "url": "http://www.drinksmixer.com/drink2033.html" + "url": "https://www.drinksmixer.com/drink2033.html" }, { "directions": "Mix all ingredients in mason jar, add ice and enjoy.", @@ -10766,7 +10766,7 @@ "ice" ], "title": "Slow Comfortable Screw on a Dogbox recipe", - "url": "http://www.drinksmixer.com/drink2034.html" + "url": "https://www.drinksmixer.com/drink2034.html" }, { "directions": "Pour sloe gin and Southern Comfort into a collins glass filled with ice. Fill with orange juice, stir well, and serve.", @@ -10776,7 +10776,7 @@ "orange juice" ], "title": "Slow Comfortable Screw recipe", - "url": "http://www.drinksmixer.com/drink2035.html" + "url": "https://www.drinksmixer.com/drink2035.html" }, { "directions": "Place cinnamon, cloves and allspice in a double thickness of cheesecloth: bring up corners of cloth and tie with a string to form a bag. Place cider and brown sugar in a slow cooker: stir until sugar dissolves. \r", @@ -10789,7 +10789,7 @@ "orange" ], "title": "Slow Cooker Cider recipe", - "url": "http://www.drinksmixer.com/drink2036.html" + "url": "https://www.drinksmixer.com/drink2036.html" }, { "directions": "Shake the gin and the schnapps together in ice. Pour into glass. Dribble the chocolate syrup into a circle on the bottom of the glass. (do not mix)", @@ -10799,7 +10799,7 @@ "chocolate syrup" ], "title": "Slow Painful Movement recipe", - "url": "http://www.drinksmixer.com/drink2037.html" + "url": "https://www.drinksmixer.com/drink2037.html" }, { "directions": "Pour sloe gin into a highball glass filled with ice. Fill with orange juice, stir well, and serve.", @@ -10808,7 +10808,7 @@ "orange juice" ], "title": "Slow Screw recipe", - "url": "http://www.drinksmixer.com/drink2038.html" + "url": "https://www.drinksmixer.com/drink2038.html" }, { "directions": "Pour the Rock & Rye into a glass with ice. While the Rock & Rye is still fizzing, quickly add the 151 proof rum. Stir thouroughly before drinking. (Heavy concentrations of 151 have been known to cause a few sore throats.)", @@ -10817,7 +10817,7 @@ "Rock and Rye\u00ae liqueur" ], "title": "Slugger's Delight recipe", - "url": "http://www.drinksmixer.com/drink2039.html" + "url": "https://www.drinksmixer.com/drink2039.html" }, { "directions": "Mix drink with crushed ice or blend with 2 1/2 scoops of ice. For added enjoyment stick a straw in the middle and drink for a slushy rush.", @@ -10828,7 +10828,7 @@ "pineapple juice" ], "title": "Slushy recipe", - "url": "http://www.drinksmixer.com/drink2040.html" + "url": "https://www.drinksmixer.com/drink2040.html" }, { "directions": "Combine ingredients in a shaker half-filled with ice cubes. Shake well, strain into an old-fashioned glass almost filled with crushed ice, and serve.", @@ -10841,7 +10841,7 @@ "crushed ice" ], "title": "Sly Goes To Havana recipe", - "url": "http://www.drinksmixer.com/drink2041.html" + "url": "https://www.drinksmixer.com/drink2041.html" }, { "directions": "Begin by filling the glass halfway with Amaretto, add shots of melon, add shots of everclear, add rest of glass with pineapple juice, stir, then pour into glass with ice.", @@ -10852,7 +10852,7 @@ "pineapple juice" ], "title": "Small Bomb #2 recipe", - "url": "http://www.drinksmixer.com/drink2042.html" + "url": "https://www.drinksmixer.com/drink2042.html" }, { "directions": "Serve on the rocks in an old-fashioned glass.", @@ -10862,7 +10862,7 @@ "grenadine syrup" ], "title": "Small Bomb recipe", - "url": "http://www.drinksmixer.com/drink2043.html" + "url": "https://www.drinksmixer.com/drink2043.html" }, { "directions": "Mix the first 4 ingredients with ice. Fill with lemonade. Garnish with carambole and strawberry on the edge of glass.", @@ -10874,7 +10874,7 @@ "lemonade" ], "title": "Small Sand recipe", - "url": "http://www.drinksmixer.com/drink2044.html" + "url": "https://www.drinksmixer.com/drink2044.html" }, { "directions": "In a shaker half-filled with ice cubes, combine the gin, Benedictine, and orange juice. Shake well. Strain into an old-fashioned glass almost filled with ice cubes. Garnish with the cherry.", @@ -10885,7 +10885,7 @@ "maraschino cherry" ], "title": "Smart Christine recipe", - "url": "http://www.drinksmixer.com/drink2045.html" + "url": "https://www.drinksmixer.com/drink2045.html" }, { "directions": "Put 1/2 oz. of Grape Schnapps, and 1/2 oz. Melon Liqueur into a shot glass.", @@ -10894,7 +10894,7 @@ "melon liqueur" ], "title": "Smartie recipe", - "url": "http://www.drinksmixer.com/drink2046.html" + "url": "https://www.drinksmixer.com/drink2046.html" }, { "directions": "Mix all ingredients over ice, strain and serve. Tastes like a sweet tart.", @@ -10905,7 +10905,7 @@ "sweet and sour mix" ], "title": "Smarty recipe", - "url": "http://www.drinksmixer.com/drink2047.html" + "url": "https://www.drinksmixer.com/drink2047.html" }, { "directions": "Add ingredients to a small shaker with ice. Stir. Strain into a shot glass.", @@ -10915,7 +10915,7 @@ "Goldschlager\u00ae cinnamon schnapps" ], "title": "Smashing Pumpkin recipe", - "url": "http://www.drinksmixer.com/drink2048.html" + "url": "https://www.drinksmixer.com/drink2048.html" }, { "directions": "Add all ingredients into a shaker with ice, shake it for a while and serve in a cold cocktail glass.", @@ -10927,7 +10927,7 @@ "peach nectar" ], "title": "Smeraldo recipe", - "url": "http://www.drinksmixer.com/drink2049.html" + "url": "https://www.drinksmixer.com/drink2049.html" }, { "directions": "Shake all ingredients with ice, strain into a cocktail glass, and serve.", @@ -10937,7 +10937,7 @@ "lemon juice" ], "title": "Smile Cocktail recipe", - "url": "http://www.drinksmixer.com/drink2050.html" + "url": "https://www.drinksmixer.com/drink2050.html" }, { "directions": "Shake all ingredients with ice, strain into a cocktail glass, and serve.", @@ -10949,7 +10949,7 @@ "bitters" ], "title": "Smiler Cocktail recipe", - "url": "http://www.drinksmixer.com/drink2051.html" + "url": "https://www.drinksmixer.com/drink2051.html" }, { "directions": "Add half of glass with ice cubes. Add Vodka. Fill with Snapple. Mix and serve.", @@ -10959,7 +10959,7 @@ "ice cubes" ], "title": "Smirnoff Snapple Spikage recipe", - "url": "http://www.drinksmixer.com/drink2052.html" + "url": "https://www.drinksmixer.com/drink2052.html" }, { "directions": "Pour vodka, kahlua, and cream into glass filled with ice, then top off with Pepsi.", @@ -10970,7 +10970,7 @@ "Pepsi\u00ae cola" ], "title": "Smith and Wesson recipe", - "url": "http://www.drinksmixer.com/drink2054.html" + "url": "https://www.drinksmixer.com/drink2054.html" }, { "directions": "Pour the scotch and vodka into a pitcher, and squeeze in the juice from a slice of lemon. Mix with ice, let stand for a few minutes to chill, then pour into glasses with ice. Add lemon to taste.", @@ -10980,7 +10980,7 @@ "lemon" ], "title": "Smoked Martini recipe", - "url": "http://www.drinksmixer.com/drink2055.html" + "url": "https://www.drinksmixer.com/drink2055.html" }, { "directions": "Pour into a tall glass over ice, shake to mix all ingredients well, garnish with a cherry or an orange slice if you so desire.", @@ -10994,7 +10994,7 @@ "pineapple juice" ], "title": "Smooch recipe", - "url": "http://www.drinksmixer.com/drink2056.html" + "url": "https://www.drinksmixer.com/drink2056.html" }, { "directions": "Pour vodka in glass followed by the Kahlua. Add the dash of coke (to taste) and stir. Top up the glass with guinness and serve.", @@ -11005,7 +11005,7 @@ "Guinness\u00ae stout" ], "title": "Smooth Black Russian recipe", - "url": "http://www.drinksmixer.com/drink2057.html" + "url": "https://www.drinksmixer.com/drink2057.html" }, { "directions": "Mix and drink.", @@ -11014,7 +11014,7 @@ "7-Up\u00ae soda" ], "title": "Smooth Dog recipe", - "url": "http://www.drinksmixer.com/drink2058.html" + "url": "https://www.drinksmixer.com/drink2058.html" }, { "directions": "Blend ingredients in a blender with a scoop of crushed ice. Strain into cocktail glass(es).", @@ -11026,7 +11026,7 @@ "cream" ], "title": "Smooth Operator recipe", - "url": "http://www.drinksmixer.com/drink2059.html" + "url": "https://www.drinksmixer.com/drink2059.html" }, { "directions": "Build drink. Usually it's best to use a slight bit more sour than cranberry. Experiment to personal taste. Garnish with lemon wheel.", @@ -11037,7 +11037,7 @@ "7-Up\u00ae soda" ], "title": "Smooth Pink Lemonade recipe", - "url": "http://www.drinksmixer.com/drink2060.html" + "url": "https://www.drinksmixer.com/drink2060.html" }, { "directions": "Mix all ingredients in a medium-sized bowl. Freeze in small airtight containers. To serve, remove from freezer and let thaw about 10 minutes. Scrape or scoop into stemmed glasses. Serve with straws, if desired. Makes 14 six-ounce drinks.", @@ -11048,7 +11048,7 @@ "bourbon whiskey" ], "title": "Smooth Sailin' recipe", - "url": "http://www.drinksmixer.com/drink2061.html" + "url": "https://www.drinksmixer.com/drink2061.html" }, { "directions": "Serve over ice. Drizzle cherry brandy over the top of the other ingredients. Garnish with lime and a cherry.", @@ -11060,7 +11060,7 @@ "cherry brandy" ], "title": "Smooth Sailing recipe", - "url": "http://www.drinksmixer.com/drink2062.html" + "url": "https://www.drinksmixer.com/drink2062.html" }, { "directions": "Combine all ingredients, except 7-Up, in blender. Divide into 2 jars. Top with 7-Up, stir well.", @@ -11074,7 +11074,7 @@ "fruit" ], "title": "Smooth Operator recipe", - "url": "http://www.drinksmixer.com/drink2063.html" + "url": "https://www.drinksmixer.com/drink2063.html" }, { "directions": "Shake all of the ingredients over ice and strain into a 4 oz. shooter glass.", @@ -11087,7 +11087,7 @@ "ice cubes" ], "title": "Smoothie recipe", - "url": "http://www.drinksmixer.com/drink2064.html" + "url": "https://www.drinksmixer.com/drink2064.html" }, { "directions": "Put ice in cup and fill it half full with sprite. Add maui filling the glass. Stir.", @@ -11097,7 +11097,7 @@ "ice cubes" ], "title": "Smurf Punch recipe", - "url": "http://www.drinksmixer.com/drink2065.html" + "url": "https://www.drinksmixer.com/drink2065.html" }, { "directions": "In a shaker glass, fill with ice, add all ingredients, shake and pour into a shot glass.", @@ -11107,7 +11107,7 @@ "cream" ], "title": "Smurf Fart recipe", - "url": "http://www.drinksmixer.com/drink2066.html" + "url": "https://www.drinksmixer.com/drink2066.html" }, { "directions": "Mix Peach Schnapps and Blue Curacao in a shot glass and top with whipped cream and four or five drops of grenadine.", @@ -11118,7 +11118,7 @@ "grenadine syrup" ], "title": "Smurf on the Rag recipe", - "url": "http://www.drinksmixer.com/drink2067.html" + "url": "https://www.drinksmixer.com/drink2067.html" }, { "directions": "Pour the gin, blue curacao and the tonic water into a highball glass half filled with ice cubes. Stir well. Garnish with the lime wedge. If you want, you can add the blue curacao after stirring the drink.", @@ -11129,7 +11129,7 @@ "lime" ], "title": "Smurf-o-Tonic recipe", - "url": "http://www.drinksmixer.com/drink2068.html" + "url": "https://www.drinksmixer.com/drink2068.html" }, { "directions": "Combine and stir.", @@ -11139,7 +11139,7 @@ "pineapple juice" ], "title": "Smurfs Up recipe", - "url": "http://www.drinksmixer.com/drink2069.html" + "url": "https://www.drinksmixer.com/drink2069.html" }, { "directions": "Take the vodka in first, then orange juice and sprite. Then you take some dashes of grenadine and stirr it around for 20 sec. On the top of it you have a little dash of Strawb.marg.mix. Add ice cubes.", @@ -11152,7 +11152,7 @@ "ice cubes" ], "title": "Smurf Cocktail recipe", - "url": "http://www.drinksmixer.com/drink2070.html" + "url": "https://www.drinksmixer.com/drink2070.html" }, { "directions": "Throw it all together and serve real cold.", @@ -11163,7 +11163,7 @@ "orange juice" ], "title": "Smut recipe", - "url": "http://www.drinksmixer.com/drink2071.html" + "url": "https://www.drinksmixer.com/drink2071.html" }, { "directions": "Pour ingredients into a pint glass. Drink. Fall over.\r", @@ -11172,7 +11172,7 @@ "dry cider" ], "title": "Snake Bite recipe", - "url": "http://www.drinksmixer.com/drink2072.html" + "url": "https://www.drinksmixer.com/drink2072.html" }, { "directions": "Pour 1/2 pint Lager, and 1/2 pint Cider into a Pilsner glass, then add Black Currant until drink is purple in color.", @@ -11182,7 +11182,7 @@ "blackcurrant cordial" ], "title": "Snake Bite Black recipe", - "url": "http://www.drinksmixer.com/drink2073.html" + "url": "https://www.drinksmixer.com/drink2073.html" }, { "directions": "Shake with lots of ice, strain into glass.", @@ -11194,7 +11194,7 @@ "cherry" ], "title": "Snake In The Grass recipe", - "url": "http://www.drinksmixer.com/drink2074.html" + "url": "https://www.drinksmixer.com/drink2074.html" }, { "directions": "Fill glass with ice. Add ingredients and stir occasionally.", @@ -11204,7 +11204,7 @@ "peach schnapps" ], "title": "Snake Piss recipe", - "url": "http://www.drinksmixer.com/drink2075.html" + "url": "https://www.drinksmixer.com/drink2075.html" }, { "directions": "Pour the ingredients in a tall pint glass and let it swim.", @@ -11214,7 +11214,7 @@ "Pernod\u00ae licorice liqueur" ], "title": "Snake Venom recipe", - "url": "http://www.drinksmixer.com/drink2076.html" + "url": "https://www.drinksmixer.com/drink2076.html" }, { "directions": "Pour two ounces of yukon jack over ice. Add a dash of lime juice, and serve.", @@ -11223,7 +11223,7 @@ "lime juice" ], "title": "Snakebite recipe", - "url": "http://www.drinksmixer.com/drink2077.html" + "url": "https://www.drinksmixer.com/drink2077.html" }, { "directions": "Very carefully layer the vodka on top of the green Chartreuse. Drop in the Tabasco, which should sink to the bottom. Slam it.", @@ -11233,7 +11233,7 @@ "Tabasco\u00ae sauce" ], "title": "Snakebite #2 recipe", - "url": "http://www.drinksmixer.com/drink2078.html" + "url": "https://www.drinksmixer.com/drink2078.html" }, { "directions": "Add 1 part Jack Daniels whiskey and 1 part tequila to your shot glass. Then add a few (5 to 10) drops of tabasco sauce. Take it down like a shot.", @@ -11243,7 +11243,7 @@ "Tabasco\u00ae sauce" ], "title": "Snakebite #3 recipe", - "url": "http://www.drinksmixer.com/drink2079.html" + "url": "https://www.drinksmixer.com/drink2079.html" }, { "directions": "Pour the green chartreuse into a shot glass, add a dash of tabasco sauce, and serve. Add more tabasco sauce for a more venimous bite.", @@ -11252,7 +11252,7 @@ "Tabasco\u00ae sauce" ], "title": "Snakebite #5 recipe", - "url": "http://www.drinksmixer.com/drink2080.html" + "url": "https://www.drinksmixer.com/drink2080.html" }, { "directions": "Put blackcurrant squash in first up to about 1cm in glass. Then add the lager and cider one after another.", @@ -11262,7 +11262,7 @@ "blackcurrant squash" ], "title": "Snakebite And Black recipe", - "url": "http://www.drinksmixer.com/drink2081.html" + "url": "https://www.drinksmixer.com/drink2081.html" }, { "directions": "Fill a pint glass half way with cider, add a dash of blackcurrant cordial, top it up with lager, drink it down a bit (or pour it off) and add a shot of Jack Daniels.", @@ -11273,7 +11273,7 @@ "lager" ], "title": "Snakebite Jack recipe", - "url": "http://www.drinksmixer.com/drink2082.html" + "url": "https://www.drinksmixer.com/drink2082.html" }, { "directions": "Fill shaker (or glass) with crushed ice. Pour schnapps in first and top with Snapple. Shake like hell and pour into a frosted (preferably) highball glass.", @@ -11282,7 +11282,7 @@ "Snapple\u00ae soda" ], "title": "Snapple and Schnapps recipe", - "url": "http://www.drinksmixer.com/drink2083.html" + "url": "https://www.drinksmixer.com/drink2083.html" }, { "directions": "Mix the Snapple and whiskey in a pewter martini shaker. (preferably pewter because it keeps the drink so cold). Next step put crushed ice in very last so you do not water down the drink. Serve in a martini glass or a hurricane glass with 4 lemon drops.", @@ -11292,7 +11292,7 @@ "lime juice" ], "title": "Snapple Sensation recipe", - "url": "http://www.drinksmixer.com/drink2084.html" + "url": "https://www.drinksmixer.com/drink2084.html" }, { "directions": "Pour kahlua over ice. Add milk and rye whiskey, stir, and serve.", @@ -11302,7 +11302,7 @@ "milk" ], "title": "Sneaky Pete recipe", - "url": "http://www.drinksmixer.com/drink2085.html" + "url": "https://www.drinksmixer.com/drink2085.html" }, { "directions": "Pour all and mix well.", @@ -11313,7 +11313,7 @@ "chocolate milk" ], "title": "Sneaky Wesley recipe", - "url": "http://www.drinksmixer.com/drink2086.html" + "url": "https://www.drinksmixer.com/drink2086.html" }, { "directions": "Mix all ingredients together with lots of ice.", @@ -11328,7 +11328,7 @@ "ice cubes" ], "title": "Sneeky Sucker recipe", - "url": "http://www.drinksmixer.com/drink2087.html" + "url": "https://www.drinksmixer.com/drink2087.html" }, { "directions": "Used crushed ice. Can be made in any size from punchbowl to personal serving.", @@ -11338,7 +11338,7 @@ "cinnamon" ], "title": "Snitchee's Cider recipe", - "url": "http://www.drinksmixer.com/drink2088.html" + "url": "https://www.drinksmixer.com/drink2088.html" }, { "directions": "Fill glass with ice, then add schnapps & 7-Up. Add Grenadine and let settle to the bottom of the glass. Carefully float the Blue Curacao over the top of the drink.", @@ -11350,7 +11350,7 @@ "ice cubes" ], "title": "Sno-Cone recipe", - "url": "http://www.drinksmixer.com/drink2089.html" + "url": "https://www.drinksmixer.com/drink2089.html" }, { "directions": "Pour vodka in blender and add ice cream. Blend. Top with lemonade.", @@ -11360,7 +11360,7 @@ "lemonade" ], "title": "Snow Blinder recipe", - "url": "http://www.drinksmixer.com/drink2090.html" + "url": "https://www.drinksmixer.com/drink2090.html" }, { "directions": "Pour 2 1/2 oz. frangelico into a tall glass and fill with strong coffee. Top with a scoop of ice-cream.", @@ -11370,7 +11370,7 @@ "Frangelico\u00ae hazelnut liqueur" ], "title": "Snow Cap Columbian Monk recipe", - "url": "http://www.drinksmixer.com/drink2091.html" + "url": "https://www.drinksmixer.com/drink2091.html" }, { "directions": "Larger glass can be used if more cream or milk is needed to soften the impact of the drink.", @@ -11382,7 +11382,7 @@ "ice" ], "title": "Snow Snake recipe", - "url": "http://www.drinksmixer.com/drink2092.html" + "url": "https://www.drinksmixer.com/drink2092.html" }, { "directions": "Place Sprite/7-Up into glass. Pour Heineken to top off. Mixture can be varied. Good summertime drink.", @@ -11391,7 +11391,7 @@ "Heineken\u00ae lager" ], "title": "Snow White recipe", - "url": "http://www.drinksmixer.com/drink2093.html" + "url": "https://www.drinksmixer.com/drink2093.html" }, { "directions": "Take the glass and rub the edge on a lemon, then dip the rim in sugar. Drop the ice cubes into the glass, pour a 1/3 liqueur and fill it up with Sprite. Stir.", @@ -11401,7 +11401,7 @@ "ice cubes" ], "title": "Snowball #2 recipe", - "url": "http://www.drinksmixer.com/drink2094.html" + "url": "https://www.drinksmixer.com/drink2094.html" }, { "directions": "Mix together into a double shot glass, and serve.", @@ -11410,7 +11410,7 @@ "Rumple Minze\u00ae peppermint liqueur" ], "title": "Snowball #3 recipe", - "url": "http://www.drinksmixer.com/drink2095.html" + "url": "https://www.drinksmixer.com/drink2095.html" }, { "directions": "Place one ice cube in the glass and add 1 1/2 oz of Advocaat. Fill up the glass with lemonade and decorate with a slice of lemon. Serve at once.", @@ -11421,7 +11421,7 @@ "ice cubes" ], "title": "Snowball recipe", - "url": "http://www.drinksmixer.com/drink2096.html" + "url": "https://www.drinksmixer.com/drink2096.html" }, { "directions": "Mix everything togeather in the glass and make sure that the ice is crushed. The best is if the ice is like \"slush\". You can also serve the drink with a slice of kiwi.", @@ -11432,7 +11432,7 @@ "crushed ice" ], "title": "Snowboard recipe", - "url": "http://www.drinksmixer.com/drink2097.html" + "url": "https://www.drinksmixer.com/drink2097.html" }, { "directions": "Blend Pear Liqueur, Milk and Ice. Add 7-Up to taste.", @@ -11443,7 +11443,7 @@ "7-Up\u00ae soda" ], "title": "Snowflake recipe", - "url": "http://www.drinksmixer.com/drink2098.html" + "url": "https://www.drinksmixer.com/drink2098.html" }, { "directions": "Mix hot chocolate to taste, add booze, top with whipped cream and sprinkle with cinnamon.", @@ -11456,7 +11456,7 @@ "whipped cream" ], "title": "Snowplow recipe", - "url": "http://www.drinksmixer.com/drink2099.html" + "url": "https://www.drinksmixer.com/drink2099.html" }, { "directions": "Pour peppermint schnapps in shot glass, top with Wild Turkey, drink it up!", @@ -11465,7 +11465,7 @@ "Wild Turkey\u00ae bourbon whiskey" ], "title": "Snowshoe recipe", - "url": "http://www.drinksmixer.com/drink2100.html" + "url": "https://www.drinksmixer.com/drink2100.html" }, { "directions": "Throw all ingredients into blender. Add sugar to taste, sweet lemons dont need more than one cube. Blend until the consistancy resembles a daiquiri.", @@ -11476,7 +11476,7 @@ "sugar" ], "title": "Snowshot recipe", - "url": "http://www.drinksmixer.com/drink2101.html" + "url": "https://www.drinksmixer.com/drink2101.html" }, { "directions": "Shake all ingredients (except lemon peel) with ice and strain into a cocktail glass. Add the twist of lemon peel and serve.", @@ -11487,7 +11487,7 @@ "lemon" ], "title": "Snyder recipe", - "url": "http://www.drinksmixer.com/drink2102.html" + "url": "https://www.drinksmixer.com/drink2102.html" }, { "directions": "Pour Goldshlager, Rumple Minze and Aftershock into mug. Fill with sprite.", @@ -11498,7 +11498,7 @@ "Sprite\u00ae soda" ], "title": "Soapy Tits recipe", - "url": "http://www.drinksmixer.com/drink2103.html" + "url": "https://www.drinksmixer.com/drink2103.html" }, { "directions": "Mix alcohol, then juice and tonic water. Add crushed ice and drink.", @@ -11511,7 +11511,7 @@ "crushed ice" ], "title": "Soft Serbian recipe", - "url": "http://www.drinksmixer.com/drink2105.html" + "url": "https://www.drinksmixer.com/drink2105.html" }, { "directions": "Shake ingredients with ice, strain into a brandy snifter, and serve. \r", @@ -11520,7 +11520,7 @@ "anisette" ], "title": "Sol Y Sombra recipe", - "url": "http://www.drinksmixer.com/drink2106.html" + "url": "https://www.drinksmixer.com/drink2106.html" }, { "directions": "Measure the parts so the glass is 2/3 full. The sugar teaspoonfull should be skimmed and stirred a little.", @@ -11530,7 +11530,7 @@ "sugar" ], "title": "Solaris recipe", - "url": "http://www.drinksmixer.com/drink2107.html" + "url": "https://www.drinksmixer.com/drink2107.html" }, { "directions": "Pour brandy into an old-fashioned glass over ice cubes. Float cream on top and serve.", @@ -11539,7 +11539,7 @@ "light cream" ], "title": "Sombrero recipe", - "url": "http://www.drinksmixer.com/drink2108.html" + "url": "https://www.drinksmixer.com/drink2108.html" }, { "directions": "Mix ingredients in random order and shake on ice.", @@ -11552,7 +11552,7 @@ "pineapple juice" ], "title": "Somebird recipe", - "url": "http://www.drinksmixer.com/drink2109.html" + "url": "https://www.drinksmixer.com/drink2109.html" }, { "directions": "Serve in a tall glass over ice. Garnish with a cherry and orange.", @@ -11564,7 +11564,7 @@ "orange juice" ], "title": "Something Peachie recipe", - "url": "http://www.drinksmixer.com/drink2110.html" + "url": "https://www.drinksmixer.com/drink2110.html" }, { "directions": "In a shaker half-filled with ice cubes, combine all of the ingredients. Shake well. Strain into a cocktail glass.", @@ -11576,7 +11576,7 @@ "grenadine syrup" ], "title": "Son Of Adam recipe", - "url": "http://www.drinksmixer.com/drink2111.html" + "url": "https://www.drinksmixer.com/drink2111.html" }, { "directions": "In a shaker half-filled with ice cubes, combine all of the ingredients. Shake well. Strain into a cocktail glass.", @@ -11588,7 +11588,7 @@ "superfine sugar" ], "title": "Sonny Gets Kissed recipe", - "url": "http://www.drinksmixer.com/drink2112.html" + "url": "https://www.drinksmixer.com/drink2112.html" }, { "directions": "Pour ingredients into a highball glass, stir, and serve.", @@ -11598,7 +11598,7 @@ "grape juice" ], "title": "Sonoma recipe", - "url": "http://www.drinksmixer.com/drink2113.html" + "url": "https://www.drinksmixer.com/drink2113.html" }, { "directions": "Shake all ingredients with ice, strain into a cocktail glass, and serve.", @@ -11610,7 +11610,7 @@ "powdered sugar" ], "title": "Soother Cocktail recipe", - "url": "http://www.drinksmixer.com/drink2114.html" + "url": "https://www.drinksmixer.com/drink2114.html" }, { "directions": "Pour Limoncello and Grand Marnier into coffee cup or glass. Fill with coffee and top with whipped cream.", @@ -11621,7 +11621,7 @@ "whipped cream" ], "title": "Sorrento Cafe recipe", - "url": "http://www.drinksmixer.com/drink2115.html" + "url": "https://www.drinksmixer.com/drink2115.html" }, { "directions": "Shake all ingredients with ice, strain into a cocktail glass, and serve.", @@ -11632,7 +11632,7 @@ "orange juice" ], "title": "Soul Kiss Cocktail recipe", - "url": "http://www.drinksmixer.com/drink2116.html" + "url": "https://www.drinksmixer.com/drink2116.html" }, { "directions": "Mix the the parts together and stir briefly.", @@ -11642,7 +11642,7 @@ "amaretto almond liqueur" ], "title": "Soul Taker recipe", - "url": "http://www.drinksmixer.com/drink2117.html" + "url": "https://www.drinksmixer.com/drink2117.html" }, { "directions": "Place ingredients in mixing cup with ice, shake, strain into glass.", @@ -11652,7 +11652,7 @@ "sweet and sour mix" ], "title": "Sour Apple #2 recipe", - "url": "http://www.drinksmixer.com/drink2118.html" + "url": "https://www.drinksmixer.com/drink2118.html" }, { "directions": "Fill glass with ice and garnish with an orange half and a cherry. Drink can be made without lime juice for those with who prefer sweeter.", @@ -11664,7 +11664,7 @@ "Rose's\u00ae lime juice" ], "title": "Sour Apple recipe", - "url": "http://www.drinksmixer.com/drink2119.html" + "url": "https://www.drinksmixer.com/drink2119.html" }, { "directions": "Mix with ice and pour into glass.", @@ -11674,7 +11674,7 @@ "Everclear\u00ae alcohol" ], "title": "Sour Death recipe", - "url": "http://www.drinksmixer.com/drink2120.html" + "url": "https://www.drinksmixer.com/drink2120.html" }, { "directions": "Combine all ingredients into a mixing tin. Stir over ice and strain into a cocktail glass. Cocktail glass should be sugar rimmed and garnished with a lemon.", @@ -11687,7 +11687,7 @@ "club soda" ], "title": "Sour Kiss recipe", - "url": "http://www.drinksmixer.com/drink2121.html" + "url": "https://www.drinksmixer.com/drink2121.html" }, { "directions": "Mix over ice.", @@ -11697,7 +11697,7 @@ "lemon juice" ], "title": "Sour Pussy recipe", - "url": "http://www.drinksmixer.com/drink2122.html" + "url": "https://www.drinksmixer.com/drink2122.html" }, { "directions": "Shake the spirits with ice and strain into a highball glass. Fill with Grape Tonic and stir gently.\r\n", @@ -11706,7 +11706,7 @@ "gin" ], "title": "South Bank recipe", - "url": "http://www.drinksmixer.com/drink2124.html" + "url": "https://www.drinksmixer.com/drink2124.html" }, { "directions": "Shake well with ice. Strain into large martini glass. Garnish with twist of orange peel.", @@ -11718,7 +11718,7 @@ "orange" ], "title": "South Beach Martini recipe", - "url": "http://www.drinksmixer.com/drink2125.html" + "url": "https://www.drinksmixer.com/drink2125.html" }, { "directions": "Shake all ingredients (except lime slice) with ice and strain into a whiskey sour glass. Add the slice of lime and serve.", @@ -11729,7 +11729,7 @@ "lime" ], "title": "South Of The Border recipe", - "url": "http://www.drinksmixer.com/drink2126.html" + "url": "https://www.drinksmixer.com/drink2126.html" }, { "directions": "Fill glass with ice. Pour ingredients in order listed above. Allow Cranberry to float. Do not stir this drink. Garnish with lime wedge.", @@ -11742,7 +11742,7 @@ "pineapple juice" ], "title": "South Padre Island recipe", - "url": "http://www.drinksmixer.com/drink2127.html" + "url": "https://www.drinksmixer.com/drink2127.html" }, { "directions": "Add all ingredients to blender including one mint leaf as it will be blended up and leave little specks at top of drink. After drink is complete add other whole mint leaves. A lime wedge can also be added. Amount of soda water should fluctuate according to how strong the lemon-lime solution is.", @@ -11755,7 +11755,7 @@ "soda water" ], "title": "South Side recipe", - "url": "http://www.drinksmixer.com/drink2128.html" + "url": "https://www.drinksmixer.com/drink2128.html" }, { "directions": "Serve in rocks glass - no ice.\r", @@ -11764,7 +11764,7 @@ "anisette" ], "title": "Southampton Slam recipe", - "url": "http://www.drinksmixer.com/drink2129.html" + "url": "https://www.drinksmixer.com/drink2129.html" }, { "directions": "In shot glass, pour 1/3 Southern Comfort and 1/3 Jim Beam. Add 1/3 Tia Maria and let set and form. Do not mix. Add a couple drops of grenadine (or as sweet as desired).", @@ -11775,7 +11775,7 @@ "grenadine syrup" ], "title": "Southern Beamy Brain Damage recipe", - "url": "http://www.drinksmixer.com/drink2130.html" + "url": "https://www.drinksmixer.com/drink2130.html" }, { "directions": "Pour the brandy into a pousse cafe glass. Tilt the glass to a 45-degree angle and slowly pour the creme de cacao down the side of the glass so that it floats on the brandy. Repeat this precedure with the Benedictine.", @@ -11785,7 +11785,7 @@ "benedictine herbal liqueur" ], "title": "Southern Belle recipe", - "url": "http://www.drinksmixer.com/drink2131.html" + "url": "https://www.drinksmixer.com/drink2131.html" }, { "directions": "Fill the glass with ice and pour in Southern Comfort. Fill with Root Beer.", @@ -11795,7 +11795,7 @@ "ice cubes" ], "title": "Southern Bell recipe", - "url": "http://www.drinksmixer.com/drink2132.html" + "url": "https://www.drinksmixer.com/drink2132.html" }, { "directions": "Just pour it all in a glass. Stir it if you really feel the need to. I usually just pour in the alcohol and let the fruit juice do the mixing for me. For the best results, try and use that Minute Maid Fruit Punch. That stuff works very well. I advise against using any sort of \"all-citrus\" fruit juice, even OJ.", @@ -11807,7 +11807,7 @@ "fruit juice" ], "title": "Southern Blast recipe", - "url": "http://www.drinksmixer.com/drink2133.html" + "url": "https://www.drinksmixer.com/drink2133.html" }, { "directions": "Mix Schnapps and Southern Comfort together, chill, and serve cold. Tastes like Kool Aid.", @@ -11816,7 +11816,7 @@ "Southern Comfort\u00ae peach liqueur" ], "title": "Southern Blues #2 recipe", - "url": "http://www.drinksmixer.com/drink2134.html" + "url": "https://www.drinksmixer.com/drink2134.html" }, { "directions": "Add ingredients to a small shaker w/ice. Stir, strain into a shot glass, and serve.", @@ -11825,7 +11825,7 @@ "blueberry schnapps" ], "title": "Southern Blues recipe", - "url": "http://www.drinksmixer.com/drink2135.html" + "url": "https://www.drinksmixer.com/drink2135.html" }, { "directions": "Pour ingredients into mixing/cheater tin over ice, shake and pour.", @@ -11838,7 +11838,7 @@ "sweet and sour mix" ], "title": "Southern Bondage recipe", - "url": "http://www.drinksmixer.com/drink2136.html" + "url": "https://www.drinksmixer.com/drink2136.html" }, { "directions": "Use a large shot glass. \r", @@ -11849,7 +11849,7 @@ "151 proof rum" ], "title": "Southern Bound Meteor recipe", - "url": "http://www.drinksmixer.com/drink2137.html" + "url": "https://www.drinksmixer.com/drink2137.html" }, { "directions": "Fill 2/3 shot with Southern Comfort. Add 1/3 left Tia Maria. Do not mix. Add a couple drops of grenadine for effect (or for sweetness desired).", @@ -11859,7 +11859,7 @@ "grenadine syrup" ], "title": "Southern Brain Damage recipe", - "url": "http://www.drinksmixer.com/drink2138.html" + "url": "https://www.drinksmixer.com/drink2138.html" }, { "directions": "Shake all ingredients with ice, strain into a cocktail glass, and serve.", @@ -11869,7 +11869,7 @@ "maraschino liqueur" ], "title": "Southern Bride recipe", - "url": "http://www.drinksmixer.com/drink2139.html" + "url": "https://www.drinksmixer.com/drink2139.html" }, { "directions": "No mixing required.", @@ -11878,7 +11878,7 @@ "Champagne" ], "title": "Southern Bubbles recipe", - "url": "http://www.drinksmixer.com/drink2140.html" + "url": "https://www.drinksmixer.com/drink2140.html" }, { "directions": "Mix together and drink.", @@ -11888,7 +11888,7 @@ "Jim Beam\u00ae bourbon whiskey" ], "title": "Southern Chase recipe", - "url": "http://www.drinksmixer.com/drink2141.html" + "url": "https://www.drinksmixer.com/drink2141.html" }, { "directions": "Shake and strain over ice.", @@ -11898,7 +11898,7 @@ "lime juice" ], "title": "Southern Comfort Kamikaze recipe", - "url": "http://www.drinksmixer.com/drink2142.html" + "url": "https://www.drinksmixer.com/drink2142.html" }, { "directions": "Can be made 'up' or 'on the rocks' Prepare sour glass. Add Southern Comfort and sour mix to mixing glass. Shake well (8-10 times) and strain into glass providing lots of foam. Add flag or butterfly (orange and cherry on a pick) as garnish.", @@ -11907,7 +11907,7 @@ "sweet and sour mix" ], "title": "Southern Comfort Sour recipe", - "url": "http://www.drinksmixer.com/drink2143.html" + "url": "https://www.drinksmixer.com/drink2143.html" }, { "directions": "Put ice in a highball glass and the add the liquors. Top the glass off with Coke and 7-up and a lemon twist. Stir.", @@ -11919,7 +11919,7 @@ "7-Up\u00ae soda" ], "title": "Southern Death Cult recipe", - "url": "http://www.drinksmixer.com/drink2144.html" + "url": "https://www.drinksmixer.com/drink2144.html" }, { "directions": "Basically put ice in glass, add 1 oz. southern comfort, then fill glass with mountain dew.", @@ -11929,7 +11929,7 @@ "ice" ], "title": "Southern Dew recipe", - "url": "http://www.drinksmixer.com/drink2145.html" + "url": "https://www.drinksmixer.com/drink2145.html" }, { "directions": "Pour Southern Comfort in mason jar, fill with Dr. Pepper, chill with ice, and throw a party!", @@ -11938,7 +11938,7 @@ "Dr. Pepper\u00ae soda" ], "title": "Southern Doctor recipe", - "url": "http://www.drinksmixer.com/drink2146.html" + "url": "https://www.drinksmixer.com/drink2146.html" }, { "directions": "Mix together over ice.", @@ -11949,7 +11949,7 @@ "ice" ], "title": "Southern Frost recipe", - "url": "http://www.drinksmixer.com/drink2148.html" + "url": "https://www.drinksmixer.com/drink2148.html" }, { "directions": "Add first the Southern Comfort. Then add the Triple Sec. Finish the shot with some Grenadine. Tip your head back and enjoy this smoothest shot in the south.", @@ -11959,7 +11959,7 @@ "grenadine syrup" ], "title": "Southern Fruity Passion recipe", - "url": "http://www.drinksmixer.com/drink2149.html" + "url": "https://www.drinksmixer.com/drink2149.html" }, { "directions": "Stir all ingredients (except lemon peel) with ice and strain into a cocktail glass. Add the twist of lemon peel and serve.", @@ -11970,7 +11970,7 @@ "lemon" ], "title": "Southern Gin Cocktail recipe", - "url": "http://www.drinksmixer.com/drink2150.html" + "url": "https://www.drinksmixer.com/drink2150.html" }, { "directions": "Build over ice and serve with a smile.", @@ -11982,7 +11982,7 @@ "lemon" ], "title": "Southern Harmony recipe", - "url": "http://www.drinksmixer.com/drink2151.html" + "url": "https://www.drinksmixer.com/drink2151.html" }, { "directions": "Add all ingredients into a sauce pan. Warm mixture on stove, until all flavors have steeped together (about 5 min.). Do not let it boil. Remove cinnamon sticks. Serve while still hot.", @@ -11993,7 +11993,7 @@ "vanilla extract" ], "title": "Southern Hospitality recipe", - "url": "http://www.drinksmixer.com/drink2152.html" + "url": "https://www.drinksmixer.com/drink2152.html" }, { "directions": "Mix together and shoot or mix 2 oz of each and serve over ice.", @@ -12002,7 +12002,7 @@ "Southern Comfort\u00ae peach liqueur" ], "title": "Southern Ireland recipe", - "url": "http://www.drinksmixer.com/drink2153.html" + "url": "https://www.drinksmixer.com/drink2153.html" }, { "directions": "Pour both ingredients into shot glass. Consume repeatedly.", @@ -12011,7 +12011,7 @@ "Jack Daniel's\u00ae Tennessee whiskey" ], "title": "Southern Joe recipe", - "url": "http://www.drinksmixer.com/drink2154.html" + "url": "https://www.drinksmixer.com/drink2154.html" }, { "directions": "Add all with ice shack and strain.", @@ -12022,7 +12022,7 @@ "Absolut\u00ae Citron vodka" ], "title": "Southern Peach recipe", - "url": "http://www.drinksmixer.com/drink2155.html" + "url": "https://www.drinksmixer.com/drink2155.html" }, { "directions": "Mix in a shaker half filled with ice. Strain into a pony glass.", @@ -12034,7 +12034,7 @@ "lemon juice" ], "title": "Southern Pink Flamingo recipe", - "url": "http://www.drinksmixer.com/drink2156.html" + "url": "https://www.drinksmixer.com/drink2156.html" }, { "directions": "Pour the Southern Comfort into shot glass, then put in the Peach Schnapps.", @@ -12043,7 +12043,7 @@ "peach schnapps" ], "title": "Southern Pride recipe", - "url": "http://www.drinksmixer.com/drink2157.html" + "url": "https://www.drinksmixer.com/drink2157.html" }, { "directions": "Mix the 4 equal parts and pour into short rocks glass.", @@ -12054,7 +12054,7 @@ "sweet and sour mix" ], "title": "Southern Raspberry Tart recipe", - "url": "http://www.drinksmixer.com/drink2158.html" + "url": "https://www.drinksmixer.com/drink2158.html" }, { "directions": "Pour liquors, fill with sour mix and shake. Then top with 7-Up or Sprite and garnish with a cherry.", @@ -12067,7 +12067,7 @@ "cherry" ], "title": "Southern Raspberry Tart #2 recipe", - "url": "http://www.drinksmixer.com/drink2159.html" + "url": "https://www.drinksmixer.com/drink2159.html" }, { "directions": "Add 2 oz. of Southern Comfort and 1 oz. of Peach Schnapps to a highball glass. Next add ice and top off with lemonade.", @@ -12078,7 +12078,7 @@ "ice" ], "title": "Southern Salutation recipe", - "url": "http://www.drinksmixer.com/drink2160.html" + "url": "https://www.drinksmixer.com/drink2160.html" }, { "directions": "Pour coconut rum into a highball glass half-filled with ice. Fill with eggnog. Stir in grenadine to desired red (no more than 1 oz).", @@ -12089,7 +12089,7 @@ "ice cubes" ], "title": "Southern Santa recipe", - "url": "http://www.drinksmixer.com/drink2161.html" + "url": "https://www.drinksmixer.com/drink2161.html" }, { "directions": "Fill jigger with ice. Add all ingredients. Cover, shake and pour into shot glasses.", @@ -12099,7 +12099,7 @@ "amaretto almond liqueur" ], "title": "Southern Smile recipe", - "url": "http://www.drinksmixer.com/drink2162.html" + "url": "https://www.drinksmixer.com/drink2162.html" }, { "directions": "Mix ingredients. Shake and strain into cocktail glass, or serve on the rocks into an ordinary glass. Garnish with a flag (confederate).", @@ -12110,7 +12110,7 @@ "carbonated water" ], "title": "Southern Sparkler recipe", - "url": "http://www.drinksmixer.com/drink2163.html" + "url": "https://www.drinksmixer.com/drink2163.html" }, { "directions": "Combine and mix ingredients over plenty of ice in an old-fashioned glass. Garnish with a slice of lime, and serve.", @@ -12119,7 +12119,7 @@ "ginger ale" ], "title": "Southern Special recipe", - "url": "http://www.drinksmixer.com/drink2164.html" + "url": "https://www.drinksmixer.com/drink2164.html" }, { "directions": "Mix ingredients on the rocks.", @@ -12131,7 +12131,7 @@ "grenadine syrup" ], "title": "Southern Suicide recipe", - "url": "http://www.drinksmixer.com/drink2165.html" + "url": "https://www.drinksmixer.com/drink2165.html" }, { "directions": "Pour all ingredients into a shaker with ice. Shake well and pour into cocktail glasses.", @@ -12142,7 +12142,7 @@ "orange juice" ], "title": "Southern Sunrise recipe", - "url": "http://www.drinksmixer.com/drink2166.html" + "url": "https://www.drinksmixer.com/drink2166.html" }, { "directions": "Pour the juices first, then top off with the liqueur.", @@ -12152,7 +12152,7 @@ "DeKuyper\u00ae Cactus Juice schnapps" ], "title": "Southwest Cooler recipe", - "url": "http://www.drinksmixer.com/drink2167.html" + "url": "https://www.drinksmixer.com/drink2167.html" }, { "directions": "Mix all ingredients, except lemon peel, with cracked ice in a shaker or blender and strain into a chilled cocktail glass. Twist lemon peel over drink and drop into glass.", @@ -12163,7 +12163,7 @@ "lemon" ], "title": "Soviet Cocktail recipe", - "url": "http://www.drinksmixer.com/drink2168.html" + "url": "https://www.drinksmixer.com/drink2168.html" }, { "directions": "Pour vodka, triple sec and lime juice over ice. Fill to top with club soda. Stir.", @@ -12174,7 +12174,7 @@ "club soda" ], "title": "Soviet Sunset recipe", - "url": "http://www.drinksmixer.com/drink2169.html" + "url": "https://www.drinksmixer.com/drink2169.html" }, { "directions": "Shake all ingredients (except lemon peel) with ice and strain into an old-fashioned glass over ice cubes. Add the twist of lemon peel and serve.", @@ -12185,7 +12185,7 @@ "lemon" ], "title": "Soviet recipe", - "url": "http://www.drinksmixer.com/drink2170.html" + "url": "https://www.drinksmixer.com/drink2170.html" }, { "directions": "Fill glass with ice and add shots of bacardi and malibu. Add splash of pineapple juice and top with orange juice. Add grenadine for color and garnish with cherries.", @@ -12197,7 +12197,7 @@ "grenadine syrup" ], "title": "Space Odyssey recipe", - "url": "http://www.drinksmixer.com/drink2171.html" + "url": "https://www.drinksmixer.com/drink2171.html" }, { "directions": "Stir the milk with the chocolate and the cinnamon over low heat until the chocolate dissolves. Add the eggs and beat the mixture until it becomes thick, taking care not to boil. Serve in coffee mug.", @@ -12208,7 +12208,7 @@ "egg" ], "title": "Spanish Chocolate recipe", - "url": "http://www.drinksmixer.com/drink2172.html" + "url": "https://www.drinksmixer.com/drink2172.html" }, { "directions": "Mix congac, kahlua, and espresso in a parfait glass and stir gently. Top with whipped cream. Serve.", @@ -12219,7 +12219,7 @@ "whipped cream" ], "title": "Spanish Coffee #2 recipe", - "url": "http://www.drinksmixer.com/drink2173.html" + "url": "https://www.drinksmixer.com/drink2173.html" }, { "directions": "Pour ingredients into an old-fashioned glass and stir. Serve cold.", @@ -12230,7 +12230,7 @@ "vanilla schnapps" ], "title": "Spanish Fly recipe", - "url": "http://www.drinksmixer.com/drink2175.html" + "url": "https://www.drinksmixer.com/drink2175.html" }, { "directions": "In a shaker half-filled with ice cubes, combine all of the ingredients. Shake well. Strain into a cocktail glass.", @@ -12240,7 +12240,7 @@ "lime juice" ], "title": "Spark In The Night recipe", - "url": "http://www.drinksmixer.com/drink2176.html" + "url": "https://www.drinksmixer.com/drink2176.html" }, { "directions": "Pour Bacardi 151 in the shot glass first, then pour Rumplminze on top, do not mix.", @@ -12249,7 +12249,7 @@ "Rumple Minze\u00ae peppermint liqueur" ], "title": "Sparkplug recipe", - "url": "http://www.drinksmixer.com/drink2177.html" + "url": "https://www.drinksmixer.com/drink2177.html" }, { "directions": "Simply add in order vodka, ice, orange juice, lemon, and vinegar. Ice can be crushed.", @@ -12261,7 +12261,7 @@ "vinegar" ], "title": "Spear Chugger recipe", - "url": "http://www.drinksmixer.com/drink2178.html" + "url": "https://www.drinksmixer.com/drink2178.html" }, { "directions": "Mix 'em, garnish with a slice of lime (optional), and serve.", @@ -12270,7 +12270,7 @@ "Mountain Dew\u00ae citrus soda" ], "title": "Spearmint Lifesaver recipe", - "url": "http://www.drinksmixer.com/drink2179.html" + "url": "https://www.drinksmixer.com/drink2179.html" }, { "directions": "Mix all ingredients in a hurricane glass. Garnish with orange slice and a cherry.", @@ -12282,7 +12282,7 @@ "grenadine syrup" ], "title": "Special K recipe", - "url": "http://www.drinksmixer.com/drink2180.html" + "url": "https://www.drinksmixer.com/drink2180.html" }, { "directions": "Stir all ingredients with ice, strain into a cocktail glass, and serve.", @@ -12292,7 +12292,7 @@ "anisette" ], "title": "Special Rough Cocktail recipe", - "url": "http://www.drinksmixer.com/drink2181.html" + "url": "https://www.drinksmixer.com/drink2181.html" }, { "directions": "In a shaker, combine tequila and Cointreau with ice. Shake well and strain into a cocktail glass. Garnish with a twist of lime.", @@ -12302,7 +12302,7 @@ "lime" ], "title": "Special Tequini recipe", - "url": "http://www.drinksmixer.com/drink2182.html" + "url": "https://www.drinksmixer.com/drink2182.html" }, { "directions": "Pour the alcoholic ingredients into a shot glass and squeeze a little amount of lime juice on top.", @@ -12313,7 +12313,7 @@ "lime juice" ], "title": "Speedball recipe", - "url": "http://www.drinksmixer.com/drink2183.html" + "url": "https://www.drinksmixer.com/drink2183.html" }, { "directions": "Pour Bailey's and Amaretto into a shot glass, swish, and throw it back.", @@ -12322,7 +12322,7 @@ "Bailey's\u00ae Irish cream" ], "title": "Speedy Gonzales recipe", - "url": "http://www.drinksmixer.com/drink2184.html" + "url": "https://www.drinksmixer.com/drink2184.html" }, { "directions": "Shake brandy, gin, orange juice, and bitters with ice and strain into a cocktail glass. Add the twist of orange peel, top with the cherry, and serve.", @@ -12335,7 +12335,7 @@ "cherry" ], "title": "Spencer Cocktail recipe", - "url": "http://www.drinksmixer.com/drink2185.html" + "url": "https://www.drinksmixer.com/drink2185.html" }, { "directions": "Fill the slammer glass with tequila and vodka and drop carefully some cream in it.", @@ -12345,7 +12345,7 @@ "cream" ], "title": "Sperm recipe", - "url": "http://www.drinksmixer.com/drink2186.html" + "url": "https://www.drinksmixer.com/drink2186.html" }, { "directions": "Stir all ingredients (except lemon slice) with ice and strain into a cocktail glass. Add the slice of lemon and serve.", @@ -12356,7 +12356,7 @@ "lemon" ], "title": "Sphinx Cocktail recipe", - "url": "http://www.drinksmixer.com/drink2187.html" + "url": "https://www.drinksmixer.com/drink2187.html" }, { "directions": "Mix all three on the rocks.", @@ -12366,7 +12366,7 @@ "Dr. Pepper\u00ae soda" ], "title": "Spice and Ice recipe", - "url": "http://www.drinksmixer.com/drink2188.html" + "url": "https://www.drinksmixer.com/drink2188.html" }, { "directions": "Mix with ice, strain, and serve in shot glass.", @@ -12376,7 +12376,7 @@ "cinnamon schnapps" ], "title": "Spice Cake recipe", - "url": "http://www.drinksmixer.com/drink2189.html" + "url": "https://www.drinksmixer.com/drink2189.html" }, { "directions": "In a shot glass pour in apple brandy first, then Goldschlager, then Captain Morgan's.", @@ -12386,7 +12386,7 @@ "Captain Morgan\u00ae Original spiced rum" ], "title": "Spiced Apple recipe", - "url": "http://www.drinksmixer.com/drink2190.html" + "url": "https://www.drinksmixer.com/drink2190.html" }, { "directions": "Boil one cup of water. Add the package of cherry jello. Stir for 2 minutes. Then pour in the cup of spiced rum. Stir until mixed. Pour into a pan and refrigerate.", @@ -12396,7 +12396,7 @@ "cherry jell-o" ], "title": "Spiced Cherry Jello recipe", - "url": "http://www.drinksmixer.com/drink2191.html" + "url": "https://www.drinksmixer.com/drink2191.html" }, { "directions": "Combine peach nectar, orange juice and brown sugar in a large saucepan. Tie cinnamon and cloves in a small cheesecloth bag. Drop into saucepan. \r", @@ -12409,7 +12409,7 @@ "lime juice" ], "title": "Spiced Peach Punch recipe", - "url": "http://www.drinksmixer.com/drink2193.html" + "url": "https://www.drinksmixer.com/drink2193.html" }, { "directions": "Add equal parts of liqeuer to hot chocolate or cocoa and top with whipped cream and shave chocolate, cinnamon or nutmeg.", @@ -12420,7 +12420,7 @@ "whipped cream" ], "title": "Spicey Scot recipe", - "url": "http://www.drinksmixer.com/drink2194.html" + "url": "https://www.drinksmixer.com/drink2194.html" }, { "directions": "Mix Hot Damn and Butterscotch Schnapps in shot glass first, then carefully add the irish cream without mixing.", @@ -12430,7 +12430,7 @@ "Bailey's\u00ae Irish cream" ], "title": "Spicy Buttery Nipple recipe", - "url": "http://www.drinksmixer.com/drink2195.html" + "url": "https://www.drinksmixer.com/drink2195.html" }, { "directions": "Shake the Gin and Vermouth with ice in a shaker. Pour into a large Martini glass. Pour the tabasco into the finished drink. Stir very lightly.", @@ -12440,7 +12440,7 @@ "Tabasco\u00ae sauce" ], "title": "Spicy Martini recipe", - "url": "http://www.drinksmixer.com/drink2196.html" + "url": "https://www.drinksmixer.com/drink2196.html" }, { "directions": "Pour in all ingredients then mix completely so that the drink turns a red color. Add more Grenadine for a sweeter, thicker taste.", @@ -12450,7 +12450,7 @@ "grenadine syrup" ], "title": "Spic recipe", - "url": "http://www.drinksmixer.com/drink2197.html" + "url": "https://www.drinksmixer.com/drink2197.html" }, { "directions": "Put alcohol in shot glass, drop strawberry into glass, then try and make cream float on top.", @@ -12460,7 +12460,7 @@ "whipped cream" ], "title": "Spider's Web recipe", - "url": "http://www.drinksmixer.com/drink2198.html" + "url": "https://www.drinksmixer.com/drink2198.html" }, { "directions": "Stir the Amaretto with the Dr. Pepper. Pour over ice cubes and add two cherries. Enjoy.", @@ -12471,7 +12471,7 @@ "ice cubes" ], "title": "The Spiff recipe", - "url": "http://www.drinksmixer.com/drink2199.html" + "url": "https://www.drinksmixer.com/drink2199.html" }, { "directions": "Add all ingredients to a highball glass with ice and stir.", @@ -12483,7 +12483,7 @@ "ice" ], "title": "Spikey Hedgehog recipe", - "url": "http://www.drinksmixer.com/drink2200.html" + "url": "https://www.drinksmixer.com/drink2200.html" }, { "directions": "Incidentally, a pinch of cinnamon is indeed a nice addition to coffee but true heaven is a cardamom seed. Of course, you serve it in a coffee mug.", @@ -12492,7 +12492,7 @@ "cinnamon" ], "title": "Spiking Coffee recipe", - "url": "http://www.drinksmixer.com/drink2201.html" + "url": "https://www.drinksmixer.com/drink2201.html" }, { "directions": "Add all ingredients in blender, blend till slushy, add sugar to taste.", @@ -12504,7 +12504,7 @@ "ice" ], "title": "Splender Blenders recipe", - "url": "http://www.drinksmixer.com/drink2202.html" + "url": "https://www.drinksmixer.com/drink2202.html" }, { "directions": "Mix all ingredients in a large glass with lots of ice and enjoy.", @@ -12514,7 +12514,7 @@ "tonic water" ], "title": "Split Beaver recipe", - "url": "http://www.drinksmixer.com/drink2203.html" + "url": "https://www.drinksmixer.com/drink2203.html" }, { "directions": "Start with glass of soda then add other ingredients and stir.", @@ -12525,7 +12525,7 @@ "vodka" ], "title": "Splurge recipe", - "url": "http://www.drinksmixer.com/drink2204.html" + "url": "https://www.drinksmixer.com/drink2204.html" }, { "directions": "Pour ingredients into a mixing tin, shake like a wild man, and strain into a martini glass.", @@ -12535,7 +12535,7 @@ "cream" ], "title": "Spooge recipe", - "url": "http://www.drinksmixer.com/drink2205.html" + "url": "https://www.drinksmixer.com/drink2205.html" }, { "directions": "First, add one part of Johnnie Walker Red. Next add one part Johnnie Walker Black, followed by another part of Absolut Citron. Finally, throw in a touch of amaretto, for flavor.", @@ -12546,7 +12546,7 @@ "amaretto almond liqueur" ], "title": "Sprawling Dubinsky recipe", - "url": "http://www.drinksmixer.com/drink2207.html" + "url": "https://www.drinksmixer.com/drink2207.html" }, { "directions": "Shake all ingredients with ice, strain into a cocktail glass, and serve.", @@ -12556,7 +12556,7 @@ "lemon juice" ], "title": "Spring Feeling Cocktail recipe", - "url": "http://www.drinksmixer.com/drink2208.html" + "url": "https://www.drinksmixer.com/drink2208.html" }, { "directions": "Layer the amarula gently onto the creme de menthe and then add a thin layer of cream.", @@ -12566,7 +12566,7 @@ "cream" ], "title": "Springbok recipe", - "url": "http://www.drinksmixer.com/drink2209.html" + "url": "https://www.drinksmixer.com/drink2209.html" }, { "directions": "Poor ingredients over lots of ice.Garnish with slice of lime.", @@ -12577,7 +12577,7 @@ "bitter lemon soda" ], "title": "Springtime recipe", - "url": "http://www.drinksmixer.com/drink2210.html" + "url": "https://www.drinksmixer.com/drink2210.html" }, { "directions": "Mix gently, and add ice cubes. Serve with a straw.", @@ -12587,7 +12587,7 @@ "Sprite\u00ae soda" ], "title": "Spring recipe", - "url": "http://www.drinksmixer.com/drink2211.html" + "url": "https://www.drinksmixer.com/drink2211.html" }, { "directions": "Add ice, then whisky, fill with soda. Stir and enjoy.", @@ -12597,7 +12597,7 @@ "ice" ], "title": "Spritsor recipe", - "url": "http://www.drinksmixer.com/drink2212.html" + "url": "https://www.drinksmixer.com/drink2212.html" }, { "directions": "Mix it together and hurl it down.", @@ -12607,7 +12607,7 @@ "beer" ], "title": "Spudgun recipe", - "url": "http://www.drinksmixer.com/drink2213.html" + "url": "https://www.drinksmixer.com/drink2213.html" }, { "directions": "Pour above ingredients into a blender with 6 ice cubes. Blend on high until the ice is crushed, and serve in a highball glass.", @@ -12617,7 +12617,7 @@ "half-and-half" ], "title": "Spunky Monkey recipe", - "url": "http://www.drinksmixer.com/drink2214.html" + "url": "https://www.drinksmixer.com/drink2214.html" }, { "directions": "Pour Midori then Advocaat in glass. Add a few dashes of grenadine and then float Bailey's on top.", @@ -12628,7 +12628,7 @@ "grenadine syrup" ], "title": "Squashed Frog recipe", - "url": "http://www.drinksmixer.com/drink2215.html" + "url": "https://www.drinksmixer.com/drink2215.html" }, { "directions": "Stir.", @@ -12638,7 +12638,7 @@ "Rose's\u00ae lime juice" ], "title": "Squirrel recipe", - "url": "http://www.drinksmixer.com/drink2216.html" + "url": "https://www.drinksmixer.com/drink2216.html" }, { "directions": "Glass: Shot\r", @@ -12649,7 +12649,7 @@ "grenadine syrup" ], "title": "Squished Smurf recipe", - "url": "http://www.drinksmixer.com/drink2217.html" + "url": "https://www.drinksmixer.com/drink2217.html" }, { "directions": "Shake all ingredients (except port) with ice and strain into a collins glass over ice cubes. Top with port, add the slice of lemon, and serve.", @@ -12662,7 +12662,7 @@ "lemon" ], "title": "St. Charles Punch recipe", - "url": "http://www.drinksmixer.com/drink2218.html" + "url": "https://www.drinksmixer.com/drink2218.html" }, { "directions": "Put the two ingredients into a shaker with cracked ice, and serve in a highball glass over whole ice cubes with a twist of lemon and a twist of orange.", @@ -12671,7 +12671,7 @@ "bitter lemon soda" ], "title": "St. Clements recipe", - "url": "http://www.drinksmixer.com/drink2219.html" + "url": "https://www.drinksmixer.com/drink2219.html" }, { "directions": "Stir all ingredients with ice, strain into a cocktail glass, and serve.", @@ -12682,7 +12682,7 @@ "bitters" ], "title": "St. Patrick's Day recipe", - "url": "http://www.drinksmixer.com/drink2220.html" + "url": "https://www.drinksmixer.com/drink2220.html" }, { "directions": "Pour vodka and bitters into mixing glass with several ice cubes. Stir until very cold and pour into a chilled old-fashioned glass. Score peel of orange wedge with tines of fork and drop into drink.", @@ -12692,7 +12692,7 @@ "orange" ], "title": "St. Petersburg recipe", - "url": "http://www.drinksmixer.com/drink2221.html" + "url": "https://www.drinksmixer.com/drink2221.html" }, { "directions": "Just pour the glass 9/10's Coca-Cola, and add 1/10 Jolt Cola, and guzzle.", @@ -12701,7 +12701,7 @@ "Jolt\u00ae cola" ], "title": "St. Squiggle's Divorce recipe", - "url": "http://www.drinksmixer.com/drink2222.html" + "url": "https://www.drinksmixer.com/drink2222.html" }, { "directions": "Chill the Rumple Minze until very cold. Then pour over the 151 in a shot glass. They will not layer, so don't try it. Then drink the shot quickly, don't waste time smelling the shot or sipping it, just drink it. Then sit back and enjoy!", @@ -12710,7 +12710,7 @@ "Rumple Minze\u00ae peppermint liqueur" ], "title": "Stabilizer recipe", - "url": "http://www.drinksmixer.com/drink2223.html" + "url": "https://www.drinksmixer.com/drink2223.html" }, { "directions": "Layer.", @@ -12720,7 +12720,7 @@ "Bailey's\u00ae Irish cream" ], "title": "Stained Blue Dress recipe", - "url": "http://www.drinksmixer.com/drink2224.html" + "url": "https://www.drinksmixer.com/drink2224.html" }, { "directions": "Pick a highball glass and add some ice. Pour 2 cl of vodka. Add 1 cl of rose's lime juice. Fill up with equal amounts of grape tonic and orange juice. Add a straw, stir and serve.", @@ -12731,7 +12731,7 @@ "orange juice" ], "title": "Stan's Surprise recipe", - "url": "http://www.drinksmixer.com/drink2225.html" + "url": "https://www.drinksmixer.com/drink2225.html" }, { "directions": "Stir and strain into a cocktail glass.", @@ -12742,7 +12742,7 @@ "half-and-half" ], "title": "Standard Cream recipe", - "url": "http://www.drinksmixer.com/drink2226.html" + "url": "https://www.drinksmixer.com/drink2226.html" }, { "directions": "Shake all ingredients with ice, strain into a cocktail glass, and serve.", @@ -12753,7 +12753,7 @@ "grenadine syrup" ], "title": "Stanley Cocktail recipe", - "url": "http://www.drinksmixer.com/drink2227.html" + "url": "https://www.drinksmixer.com/drink2227.html" }, { "directions": "In a shaker half-filled with ice cubes, combine all of the ingredients. Shake well. Strain into a cocktail glass.", @@ -12763,7 +12763,7 @@ "cranberry liqueur" ], "title": "Stanley Senior recipe", - "url": "http://www.drinksmixer.com/drink2228.html" + "url": "https://www.drinksmixer.com/drink2228.html" }, { "directions": "Take a warm beer mug w/handle. Put in the liquor. Fill with coffee. Top with whipped cream dashing a little Orange Liqueur (Grand Marnier) on top. Serve with a straw.", @@ -12776,7 +12776,7 @@ "Grand Marnier\u00ae orange liqueur" ], "title": "Stanley Steamer recipe", - "url": "http://www.drinksmixer.com/drink2229.html" + "url": "https://www.drinksmixer.com/drink2229.html" }, { "directions": "Mix equal parts of all ingredients, and serve in an old-fashioned glass with/without ice.", @@ -12787,7 +12787,7 @@ "Sprite\u00ae soda" ], "title": "Star Wars recipe", - "url": "http://www.drinksmixer.com/drink2230.html" + "url": "https://www.drinksmixer.com/drink2230.html" }, { "directions": "Fill shaker cup with ice. Pour in all ingredients. Shake and strain into shooter glass of preference.", @@ -12800,7 +12800,7 @@ "grenadine syrup" ], "title": "Stardust recipe", - "url": "http://www.drinksmixer.com/drink2231.html" + "url": "https://www.drinksmixer.com/drink2231.html" }, { "directions": "Get a large glass, (any glass but it must be large) Start from the top of the list and work your way down stirring each time you add an ingredient. Serve.", @@ -12811,7 +12811,7 @@ "rum" ], "title": "Starla's Waver recipe", - "url": "http://www.drinksmixer.com/drink2232.html" + "url": "https://www.drinksmixer.com/drink2232.html" }, { "directions": "Pour all of the ingredients into a highball glass almost filled with ice cubes. Stir well and garnish with the lemon wedge.", @@ -12822,7 +12822,7 @@ "tonic water" ], "title": "Starseeker recipe", - "url": "http://www.drinksmixer.com/drink2233.html" + "url": "https://www.drinksmixer.com/drink2233.html" }, { "directions": "Mix everything in a container (bottle, glass etc.), then it is ready for consumption.", @@ -12833,7 +12833,7 @@ "Bacardi\u00ae dark rum" ], "title": "Start Me Up recipe", - "url": "http://www.drinksmixer.com/drink2234.html" + "url": "https://www.drinksmixer.com/drink2234.html" }, { "directions": "Mix everything together and add some crunched ice and olives!", @@ -12845,7 +12845,7 @@ "tonic water" ], "title": "Status Quo recipe", - "url": "http://www.drinksmixer.com/drink2235.html" + "url": "https://www.drinksmixer.com/drink2235.html" }, { "directions": "Mix all ingredients, strain into glass, and enjoy!", @@ -12856,7 +12856,7 @@ "ice cubes" ], "title": "Steamboat recipe", - "url": "http://www.drinksmixer.com/drink2236.html" + "url": "https://www.drinksmixer.com/drink2236.html" }, { "directions": "Shake ingredients over ice. Strain into shot glasses.", @@ -12868,7 +12868,7 @@ "orange juice" ], "title": "Stevie Ray Vaughn recipe", - "url": "http://www.drinksmixer.com/drink2237.html" + "url": "https://www.drinksmixer.com/drink2237.html" }, { "directions": "Pour in the order given and enjoy.", @@ -12879,7 +12879,7 @@ "Galliano\u00ae herbal liqueur" ], "title": "Stevie Wonder recipe", - "url": "http://www.drinksmixer.com/drink2238.html" + "url": "https://www.drinksmixer.com/drink2238.html" }, { "directions": "Take a 12 oz bottle of beer and drink the neck of the bottle. Pour 1 or more shots of J\ufffdgermeister into the neck. Swish it around a little bit and presto, instant drunk.", @@ -12888,7 +12888,7 @@ "beer" ], "title": "Stiff Pounder recipe", - "url": "http://www.drinksmixer.com/drink2239.html" + "url": "https://www.drinksmixer.com/drink2239.html" }, { "directions": "Add 1/2 oz dry vermouth in a chilled cocktail glass, and roll the vermouth around the glass and throw away the excess. In a mixing glass with ice, pour crown royal, amaretto, and orange bitters and stir. Strain into cocktail glass, and garnish with orange peel and maraschino cherry.", @@ -12901,7 +12901,7 @@ "orange" ], "title": "Stiletto Manhattan recipe", - "url": "http://www.drinksmixer.com/drink2240.html" + "url": "https://www.drinksmixer.com/drink2240.html" }, { "directions": "Pour all ingredients into an old-fashioned glass over ice cubes, stir, and serve. (Bourbon may be substituted for blended whiskey, if preferred.)", @@ -12911,7 +12911,7 @@ "lemons" ], "title": "Stiletto recipe", - "url": "http://www.drinksmixer.com/drink2241.html" + "url": "https://www.drinksmixer.com/drink2241.html" }, { "directions": "Shake with ice, strain, serve in cocktail glass.", @@ -12921,7 +12921,7 @@ "vodka" ], "title": "Stinger #2 recipe", - "url": "http://www.drinksmixer.com/drink2242.html" + "url": "https://www.drinksmixer.com/drink2242.html" }, { "directions": "Tabasco in the bottom of the shot. Pour Vodka and Cr\ufffdme de M\ufffdnthe gently on top. Shoot!", @@ -12931,7 +12931,7 @@ "Tabasco\u00ae sauce" ], "title": "Stinger Shot recipe", - "url": "http://www.drinksmixer.com/drink2243.html" + "url": "https://www.drinksmixer.com/drink2243.html" }, { "directions": "Shake ingredients with ice, strain into a cocktail glass, and serve.", @@ -12940,7 +12940,7 @@ "white creme de menthe" ], "title": "Stinger recipe", - "url": "http://www.drinksmixer.com/drink2244.html" + "url": "https://www.drinksmixer.com/drink2244.html" }, { "directions": "Put Tequila into shot glass. Add 151 rum and Lemon Juice. Add sugar and stir slightly.", @@ -12951,7 +12951,7 @@ "sugar" ], "title": "Stinky Weasel recipe", - "url": "http://www.drinksmixer.com/drink2245.html" + "url": "https://www.drinksmixer.com/drink2245.html" }, { "directions": "Shake all ingredients with ice, strain into an old-fashioned glass over ice cubes, and serve.", @@ -12962,7 +12962,7 @@ "sugar" ], "title": "Stirrup Cup recipe", - "url": "http://www.drinksmixer.com/drink2246.html" + "url": "https://www.drinksmixer.com/drink2246.html" }, { "directions": "Ice first, next is the liquor and then the pop.", @@ -12976,7 +12976,7 @@ "ice cubes" ], "title": "Stock Market Crash recipe", - "url": "http://www.drinksmixer.com/drink2247.html" + "url": "https://www.drinksmixer.com/drink2247.html" }, { "directions": "In a shaker half-filled with ice cubes, combine the vodka, sugar, and lemon juice. Shake well. Pour into a cocktail glass. Top with Champagne and garnish with an organce twist.", @@ -12988,7 +12988,7 @@ "orange" ], "title": "Stockholm 75 recipe", - "url": "http://www.drinksmixer.com/drink2248.html" + "url": "https://www.drinksmixer.com/drink2248.html" }, { "directions": "Build in a pint glass (preferably), shake and serve with a lemon wedge. Or you can mix in tin and serve over ice.", @@ -13002,7 +13002,7 @@ "grenadine syrup" ], "title": "Stoli Around the World recipe", - "url": "http://www.drinksmixer.com/drink2249.html" + "url": "https://www.drinksmixer.com/drink2249.html" }, { "directions": "Pour all ingredients together in an ice filled glass. Shake and pour back into glass.", @@ -13018,7 +13018,7 @@ "ice cubes" ], "title": "Stoli Fruit Cocktail recipe", - "url": "http://www.drinksmixer.com/drink2250.html" + "url": "https://www.drinksmixer.com/drink2250.html" }, { "directions": "Stir all ingredients with ice, strain into a cocktail glass, and serve.", @@ -13028,7 +13028,7 @@ "light rum" ], "title": "Stone Cocktail recipe", - "url": "http://www.drinksmixer.com/drink2251.html" + "url": "https://www.drinksmixer.com/drink2251.html" }, { "directions": "Fill a highball glass with ice cubes. Add scotch and bitters and fill with carbonated water. Stir and serve.", @@ -13038,7 +13038,7 @@ "bitters" ], "title": "Stone Fence recipe", - "url": "http://www.drinksmixer.com/drink2252.html" + "url": "https://www.drinksmixer.com/drink2252.html" }, { "directions": "Shake all ingredients with ice, strain into a chilled whiskey sour glass, and serve.", @@ -13048,7 +13048,7 @@ "sweet and sour mix" ], "title": "Stone Sour recipe", - "url": "http://www.drinksmixer.com/drink2253.html" + "url": "https://www.drinksmixer.com/drink2253.html" }, { "directions": "Fill highball glass with ice. Pour in jagermeister and pear liqueur. Top with lemon mix and \"Battery\" energy drink. Garnish with a lemon slice.", @@ -13059,7 +13059,7 @@ "Battery\u00ae energy drink" ], "title": "Stoned recipe", - "url": "http://www.drinksmixer.com/drink2254.html" + "url": "https://www.drinksmixer.com/drink2254.html" }, { "directions": "Shake Malibu Rum and Aliz\ufffd on ice. Strain into glass. Stir in J\ufffdgermeister.", @@ -13069,7 +13069,7 @@ "Jagermeister\u00ae herbal liqueur" ], "title": "Stoner On Acid recipe", - "url": "http://www.drinksmixer.com/drink2255.html" + "url": "https://www.drinksmixer.com/drink2255.html" }, { "directions": "Line up three shot glasses. Pour 1 shot of vodka into each glass. Add a splash of midori to one, a splash of orange juice to another and a splash of cranberry juice to the third. Drink them down Red, Yellow, Green. It's a stop light!", @@ -13080,7 +13080,7 @@ "cranberry juice" ], "title": "Stop Light recipe", - "url": "http://www.drinksmixer.com/drink2256.html" + "url": "https://www.drinksmixer.com/drink2256.html" }, { "directions": "Mix ingredients together.", @@ -13090,7 +13090,7 @@ "milk" ], "title": "Storm Trooper recipe", - "url": "http://www.drinksmixer.com/drink2257.html" + "url": "https://www.drinksmixer.com/drink2257.html" }, { "directions": "Build in shot glass. Float Bailey's in amaretto and top with 151. The Bailey's should float in the middle.", @@ -13100,7 +13100,7 @@ "Bailey's\u00ae Irish cream" ], "title": "Stormcloud recipe", - "url": "http://www.drinksmixer.com/drink2258.html" + "url": "https://www.drinksmixer.com/drink2258.html" }, { "directions": "Add whisky and vodka to glass of ice. Stir in maple syrup. Wait 2 minutes and enjoy.", @@ -13110,7 +13110,7 @@ "maple syrup" ], "title": "STP recipe", - "url": "http://www.drinksmixer.com/drink2259.html" + "url": "https://www.drinksmixer.com/drink2259.html" }, { "directions": "Add Aftershock then Passoa. Fill with orange juice and ice to taste.", @@ -13121,7 +13121,7 @@ "ice cubes" ], "title": "Straight Jacket recipe", - "url": "http://www.drinksmixer.com/drink2260.html" + "url": "https://www.drinksmixer.com/drink2260.html" }, { "directions": "Stir ingredients with ice, strain into a cocktail glass, and serve.", @@ -13130,7 +13130,7 @@ "gin" ], "title": "Straight Law Cocktail recipe", - "url": "http://www.drinksmixer.com/drink2261.html" + "url": "https://www.drinksmixer.com/drink2261.html" }, { "directions": "In a mixing glass half-filled with ice cubes, combine the rum, vermouth, Calvados, and cherry brandy. Stir well. Strain into a cocktail glass and garnish with the cherry.", @@ -13142,7 +13142,7 @@ "maraschino cherry" ], "title": "Stranger-In-Town recipe", - "url": "http://www.drinksmixer.com/drink2262.html" + "url": "https://www.drinksmixer.com/drink2262.html" }, { "directions": "Place schnapps, half-and-half, sugar, and 2 cups of crushed ice in an electric blender and blend at a high speed. Add 2 of the strawberries and blend for 10 seconds. Pour into a parfait glass, top with the other strawberry, and serve with a straw.", @@ -13153,7 +13153,7 @@ "strawberries" ], "title": "Strawberries And Cream recipe", - "url": "http://www.drinksmixer.com/drink2263.html" + "url": "https://www.drinksmixer.com/drink2263.html" }, { "directions": "Combine all ingredients in a highball glass. Shake well. Garnish with a flag (orange and cherry).", @@ -13165,7 +13165,7 @@ "ice cubes" ], "title": "Strawberry Banana Colada recipe", - "url": "http://www.drinksmixer.com/drink2264.html" + "url": "https://www.drinksmixer.com/drink2264.html" }, { "directions": "Stir gently with a swizzle stick before serving.", @@ -13176,7 +13176,7 @@ "cream" ], "title": "Strawberry Blonde recipe", - "url": "http://www.drinksmixer.com/drink2265.html" + "url": "https://www.drinksmixer.com/drink2265.html" }, { "directions": "Sprinkle strawberries with sugar, add one bottle cider. Chill for several hours. To serve, pour into large bowl with ice, add the rest of the wine. Serve in small wine glasses.", @@ -13187,7 +13187,7 @@ "sugar" ], "title": "Strawberry Bolle recipe", - "url": "http://www.drinksmixer.com/drink2266.html" + "url": "https://www.drinksmixer.com/drink2266.html" }, { "directions": "Pour ingredients into shot glass and slam. Enjoy!", @@ -13196,7 +13196,7 @@ "Everclear\u00ae alcohol" ], "title": "Strawberry Bomb recipe", - "url": "http://www.drinksmixer.com/drink2267.html" + "url": "https://www.drinksmixer.com/drink2267.html" }, { "directions": "Add ingredients with a bit of ice in a blender. Blend and then strain into a cocktail glass. Garnish w/ strawberry.\n\n", @@ -13208,7 +13208,7 @@ "strawberries" ], "title": "Strawberry Daiquiri recipe", - "url": "http://www.drinksmixer.com/drink2268.html" + "url": "https://www.drinksmixer.com/drink2268.html" }, { "directions": "Blend all ingredients (except mint sprig) with 1 cup of crushed ice in an electric blender at a high speed. Pour into a cocktail glass, add the sprig of mint, and serve.", @@ -13219,7 +13219,7 @@ "mint" ], "title": "Strawberry Dawn recipe", - "url": "http://www.drinksmixer.com/drink2269.html" + "url": "https://www.drinksmixer.com/drink2269.html" }, { "directions": "Shake vodka and amaretto. Fill with 7-Up.", @@ -13230,7 +13230,7 @@ "ice cubes" ], "title": "Strawberry Dream #2 recipe", - "url": "http://www.drinksmixer.com/drink2270.html" + "url": "https://www.drinksmixer.com/drink2270.html" }, { "directions": "Add all ingredients to a blender. Blend for 1 minute or until drink is smooth. Pour into glass and serve immediately.", @@ -13244,7 +13244,7 @@ "vanilla ice cream" ], "title": "Strawberry Dream recipe", - "url": "http://www.drinksmixer.com/drink2271.html" + "url": "https://www.drinksmixer.com/drink2271.html" }, { "directions": "Pour brandy and schnapps over ice in a highball glass. Fill with carbonated water and stir. Garnish with a strawberry and serve.", @@ -13255,7 +13255,7 @@ "strawberries" ], "title": "Strawberry Fields Forever recipe", - "url": "http://www.drinksmixer.com/drink2272.html" + "url": "https://www.drinksmixer.com/drink2272.html" }, { "directions": "Blend strawberries into 4 oz puree, add 2 oz of rum (and some sugar if you want to) and blend for a couple of second. Pour into sugar rimmed glass. Mix the orange juice and 1 oz of rum, and gently layer on top in glass.", @@ -13266,7 +13266,7 @@ "sugar" ], "title": "Strawberry Fields recipe", - "url": "http://www.drinksmixer.com/drink2273.html" + "url": "https://www.drinksmixer.com/drink2273.html" }, { "directions": "Mix strawberries and sugar in a bowl and let stand for 5-10 minutes. Stir occasionally. Divide into two white wine glasses, add champagne and creme de cassis.", @@ -13277,7 +13277,7 @@ "creme de cassis" ], "title": "Strawberry Kir Royale recipe", - "url": "http://www.drinksmixer.com/drink2274.html" + "url": "https://www.drinksmixer.com/drink2274.html" }, { "directions": "Throw everything into a blender and mix until fairly smooth. Serve over ice.", @@ -13288,7 +13288,7 @@ "water" ], "title": "Strawberry Lemonade recipe", - "url": "http://www.drinksmixer.com/drink2276.html" + "url": "https://www.drinksmixer.com/drink2276.html" }, { "directions": "Rub rim of cocktail glass with lemon juice and dip rim in salt. Shake schnapps, tequila, triple sec, lemon juice, and strawberries with ice, strain into the salt-rimmed glass, and serve.", @@ -13301,7 +13301,7 @@ "salt" ], "title": "Strawberry Margarita recipe", - "url": "http://www.drinksmixer.com/drink2277.html" + "url": "https://www.drinksmixer.com/drink2277.html" }, { "directions": "Rub rim of chilled martini glass with a cut strawberry. Dip rim into a bowl of sugar until evenly coated. Pour Gin/Vodka, vermouth, and grenadine into a mixing glass with plenty of ice, and stir briskly. Strain into martini glass and drop in a strawberry.", @@ -13313,7 +13313,7 @@ "strawberries" ], "title": "Strawberry Martini recipe", - "url": "http://www.drinksmixer.com/drink2278.html" + "url": "https://www.drinksmixer.com/drink2278.html" }, { "directions": "Stir with ice and strain into a cocktail glass.", @@ -13324,7 +13324,7 @@ "Deva\u00ae absinthe" ], "title": "TNT Cocktail recipe", - "url": "http://www.drinksmixer.com/drink2279.html" + "url": "https://www.drinksmixer.com/drink2279.html" }, { "directions": "Layer in a shot glass.", @@ -13334,7 +13334,7 @@ "Grand Marnier\u00ae orange liqueur" ], "title": "T-52 recipe", - "url": "http://www.drinksmixer.com/drink2280.html" + "url": "https://www.drinksmixer.com/drink2280.html" }, { "directions": "Pour in Hot Damn, then add grape soda and then top off with cherry juice. Garnish with a cherry if you can avoid choking on it.", @@ -13344,7 +13344,7 @@ "cherry juice" ], "title": "Cough Syrup #2 recipe", - "url": "http://www.drinksmixer.com/drink2281.html" + "url": "https://www.drinksmixer.com/drink2281.html" }, { "directions": "Pour the 151 rum in a shot glass and splash a little A-1 sauce on top. Really easy to make but not so easy to go down.", @@ -13353,7 +13353,7 @@ "A1\u00ae steak sauce" ], "title": "T-Bone recipe", - "url": "http://www.drinksmixer.com/drink2282.html" + "url": "https://www.drinksmixer.com/drink2282.html" }, { "directions": "Just pour off the amount into a shot glass. Shoot and enjoy!", @@ -13363,7 +13363,7 @@ "Kahlua\u00ae coffee liqueur" ], "title": "T.K.O. recipe", - "url": "http://www.drinksmixer.com/drink2283.html" + "url": "https://www.drinksmixer.com/drink2283.html" }, { "directions": "Pour ingredients into an old-fashioned glass over ice cubes. Stir well and serve.", @@ -13372,7 +13372,7 @@ "tonic water" ], "title": "TNT #2 recipe", - "url": "http://www.drinksmixer.com/drink2284.html" + "url": "https://www.drinksmixer.com/drink2284.html" }, { "directions": "Mix all the ingredients in a shot glass.", @@ -13382,7 +13382,7 @@ "peppers" ], "title": "T2 recipe", - "url": "http://www.drinksmixer.com/drink2285.html" + "url": "https://www.drinksmixer.com/drink2285.html" }, { "directions": "Stir over ice. Either strain in a cocktail glass or on the rocks in a highball glass. Serve with curl of lemon peel.", @@ -13392,7 +13392,7 @@ "lemon juice" ], "title": "Tachyon recipe", - "url": "http://www.drinksmixer.com/drink2286.html" + "url": "https://www.drinksmixer.com/drink2286.html" }, { "directions": "Put ingredients in jar (make sure it's a quart one!), espresso first, then schnapps, finally Dr. Pepper. Swirl, smell, enjoy!", @@ -13402,7 +13402,7 @@ "Dr. Pepper\u00ae soda" ], "title": "Taco-Mancer recipe", - "url": "http://www.drinksmixer.com/drink2287.html" + "url": "https://www.drinksmixer.com/drink2287.html" }, { "directions": "Fill a cocktail shaker with ice. Add 1/2 oz of each liquor. Fill with 3 oz of each juice. Shake. Serve in a collins glass. Garnish with fruit slices (if you have the patience).", @@ -13416,7 +13416,7 @@ "ice cubes" ], "title": "Tahitian Tea recipe", - "url": "http://www.drinksmixer.com/drink2288.html" + "url": "https://www.drinksmixer.com/drink2288.html" }, { "directions": "Fill highball glass with ice. Add liquor, juice, and then sprite.", @@ -13428,7 +13428,7 @@ "ice cubes" ], "title": "Tahitian Treat recipe", - "url": "http://www.drinksmixer.com/drink2289.html" + "url": "https://www.drinksmixer.com/drink2289.html" }, { "directions": "Stir all ingredients (except cherry) with ice and strain into a cocktail glass. Top with the cherry and serve. (An olive may be substituted for the cherry, if preferred.)", @@ -13441,7 +13441,7 @@ "cherry" ], "title": "Tailspin Cocktail recipe", - "url": "http://www.drinksmixer.com/drink2290.html" + "url": "https://www.drinksmixer.com/drink2290.html" }, { "directions": "Fill shot glasses half full with Aftershock. Tip glass to the side and slowly pour chocolate liqueur down the side. This is a layered shot.", @@ -13450,7 +13450,7 @@ "chocolate liqueur" ], "title": "Tainted Heart recipe", - "url": "http://www.drinksmixer.com/drink2291.html" + "url": "https://www.drinksmixer.com/drink2291.html" }, { "directions": "Add godiva and bailey's to a blender. Add ice to desired thickness. Blend well, pour into champagne saucer(s), and serve.", @@ -13459,7 +13459,7 @@ "Bailey's\u00ae Irish cream" ], "title": "Talbot's Dream recipe", - "url": "http://www.drinksmixer.com/drink2292.html" + "url": "https://www.drinksmixer.com/drink2292.html" }, { "directions": "Add your GM and then add your coffee.", @@ -13468,7 +13468,7 @@ "coffee" ], "title": "Talos Coffee recipe", - "url": "http://www.drinksmixer.com/drink2293.html" + "url": "https://www.drinksmixer.com/drink2293.html" }, { "directions": "Pour into glass and fill with tonic wafer. Garnish with an orange slice or peel.", @@ -13479,7 +13479,7 @@ "tonic water" ], "title": "Tampico recipe", - "url": "http://www.drinksmixer.com/drink2294.html" + "url": "https://www.drinksmixer.com/drink2294.html" }, { "directions": "Layer the vodka and cherry liquer then put whip cream on top and a cherry on that when taking the shot engulf the whole thing and after you swallow pull the stem of the cherry out.", @@ -13490,7 +13490,7 @@ "cherry" ], "title": "Tampon String recipe", - "url": "http://www.drinksmixer.com/drink2295.html" + "url": "https://www.drinksmixer.com/drink2295.html" }, { "directions": "Mix vodka with alize and tang. Stir, serve with shaved ice, and serve.", @@ -13500,7 +13500,7 @@ "Alize\u00ae liqueur" ], "title": "Tangaze recipe", - "url": "http://www.drinksmixer.com/drink2296.html" + "url": "https://www.drinksmixer.com/drink2296.html" }, { "directions": "In blender add Orange Tang Mix, Absolut Vodka, and ice. Blend until smooth.", @@ -13510,7 +13510,7 @@ "ice" ], "title": "Tanga recipe", - "url": "http://www.drinksmixer.com/drink2297.html" + "url": "https://www.drinksmixer.com/drink2297.html" }, { "directions": "Shake and strain into a chilled martini glass. Decorate with coffee beans and hearts cut from the rind of a tangerine.", @@ -13521,7 +13521,7 @@ "ice cubes" ], "title": "Tangerine Dream recipe", - "url": "http://www.drinksmixer.com/drink2298.html" + "url": "https://www.drinksmixer.com/drink2298.html" }, { "directions": "Shake all ingredients with ice, strain into a cocktail glass, and serve.", @@ -13533,7 +13533,7 @@ "orange juice" ], "title": "Tango Cocktail recipe", - "url": "http://www.drinksmixer.com/drink2299.html" + "url": "https://www.drinksmixer.com/drink2299.html" }, { "directions": "Fill a highball glass with ice. Add Tanqueray London Dry, lime juice and tonic water.", @@ -13543,7 +13543,7 @@ "lime juice" ], "title": "Tanqueray and Tonic recipe", - "url": "http://www.drinksmixer.com/drink2300.html" + "url": "https://www.drinksmixer.com/drink2300.html" }, { "directions": "Shake all ingredients with ice.", @@ -13557,7 +13557,7 @@ "milk" ], "title": "Tanyahtoo recipe", - "url": "http://www.drinksmixer.com/drink2301.html" + "url": "https://www.drinksmixer.com/drink2301.html" }, { "directions": "Fill the hurricane glass with ice. Pour the Hennessy, Red Alize, and Yellow Alize. Splash in some Cranberry Juice and top it off with soda. For garnish you can add a slice of pineapple and cherries.", @@ -13569,7 +13569,7 @@ "soda water" ], "title": "Tap That Ass recipe", - "url": "http://www.drinksmixer.com/drink2302.html" + "url": "https://www.drinksmixer.com/drink2302.html" }, { "directions": "In a shaker half-filled with ice cubes, combine lime juice, sugar, Scotch, and bitters. Shake well. Almost fill a collins glass with crushed ice. Stir until glass is frosted. Strain mixture in shaker into the glass and add the club soda.", @@ -13582,7 +13582,7 @@ "club soda" ], "title": "Tartan Swizzle recipe", - "url": "http://www.drinksmixer.com/drink2303.html" + "url": "https://www.drinksmixer.com/drink2303.html" }, { "directions": "In a mixing glass half-filled with ice cubes, combine the Scotch, vermouth, and Benedictine. Stir well. Strain into a cocktail glass. Garnish with the lemon twist.", @@ -13593,7 +13593,7 @@ "lemon" ], "title": "Tartantula recipe", - "url": "http://www.drinksmixer.com/drink2304.html" + "url": "https://www.drinksmixer.com/drink2304.html" }, { "directions": "Build in in the glass. Plenty of ice cubes", @@ -13604,7 +13604,7 @@ "Schweppes\u00ae Russian tonic water" ], "title": "Taste of Winter recipe", - "url": "http://www.drinksmixer.com/drink2305.html" + "url": "https://www.drinksmixer.com/drink2305.html" }, { "directions": "Fill glass w/ ice, add all liquers, top off w/cream and shake well.", @@ -13615,7 +13615,7 @@ "half-and-half" ], "title": "Tattooed Love Goddess recipe", - "url": "http://www.drinksmixer.com/drink2306.html" + "url": "https://www.drinksmixer.com/drink2306.html" }, { "directions": "Pour sprite over ice, add schnapps and stir.", @@ -13624,7 +13624,7 @@ "Sprite\u00ae soda" ], "title": "Tattooed Smurf recipe", - "url": "http://www.drinksmixer.com/drink2307.html" + "url": "https://www.drinksmixer.com/drink2307.html" }, { "directions": "Combine and serve with ice.", @@ -13634,7 +13634,7 @@ "pineapple juice" ], "title": "Tea Punch recipe", - "url": "http://www.drinksmixer.com/drink2308.html" + "url": "https://www.drinksmixer.com/drink2308.html" }, { "directions": "Make tea as you usually do. Mix it with the sugar according to taste. Leave room in the cup for a dash of Baileys. Pour the baileys in according to taste, then, if you want, a dash of Whiskey if you want. Not too much though, as the drink won't taste good.", @@ -13645,7 +13645,7 @@ "Scotch whisky" ], "title": "Tea Toddy recipe", - "url": "http://www.drinksmixer.com/drink2309.html" + "url": "https://www.drinksmixer.com/drink2309.html" }, { "directions": "Pour in the 6 oz. of triple sec to the sweet tea and add the juice of 2 lemon wedges to it. Leave lemon wedges in drink then add 5 ice cubes. Stir gently.", @@ -13656,7 +13656,7 @@ "lemons" ], "title": "Tea-riffic recipe", - "url": "http://www.drinksmixer.com/drink2310.html" + "url": "https://www.drinksmixer.com/drink2310.html" }, { "directions": "Combine all ingredients in blender. Blend well. Serve in highball glass. Garnish with pineapple.", @@ -13667,7 +13667,7 @@ "pineapples" ], "title": "Teal Squeal recipe", - "url": "http://www.drinksmixer.com/drink2311.html" + "url": "https://www.drinksmixer.com/drink2311.html" }, { "directions": "In a shaker with ice, combine rum and vodka. Shake well and strain into a highball glass filled almost to the top with ice. Top off with ginger ale and stir gently.", @@ -13677,7 +13677,7 @@ "ginger ale" ], "title": "Telegraph recipe", - "url": "http://www.drinksmixer.com/drink2312.html" + "url": "https://www.drinksmixer.com/drink2312.html" }, { "directions": "Shake blended whiskey, Dubonnet, triple sec, and anis with ice and strain into a cocktail glass. Add the twists of orange and lemon peel and serve.", @@ -13690,7 +13690,7 @@ "lemon" ], "title": "Temptation Cocktail recipe", - "url": "http://www.drinksmixer.com/drink2313.html" + "url": "https://www.drinksmixer.com/drink2313.html" }, { "directions": "Stir ingredients with ice, strain into a cocktail glass, and serve.", @@ -13699,7 +13699,7 @@ "port" ], "title": "Tempter Cocktail recipe", - "url": "http://www.drinksmixer.com/drink2314.html" + "url": "https://www.drinksmixer.com/drink2314.html" }, { "directions": "Toss some ice cubes into a glass. Pour in a shot of grenadine and a shot of vodka. Fill with gingerale or Sprite and enjoy.", @@ -13710,7 +13710,7 @@ "ice cubes" ], "title": "Temptress recipe", - "url": "http://www.drinksmixer.com/drink2315.html" + "url": "https://www.drinksmixer.com/drink2315.html" }, { "directions": "In an old-fashioned glass almost filled with ice cubes, combine the gin, triple sec, and bitters. Stir well. Pour the Curacao into the center of the drink.", @@ -13721,7 +13721,7 @@ "Blue Curacao liqueur" ], "title": "Ten Quidder recipe", - "url": "http://www.drinksmixer.com/drink2316.html" + "url": "https://www.drinksmixer.com/drink2316.html" }, { "directions": "Mix coffee, jack daniels and Amaretto. Add Cream on top.", @@ -13732,7 +13732,7 @@ "whipped cream" ], "title": "Tennesee Mud recipe", - "url": "http://www.drinksmixer.com/drink2317.html" + "url": "https://www.drinksmixer.com/drink2317.html" }, { "directions": "Combine all ingredients and poor over ice in a mason jar.", @@ -13743,7 +13743,7 @@ "cola" ], "title": "Tennessee Tea recipe", - "url": "http://www.drinksmixer.com/drink2318.html" + "url": "https://www.drinksmixer.com/drink2318.html" }, { "directions": "Put salt between thumb and index finger on back of left hand. Hold shot glass of tequila in salted hand and lemon wedge in the other. Lick salt, slam the tequila, then suck lemon.", @@ -13753,7 +13753,7 @@ "tequila" ], "title": "Tequila (Straight) recipe", - "url": "http://www.drinksmixer.com/drink2319.html" + "url": "https://www.drinksmixer.com/drink2319.html" }, { "directions": "Pour 2 1/2 ounces Cuervo Gold Tequila over ice cubes in a highball glass. Fill with tonic. Garnish with lime wedge.", @@ -13764,7 +13764,7 @@ "lime" ], "title": "Tequila and Tonic recipe", - "url": "http://www.drinksmixer.com/drink2320.html" + "url": "https://www.drinksmixer.com/drink2320.html" }, { "directions": "Blend.", @@ -13778,7 +13778,7 @@ "ice cubes" ], "title": "Tequila Bay Breeze recipe", - "url": "http://www.drinksmixer.com/drink2321.html" + "url": "https://www.drinksmixer.com/drink2321.html" }, { "directions": "Put salt on some part of somebody else's body. Hold shot glass in left hand and lemon in right hand. Lick salt, slam the tequila, then suck lemon.", @@ -13788,7 +13788,7 @@ "lemon" ], "title": "Tequila Body Slammer recipe", - "url": "http://www.drinksmixer.com/drink2322.html" + "url": "https://www.drinksmixer.com/drink2322.html" }, { "directions": "Place a coaster on top, pound on table twice, guzzle it!", @@ -13797,7 +13797,7 @@ "ginger ale" ], "title": "Tequila Bom-Bom recipe", - "url": "http://www.drinksmixer.com/drink2323.html" + "url": "https://www.drinksmixer.com/drink2323.html" }, { "directions": "Throw everything in a glass. Put a towel over the glass slam it on the bar. Before the foam hits the edge off the glass you must have finished it .", @@ -13807,7 +13807,7 @@ "tonic water" ], "title": "Tequila BoomBoom recipe", - "url": "http://www.drinksmixer.com/drink2324.html" + "url": "https://www.drinksmixer.com/drink2324.html" }, { "directions": "Pour first 3 ingredients over ice into collins glass and stir gently. Top with pineapple and orange juices. Garnish with a lime wheel. Serve with a straw.", @@ -13819,7 +13819,7 @@ "orange juice" ], "title": "Tequila Canyon recipe", - "url": "http://www.drinksmixer.com/drink2325.html" + "url": "https://www.drinksmixer.com/drink2325.html" }, { "directions": "Shake all ingredients (except lemon slice) with ice and strain into a cocktail glass. Add the slice of lemon and serve.", @@ -13831,7 +13831,7 @@ "lemon" ], "title": "Tequila Cocktail recipe", - "url": "http://www.drinksmixer.com/drink2326.html" + "url": "https://www.drinksmixer.com/drink2326.html" }, { "directions": "Pour lemon juice into glass. Add ice cubes. Add salt. Pour tequila and stir to blend. Fill with coke, and serve.", @@ -13842,7 +13842,7 @@ "salt" ], "title": "Tequila Colagallo recipe", - "url": "http://www.drinksmixer.com/drink2327.html" + "url": "https://www.drinksmixer.com/drink2327.html" }, { "directions": "Shake with ice and strain into collins glass. Add several ice cubes, fill with club soda and stir. Decorate with slices of lemon and orange, and a cherry. Serve with a straw.", @@ -13853,7 +13853,7 @@ "club soda" ], "title": "Tequila Collins recipe", - "url": "http://www.drinksmixer.com/drink2328.html" + "url": "https://www.drinksmixer.com/drink2328.html" }, { "directions": "Add ingredients.", @@ -13862,7 +13862,7 @@ "Southern Comfort\u00ae peach liqueur" ], "title": "Tequila Comfort recipe", - "url": "http://www.drinksmixer.com/drink2329.html" + "url": "https://www.drinksmixer.com/drink2329.html" }, { "directions": "Shake all ingredients (except ginger ale) with ice and strain into a collins glass over ice cubes. Fill with ginger ale, stir, and serve.", @@ -13874,7 +13874,7 @@ "ginger ale" ], "title": "Tequila Fizz recipe", - "url": "http://www.drinksmixer.com/drink2330.html" + "url": "https://www.drinksmixer.com/drink2330.html" }, { "directions": "Shake well with ice in a shaker and strain into a chilled cocktail glass.", @@ -13884,7 +13884,7 @@ "white tequila" ], "title": "Tequila Gimlet recipe", - "url": "http://www.drinksmixer.com/drink2331.html" + "url": "https://www.drinksmixer.com/drink2331.html" }, { "directions": "Shake tequila, vermouth, and lime juice with ice and strain into an old-fashioned glass over ice cubes. Add the slice of orange, top with the cherry, and serve.", @@ -13896,7 +13896,7 @@ "cherry" ], "title": "Tequila Manhattan recipe", - "url": "http://www.drinksmixer.com/drink2332.html" + "url": "https://www.drinksmixer.com/drink2332.html" }, { "directions": "Shake all ingredients with ice, strain into a champagne flute, and serve.", @@ -13906,7 +13906,7 @@ "limes" ], "title": "Tequila Matador recipe", - "url": "http://www.drinksmixer.com/drink2333.html" + "url": "https://www.drinksmixer.com/drink2333.html" }, { "directions": "Shake ingredients with ice and strain into cocktail glass.", @@ -13916,7 +13916,7 @@ "limes" ], "title": "Tequila Mockingbird recipe", - "url": "http://www.drinksmixer.com/drink2334.html" + "url": "https://www.drinksmixer.com/drink2334.html" }, { "directions": "Mix sugar, bitters, and 1 tsp. water in an old-fashioned glass. Add tequila, ice cubes, and carbonated water. Add the stick of pineapple and serve.", @@ -13928,7 +13928,7 @@ "pineapple" ], "title": "Tequila Old-Fashioned recipe", - "url": "http://www.drinksmixer.com/drink2335.html" + "url": "https://www.drinksmixer.com/drink2335.html" }, { "directions": "Shake ingredients with ice and strain into cocktail glass.", @@ -13938,7 +13938,7 @@ "grenadine syrup" ], "title": "Tequila Pink recipe", - "url": "http://www.drinksmixer.com/drink2336.html" + "url": "https://www.drinksmixer.com/drink2336.html" }, { "directions": "Dissolve the sugar in the boiling water and chill in the fridge. This step is best done before the party/drinking session. Put the tequila and lemon juice in the pitcher and fill with soda water and ice. Then mix sugar syrup to taste.", @@ -13950,7 +13950,7 @@ "ice cubes" ], "title": "Tequila Press recipe", - "url": "http://www.drinksmixer.com/drink2337.html" + "url": "https://www.drinksmixer.com/drink2337.html" }, { "directions": "Pour a shot of Tequila in glass, and fill with orange juice. Stir.", @@ -13959,7 +13959,7 @@ "orange juice" ], "title": "Tequila Screwdriver recipe", - "url": "http://www.drinksmixer.com/drink2338.html" + "url": "https://www.drinksmixer.com/drink2338.html" }, { "directions": "Shake tequila, juice of lemon, and powdered sugar with ice and strain into a whiskey sour glass. Add the half-slice of lemon, top with the cherry, and serve.", @@ -13971,7 +13971,7 @@ "cherry" ], "title": "Tequila Sour recipe", - "url": "http://www.drinksmixer.com/drink2339.html" + "url": "https://www.drinksmixer.com/drink2339.html" }, { "directions": "Pour tequila in a highball glass with ice, and top with orange juice. Stir. Add grenadine by tilting glass and pouring grenadine down side by flipping the bottle vertically very quickly. The grenadine should go straight to the bottom and then rise up slowly through the drink. Garnish stirrer, straw and cherry-orange.", @@ -13981,7 +13981,7 @@ "grenadine syrup" ], "title": "Tequila Sunrise recipe", - "url": "http://www.drinksmixer.com/drink2340.html" + "url": "https://www.drinksmixer.com/drink2340.html" }, { "directions": "Pour tequila into a collins glass filled with ice cubes. Fill with orange juice and stir well. Top with blackberry brandy and stir lightly. Add the cherry on top and serve.", @@ -13992,7 +13992,7 @@ "cherry" ], "title": "Tequila Sunset recipe", - "url": "http://www.drinksmixer.com/drink2341.html" + "url": "https://www.drinksmixer.com/drink2341.html" }, { "directions": "Fill a shot glass with tequila. Add drops of Tabasco sauce, and serve.", @@ -14001,7 +14001,7 @@ "Tabasco\u00ae sauce" ], "title": "Tequila Surprise Shooter recipe", - "url": "http://www.drinksmixer.com/drink2342.html" + "url": "https://www.drinksmixer.com/drink2342.html" }, { "directions": "Fill the glass 1/3 full of tequila and then the rest with the cranberry juice, leaving enough room for the shot of grape juice.", @@ -14011,7 +14011,7 @@ "grape juice" ], "title": "Tequila Twilight recipe", - "url": "http://www.drinksmixer.com/drink2343.html" + "url": "https://www.drinksmixer.com/drink2343.html" }, { "directions": "Shake ingredients with ice strain into cocktail glass.", @@ -14022,7 +14022,7 @@ "ice cubes" ], "title": "Tequilini recipe", - "url": "http://www.drinksmixer.com/drink2344.html" + "url": "https://www.drinksmixer.com/drink2344.html" }, { "directions": "Pour ingredients together into glass, over ice. Mix well. Serve with lime and salted glass if desired.", @@ -14033,7 +14033,7 @@ "margarita mix" ], "title": "Tequillya recipe", - "url": "http://www.drinksmixer.com/drink2346.html" + "url": "https://www.drinksmixer.com/drink2346.html" }, { "directions": "Stir tequila, vermouth, and bitters with ice and strain into a cocktail glass. Add the twist of lemon peel, top with the olive, and serve.", @@ -14045,7 +14045,7 @@ "olive" ], "title": "Tequini recipe", - "url": "http://www.drinksmixer.com/drink2347.html" + "url": "https://www.drinksmixer.com/drink2347.html" }, { "directions": "Pour tequila over ice cubes into old-fashioned glass. Add fruit juice, fill with tonic water, and stir.", @@ -14055,7 +14055,7 @@ "tonic water" ], "title": "Tequonic recipe", - "url": "http://www.drinksmixer.com/drink2348.html" + "url": "https://www.drinksmixer.com/drink2348.html" }, { "directions": "In shaker mix Kahlua, Tequila Rose, ice and milk. Shake and pour into frosted beer mug.", @@ -14066,7 +14066,7 @@ "ice" ], "title": "Teresa's Dream Shake recipe", - "url": "http://www.drinksmixer.com/drink2349.html" + "url": "https://www.drinksmixer.com/drink2349.html" }, { "directions": "Pour in your favorite shot glass and enjoy.", @@ -14075,7 +14075,7 @@ "Southern Comfort\u00ae peach liqueur" ], "title": "The Terminator recipe", - "url": "http://www.drinksmixer.com/drink2350.html" + "url": "https://www.drinksmixer.com/drink2350.html" }, { "directions": "151 first, then Rumple Minze.", @@ -14084,7 +14084,7 @@ "Rumple Minze\u00ae peppermint liqueur" ], "title": "Terminator recipe", - "url": "http://www.drinksmixer.com/drink2351.html" + "url": "https://www.drinksmixer.com/drink2351.html" }, { "directions": "Mix ingredients in glass. Drink if you can.", @@ -14093,7 +14093,7 @@ "Dr. Pepper\u00ae soda" ], "title": "Terror From the Deep recipe", - "url": "http://www.drinksmixer.com/drink2352.html" + "url": "https://www.drinksmixer.com/drink2352.html" }, { "directions": "Nothing special, just mix.", @@ -14103,7 +14103,7 @@ "Gatorade\u00ae energy drink" ], "title": "Texas Apple Delight recipe", - "url": "http://www.drinksmixer.com/drink2353.html" + "url": "https://www.drinksmixer.com/drink2353.html" }, { "directions": "Pour over ice, shake until cooled, then pour into glass.", @@ -14114,7 +14114,7 @@ "cranberry juice" ], "title": "Texas Cool-Aid recipe", - "url": "http://www.drinksmixer.com/drink2354.html" + "url": "https://www.drinksmixer.com/drink2354.html" }, { "directions": "Put ice in a shaker and pour all three ingredients into the shaker. Shake vigorously and then strain into a glass. This is intended to be more like a shot than a sipping drink.", @@ -14124,7 +14124,7 @@ "Bailey's\u00ae Irish cream" ], "title": "The Texas Mudslide recipe", - "url": "http://www.drinksmixer.com/drink2355.html" + "url": "https://www.drinksmixer.com/drink2355.html" }, { "directions": "Pour 3/4 shot of Tequila in shot glass, top off with lime juice, splash in tabasco sauce, and shoot.", @@ -14134,7 +14134,7 @@ "Tabasco\u00ae sauce" ], "title": "Texas Prairie Fire recipe", - "url": "http://www.drinksmixer.com/drink2356.html" + "url": "https://www.drinksmixer.com/drink2356.html" }, { "directions": "Mix all ingredients and Shake well. Sweet at first, with a BITE at the end.", @@ -14145,7 +14145,7 @@ "sweet and sour mix" ], "title": "Texas Rattlesnake recipe", - "url": "http://www.drinksmixer.com/drink2357.html" + "url": "https://www.drinksmixer.com/drink2357.html" }, { "directions": "Mix all ingredients and pour over ice.", @@ -14156,7 +14156,7 @@ "pineapple juice" ], "title": "Texas Rose recipe", - "url": "http://www.drinksmixer.com/drink2358.html" + "url": "https://www.drinksmixer.com/drink2358.html" }, { "directions": "Blend with ice until smooth. Serve in a tulip glass, topped with whipped cream.", @@ -14168,7 +14168,7 @@ "cream" ], "title": "Texas Sling recipe", - "url": "http://www.drinksmixer.com/drink2359.html" + "url": "https://www.drinksmixer.com/drink2359.html" }, { "directions": "Mix all together and filter back and forth through ice to chill and mix. Not a sipping drink, shoot it.", @@ -14181,7 +14181,7 @@ "tequila" ], "title": "Texas Sweat recipe", - "url": "http://www.drinksmixer.com/drink2360.html" + "url": "https://www.drinksmixer.com/drink2360.html" }, { "directions": "Make tea add tequila, and shake.", @@ -14190,7 +14190,7 @@ "tea" ], "title": "Texas T recipe", - "url": "http://www.drinksmixer.com/drink2362.html" + "url": "https://www.drinksmixer.com/drink2362.html" }, { "directions": "Mix in shotglass(es). Add Curacao last, to a nice blue-green color.", @@ -14201,7 +14201,7 @@ "Blue Curacao liqueur" ], "title": "TGV recipe", - "url": "http://www.drinksmixer.com/drink2363.html" + "url": "https://www.drinksmixer.com/drink2363.html" }, { "directions": "1. Ensure your coffee beans are rich and finely grounded. Ground some whole green Cardamom Pods.\r", @@ -14214,7 +14214,7 @@ "ice" ], "title": "Thai Coffee recipe", - "url": "http://www.drinksmixer.com/drink2364.html" + "url": "https://www.drinksmixer.com/drink2364.html" }, { "directions": "Prepare a pot of coffee at a good European strength. In the ground coffee, add 2 or 3 freshly ground cardamom pods. Sweeten while hot, then cool quickly. Serve in highball glass over ice, with cream. To get the layered effect, place a spoon atop the coffee and pour the milk carefully into the spoon so that it floats on the top of the coffee.", @@ -14225,7 +14225,7 @@ "cardamom" ], "title": "Thai Iced Coffee recipe", - "url": "http://www.drinksmixer.com/drink2365.html" + "url": "https://www.drinksmixer.com/drink2365.html" }, { "directions": "Combine Thai tea (i.e., the powder), boiling water, and sweetened condensed milk, stir until blended. Pour into 2 tall glasses filled with ice cubes. Garnish with mint leaves. Makes 2 servings.", @@ -14237,7 +14237,7 @@ "mint" ], "title": "Thai Iced Tea recipe", - "url": "http://www.drinksmixer.com/drink2366.html" + "url": "https://www.drinksmixer.com/drink2366.html" }, { "directions": "Take a highball glass, put in 3 to 4 ice cubes, add 1 cl of creme de cassis (not cooled), then 4 cl of preferably Absolut Vodka along with 2 cl of Gordon's Dry. Fill in the glass with equal parts of bitter lemon and tonic water, pour and squeeze in one fourth of a lime. Garnish with a pair of cherrys, one in, one outside the glass.", @@ -14251,7 +14251,7 @@ "ice cubes" ], "title": "Thal On The Rocks recipe", - "url": "http://www.drinksmixer.com/drink2367.html" + "url": "https://www.drinksmixer.com/drink2367.html" }, { "directions": "Pour the two small bottles (Britvic size) of Orange Juice in first. Top up with Cola, the fizzier, the better. Stir.", @@ -14260,7 +14260,7 @@ "Coca-Cola\u00ae" ], "title": "Thames Water recipe", - "url": "http://www.drinksmixer.com/drink2368.html" + "url": "https://www.drinksmixer.com/drink2368.html" }, { "directions": "Fill Collins glass one-half full of ice, add ingredients and stir. Garnish with a lime wedge, if desired.", @@ -14271,7 +14271,7 @@ "cranberry juice" ], "title": "Thanksgiving Cocktail recipe", - "url": "http://www.drinksmixer.com/drink2369.html" + "url": "https://www.drinksmixer.com/drink2369.html" }, { "directions": "Shake all ingredients (except cherry) with ice and strain into a cocktail glass. Top with the cherry and serve.", @@ -14283,7 +14283,7 @@ "cherry" ], "title": "Thanksgiving Special recipe", - "url": "http://www.drinksmixer.com/drink2370.html" + "url": "https://www.drinksmixer.com/drink2370.html" }, { "directions": "Pour ingredients into a cold glass. Stir well.", @@ -14294,7 +14294,7 @@ "ice cubes" ], "title": "Think Pink recipe", - "url": "http://www.drinksmixer.com/drink2371.html" + "url": "https://www.drinksmixer.com/drink2371.html" }, { "directions": "Shake and strain into a chilled, sugar-rimmed cocktail glass. Garnish with a lime twist.", @@ -14304,7 +14304,7 @@ "limes" ], "title": "Third Rail recipe", - "url": "http://www.drinksmixer.com/drink2372.html" + "url": "https://www.drinksmixer.com/drink2372.html" }, { "directions": "Shake all ingredients with ice, strain into a cocktail glass, and serve.", @@ -14315,7 +14315,7 @@ "anis liqueur" ], "title": "Third-Rail Cocktail recipe", - "url": "http://www.drinksmixer.com/drink2373.html" + "url": "https://www.drinksmixer.com/drink2373.html" }, { "directions": "Pour ingredients over ice in a tall glass, stir, and serve.", @@ -14329,7 +14329,7 @@ "cranberry juice" ], "title": "This-n-That recipe", - "url": "http://www.drinksmixer.com/drink2374.html" + "url": "https://www.drinksmixer.com/drink2374.html" }, { "directions": "Add all three ingredients in order to a shot glass. Best served with top layer on fire. (For effect only)", @@ -14339,7 +14339,7 @@ "Bacardi\u00ae 151 rum" ], "title": "Thorazine recipe", - "url": "http://www.drinksmixer.com/drink2375.html" + "url": "https://www.drinksmixer.com/drink2375.html" }, { "directions": "Add Tequila Rose and follow with tequila.", @@ -14348,7 +14348,7 @@ "Tequila Rose\u00ae strawberry cream liqueur" ], "title": "Thorny Mexican recipe", - "url": "http://www.drinksmixer.com/drink2376.html" + "url": "https://www.drinksmixer.com/drink2376.html" }, { "directions": "Fill a hurricane glass with plenty of ice. Add J\ufffdgermeister and rum first. Top off with pineapple juice and grenadine. Shake well.", @@ -14359,7 +14359,7 @@ "grenadine syrup" ], "title": "Three Day Weekend recipe", - "url": "http://www.drinksmixer.com/drink2377.html" + "url": "https://www.drinksmixer.com/drink2377.html" }, { "directions": "Shake all ingredients with ice, strain into a cocktail glass, and serve.", @@ -14370,7 +14370,7 @@ "grenadine syrup" ], "title": "Three Miller Cocktail recipe", - "url": "http://www.drinksmixer.com/drink2378.html" + "url": "https://www.drinksmixer.com/drink2378.html" }, { "directions": "Shake with ice and strain into a shot glass.", @@ -14380,7 +14380,7 @@ "cream" ], "title": "Three Musketeers recipe", - "url": "http://www.drinksmixer.com/drink2379.html" + "url": "https://www.drinksmixer.com/drink2379.html" }, { "directions": "Combine equal amounts of ingredients in a shot glass.", @@ -14390,7 +14390,7 @@ "tequila" ], "title": "Three Sheets to The Wind recipe", - "url": "http://www.drinksmixer.com/drink2380.html" + "url": "https://www.drinksmixer.com/drink2380.html" }, { "directions": "Mix all three in a shot glass and shoot the damn thing.", @@ -14400,7 +14400,7 @@ "151 proof rum" ], "title": "Three Stages of Friendship recipe", - "url": "http://www.drinksmixer.com/drink2381.html" + "url": "https://www.drinksmixer.com/drink2381.html" }, { "directions": "Line up four shot glasses with a shot of each drink.", @@ -14411,7 +14411,7 @@ "Wild Turkey\u00ae bourbon whiskey" ], "title": "Three Wise Men On A Farm recipe", - "url": "http://www.drinksmixer.com/drink2384.html" + "url": "https://www.drinksmixer.com/drink2384.html" }, { "directions": "Pour 2/3 of an oz. of each ingredient into a shot glass and drink.", @@ -14421,7 +14421,7 @@ "Rumple Minze\u00ae peppermint liqueur" ], "title": "Three Wise Men #3 recipe", - "url": "http://www.drinksmixer.com/drink2385.html" + "url": "https://www.drinksmixer.com/drink2385.html" }, { "directions": "Shake and strain, into rocks glass.", @@ -14431,7 +14431,7 @@ "pineapple juice" ], "title": "Three-Legged Monkey recipe", - "url": "http://www.drinksmixer.com/drink2387.html" + "url": "https://www.drinksmixer.com/drink2387.html" }, { "directions": "In a shaker half-filled with ice cubes, combine all of the ingredients. Shake well. Strain into a cocktail glass.", @@ -14441,7 +14441,7 @@ "orange juice" ], "title": "Thriller recipe", - "url": "http://www.drinksmixer.com/drink2388.html" + "url": "https://www.drinksmixer.com/drink2388.html" }, { "directions": "Fill cocktail glass with ice and mix the two ingredients.", @@ -14450,7 +14450,7 @@ "Skyy\u00ae vodka" ], "title": "Thug Heaven recipe", - "url": "http://www.drinksmixer.com/drink2389.html" + "url": "https://www.drinksmixer.com/drink2389.html" }, { "directions": "Add the vodka, 151, and Midori forming a nice green shooter. Then tilt in some grenadine to give it some red flare at the bottom -- burn it down!", @@ -14461,7 +14461,7 @@ "grenadine syrup" ], "title": "Thumb Press recipe", - "url": "http://www.drinksmixer.com/drink2391.html" + "url": "https://www.drinksmixer.com/drink2391.html" }, { "directions": "Mix in shaker and serve.", @@ -14470,7 +14470,7 @@ "Bacardi\u00ae 151 rum" ], "title": "Thunder And Lighting recipe", - "url": "http://www.drinksmixer.com/drink2392.html" + "url": "https://www.drinksmixer.com/drink2392.html" }, { "directions": "Just mix it and shake it.", @@ -14482,7 +14482,7 @@ "ice cubes" ], "title": "Thunder King recipe", - "url": "http://www.drinksmixer.com/drink2393.html" + "url": "https://www.drinksmixer.com/drink2393.html" }, { "directions": "Shake it all chill and serve.", @@ -14493,7 +14493,7 @@ "peach schnapps" ], "title": "Thunder Peel recipe", - "url": "http://www.drinksmixer.com/drink2394.html" + "url": "https://www.drinksmixer.com/drink2394.html" }, { "directions": "Swill the Congac around the glass then add the cider and float the brandy over the top.", @@ -14503,7 +14503,7 @@ "white cider" ], "title": "Thunder Quake recipe", - "url": "http://www.drinksmixer.com/drink2395.html" + "url": "https://www.drinksmixer.com/drink2395.html" }, { "directions": "Shake all ingredients with ice, strain into a cocktail glass, and serve.", @@ -14513,7 +14513,7 @@ "gin" ], "title": "Thunderclap recipe", - "url": "http://www.drinksmixer.com/drink2396.html" + "url": "https://www.drinksmixer.com/drink2396.html" }, { "directions": "Shake all ingredients with ice, strain into a cocktail glass, and serve.", @@ -14524,7 +14524,7 @@ "egg" ], "title": "Thunder recipe", - "url": "http://www.drinksmixer.com/drink2397.html" + "url": "https://www.drinksmixer.com/drink2397.html" }, { "directions": "Boil water, sugar and coffee for 10 mins and let cool. Add rum and vanilla. Put in clean bottle(s) and leave for 1 week before using.", @@ -14536,7 +14536,7 @@ "vanilla extract" ], "title": "Tia-Maria recipe", - "url": "http://www.drinksmixer.com/drink2398.html" + "url": "https://www.drinksmixer.com/drink2398.html" }, { "directions": "Pour bottle of corona in a pint glass. Wait for it to settle, then drop in shot of cuervo, and chug it down. Enjoy.", @@ -14545,7 +14545,7 @@ "Corona\u00ae Extra lager" ], "title": "Tijuana Carbomb recipe", - "url": "http://www.drinksmixer.com/drink2399.html" + "url": "https://www.drinksmixer.com/drink2399.html" }, { "directions": "Chill Tia Maria and Baileys Irish Cream to 20 degrees. In a shot glass, fill half way with Tia Maria then very carefully add Bailey Irish cream on top to float. Do not allow them to mix. Keep them seperated. There's your shot. Enjoy!", @@ -14554,7 +14554,7 @@ "Bailey's\u00ae Irish cream" ], "title": "Tiatip recipe", - "url": "http://www.drinksmixer.com/drink2400.html" + "url": "https://www.drinksmixer.com/drink2400.html" }, { "directions": "Pour gin, vodka, rum and peach schnapps over ice in a collins glass. Add orange and pineapple juices, a dash of grenadine, and float 151 rum on top. Garnish with a piece of fresh cut pineapple. The wave will sweep you away!", @@ -14569,7 +14569,7 @@ "Bacardi\u00ae 151 rum" ], "title": "Tidal Wave recipe", - "url": "http://www.drinksmixer.com/drink2401.html" + "url": "https://www.drinksmixer.com/drink2401.html" }, { "directions": "Blend all ingredients in an electric blender at a low speed for a short length of time. Pour into a highball glass and serve.", @@ -14579,7 +14579,7 @@ "dry sherry" ], "title": "Tidbit recipe", - "url": "http://www.drinksmixer.com/drink2402.html" + "url": "https://www.drinksmixer.com/drink2402.html" }, { "directions": "Shake with ice, strain into a whiskey sour glass, and serve.", @@ -14591,7 +14591,7 @@ "ice cubes" ], "title": "Tie Me To The Bedpost recipe", - "url": "http://www.drinksmixer.com/drink2403.html" + "url": "https://www.drinksmixer.com/drink2403.html" }, { "directions": "Fill shaker glass with ice. Add ingredients. Shake well. Pour into highball glass. Garnish with cherry.", @@ -14603,7 +14603,7 @@ "grenadine syrup" ], "title": "Tie Me To The Bedpost #2 recipe", - "url": "http://www.drinksmixer.com/drink2404.html" + "url": "https://www.drinksmixer.com/drink2404.html" }, { "directions": "Shake with ice and strain into an over-sized martini glass. There should be a slight amount of foam from the 7-up.", @@ -14615,7 +14615,7 @@ "7-Up\u00ae soda" ], "title": "Tie Me To The Bedpost - Hawaiian recipe", - "url": "http://www.drinksmixer.com/drink2405.html" + "url": "https://www.drinksmixer.com/drink2405.html" }, { "directions": "Mix with ice in a hurricane glass.", @@ -14629,7 +14629,7 @@ "cranberry juice" ], "title": "Tie Me To The Bedpost Baby recipe", - "url": "http://www.drinksmixer.com/drink2406.html" + "url": "https://www.drinksmixer.com/drink2406.html" }, { "directions": "Mix as punch (Lemon Juice to taste). Add orange or lemon slices, or olives.", @@ -14641,7 +14641,7 @@ "lemon juice" ], "title": "Tiffany Marshall recipe", - "url": "http://www.drinksmixer.com/drink2407.html" + "url": "https://www.drinksmixer.com/drink2407.html" }, { "directions": "Fill Mason jar with crushed ice. Add pineapple juice and Malibu rum. Mix well. Add splash of grenadine and 151 proof rum. Garnish with cherry, pineapple, or other fruit slice.", @@ -14653,7 +14653,7 @@ "crushed ice" ], "title": "Tiffany's Wet and Ready recipe", - "url": "http://www.drinksmixer.com/drink2408.html" + "url": "https://www.drinksmixer.com/drink2408.html" }, { "directions": "Pour a measure (depending on sweetness required 1/2 to 1 shot is average) of grenadine into a tall, cool glass. In a cocktail shaker, add ice, 2 shots of Jack, 1 shot of Triple Sec then top up with enough orange juice to fill the glass. Give it a good shake and pour slowly into the glass.", @@ -14664,7 +14664,7 @@ "orange juice" ], "title": "Tiger Jack recipe", - "url": "http://www.drinksmixer.com/drink2409.html" + "url": "https://www.drinksmixer.com/drink2409.html" }, { "directions": "Add vodka, lemon juice, ice, and sugar in a mixing glass and shake. Pour into a cup and add orange soda. Stir.", @@ -14676,7 +14676,7 @@ "orange soda" ], "title": "Tiger Paw recipe", - "url": "http://www.drinksmixer.com/drink2410.html" + "url": "https://www.drinksmixer.com/drink2410.html" }, { "directions": "Layer in shot glass.", @@ -14686,7 +14686,7 @@ "peppermint schnapps" ], "title": "Tiger Tail recipe", - "url": "http://www.drinksmixer.com/drink2411.html" + "url": "https://www.drinksmixer.com/drink2411.html" }, { "directions": "Fill a highball glass with ice, add the vodka, lemon juice and cran. Garnish with a lemon wedge and serve.", @@ -14696,7 +14696,7 @@ "cranberry juice" ], "title": "Tiger Woods recipe", - "url": "http://www.drinksmixer.com/drink2412.html" + "url": "https://www.drinksmixer.com/drink2412.html" }, { "directions": "Shake ingredients in a shaker half filled with ice. Strain ingredients into an old-fashioned glass of ice.", @@ -14707,7 +14707,7 @@ "sugar" ], "title": "Tiger's Milk recipe", - "url": "http://www.drinksmixer.com/drink2413.html" + "url": "https://www.drinksmixer.com/drink2413.html" }, { "directions": "Shake with ice. Serve in ice-filled glass.", @@ -14719,7 +14719,7 @@ "cranberry juice" ], "title": "Tight Snatch recipe", - "url": "http://www.drinksmixer.com/drink2414.html" + "url": "https://www.drinksmixer.com/drink2414.html" }, { "directions": "Pour tequila, curacao, and schnapps over ice into large highball glass. Fill with lemon-lime soda and garnish with orange slice and a cherry.", @@ -14730,7 +14730,7 @@ "lemon-lime soda" ], "title": "Tijuana Taxi recipe", - "url": "http://www.drinksmixer.com/drink2415.html" + "url": "https://www.drinksmixer.com/drink2415.html" }, { "directions": "Fill glass halfway with tang. Add vodka until you can begin to taste the vodka, and serve to taste.", @@ -14739,7 +14739,7 @@ "vodka" ], "title": "Tiki Torch recipe", - "url": "http://www.drinksmixer.com/drink2416.html" + "url": "https://www.drinksmixer.com/drink2416.html" }, { "directions": "Mix together in a large glass and fill remainder of glass with orange juice. Serve cold.", @@ -14753,7 +14753,7 @@ "orange juice" ], "title": "Timberwolf recipe", - "url": "http://www.drinksmixer.com/drink2417.html" + "url": "https://www.drinksmixer.com/drink2417.html" }, { "directions": "Fill highball glass with ice. Add 1 1/2 oz. of peach schnapps. Then fill the glass about 1/2 full with Orange Juice. Next fill the rest of the glass with 7-Up or Sprite. Top the drink off with a dash of grenadine. Garnish with a flag.", @@ -14764,7 +14764,7 @@ "grenadine syrup" ], "title": "Tina Baker recipe", - "url": "http://www.drinksmixer.com/drink2418.html" + "url": "https://www.drinksmixer.com/drink2418.html" }, { "directions": "Chill martini glass with ice and water. Fill cocktail shaker with ice, vodka, Cointreau, Grand Marnier, lime juice, and sour mix. Shake vigorously until shaker is frosty. Empty martini glass and rim with salt and sugar mix. Pour contents into glass and garnish with lime wedge. Serve.", @@ -14776,7 +14776,7 @@ "sweet and sour mix" ], "title": "Tini Rita recipe", - "url": "http://www.drinksmixer.com/drink2419.html" + "url": "https://www.drinksmixer.com/drink2419.html" }, { "directions": "Put crushed ice into blender, about 2 cups. Add Cointreau. Add fruits, lemon juice and orange juice. Blend. With machine on, pour one half of the soda and reserve for serving. Once blended, pour into glass three-quarters of the way and add remaining soda.", @@ -14790,7 +14790,7 @@ "orange juice" ], "title": "Tinyee's Orange Smoothie recipe", - "url": "http://www.drinksmixer.com/drink2420.html" + "url": "https://www.drinksmixer.com/drink2420.html" }, { "directions": "Stir all ingredients with ice, strain into a cocktail glass, and serve.", @@ -14800,7 +14800,7 @@ "Green Chartreuse\u00ae" ], "title": "Tipperary Cocktail recipe", - "url": "http://www.drinksmixer.com/drink2421.html" + "url": "https://www.drinksmixer.com/drink2421.html" }, { "directions": "Crush ice in a blender. Add frozen strawberries and banana to blender. Put on low speed and add Malibu & Banana liqueur. Pour into tall glass.", @@ -14813,7 +14813,7 @@ "banana" ], "title": "Tipsy Island recipe", - "url": "http://www.drinksmixer.com/drink2422.html" + "url": "https://www.drinksmixer.com/drink2422.html" }, { "directions": "Takes a 2 oz shot glass. First put in the triple sec, then tequila, last the spiced rum.", @@ -14823,7 +14823,7 @@ "spiced rum" ], "title": "Tirade recipe", - "url": "http://www.drinksmixer.com/drink2423.html" + "url": "https://www.drinksmixer.com/drink2423.html" }, { "directions": "Combine all ingredients in a hurricane glass, and shake.", @@ -14835,7 +14835,7 @@ "soda water" ], "title": "Titia's Tushie recipe", - "url": "http://www.drinksmixer.com/drink2424.html" + "url": "https://www.drinksmixer.com/drink2424.html" }, { "directions": "Pour in a big glass. Mix. It's best when it's cold and on the rocks.", @@ -14844,7 +14844,7 @@ "Mountain Dew\u00ae citrus soda" ], "title": "Titty Excreation recipe", - "url": "http://www.drinksmixer.com/drink2425.html" + "url": "https://www.drinksmixer.com/drink2425.html" }, { "directions": "Pour the ingredients into a blender over crushed ice. Blend until you see the top of the mix stop moving. Pour into a margarita glass and garnish with a lemon or lime slice.\r", @@ -14857,7 +14857,7 @@ "crushed ice" ], "title": "Titty Twister-Rita recipe", - "url": "http://www.drinksmixer.com/drink2426.html" + "url": "https://www.drinksmixer.com/drink2426.html" }, { "directions": "Layer in a shot glass with the tequila on the bottom, amaretto in the middle, and a splash of lime juice on top.", @@ -14867,7 +14867,7 @@ "lime juice" ], "title": "TLA recipe", - "url": "http://www.drinksmixer.com/drink2427.html" + "url": "https://www.drinksmixer.com/drink2427.html" }, { "directions": "In a shaker half-filled with ice cubes, combine all of the ingredients. Shake well. Strain into an old-fashioned glass almost filled with ice cubes.", @@ -14877,7 +14877,7 @@ "pineapple juice" ], "title": "To Hell With Swords And Garter recipe", - "url": "http://www.drinksmixer.com/drink2428.html" + "url": "https://www.drinksmixer.com/drink2428.html" }, { "directions": "Shake, strain into highball glass.", @@ -14887,7 +14887,7 @@ "light cream" ], "title": "Toasted Almond recipe", - "url": "http://www.drinksmixer.com/drink2429.html" + "url": "https://www.drinksmixer.com/drink2429.html" }, { "directions": "Mix all ingredients over ice stir and serve with a cherry.", @@ -14898,7 +14898,7 @@ "7-Up\u00ae soda" ], "title": "Toasted Fisherman recipe", - "url": "http://www.drinksmixer.com/drink2430.html" + "url": "https://www.drinksmixer.com/drink2430.html" }, { "directions": "Blend with ice and serve in a tall glass. Garnish with chocolate flakes and optionally chocolate topping drizzled down the inside of the glass.", @@ -14910,7 +14910,7 @@ "honey" ], "title": "Toblerone recipe", - "url": "http://www.drinksmixer.com/drink2431.html" + "url": "https://www.drinksmixer.com/drink2431.html" }, { "directions": "Blend ingredients with ice until a creamy consistancy is reached. Don't add too much ice, this will make the drink too thick. \r", @@ -14922,7 +14922,7 @@ "honey" ], "title": "Toblerone #2 recipe", - "url": "http://www.drinksmixer.com/drink2432.html" + "url": "https://www.drinksmixer.com/drink2432.html" }, { "directions": "Pour the Jameson and Kahlua into a coffee mug, top off with hot fresh brewed coffee, finish with a tablespoon of fresh whipped cream.", @@ -14933,7 +14933,7 @@ "whipped cream" ], "title": "Toby's Special recipe", - "url": "http://www.drinksmixer.com/drink2433.html" + "url": "https://www.drinksmixer.com/drink2433.html" }, { "directions": "Mix the alcohol. Add sugar syrup, ice, and 7-up to taste. Garnish with/add pieces of lemon. Stir.", @@ -14947,7 +14947,7 @@ "7-Up\u00ae soda" ], "title": "Tokyo Ice Tea recipe", - "url": "http://www.drinksmixer.com/drink2434.html" + "url": "https://www.drinksmixer.com/drink2434.html" }, { "directions": "Mix equal parts in a mixing glass half-filled with ice cubes. Shake well. Strain into a cocktail glass. Garnish with a cherry.", @@ -14957,7 +14957,7 @@ "Midori\u00ae melon liqueur" ], "title": "Tokyo Rose recipe", - "url": "http://www.drinksmixer.com/drink2435.html" + "url": "https://www.drinksmixer.com/drink2435.html" }, { "directions": "Beat egg whites to a stiff froth. Separately beat egg yolks until light in color, gradually add the powdered sugar and spices. \r", @@ -14973,7 +14973,7 @@ "nutmeg" ], "title": "Tom and Jerry Punch recipe", - "url": "http://www.drinksmixer.com/drink2436.html" + "url": "https://www.drinksmixer.com/drink2436.html" }, { "directions": "Just mix the ingredients.", @@ -14983,7 +14983,7 @@ "Sprite\u00ae soda" ], "title": "Tom Collins ala Olsen recipe", - "url": "http://www.drinksmixer.com/drink2437.html" + "url": "https://www.drinksmixer.com/drink2437.html" }, { "directions": "In a shaker half-filled with ice cubes, combine the gin, lemon juice, and sugar. Shake well. Strain into a collins glass almost filled with ice cubes. Add the club soda. Stir and garnish with the cherry and the orange slice.", @@ -14996,7 +14996,7 @@ "orange" ], "title": "Tom Collins recipe", - "url": "http://www.drinksmixer.com/drink2438.html" + "url": "https://www.drinksmixer.com/drink2438.html" }, { "directions": "Pour all liquids except dark rum into glass. Fill with ice and stir. Float dark rum on top and stir gently.", @@ -15011,7 +15011,7 @@ "Myer's\u00ae dark rum" ], "title": "Tom's Rum Runner recipe", - "url": "http://www.drinksmixer.com/drink2439.html" + "url": "https://www.drinksmixer.com/drink2439.html" }, { "directions": "Stir in a mixing glass Worcestershire sauce, lemon juice, tomato juice, and a little salt and pepper over ice cubes. Strain off into a large cocktail glass.", @@ -15023,7 +15023,7 @@ "pepper" ], "title": "Tomato Cocktail recipe", - "url": "http://www.drinksmixer.com/drink2440.html" + "url": "https://www.drinksmixer.com/drink2440.html" }, { "directions": "Pour bailey's irish cream and brandy into a glass. Add heavy cream. Stir well and serve.", @@ -15033,7 +15033,7 @@ "heavy cream" ], "title": "Tongue Tangler recipe", - "url": "http://www.drinksmixer.com/drink2442.html" + "url": "https://www.drinksmixer.com/drink2442.html" }, { "directions": "Mix. Shoot.", @@ -15043,7 +15043,7 @@ "margarita mix" ], "title": "The Tony Kelly recipe", - "url": "http://www.drinksmixer.com/drink2443.html" + "url": "https://www.drinksmixer.com/drink2443.html" }, { "directions": "In a shaker half filled with ice, add first 5 ingredients. Shake well. Strain into hurricane glass filled with ice. Lace with grenadine.", @@ -15056,7 +15056,7 @@ "grenadine syrup" ], "title": "Toocan Sam recipe", - "url": "http://www.drinksmixer.com/drink2444.html" + "url": "https://www.drinksmixer.com/drink2444.html" }, { "directions": "Mix all ingredients and pour into shot glasses. Slam it.", @@ -15067,7 +15067,7 @@ "Kahlua\u00ae coffee liqueur" ], "title": "Toolkit recipe", - "url": "http://www.drinksmixer.com/drink2445.html" + "url": "https://www.drinksmixer.com/drink2445.html" }, { "directions": "Layer grenadine, amaretto, and lemon juice, then stir. Add 2 drops of chocolate syrup, let sink, and serve.", @@ -15078,7 +15078,7 @@ "chocolate syrup" ], "title": "Tootsie Pop recipe", - "url": "http://www.drinksmixer.com/drink2446.html" + "url": "https://www.drinksmixer.com/drink2446.html" }, { "directions": "Pour all over ice, mix and strain off ice.", @@ -15087,7 +15087,7 @@ "Kahlua\u00ae coffee liqueur" ], "title": "Tootsie Roll Float recipe", - "url": "http://www.drinksmixer.com/drink2447.html" + "url": "https://www.drinksmixer.com/drink2447.html" }, { "directions": "Because of the darkness of this particular shooter, layering is not necessary.", @@ -15097,7 +15097,7 @@ "Frangelico\u00ae hazelnut liqueur" ], "title": "Tootsie Roll recipe", - "url": "http://www.drinksmixer.com/drink2448.html" + "url": "https://www.drinksmixer.com/drink2448.html" }, { "directions": "Pour orange juice in first, then the peach schnapps. Then pour the shot of midori down the side of the glass, so that the midori forms a layer at the bottom of the glass.", @@ -15107,7 +15107,7 @@ "orange juice" ], "title": "Tootsy Pop recipe", - "url": "http://www.drinksmixer.com/drink2450.html" + "url": "https://www.drinksmixer.com/drink2450.html" }, { "directions": "Shake all ingredients with ice, strain into an old-fashioned glass over ice cubes, and serve.", @@ -15117,7 +15117,7 @@ "oranges" ], "title": "Top Banana recipe", - "url": "http://www.drinksmixer.com/drink2451.html" + "url": "https://www.drinksmixer.com/drink2451.html" }, { "directions": "Fill mixing glass with ice. Pour in all ingredients. Shake well. Pour into salt rimmed glass. Add lime wedge or wheel.", @@ -15129,7 +15129,7 @@ "tequila" ], "title": "Top Shelf Margarita recipe", - "url": "http://www.drinksmixer.com/drink2452.html" + "url": "https://www.drinksmixer.com/drink2452.html" }, { "directions": "Cobine ingredients in a shaker 2/3 filled with ice. Shake well, and then strain into a cocktail glass.", @@ -15139,7 +15139,7 @@ "Galliano\u00ae herbal liqueur" ], "title": "Topaz recipe", - "url": "http://www.drinksmixer.com/drink2453.html" + "url": "https://www.drinksmixer.com/drink2453.html" }, { "directions": "Fill bottom of glass with tang then add Vodka, Stir till most of the tang is dissolved. Fill to 3/4 full with Mountain Dew. Stir again. Fill rest of way.", @@ -15149,7 +15149,7 @@ "Mountain Dew\u00ae citrus soda" ], "title": "Topher Special recipe", - "url": "http://www.drinksmixer.com/drink2454.html" + "url": "https://www.drinksmixer.com/drink2454.html" }, { "directions": "Shake ingredients with ice and strain into cocktail glass. Top with a little whipped cream and sprinkle lightly with cocoa.", @@ -15159,7 +15159,7 @@ "light cream" ], "title": "Toreador recipe", - "url": "http://www.drinksmixer.com/drink2455.html" + "url": "https://www.drinksmixer.com/drink2455.html" }, { "directions": "Pour chocolate milk into a large glass, and add the licor 43. Mix well, and serve cold.", @@ -15168,7 +15168,7 @@ "Licor 43\u00ae liqueur" ], "title": "Torombolo recipe", - "url": "http://www.drinksmixer.com/drink2456.html" + "url": "https://www.drinksmixer.com/drink2456.html" }, { "directions": "Layer in shot glass.", @@ -15177,7 +15177,7 @@ "Bailey's\u00ae Irish cream" ], "title": "Toronto Maple Leafs recipe", - "url": "http://www.drinksmixer.com/drink2457.html" + "url": "https://www.drinksmixer.com/drink2457.html" }, { "directions": "Pour ingredients into an ice filled shaker and shake. Garnish with a cherry.", @@ -15187,7 +15187,7 @@ "sweet and sour mix" ], "title": "Toro recipe", - "url": "http://www.drinksmixer.com/drink2458.html" + "url": "https://www.drinksmixer.com/drink2458.html" }, { "directions": "Mix the liquors, and garnish with a cherry, cucumber slice, and twist of lemon peel.\r", @@ -15198,7 +15198,7 @@ "white creme de menthe" ], "title": "Torpedo recipe", - "url": "http://www.drinksmixer.com/drink2459.html" + "url": "https://www.drinksmixer.com/drink2459.html" }, { "directions": "Shake light rum, brandy, and cream with ice and strain into a cocktail glass. Float 151 proof rum on top and serve.", @@ -15209,7 +15209,7 @@ "cream" ], "title": "Torridora Cocktail recipe", - "url": "http://www.drinksmixer.com/drink2460.html" + "url": "https://www.drinksmixer.com/drink2460.html" }, { "directions": "Dip rim of shot glass in chocolate syrup. Add Kahlua and J\ufffdgermeister. Place arms behind back. Drink shot using mouth only (a la \"blowjob\").", @@ -15219,7 +15219,7 @@ "chocolate syrup" ], "title": "Tossed Salad recipe", - "url": "http://www.drinksmixer.com/drink2461.html" + "url": "https://www.drinksmixer.com/drink2461.html" }, { "directions": "Shake all ingredients with ice, strain into a cocktail glass, and serve.", @@ -15229,7 +15229,7 @@ "limes" ], "title": "Tovarich Cocktail recipe", - "url": "http://www.drinksmixer.com/drink2462.html" + "url": "https://www.drinksmixer.com/drink2462.html" }, { "directions": "Fill a 12 ounce glass with ice, add 1 ounce of vodka, 1 ounce of triple sec and 1 ounce of midori, fill with yellow lemonade and enjoy.", @@ -15240,7 +15240,7 @@ "lemonade" ], "title": "Toxic Antifreeze recipe", - "url": "http://www.drinksmixer.com/drink2463.html" + "url": "https://www.drinksmixer.com/drink2463.html" }, { "directions": "In a pilsner glass filled with ice cubes, first pour the melon liqueur, then the tequila to create a green layer. Add sour mix. Slowly pour orange juice against side of glass to create the yellow layer. Add a few more ice cubes, if needed. Carefully float the sloe gin on top for the red layer. Garnish with a cherry and lemon and lime wheels. Stir just before drinking.", @@ -15252,7 +15252,7 @@ "sloe gin" ], "title": "Traffic Light Cooler recipe", - "url": "http://www.drinksmixer.com/drink2464.html" + "url": "https://www.drinksmixer.com/drink2464.html" }, { "directions": "Layer Grenadine, Galliano, and Midori.", @@ -15262,7 +15262,7 @@ "Midori\u00ae melon liqueur" ], "title": "Traffic Light recipe", - "url": "http://www.drinksmixer.com/drink2465.html" + "url": "https://www.drinksmixer.com/drink2465.html" }, { "directions": "Mix all the ingredients in a large container. Shake or stir well. Server chilled or over ice. This will sneak up on you.", @@ -15275,7 +15275,7 @@ "grenadine syrup" ], "title": "Transmission Overhaul recipe", - "url": "http://www.drinksmixer.com/drink2466.html" + "url": "https://www.drinksmixer.com/drink2466.html" }, { "directions": "Slice the fruit. I recommend strawberries, oranges, lemons, and limes. Then mix the punch and everclear together in a clean trashcan with ice. Hawaiian punch is my preference, but you can use any sort of fruit punch. Make sure you use ice and have a blast.", @@ -15285,7 +15285,7 @@ "fruits" ], "title": "Trashcan Punch recipe", - "url": "http://www.drinksmixer.com/drink2467.html" + "url": "https://www.drinksmixer.com/drink2467.html" }, { "directions": "Mix vodka, Maui, and grapefruit juice together, then pour over highball glass with ice.", @@ -15296,7 +15296,7 @@ "ice cubes" ], "title": "Tree Frog recipe", - "url": "http://www.drinksmixer.com/drink2468.html" + "url": "https://www.drinksmixer.com/drink2468.html" }, { "directions": "Add liquors, then add juices. Color red with grenadine. Float the 151 proof rum.", @@ -15311,7 +15311,7 @@ "151 proof rum" ], "title": "Tree Smacker recipe", - "url": "http://www.drinksmixer.com/drink2469.html" + "url": "https://www.drinksmixer.com/drink2469.html" }, { "directions": "Pour the rum, vermouth, amaretto, and ginger ale into a highball glass almost filled with ice cubes. Stir well and garnish with the lemon twist.", @@ -15323,7 +15323,7 @@ "lemon" ], "title": "Triad recipe", - "url": "http://www.drinksmixer.com/drink2470.html" + "url": "https://www.drinksmixer.com/drink2470.html" }, { "directions": "Layer in a shot glass.", @@ -15333,7 +15333,7 @@ "grenadine syrup" ], "title": "Trial of the Century recipe", - "url": "http://www.drinksmixer.com/drink2471.html" + "url": "https://www.drinksmixer.com/drink2471.html" }, { "directions": "Stir all ingredients with ice, strain into a cocktail glass, and serve.", @@ -15343,7 +15343,7 @@ "orange bitters" ], "title": "Trilby Cocktail recipe", - "url": "http://www.drinksmixer.com/drink2472.html" + "url": "https://www.drinksmixer.com/drink2472.html" }, { "directions": "Stir all ingredients with ice, strain into a cocktail glass, and serve.", @@ -15353,7 +15353,7 @@ "gin" ], "title": "Trinity Cocktail recipe", - "url": "http://www.drinksmixer.com/drink2473.html" + "url": "https://www.drinksmixer.com/drink2473.html" }, { "directions": "Poor the ingredients in a glass. Ice if preferred. Drink it on a hot summer-night.", @@ -15364,7 +15364,7 @@ "Sprite\u00ae soda" ], "title": "Triple Asp recipe", - "url": "http://www.drinksmixer.com/drink2474.html" + "url": "https://www.drinksmixer.com/drink2474.html" }, { "directions": "First fill glass 3/4 full with Orange Juice. Next add 1/4 Triple Sec. Finaly add Grenadine and mix thoroughly! \r", @@ -15374,7 +15374,7 @@ "grenadine syrup" ], "title": "Triple Sec Sunrise recipe", - "url": "http://www.drinksmixer.com/drink2475.html" + "url": "https://www.drinksmixer.com/drink2475.html" }, { "directions": "Fill a tall glass with ice. Pour first 3 three ingredients then adjust pineapple juice to taste. Serve.", @@ -15385,7 +15385,7 @@ "pineapple juice" ], "title": "Triplesex recipe", - "url": "http://www.drinksmixer.com/drink2476.html" + "url": "https://www.drinksmixer.com/drink2476.html" }, { "directions": "Straight out of the freezer, pour into a double shot glass the vodka, then J\ufffdgermeister, then Goldschlager.", @@ -15395,7 +15395,7 @@ "Goldschlager\u00ae cinnamon schnapps" ], "title": "The Triple recipe", - "url": "http://www.drinksmixer.com/drink2477.html" + "url": "https://www.drinksmixer.com/drink2477.html" }, { "directions": "Dump it in a glass of ice and enjoy.", @@ -15408,7 +15408,7 @@ "pineapple juice" ], "title": "Tripple Pleasure recipe", - "url": "http://www.drinksmixer.com/drink2478.html" + "url": "https://www.drinksmixer.com/drink2478.html" }, { "directions": "In 5 gal. jug mix thoroughly all of vodka with all of lemons, lemonade, and water, which should be previously combined. Make sure water is ice cold, if not ice or refridgeration may be required.", @@ -15419,7 +15419,7 @@ "water" ], "title": "Tripwire recipe", - "url": "http://www.drinksmixer.com/drink2479.html" + "url": "https://www.drinksmixer.com/drink2479.html" }, { "directions": "Pour liquor over ice, fill with eggnog, and stir.", @@ -15430,7 +15430,7 @@ "eggnog" ], "title": "Trogg's Nog recipe", - "url": "http://www.drinksmixer.com/drink2480.html" + "url": "https://www.drinksmixer.com/drink2480.html" }, { "directions": "Mix coke and guinness in a pint glass.", @@ -15439,7 +15439,7 @@ "Coca-Cola\u00ae" ], "title": "Trojan Horse recipe", - "url": "http://www.drinksmixer.com/drink2481.html" + "url": "https://www.drinksmixer.com/drink2481.html" }, { "directions": "Mix over ice and shake. Pour into a glass, garnish with fruit.", @@ -15451,7 +15451,7 @@ "cherries" ], "title": "Tropic Heat recipe", - "url": "http://www.drinksmixer.com/drink2482.html" + "url": "https://www.drinksmixer.com/drink2482.html" }, { "directions": "Combine first 5 ingredients into a cocktail shaker. Shake well. Pour the contents unstrained into a collins glass and top up with club soda.", @@ -15464,7 +15464,7 @@ "club soda" ], "title": "Tropical Binalada recipe", - "url": "http://www.drinksmixer.com/drink2483.html" + "url": "https://www.drinksmixer.com/drink2483.html" }, { "directions": "Prepare the hot chocolate and add the Kahlua. Top with whipped cream or marshmallows.", @@ -15474,7 +15474,7 @@ "whipped cream" ], "title": "Tropical Clarkson recipe", - "url": "http://www.drinksmixer.com/drink2484.html" + "url": "https://www.drinksmixer.com/drink2484.html" }, { "directions": "Stir all ingredients with ice, strain into a cocktail glass, and serve.", @@ -15485,7 +15485,7 @@ "bitters" ], "title": "Tropical Cocktail recipe", - "url": "http://www.drinksmixer.com/drink2485.html" + "url": "https://www.drinksmixer.com/drink2485.html" }, { "directions": "Shake the three ingredients together and poor in a cocktail glass. Garnish with a red cherry on the rim of the glass.", @@ -15495,7 +15495,7 @@ "pineapple juice" ], "title": "Tropical Dream recipe", - "url": "http://www.drinksmixer.com/drink2486.html" + "url": "https://www.drinksmixer.com/drink2486.html" }, { "directions": "Mix with ice and strain into a chilled cocktail glass. Garnish with a orange spiral.", @@ -15505,7 +15505,7 @@ "Malibu\u00ae coconut rum" ], "title": "Tropical Heat recipe", - "url": "http://www.drinksmixer.com/drink2487.html" + "url": "https://www.drinksmixer.com/drink2487.html" }, { "directions": "Combine all ingredients in a iced punch bowl. Serve cold.", @@ -15516,7 +15516,7 @@ "pineapple juice" ], "title": "Tropical Hibiscus recipe", - "url": "http://www.drinksmixer.com/drink2488.html" + "url": "https://www.drinksmixer.com/drink2488.html" }, { "directions": "Mix and pour into shotglass.", @@ -15527,7 +15527,7 @@ "watermelon schnapps" ], "title": "Tropical Hooter recipe", - "url": "http://www.drinksmixer.com/drink2489.html" + "url": "https://www.drinksmixer.com/drink2489.html" }, { "directions": "Shake with ice and pour into a highball glass half-filled with ice cubes. Garnish with a slice of orange, a cherry and a sprig of mint.", @@ -15540,7 +15540,7 @@ "mango juice" ], "title": "Tropical Itching recipe", - "url": "http://www.drinksmixer.com/drink2490.html" + "url": "https://www.drinksmixer.com/drink2490.html" }, { "directions": "Just pour into a glass and add the softdrink and ice.", @@ -15551,7 +15551,7 @@ "pineapple soda" ], "title": "Tropical Kermit Piss recipe", - "url": "http://www.drinksmixer.com/drink2491.html" + "url": "https://www.drinksmixer.com/drink2491.html" }, { "directions": "Mix together in a tall glass.", @@ -15564,7 +15564,7 @@ "7-Up\u00ae soda" ], "title": "Tropical Life Saver #2 recipe", - "url": "http://www.drinksmixer.com/drink2492.html" + "url": "https://www.drinksmixer.com/drink2492.html" }, { "directions": "Fill glass with ice. Then add the Malibu and Midori. Then fill the remainder of the glass up with Pineapple Juice. Shake and enjoy!", @@ -15574,7 +15574,7 @@ "pineapple juice" ], "title": "Tropical Life Saver recipe", - "url": "http://www.drinksmixer.com/drink2493.html" + "url": "https://www.drinksmixer.com/drink2493.html" }, { "directions": "Shake with ice. Strain into a cocktail glass. Could be garnished with a piece of pineapple.", @@ -15585,7 +15585,7 @@ "pineapple juice" ], "title": "Tropical Lullaby recipe", - "url": "http://www.drinksmixer.com/drink2494.html" + "url": "https://www.drinksmixer.com/drink2494.html" }, { "directions": "Fill glass with ice, add gin and vodka. Almost fill with pineapple juice, then add southern comfort and melon liqueur. The drink can also be made frozen by adding 1 1/2 scoops of ice and blending.", @@ -15598,7 +15598,7 @@ "ice" ], "title": "Tropical Lust recipe", - "url": "http://www.drinksmixer.com/drink2495.html" + "url": "https://www.drinksmixer.com/drink2495.html" }, { "directions": "Pour Amaretto into a chilled glass, then add Malibu Rum. Stir and serve. The ingredients should be well chilled before use.", @@ -15607,7 +15607,7 @@ "Malibu\u00ae coconut rum" ], "title": "Tropical Martini recipe", - "url": "http://www.drinksmixer.com/drink2496.html" + "url": "https://www.drinksmixer.com/drink2496.html" }, { "directions": "Pour rum and vodka over ice, and add juices one by one, letting the juices swirl together, rather than mix. Garnish with a slice of lime, orange, or pineapple.", @@ -15620,7 +15620,7 @@ "ice" ], "title": "Tropical Nat recipe", - "url": "http://www.drinksmixer.com/drink2497.html" + "url": "https://www.drinksmixer.com/drink2497.html" }, { "directions": "Add all ingredients. Shake and pour into glass with ice.", @@ -15631,7 +15631,7 @@ "ice cubes" ], "title": "Tropical Orgasm #2 recipe", - "url": "http://www.drinksmixer.com/drink2498.html" + "url": "https://www.drinksmixer.com/drink2498.html" }, { "directions": "Mix all ingredients in shaker. Pour over ice. Garnish with cherry.", @@ -15646,7 +15646,7 @@ "maraschino cherry" ], "title": "Tropical Orgasm #3 recipe", - "url": "http://www.drinksmixer.com/drink2499.html" + "url": "https://www.drinksmixer.com/drink2499.html" }, { "directions": "Start with 3/4 of a pitcher with pink lemonade. Then add the vodka. Mix till you can barely taste the vodka, then add the strawberry daiquiri mix, then a splash of rum. (Just a bit, do not add too much) Stir and then chill.", @@ -15657,7 +15657,7 @@ "Captain Morgan\u00ae Original spiced rum" ], "title": "Tropical Orgasm recipe", - "url": "http://www.drinksmixer.com/drink2500.html" + "url": "https://www.drinksmixer.com/drink2500.html" }, { "directions": "Shake with ice and strain into shot glass(es).", @@ -15669,7 +15669,7 @@ "orange juice" ], "title": "Tropical Passion recipe", - "url": "http://www.drinksmixer.com/drink2501.html" + "url": "https://www.drinksmixer.com/drink2501.html" }, { "directions": "Shake with ice. Strain into cocktail glass.", @@ -15679,7 +15679,7 @@ "ginger ale" ], "title": "Tropical Peach Martini recipe", - "url": "http://www.drinksmixer.com/drink2502.html" + "url": "https://www.drinksmixer.com/drink2502.html" }, { "directions": "Pour first four ingredients over ice in shaker. Shake until chilled, and well blended. Pour into glass, and add 7-up. Stir to mix.", @@ -15691,7 +15691,7 @@ "7-Up\u00ae soda" ], "title": "Tropical Pear Fizz recipe", - "url": "http://www.drinksmixer.com/drink2503.html" + "url": "https://www.drinksmixer.com/drink2503.html" }, { "directions": "Put all in hi-ball glass and shake garnish w/lime.", @@ -15703,7 +15703,7 @@ "pineapple juice" ], "title": "Tropical Storm Jack recipe", - "url": "http://www.drinksmixer.com/drink2504.html" + "url": "https://www.drinksmixer.com/drink2504.html" }, { "directions": "Half fill glass with crushed ice. Add rum, triple sec, orange juice, and pineapple juice. Stir. Add Grenadine and top with cherry and other fruit.", @@ -15717,7 +15717,7 @@ "cherry" ], "title": "Tropical Sunrise recipe", - "url": "http://www.drinksmixer.com/drink2505.html" + "url": "https://www.drinksmixer.com/drink2505.html" }, { "directions": "Place in a cold shaker with ice. Shake for one minute and serve over ice.", @@ -15727,7 +15727,7 @@ "grapefruit juice" ], "title": "Tropical Teaser recipe", - "url": "http://www.drinksmixer.com/drink2506.html" + "url": "https://www.drinksmixer.com/drink2506.html" }, { "directions": "Mix in glass then shake.", @@ -15741,7 +15741,7 @@ "pineapple juice" ], "title": "Tropical Titty Twister recipe", - "url": "http://www.drinksmixer.com/drink2507.html" + "url": "https://www.drinksmixer.com/drink2507.html" }, { "directions": "Pour the Melon liqueur and the Blue curacao into a highball glass. Then add Sprite, and finally the ice cubes.", @@ -15752,7 +15752,7 @@ "ice cubes" ], "title": "Tropical Waters recipe", - "url": "http://www.drinksmixer.com/drink2508.html" + "url": "https://www.drinksmixer.com/drink2508.html" }, { "directions": "Shake or build directly in the glass.", @@ -15762,7 +15762,7 @@ "milk" ], "title": "Tropical Cocktail #2 recipe", - "url": "http://www.drinksmixer.com/drink2509.html" + "url": "https://www.drinksmixer.com/drink2509.html" }, { "directions": "Mix all ingredients in a shaker. Shake well and pour into a hurricane glass.", @@ -15774,7 +15774,7 @@ "ice cubes" ], "title": "Tropicetto recipe", - "url": "http://www.drinksmixer.com/drink2510.html" + "url": "https://www.drinksmixer.com/drink2510.html" }, { "directions": "Put all ingredients into a large mixing bowl (or simmer pot whenever possible). Mix well! This drink serves 2-3 quite well.", @@ -15785,7 +15785,7 @@ "Rolling Rock\u00ae lager" ], "title": "Tropiflipano recipe", - "url": "http://www.drinksmixer.com/drink2511.html" + "url": "https://www.drinksmixer.com/drink2511.html" }, { "directions": "Pour the vodka first, add grapefruit juice, and fill with about 6 ounces of 7-up or Sprite.", @@ -15795,7 +15795,7 @@ "7-Up\u00ae soda" ], "title": "Troutie recipe", - "url": "http://www.drinksmixer.com/drink2512.html" + "url": "https://www.drinksmixer.com/drink2512.html" }, { "directions": "Give yourself a break, use ice.", @@ -15806,7 +15806,7 @@ "Squirt\u00ae citrus soda" ], "title": "Truck Punch recipe", - "url": "http://www.drinksmixer.com/drink2513.html" + "url": "https://www.drinksmixer.com/drink2513.html" }, { "directions": "Pour in a bowl.", @@ -15818,7 +15818,7 @@ "orange juice" ], "title": "True Alabama Slammer recipe", - "url": "http://www.drinksmixer.com/drink2514.html" + "url": "https://www.drinksmixer.com/drink2514.html" }, { "directions": "Fill glass with ice, add Capt. Morgan and malibu. Fill with the pineapple juice. Float 1/2 oz of grenadine and then add 1/2 oz of a dark rum (meyers) for color. Found this to a very popular drink at my bar.", @@ -15830,7 +15830,7 @@ "grenadine syrup" ], "title": "Tsunami recipe", - "url": "http://www.drinksmixer.com/drink2515.html" + "url": "https://www.drinksmixer.com/drink2515.html" }, { "directions": "Place kiwi slice in the bottom of the glass. Add alcohols. Fill with mountain dew.", @@ -15841,7 +15841,7 @@ "kiwi" ], "title": "Tsunami #2 recipe", - "url": "http://www.drinksmixer.com/drink2516.html" + "url": "https://www.drinksmixer.com/drink2516.html" }, { "directions": "Mix in cocktail shaker with ice. Serve on the rocks. Garnish with chocolate shavings & chopped roast nuts.", @@ -15852,7 +15852,7 @@ "cream" ], "title": "Tuaca Nutter recipe", - "url": "http://www.drinksmixer.com/drink2517.html" + "url": "https://www.drinksmixer.com/drink2517.html" }, { "directions": "Just pour and serve.", @@ -15862,7 +15862,7 @@ "Wild Turkey\u00ae bourbon whiskey" ], "title": "Tubboocki recipe", - "url": "http://www.drinksmixer.com/drink2518.html" + "url": "https://www.drinksmixer.com/drink2518.html" }, { "directions": "Pour ingredients into chiller and pour into shot glass.", @@ -15872,7 +15872,7 @@ "milk" ], "title": "Tully's Nuts & Berries recipe", - "url": "http://www.drinksmixer.com/drink2519.html" + "url": "https://www.drinksmixer.com/drink2519.html" }, { "directions": "Mix together and drink fast!", @@ -15881,7 +15881,7 @@ "7-Up\u00ae soda" ], "title": "Tummy Blower recipe", - "url": "http://www.drinksmixer.com/drink2520.html" + "url": "https://www.drinksmixer.com/drink2520.html" }, { "directions": "Shake. Strain into ice filled glass. Garnish with a slice of pineapple and a straw.", @@ -15893,7 +15893,7 @@ "pineapple juice" ], "title": "Turbo recipe", - "url": "http://www.drinksmixer.com/drink2521.html" + "url": "https://www.drinksmixer.com/drink2521.html" }, { "directions": "No matter what size glass used, make sure the amount of pepsi to amaretto is at least 2 to 1 (as shown). Stir the drink lightly and add coke/other ingredients to suit your personal taste.", @@ -15903,7 +15903,7 @@ "Pepsi\u00ae cola" ], "title": "Turby's Amaretto recipe", - "url": "http://www.drinksmixer.com/drink2522.html" + "url": "https://www.drinksmixer.com/drink2522.html" }, { "directions": "Stir all ingredients (except orange peel) with ice and strain into a cocktail glass. Add the twist of orange peel and serve.", @@ -15915,7 +15915,7 @@ "orange" ], "title": "Turf Cocktail recipe", - "url": "http://www.drinksmixer.com/drink2523.html" + "url": "https://www.drinksmixer.com/drink2523.html" }, { "directions": "Mix with a stirrer in a pitcher then pour over ice into glasses. A thanksgiving tradition for the truly disfunctional family.", @@ -15925,7 +15925,7 @@ "Wild Turkey\u00ae bourbon whiskey" ], "title": "Turkey Trot recipe", - "url": "http://www.drinksmixer.com/drink2524.html" + "url": "https://www.drinksmixer.com/drink2524.html" }, { "directions": "Combine 1 oz. Wild Turkey, 3/4 oz. Amaretto, and a splash of Pineapple Juice with ice in a shaker tin. Shake and strain into a shot glass.", @@ -15935,7 +15935,7 @@ "pineapple juice" ], "title": "Turkeyball recipe", - "url": "http://www.drinksmixer.com/drink2525.html" + "url": "https://www.drinksmixer.com/drink2525.html" }, { "directions": "Mix Kahlua and Bailey's in glass. Fill with rootbeer.", @@ -15945,7 +15945,7 @@ "root beer" ], "title": "Turlock Bulldog recipe", - "url": "http://www.drinksmixer.com/drink2526.html" + "url": "https://www.drinksmixer.com/drink2526.html" }, { "directions": "Mix the Vodka with the wine. Drop the fruit from a height of at least 3 feet. Pour the sprite and the Ginger Ale with the rest. Carefully pour the Pisang Ambon into the punch. Enjoy!", @@ -15959,7 +15959,7 @@ "limes" ], "title": "Tuve Nightmare recipe", - "url": "http://www.drinksmixer.com/drink2527.html" + "url": "https://www.drinksmixer.com/drink2527.html" }, { "directions": "Stir all ingredients (except cherry) with ice and strain into a cocktail glass. Top with the cherry and serve.", @@ -15972,7 +15972,7 @@ "cherry" ], "title": "Tuxedo Cocktail recipe", - "url": "http://www.drinksmixer.com/drink2528.html" + "url": "https://www.drinksmixer.com/drink2528.html" }, { "directions": "Layer in order in a pousse-cafe glass.", @@ -15981,7 +15981,7 @@ "Bailey's\u00ae Irish cream" ], "title": "Twains Orgasm recipe", - "url": "http://www.drinksmixer.com/drink2529.html" + "url": "https://www.drinksmixer.com/drink2529.html" }, { "directions": "Fill glass 3/4 way full with ice, add Vodka and Southern Comfort, then fill to the top with Root Beer, stir then drink.", @@ -15992,7 +15992,7 @@ "ice cubes" ], "title": "Tweaked recipe", - "url": "http://www.drinksmixer.com/drink2530.html" + "url": "https://www.drinksmixer.com/drink2530.html" }, { "directions": "Pour all ingredients in mixer with ice and shake. Strain into cocktail glass.", @@ -16003,7 +16003,7 @@ "Grand Marnier\u00ae orange liqueur" ], "title": "Tweetie Bird recipe", - "url": "http://www.drinksmixer.com/drink2531.html" + "url": "https://www.drinksmixer.com/drink2531.html" }, { "directions": "In a mixing glass half-filled with crushed ice, combine all of the ingredients. Stir well. Strain into a cocktail glass.", @@ -16015,7 +16015,7 @@ "crushed ice" ], "title": "Twenty Thousand Leagues recipe", - "url": "http://www.drinksmixer.com/drink2532.html" + "url": "https://www.drinksmixer.com/drink2532.html" }, { "directions": "Shake all ingredients (except lemon slice) with ice and strain into a whiskey sour glass. Add the slice of lemon and serve.", @@ -16028,7 +16028,7 @@ "lemon" ], "title": "Twin Hills recipe", - "url": "http://www.drinksmixer.com/drink2533.html" + "url": "https://www.drinksmixer.com/drink2533.html" }, { "directions": "Shake with ice and strain into shot glass.", @@ -16039,7 +16039,7 @@ "Rose's\u00ae lime juice" ], "title": "Twin Sisters recipe", - "url": "http://www.drinksmixer.com/drink2534.html" + "url": "https://www.drinksmixer.com/drink2534.html" }, { "directions": "Mix in shaker over ice, strain into glass(es).", @@ -16049,7 +16049,7 @@ "7-Up\u00ae soda" ], "title": "Twinkle My Lights recipe", - "url": "http://www.drinksmixer.com/drink2535.html" + "url": "https://www.drinksmixer.com/drink2535.html" }, { "directions": "Pour vodka and juice of lime into a collins glass over several ice cubes. Fill with lemon-lime soda, stir, and serve.", @@ -16059,7 +16059,7 @@ "Tropicana\u00ae banana-strawberry juice" ], "title": "Twister recipe", - "url": "http://www.drinksmixer.com/drink2536.html" + "url": "https://www.drinksmixer.com/drink2536.html" }, { "directions": "Just simply pour into a shot glass or any glass of small size will work. Pour the ingredients in any order that you wish.", @@ -16069,7 +16069,7 @@ "cherry juice" ], "title": "The Two recipe", - "url": "http://www.drinksmixer.com/drink2537.html" + "url": "https://www.drinksmixer.com/drink2537.html" }, { "directions": "Shake all ingredients (except champagne) with ice and strain into a collins glass over ice cubes. Fill glass with chilled champagne, stir lightly, and serve.", @@ -16080,7 +16080,7 @@ "lime juice" ], "title": "Typhoon recipe", - "url": "http://www.drinksmixer.com/drink2538.html" + "url": "https://www.drinksmixer.com/drink2538.html" }, { "directions": "Pour all 8 liters of soda in cooler/bowl over 1 bag of ice. Add 2 quarts of Orage Juice. Add 1 bottle of Everclear. Add 4 big scoops of Kool-Aid. (preferably Tropical Punch) Stir.", @@ -16093,7 +16093,7 @@ "Everclear\u00ae alcohol" ], "title": "Tyson Punch recipe", - "url": "http://www.drinksmixer.com/drink2539.html" + "url": "https://www.drinksmixer.com/drink2539.html" }, { "directions": "Shake all ingredients with ice, strain into a cocktail glass, and serve.", @@ -16103,7 +16103,7 @@ "lemon juice" ], "title": "XYZ Cocktail recipe", - "url": "http://www.drinksmixer.com/drink2540.html" + "url": "https://www.drinksmixer.com/drink2540.html" }, { "directions": "Stir ingredients with ice, strain into a cocktail glass, and serve.", @@ -16112,7 +16112,7 @@ "orange bitters" ], "title": "Xeres Cocktail recipe", - "url": "http://www.drinksmixer.com/drink2541.html" + "url": "https://www.drinksmixer.com/drink2541.html" }, { "directions": "Stir all ingredients with ice, strain into a cocktail glass, and serve.", @@ -16122,7 +16122,7 @@ "Yellow Chartreuse\u00ae" ], "title": "Xanthia Cocktail recipe", - "url": "http://www.drinksmixer.com/drink2542.html" + "url": "https://www.drinksmixer.com/drink2542.html" }, { "directions": "Mix all ingredients in mixing glass and shake with ice. Strain into glass and shoot.", @@ -16133,7 +16133,7 @@ "Coca-Cola\u00ae" ], "title": "X recipe", - "url": "http://www.drinksmixer.com/drink2543.html" + "url": "https://www.drinksmixer.com/drink2543.html" }, { "directions": "Mix shot over ice in a mixing glass. Strain into shot glass.", @@ -16143,7 +16143,7 @@ "Chambord\u00ae raspberry liqueur" ], "title": "Y2K Shot #2 recipe", - "url": "http://www.drinksmixer.com/drink2544.html" + "url": "https://www.drinksmixer.com/drink2544.html" }, { "directions": "Serve in a chilled glass.", @@ -16152,7 +16152,7 @@ "Yukon Jack\u00ae Canadian whisky" ], "title": "Y2K Shot recipe", - "url": "http://www.drinksmixer.com/drink2545.html" + "url": "https://www.drinksmixer.com/drink2545.html" }, { "directions": "Combine the water and lemonade mix, following the directions on the lemonade mix. Add everclear and absolut vodka. Then add the lemon slices and shake to mix. Serve cold.", @@ -16164,7 +16164,7 @@ "water" ], "title": "Yaka recipe", - "url": "http://www.drinksmixer.com/drink2546.html" + "url": "https://www.drinksmixer.com/drink2546.html" }, { "directions": "Stir all ingredients with ice, strain into a cocktail glass, and serve.", @@ -16175,7 +16175,7 @@ "bitters" ], "title": "Yale Cocktail recipe", - "url": "http://www.drinksmixer.com/drink2547.html" + "url": "https://www.drinksmixer.com/drink2547.html" }, { "directions": "Mix 1 part apple schnapps with 1 part Yukon Jack and serve in shot glass.", @@ -16184,7 +16184,7 @@ "apple schnapps" ], "title": "Yaps recipe", - "url": "http://www.drinksmixer.com/drink2548.html" + "url": "https://www.drinksmixer.com/drink2548.html" }, { "directions": "Put in the Lime Juice then add three drops of angostrua bitters. Shake it up, and add the tonic.", @@ -16194,7 +16194,7 @@ "Angostura\u00ae bitters" ], "title": "Yellow Bellied Sap Sucker recipe", - "url": "http://www.drinksmixer.com/drink2549.html" + "url": "https://www.drinksmixer.com/drink2549.html" }, { "directions": "Pour Vodka into glass over ice followed by Creme de Banana, then top it up with Sprite & stir.\r", @@ -16204,7 +16204,7 @@ "Sprite\u00ae soda" ], "title": "Yellow Birdie recipe", - "url": "http://www.drinksmixer.com/drink2550.html" + "url": "https://www.drinksmixer.com/drink2550.html" }, { "directions": "Pour all the alcoholic ingredients in a highball glass. Stir sour mix in a mixer and fill the glass.", @@ -16215,7 +16215,7 @@ "sweet and sour mix" ], "title": "Yellow Bird recipe", - "url": "http://www.drinksmixer.com/drink2551.html" + "url": "https://www.drinksmixer.com/drink2551.html" }, { "directions": "Shake with ice and strain into a shot glass.", @@ -16225,7 +16225,7 @@ "pineapple juice" ], "title": "Yellow Cake recipe", - "url": "http://www.drinksmixer.com/drink2552.html" + "url": "https://www.drinksmixer.com/drink2552.html" }, { "directions": "It is best to use a large cooler with a spout. The amount of Vodka and Gin you use depends on the size of your cooler. Add the ingredients to your prefered taste.", @@ -16237,7 +16237,7 @@ "ice cubes" ], "title": "Yellow Motherfuckers recipe", - "url": "http://www.drinksmixer.com/drink2553.html" + "url": "https://www.drinksmixer.com/drink2553.html" }, { "directions": "Fill glass with ice and build drink top with splash of sour.", @@ -16250,7 +16250,7 @@ "sweet and sour mix" ], "title": "Yellow Parakeet recipe", - "url": "http://www.drinksmixer.com/drink2554.html" + "url": "https://www.drinksmixer.com/drink2554.html" }, { "directions": "Stir with ice in a mixing glass. Strain into chilled cocktail glass.", @@ -16260,7 +16260,7 @@ "anisette" ], "title": "Yellow Parrot recipe", - "url": "http://www.drinksmixer.com/drink2555.html" + "url": "https://www.drinksmixer.com/drink2555.html" }, { "directions": "Shake all ingredients (except cocktail onion) with ice and strain into a cocktail glass. Add the cocktail onion and serve.", @@ -16272,7 +16272,7 @@ "onion" ], "title": "Yellow Rattler recipe", - "url": "http://www.drinksmixer.com/drink2556.html" + "url": "https://www.drinksmixer.com/drink2556.html" }, { "directions": "Add the vodka along with the pisang ambon. Fill with orange juice and stir.", @@ -16282,7 +16282,7 @@ "orange juice" ], "title": "Yellow Sock recipe", - "url": "http://www.drinksmixer.com/drink2557.html" + "url": "https://www.drinksmixer.com/drink2557.html" }, { "directions": "Shake all ingredients (except banana slice) with ice and strain into a chilled whiskey sour glass. Garnish with the banana slice and serve.", @@ -16294,7 +16294,7 @@ "banana" ], "title": "Yellow Strawberry recipe", - "url": "http://www.drinksmixer.com/drink2558.html" + "url": "https://www.drinksmixer.com/drink2558.html" }, { "directions": "Fill glass with Tequila, then club soda, then squeze a slice of lemon, toss in and add one ice cube, stir, drink, enjoy.", @@ -16304,7 +16304,7 @@ "lemon" ], "title": "YIP! recipe", - "url": "http://www.drinksmixer.com/drink2559.html" + "url": "https://www.drinksmixer.com/drink2559.html" }, { "directions": "Pour vodka over ice in a highball glass. Add soda, top with a splash of orange juice, and serve.", @@ -16314,7 +16314,7 @@ "orange juice" ], "title": "Yo Mama Cocktail recipe", - "url": "http://www.drinksmixer.com/drink2560.html" + "url": "https://www.drinksmixer.com/drink2560.html" }, { "directions": "Mix the Sour Mix and Blue Curacao together in a shaker, or if you don't have a shaker, two identical glasses will work if you are careful. \r", @@ -16327,7 +16327,7 @@ "ice" ], "title": "Yoda recipe", - "url": "http://www.drinksmixer.com/drink2561.html" + "url": "https://www.drinksmixer.com/drink2561.html" }, { "directions": "Place all ingredients into a blender jar. Cover, and whiz on medium speed until well blended. Pour into a collins glass, and serve.\r\n", @@ -16336,7 +16336,7 @@ "fruits" ], "title": "Yoghurt Cooler recipe", - "url": "http://www.drinksmixer.com/drink2562.html" + "url": "https://www.drinksmixer.com/drink2562.html" }, { "directions": "Shake all ingredients (except orange peel) with ice and strain into a cocktail glass. Add the twist of orange peel and serve.", @@ -16349,7 +16349,7 @@ "orange" ], "title": "Yolanda recipe", - "url": "http://www.drinksmixer.com/drink2563.html" + "url": "https://www.drinksmixer.com/drink2563.html" }, { "directions": "Combine all ingredients in a highball glass. Adjust sour mix for a stiffer or weaker drink.", @@ -16359,7 +16359,7 @@ "crushed ice" ], "title": "YoYo Blow Out recipe", - "url": "http://www.drinksmixer.com/drink2564.html" + "url": "https://www.drinksmixer.com/drink2564.html" }, { "directions": "Put the Vodka and the sugar into a container. Slice 10 lemons and 10 limes and add them to the Vodka. Mix for 10 minutes or until the sugar has dissolved.", @@ -16371,7 +16371,7 @@ "ice" ], "title": "Yucca recipe", - "url": "http://www.drinksmixer.com/drink2565.html" + "url": "https://www.drinksmixer.com/drink2565.html" }, { "directions": "In a shot glass pour the Yukon Jack to just below the rim. Add Goldschlager, filling the glass to full. Enjoy.", @@ -16380,7 +16380,7 @@ "Goldschlager\u00ae cinnamon schnapps" ], "title": "Yukon Cornelius recipe", - "url": "http://www.drinksmixer.com/drink2566.html" + "url": "https://www.drinksmixer.com/drink2566.html" }, { "directions": "Just mix and drink.", @@ -16390,7 +16390,7 @@ "ice cubes" ], "title": "Yukon Dew Me recipe", - "url": "http://www.drinksmixer.com/drink2567.html" + "url": "https://www.drinksmixer.com/drink2567.html" }, { "directions": "Combine ingredients in highball glass and stir.", @@ -16401,7 +16401,7 @@ "ice" ], "title": "Yummy Bidnis recipe", - "url": "http://www.drinksmixer.com/drink2568.html" + "url": "https://www.drinksmixer.com/drink2568.html" }, { "directions": "Shake all on ice and strain into a highball glass.", @@ -16413,7 +16413,7 @@ "half-and-half" ], "title": "Yuppidoo recipe", - "url": "http://www.drinksmixer.com/drink2569.html" + "url": "https://www.drinksmixer.com/drink2569.html" }, { "directions": "Pour a dash of angostura bitters into the bottom of the glass. Add gin and dubonnet. Stir.", @@ -16423,7 +16423,7 @@ "Angostura\u00ae bitters" ], "title": "Za Za recipe", - "url": "http://www.drinksmixer.com/drink2570.html" + "url": "https://www.drinksmixer.com/drink2570.html" }, { "directions": "Fill glass with ice cubes. Add absolut mandrin, triple sec, and sour mix. Add a splash of cranberry juice, and pineapple. Shake, and top with a splash of lemon-lime soda.", @@ -16437,7 +16437,7 @@ "ice cubes" ], "title": "Zadarade recipe", - "url": "http://www.drinksmixer.com/drink2571.html" + "url": "https://www.drinksmixer.com/drink2571.html" }, { "directions": "Mix sambuca with rootbeer and stir. Add ice.", @@ -16446,7 +16446,7 @@ "root beer" ], "title": "Zambeer recipe", - "url": "http://www.drinksmixer.com/drink2572.html" + "url": "https://www.drinksmixer.com/drink2572.html" }, { "directions": "Mix together and enjoy.", @@ -16455,7 +16455,7 @@ "root beer" ], "title": "Zenmeister recipe", - "url": "http://www.drinksmixer.com/drink2573.html" + "url": "https://www.drinksmixer.com/drink2573.html" }, { "directions": "Serve without ice. The juice should be at room temperature.", @@ -16464,7 +16464,7 @@ "apple juice" ], "title": "Ziemes Martini Apfelsaft recipe", - "url": "http://www.drinksmixer.com/drink2574.html" + "url": "https://www.drinksmixer.com/drink2574.html" }, { "directions": "Fill glass with ice. Pour in Chambord, then fill with Zima. Mix and enjoy.", @@ -16473,7 +16473,7 @@ "Chambord\u00ae raspberry liqueur" ], "title": "Zima Blaster recipe", - "url": "http://www.drinksmixer.com/drink2575.html" + "url": "https://www.drinksmixer.com/drink2575.html" }, { "directions": "Pour Zima in a collins glass over ice and then pour the shot of Midori - don't stir. Garnish with a cherry.", @@ -16482,7 +16482,7 @@ "Zima" ], "title": "Zimadori Zinger recipe", - "url": "http://www.drinksmixer.com/drink2576.html" + "url": "https://www.drinksmixer.com/drink2576.html" }, { "directions": "Put the first six ingredients in a shaker glass without ice and shake until frothy. Fill glass with ice and pour Zima and the contents of the shaker glass at the time so it is a one-to-one ratio. Stir and serve. Makes about four drinks.(depending on the ice)\r", @@ -16496,7 +16496,7 @@ "Zima" ], "title": "Zimamazing recipe", - "url": "http://www.drinksmixer.com/drink2577.html" + "url": "https://www.drinksmixer.com/drink2577.html" }, { "directions": "Pour about 2 ounces of Amaretto into a 16 oz. glass and fill with Zima.", @@ -16505,7 +16505,7 @@ "Zima" ], "title": "Zimaretto recipe", - "url": "http://www.drinksmixer.com/drink2578.html" + "url": "https://www.drinksmixer.com/drink2578.html" }, { "directions": "Pour together over 2-3 ice cubes and serve.", @@ -16514,7 +16514,7 @@ "Zima" ], "title": "Zimartini recipe", - "url": "http://www.drinksmixer.com/drink2579.html" + "url": "https://www.drinksmixer.com/drink2579.html" }, { "directions": "Get a shot glass and pour in three shots of the Schnapps. Do the same with the Surge Cola. Then down it like Scheetz would.\r", @@ -16523,7 +16523,7 @@ "Surge\u00ae citrus soda" ], "title": "Zinger recipe", - "url": "http://www.drinksmixer.com/drink2580.html" + "url": "https://www.drinksmixer.com/drink2580.html" }, { "directions": "Fill glass with rocks, add straw before putting in liquor. Then add the ingredients in order, trying to keep layered as much as possible (i.e. Chambord on bottom, then Vodka, then soda on top).", @@ -16533,7 +16533,7 @@ "soda water" ], "title": "Zipperhead recipe", - "url": "http://www.drinksmixer.com/drink2581.html" + "url": "https://www.drinksmixer.com/drink2581.html" }, { "directions": "Combine all ingredients in a shaker with ice and stir to chill. Strain into shot glass.", @@ -16543,7 +16543,7 @@ "cream" ], "title": "Zipper recipe", - "url": "http://www.drinksmixer.com/drink2582.html" + "url": "https://www.drinksmixer.com/drink2582.html" }, { "directions": "Mix Kool-Aid to taste then add Rum and Amaretto. Shake well to dissolve the sugar into the Kool-Aid. Serve cold.", @@ -16553,7 +16553,7 @@ "Kool-Aid\u00ae Grape mix" ], "title": "Zippy's Revenge recipe", - "url": "http://www.drinksmixer.com/drink2583.html" + "url": "https://www.drinksmixer.com/drink2583.html" }, { "directions": "Pour 5 cl of Cointreau on ice, add 2 cl of fresh lemon (or lime) juice, stir gently, and finally add slices of lemon/lime in glass.", @@ -16564,7 +16564,7 @@ "ice cubes" ], "title": "Zizi Coin-Coin recipe", - "url": "http://www.drinksmixer.com/drink2584.html" + "url": "https://www.drinksmixer.com/drink2584.html" }, { "directions": "No specific mixing instructions, just poor every ingredient in one glass, experiment to taste. The lemon goes with it.", @@ -16578,7 +16578,7 @@ "lemon" ], "title": "Zoksel recipe", - "url": "http://www.drinksmixer.com/drink2585.html" + "url": "https://www.drinksmixer.com/drink2585.html" }, { "directions": "Shake all ingredients (except 151 proof rum) with ice and strain into a collins glass over ice cubes. Float the 151 proof rum on top, add a cherry (if desired), and serve.", @@ -16591,7 +16591,7 @@ "151 proof rum" ], "title": "Zombie #2 recipe", - "url": "http://www.drinksmixer.com/drink2586.html" + "url": "https://www.drinksmixer.com/drink2586.html" }, { "directions": "Shake over ice in a shaker, and strain into a large highball glass over crushed ice.", @@ -16605,7 +16605,7 @@ "151 proof rum" ], "title": "Zombie #3 recipe", - "url": "http://www.drinksmixer.com/drink2587.html" + "url": "https://www.drinksmixer.com/drink2587.html" }, { "directions": "Shake all ingredients (except the high-proof rum) over ice, the pineapple stick and the sugar. Strain and add ice. Garnish with pineapple and a cherry. Float the high-proof rum on top and sprinkle a little sugar over it.", @@ -16622,7 +16622,7 @@ "powdered sugar" ], "title": "Zombie #4 recipe", - "url": "http://www.drinksmixer.com/drink2588.html" + "url": "https://www.drinksmixer.com/drink2588.html" }, { "directions": "Strain ingredients into collins glass filled with ice. Top with 151 Proof Rum.", @@ -16635,7 +16635,7 @@ "151 proof rum" ], "title": "Zombie #5 recipe", - "url": "http://www.drinksmixer.com/drink2589.html" + "url": "https://www.drinksmixer.com/drink2589.html" }, { "directions": "Mixed in a shaker on ice. Serve in a tumbler on crushed ice.", @@ -16649,7 +16649,7 @@ "151 proof rum" ], "title": "Zombie #6 recipe", - "url": "http://www.drinksmixer.com/drink2590.html" + "url": "https://www.drinksmixer.com/drink2590.html" }, { "directions": "Shake ingredients over ice. Strain into shot glass.", @@ -16661,7 +16661,7 @@ "cream" ], "title": "Zoo Station recipe", - "url": "http://www.drinksmixer.com/drink2591.html" + "url": "https://www.drinksmixer.com/drink2591.html" }, { "directions": "Fill beer glass 3/4 full of beer, slowly pour tomato juice down the side so it settles on the bottom. Shake salt in the palm of your hand. Throw salt into the glass and wait until the top foams up. Chug the drink and then scream \"UGLY\"!", @@ -16670,7 +16670,7 @@ "beer" ], "title": "Ugly recipe", - "url": "http://www.drinksmixer.com/drink2592.html" + "url": "https://www.drinksmixer.com/drink2592.html" }, { "directions": "Stir all ingredients with ice, strain into a cocktail glass, and serve.", @@ -16680,7 +16680,7 @@ "triple sec" ], "title": "Ulanda Cocktail recipe", - "url": "http://www.drinksmixer.com/drink2593.html" + "url": "https://www.drinksmixer.com/drink2593.html" }, { "directions": "Pour ingredient into a blender, over the ice, in order listed. Blend on \"high\" for a few seconds until drink has a consistancy a bit icier than a slurpee. Take lime wedge and run it over the edges of the margarita glass, then, upturned, place the wetted rims into course salt. Pour the now ready margarita into the now salted glasses and serve.", @@ -16691,7 +16691,7 @@ "ice" ], "title": "Ultimate Blue Frozen Margarita recipe", - "url": "http://www.drinksmixer.com/drink2594.html" + "url": "https://www.drinksmixer.com/drink2594.html" }, { "directions": "Blend all ingredients and pour over ice.", @@ -16703,7 +16703,7 @@ "pineapple juice" ], "title": "Ultimate June Bug recipe", - "url": "http://www.drinksmixer.com/drink2595.html" + "url": "https://www.drinksmixer.com/drink2595.html" }, { "directions": "Pour tequila, cointreau, and sweet & sour over crushed ice. Add lime juice. Can be made frozen by putting in a blender with 3 cups ice.", @@ -16714,7 +16714,7 @@ "limes" ], "title": "Ultimate Margarita recipe", - "url": "http://www.drinksmixer.com/drink2596.html" + "url": "https://www.drinksmixer.com/drink2596.html" }, { "directions": "Place all ingredients, except grated chocolate, in a blender and blend until smooth. Pour into glass and sprinkle with grated chocolate.", @@ -16729,7 +16729,7 @@ "chocolate" ], "title": "Ultimate Mudslide recipe", - "url": "http://www.drinksmixer.com/drink2597.html" + "url": "https://www.drinksmixer.com/drink2597.html" }, { "directions": "Add Blue curacao then top up with Champagne and garnish with a grape or strawberry.", @@ -16738,7 +16738,7 @@ "Champagne" ], "title": "Ultra-Marine recipe", - "url": "http://www.drinksmixer.com/drink2598.html" + "url": "https://www.drinksmixer.com/drink2598.html" }, { "directions": "Mix all ingredients in a shaker. Serve with straw and ice cubes, put a cocktail umbrella beside the straw in the glass.", @@ -16750,7 +16750,7 @@ "Drambuie\u00ae Scotch whisky" ], "title": "Umbrella Man Special recipe", - "url": "http://www.drinksmixer.com/drink2599.html" + "url": "https://www.drinksmixer.com/drink2599.html" }, { "directions": "Mix all ingredients, place in shot glass. Introduce to mouth.", @@ -16761,7 +16761,7 @@ "lime juice" ], "title": "Unabomber recipe", - "url": "http://www.drinksmixer.com/drink2600.html" + "url": "https://www.drinksmixer.com/drink2600.html" }, { "directions": "Mix everything except Chambord in a mixing tin, and pour into glass. Layer Chambord on top with a spoon.", @@ -16774,7 +16774,7 @@ "Chambord\u00ae raspberry liqueur" ], "title": "Under Current recipe", - "url": "http://www.drinksmixer.com/drink2601.html" + "url": "https://www.drinksmixer.com/drink2601.html" }, { "directions": "Shake the absolut kurant, blue curacao, and pineapple juice with ice. Pour into a shot or low-ball glass, be sure and leave a bit of room to spare. Add just enough chambord to color the bottom of the glass.", @@ -16785,7 +16785,7 @@ "Chambord\u00ae raspberry liqueur" ], "title": "Under Kurant recipe", - "url": "http://www.drinksmixer.com/drink2602.html" + "url": "https://www.drinksmixer.com/drink2602.html" }, { "directions": "Pour schnapps, then curacao into the glass. Do not mix.", @@ -16794,7 +16794,7 @@ "raspberry schnapps" ], "title": "Undertow recipe", - "url": "http://www.drinksmixer.com/drink2603.html" + "url": "https://www.drinksmixer.com/drink2603.html" }, { "directions": "Pour all ingredients into cocktail shaker, shake & strain into martini glass or champagne cup. Garnish with red straws & tacky plastic animals (preferably horses or mermaids) Add parasols & slice of orange if available.", @@ -16808,7 +16808,7 @@ "milk" ], "title": "Unicorn recipe", - "url": "http://www.drinksmixer.com/drink2604.html" + "url": "https://www.drinksmixer.com/drink2604.html" }, { "directions": "Shake all ingredients with ice, strain into a cocktail glass, and serve.", @@ -16818,7 +16818,7 @@ "grenadine syrup" ], "title": "Union Jack Cocktail recipe", - "url": "http://www.drinksmixer.com/drink2605.html" + "url": "https://www.drinksmixer.com/drink2605.html" }, { "directions": "Blend vodka and cointreau in a shotglass. Set the drink on fire with a match. Put the piece of sugar on a fork and hold it over the flame from the drink and let it melt down into the glass. When the sugar has melted, use the palm of your hand to put out the flame.", @@ -16828,7 +16828,7 @@ "vodka" ], "title": "Unknown Warrior recipe", - "url": "http://www.drinksmixer.com/drink2606.html" + "url": "https://www.drinksmixer.com/drink2606.html" }, { "directions": "Pour Red Bull into a Collins Glass. Pour a shot of J\ufffdgermeister into a shot glass. When ready to drink, drop the shot into the collins glass and drink.", @@ -16837,7 +16837,7 @@ "Jagermeister\u00ae herbal liqueur" ], "title": "Up All Night recipe", - "url": "http://www.drinksmixer.com/drink2607.html" + "url": "https://www.drinksmixer.com/drink2607.html" }, { "directions": "Just like an irish coffey. Wait till it has cooled a bit. Drink all in one move.", @@ -16848,7 +16848,7 @@ "brown sugar" ], "title": "Upper Cut recipe", - "url": "http://www.drinksmixer.com/drink2608.html" + "url": "https://www.drinksmixer.com/drink2608.html" }, { "directions": "Use strawberry, orange or banana tropicana.\r", @@ -16859,7 +16859,7 @@ "Blue Curacao liqueur" ], "title": "Urban Violence recipe", - "url": "http://www.drinksmixer.com/drink2609.html" + "url": "https://www.drinksmixer.com/drink2609.html" }, { "directions": "Strain over ice. Serve in a shot glass.", @@ -16869,7 +16869,7 @@ "vodka" ], "title": "Urine Sample #2 recipe", - "url": "http://www.drinksmixer.com/drink2610.html" + "url": "https://www.drinksmixer.com/drink2610.html" }, { "directions": "Just pour it in.", @@ -16878,7 +16878,7 @@ "sambuca" ], "title": "Urine Sample recipe", - "url": "http://www.drinksmixer.com/drink2611.html" + "url": "https://www.drinksmixer.com/drink2611.html" }, { "directions": "This drink can be made with ice, but it looks a lot better without it. I recommend just using chilled soda. Add rum first, then soda, then a few dashes of grenadine. Don't stir.", @@ -16888,7 +16888,7 @@ "grenadine syrup" ], "title": "USD Sunset recipe", - "url": "http://www.drinksmixer.com/drink2612.html" + "url": "https://www.drinksmixer.com/drink2612.html" }, { "directions": "Stir.", @@ -16899,7 +16899,7 @@ "lemon" ], "title": "The Usual recipe", - "url": "http://www.drinksmixer.com/drink2613.html" + "url": "https://www.drinksmixer.com/drink2613.html" }, { "directions": "Mix in glass and serve.", @@ -16911,7 +16911,7 @@ "Captain Morgan\u00ae Original spiced rum" ], "title": "Utar recipe", - "url": "http://www.drinksmixer.com/drink2614.html" + "url": "https://www.drinksmixer.com/drink2614.html" }, { "directions": "Two ice cubes, 2 oz of whisky, 1 shot of vodka, and fill the rest with coca cola.", @@ -16922,7 +16922,7 @@ "Coca-Cola\u00ae" ], "title": "C-MOB recipe", - "url": "http://www.drinksmixer.com/drink2615.html" + "url": "https://www.drinksmixer.com/drink2615.html" }, { "directions": "Shake ingredients in mixer. Garnish with 2 orange slices to give impression of C3PO's eyes.", @@ -16934,7 +16934,7 @@ "orange juice" ], "title": "C3PO recipe", - "url": "http://www.drinksmixer.com/drink2616.html" + "url": "https://www.drinksmixer.com/drink2616.html" }, { "directions": "Fill cup with ice. Add equal parts of all ingredients. Stir. Serve immediately.", @@ -16945,7 +16945,7 @@ "ice" ], "title": "CA Area 151 recipe", - "url": "http://www.drinksmixer.com/drink2617.html" + "url": "https://www.drinksmixer.com/drink2617.html" }, { "directions": "Blend with crushed ice.", @@ -16957,7 +16957,7 @@ "grenadine syrup" ], "title": "Cabana Club recipe", - "url": "http://www.drinksmixer.com/drink2618.html" + "url": "https://www.drinksmixer.com/drink2618.html" }, { "directions": "In a shaker half-filled with ice cubes, combine the gin, vermouth, benedictine, and bitters. Shake well. Strain into a cocktail glass and garnish with the cherry.", @@ -16969,7 +16969,7 @@ "maraschino cherry" ], "title": "Cabaret recipe", - "url": "http://www.drinksmixer.com/drink2619.html" + "url": "https://www.drinksmixer.com/drink2619.html" }, { "directions": "Mix in a pitcher or individually:\r", @@ -16979,7 +16979,7 @@ "Fresca\u00ae grapefruit soda" ], "title": "Cable Guide recipe", - "url": "http://www.drinksmixer.com/drink2620.html" + "url": "https://www.drinksmixer.com/drink2620.html" }, { "directions": "Stir blended whiskey, juice of lemon, and powdered sugar with ice cubes in a highball glass. Fill with ginger ale, stir, and serve.", @@ -16990,7 +16990,7 @@ "ginger ale" ], "title": "Cablegram recipe", - "url": "http://www.drinksmixer.com/drink2621.html" + "url": "https://www.drinksmixer.com/drink2621.html" }, { "directions": "Shake with ice and pour into large salt-rimmed cocktail or margarita glass.", @@ -17003,7 +17003,7 @@ "lime juice" ], "title": "Cactus Berry recipe", - "url": "http://www.drinksmixer.com/drink2622.html" + "url": "https://www.drinksmixer.com/drink2622.html" }, { "directions": "In a shaker half-filled with ice cubes, combine all of the ingredients. Shake well. Strain into a cocktail glass.", @@ -17016,7 +17016,7 @@ "bitters" ], "title": "Cactus Bite recipe", - "url": "http://www.drinksmixer.com/drink2623.html" + "url": "https://www.drinksmixer.com/drink2623.html" }, { "directions": "Blend all ingredients with ice. Serve in margarita glass on rocks.\r", @@ -17028,7 +17028,7 @@ "amaretto almond liqueur" ], "title": "Cactus Bowl recipe", - "url": "http://www.drinksmixer.com/drink2624.html" + "url": "https://www.drinksmixer.com/drink2624.html" }, { "directions": "Fill glass with ice. Pour ingredients in order.", @@ -17038,7 +17038,7 @@ "sweet and sour mix" ], "title": "Cactus Juice recipe", - "url": "http://www.drinksmixer.com/drink2625.html" + "url": "https://www.drinksmixer.com/drink2625.html" }, { "directions": "Combine first 3 ingredient into a shaker with ice. Shake well. Pour into a salt-rimmed margarita glass and garnish with a lime wedge.", @@ -17050,7 +17050,7 @@ "salt" ], "title": "Cadalac Margarita recipe", - "url": "http://www.drinksmixer.com/drink2626.html" + "url": "https://www.drinksmixer.com/drink2626.html" }, { "directions": "Shake all ingredients with ice, strain into a cocktail glass, and serve.", @@ -17061,7 +17061,7 @@ "egg" ], "title": "Cafe de Paris Cocktail recipe", - "url": "http://www.drinksmixer.com/drink2627.html" + "url": "https://www.drinksmixer.com/drink2627.html" }, { "directions": "Fill mug almost to top with coffee. Add milk if desired, then triple sec and brandy. Stir.", @@ -17072,7 +17072,7 @@ "brandy" ], "title": "Cafe Savoy recipe", - "url": "http://www.drinksmixer.com/drink2628.html" + "url": "https://www.drinksmixer.com/drink2628.html" }, { "directions": "Measure irish cream and vodka into coffee mug. Add hershey's chocolate syrup. Fill will coffee and top with whipping cream.", @@ -17084,7 +17084,7 @@ "whipping cream" ], "title": "Cafe Seattle recipe", - "url": "http://www.drinksmixer.com/drink2629.html" + "url": "https://www.drinksmixer.com/drink2629.html" }, { "directions": "Add the three liquors and then add the coffee. Top with whip cream and toasted coconut.", @@ -17095,7 +17095,7 @@ "coffee" ], "title": "Cafe' Joy recipe", - "url": "http://www.drinksmixer.com/drink2630.html" + "url": "https://www.drinksmixer.com/drink2630.html" }, { "directions": "Fill blender with coffee ice-cream and the amount of kahula to your desire. Blend until drinkable, pour into a beer mug and garnish with a cinnamon stick.", @@ -17104,7 +17104,7 @@ "coffee ice cream" ], "title": "Caffeine Attack recipe", - "url": "http://www.drinksmixer.com/drink2631.html" + "url": "https://www.drinksmixer.com/drink2631.html" }, { "directions": "Muddle the sugar into the lime wedges in an old-fashioned glass. Fill the glass with ice cubes. Pour the cachaca into the glass. Stir well.", @@ -17114,7 +17114,7 @@ "Sagatiba Pura" ], "title": "Caipirinha recipe", - "url": "http://www.drinksmixer.com/drink2632.html" + "url": "https://www.drinksmixer.com/drink2632.html" }, { "directions": "Same as caipirinha but instead of cachaca you add white rum. It's great!", @@ -17125,7 +17125,7 @@ "crushed ice" ], "title": "Caipirissima recipe", - "url": "http://www.drinksmixer.com/drink2633.html" + "url": "https://www.drinksmixer.com/drink2633.html" }, { "directions": "Crush sugar into the lime wedges with a spoon. Place the lime wedges in the bottom of an 8 oz. glass. Cover with crushed ice, fill glass with vodka, and serve.", @@ -17135,7 +17135,7 @@ "sugar" ], "title": "Caipiroska recipe", - "url": "http://www.drinksmixer.com/drink2634.html" + "url": "https://www.drinksmixer.com/drink2634.html" }, { "directions": "Pour Southern Comfort and Bourbon over rocks in a 12-ounce glass. Add a dash of tabasco, or any non-habe\ufffdero pepper sauce (dont go overboard). To really impress, garnish with a jumbo shrimp.", @@ -17145,7 +17145,7 @@ "Tabasco\u00ae sauce" ], "title": "Cajun Comforter recipe", - "url": "http://www.drinksmixer.com/drink2635.html" + "url": "https://www.drinksmixer.com/drink2635.html" }, { "directions": "Garnish with jalapeno pepper.", @@ -17154,7 +17154,7 @@ "vermouth" ], "title": "Cajun Martini recipe", - "url": "http://www.drinksmixer.com/drink2636.html" + "url": "https://www.drinksmixer.com/drink2636.html" }, { "directions": "In a mixing glass half-filled with ice cubes, combine all of the ingredients. Stir well. Strain into a cocktail glass.", @@ -17164,7 +17164,7 @@ "white creme de cacao" ], "title": "Caleigh recipe", - "url": "http://www.drinksmixer.com/drink2637.html" + "url": "https://www.drinksmixer.com/drink2637.html" }, { "directions": "In a mixing glass half-filled with ice cubes, combine the tequila, sweet vermouth, and dry vermouth. Stir well. Strain into a cocktail glass and garnish with the cherry.", @@ -17175,7 +17175,7 @@ "maraschino cherry" ], "title": "California Dream recipe", - "url": "http://www.drinksmixer.com/drink2638.html" + "url": "https://www.drinksmixer.com/drink2638.html" }, { "directions": "Shake all ingredients (except carbonated water) with ice and strain into a collins glass over shaved ice. Fill with carbonated water and stir. Decorate with slices of orange and lemon. Add the cherry and serve with a straw.", @@ -17191,7 +17191,7 @@ "carbonated water" ], "title": "California Lemonade recipe", - "url": "http://www.drinksmixer.com/drink2639.html" + "url": "https://www.drinksmixer.com/drink2639.html" }, { "directions": "Mix equal parts of Southern Comfort, Malibu Rum, an Amaretto in a mixing tin over ice. Add a splash or sour mix, grenadine, and 7-up. Shake well. Can be served over ice or as a shot.", @@ -17204,7 +17204,7 @@ "grenadine syrup" ], "title": "California Rattle Snake recipe", - "url": "http://www.drinksmixer.com/drink2640.html" + "url": "https://www.drinksmixer.com/drink2640.html" }, { "directions": "Fill the highball glass with ice, then half fill it with red wine, and half fill it with coca-cola. Enjoy.", @@ -17213,7 +17213,7 @@ "Coca-Cola\u00ae" ], "title": "Calimocho Torreon Special recipe", - "url": "http://www.drinksmixer.com/drink2643.html" + "url": "https://www.drinksmixer.com/drink2643.html" }, { "directions": "Blend with ice and pour into cocktail glass. Sprinkle grated nutmeg on top.", @@ -17225,7 +17225,7 @@ "nutmeg" ], "title": "Call of the Snowfields (Lumikenttien Kutsu) recipe", - "url": "http://www.drinksmixer.com/drink2644.html" + "url": "https://www.drinksmixer.com/drink2644.html" }, { "directions": "Combine all ingredients with 1/2 cup crushed ice in an electric blender and blend at a low speed for a short length of time. Pour into a champagne flute and serve.", @@ -17237,7 +17237,7 @@ "egg" ], "title": "Calm Voyage recipe", - "url": "http://www.drinksmixer.com/drink2645.html" + "url": "https://www.drinksmixer.com/drink2645.html" }, { "directions": "Pour directly in the shot glass and mix the ingredients. No need to chill. Serve.", @@ -17246,7 +17246,7 @@ "coffee liqueur" ], "title": "Calypso recipe", - "url": "http://www.drinksmixer.com/drink2646.html" + "url": "https://www.drinksmixer.com/drink2646.html" }, { "directions": "Pour Butterscotch Schnapps into a shot glass 3/4 of the way full. Fill rest of drink with Bailey's Irish Cream.", @@ -17255,7 +17255,7 @@ "Bailey's\u00ae Irish cream" ], "title": "Camel Hump recipe", - "url": "http://www.drinksmixer.com/drink2647.html" + "url": "https://www.drinksmixer.com/drink2647.html" }, { "directions": "Squeeze lime wedge over ice. Pour in rum, fruit juice, and coca-cola. Stir lightly. Add club soda or tonic to taste.\r", @@ -17267,7 +17267,7 @@ "club soda" ], "title": "Camen Miranda recipe", - "url": "http://www.drinksmixer.com/drink2648.html" + "url": "https://www.drinksmixer.com/drink2648.html" }, { "directions": "Use a 15 oz glass. Add Campari first. Fill with beer.", @@ -17276,7 +17276,7 @@ "Campari\u00ae bitters" ], "title": "Campari Beer recipe", - "url": "http://www.drinksmixer.com/drink2649.html" + "url": "https://www.drinksmixer.com/drink2649.html" }, { "directions": "Pour cold milk in a pot. Slowly add orange juice. Finally add campari. Stir really well. Put ice cubes in glass and pour in the milk-shake. Garnish with a slice of orange. Serve with a straw.\r", @@ -17288,7 +17288,7 @@ "orange" ], "title": "Campari Milkshake recipe", - "url": "http://www.drinksmixer.com/drink2650.html" + "url": "https://www.drinksmixer.com/drink2650.html" }, { "directions": "Mix over ice in highball glass.", @@ -17297,7 +17297,7 @@ "orange juice" ], "title": "Campari Orange recipe", - "url": "http://www.drinksmixer.com/drink2651.html" + "url": "https://www.drinksmixer.com/drink2651.html" }, { "directions": "Pour the tequila, orange juice, and pineapple juice into a highball glass almost filled with ice cubes. Stir well. Drop the Chambord into the center of the drink.", @@ -17308,7 +17308,7 @@ "Chambord\u00ae raspberry liqueur" ], "title": "Campbell F. Craig recipe", - "url": "http://www.drinksmixer.com/drink2652.html" + "url": "https://www.drinksmixer.com/drink2652.html" }, { "directions": "Cut the lime into 8 wedges and place in an old-fashioned glass. Sprinkle with granulated white sugar and crush together. Fill with crushed ice, add tequila. Serve with two small straws.", @@ -17318,7 +17318,7 @@ "lime" ], "title": "Campesina recipe", - "url": "http://www.drinksmixer.com/drink2653.html" + "url": "https://www.drinksmixer.com/drink2653.html" }, { "directions": "Lightly beat the cream adding a few drops of the vanilla extract. \r", @@ -17332,7 +17332,7 @@ "sugar" ], "title": "Campton Place Cafe Sonia recipe", - "url": "http://www.drinksmixer.com/drink2654.html" + "url": "https://www.drinksmixer.com/drink2654.html" }, { "directions": "Shake all liquid ingredients with ice and strain over ice cubes. Serve with straw.", @@ -17343,7 +17343,7 @@ "ice cubes" ], "title": "Canada Dream recipe", - "url": "http://www.drinksmixer.com/drink2655.html" + "url": "https://www.drinksmixer.com/drink2655.html" }, { "directions": "Shake all ingredients and strain into an old-fashioned glass over ice cubes. Moisten rim of glass with cherry brandy and serve.", @@ -17354,7 +17354,7 @@ "lemon juice" ], "title": "Canadian Cherry recipe", - "url": "http://www.drinksmixer.com/drink2656.html" + "url": "https://www.drinksmixer.com/drink2656.html" }, { "directions": "Shake all ingredients with ice, strain into a cocktail glass, and serve.", @@ -17365,7 +17365,7 @@ "powdered sugar" ], "title": "Canadian Cocktail recipe", - "url": "http://www.drinksmixer.com/drink2657.html" + "url": "https://www.drinksmixer.com/drink2657.html" }, { "directions": "Place 3/4 oz. of Crown Royal into an old-fashioned glass. Add 2.5 oz. of warmed Canadian Apple Cider. Add crushed ice if preferred.", @@ -17374,7 +17374,7 @@ "Canadian apple cider" ], "title": "Canadian Funky Electric Cider recipe", - "url": "http://www.drinksmixer.com/drink2658.html" + "url": "https://www.drinksmixer.com/drink2658.html" }, { "directions": "Pour the amaretto into the jar. Follow it up by pouring a chilled beer (Canadian if possible). Then top it off with the Coke.", @@ -17384,7 +17384,7 @@ "Coca-Cola\u00ae" ], "title": "The Canadian Gulp recipe", - "url": "http://www.drinksmixer.com/drink2659.html" + "url": "https://www.drinksmixer.com/drink2659.html" }, { "directions": "Mix together in shot glass and \"discharge\" into mouth!", @@ -17393,7 +17393,7 @@ "Wild Turkey\u00ae bourbon whiskey" ], "title": "Canadian Hunter recipe", - "url": "http://www.drinksmixer.com/drink2660.html" + "url": "https://www.drinksmixer.com/drink2660.html" }, { "directions": "Shake well and pour over ice or \"up\" in a martini glass. Garnish with cherry.", @@ -17403,7 +17403,7 @@ "cherry" ], "title": "Canadian Manhattan recipe", - "url": "http://www.drinksmixer.com/drink2661.html" + "url": "https://www.drinksmixer.com/drink2661.html" }, { "directions": "Shake all ingredients (except pineapple stick) with ice and strain into an old-fashioned glass over ice cubes. Add the pineapple stick and serve.", @@ -17415,7 +17415,7 @@ "pineapple" ], "title": "Canadian Pineapple recipe", - "url": "http://www.drinksmixer.com/drink2662.html" + "url": "https://www.drinksmixer.com/drink2662.html" }, { "directions": "Bring water to a boil, then add sugar. Stir until sugar is dissolved. Remove from heat and add rum and lemon juice. Serve with ice.", @@ -17426,7 +17426,7 @@ "water" ], "title": "Canadian Rum Punch recipe", - "url": "http://www.drinksmixer.com/drink2663.html" + "url": "https://www.drinksmixer.com/drink2663.html" }, { "directions": "Fill collins glass halfway up with ice. Add white and dark rum. Fill up with half orange- half lemon juice. Pour grenadine and curacao along rim of glass. Top with 151 proof rum.", @@ -17440,7 +17440,7 @@ "lemon juice" ], "title": "Canadian Zombie recipe", - "url": "http://www.drinksmixer.com/drink2664.html" + "url": "https://www.drinksmixer.com/drink2664.html" }, { "directions": "Moisten rim of coffee mug with lime and dip rim in sugar. Pour liqueurs into mug and fill with coffee. Top with whipped cream.", @@ -17454,7 +17454,7 @@ "whipped cream" ], "title": "Cancun Coffee recipe", - "url": "http://www.drinksmixer.com/drink2665.html" + "url": "https://www.drinksmixer.com/drink2665.html" }, { "directions": "Fill Collins glass most of the way with ice. Add Yukon Jack and Midori. Fill with Sprite. Stir.", @@ -17465,7 +17465,7 @@ "ice" ], "title": "Candied Sever St. Special recipe", - "url": "http://www.drinksmixer.com/drink2666.html" + "url": "https://www.drinksmixer.com/drink2666.html" }, { "directions": "Pour Amaretto and Butterscotch in a glass with ice. Fill with apple juice.", @@ -17475,7 +17475,7 @@ "apple juice" ], "title": "Candy Apple #2 recipe", - "url": "http://www.drinksmixer.com/drink2667.html" + "url": "https://www.drinksmixer.com/drink2667.html" }, { "directions": "Blend kahlua, creme de cacao, and frangelico. Add cream. Serve with ice cubes in highball glass.", @@ -17486,7 +17486,7 @@ "Frangelico\u00ae hazelnut liqueur" ], "title": "Candy Bar recipe", - "url": "http://www.drinksmixer.com/drink2668.html" + "url": "https://www.drinksmixer.com/drink2668.html" }, { "directions": "In highball glass filled with ice, combine peppermint schnapps, white creme de cacao & grenadine. Fill glass with half-and-half. Top with 7-up. Garnish with a small candycane or filbert nuts. Great for the Holidays!", @@ -17498,7 +17498,7 @@ "7-Up\u00ae soda" ], "title": "Candy Cane recipe", - "url": "http://www.drinksmixer.com/drink2669.html" + "url": "https://www.drinksmixer.com/drink2669.html" }, { "directions": "Start with the vodka, 100 proof is important, then sweet and sour, etc. right in order. It naturally sets up a base for the grenadine to float through. The grenadine dash should top off the shot glass and filter down, leaving no grenadine on top. Tapping the shot while steadying the top of the glass helps this.", @@ -17510,7 +17510,7 @@ "Rose's\u00ae grenadine syrup" ], "title": "Candy Corn #2 recipe", - "url": "http://www.drinksmixer.com/drink2670.html" + "url": "https://www.drinksmixer.com/drink2670.html" }, { "directions": "Carefully layer on top of each other to resemble the halloween candy. First the Licor 43, then the orange curacao, then finally the cream.", @@ -17520,7 +17520,7 @@ "cream" ], "title": "Candy Corn recipe", - "url": "http://www.drinksmixer.com/drink2671.html" + "url": "https://www.drinksmixer.com/drink2671.html" }, { "directions": "Fill a tall glass with ice. Pour the 151 proof rum, dr. pepper and amaretto, stir, and serve.", @@ -17530,7 +17530,7 @@ "amaretto almond liqueur" ], "title": "Candy Cocktail recipe", - "url": "http://www.drinksmixer.com/drink2672.html" + "url": "https://www.drinksmixer.com/drink2672.html" }, { "directions": "Ice first, then add Bundaberg Rum, Kahlua and fill with Coca Cola.", @@ -17541,7 +17541,7 @@ "ice" ], "title": "Canecutter recipe", - "url": "http://www.drinksmixer.com/drink2673.html" + "url": "https://www.drinksmixer.com/drink2673.html" }, { "directions": "Pour club soda into a parfait glass with ice cubes. Pour vodka, melon liquer, and peach schnapps into a shaker and shake well. Strain into the club soda and stir. Garnish with cherry/orange/pineapple.", @@ -17552,7 +17552,7 @@ "club soda" ], "title": "Canteloupe Dizzy recipe", - "url": "http://www.drinksmixer.com/drink2674.html" + "url": "https://www.drinksmixer.com/drink2674.html" }, { "directions": "Mix in the lemonade with the Bacardi Limon. If it is a good lemonade you're using you can mix as much as half & half and not be able to taste the rum.", @@ -17561,7 +17561,7 @@ "lemonade" ], "title": "Cape Breton Lemonade recipe", - "url": "http://www.drinksmixer.com/drink2675.html" + "url": "https://www.drinksmixer.com/drink2675.html" }, { "directions": "Blend the Southern Comfort, cranberry juice, and ice in a blender. Pour and serve.", @@ -17571,7 +17571,7 @@ "ice" ], "title": "Cape Cod Crush recipe", - "url": "http://www.drinksmixer.com/drink2676.html" + "url": "https://www.drinksmixer.com/drink2676.html" }, { "directions": "Pour Vodka and Cranberry Juice into a highball glass over ice. Stir well, add the wedge of lime, and serve.", @@ -17581,7 +17581,7 @@ "lime" ], "title": "Cape Codder recipe", - "url": "http://www.drinksmixer.com/drink2677.html" + "url": "https://www.drinksmixer.com/drink2677.html" }, { "directions": "In a shaker half-filled with ice cubes, combine all of the ingredients. Shake well. Strain into a cocktail glass.", @@ -17593,7 +17593,7 @@ "orange bitters" ], "title": "Cape Of Good Will recipe", - "url": "http://www.drinksmixer.com/drink2678.html" + "url": "https://www.drinksmixer.com/drink2678.html" }, { "directions": "Pour. Shoot.", @@ -17602,7 +17602,7 @@ "amaretto almond liqueur" ], "title": "Capital Punishment recipe", - "url": "http://www.drinksmixer.com/drink2679.html" + "url": "https://www.drinksmixer.com/drink2679.html" }, { "directions": "Shake all ingredients well with cracked ice, strain into a cocktail glass, and serve.", @@ -17612,7 +17612,7 @@ "light cream" ], "title": "Cappucino Cocktail recipe", - "url": "http://www.drinksmixer.com/drink2680.html" + "url": "https://www.drinksmixer.com/drink2680.html" }, { "directions": "Shake all ingredients with ice, strain into an old-fashioned glass over ice cubes, and serve.", @@ -17622,7 +17622,7 @@ "light cream" ], "title": "Capri recipe", - "url": "http://www.drinksmixer.com/drink2681.html" + "url": "https://www.drinksmixer.com/drink2681.html" }, { "directions": "Stir well.", @@ -17632,7 +17632,7 @@ "root beer" ], "title": "Captain Climer recipe", - "url": "http://www.drinksmixer.com/drink2682.html" + "url": "https://www.drinksmixer.com/drink2682.html" }, { "directions": "In a shaker half-filled with ice cubes, combine all of the ingredients. Shake well. Strain into a cocktail glass.", @@ -17642,7 +17642,7 @@ "orange juice" ], "title": "Captain Cook recipe", - "url": "http://www.drinksmixer.com/drink2683.html" + "url": "https://www.drinksmixer.com/drink2683.html" }, { "directions": "Add captain morgan's to a blender. Add equal parts vanilla ice-cream and orange sherbert to taste, and blend well. Pour over ice in a medium glass, and serve.\r", @@ -17652,7 +17652,7 @@ "orange sherbet" ], "title": "Captain Creamsicle recipe", - "url": "http://www.drinksmixer.com/drink2684.html" + "url": "https://www.drinksmixer.com/drink2684.html" }, { "directions": "Pour all ingredients over ice, shake and strain into a rocks glass.", @@ -17664,7 +17664,7 @@ "grenadine syrup" ], "title": "Captain Crunch recipe", - "url": "http://www.drinksmixer.com/drink2685.html" + "url": "https://www.drinksmixer.com/drink2685.html" }, { "directions": "Pour rum into a large glass, and add soda/mountain dew.", @@ -17673,7 +17673,7 @@ "Mountain Dew\u00ae citrus soda" ], "title": "Captain Do recipe", - "url": "http://www.drinksmixer.com/drink2686.html" + "url": "https://www.drinksmixer.com/drink2686.html" }, { "directions": "Mix in order: \r", @@ -17683,7 +17683,7 @@ "vanilla extract" ], "title": "Captain Louie recipe", - "url": "http://www.drinksmixer.com/drink2687.html" + "url": "https://www.drinksmixer.com/drink2687.html" }, { "directions": "Start with hot or steamed apple cider. Add equal parts apple pucker schnapps, spiced rum and coconut rum(parrot bay). Stir.", @@ -17694,7 +17694,7 @@ "DeKuyper\u00ae Sour Apple Pucker schnapps" ], "title": "Captain Morgan's Steamy Applecolada Dream recipe", - "url": "http://www.drinksmixer.com/drink2688.html" + "url": "https://www.drinksmixer.com/drink2688.html" }, { "directions": "Mix Captain Morgan's and white wine in a glass. Add Coke and ice. Garnish with a slice of lime.", @@ -17706,7 +17706,7 @@ "ice cubes" ], "title": "Captain With A Skirt recipe", - "url": "http://www.drinksmixer.com/drink2689.html" + "url": "https://www.drinksmixer.com/drink2689.html" }, { "directions": "Pour Captain Morgan's over ice, and add cream soda.", @@ -17715,7 +17715,7 @@ "cream soda" ], "title": "Captain's and Creme recipe", - "url": "http://www.drinksmixer.com/drink2690.html" + "url": "https://www.drinksmixer.com/drink2690.html" }, { "directions": "Pour the Captain Morgan's over plenty of ice in a highball glass. Top with the seven-up, stir and enjoy!", @@ -17724,7 +17724,7 @@ "7-Up\u00ae soda" ], "title": "Captain's Cream Soda recipe", - "url": "http://www.drinksmixer.com/drink2691.html" + "url": "https://www.drinksmixer.com/drink2691.html" }, { "directions": "Combine the gin, vermouth, and creme de menthe in a shaker with ice, shake and serve.", @@ -17734,7 +17734,7 @@ "white creme de menthe" ], "title": "The Captain's Martini recipe", - "url": "http://www.drinksmixer.com/drink2692.html" + "url": "https://www.drinksmixer.com/drink2692.html" }, { "directions": "In a shaker half-filled with ice cubes, combine the gin, Campari, grenadine, and orange juice. Shake well. Pour into a collins glass almost filled with ice cubes. Top with the ginger ale. Garnish with the cherry.", @@ -17747,7 +17747,7 @@ "maraschino cherry" ], "title": "Captain's Table recipe", - "url": "http://www.drinksmixer.com/drink2693.html" + "url": "https://www.drinksmixer.com/drink2693.html" }, { "directions": "Pour (over ice is best, but not necessary) spiced rum into glass, fill with apple cider, stir.", @@ -17757,7 +17757,7 @@ "ice" ], "title": "Captain's Spiced Cider recipe", - "url": "http://www.drinksmixer.com/drink2694.html" + "url": "https://www.drinksmixer.com/drink2694.html" }, { "directions": "Mix rootbeer schnaps with spiced rum and chill with ice cubes. Strain into a highball glass and enjoy.", @@ -17767,7 +17767,7 @@ "ice cubes" ], "title": "Captains Saddle recipe", - "url": "http://www.drinksmixer.com/drink2695.html" + "url": "https://www.drinksmixer.com/drink2695.html" }, { "directions": "Pour ingredients over ice: Capt. Morgan Silver - Parrot Bay - orange juice - cranberry juice.", @@ -17778,7 +17778,7 @@ "cranberry juice" ], "title": "The Captains Silver Sunrise recipe", - "url": "http://www.drinksmixer.com/drink2696.html" + "url": "https://www.drinksmixer.com/drink2696.html" }, { "directions": "Shake well with ice, serve in high glass half filled with ice.", @@ -17790,7 +17790,7 @@ "egg" ], "title": "Carabinieri recipe", - "url": "http://www.drinksmixer.com/drink2697.html" + "url": "https://www.drinksmixer.com/drink2697.html" }, { "directions": "Chill in shaker.", @@ -17799,7 +17799,7 @@ "butterscotch schnapps" ], "title": "Caramel Apple recipe", - "url": "http://www.drinksmixer.com/drink2698.html" + "url": "https://www.drinksmixer.com/drink2698.html" }, { "directions": "Combine creme de cacao, caramel liqueur, and vanilla ice-cream in an electric blender. Blend at a low speed for a short length of time. Pour into a champagne flute, garnish with whipped cream and chopped nuts, and serve.", @@ -17811,7 +17811,7 @@ "nut" ], "title": "Caramel Nut recipe", - "url": "http://www.drinksmixer.com/drink2699.html" + "url": "https://www.drinksmixer.com/drink2699.html" }, { "directions": "Pour ingredients (in order) into a shot glass, then it's bottoms up!", @@ -17821,7 +17821,7 @@ "Kahlua\u00ae coffee liqueur" ], "title": "Caramilk recipe", - "url": "http://www.drinksmixer.com/drink2700.html" + "url": "https://www.drinksmixer.com/drink2700.html" }, { "directions": "Combine (proportions of 50/50) Bailey's Irish Cream and Irish Whiskey into one shot glass. Drop the shot into a mug of guinness and chugg until empty.", @@ -17831,7 +17831,7 @@ "Guinness\u00ae stout" ], "title": "Carbomb recipe", - "url": "http://www.drinksmixer.com/drink2701.html" + "url": "https://www.drinksmixer.com/drink2701.html" }, { "directions": "Stir. No garnish.", @@ -17841,7 +17841,7 @@ "white port" ], "title": "Cardicas recipe", - "url": "http://www.drinksmixer.com/drink2702.html" + "url": "https://www.drinksmixer.com/drink2702.html" }, { "directions": "In a mixing glass half-filled with ice cubes, combine all of the ingredients. Stir well. Strain into a cocktail glass.", @@ -17852,7 +17852,7 @@ "grenadine syrup" ], "title": "Cardinal recipe", - "url": "http://www.drinksmixer.com/drink2703.html" + "url": "https://www.drinksmixer.com/drink2703.html" }, { "directions": "Use chilled orange juice, but no ice.", @@ -17862,7 +17862,7 @@ "orange juice" ], "title": "Caribbean Bliss recipe", - "url": "http://www.drinksmixer.com/drink2704.html" + "url": "https://www.drinksmixer.com/drink2704.html" }, { "directions": "Pour ingredients over crushed ice, and stir gradually and evenly. Serve immediately.", @@ -17872,7 +17872,7 @@ "dry vermouth" ], "title": "Caribbean Blues recipe", - "url": "http://www.drinksmixer.com/drink2705.html" + "url": "https://www.drinksmixer.com/drink2705.html" }, { "directions": "Pour the Corona into an 18 oz beer glass pour the rum into the beer.", @@ -17881,7 +17881,7 @@ "light rum" ], "title": "Caribbean Boilermaker recipe", - "url": "http://www.drinksmixer.com/drink2706.html" + "url": "https://www.drinksmixer.com/drink2706.html" }, { "directions": "Combine all ingredients, shake well and serve over ice. Garnish with a lime wedge and a cherry (and an umbrella if handy).", @@ -17894,7 +17894,7 @@ "7-Up\u00ae soda" ], "title": "Caribbean Cruise recipe", - "url": "http://www.drinksmixer.com/drink2707.html" + "url": "https://www.drinksmixer.com/drink2707.html" }, { "directions": "Mix all of the ingredients together and serve over ice. Garnish with an orange.", @@ -17907,7 +17907,7 @@ "sweet and sour mix" ], "title": "Caribbean Ice Tea recipe", - "url": "http://www.drinksmixer.com/drink2708.html" + "url": "https://www.drinksmixer.com/drink2708.html" }, { "directions": "Shake ingredients over ice. Pour into glass.", @@ -17917,7 +17917,7 @@ "pineapple juice" ], "title": "Caribbean Martini recipe", - "url": "http://www.drinksmixer.com/drink2709.html" + "url": "https://www.drinksmixer.com/drink2709.html" }, { "directions": "Shake the milk with the Vanilla, add to the shaker the other ingredients and shake well.", @@ -17929,7 +17929,7 @@ "ice" ], "title": "Caribbean Milk recipe", - "url": "http://www.drinksmixer.com/drink2710.html" + "url": "https://www.drinksmixer.com/drink2710.html" }, { "directions": "1. Pare very thinly the bright-colored rind from the oranges (no white). Blot the peel on paper towels to remove any excess oil. Put peel in a 4 cup screw-top jar. Add 2 cups vodka. Close jar.\r", @@ -17939,7 +17939,7 @@ "superfine sugar" ], "title": "Caribbean Orange Liqueur recipe", - "url": "http://www.drinksmixer.com/drink2711.html" + "url": "https://www.drinksmixer.com/drink2711.html" }, { "directions": "Mix in shaker, top with grated nutmeg.", @@ -17953,7 +17953,7 @@ "Lemon Hart\u00ae dark rum" ], "title": "Caribbean Punch recipe", - "url": "http://www.drinksmixer.com/drink2712.html" + "url": "https://www.drinksmixer.com/drink2712.html" }, { "directions": "Fill glass with handful of ice and add ingredients. Then mix.", @@ -17966,7 +17966,7 @@ "lemon juice" ], "title": "Caribbean Queen recipe", - "url": "http://www.drinksmixer.com/drink2713.html" + "url": "https://www.drinksmixer.com/drink2713.html" }, { "directions": "Obviously this is not a drink for a small glass. Mix and shake ingredients in a shaker glass with ice. Strain the mixture into a tall glass. Garnish with a cherry if you feel so inclined.", @@ -17979,7 +17979,7 @@ "cream" ], "title": "Caribbean Screwdriver recipe", - "url": "http://www.drinksmixer.com/drink2714.html" + "url": "https://www.drinksmixer.com/drink2714.html" }, { "directions": "Mix all the ingredients, except for the 151 rum in a tin glass or shaker. Steam the snifter, using the 1/2 oz. of 151 lighting it, until it consumes itself. After that pour the content of the shaker in the hot snifter. It will create a really good smelling cloud of smoke, that is what distinguishes this cocktail.", @@ -17996,7 +17996,7 @@ "Bacardi\u00ae 151 rum" ], "title": "Caribbean Smoked Torch recipe", - "url": "http://www.drinksmixer.com/drink2715.html" + "url": "https://www.drinksmixer.com/drink2715.html" }, { "directions": "Mix first 3 ingredients. Top with Schweppes. Garnish with lime slice.", @@ -18007,7 +18007,7 @@ "Schweppes\u00ae Russian tonic water" ], "title": "Carl Johan recipe", - "url": "http://www.drinksmixer.com/drink2716.html" + "url": "https://www.drinksmixer.com/drink2716.html" }, { "directions": "Pour over ice in a tall glass. Stir.", @@ -18017,7 +18017,7 @@ "grape juice" ], "title": "Carlitos recipe", - "url": "http://www.drinksmixer.com/drink2717.html" + "url": "https://www.drinksmixer.com/drink2717.html" }, { "directions": "Pour vodka and gin simultaneously. Add strawberry and cranberry together. Fill the rest with orange juice.", @@ -18029,7 +18029,7 @@ "orange juice" ], "title": "Carman's Dance recipe", - "url": "http://www.drinksmixer.com/drink2718.html" + "url": "https://www.drinksmixer.com/drink2718.html" }, { "directions": "Mix equal parts of freezer cold schnapps.", @@ -18038,7 +18038,7 @@ "butterscotch schnapps" ], "title": "Carmel Apple recipe", - "url": "http://www.drinksmixer.com/drink2719.html" + "url": "https://www.drinksmixer.com/drink2719.html" }, { "directions": "All ingredients should be freezer cold. Pour equal parts of the schnapps and stir in the triple sec.", @@ -18048,7 +18048,7 @@ "triple sec" ], "title": "Carmel Candy Apple recipe", - "url": "http://www.drinksmixer.com/drink2720.html" + "url": "https://www.drinksmixer.com/drink2720.html" }, { "directions": "Fill a rocks glass w/ ice. Add the coca-cola and then the schnapps. Serve.", @@ -18057,7 +18057,7 @@ "Coca-Cola\u00ae" ], "title": "Carmel Coke recipe", - "url": "http://www.drinksmixer.com/drink2721.html" + "url": "https://www.drinksmixer.com/drink2721.html" }, { "directions": "Crush the two pieces of candy until they are pulverised. Pour the vodka into the shot glass before adding the powder. Stir it until the candy has dissolved in the liquor.", @@ -18066,7 +18066,7 @@ "Sharp's\u00ae blackcurrant menthol candy" ], "title": "Carmina Burana recipe", - "url": "http://www.drinksmixer.com/drink2722.html" + "url": "https://www.drinksmixer.com/drink2722.html" }, { "directions": "Pour all ingredients into shaker with ice. Strain into highball glass. Add more or less blue curacao - you're trying to achieve a Carolina Blue color.", @@ -18077,7 +18077,7 @@ "Blue Curacao liqueur" ], "title": "Carolina Kamikaze recipe", - "url": "http://www.drinksmixer.com/drink2725.html" + "url": "https://www.drinksmixer.com/drink2725.html" }, { "directions": "In a mixing glass half-filled with crushed ice, combine all of the ingredients. Stir well. Strain into a cocktail glass.", @@ -18088,7 +18088,7 @@ "crushed ice" ], "title": "Caroli recipe", - "url": "http://www.drinksmixer.com/drink2726.html" + "url": "https://www.drinksmixer.com/drink2726.html" }, { "directions": "Combine ingredients in a highball glass. Stir, add ice and serve.", @@ -18099,7 +18099,7 @@ "grenadine syrup" ], "title": "Caribbean Dream recipe", - "url": "http://www.drinksmixer.com/drink2727.html" + "url": "https://www.drinksmixer.com/drink2727.html" }, { "directions": "Pour ingredients over ice in an old-fashioned glass. Garnish with a maraschino cherry, and serve.", @@ -18108,7 +18108,7 @@ "pineapple juice" ], "title": "Caribbean Pineapple recipe", - "url": "http://www.drinksmixer.com/drink2728.html" + "url": "https://www.drinksmixer.com/drink2728.html" }, { "directions": "Stir vermouth and brandy with ice and strain into a cocktail glass. Top with the cherry and serve.", @@ -18118,7 +18118,7 @@ "cherry" ], "title": "Carrol Cocktail recipe", - "url": "http://www.drinksmixer.com/drink2729.html" + "url": "https://www.drinksmixer.com/drink2729.html" }, { "directions": "Fill highball glass with ice. Place a tsp. (float) of Goldschlager in glass. Fill rest of glass with Irish Cream and Coffee Liqueur. Shake. Pour into shot glasses.", @@ -18128,7 +18128,7 @@ "coffee liqueur" ], "title": "Carrot Cake recipe", - "url": "http://www.drinksmixer.com/drink2730.html" + "url": "https://www.drinksmixer.com/drink2730.html" }, { "directions": "Fill mixing cup up with ice. Add ingredients. Shake and strain.", @@ -18138,7 +18138,7 @@ "cinnamon schnapps" ], "title": "Carrot Cake #2 recipe", - "url": "http://www.drinksmixer.com/drink2731.html" + "url": "https://www.drinksmixer.com/drink2731.html" }, { "directions": "Pour shot of tuaca into a shot glass. Thoroughly drench the lime in bitters, then coat in powdered sugar. Drink shot, bite into lime, experience a veritable explosion of flavor.", @@ -18149,7 +18149,7 @@ "powdered sugar" ], "title": "Cartwheel recipe", - "url": "http://www.drinksmixer.com/drink2732.html" + "url": "https://www.drinksmixer.com/drink2732.html" }, { "directions": "In a mixing glass half-filled with ice cubes, combine all of the ingredients. Stir well. Strain into a cocktail glass.", @@ -18159,7 +18159,7 @@ "white creme de menthe" ], "title": "Caruso Blanco recipe", - "url": "http://www.drinksmixer.com/drink2733.html" + "url": "https://www.drinksmixer.com/drink2733.html" }, { "directions": "In a mixing glass half-filled with ice cubes, combine all of the ingredients. Stir well. Strain into a cocktail glass.", @@ -18169,7 +18169,7 @@ "green creme de menthe" ], "title": "Caruso recipe", - "url": "http://www.drinksmixer.com/drink2734.html" + "url": "https://www.drinksmixer.com/drink2734.html" }, { "directions": "Shake all ingredients with ice, strain into a cocktail glass, and serve.", @@ -18180,7 +18180,7 @@ "maraschino liqueur" ], "title": "Casa Blanca recipe", - "url": "http://www.drinksmixer.com/drink2735.html" + "url": "https://www.drinksmixer.com/drink2735.html" }, { "directions": "Pour all ingredients over ice and stir.", @@ -18191,7 +18191,7 @@ "ice cubes" ], "title": "Casa Noble Margarita recipe", - "url": "http://www.drinksmixer.com/drink2736.html" + "url": "https://www.drinksmixer.com/drink2736.html" }, { "directions": "Shake fairly well with enough ice, and serve.", @@ -18202,7 +18202,7 @@ "lemon juice" ], "title": "Casablanca #2 recipe", - "url": "http://www.drinksmixer.com/drink2737.html" + "url": "https://www.drinksmixer.com/drink2737.html" }, { "directions": "Mix and drink. Slam and jam.", @@ -18211,7 +18211,7 @@ "black cherry cola" ], "title": "Casey Special recipe", - "url": "http://www.drinksmixer.com/drink2738.html" + "url": "https://www.drinksmixer.com/drink2738.html" }, { "directions": "Shake all ingredients (except cherry) with ice and strain into a cocktail glass. Add the cherry on top and serve.", @@ -18223,7 +18223,7 @@ "cherry" ], "title": "Casino Cocktail recipe", - "url": "http://www.drinksmixer.com/drink2739.html" + "url": "https://www.drinksmixer.com/drink2739.html" }, { "directions": "In a shaker half-filled with ice cubes, combine all of the ingredients. Shake well. Strain into a sour glass.", @@ -18235,7 +18235,7 @@ "egg" ], "title": "Casino Royale recipe", - "url": "http://www.drinksmixer.com/drink2740.html" + "url": "https://www.drinksmixer.com/drink2740.html" }, { "directions": "Pour vodka, orange juice, and lemon/lime juice into a shaker half-filled with ice. Shake. Strain into a collins glass with several ice cubes. Add a splash of creme de cassis and of grenadine. Garnish with a lemon/lime wedge and a straw.", @@ -18249,7 +18249,7 @@ "lemon" ], "title": "Cassis Screwdriver recipe", - "url": "http://www.drinksmixer.com/drink2741.html" + "url": "https://www.drinksmixer.com/drink2741.html" }, { "directions": "Shift the cocoa and sugar together into a medium-sized saucepan. Dissolve the cornstarch in the water, and stir into the cocoa and sugar until it is a smooth paste. \r", @@ -18261,7 +18261,7 @@ "milk" ], "title": "Castillian Hot Chocolate recipe", - "url": "http://www.drinksmixer.com/drink2742.html" + "url": "https://www.drinksmixer.com/drink2742.html" }, { "directions": "Shake gin, chartreuse, and vermouth in cocktail shaker filled with ice. Strain into chilled cocktail glass. Twist orange peel and drop into cocktail.", @@ -18272,7 +18272,7 @@ "orange" ], "title": "Cat's Eye recipe", - "url": "http://www.drinksmixer.com/drink2743.html" + "url": "https://www.drinksmixer.com/drink2743.html" }, { "directions": "Shake with cracked ice and strain into chilled cocktail or margarita glass.", @@ -18283,7 +18283,7 @@ "sweet and sour mix" ], "title": "Catalina Margarita recipe", - "url": "http://www.drinksmixer.com/drink2744.html" + "url": "https://www.drinksmixer.com/drink2744.html" }, { "directions": "Serve it chilled up.", @@ -18292,7 +18292,7 @@ "peach schnapps" ], "title": "Catfish recipe", - "url": "http://www.drinksmixer.com/drink2745.html" + "url": "https://www.drinksmixer.com/drink2745.html" }, { "directions": "Pour all of the ingredients into an Irish coffee glass filled with crushed ice. Stir well.", @@ -18304,7 +18304,7 @@ "crushed ice" ], "title": "Catherine Of Sheridan Square recipe", - "url": "http://www.drinksmixer.com/drink2746.html" + "url": "https://www.drinksmixer.com/drink2746.html" }, { "directions": "Pour vodka and coffee liqueur (kahlua) over ice cubes. Add desired amount of Half-and-Half.", @@ -18315,7 +18315,7 @@ "ice cubes" ], "title": "Caucasian recipe", - "url": "http://www.drinksmixer.com/drink2747.html" + "url": "https://www.drinksmixer.com/drink2747.html" }, { "directions": "In a cazuela that is made of clay, put ice, salt, lime, orange, lemon, and grapefruit. Add grenadine, tequila, and fill with squirt. Use a straws to shake, and serve.", @@ -18330,7 +18330,7 @@ "Squirt\u00ae citrus soda" ], "title": "Cazuela recipe", - "url": "http://www.drinksmixer.com/drink2748.html" + "url": "https://www.drinksmixer.com/drink2748.html" }, { "directions": "Shake vigorously over ice, pour into cocktail glass and garnish with either lemon or orange peel.", @@ -18341,7 +18341,7 @@ "light rum" ], "title": "Celebration #2 recipe", - "url": "http://www.drinksmixer.com/drink2749.html" + "url": "https://www.drinksmixer.com/drink2749.html" }, { "directions": "In a cocktail shaker add ingredients and fill with ice. Shake with gusto for half a minute, and pour/strain into a cocktail glass. Garnish with lemon peel, or lime peel if you use fresh lime juice.", @@ -18353,7 +18353,7 @@ "orange bitters" ], "title": "Celebration recipe", - "url": "http://www.drinksmixer.com/drink2750.html" + "url": "https://www.drinksmixer.com/drink2750.html" }, { "directions": "In a shaker half-filled with ice cubes, combine all of the ingredients. Shake well. Strain into a cocktail glass.", @@ -18364,7 +18364,7 @@ "bitters" ], "title": "Celtic Mix Cocktail recipe", - "url": "http://www.drinksmixer.com/drink2751.html" + "url": "https://www.drinksmixer.com/drink2751.html" }, { "directions": "Layer the drink pouring the Tattoo in first as it is slightly heavier than the scotch.", @@ -18373,7 +18373,7 @@ "Scotch whisky" ], "title": "The Celt recipe", - "url": "http://www.drinksmixer.com/drink2752.html" + "url": "https://www.drinksmixer.com/drink2752.html" }, { "directions": "Fill one shot glass with Bailey's. Fill second shot glass with Lime and 151. \r", @@ -18383,7 +18383,7 @@ "151 proof rum" ], "title": "Cement Kicker recipe", - "url": "http://www.drinksmixer.com/drink2753.html" + "url": "https://www.drinksmixer.com/drink2753.html" }, { "directions": "Combine vodka and rum in cocktail shaker with ice. Shake well and strain into old-fashioned glass with ice. Top off with grapefruit soda and stir gently.", @@ -18393,7 +18393,7 @@ "Squirt\u00ae citrus soda" ], "title": "Centipede recipe", - "url": "http://www.drinksmixer.com/drink2754.html" + "url": "https://www.drinksmixer.com/drink2754.html" }, { "directions": "Fill shot glass 3/4 full with vodka. Add the grenadine for color. Finally pour in a little Bailey's. The bailey's will sit in the drink and look like a brain, stem and all.", @@ -18403,7 +18403,7 @@ "Bailey's\u00ae Irish cream" ], "title": "Cerebellum recipe", - "url": "http://www.drinksmixer.com/drink2755.html" + "url": "https://www.drinksmixer.com/drink2755.html" }, { "directions": "Throw all ingredients into a blender, and blend to your hearts delight. After, pour into an iced punch bowl, garnish with lemon slices, and drink immediately!", @@ -18415,7 +18415,7 @@ "lemons" ], "title": "The Chalise recipe", - "url": "http://www.drinksmixer.com/drink2756.html" + "url": "https://www.drinksmixer.com/drink2756.html" }, { "directions": "Muddle lime in a shaker. Add ice and all other ingredients. Shake vigorously. Strain into a glass.", @@ -18428,7 +18428,7 @@ "Rose's\u00ae lime juice" ], "title": "Chambord Kamikaze recipe", - "url": "http://www.drinksmixer.com/drink2757.html" + "url": "https://www.drinksmixer.com/drink2757.html" }, { "directions": "Should be shaked over ice. Garnished with a lemon. More pineapple than cranberry juice.", @@ -18439,7 +18439,7 @@ "pineapple juice" ], "title": "Chambord Royale recipe", - "url": "http://www.drinksmixer.com/drink2758.html" + "url": "https://www.drinksmixer.com/drink2758.html" }, { "directions": "Blend with ice.", @@ -18448,7 +18448,7 @@ "sweet and sour mix" ], "title": "Chambord Sour recipe", - "url": "http://www.drinksmixer.com/drink2759.html" + "url": "https://www.drinksmixer.com/drink2759.html" }, { "directions": "Pour chambord and vodka into a glass. Fill with sprite.", @@ -18458,7 +18458,7 @@ "Sprite\u00ae soda" ], "title": "Chambrite recipe", - "url": "http://www.drinksmixer.com/drink2760.html" + "url": "https://www.drinksmixer.com/drink2760.html" }, { "directions": "Mix champagne and mango juice together, add cubed mango and ice.", @@ -18469,7 +18469,7 @@ "ice cubes" ], "title": "Champagne & Mango recipe", - "url": "http://www.drinksmixer.com/drink2761.html" + "url": "https://www.drinksmixer.com/drink2761.html" }, { "directions": "Add Cointreau, Brandy and a sugar cube saturated with Peychaud Bitters to a champagne flute. Fill with your favorite champagne. Garnish with an orange twist.", @@ -18481,7 +18481,7 @@ "Champagne" ], "title": "Champagne Celebration recipe", - "url": "http://www.drinksmixer.com/drink2762.html" + "url": "https://www.drinksmixer.com/drink2762.html" }, { "directions": "Place one lump of sugar with bitters in a chilled champagne flute. Fill with chilled champagne. Add the twist of lemon peel and serve.", @@ -18492,7 +18492,7 @@ "lemon" ], "title": "Champagne Cocktail recipe", - "url": "http://www.drinksmixer.com/drink2763.html" + "url": "https://www.drinksmixer.com/drink2763.html" }, { "directions": "Mix and serve.", @@ -18501,7 +18501,7 @@ "Cointreau\u00ae orange liqueur" ], "title": "Champagne Martini recipe", - "url": "http://www.drinksmixer.com/drink2764.html" + "url": "https://www.drinksmixer.com/drink2764.html" }, { "directions": "Mix sugar, brandy and 5 bottles champagne in a punch bowl. Then stir in orange, lemon and lime sliced thin into rounds, pineapple chunks and ice. Stir until well mixed. \r", @@ -18517,7 +18517,7 @@ "strawberries" ], "title": "Champagne Punch #2 recipe", - "url": "http://www.drinksmixer.com/drink2765.html" + "url": "https://www.drinksmixer.com/drink2765.html" }, { "directions": "Stir or shake well.", @@ -18527,7 +18527,7 @@ "vodka" ], "title": "Champibble recipe", - "url": "http://www.drinksmixer.com/drink2766.html" + "url": "https://www.drinksmixer.com/drink2766.html" }, { "directions": "Shake all ingredients with ice, strain into a cocktail glass, and serve.", @@ -18539,7 +18539,7 @@ "bitters" ], "title": "Champs Elysees Cocktail recipe", - "url": "http://www.drinksmixer.com/drink2767.html" + "url": "https://www.drinksmixer.com/drink2767.html" }, { "directions": "Shake all ingredients (except orange slice) with ice and strain into an old-fashioned glass over ice cubes. Add the slice of orange and serve.", @@ -18552,7 +18552,7 @@ "orange" ], "title": "Chapala recipe", - "url": "http://www.drinksmixer.com/drink2768.html" + "url": "https://www.drinksmixer.com/drink2768.html" }, { "directions": "Take the pisang ambon in the glas, and then the milk. Then shake it. Enjoy!", @@ -18561,7 +18561,7 @@ "milk" ], "title": "Chapman recipe", - "url": "http://www.drinksmixer.com/drink2769.html" + "url": "https://www.drinksmixer.com/drink2769.html" }, { "directions": "In a shaker half-filled with ice cubes, combine all of the ingredients. Shake well. Strain into a cocktail glass.", @@ -18572,7 +18572,7 @@ "superfine sugar" ], "title": "Charger recipe", - "url": "http://www.drinksmixer.com/drink2770.html" + "url": "https://www.drinksmixer.com/drink2770.html" }, { "directions": "Stir all ingredients with ice, strain into a cocktail glass, and serve.", @@ -18582,7 +18582,7 @@ "bitters" ], "title": "Charles Cocktail recipe", - "url": "http://www.drinksmixer.com/drink2771.html" + "url": "https://www.drinksmixer.com/drink2771.html" }, { "directions": "Shake all ingredients with ice, strain into an old-fashioned glass over ice cubes, and serve.", @@ -18592,7 +18592,7 @@ "lemon juice" ], "title": "Charlie Chaplin recipe", - "url": "http://www.drinksmixer.com/drink2772.html" + "url": "https://www.drinksmixer.com/drink2772.html" }, { "directions": "Add the Absolut Vodka to a cocktail glass filled with ice, top off with Coca-Cola.", @@ -18601,7 +18601,7 @@ "Coca-Cola\u00ae" ], "title": "Charlie Coke recipe", - "url": "http://www.drinksmixer.com/drink2773.html" + "url": "https://www.drinksmixer.com/drink2773.html" }, { "directions": "Add aquavit and Charleston Follies and stir it with ice. Add lime and tonic water. Fresh up with slice of lemon and red cocktail berry.", @@ -18612,7 +18612,7 @@ "Schweppes\u00ae Indian tonic water" ], "title": "Charlie Shaker recipe", - "url": "http://www.drinksmixer.com/drink2774.html" + "url": "https://www.drinksmixer.com/drink2774.html" }, { "directions": "Pour the white creme de menthe into a highball glass and fill with the double cream to an inch from the top. Stir well. Next carefully float the spiced rum on the top. Drink from the bottom with a straw.", @@ -18622,7 +18622,7 @@ "spiced rum" ], "title": "Charlie's Angel #2 recipe", - "url": "http://www.drinksmixer.com/drink2775.html" + "url": "https://www.drinksmixer.com/drink2775.html" }, { "directions": "Shake ingredients with crushed ice. Strain into cocktail glass.", @@ -18633,7 +18633,7 @@ "orange bitters" ], "title": "Charmer recipe", - "url": "http://www.drinksmixer.com/drink2776.html" + "url": "https://www.drinksmixer.com/drink2776.html" }, { "directions": "Rub rim of glass with lemon juice and dip rim in salt. Put 4 ice cubes into the glass, add Tequila and juice of half a lemon. Add some more salt if you like and fill the glass with Coca-Cola. Stir gently.", @@ -18645,7 +18645,7 @@ "salt" ], "title": "Charro Negro recipe", - "url": "http://www.drinksmixer.com/drink2777.html" + "url": "https://www.drinksmixer.com/drink2777.html" }, { "directions": "In glass filled with ice, mix Chartreuse and Tonic Water. Garnish with lime slice.", @@ -18655,7 +18655,7 @@ "ice cubes" ], "title": "Chartreuse and Tonic recipe", - "url": "http://www.drinksmixer.com/drink2778.html" + "url": "https://www.drinksmixer.com/drink2778.html" }, { "directions": "Layer in order in an old-fashioned glass, and serve.", @@ -18666,7 +18666,7 @@ "cream" ], "title": "Chastity Belt recipe", - "url": "http://www.drinksmixer.com/drink2779.html" + "url": "https://www.drinksmixer.com/drink2779.html" }, { "directions": "Pour in Jose Cuervo Gold, then J\ufffdgermeister. Top off with Goldschlager.", @@ -18676,7 +18676,7 @@ "Goldschlager\u00ae cinnamon schnapps" ], "title": "Che Guevara recipe", - "url": "http://www.drinksmixer.com/drink2780.html" + "url": "https://www.drinksmixer.com/drink2780.html" }, { "directions": "Mix. Pour into tall glass. Add ice-cold 7-Up or ginger ale. Garnish with one slice each of orange, lemon and cucumber. Serve.", @@ -18690,7 +18690,7 @@ "cucumber" ], "title": "Cheat's Pimm's recipe", - "url": "http://www.drinksmixer.com/drink2781.html" + "url": "https://www.drinksmixer.com/drink2781.html" }, { "directions": "In a shaker half-filled with ice cubes, combine all of the ingredients. Shake well. Strain into a cocktail glass.", @@ -18700,7 +18700,7 @@ "lemon juice" ], "title": "Chelsea Hotel recipe", - "url": "http://www.drinksmixer.com/drink2782.html" + "url": "https://www.drinksmixer.com/drink2782.html" }, { "directions": "Shake all ingredients (except cherry) with ice and strain into a cocktail glass. Top with the cherry and serve.", @@ -18712,7 +18712,7 @@ "cherry" ], "title": "Cherie recipe", - "url": "http://www.drinksmixer.com/drink2783.html" + "url": "https://www.drinksmixer.com/drink2783.html" }, { "directions": "In a shaker half-filled with ice cubes, combine all of the ingredients. Shake well. Strain into a cocktail glass.", @@ -18722,7 +18722,7 @@ "light cream" ], "title": "Cherried Cream Rum recipe", - "url": "http://www.drinksmixer.com/drink2784.html" + "url": "https://www.drinksmixer.com/drink2784.html" }, { "directions": "Garnish with a cherry on the rim of the glass.", @@ -18732,7 +18732,7 @@ "milk" ], "title": "Cherry Blossom recipe", - "url": "http://www.drinksmixer.com/drink2785.html" + "url": "https://www.drinksmixer.com/drink2785.html" }, { "directions": "Moisten rim of a cocktail glass with cherry brandy and rub rim in powdered sugar. Shake all ingredients (except cherry) with ice and strain into the sugar-rimmed glass. Top with the cherry and serve.", @@ -18745,7 +18745,7 @@ "cherry" ], "title": "Cherry Blossom #2 recipe", - "url": "http://www.drinksmixer.com/drink2786.html" + "url": "https://www.drinksmixer.com/drink2786.html" }, { "directions": "Pour all three ingredients into an short shaker with ice. For better taste, let it chill for a bit.", @@ -18755,7 +18755,7 @@ "grenadine syrup" ], "title": "Cherry Blow Pop recipe", - "url": "http://www.drinksmixer.com/drink2787.html" + "url": "https://www.drinksmixer.com/drink2787.html" }, { "directions": "Fill glass with ice. Add the vodka. Fill with unsweetened cherry juice.", @@ -18764,7 +18764,7 @@ "cherry juice" ], "title": "Cherry Bomb #2 recipe", - "url": "http://www.drinksmixer.com/drink2788.html" + "url": "https://www.drinksmixer.com/drink2788.html" }, { "directions": "Place cherries (drained), mixed with everclear into a sealable cannister for approx. 2 1/2 months. \r", @@ -18773,7 +18773,7 @@ "cherries" ], "title": "Cherry Bomb #3 recipe", - "url": "http://www.drinksmixer.com/drink2789.html" + "url": "https://www.drinksmixer.com/drink2789.html" }, { "directions": "Mix all parts together and serve cold in a tall glass.", @@ -18787,7 +18787,7 @@ "7-Up\u00ae soda" ], "title": "Cherry Bomber recipe", - "url": "http://www.drinksmixer.com/drink2790.html" + "url": "https://www.drinksmixer.com/drink2790.html" }, { "directions": "Put the cherry into the shot glass. Add the Cinnamon Schnapps (be careful it is real strong). Then add the Rum and top of with the Vodka. More Vodka can be used. Slam it.", @@ -18798,7 +18798,7 @@ "Bacardi\u00ae light rum" ], "title": "The Cherry Bomb recipe", - "url": "http://www.drinksmixer.com/drink2791.html" + "url": "https://www.drinksmixer.com/drink2791.html" }, { "directions": "Layer Godet on top of Creme de Noyaux. \r", @@ -18807,7 +18807,7 @@ "creme de noyaux" ], "title": "Cherry Bon Bon recipe", - "url": "http://www.drinksmixer.com/drink2792.html" + "url": "https://www.drinksmixer.com/drink2792.html" }, { "directions": "Add schnapps then layer cranberry juice on top. May take a few \"practice\" shots to find the right amounts of each.", @@ -18816,7 +18816,7 @@ "cranberry juice" ], "title": "Cherry Cheesecake recipe", - "url": "http://www.drinksmixer.com/drink2793.html" + "url": "https://www.drinksmixer.com/drink2793.html" }, { "directions": "Pour everclear and cherry liqueur over ice cubes in a highball glass. Fill with coke, stir if necessary, and serve.", @@ -18826,7 +18826,7 @@ "Pepsi\u00ae cola" ], "title": "Cherry Coke From Hell recipe", - "url": "http://www.drinksmixer.com/drink2794.html" + "url": "https://www.drinksmixer.com/drink2794.html" }, { "directions": "Combine and stir. Tastes like Cherry Coke.", @@ -18836,7 +18836,7 @@ "Coca-Cola\u00ae" ], "title": "Cherry Cola recipe", - "url": "http://www.drinksmixer.com/drink2795.html" + "url": "https://www.drinksmixer.com/drink2795.html" }, { "directions": "Pour about 4 oz of your favorite cherry cola into a cup. Add about 1 shot (1 oz) of southern comfort 100 proof. Add ice if desired.", @@ -18845,7 +18845,7 @@ "cherry cola" ], "title": "Cherry Comfort recipe", - "url": "http://www.drinksmixer.com/drink2796.html" + "url": "https://www.drinksmixer.com/drink2796.html" }, { "directions": "Shake juice of lemon and cherry brandy with ice and strain into a highball glass over two ice cubes. Fill with carbonated water and stir. Top with the cherry and serve.", @@ -18856,7 +18856,7 @@ "cherry" ], "title": "Cherry Fizz recipe", - "url": "http://www.drinksmixer.com/drink2797.html" + "url": "https://www.drinksmixer.com/drink2797.html" }, { "directions": "Shake all ingredients (except nutmeg) with ice and strain into a whiskey sour glass. Sprinkle nutmeg on top and serve.", @@ -18868,7 +18868,7 @@ "nutmeg" ], "title": "Cherry Flip recipe", - "url": "http://www.drinksmixer.com/drink2798.html" + "url": "https://www.drinksmixer.com/drink2798.html" }, { "directions": "Add Godet to shot class, pour cherry brandy in the center and let it mix itself around.", @@ -18877,7 +18877,7 @@ "cherry brandy" ], "title": "Cherry Godet recipe", - "url": "http://www.drinksmixer.com/drink2799.html" + "url": "https://www.drinksmixer.com/drink2799.html" }, { "directions": "Add ingedients in shaker tin over ice, shake and strain into shot glass.", @@ -18888,7 +18888,7 @@ "grenadine syrup" ], "title": "Cherry Lifesaver Shooter recipe", - "url": "http://www.drinksmixer.com/drink2800.html" + "url": "https://www.drinksmixer.com/drink2800.html" }, { "directions": "Combine the first 5 ingredients into a cocktail shaker. Shake well for 20 seconds. Strain into a cocktail glass. Top with Club Soda.", @@ -18901,7 +18901,7 @@ "club soda" ], "title": "Cherry Lover recipe", - "url": "http://www.drinksmixer.com/drink2801.html" + "url": "https://www.drinksmixer.com/drink2801.html" }, { "directions": "This is to make one quart. Follow the directions on the package to determine the appropriate amount of Kool-Aid mix. Mix all of the ingredients in a bowl/pitcher without ice. Serve in a glass with ice.", @@ -18915,7 +18915,7 @@ "water" ], "title": "The Cherry Magician recipe", - "url": "http://www.drinksmixer.com/drink2802.html" + "url": "https://www.drinksmixer.com/drink2802.html" }, { "directions": "Pour in the brandy and then the coke. Hold up the glass and say dude. Enjoy dude.", @@ -18924,7 +18924,7 @@ "Coca-Cola\u00ae" ], "title": "Cherry Martinsen recipe", - "url": "http://www.drinksmixer.com/drink2803.html" + "url": "https://www.drinksmixer.com/drink2803.html" }, { "directions": "Mix southern comfort, vodka and orange juice with crushed ice in a tall glass.", @@ -18934,7 +18934,7 @@ "orange juice" ], "title": "Cherry Over The Edge recipe", - "url": "http://www.drinksmixer.com/drink2804.html" + "url": "https://www.drinksmixer.com/drink2804.html" }, { "directions": "Add the strawberry schnapps to a glass, and fill with 7-Up. Drop in a cherry, and serve.", @@ -18944,7 +18944,7 @@ "cherry" ], "title": "Cherry Popper recipe", - "url": "http://www.drinksmixer.com/drink2805.html" + "url": "https://www.drinksmixer.com/drink2805.html" }, { "directions": "Shake all ingredients with ice, strain into a cocktail glass, and serve.", @@ -18954,7 +18954,7 @@ "light cream" ], "title": "Cherry Rum recipe", - "url": "http://www.drinksmixer.com/drink2806.html" + "url": "https://www.drinksmixer.com/drink2806.html" }, { "directions": "Stir. Garnish with a cherry.", @@ -18964,7 +18964,7 @@ "cherry" ], "title": "Cherry Screwdriver recipe", - "url": "http://www.drinksmixer.com/drink2807.html" + "url": "https://www.drinksmixer.com/drink2807.html" }, { "directions": "Pour brandy and lemon juice into an old-fashioned glass over ice cubes and stir. Add the twist of lemon peel and serve.", @@ -18974,7 +18974,7 @@ "lemon" ], "title": "Cherry Sling recipe", - "url": "http://www.drinksmixer.com/drink2808.html" + "url": "https://www.drinksmixer.com/drink2808.html" }, { "directions": "Mix the ingredients and top with the 151 Proof Rum. If it's too strong, add 7-Up or Sprite.", @@ -18987,7 +18987,7 @@ "151 proof rum" ], "title": "Cherry Spitfire recipe", - "url": "http://www.drinksmixer.com/drink2809.html" + "url": "https://www.drinksmixer.com/drink2809.html" }, { "directions": "Shake with ice. Strain into glass over ice.", @@ -18998,7 +18998,7 @@ "ice" ], "title": "Cheshire Cat recipe", - "url": "http://www.drinksmixer.com/drink2810.html" + "url": "https://www.drinksmixer.com/drink2810.html" }, { "directions": "Blend vodka, pineapple juice, and cream of coconut with one cup ice in an electric blender at a high speed. Pour into a red wine glass, decorate with the slice of pineapple and the cherry, and serve.", @@ -19010,7 +19010,7 @@ "cherry" ], "title": "Chi-Chi recipe", - "url": "http://www.drinksmixer.com/drink2812.html" + "url": "https://www.drinksmixer.com/drink2812.html" }, { "directions": "Shake all ingredients (except carbonated water) with ice and strain into a highball glass over two ice cubes. Fill with carbonated water, stir, and serve.", @@ -19023,7 +19023,7 @@ "carbonated water" ], "title": "Chicago Fizz recipe", - "url": "http://www.drinksmixer.com/drink2813.html" + "url": "https://www.drinksmixer.com/drink2813.html" }, { "directions": "Mix all three in shaker with ice. Pour cold.", @@ -19033,7 +19033,7 @@ "orange juice" ], "title": "Chicken Drop recipe", - "url": "http://www.drinksmixer.com/drink2814.html" + "url": "https://www.drinksmixer.com/drink2814.html" }, { "directions": "Pour tequila over ice. Fill with grapefruit juice.", @@ -19043,7 +19043,7 @@ "ice cubes" ], "title": "Chihuahua recipe", - "url": "http://www.drinksmixer.com/drink2815.html" + "url": "https://www.drinksmixer.com/drink2815.html" }, { "directions": "First pour the chilled schnapps and then carefully layer the hot espresso on top of it. Insert a straw into the glass and place it on the connection point between the two layers and drink it from there.", @@ -19052,7 +19052,7 @@ "espresso" ], "title": "Chill Out Shock recipe", - "url": "http://www.drinksmixer.com/drink2816.html" + "url": "https://www.drinksmixer.com/drink2816.html" }, { "directions": "Pour into shaker. Fill with orange and pineapple juice. Shake well.", @@ -19064,7 +19064,7 @@ "pineapple juice" ], "title": "Chilly Willy recipe", - "url": "http://www.drinksmixer.com/drink2817.html" + "url": "https://www.drinksmixer.com/drink2817.html" }, { "directions": "Fill a salt rimmed cocktail glass with ice. Pour in vodka and add lemon juice. Fill with soda. Insert straw and stir slightly. Garnish with a lemon wedge.", @@ -19076,7 +19076,7 @@ "ice" ], "title": "Chilton recipe", - "url": "http://www.drinksmixer.com/drink2818.html" + "url": "https://www.drinksmixer.com/drink2818.html" }, { "directions": "In a metal shaker add a fair amount of ice cubes. Add dark rum and light rum, then grenadine, orange juice, and pineapple juice. Finally add triple sec and shake vigorously.\r", @@ -19090,7 +19090,7 @@ "ice cubes" ], "title": "China Village Mai Tai recipe", - "url": "http://www.drinksmixer.com/drink2819.html" + "url": "https://www.drinksmixer.com/drink2819.html" }, { "directions": "Layer creme de cacao on bottom, followed by the Irish Cream. Lastly, sprinkle cinnamon over top.", @@ -19100,7 +19100,7 @@ "cinnamon" ], "title": "China White #2 recipe", - "url": "http://www.drinksmixer.com/drink2820.html" + "url": "https://www.drinksmixer.com/drink2820.html" }, { "directions": "Pour ingredients into shaker filled with ice, shake, strain into shot glass.", @@ -19110,7 +19110,7 @@ "white creme de cacao" ], "title": "China White recipe", - "url": "http://www.drinksmixer.com/drink2821.html" + "url": "https://www.drinksmixer.com/drink2821.html" }, { "directions": "Put lots of ice in your shaker. Then pour first the vodka, then the creme de banane and lastly the milk over the ice. Shake well. Pour into shot glasses. Makes several shots.", @@ -19120,7 +19120,7 @@ "milk" ], "title": "Chiquita recipe", - "url": "http://www.drinksmixer.com/drink2822.html" + "url": "https://www.drinksmixer.com/drink2822.html" }, { "directions": "Pour each ingredient into shot glass. Do not attempt to layer drink, as this is pointless. Mix.", @@ -19129,7 +19129,7 @@ "tequila" ], "title": "Choad recipe", - "url": "http://www.drinksmixer.com/drink2823.html" + "url": "https://www.drinksmixer.com/drink2823.html" }, { "directions": "Chill cocktail glass. \r\n", @@ -19139,7 +19139,7 @@ "vanilla schnapps" ], "title": "Chocolate Covered Martini recipe", - "url": "http://www.drinksmixer.com/drink2824.html" + "url": "https://www.drinksmixer.com/drink2824.html" }, { "directions": "Fill mixing glass with ingredients, stir and pour into chilled martini glass. Add Hershey's Kiss or Godiva Chocolate Liqueur for a garnish.", @@ -19149,7 +19149,7 @@ "99 Bananas\u00ae banana schnapps" ], "title": "Chocolate Banana Martini recipe", - "url": "http://www.drinksmixer.com/drink2825.html" + "url": "https://www.drinksmixer.com/drink2825.html" }, { "directions": "Layer the ingredients in the order listed.", @@ -19159,7 +19159,7 @@ "Irish cream" ], "title": "Chocolate Almond recipe", - "url": "http://www.drinksmixer.com/drink2826.html" + "url": "https://www.drinksmixer.com/drink2826.html" }, { "directions": "Boil the milk in the top of a deep double boiler for five minutes. Remove from the fire and add chocolate, mixed with the cinnamon, a little at a time - beating with molinillo or egg beater after each addition. \r", @@ -19170,7 +19170,7 @@ "eggs" ], "title": "Chocolate Beverage recipe", - "url": "http://www.drinksmixer.com/drink2828.html" + "url": "https://www.drinksmixer.com/drink2828.html" }, { "directions": "Combine all ingredients in an electric blender and blend at a low speed for a short length of time. Pour into a chilled champagne flute and serve.", @@ -19180,7 +19180,7 @@ "chocolate ice cream" ], "title": "Chocolate Black Russian recipe", - "url": "http://www.drinksmixer.com/drink2829.html" + "url": "https://www.drinksmixer.com/drink2829.html" }, { "directions": "Put equal amounts of kahlua and coconut rum (malibu or parrot bay) into an old-fashioned 12 oz glass. Fill the glass with chocolate milk, and serve.", @@ -19190,7 +19190,7 @@ "chocolate milk" ], "title": "Chocolate Bomb recipe", - "url": "http://www.drinksmixer.com/drink2830.html" + "url": "https://www.drinksmixer.com/drink2830.html" }, { "directions": "Pour chocolate milk into a large glass. Add 2 shots of kahlua and 2 shots of irish cream. Serve cold.", @@ -19200,7 +19200,7 @@ "Irish cream" ], "title": "Chocolate Buzz recipe", - "url": "http://www.drinksmixer.com/drink2831.html" + "url": "https://www.drinksmixer.com/drink2831.html" }, { "directions": "Pour 3/4 oz of vodka and 1/4 oz frangelico into a shot glass. Cover the slice of lime with powdered sugar. \r", @@ -19211,7 +19211,7 @@ "powdered sugar" ], "title": "Chocolate Cake #2 recipe", - "url": "http://www.drinksmixer.com/drink2832.html" + "url": "https://www.drinksmixer.com/drink2832.html" }, { "directions": "Mix equal parts Absolut Citron and Frangelico into a shot glass. Drink the shot, and follow it immediately by sucking on a sugar-coated lemon wedge.\n\n", @@ -19221,7 +19221,7 @@ "lemon" ], "title": "Chocolate Cake Shooter recipe", - "url": "http://www.drinksmixer.com/drink2833.html" + "url": "https://www.drinksmixer.com/drink2833.html" }, { "directions": "Half fill a shaker with ice. Add liqueurs and top with milk. Shake and pour over ice.", @@ -19232,7 +19232,7 @@ "milk" ], "title": "Chocolate Chip recipe", - "url": "http://www.drinksmixer.com/drink2835.html" + "url": "https://www.drinksmixer.com/drink2835.html" }, { "directions": "Shake all ingredients with ice, strain into a whiskey sour glass, and serve.", @@ -19243,7 +19243,7 @@ "egg" ], "title": "Chocolate Cocktail recipe", - "url": "http://www.drinksmixer.com/drink2836.html" + "url": "https://www.drinksmixer.com/drink2836.html" }, { "directions": "Pour all ingredients over ice. Garnish with slice of banana.", @@ -19253,7 +19253,7 @@ "cream" ], "title": "Chocolate Covered Banana recipe", - "url": "http://www.drinksmixer.com/drink2837.html" + "url": "https://www.drinksmixer.com/drink2837.html" }, { "directions": "In a shaker half filled with ice cubes combine all of the ingredients. Shake well, strain into a cocktail glass.", @@ -19264,7 +19264,7 @@ "grenadine syrup" ], "title": "Chocolate Covered Cherry recipe", - "url": "http://www.drinksmixer.com/drink2838.html" + "url": "https://www.drinksmixer.com/drink2838.html" }, { "directions": "Shake with ice and strain into a glass.", @@ -19275,7 +19275,7 @@ "grenadine syrup" ], "title": "Chocolate Covered Cherry #2 recipe", - "url": "http://www.drinksmixer.com/drink2839.html" + "url": "https://www.drinksmixer.com/drink2839.html" }, { "directions": "Add in the order written and mix then add the grenadine.", @@ -19286,7 +19286,7 @@ "grenadine syrup" ], "title": "Chocolate Covered Cherry Shot recipe", - "url": "http://www.drinksmixer.com/drink2841.html" + "url": "https://www.drinksmixer.com/drink2841.html" }, { "directions": "Pour all ingredients over ice (add cream to taste) in cocktail glass.", @@ -19296,7 +19296,7 @@ "cream" ], "title": "Chocolate Cow recipe", - "url": "http://www.drinksmixer.com/drink2842.html" + "url": "https://www.drinksmixer.com/drink2842.html" }, { "directions": "Melt the bar of chocolate in a small amount of boiling water. Add milk. Cook over low heat, whipping gently (with a whisk, i would assume) until heated well. Don't let it boil! Serve in coffee mug.", @@ -19306,7 +19306,7 @@ "water" ], "title": "Chocolate Drink recipe", - "url": "http://www.drinksmixer.com/drink2843.html" + "url": "https://www.drinksmixer.com/drink2843.html" }, { "directions": "Pour Barenjager in a shot glass and top with Godiva.", @@ -19315,7 +19315,7 @@ "Barenjager\u00ae honey liqueur" ], "title": "Chocolate Honeybee recipe", - "url": "http://www.drinksmixer.com/drink2844.html" + "url": "https://www.drinksmixer.com/drink2844.html" }, { "directions": "Pour ingredients into shaker filled with ice then pour into martini glass.", @@ -19324,7 +19324,7 @@ "creme de cacao" ], "title": "Chocolate Martini recipe", - "url": "http://www.drinksmixer.com/drink2845.html" + "url": "https://www.drinksmixer.com/drink2845.html" }, { "directions": "Shake ingredients with ice, then strain into a shot glass.", @@ -19333,7 +19333,7 @@ "vodka" ], "title": "Chocolate Martini #2 recipe", - "url": "http://www.drinksmixer.com/drink2846.html" + "url": "https://www.drinksmixer.com/drink2846.html" }, { "directions": "Mix vanilla vodka and chocolate liqueur in shaker filled with ice. Strain into either wine glass or martini glass. Garnish with a cherry.", @@ -19343,7 +19343,7 @@ "cherry" ], "title": "Chocolate Martini #3 recipe", - "url": "http://www.drinksmixer.com/drink2847.html" + "url": "https://www.drinksmixer.com/drink2847.html" }, { "directions": "Put the milk in the bottom, pour the liqueur on top and add the dash of amaretto. Do not mix.", @@ -19353,7 +19353,7 @@ "amaretto almond liqueur" ], "title": "Chocolate Milk recipe", - "url": "http://www.drinksmixer.com/drink2848.html" + "url": "https://www.drinksmixer.com/drink2848.html" }, { "directions": "In a shaker half-filled with ice cubes, combine all of the ingredients. Shake well. Strain into a cocktail glass.", @@ -19365,7 +19365,7 @@ "light cream" ], "title": "Chocolate Mint Rum recipe", - "url": "http://www.drinksmixer.com/drink2849.html" + "url": "https://www.drinksmixer.com/drink2849.html" }, { "directions": "Blend liqueurs with ice-cream, milk and syrup. Pour into a parfait glass, top with whipped cream and garnish with banana and cherry.", @@ -19380,7 +19380,7 @@ "bananas" ], "title": "Chocolate Monkey recipe", - "url": "http://www.drinksmixer.com/drink2850.html" + "url": "https://www.drinksmixer.com/drink2850.html" }, { "directions": "Shaken with ice.", @@ -19390,7 +19390,7 @@ "Bailey's\u00ae Irish cream" ], "title": "Chocolate Monk recipe", - "url": "http://www.drinksmixer.com/drink2851.html" + "url": "https://www.drinksmixer.com/drink2851.html" }, { "directions": "Stir.", @@ -19403,7 +19403,7 @@ "Hershey's\u00ae chocolate milk" ], "title": "Chocolate Orgasm recipe", - "url": "http://www.drinksmixer.com/drink2852.html" + "url": "https://www.drinksmixer.com/drink2852.html" }, { "directions": "Simply pour over ice into a tall glass.", @@ -19412,7 +19412,7 @@ "chocolate milk" ], "title": "Chocolate Paradise recipe", - "url": "http://www.drinksmixer.com/drink2853.html" + "url": "https://www.drinksmixer.com/drink2853.html" }, { "directions": "Fill the glass with ice cubes. Pour in the liqueurs and then top with cream. Garnish with chocolate shavings on the top.", @@ -19423,7 +19423,7 @@ "ice cubes" ], "title": "Chocolate Raspberry Brownie recipe", - "url": "http://www.drinksmixer.com/drink2854.html" + "url": "https://www.drinksmixer.com/drink2854.html" }, { "directions": "Chill vodka and creme de cacao. Pour into chilled glass. Garnish with chocolate kiss and fresh raspberry.", @@ -19432,7 +19432,7 @@ "white creme de cacao" ], "title": "Chocolate Raspberry Martini recipe", - "url": "http://www.drinksmixer.com/drink2855.html" + "url": "https://www.drinksmixer.com/drink2855.html" }, { "directions": "Shake all ingredients with ice, strain into an old-fashioned glass over ice cubes, and serve.", @@ -19444,7 +19444,7 @@ "cream" ], "title": "Chocolate Rum recipe", - "url": "http://www.drinksmixer.com/drink2856.html" + "url": "https://www.drinksmixer.com/drink2856.html" }, { "directions": "First add the chocolate syrup smoothly on the bottom of the glass. Mix in the vodka, and follow with coca-cola. Serve.", @@ -19454,7 +19454,7 @@ "Coca-Cola\u00ae" ], "title": "Chocolate Slam recipe", - "url": "http://www.drinksmixer.com/drink2857.html" + "url": "https://www.drinksmixer.com/drink2857.html" }, { "directions": "Shake all ingredients with ice, strain into a cocktail glass, and serve.", @@ -19464,7 +19464,7 @@ "limes" ], "title": "Chocolate Soldier recipe", - "url": "http://www.drinksmixer.com/drink2858.html" + "url": "https://www.drinksmixer.com/drink2858.html" }, { "directions": "Mix all together. Serve in a collins glass over ice.", @@ -19476,7 +19476,7 @@ "ice" ], "title": "Chocolate Toasted Almond recipe", - "url": "http://www.drinksmixer.com/drink2859.html" + "url": "https://www.drinksmixer.com/drink2859.html" }, { "directions": "Shake with ice and strain into a shot glass.", @@ -19488,7 +19488,7 @@ "soda water" ], "title": "Chocolate Valentine recipe", - "url": "http://www.drinksmixer.com/drink2860.html" + "url": "https://www.drinksmixer.com/drink2860.html" }, { "directions": "Pour ingredients into shaker filled with ice, then pour into chilled martini glass. Garnish with chocolate stick and mint sprig.", @@ -19498,7 +19498,7 @@ "white creme de cacao" ], "title": "Chocolate-Mint Martini recipe", - "url": "http://www.drinksmixer.com/drink2861.html" + "url": "https://www.drinksmixer.com/drink2861.html" }, { "directions": "Combine all ingredients (except chocolate shavings) in an electric blender and blend at a low speed for a short length of time. Pour into a chilled champagne flute, garnish with chocolate shavings, and serve.", @@ -19509,7 +19509,7 @@ "chocolate" ], "title": "Chocolatier recipe", - "url": "http://www.drinksmixer.com/drink2862.html" + "url": "https://www.drinksmixer.com/drink2862.html" }, { "directions": "In a mixing glass half-filled with ice cubes, combine all of the ingredients. Stir well. Strain into a cocktail glass.", @@ -19519,7 +19519,7 @@ "bitters" ], "title": "Choker recipe", - "url": "http://www.drinksmixer.com/drink2863.html" + "url": "https://www.drinksmixer.com/drink2863.html" }, { "directions": "In a large kettle (lobster pot), mix the Bacardi 151 Dark Rum, Bacardi White Rum, Kahlua, Milk and Vanilla Ice Cream (keep the ice cream in its form from the carton). Stir and mix in the cinnamon powder.", @@ -19532,7 +19532,7 @@ "Kahlua\u00ae coffee liqueur" ], "title": "ChoozyMothers Milk recipe", - "url": "http://www.drinksmixer.com/drink2864.html" + "url": "https://www.drinksmixer.com/drink2864.html" }, { "directions": "This makes a colorful as well as refreshing drink if the liquids are not mixed together. Pour the lemonade over crushed ice, then add the red wine. Garnish with a sprig of mint and a maraschino cherry. Good for hot days.", @@ -19541,7 +19541,7 @@ "dry red wine" ], "title": "Chowning's Tavern Wine Cooler recipe", - "url": "http://www.drinksmixer.com/drink2865.html" + "url": "https://www.drinksmixer.com/drink2865.html" }, { "directions": "Mix all ingredients except soda with lots of ice in a shaker. Fill a highball glass with crushed ice and add the mixed ingredients. Fill up with soda.", @@ -19553,7 +19553,7 @@ "soda water" ], "title": "Chris Crush recipe", - "url": "http://www.drinksmixer.com/drink2866.html" + "url": "https://www.drinksmixer.com/drink2866.html" }, { "directions": "Mix and serve with crushed ice in a small rocks glass.", @@ -19562,7 +19562,7 @@ "Bailey's\u00ae Irish cream" ], "title": "Christer Petterson recipe", - "url": "http://www.drinksmixer.com/drink2867.html" + "url": "https://www.drinksmixer.com/drink2867.html" }, { "directions": "Stir it up and shoot it down. HO! HO! HO! Tastes like christmas with a pine tree twist.", @@ -19571,7 +19571,7 @@ "peppermint schnapps" ], "title": "Christmas Cheer recipe", - "url": "http://www.drinksmixer.com/drink2868.html" + "url": "https://www.drinksmixer.com/drink2868.html" }, { "directions": "In a 6 2/3 Paris Goblet add Southern Comfort and then Drambuie. Top up with Draught Guinness.", @@ -19581,7 +19581,7 @@ "Guinness\u00ae stout" ], "title": "Christmas Pudding recipe", - "url": "http://www.drinksmixer.com/drink2869.html" + "url": "https://www.drinksmixer.com/drink2869.html" }, { "directions": "Place one part dry gin into a cocktail glass. Do not bruise the gin! Carefully add two parts sprite. Do not bruise the sprite. Optionally, add a dash of cayan pepper for added flavor. Add 3 tablespoons of dry ice for that mystical, yet strangely, psycho effect.", @@ -19590,7 +19590,7 @@ "Sprite\u00ae soda" ], "title": "Christmas Tree Water recipe", - "url": "http://www.drinksmixer.com/drink2870.html" + "url": "https://www.drinksmixer.com/drink2870.html" }, { "directions": "Pour jager into a shot glass, add the drops of tabasco sauce and serve.", @@ -19599,7 +19599,7 @@ "Tabasco\u00ae sauce" ], "title": "Chuck Wagon recipe", - "url": "http://www.drinksmixer.com/drink2871.html" + "url": "https://www.drinksmixer.com/drink2871.html" }, { "directions": "First goes pisco, then the ice cubes, fill with coke, a little bit of beer (any kind), and the lemon juice.", @@ -19611,7 +19611,7 @@ "lemon juice" ], "title": "Chulitro recipe", - "url": "http://www.drinksmixer.com/drink2872.html" + "url": "https://www.drinksmixer.com/drink2872.html" }, { "directions": "Pour a basic snake bite of half cider and lager in a pint glass. Then add to the top a shot of whiskey and vodka. Stir and then drink!", @@ -19622,7 +19622,7 @@ "Scotch whisky" ], "title": "Chumbawumba recipe", - "url": "http://www.drinksmixer.com/drink2873.html" + "url": "https://www.drinksmixer.com/drink2873.html" }, { "directions": "Mix over ice. Stir lightly.", @@ -19633,7 +19633,7 @@ "ice cubes" ], "title": "Cibola recipe", - "url": "http://www.drinksmixer.com/drink2874.html" + "url": "https://www.drinksmixer.com/drink2874.html" }, { "directions": "Build in an ice-filled collins glass. Top with ginger ale. Garnish with a wedge of lime.", @@ -19645,7 +19645,7 @@ "ginger ale" ], "title": "Cielo recipe", - "url": "http://www.drinksmixer.com/drink2875.html" + "url": "https://www.drinksmixer.com/drink2875.html" }, { "directions": "Blend with 2 cups of ice until smooth. Pour into hurricane glass and garnish with pineapple wedge and banana slice.", @@ -19655,7 +19655,7 @@ "pina colada mix" ], "title": "Cina Polada recipe", - "url": "http://www.drinksmixer.com/drink2876.html" + "url": "https://www.drinksmixer.com/drink2876.html" }, { "directions": "Shake well with lots of ice. Strain into glass. Garnish with fresh lime wedge if desired.", @@ -19665,7 +19665,7 @@ "Rose's\u00ae lime juice" ], "title": "Cinco de Mayo recipe", - "url": "http://www.drinksmixer.com/drink2877.html" + "url": "https://www.drinksmixer.com/drink2877.html" }, { "directions": "Start with a pint glass filled 3/4 with ice. Add the tequila, triple sec, and sweet and sour. The glass should be about 1/2 full. Add the ginger ale, and stir well.", @@ -19677,7 +19677,7 @@ "ice" ], "title": "Cinco de Rob-o recipe", - "url": "http://www.drinksmixer.com/drink2878.html" + "url": "https://www.drinksmixer.com/drink2878.html" }, { "directions": "Mix tequila, melon liqueur, sweet and sour and grenadine in a tall glass. Blend with ice, and serve.", @@ -19688,7 +19688,7 @@ "grenadine syrup" ], "title": "Cindy's Cycle recipe", - "url": "http://www.drinksmixer.com/drink2879.html" + "url": "https://www.drinksmixer.com/drink2879.html" }, { "directions": "Layer each ingredient on top of each other. Melon first, then grenadine, then baileys. Use back of tablespoon to layer evenly.", @@ -19698,7 +19698,7 @@ "Irish cream" ], "title": "Cinn's Stop Light recipe", - "url": "http://www.drinksmixer.com/drink2880.html" + "url": "https://www.drinksmixer.com/drink2880.html" }, { "directions": "Pour the shot of Goldschlager in a cocktail glass, fill with 1/2 glass of the chilled apple cider, and add 1 shot of caramel liqueur. Stir to mix.", @@ -19708,7 +19708,7 @@ "caramel liqueur" ], "title": "Cinnamon Caramel Apple recipe", - "url": "http://www.drinksmixer.com/drink2881.html" + "url": "https://www.drinksmixer.com/drink2881.html" }, { "directions": "Stir.", @@ -19717,7 +19717,7 @@ "A&W\u00ae vanilla cream soda" ], "title": "Cinnamon Cream recipe", - "url": "http://www.drinksmixer.com/drink2882.html" + "url": "https://www.drinksmixer.com/drink2882.html" }, { "directions": "Shake with ice. Serve with a slice of dried apple.", @@ -19728,7 +19728,7 @@ "ginger ale" ], "title": "Cinnamon Road recipe", - "url": "http://www.drinksmixer.com/drink2883.html" + "url": "https://www.drinksmixer.com/drink2883.html" }, { "directions": "In a moderately sized glass (about 8 to 12 oz or so) pour in finely crushed ice, followed by the cinnamon schnapps and vanilla vodka.", @@ -19737,7 +19737,7 @@ "Stoli\u00ae Vanil vodka" ], "title": "Cinnamon Toast Crunch recipe", - "url": "http://www.drinksmixer.com/drink2884.html" + "url": "https://www.drinksmixer.com/drink2884.html" }, { "directions": "Mix all ingredients thoroughly and pour in glass.", @@ -19749,7 +19749,7 @@ "creme de cacao" ], "title": "Cioccolato e Cocco recipe", - "url": "http://www.drinksmixer.com/drink2885.html" + "url": "https://www.drinksmixer.com/drink2885.html" }, { "directions": "Mix well in a blender with ice and serve in a highball glass that has been rimmed with jimmies. Garnish with a day-glo orange circus peanut.", @@ -19759,7 +19759,7 @@ "Rose's\u00ae lime juice" ], "title": "Circus Peanut Margarita recipe", - "url": "http://www.drinksmixer.com/drink2886.html" + "url": "https://www.drinksmixer.com/drink2886.html" }, { "directions": "Mix over ice and strain.", @@ -19770,7 +19770,7 @@ "7-Up\u00ae soda" ], "title": "Citron My Face recipe", - "url": "http://www.drinksmixer.com/drink2887.html" + "url": "https://www.drinksmixer.com/drink2887.html" }, { "directions": "Mix lemonade and absolut citron into a collins glass, shake or stir, add ice, and drink.", @@ -19779,7 +19779,7 @@ "Absolut\u00ae Citron vodka" ], "title": "Citronade recipe", - "url": "http://www.drinksmixer.com/drink2888.html" + "url": "https://www.drinksmixer.com/drink2888.html" }, { "directions": "Pour ingredients into a highball glass half filled with ice and stir well. Garnish with a lemon wedge and serve.", @@ -19790,7 +19790,7 @@ "lime juice" ], "title": "Citronella Cooler recipe", - "url": "http://www.drinksmixer.com/drink2889.html" + "url": "https://www.drinksmixer.com/drink2889.html" }, { "directions": "Pour half of a can of coke into a tall glass. Add bacardi limon, and top off with the remaining coke. Stir and serve.", @@ -19799,7 +19799,7 @@ "Coca-Cola\u00ae" ], "title": "Citrus Coke recipe", - "url": "http://www.drinksmixer.com/drink2890.html" + "url": "https://www.drinksmixer.com/drink2890.html" }, { "directions": "Fill a tall glass with ice. Add rum, triple sec, and sour mix. Fill remainder of glass with grapefruit juice. Stir and garnish with orange and lemon wedges.", @@ -19812,7 +19812,7 @@ "lemon" ], "title": "Citrus Smack recipe", - "url": "http://www.drinksmixer.com/drink2891.html" + "url": "https://www.drinksmixer.com/drink2891.html" }, { "directions": "Mix together in a tall glass, and serve.", @@ -19821,7 +19821,7 @@ "Squirt\u00ae citrus soda" ], "title": "Citrus Surprise recipe", - "url": "http://www.drinksmixer.com/drink2892.html" + "url": "https://www.drinksmixer.com/drink2892.html" }, { "directions": "In a shaker half-filled with ice cubes, combine all of the ingredients. Shake well. Strain into a cocktail glass.", @@ -19831,7 +19831,7 @@ "lemon juice" ], "title": "City Slicker recipe", - "url": "http://www.drinksmixer.com/drink2893.html" + "url": "https://www.drinksmixer.com/drink2893.html" }, { "directions": "Shake Clamato (keep at room temperature). Pour Clamato into Pilsner glass or oversized beer mug. Pour beer generously down the inside of the glass until full. Be careful of foaming head. Add celery salt, tabasco sauce, and/or worchestershire sauce for flavouring.", @@ -19843,7 +19843,7 @@ "Worcestershire sauce" ], "title": "Clam Eye recipe", - "url": "http://www.drinksmixer.com/drink2894.html" + "url": "https://www.drinksmixer.com/drink2894.html" }, { "directions": "Shake all ingredients with ice, strain into an old-fashioned glass over ice cubes, and serve.", @@ -19853,7 +19853,7 @@ "clamato juice" ], "title": "Clamato Cocktail recipe", - "url": "http://www.drinksmixer.com/drink2895.html" + "url": "https://www.drinksmixer.com/drink2895.html" }, { "directions": "The beer is first. The 7-Up is second. The ice is last, but it is only needed if the other ingredients aren't cold.", @@ -19863,7 +19863,7 @@ "ice cubes" ], "title": "Clara recipe", - "url": "http://www.drinksmixer.com/drink2896.html" + "url": "https://www.drinksmixer.com/drink2896.html" }, { "directions": "Stir all ingredients with ice, strain into a cocktail glass, and serve.", @@ -19874,7 +19874,7 @@ "triple sec" ], "title": "Claridge Cocktail recipe", - "url": "http://www.drinksmixer.com/drink2897.html" + "url": "https://www.drinksmixer.com/drink2897.html" }, { "directions": "Pour all ingredients into a shaker of ice, shake, then strain into a rocks glass full of ice. Drinker will have to constantly mix the drink in his glass as the Advocaat will settle.", @@ -19885,7 +19885,7 @@ "pineapple juice" ], "title": "Class Act recipe", - "url": "http://www.drinksmixer.com/drink2898.html" + "url": "https://www.drinksmixer.com/drink2898.html" }, { "directions": "Shake with ice. Strain in a cooled cocktail glass. Decorate with a maraschino cherry on a stick.", @@ -19896,7 +19896,7 @@ "Orange Curacao liqueur" ], "title": "The Classic recipe", - "url": "http://www.drinksmixer.com/drink2899.html" + "url": "https://www.drinksmixer.com/drink2899.html" }, { "directions": "Mix the kahlua, brandy, and irish cream together. Garnish with whipped cream. Chill.", @@ -19907,7 +19907,7 @@ "whipped cream" ], "title": "Cliffhanger recipe", - "url": "http://www.drinksmixer.com/drink2900.html" + "url": "https://www.drinksmixer.com/drink2900.html" }, { "directions": "Shake all ingredients well with cracked ice, strain into a chilled cocktail glass, and serve.", @@ -19920,7 +19920,7 @@ "light cream" ], "title": "Climax recipe", - "url": "http://www.drinksmixer.com/drink2901.html" + "url": "https://www.drinksmixer.com/drink2901.html" }, { "directions": "Pour 151 last and light.", @@ -19931,7 +19931,7 @@ "Rumple Minze\u00ae peppermint liqueur" ], "title": "Closed Casket recipe", - "url": "http://www.drinksmixer.com/drink2902.html" + "url": "https://www.drinksmixer.com/drink2902.html" }, { "directions": "Mix all ingredients except whipped cream in a blender until ice is well chopped. Pour in coffee mug and top with generous portion of whipped cream.", @@ -19946,7 +19946,7 @@ "whipped cream" ], "title": "Cloud 9 recipe", - "url": "http://www.drinksmixer.com/drink2903.html" + "url": "https://www.drinksmixer.com/drink2903.html" }, { "directions": "Drink the neck of the bottle of Corona. Fill in with tequila and then add lime wedge. Turn bottle over to mix the ingredients, making sure to keep your thumb on the opening, as not to spill.", @@ -19956,7 +19956,7 @@ "lime" ], "title": "Cloudy Day recipe", - "url": "http://www.drinksmixer.com/drink2904.html" + "url": "https://www.drinksmixer.com/drink2904.html" }, { "directions": "Mix vodka and kahlua in a highball glass. Fill with ginger ale.", @@ -19966,7 +19966,7 @@ "ginger ale" ], "title": "Clousseau recipe", - "url": "http://www.drinksmixer.com/drink2905.html" + "url": "https://www.drinksmixer.com/drink2905.html" }, { "directions": "Stir all ingredients with ice, strain into a cocktail glass, and serve.", @@ -19976,7 +19976,7 @@ "Muscatel wine" ], "title": "Clove Cocktail recipe", - "url": "http://www.drinksmixer.com/drink2906.html" + "url": "https://www.drinksmixer.com/drink2906.html" }, { "directions": "Shake all ingredients with ice, strain into a cocktail glass, and serve.", @@ -19987,7 +19987,7 @@ "egg" ], "title": "Clover Club Cocktail recipe", - "url": "http://www.drinksmixer.com/drink2907.html" + "url": "https://www.drinksmixer.com/drink2907.html" }, { "directions": "Shake all ingredients (except mint) with ice and strain into a cocktail glass. Add the sprig of mint and serve.", @@ -19999,7 +19999,7 @@ "mint" ], "title": "Clover Leaf Cocktail recipe", - "url": "http://www.drinksmixer.com/drink2908.html" + "url": "https://www.drinksmixer.com/drink2908.html" }, { "directions": "Pour all ingredients into mixing glass filled with ice, stir and strain into cocktail glass. Garnish with a cherry.", @@ -20010,7 +20010,7 @@ "cherries" ], "title": "Club Cuba recipe", - "url": "http://www.drinksmixer.com/drink2909.html" + "url": "https://www.drinksmixer.com/drink2909.html" }, { "directions": "Fill a hurricane glass with ice, add malibu and blue curacao, and a splash of triple sec. Fill remainder of glass with equal parts of pineapple juice and 7-up. Add a dash of grenadine. Garnish with a cherry and an umbrella.", @@ -20024,7 +20024,7 @@ "cherries" ], "title": "Club Tropix recipe", - "url": "http://www.drinksmixer.com/drink2910.html" + "url": "https://www.drinksmixer.com/drink2910.html" }, { "directions": "Once the vodka and all of the extra ingredient's are added to your glass, stir. Add ice.", @@ -20036,7 +20036,7 @@ "ice" ], "title": "Clueless recipe", - "url": "http://www.drinksmixer.com/drink2911.html" + "url": "https://www.drinksmixer.com/drink2911.html" }, { "directions": "Pour the blue Curacao and the vodka in a highball glass. Top with pineapple juice and a splash of 7-up. Garnish with a cherry.", @@ -20048,7 +20048,7 @@ "cherry" ], "title": "Coast-Line recipe", - "url": "http://www.drinksmixer.com/drink2912.html" + "url": "https://www.drinksmixer.com/drink2912.html" }, { "directions": "Shake and strain over ice in a highball glass. Float coke on top, and serve.", @@ -20061,7 +20061,7 @@ "Coca-Cola\u00ae" ], "title": "Cocaine Lady #2 recipe", - "url": "http://www.drinksmixer.com/drink2913.html" + "url": "https://www.drinksmixer.com/drink2913.html" }, { "directions": "Mix all ingredients in a shaker with ice, shake, strain into shot glass. The amount of milk is optional depending on desired potancy of shot.", @@ -20073,7 +20073,7 @@ "milk" ], "title": "Cocaine Lady recipe", - "url": "http://www.drinksmixer.com/drink2914.html" + "url": "https://www.drinksmixer.com/drink2914.html" }, { "directions": "Shake with ice and strain. Serve in chilled shot glass.", @@ -20086,7 +20086,7 @@ "Coca-Cola\u00ae" ], "title": "Cocaine Shooter recipe", - "url": "http://www.drinksmixer.com/drink2915.html" + "url": "https://www.drinksmixer.com/drink2915.html" }, { "directions": "Pour both ingredients into shot glass and mix. Sing a verse of La Cucaracha, or sing la-la-la-la-laaa lots. Bonus points if you can sing it in Spanish. Continue until you can no longer sing la-la-la-la-laaaaa.", @@ -20095,7 +20095,7 @@ "Drambuie\u00ae Scotch whisky" ], "title": "Cockroach recipe", - "url": "http://www.drinksmixer.com/drink2916.html" + "url": "https://www.drinksmixer.com/drink2916.html" }, { "directions": "Pour into chilled shot glass.", @@ -20105,7 +20105,7 @@ "Midori\u00ae melon liqueur" ], "title": "Cockteaser recipe", - "url": "http://www.drinksmixer.com/drink2917.html" + "url": "https://www.drinksmixer.com/drink2917.html" }, { "directions": "Shake all with ice, serve in lowball over ice, or neat in a martini glass.", @@ -20115,7 +20115,7 @@ "cream" ], "title": "Coco Channel recipe", - "url": "http://www.drinksmixer.com/drink2918.html" + "url": "https://www.drinksmixer.com/drink2918.html" }, { "directions": "Pour the ingredients in a shaker with ice cubes, shake, and pour in a cocktail glass.", @@ -20125,7 +20125,7 @@ "milk" ], "title": "Coco Cognac recipe", - "url": "http://www.drinksmixer.com/drink2919.html" + "url": "https://www.drinksmixer.com/drink2919.html" }, { "directions": "Add OJ, Cranberry juice, and Malibu into a mixing glass and pour into the highball glass.", @@ -20135,7 +20135,7 @@ "Malibu\u00ae coconut rum" ], "title": "Coco Rush recipe", - "url": "http://www.drinksmixer.com/drink2920.html" + "url": "https://www.drinksmixer.com/drink2920.html" }, { "directions": "Mix in a shaker and serve with a slice of lime.", @@ -20147,7 +20147,7 @@ "ice cubes" ], "title": "Coco's Cocktail recipe", - "url": "http://www.drinksmixer.com/drink2921.html" + "url": "https://www.drinksmixer.com/drink2921.html" }, { "directions": "Shake with ice. Strain into a cocktail glass and garnish with a maraschino cherry.", @@ -20159,7 +20159,7 @@ "maraschino cherry" ], "title": "Cocoa Chanel recipe", - "url": "http://www.drinksmixer.com/drink2922.html" + "url": "https://www.drinksmixer.com/drink2922.html" }, { "directions": "Combine rum, juice of lemon, pineapple juice, and orange juice. Pour into a collins glass over ice cubes. Fill with red wine, add the pineapple stick, and serve.", @@ -20172,7 +20172,7 @@ "pineapple" ], "title": "Cocomacoque recipe", - "url": "http://www.drinksmixer.com/drink2923.html" + "url": "https://www.drinksmixer.com/drink2923.html" }, { "directions": "Combine all ingredients into a shaker with ice shake & strain into cocktail glass.", @@ -20182,7 +20182,7 @@ "cream" ], "title": "Coconut Cream Pie recipe", - "url": "http://www.drinksmixer.com/drink2924.html" + "url": "https://www.drinksmixer.com/drink2924.html" }, { "directions": "Shake or blend until frothy, then pour over ice and garnish with toasted coconut.", @@ -20192,7 +20192,7 @@ "milk" ], "title": "Coconut Frappe recipe", - "url": "http://www.drinksmixer.com/drink2925.html" + "url": "https://www.drinksmixer.com/drink2925.html" }, { "directions": "Serve with or without ice.", @@ -20202,7 +20202,7 @@ "milk" ], "title": "Coconut Pie recipe", - "url": "http://www.drinksmixer.com/drink2926.html" + "url": "https://www.drinksmixer.com/drink2926.html" }, { "directions": "Combine all ingredients (except coconut) in an electric blender and blend at a low speed for a short length of time. Pour into a chilled champagne flute, garnish with shredded coconut, and serve.", @@ -20213,7 +20213,7 @@ "coconuts" ], "title": "Coconut Toastie recipe", - "url": "http://www.drinksmixer.com/drink2927.html" + "url": "https://www.drinksmixer.com/drink2927.html" }, { "directions": "Put licor 43 and coffee into mug. Pour cream gently over the coffee, don't let them mix.", @@ -20223,7 +20223,7 @@ "cream" ], "title": "Coffee 43 recipe", - "url": "http://www.drinksmixer.com/drink2928.html" + "url": "https://www.drinksmixer.com/drink2928.html" }, { "directions": "Mix coffee, sugar, and milk in a blender and add more of either to taste, then add the ice and crush it until no large chunks are present. Add the Kahlua, and mix if you'd like that.", @@ -20235,7 +20235,7 @@ "Kahlua\u00ae coffee liqueur" ], "title": "Coffee Coolata recipe", - "url": "http://www.drinksmixer.com/drink2929.html" + "url": "https://www.drinksmixer.com/drink2929.html" }, { "directions": "Pour first three in order, layer Bailey's on top.", @@ -20246,7 +20246,7 @@ "Bailey's\u00ae Irish cream" ], "title": "Coffee Crisp Shot recipe", - "url": "http://www.drinksmixer.com/drink2930.html" + "url": "https://www.drinksmixer.com/drink2930.html" }, { "directions": "Add four ingredients and shake well, pour into old-fashioned glass. Do not use ice.", @@ -20257,7 +20257,7 @@ "milk" ], "title": "Coffee Crisp recipe", - "url": "http://www.drinksmixer.com/drink2931.html" + "url": "https://www.drinksmixer.com/drink2931.html" }, { "directions": "Shake all ingredients (except nutmeg) with ice and strain into a whiskey sour glass. Sprinkle nutmeg on top and serve.", @@ -20270,7 +20270,7 @@ "nutmeg" ], "title": "Coffee Flip recipe", - "url": "http://www.drinksmixer.com/drink2932.html" + "url": "https://www.drinksmixer.com/drink2932.html" }, { "directions": "Shake all ingredients with ice, strain into an old-fashioned glass over ice cubes, and serve.", @@ -20280,7 +20280,7 @@ "light cream" ], "title": "Coffee Grasshopper recipe", - "url": "http://www.drinksmixer.com/drink2933.html" + "url": "https://www.drinksmixer.com/drink2933.html" }, { "directions": "Pour into glass and stir. Shoot.", @@ -20291,7 +20291,7 @@ "Scotch whisky" ], "title": "Coffee Grinder recipe", - "url": "http://www.drinksmixer.com/drink2934.html" + "url": "https://www.drinksmixer.com/drink2934.html" }, { "directions": "Combine coffee, sugar and water. Simmer 1 hour and let cool. Add vanilla and vodka. Age in sealed jar 2 to 3 weeks.", @@ -20303,7 +20303,7 @@ "water" ], "title": "Coffee Liqueur recipe", - "url": "http://www.drinksmixer.com/drink2935.html" + "url": "https://www.drinksmixer.com/drink2935.html" }, { "directions": "Combine all with coffee and top with whipped cream.", @@ -20315,7 +20315,7 @@ "whipped cream" ], "title": "Coffee Nudge recipe", - "url": "http://www.drinksmixer.com/drink2936.html" + "url": "https://www.drinksmixer.com/drink2936.html" }, { "directions": "Shake all ingredients with ice, strain into a whiskey sour glass, and serve.", @@ -20326,7 +20326,7 @@ "egg" ], "title": "Coffee Sour recipe", - "url": "http://www.drinksmixer.com/drink2937.html" + "url": "https://www.drinksmixer.com/drink2937.html" }, { "directions": "Boil water and sugar until dissolved. Turn off heat. Slowly add dry instant coffee and continue stirring. \r", @@ -20339,7 +20339,7 @@ "food coloring" ], "title": "Coffee-Vodka recipe", - "url": "http://www.drinksmixer.com/drink2938.html" + "url": "https://www.drinksmixer.com/drink2938.html" }, { "directions": "Shake well all ingredients in a shaker. Strain into cocktail glass and grate some nutmeg on top.", @@ -20351,7 +20351,7 @@ "ice" ], "title": "Cognac Flip recipe", - "url": "http://www.drinksmixer.com/drink2939.html" + "url": "https://www.drinksmixer.com/drink2939.html" }, { "directions": "Pour cognac into a highball glass over ice cubes. Fill with carbonated water. Add the twist of lemon peel, stir, and serve. (Ginger ale may be substituted for carbonated water, if preferred.)", @@ -20361,7 +20361,7 @@ "lemon" ], "title": "Cognac Highball recipe", - "url": "http://www.drinksmixer.com/drink2940.html" + "url": "https://www.drinksmixer.com/drink2940.html" }, { "directions": "Mix the kahlua and coconut liqueur, poor over crushed ice, and sprinkle a pinch of cinnamon on the top. Voila! You can also put this in a blender if you so desire.", @@ -20372,7 +20372,7 @@ "ice" ], "title": "Cokahlualicious recipe", - "url": "http://www.drinksmixer.com/drink2941.html" + "url": "https://www.drinksmixer.com/drink2941.html" }, { "directions": "Fill tall glass with ice. Pour Coca-Cola into glass. Add amaretto and stir. Drink with straw.", @@ -20381,7 +20381,7 @@ "Coca-Cola\u00ae" ], "title": "Cokaretto recipe", - "url": "http://www.drinksmixer.com/drink2942.html" + "url": "https://www.drinksmixer.com/drink2942.html" }, { "directions": "Take a glass, pour the coke in the glass, then you take 7 drops of lemon juice. Garnish with a lemon slice on the rim of the glass.", @@ -20390,7 +20390,7 @@ "lemon juice" ], "title": "Coke and Drops recipe", - "url": "http://www.drinksmixer.com/drink2943.html" + "url": "https://www.drinksmixer.com/drink2943.html" }, { "directions": "Pour into tall glass over ice, fill with Coca-Cola and add a wedge of lemon.", @@ -20401,7 +20401,7 @@ "lemon" ], "title": "Cokello recipe", - "url": "http://www.drinksmixer.com/drink2944.html" + "url": "https://www.drinksmixer.com/drink2944.html" }, { "directions": "Mix all liquids in a large punch bowl. Float the sherbet on top.", @@ -20412,7 +20412,7 @@ "sherbet" ], "title": "Cold Duck Punch recipe", - "url": "http://www.drinksmixer.com/drink2945.html" + "url": "https://www.drinksmixer.com/drink2945.html" }, { "directions": "Stir together Milk and Schnapps, pour into highball glass, and serve.", @@ -20422,7 +20422,7 @@ "milk" ], "title": "Cold Fire recipe", - "url": "http://www.drinksmixer.com/drink2946.html" + "url": "https://www.drinksmixer.com/drink2946.html" }, { "directions": "Use 1 part of creme de menthe with 4 parts club soda; serve in a tall glass, and stir.", @@ -20431,7 +20431,7 @@ "club soda" ], "title": "Cold Shower recipe", - "url": "http://www.drinksmixer.com/drink2947.html" + "url": "https://www.drinksmixer.com/drink2947.html" }, { "directions": "Shake well with ice in a shaker. Strain over crushed ice in a highball glass.", @@ -20443,7 +20443,7 @@ "crushed ice" ], "title": "Colibri recipe", - "url": "http://www.drinksmixer.com/drink2948.html" + "url": "https://www.drinksmixer.com/drink2948.html" }, { "directions": "Layer in a shot glass, or just pour straight into glass.", @@ -20453,7 +20453,7 @@ "Hennessy\u00ae cognac" ], "title": "The Colombian recipe", - "url": "http://www.drinksmixer.com/drink2949.html" + "url": "https://www.drinksmixer.com/drink2949.html" }, { "directions": "Shake all ingredients (except olive) with ice and strain into a cocktail glass. Add the olive and serve.", @@ -20464,7 +20464,7 @@ "olive" ], "title": "Colonial Cocktail recipe", - "url": "http://www.drinksmixer.com/drink2950.html" + "url": "https://www.drinksmixer.com/drink2950.html" }, { "directions": "Add crushed ice halfway up the glass. Add liquor ingredients. Stir with swizzle stick. Garnish with fruit. Relax and sip.", @@ -20478,7 +20478,7 @@ "cherry" ], "title": "Colonial Rummer recipe", - "url": "http://www.drinksmixer.com/drink2951.html" + "url": "https://www.drinksmixer.com/drink2951.html" }, { "directions": "In a shaker mix Vodka, Kahlua, and milk. Pour into a rocks glass and add a splash of Coca-Cola.", @@ -20489,7 +20489,7 @@ "Coca-Cola\u00ae" ], "title": "Colorado Bulldog recipe", - "url": "http://www.drinksmixer.com/drink2952.html" + "url": "https://www.drinksmixer.com/drink2952.html" }, { "directions": "Combine all ingredients in small snifter. Sip slowly or take as a shot.", @@ -20500,7 +20500,7 @@ "Firewater\u00ae cinnamon schnapps" ], "title": "Colorado Cider recipe", - "url": "http://www.drinksmixer.com/drink2953.html" + "url": "https://www.drinksmixer.com/drink2953.html" }, { "directions": "Mix ingredients in a shaker with a scoop of ice, and pour into a highball glass.", @@ -20514,7 +20514,7 @@ "7-Up\u00ae soda" ], "title": "Colorado Coolaid recipe", - "url": "http://www.drinksmixer.com/drink2954.html" + "url": "https://www.drinksmixer.com/drink2954.html" }, { "directions": "In a shaker mix Spiced Rum, Kahlua, and Cream. Pur into a mason jar filled with ice and add a splash of Coca-Cola. Garnish with a couple of Filberts.", @@ -20525,7 +20525,7 @@ "Coca-Cola\u00ae" ], "title": "Colorado Pitbull recipe", - "url": "http://www.drinksmixer.com/drink2955.html" + "url": "https://www.drinksmixer.com/drink2955.html" }, { "directions": "Pour chilled Tequila in shot glass and put to the side. Pour Tomato Juice in a second shot glass and dash Black Pepper and Tabasco in the Tomato Juice. Shoot the Tequila and chase with the shot of Tomato Juice.", @@ -20536,7 +20536,7 @@ "black peppers" ], "title": "Colorado Rattlesnake recipe", - "url": "http://www.drinksmixer.com/drink2956.html" + "url": "https://www.drinksmixer.com/drink2956.html" }, { "directions": "Blend well with large scoop of ice.", @@ -20546,7 +20546,7 @@ "orange juice" ], "title": "Columbia Gold recipe", - "url": "http://www.drinksmixer.com/drink2957.html" + "url": "https://www.drinksmixer.com/drink2957.html" }, { "directions": "Shake all ingredients with ice, strain into an old-fashioned glass over ice cubes, and serve.", @@ -20558,7 +20558,7 @@ "bitters" ], "title": "Combo recipe", - "url": "http://www.drinksmixer.com/drink2958.html" + "url": "https://www.drinksmixer.com/drink2958.html" }, { "directions": "In a shaker full of cracked ice, combine Campari and lemon juice. Shake and strain into a chilled cocktail glass. Heat brandy in a chaffing dish. When warm, ignite the brandy and pour in a flaming stream into the cocktail glass.", @@ -20568,7 +20568,7 @@ "lemon juice" ], "title": "Combustible Edison recipe", - "url": "http://www.drinksmixer.com/drink2959.html" + "url": "https://www.drinksmixer.com/drink2959.html" }, { "directions": "Pour orange juice over 3 ice cubes in a highball glass. Add southern comfort and stir lightly.", @@ -20578,7 +20578,7 @@ "ice cubes" ], "title": "Comfort Driver recipe", - "url": "http://www.drinksmixer.com/drink2960.html" + "url": "https://www.drinksmixer.com/drink2960.html" }, { "directions": "Combine Vermouth, Southern Comfort, and ice in a glass and stir well. Strain into a cocktail glass.", @@ -20587,7 +20587,7 @@ "Noilly Prat\u00ae French vermouth" ], "title": "Comfort Dry Manhattan recipe", - "url": "http://www.drinksmixer.com/drink2961.html" + "url": "https://www.drinksmixer.com/drink2961.html" }, { "directions": "Pour southern comfort and orange juice into a highball glass. Serve chilled.", @@ -20596,7 +20596,7 @@ "orange juice" ], "title": "Comfortable Screw recipe", - "url": "http://www.drinksmixer.com/drink2962.html" + "url": "https://www.drinksmixer.com/drink2962.html" }, { "directions": "In a mixing glass, half-filled with crushed ice, combine the Brandy, Southern Comfort, and Vermouth. Stir well. Strain into a cocktail glass and garnish with the lemon twist.", @@ -20608,7 +20608,7 @@ "crushed ice" ], "title": "Comforting Tiger recipe", - "url": "http://www.drinksmixer.com/drink2963.html" + "url": "https://www.drinksmixer.com/drink2963.html" }, { "directions": "Shake all ingredients with ice, strain into a cocktail glass, and serve.", @@ -20619,7 +20619,7 @@ "orange bitters" ], "title": "Commodore Cocktail recipe", - "url": "http://www.drinksmixer.com/drink2964.html" + "url": "https://www.drinksmixer.com/drink2964.html" }, { "directions": "Pour all of the ingredients into an old-fashioned glass almost filled with ice cubes. Stir well.", @@ -20629,7 +20629,7 @@ "dark creme de cacao" ], "title": "Communicator recipe", - "url": "http://www.drinksmixer.com/drink2965.html" + "url": "https://www.drinksmixer.com/drink2965.html" }, { "directions": "In a mixing glass half-filled with ice cubes, combine all of the ingredients. Stir well. Strain into a cocktail glass.", @@ -20640,7 +20640,7 @@ "orange bitters" ], "title": "Compadre recipe", - "url": "http://www.drinksmixer.com/drink2966.html" + "url": "https://www.drinksmixer.com/drink2966.html" }, { "directions": "Layer ingredients in above order in a shot glass. Light the Bacardi 151 Rum on fire, and serve.\r", @@ -20650,7 +20650,7 @@ "Bacardi\u00ae 151 rum" ], "title": "Concorde recipe", - "url": "http://www.drinksmixer.com/drink2967.html" + "url": "https://www.drinksmixer.com/drink2967.html" }, { "directions": "First you drink the vodka (no swallowing), then you drink the Bailey's. You mix it in the mouth and swallow.", @@ -20659,7 +20659,7 @@ "Bailey's\u00ae Irish cream" ], "title": "Concrete recipe", - "url": "http://www.drinksmixer.com/drink2968.html" + "url": "https://www.drinksmixer.com/drink2968.html" }, { "directions": "In a shaker half-filled with crushed ice, combine all of the ingredients. Shake well. Strain into a cocktail glass.", @@ -20671,7 +20671,7 @@ "crushed ice" ], "title": "Confirmed Bachelor recipe", - "url": "http://www.drinksmixer.com/drink2969.html" + "url": "https://www.drinksmixer.com/drink2969.html" }, { "directions": "Shake and serve.", @@ -20683,7 +20683,7 @@ "grenadine syrup" ], "title": "Conga Line recipe", - "url": "http://www.drinksmixer.com/drink2970.html" + "url": "https://www.drinksmixer.com/drink2970.html" }, { "directions": "Put everything into a pint glass with one ice cube, and serve.", @@ -20694,7 +20694,7 @@ "Bulmers\u00ae cider" ], "title": "The Constable Shuffle recipe", - "url": "http://www.drinksmixer.com/drink2971.html" + "url": "https://www.drinksmixer.com/drink2971.html" }, { "directions": "Shake all ingredients (except lemon peel) with ice and strain into a cocktail glass. Add the twist of lemon peel and serve.", @@ -20706,7 +20706,7 @@ "lemon" ], "title": "Continental recipe", - "url": "http://www.drinksmixer.com/drink2972.html" + "url": "https://www.drinksmixer.com/drink2972.html" }, { "directions": "In a blender, combine ingredients with ice and enjoy!", @@ -20718,7 +20718,7 @@ "ice cubes" ], "title": "Coo Coo recipe", - "url": "http://www.drinksmixer.com/drink2973.html" + "url": "https://www.drinksmixer.com/drink2973.html" }, { "directions": "Layer Amaretto above Bailey's Irish Cream, then add various pinches of Cinnamon. Serve once Cinnamon clumps begin to settle into the liquor.", @@ -20728,7 +20728,7 @@ "cinnamon" ], "title": "Cookie Dough recipe", - "url": "http://www.drinksmixer.com/drink2974.html" + "url": "https://www.drinksmixer.com/drink2974.html" }, { "directions": "Mix and stir and pour over ice.", @@ -20738,7 +20738,7 @@ "Everclear\u00ae alcohol" ], "title": "Cookie Monster recipe", - "url": "http://www.drinksmixer.com/drink2975.html" + "url": "https://www.drinksmixer.com/drink2975.html" }, { "directions": "Use a spoon to layer the alcohol and float 151 on the top. Lite on fire, let it burn for about 5 seconds, then blow it out and suck it up through a straw.", @@ -20748,7 +20748,7 @@ "Bacardi\u00ae 151 rum" ], "title": "Cookie Monster #2 recipe", - "url": "http://www.drinksmixer.com/drink2976.html" + "url": "https://www.drinksmixer.com/drink2976.html" }, { "directions": "Throw all ingredients together in an old-fashioned glass, and serve.", @@ -20759,7 +20759,7 @@ "Kahlua\u00ae coffee liqueur" ], "title": "Cookie Tosser recipe", - "url": "http://www.drinksmixer.com/drink2977.html" + "url": "https://www.drinksmixer.com/drink2977.html" }, { "directions": "Add the creme de cacao and vanilla schnapps and then fill with milk.", @@ -20769,7 +20769,7 @@ "milk" ], "title": "Cookies 'n' Cream recipe", - "url": "http://www.drinksmixer.com/drink2978.html" + "url": "https://www.drinksmixer.com/drink2978.html" }, { "directions": "Mix in highball glass. Stir. Garnish with cherries.", @@ -20779,7 +20779,7 @@ "ice cubes" ], "title": "Cool Coco recipe", - "url": "http://www.drinksmixer.com/drink2979.html" + "url": "https://www.drinksmixer.com/drink2979.html" }, { "directions": "Place all ingredients into a blender jar. Cover, and whiz on medium speed until well blended. Pour into a collins glass, and serve.", @@ -20789,7 +20789,7 @@ "honey" ], "title": "Cool Cow recipe", - "url": "http://www.drinksmixer.com/drink2980.html" + "url": "https://www.drinksmixer.com/drink2980.html" }, { "directions": "Put a few ice-cubes in a longdrink glass, and put a little lemon juice in it. Then cut a cucumber in two halves and cut off a part. Get the seeds out and put it in the glass as well. Shake in a well cooled down bottle of champagne and let the glass stand in the refrigerator for a while. Then it's ready to drink.", @@ -20801,7 +20801,7 @@ "ice cubes" ], "title": "Cool Cucumber recipe", - "url": "http://www.drinksmixer.com/drink2981.html" + "url": "https://www.drinksmixer.com/drink2981.html" }, { "directions": "Pour a shot each (in different glasses). Down Hot Damn, chase with Schnapps.", @@ -20810,7 +20810,7 @@ "peppermint schnapps" ], "title": "Cool Hot Damn recipe", - "url": "http://www.drinksmixer.com/drink2982.html" + "url": "https://www.drinksmixer.com/drink2982.html" }, { "directions": "Pour ingredients in a hurricane glass, mix it up, and serve.", @@ -20820,7 +20820,7 @@ "Sprite\u00ae soda" ], "title": "Cool Kid recipe", - "url": "http://www.drinksmixer.com/drink2983.html" + "url": "https://www.drinksmixer.com/drink2983.html" }, { "directions": "Put in juice first, then add everclear. Add as many wedges of fruit as you'd like, and preferably soak them in everclear for about an hour beforehand (for added flavor). Fruit wedges make an excellent snack.\r", @@ -20830,7 +20830,7 @@ "fruit" ], "title": "Coon Dawg Punch recipe", - "url": "http://www.drinksmixer.com/drink2984.html" + "url": "https://www.drinksmixer.com/drink2984.html" }, { "directions": "Mix together then strain through ice.", @@ -20840,7 +20840,7 @@ "7-Up\u00ae soda" ], "title": "CoonDogg recipe", - "url": "http://www.drinksmixer.com/drink2985.html" + "url": "https://www.drinksmixer.com/drink2985.html" }, { "directions": "Shake all ingredients (except mint) with ice and strain into a cocktail glass. Add the sprig of mint and serve.", @@ -20851,7 +20851,7 @@ "mint" ], "title": "Cooperstown Cocktail recipe", - "url": "http://www.drinksmixer.com/drink2986.html" + "url": "https://www.drinksmixer.com/drink2986.html" }, { "directions": "Layer ingredients in a tall shot glass in this order: Grenadine, Chambord, Aftershock and Absolut Kurant. \r", @@ -20862,7 +20862,7 @@ "Absolut\u00ae Kurant vodka" ], "title": "Cooter Cork recipe", - "url": "http://www.drinksmixer.com/drink2987.html" + "url": "https://www.drinksmixer.com/drink2987.html" }, { "directions": "Chill the glass, then fill it with crushed ice. \r", @@ -20873,7 +20873,7 @@ "crushed ice" ], "title": "Copenheering recipe", - "url": "http://www.drinksmixer.com/drink2988.html" + "url": "https://www.drinksmixer.com/drink2988.html" }, { "directions": "Add the Bailey's Irish Cream to a shot glass and add Butterscotch Schnapps on top.", @@ -20882,7 +20882,7 @@ "butterscotch schnapps" ], "title": "Copper Camel recipe", - "url": "http://www.drinksmixer.com/drink2989.html" + "url": "https://www.drinksmixer.com/drink2989.html" }, { "directions": "Combine in an ice cube-filled collins glass. Garnish with a lime wedge.", @@ -20891,7 +20891,7 @@ "ginger ale" ], "title": "Copperhead recipe", - "url": "http://www.drinksmixer.com/drink2990.html" + "url": "https://www.drinksmixer.com/drink2990.html" }, { "directions": "Combine Creme de Banana, Malibu Rum, Pineapple Juice & ice in mixing tin. Shake or flash blend. Strain over ice and float Midori. Garnish with watermelon wedge.", @@ -20902,7 +20902,7 @@ "Midori\u00ae melon liqueur" ], "title": "Coppertone Punch recipe", - "url": "http://www.drinksmixer.com/drink2991.html" + "url": "https://www.drinksmixer.com/drink2991.html" }, { "directions": "Boil the cinnamon sticks in the water. Take the sticks out when the water is yellow and has the smell and taste of cinnamon. \r", @@ -20916,7 +20916,7 @@ "white rum" ], "title": "Coquito recipe", - "url": "http://www.drinksmixer.com/drink2992.html" + "url": "https://www.drinksmixer.com/drink2992.html" }, { "directions": "In a mixing glass half-filled with ice cubes, combine the rum, peach schnapps, and vermouth. Stir well. Strain into a cocktail glass and garnish with the lemon twist.", @@ -20927,7 +20927,7 @@ "lemon" ], "title": "Corkscrew recipe", - "url": "http://www.drinksmixer.com/drink2993.html" + "url": "https://www.drinksmixer.com/drink2993.html" }, { "directions": "Shake all ingredients with ice, strain into a cocktail glass, and serve.", @@ -20938,7 +20938,7 @@ "egg" ], "title": "Cornell Cocktail recipe", - "url": "http://www.drinksmixer.com/drink2994.html" + "url": "https://www.drinksmixer.com/drink2994.html" }, { "directions": "In a highball glass, add Vodka, Watermelon Schnapps, and Sour Mix. Fill the rest of the glass with ice and shake well. Finish with a splash of Club Soda.", @@ -20950,7 +20950,7 @@ "club soda" ], "title": "The Cornell recipe", - "url": "http://www.drinksmixer.com/drink2995.html" + "url": "https://www.drinksmixer.com/drink2995.html" }, { "directions": "Pour the malibu rum, banana liqueur, and cherry brandy. Add the ice and sprite. Add lime wedge and serve.", @@ -20963,7 +20963,7 @@ "Sprite\u00ae soda" ], "title": "Cornholio's Revenge recipe", - "url": "http://www.drinksmixer.com/drink2996.html" + "url": "https://www.drinksmixer.com/drink2996.html" }, { "directions": "Pour the rum, gin, triple sec, and grapefruit juice into a highball glass almost filled with ice cubes. Stir well. Drop the cherry brandy into the center of the drink. Garnish with the cherry.", @@ -20976,7 +20976,7 @@ "maraschino cherry" ], "title": "Cornwall-Nash recipe", - "url": "http://www.drinksmixer.com/drink2997.html" + "url": "https://www.drinksmixer.com/drink2997.html" }, { "directions": "Stir all ingredients with ice, strain into a cocktail glass, and serve.", @@ -20986,7 +20986,7 @@ "Dubonnet\u00ae French vermouth" ], "title": "Coronation Cocktail recipe", - "url": "http://www.drinksmixer.com/drink2998.html" + "url": "https://www.drinksmixer.com/drink2998.html" }, { "directions": "In a mixing glass half-filled with ice cubes, combine all of the ingredients. Stir well. Strain into a cocktail glass.", @@ -20996,7 +20996,7 @@ "white creme de menthe" ], "title": "Corpse Reviver recipe", - "url": "http://www.drinksmixer.com/drink2999.html" + "url": "https://www.drinksmixer.com/drink2999.html" }, { "directions": "Chill cocktail glass. Pour ingredients with ice into mixer and shake well. Serve straight up with a cherry.", @@ -21007,7 +21007,7 @@ "cranberry juice" ], "title": "Cosmo Katie recipe", - "url": "http://www.drinksmixer.com/drink3000.html" + "url": "https://www.drinksmixer.com/drink3000.html" }, { "directions": "Mix really well and serve.", @@ -21017,7 +21017,7 @@ "ice cubes" ], "title": "Cosmonaut recipe", - "url": "http://www.drinksmixer.com/drink3001.html" + "url": "https://www.drinksmixer.com/drink3001.html" }, { "directions": "Pour all ingredients in mixing glass half filled with ice, shake and strain into chilled martini glass.", @@ -21028,7 +21028,7 @@ "cranberry juice" ], "title": "Cosmopolitan Martini recipe", - "url": "http://www.drinksmixer.com/drink3002.html" + "url": "https://www.drinksmixer.com/drink3002.html" }, { "directions": "Shake all ingredients with ice and strain.", @@ -21040,7 +21040,7 @@ "ice" ], "title": "Cosmoquila recipe", - "url": "http://www.drinksmixer.com/drink3003.html" + "url": "https://www.drinksmixer.com/drink3003.html" }, { "directions": "In a shaker half-filled with crushed ice, combine all of the ingredients. Shake well. Strain into a cocktail glass.", @@ -21051,7 +21051,7 @@ "crushed ice" ], "title": "Cosmos recipe", - "url": "http://www.drinksmixer.com/drink3004.html" + "url": "https://www.drinksmixer.com/drink3004.html" }, { "directions": "Mix all ingredients with cracked ice in a shaker or blender and pour into a chilled cocktail glass.", @@ -21061,7 +21061,7 @@ "cherry brandy" ], "title": "Cossack Charge recipe", - "url": "http://www.drinksmixer.com/drink3005.html" + "url": "https://www.drinksmixer.com/drink3005.html" }, { "directions": "Add liqueur after filling glass with preferred amount of milk. Vodka can be excluded for a milder drink.", @@ -21072,7 +21072,7 @@ "milk" ], "title": "Cossak recipe", - "url": "http://www.drinksmixer.com/drink3006.html" + "url": "https://www.drinksmixer.com/drink3006.html" }, { "directions": "Add Butterscotch Schanapps and Mountain Dew to ice cubes in a collins glass. Stir and serve.", @@ -21082,7 +21082,7 @@ "ice cubes" ], "title": "Cotton Candy recipe", - "url": "http://www.drinksmixer.com/drink3007.html" + "url": "https://www.drinksmixer.com/drink3007.html" }, { "directions": "Mix all ingredients together in a shot glass.", @@ -21092,7 +21092,7 @@ "vodka" ], "title": "Cough Syrup recipe", - "url": "http://www.drinksmixer.com/drink3008.html" + "url": "https://www.drinksmixer.com/drink3008.html" }, { "directions": "Pour grenadine and carbonated water into a collins glass and stir. Add ice cubes and dry vermouth. Fill with carbonated water and stir again. Add the twist of lemon peel and the orange spiral so that the end dangles over rim of glass.", @@ -21104,7 +21104,7 @@ "lemon" ], "title": "Country Club Cooler recipe", - "url": "http://www.drinksmixer.com/drink3009.html" + "url": "https://www.drinksmixer.com/drink3009.html" }, { "directions": "In a large container, fill half way with ice. Pour in all contents and mix well. You are ready to serve.", @@ -21114,7 +21114,7 @@ "lime juice" ], "title": "Crack Juice recipe", - "url": "http://www.drinksmixer.com/drink3010.html" + "url": "https://www.drinksmixer.com/drink3010.html" }, { "directions": "Shake with ice, strain into glass.", @@ -21124,7 +21124,7 @@ "Wild Turkey\u00ae bourbon whiskey" ], "title": "Crack Pipe recipe", - "url": "http://www.drinksmixer.com/drink3011.html" + "url": "https://www.drinksmixer.com/drink3011.html" }, { "directions": "Put both ingredients in a shaker and shake over ice.", @@ -21133,7 +21133,7 @@ "cranberry juice" ], "title": "Crackhouse recipe", - "url": "http://www.drinksmixer.com/drink3012.html" + "url": "https://www.drinksmixer.com/drink3012.html" }, { "directions": "Fill and stir, they love the name.", @@ -21142,7 +21142,7 @@ "cranberry juice" ], "title": "Cramit recipe", - "url": "http://www.drinksmixer.com/drink3013.html" + "url": "https://www.drinksmixer.com/drink3013.html" }, { "directions": "Put three cubes of ice in a glass. Pour in Vodka, Cranberry Juice, and Collins Mix. Stir and enjoy.", @@ -21152,7 +21152,7 @@ "collins mix" ], "title": "Cran-Collins recipe", - "url": "http://www.drinksmixer.com/drink3014.html" + "url": "https://www.drinksmixer.com/drink3014.html" }, { "directions": "Combine rum and cranberry juice first. Add a splash of sunny delight. May drink with crushed ice, if preferred.", @@ -21162,7 +21162,7 @@ "Sunny Delight\u00ae orange juice" ], "title": "Cran-Ram recipe", - "url": "http://www.drinksmixer.com/drink3015.html" + "url": "https://www.drinksmixer.com/drink3015.html" }, { "directions": "Place ice cubes in glass. Add cranberry juice, then orange vodka.", @@ -21172,7 +21172,7 @@ "ice cubes" ], "title": "Cran-Razz recipe", - "url": "http://www.drinksmixer.com/drink3016.html" + "url": "https://www.drinksmixer.com/drink3016.html" }, { "directions": "Pour all ingredients over cubed or crushed ice, stir well and serve!", @@ -21187,7 +21187,7 @@ "lime" ], "title": "Cranberry Blast recipe", - "url": "http://www.drinksmixer.com/drink3017.html" + "url": "https://www.drinksmixer.com/drink3017.html" }, { "directions": "Pour over ice and fill with cola. Stir and add honey. Garnish with a slice of lemon.", @@ -21199,7 +21199,7 @@ "cola" ], "title": "Cranberry Bomber recipe", - "url": "http://www.drinksmixer.com/drink3018.html" + "url": "https://www.drinksmixer.com/drink3018.html" }, { "directions": "Place the chopped cranberries in a 2 liter jar that has a tight-fitting lid. Add the sugar and rum. Adjust the lid securely and place the jar in a cool, dark place. Invert the jar and shake it every day for six weeks. \r", @@ -21209,7 +21209,7 @@ "light rum" ], "title": "Cranberry Cordial recipe", - "url": "http://www.drinksmixer.com/drink3019.html" + "url": "https://www.drinksmixer.com/drink3019.html" }, { "directions": "Shake vigorously. Serve.", @@ -21218,7 +21218,7 @@ "cranberry juice" ], "title": "Cranberry Frog recipe", - "url": "http://www.drinksmixer.com/drink3020.html" + "url": "https://www.drinksmixer.com/drink3020.html" }, { "directions": "Wash the cranberries and put them into a nonreactive saucepan with the water, a pinch of salt and if you wish, the orange slices. Cook over medium heat until all the berries burst -- about 10 minutes. \r", @@ -21230,7 +21230,7 @@ "sugar" ], "title": "Cranberry Juice Cocktail recipe", - "url": "http://www.drinksmixer.com/drink3021.html" + "url": "https://www.drinksmixer.com/drink3021.html" }, { "directions": "Add all ingredients into blender with ice. Blend until smooth.", @@ -21242,7 +21242,7 @@ "cranberry juice" ], "title": "Cranberry Margarita recipe", - "url": "http://www.drinksmixer.com/drink3022.html" + "url": "https://www.drinksmixer.com/drink3022.html" }, { "directions": "Shake vigourously. Serve.", @@ -21252,7 +21252,7 @@ "rum" ], "title": "Cranberry Newt recipe", - "url": "http://www.drinksmixer.com/drink3023.html" + "url": "https://www.drinksmixer.com/drink3023.html" }, { "directions": "Combine first four ingredients. Stir until sugar is dissolved, chill. Then add ginger ale just before serving. Add ice ring to keep punch cold.", @@ -21264,7 +21264,7 @@ "ginger ale" ], "title": "Cranberry Punch recipe", - "url": "http://www.drinksmixer.com/drink3024.html" + "url": "https://www.drinksmixer.com/drink3024.html" }, { "directions": "Mix vodka, then cranberry juice, then orange juice, then top with grenadine.", @@ -21275,7 +21275,7 @@ "grenadine syrup" ], "title": "Cranberry Sunrise recipe", - "url": "http://www.drinksmixer.com/drink3025.html" + "url": "https://www.drinksmixer.com/drink3025.html" }, { "directions": "Pour ice cold cranberry vodka, add ice (the more the better). Top with orange juice and stir gently.", @@ -21285,7 +21285,7 @@ "ice cubes" ], "title": "Cranberry Tart recipe", - "url": "http://www.drinksmixer.com/drink3026.html" + "url": "https://www.drinksmixer.com/drink3026.html" }, { "directions": "Shake vigourously. Serve.", @@ -21295,7 +21295,7 @@ "vodka" ], "title": "Cranberry Toad recipe", - "url": "http://www.drinksmixer.com/drink3027.html" + "url": "https://www.drinksmixer.com/drink3027.html" }, { "directions": "Add ingredients to shaker with ice, shake, strain, and serve.", @@ -21304,7 +21304,7 @@ "Wild Spirit\u00ae chocolate raspberry liqueur" ], "title": "Cranberry Zamboni recipe", - "url": "http://www.drinksmixer.com/drink3028.html" + "url": "https://www.drinksmixer.com/drink3028.html" }, { "directions": "Add all the ingredients in a martini shaker with ice. Then shake, pour into martini glass and add a few cranberries to complete the drink.( Soak the cranberries in vodka first)", @@ -21317,7 +21317,7 @@ "cranberry" ], "title": "Crantini recipe", - "url": "http://www.drinksmixer.com/drink3029.html" + "url": "https://www.drinksmixer.com/drink3029.html" }, { "directions": "Combine all the ingredients together, leaving out the chocolate ice-cream. Leave in fridge until cold. Add in the chocolate ice-cream, blend. Serve.", @@ -21328,7 +21328,7 @@ "chocolate ice cream" ], "title": "Crapachino recipe", - "url": "http://www.drinksmixer.com/drink3030.html" + "url": "https://www.drinksmixer.com/drink3030.html" }, { "directions": "Place all ingredients into a blender jar. Cover, and whiz on medium speed until well blended. Pour into a collins glass, and serve.", @@ -21337,7 +21337,7 @@ "milk" ], "title": "Crazy Cow recipe", - "url": "http://www.drinksmixer.com/drink3031.html" + "url": "https://www.drinksmixer.com/drink3031.html" }, { "directions": "Combine all ingredients in a blender or Island Oasis machine. Blend and serve in a hurricane glass. Top with whip cream and garnish with a strawberry and orange.", @@ -21347,7 +21347,7 @@ "orange juice" ], "title": "Crazy Monkey recipe", - "url": "http://www.drinksmixer.com/drink3032.html" + "url": "https://www.drinksmixer.com/drink3032.html" }, { "directions": "In blender container, combine all ingredients, blend until smooth. Serve over ice if desired. Store tightly covered in refrigerator for up to one month. Stir before using.\r", @@ -21358,7 +21358,7 @@ "eggs" ], "title": "Cream Cordial recipe", - "url": "http://www.drinksmixer.com/drink3033.html" + "url": "https://www.drinksmixer.com/drink3033.html" }, { "directions": "Shake all ingredients (except carbonated water) with ice and strain into a highball glass over two ice cubes. Fill with carbonated water, stir, and serve.", @@ -21370,7 +21370,7 @@ "carbonated water" ], "title": "Cream Fizz recipe", - "url": "http://www.drinksmixer.com/drink3034.html" + "url": "https://www.drinksmixer.com/drink3034.html" }, { "directions": "Pour the Spiced Rum into a highball glass with ice. Fill with Ginger Ale.", @@ -21379,7 +21379,7 @@ "ginger ale" ], "title": "Cream Soda recipe", - "url": "http://www.drinksmixer.com/drink3035.html" + "url": "https://www.drinksmixer.com/drink3035.html" }, { "directions": "Stir with a straw.", @@ -21391,7 +21391,7 @@ "soda water" ], "title": "Creamsicle #2 recipe", - "url": "http://www.drinksmixer.com/drink3036.html" + "url": "https://www.drinksmixer.com/drink3036.html" }, { "directions": "Combine all ingredients in a shaker with ice, give it a few good shakes and strain into a cocktail glass with a sugar rim. More potent than the original. Enjoy!", @@ -21402,7 +21402,7 @@ "sugar" ], "title": "Creamsicle #3 recipe", - "url": "http://www.drinksmixer.com/drink3037.html" + "url": "https://www.drinksmixer.com/drink3037.html" }, { "directions": "Put all ingredients in glass and stir. Served as a float drink. Can also be mixed in a blender and served as a shake.", @@ -21412,7 +21412,7 @@ "orange juice" ], "title": "Creamsicle Dream recipe", - "url": "http://www.drinksmixer.com/drink3038.html" + "url": "https://www.drinksmixer.com/drink3038.html" }, { "directions": "Pour all ingredients into a collins glass over ice cubes, stir, and serve.", @@ -21422,7 +21422,7 @@ "milk" ], "title": "Creamsicle recipe", - "url": "http://www.drinksmixer.com/drink3039.html" + "url": "https://www.drinksmixer.com/drink3039.html" }, { "directions": "Pour over ice.", @@ -21431,7 +21431,7 @@ "cream soda" ], "title": "Creamy Comfort recipe", - "url": "http://www.drinksmixer.com/drink3040.html" + "url": "https://www.drinksmixer.com/drink3040.html" }, { "directions": "Shake with ice (drink should be a bit foamy). Pour into a martini glass. Garnish with a cherry.", @@ -21441,7 +21441,7 @@ "milk" ], "title": "Creamy Crispy Crunch recipe", - "url": "http://www.drinksmixer.com/drink3041.html" + "url": "https://www.drinksmixer.com/drink3041.html" }, { "directions": "Blend until smooth. Drink should have a thick, shake-like consistency.", @@ -21451,7 +21451,7 @@ "vanilla ice cream" ], "title": "Creamy Grasshopper recipe", - "url": "http://www.drinksmixer.com/drink3042.html" + "url": "https://www.drinksmixer.com/drink3042.html" }, { "directions": "Shake all ingredients with ice, strain into a cocktail glass, and serve.", @@ -21462,7 +21462,7 @@ "light cream" ], "title": "Creamy Orange recipe", - "url": "http://www.drinksmixer.com/drink3044.html" + "url": "https://www.drinksmixer.com/drink3044.html" }, { "directions": "Fill a blender about 3/4 full with vanilla ice-cream (not solid). Add the amaretto and kahlua, followed by the bailey's irish cream. Blend until smooth, and pour into tall glasses.", @@ -21473,7 +21473,7 @@ "vanilla ice cream" ], "title": "Creamy Punani recipe", - "url": "http://www.drinksmixer.com/drink3045.html" + "url": "https://www.drinksmixer.com/drink3045.html" }, { "directions": "Dissolve coffee in water. Mix all ingredient's slowly in a blender. Serve chilled. Keeps, sealed in the fridge, for 2 weeks.", @@ -21487,7 +21487,7 @@ "water" ], "title": "Creamy Rum Liqueur recipe", - "url": "http://www.drinksmixer.com/drink3046.html" + "url": "https://www.drinksmixer.com/drink3046.html" }, { "directions": "Combine all ingredients with 1/2 cup crushed ice in an electric blender. Blend at a low speed for a short length of time. Pour into a collins glass and serve.", @@ -21498,7 +21498,7 @@ "egg" ], "title": "Creamy Screwdriver recipe", - "url": "http://www.drinksmixer.com/drink3047.html" + "url": "https://www.drinksmixer.com/drink3047.html" }, { "directions": "Fill half the glass with ice. Pour in the buttershots first, followed slowly by the kahlua until you're halfway up the glass. (You can allow yourself to be a little more generous with the Buttershots than with the Kahlua). Pour in the half-and-half last, and stir until mixed completely. Serve cold.", @@ -21509,7 +21509,7 @@ "ice cubes" ], "title": "Creamy Snatch recipe", - "url": "http://www.drinksmixer.com/drink3048.html" + "url": "https://www.drinksmixer.com/drink3048.html" }, { "directions": "Add ice and all the ingredients into a shaker and shake well. Then serve in a large glass.", @@ -21522,7 +21522,7 @@ "ice" ], "title": "Creamy Tan recipe", - "url": "http://www.drinksmixer.com/drink3049.html" + "url": "https://www.drinksmixer.com/drink3049.html" }, { "directions": "Add all liquid ingredients in blender and set on frappe till the drink is the consistancy of a smoothie. You can serve this in a frosty hurricane glass and top off with whipped cream as desired.", @@ -21535,7 +21535,7 @@ "whipped cream" ], "title": "Creative Native recipe", - "url": "http://www.drinksmixer.com/drink3050.html" + "url": "https://www.drinksmixer.com/drink3050.html" }, { "directions": "Shake all ingredients with ice, strain into a cocktail glass, and serve.", @@ -21547,7 +21547,7 @@ "egg" ], "title": "Creme de Gin Cocktail recipe", - "url": "http://www.drinksmixer.com/drink3051.html" + "url": "https://www.drinksmixer.com/drink3051.html" }, { "directions": "Bring sugar and water to a boil and simmer for 10 minutes. Cool. Add the remaining ingredients and stir. Cover and let ripen for 1 month.", @@ -21559,7 +21559,7 @@ "food coloring" ], "title": "Creme de Menthe recipe", - "url": "http://www.drinksmixer.com/drink3052.html" + "url": "https://www.drinksmixer.com/drink3052.html" }, { "directions": "Mix half a beer with half of a cream soda.", @@ -21568,7 +21568,7 @@ "cream soda" ], "title": "Creme de Spooge recipe", - "url": "http://www.drinksmixer.com/drink3053.html" + "url": "https://www.drinksmixer.com/drink3053.html" }, { "directions": "Mix the rum, grenadine, vermouth and angostura. Shake with ice. Add the olive.", @@ -21580,7 +21580,7 @@ "olive" ], "title": "Creole Scream recipe", - "url": "http://www.drinksmixer.com/drink3054.html" + "url": "https://www.drinksmixer.com/drink3054.html" }, { "directions": "Shake all ingredients with ice, strain into an old-fashioned glass over ice cubes, and serve.", @@ -21593,7 +21593,7 @@ "pepper" ], "title": "Creole recipe", - "url": "http://www.drinksmixer.com/drink3055.html" + "url": "https://www.drinksmixer.com/drink3055.html" }, { "directions": "Combine all ingredients in a blender with crushed ice. Add enough ice-cream to make the drink thick like a malt. Serves two.", @@ -21603,7 +21603,7 @@ "vanilla ice cream" ], "title": "Crickets recipe", - "url": "http://www.drinksmixer.com/drink3056.html" + "url": "https://www.drinksmixer.com/drink3056.html" }, { "directions": "Combine ingredients in an ice-filled shaker. Shake well, strain into old-fashioned glass, and serve.", @@ -21614,7 +21614,7 @@ "ice" ], "title": "Cricket recipe", - "url": "http://www.drinksmixer.com/drink3057.html" + "url": "https://www.drinksmixer.com/drink3057.html" }, { "directions": "Pour vodka over ice, then add raspberry and fill with Coca Cola.", @@ -21625,7 +21625,7 @@ "ice" ], "title": "Crimson Coma recipe", - "url": "http://www.drinksmixer.com/drink3058.html" + "url": "https://www.drinksmixer.com/drink3058.html" }, { "directions": "Pour vodka over ice, then add raspberry and fill with Jolt cola.", @@ -21636,7 +21636,7 @@ "ice" ], "title": "Crimson Death recipe", - "url": "http://www.drinksmixer.com/drink3059.html" + "url": "https://www.drinksmixer.com/drink3059.html" }, { "directions": "In a shaker half-filled with ice cubes, combine the gin and lemon juice. Shake well. Strain into a cocktail glass. Drop the grenadine into the center of the drink and float the port on the top.", @@ -21647,7 +21647,7 @@ "tawny port" ], "title": "Crimson Sunset recipe", - "url": "http://www.drinksmixer.com/drink3060.html" + "url": "https://www.drinksmixer.com/drink3060.html" }, { "directions": "Combine all ingrediants, chill over ice, strain.", @@ -21662,7 +21662,7 @@ "Sprite\u00ae soda" ], "title": "Crimson Tide recipe", - "url": "http://www.drinksmixer.com/drink3061.html" + "url": "https://www.drinksmixer.com/drink3061.html" }, { "directions": "Shake with ice. Strain into shot glasses.", @@ -21674,7 +21674,7 @@ "ice" ], "title": "Crispy Crunch recipe", - "url": "http://www.drinksmixer.com/drink3062.html" + "url": "https://www.drinksmixer.com/drink3062.html" }, { "directions": "Pour Blue Curacao in a champagne flute, followed by Vodka and White Wine. Then pour Grenadine. Don't shake it!", @@ -21685,7 +21685,7 @@ "grenadine syrup" ], "title": "Cristianne recipe", - "url": "http://www.drinksmixer.com/drink3063.html" + "url": "https://www.drinksmixer.com/drink3063.html" }, { "directions": "Fill glass with ice. Add liquors, fill nearly with sprite and top off with lime juice.", @@ -21698,7 +21698,7 @@ "lime juice" ], "title": "Croc Punch recipe", - "url": "http://www.drinksmixer.com/drink3064.html" + "url": "https://www.drinksmixer.com/drink3064.html" }, { "directions": "Tie orange peel, cinnamon, ginger root, and allspice in an 8-inch square of 100-percent-cotton cheesecloth. \r", @@ -21712,7 +21712,7 @@ "honey" ], "title": "Crockpot Mulled Cider recipe", - "url": "http://www.drinksmixer.com/drink3065.html" + "url": "https://www.drinksmixer.com/drink3065.html" }, { "directions": "Pour over ice and mix well. Garnish with a lime wheel and a straw.", @@ -21724,7 +21724,7 @@ "7-Up\u00ae soda" ], "title": "Crocodile Cooler recipe", - "url": "http://www.drinksmixer.com/drink3066.html" + "url": "https://www.drinksmixer.com/drink3066.html" }, { "directions": "Pour midori and bacardi over a few ice cubes in a highball glass. Fill the rest of the way with the soda, and give a brisk stir.", @@ -21734,7 +21734,7 @@ "Sprite\u00ae soda" ], "title": "Crocodile recipe", - "url": "http://www.drinksmixer.com/drink3067.html" + "url": "https://www.drinksmixer.com/drink3067.html" }, { "directions": "Fill glass to top with ice. Pour cranberry juice to about the halfway point. Then, pour in amaretto and continue to fill glass to top with cranberry juice. Throw a splash of rum in at the top and stir lightly. Make sure and drink over the lime, it adds an awesome flavor!", @@ -21745,7 +21745,7 @@ "limes" ], "title": "Crooked Golf Cart recipe", - "url": "http://www.drinksmixer.com/drink3068.html" + "url": "https://www.drinksmixer.com/drink3068.html" }, { "directions": "Fill beer mug with ice. Add all ingredients and stir.", @@ -21756,7 +21756,7 @@ "7-Up\u00ae soda" ], "title": "Crooked Monkey recipe", - "url": "http://www.drinksmixer.com/drink3069.html" + "url": "https://www.drinksmixer.com/drink3069.html" }, { "directions": "Shake ingredients and strain over ice.", @@ -21766,7 +21766,7 @@ "tequila" ], "title": "Crowbar recipe", - "url": "http://www.drinksmixer.com/drink3070.html" + "url": "https://www.drinksmixer.com/drink3070.html" }, { "directions": "Mix all together in glass with ice.", @@ -21777,7 +21777,7 @@ "cherry cola" ], "title": "The Crown Cherry recipe", - "url": "http://www.drinksmixer.com/drink3071.html" + "url": "https://www.drinksmixer.com/drink3071.html" }, { "directions": "Pour Cointreau, sweetened lime juice, and Absolut Mandarin vodka over 8 ice cubes in a cocktail shaker. Shake vigorously and strain into a chilled cocktail glass. If available, garnish with a slice of fresh orange on glass rim. Serve immediately while it is still extremely cold.", @@ -21788,7 +21788,7 @@ "ice cubes" ], "title": "Crushed Orange recipe", - "url": "http://www.drinksmixer.com/drink3072.html" + "url": "https://www.drinksmixer.com/drink3072.html" }, { "directions": "Stir and serve.", @@ -21800,7 +21800,7 @@ "Blue Curacao liqueur" ], "title": "Cruz Azul recipe", - "url": "http://www.drinksmixer.com/drink3073.html" + "url": "https://www.drinksmixer.com/drink3073.html" }, { "directions": "Mix JD and Vodka together with Kahlua. Heat over medium flame Bailey's, Tequila, and Rum. Mix all together with tomato juice and top with grenadine. Garnish with a stalk of celery and green onion. Enjoy!", @@ -21815,7 +21815,7 @@ "tomato juice" ], "title": "The Crying Game recipe", - "url": "http://www.drinksmixer.com/drink3074.html" + "url": "https://www.drinksmixer.com/drink3074.html" }, { "directions": "Mix the Blue Curacao, Whisky, Rum, Brandy, Ouzo, Lemon and Lime juices in a blender. Pulse mixture for 2-3 seconds. Add the 8 ice cubes. Pulse for about 20-30 seconds or until desired consistency of ice is achieved.", @@ -21830,7 +21830,7 @@ "ice cubes" ], "title": "Cryonic Shock recipe", - "url": "http://www.drinksmixer.com/drink3075.html" + "url": "https://www.drinksmixer.com/drink3075.html" }, { "directions": "Fill glass half full with ice and add the vodka. Put in the cranberry and orange juice next, then float the other liquors. Add grenadine to color, mix and garnish with a straw and a lemon.", @@ -21844,7 +21844,7 @@ "grenadine syrup" ], "title": "Crystal Cranberry recipe", - "url": "http://www.drinksmixer.com/drink3076.html" + "url": "https://www.drinksmixer.com/drink3076.html" }, { "directions": "Stir all ingredients with ice, strain into a cocktail glass, and serve.", @@ -21854,7 +21854,7 @@ "orange bitters" ], "title": "Crystal Slipper Cocktail recipe", - "url": "http://www.drinksmixer.com/drink3077.html" + "url": "https://www.drinksmixer.com/drink3077.html" }, { "directions": "Chill with ice & strain into shot glasses. Add Cranberry Juice to taste. Tastes just like fruit punch.", @@ -21864,7 +21864,7 @@ "cranberry juice" ], "title": "Crystal Virgin recipe", - "url": "http://www.drinksmixer.com/drink3078.html" + "url": "https://www.drinksmixer.com/drink3078.html" }, { "directions": "Fill tall glass with ice cubes. Add rum. Rub cut edge of lime on rim of glass then squeeze juice into glass. Fill with Coca-Cola. Garnish with lime slice. Enjoy!", @@ -21875,7 +21875,7 @@ "ice" ], "title": "Cuba Libra recipe", - "url": "http://www.drinksmixer.com/drink3079.html" + "url": "https://www.drinksmixer.com/drink3079.html" }, { "directions": "Pour lime juice into a highball glass over ice cubes. Add rum, fill with cola, stir, and serve.", @@ -21885,7 +21885,7 @@ "Coca-Cola\u00ae" ], "title": "Cuba Libre recipe", - "url": "http://www.drinksmixer.com/drink3080.html" + "url": "https://www.drinksmixer.com/drink3080.html" }, { "directions": "Shake all ingredients with ice, strain into a cocktail glass, and serve.", @@ -21895,7 +21895,7 @@ "powdered sugar" ], "title": "Cuban Cocktail recipe", - "url": "http://www.drinksmixer.com/drink3081.html" + "url": "https://www.drinksmixer.com/drink3081.html" }, { "directions": "Pour all the ingredients into a mixer glass, shake violently, and then pour the mixture into a 12 oz. glass with ice.", @@ -21907,7 +21907,7 @@ "pineapple juice" ], "title": "Cuban Crime of Passion recipe", - "url": "http://www.drinksmixer.com/drink3082.html" + "url": "https://www.drinksmixer.com/drink3082.html" }, { "directions": "Warm up rum, creme cacao, sugar and coffee. Float the double fresh cream floating on top. Optionally sprinkle some grated chocolate on top of the cream.", @@ -21919,7 +21919,7 @@ "double cream" ], "title": "Cubano Coffee recipe", - "url": "http://www.drinksmixer.com/drink3083.html" + "url": "https://www.drinksmixer.com/drink3083.html" }, { "directions": "Add Schnapps, Southern Comfort, Juice and Ice to shaker. Shake briefly and pour unstrained into the collins glass. Gently pour Curacao down the side of the glass, to allow it to sink to the bottom. Then add Raspberry Cordial over a spoon, to allow it to float on top. Serve with straws and a slice of Orange.", @@ -21932,7 +21932,7 @@ "raspberry cordial" ], "title": "Cubins Cracker recipe", - "url": "http://www.drinksmixer.com/drink3084.html" + "url": "https://www.drinksmixer.com/drink3084.html" }, { "directions": "Using a jigger glass (3oz shot glass) mix 1/3 of each part then top with club soda. Cover and shake lightly.", @@ -21943,7 +21943,7 @@ "soda water" ], "title": "Cucacaracha recipe", - "url": "http://www.drinksmixer.com/drink3085.html" + "url": "https://www.drinksmixer.com/drink3085.html" }, { "directions": "Use a shot-glass and fill to the above proportions. Light the drink on fire. (It helps if you move the lighter in a circular pattern around the top of the drink.) Shoot it through a straw. Be careful!", @@ -21952,7 +21952,7 @@ "Kahlua\u00ae coffee liqueur" ], "title": "Cucaracha #2 recipe", - "url": "http://www.drinksmixer.com/drink3086.html" + "url": "https://www.drinksmixer.com/drink3086.html" }, { "directions": "Add ice to glass, drizzle Southern Comfort over the ice. Add lemonade, orange juice and a dash of Cointreau and mix.", @@ -21964,7 +21964,7 @@ "ice cubes" ], "title": "Cucci recipe", - "url": "http://www.drinksmixer.com/drink3087.html" + "url": "https://www.drinksmixer.com/drink3087.html" }, { "directions": "In a mixing glass half-filled with ice cubes, combine both of the ingredients. Stir well. Strain into a cocktail glass.", @@ -21973,7 +21973,7 @@ "Ricard\u00ae pastis" ], "title": "Cul-De-Sac recipe", - "url": "http://www.drinksmixer.com/drink3088.html" + "url": "https://www.drinksmixer.com/drink3088.html" }, { "directions": "Pour the vodka and rum carefully but not too carefully into a glass. They have different consistencies and you want them to mix just a little. Now let several drops of Bailey's fall into the liquor.", @@ -21983,7 +21983,7 @@ "Bailey's\u00ae Irish cream" ], "title": "Cum In A Hot Tub recipe", - "url": "http://www.drinksmixer.com/drink3089.html" + "url": "https://www.drinksmixer.com/drink3089.html" }, { "directions": "In a shot glass put butterscotch schnapps, vodka and kahlua in that order. Slowly add the irish cream.\r", @@ -21994,7 +21994,7 @@ "Carolans\u00ae Irish cream" ], "title": "Cum Scorcher recipe", - "url": "http://www.drinksmixer.com/drink3090.html" + "url": "https://www.drinksmixer.com/drink3090.html" }, { "directions": "Sprinkle grains of salt in bottom of shot glass. Pour equal parts of peach schnapps and irish cream. Top with whipped cream. \r", @@ -22005,7 +22005,7 @@ "whipped cream" ], "title": "Cum Shot #2 recipe", - "url": "http://www.drinksmixer.com/drink3091.html" + "url": "https://www.drinksmixer.com/drink3091.html" }, { "directions": "Blend liquors in shot glass. Top with whipped cream. Serve.", @@ -22015,7 +22015,7 @@ "whipped cream" ], "title": "Cum Shot recipe", - "url": "http://www.drinksmixer.com/drink3092.html" + "url": "https://www.drinksmixer.com/drink3092.html" }, { "directions": "Simply pour the Vodka and Schnapps into the shot glass.\r", @@ -22025,7 +22025,7 @@ "kumquat" ], "title": "The Cum Shot recipe", - "url": "http://www.drinksmixer.com/drink3093.html" + "url": "https://www.drinksmixer.com/drink3093.html" }, { "directions": "Shake intensely with ice. Serve in a frosted glass, and sprinkle with powdered coffee or nutmeg.", @@ -22037,7 +22037,7 @@ "sugar" ], "title": "Cumulus recipe", - "url": "http://www.drinksmixer.com/drink3094.html" + "url": "https://www.drinksmixer.com/drink3094.html" }, { "directions": "Mix bailey's, peach schnapps and pineapple juice with ice. Pour into a shot glass. Top with whipped cream.", @@ -22048,7 +22048,7 @@ "whipped cream" ], "title": "Cunnilingus recipe", - "url": "http://www.drinksmixer.com/drink3095.html" + "url": "https://www.drinksmixer.com/drink3095.html" }, { "directions": "Add Blue Curacao, Southern Comfort, and half of the pineapple juice over ice and shake. Add remainder of pineapple juice to taste.", @@ -22059,7 +22059,7 @@ "ice" ], "title": "Curious Comfort recipe", - "url": "http://www.drinksmixer.com/drink3096.html" + "url": "https://www.drinksmixer.com/drink3096.html" }, { "directions": "Add equal parts of Jack Daniels, Midori, and J\ufffdgermeister into a shot glass. Pre-chill the alcohol if so desired.", @@ -22069,7 +22069,7 @@ "Jack Daniel's\u00ae Tennessee whiskey" ], "title": "Curtain Call recipe", - "url": "http://www.drinksmixer.com/drink3097.html" + "url": "https://www.drinksmixer.com/drink3097.html" }, { "directions": "Blend all ingredients and pour into champagne flute. Add a small piece of edible dry ice.", @@ -22079,7 +22079,7 @@ "orange juice" ], "title": "Cyber Smoke recipe", - "url": "http://www.drinksmixer.com/drink3098.html" + "url": "https://www.drinksmixer.com/drink3098.html" }, { "directions": "Shake well and pour in a cocktail glass, frosted with strawberry.", @@ -22091,7 +22091,7 @@ "lemon juice" ], "title": "Cyberlady recipe", - "url": "http://www.drinksmixer.com/drink3099.html" + "url": "https://www.drinksmixer.com/drink3099.html" }, { "directions": "Mix both liquors well, and pour into a shot glass.", @@ -22100,7 +22100,7 @@ "Becherovka\u00ae herbal liqueur" ], "title": "Czech Collaborator recipe", - "url": "http://www.drinksmixer.com/drink3100.html" + "url": "https://www.drinksmixer.com/drink3100.html" }, { "directions": "Place ice, strawberries, tequila, triple sec and mango juice in a blender (in order). Blend on \"ice crush\" initially and then to \"frappe.\" Serve in margarita glasses and enjoy.", @@ -22111,7 +22111,7 @@ "strawberries" ], "title": "Strawberry Mango Margarita recipe", - "url": "http://www.drinksmixer.com/drink3101.html" + "url": "https://www.drinksmixer.com/drink3101.html" }, { "directions": "In a food processor, pur\ufffde the mango and strawberries. You should have about 1 1/2 cups of pur\ufffde. Transfer to a container, cover, and refrigerate until cold \u2014 about 1 hour.\r", @@ -22123,7 +22123,7 @@ "lime juice" ], "title": "Strawberry Mango Margarita #2 recipe", - "url": "http://www.drinksmixer.com/drink3102.html" + "url": "https://www.drinksmixer.com/drink3102.html" }, { "directions": "Layer in a shot glass.", @@ -22132,7 +22132,7 @@ "Goldschlager\u00ae cinnamon schnapps" ], "title": "Dallas Stars recipe", - "url": "http://www.drinksmixer.com/drink3103.html" + "url": "https://www.drinksmixer.com/drink3103.html" }, { "directions": "In a highball glass with ice, pour three shots of Rum (preferably Bacardi) one shot of Kahlua, a shot of ginger ale and fill the rest of the glass with milk, (Homo or 2%, never SKIM!) Stir. That's It! Enjoy", @@ -22143,7 +22143,7 @@ "milk" ], "title": "Dambuster recipe", - "url": "http://www.drinksmixer.com/drink3104.html" + "url": "https://www.drinksmixer.com/drink3104.html" }, { "directions": "Layer carefully in cordial or shot glass. First buttershots, then green creme de menthe and bailey's irish cream on top. Lastly, drop the grenadine through the bailey's. It will settle to the bottom creating a cool effect.", @@ -22154,7 +22154,7 @@ "grenadine syrup" ], "title": "Damn Good recipe", - "url": "http://www.drinksmixer.com/drink3105.html" + "url": "https://www.drinksmixer.com/drink3105.html" }, { "directions": "Shake all ingredients with ice, strain into a cocktail glass, and serve.", @@ -22165,7 +22165,7 @@ "triple sec" ], "title": "Damn-The-Weather Cocktail recipe", - "url": "http://www.drinksmixer.com/drink3106.html" + "url": "https://www.drinksmixer.com/drink3106.html" }, { "directions": "In a mixing glass half-filled with ice cubes, combine the rum, dubonnet, and dry vermouth. Stir well. Strain into a cocktail glass and garnish with the lemon twist.", @@ -22176,7 +22176,7 @@ "lemon" ], "title": "Damn-Your-Eyes recipe", - "url": "http://www.drinksmixer.com/drink3107.html" + "url": "https://www.drinksmixer.com/drink3107.html" }, { "directions": "Pour into shot glass. Put in mouth. Repeat as deemed necessary.", @@ -22185,7 +22185,7 @@ "DeKuyper\u00ae Hot Damn cinnamon schnapps" ], "title": "Damned If You Do recipe", - "url": "http://www.drinksmixer.com/drink3108.html" + "url": "https://www.drinksmixer.com/drink3108.html" }, { "directions": "Pour all ingredients into a shaker cup. Add ice last. Stir ingredients (do not shake unless asked to). Strain into a chilled martini glass and serve.", @@ -22196,7 +22196,7 @@ "cranberry juice" ], "title": "Dan's Dewberry Martini recipe", - "url": "http://www.drinksmixer.com/drink3109.html" + "url": "https://www.drinksmixer.com/drink3109.html" }, { "directions": "Pour it in and mix it.", @@ -22205,7 +22205,7 @@ "Everclear\u00ae alcohol" ], "title": "Danbooka recipe", - "url": "http://www.drinksmixer.com/drink3110.html" + "url": "https://www.drinksmixer.com/drink3110.html" }, { "directions": "In a shaker half-filled with ice cubes, combine all of the ingredients. Shake well. Strain into a cocktail glass.", @@ -22215,7 +22215,7 @@ "anisette" ], "title": "Dance With A Dream Cocktail recipe", - "url": "http://www.drinksmixer.com/drink3111.html" + "url": "https://www.drinksmixer.com/drink3111.html" }, { "directions": "Mix fruit juices together in one bowl, place in blender with ice cubes. When slushy mixture is complete, stir in alcohol and shake until completly mixed. Place mixture in punchbowl, and float cherries in the bowl if desired.", @@ -22230,7 +22230,7 @@ "rum" ], "title": "Dancing Dutchman recipe", - "url": "http://www.drinksmixer.com/drink3112.html" + "url": "https://www.drinksmixer.com/drink3112.html" }, { "directions": "Combine Tequila, Cream of Coconut and Pineapple Juice in a blender. A quick blast to blend ingredients. Fill blender to top with ice. Blend on high speed until it's like a slurpy. Pour into hurricane glass and garnish with pineapple wedge.", @@ -22240,7 +22240,7 @@ "pineapple juice" ], "title": "The Dangerous Dave recipe", - "url": "http://www.drinksmixer.com/drink3113.html" + "url": "https://www.drinksmixer.com/drink3113.html" }, { "directions": "First two shots of Vodka, then the lime juice. Add ice. Top up the glass with Coke.", @@ -22251,7 +22251,7 @@ "ice" ], "title": "Danini recipe", - "url": "http://www.drinksmixer.com/drink3114.html" + "url": "https://www.drinksmixer.com/drink3114.html" }, { "directions": "Let the mexican hot chocolate cool to room temperature. Pour all of the ingredients into an irish coffee glass almost filled with crushed ice. Stir well.", @@ -22262,7 +22262,7 @@ "Mexican chocolate" ], "title": "Daring Dylan recipe", - "url": "http://www.drinksmixer.com/drink3115.html" + "url": "https://www.drinksmixer.com/drink3115.html" }, { "directions": "Pour rum into a tall glass over ice. Pour ginger beer over it. Squeeze in lime and drop slice in. Serve.", @@ -22272,7 +22272,7 @@ "lime" ], "title": "Dark and Stormy #2 recipe", - "url": "http://www.drinksmixer.com/drink3116.html" + "url": "https://www.drinksmixer.com/drink3116.html" }, { "directions": "Pour rum over ice, add ginger ale, and stir.\r", @@ -22281,7 +22281,7 @@ "ginger beer" ], "title": "Dark and Stormy recipe", - "url": "http://www.drinksmixer.com/drink3117.html" + "url": "https://www.drinksmixer.com/drink3117.html" }, { "directions": "Blend all ingredients. Pour into poco grande glass.", @@ -22291,7 +22291,7 @@ "vanilla ice cream" ], "title": "Dark Indulgence recipe", - "url": "http://www.drinksmixer.com/drink3118.html" + "url": "https://www.drinksmixer.com/drink3118.html" }, { "directions": "Mix milk last. Stir. Enjoy.", @@ -22301,7 +22301,7 @@ "milk" ], "title": "Dark Nightmare recipe", - "url": "http://www.drinksmixer.com/drink3119.html" + "url": "https://www.drinksmixer.com/drink3119.html" }, { "directions": "Mix all ingredients in mixer, pour into highball glass. \r", @@ -22315,7 +22315,7 @@ "chocolate syrup" ], "title": "The Dark Side recipe", - "url": "http://www.drinksmixer.com/drink3120.html" + "url": "https://www.drinksmixer.com/drink3120.html" }, { "directions": "Mix like ordinary drink and serve with ice.", @@ -22324,7 +22324,7 @@ "Coca-Cola\u00ae" ], "title": "Dark'n Dirty recipe", - "url": "http://www.drinksmixer.com/drink3121.html" + "url": "https://www.drinksmixer.com/drink3121.html" }, { "directions": "There are many good cherry liqueurs you can use, but I prefer Heering. Add one share of the liqueur. Then you add one share of Soda. For a sour sling use Tonic (most people prefer the drink without Tonic). Afterwards you fill the glass with Orange Juice and ice cubes.", @@ -22335,7 +22335,7 @@ "ice cubes" ], "title": "Darkwood Sling recipe", - "url": "http://www.drinksmixer.com/drink3122.html" + "url": "https://www.drinksmixer.com/drink3122.html" }, { "directions": "Mix the 2 half gallons of each in a large enough container, chill in the freezer for a maximum of 1 hour.", @@ -22344,7 +22344,7 @@ "Jagermeister\u00ae herbal liqueur" ], "title": "Das Ruhige Sturm recipe", - "url": "http://www.drinksmixer.com/drink3123.html" + "url": "https://www.drinksmixer.com/drink3123.html" }, { "directions": "Pop a couple of ice cubes in the glass. Pour the advocaat slowly over the ice. Then wait for a moment before adding the creme de fraise. Serve it as soon as it's poured as it starts to curdle.", @@ -22354,7 +22354,7 @@ "Creme de Fraise des Bois" ], "title": "The Dash recipe", - "url": "http://www.drinksmixer.com/drink3124.html" + "url": "https://www.drinksmixer.com/drink3124.html" }, { "directions": "In a shaker half-filled with ice cubes, combine all of the ingredients. Shake well. Strain into a cocktail glass.", @@ -22364,7 +22364,7 @@ "white creme de cacao" ], "title": "David Bareface recipe", - "url": "http://www.drinksmixer.com/drink3125.html" + "url": "https://www.drinksmixer.com/drink3125.html" }, { "directions": "Mix in the order: cacao, menthe, whiskey, milk. Try to keep the layers separate. Float on the back of a spoon, tilt the glass and pour very gently, etc. \r", @@ -22375,7 +22375,7 @@ "heavy cream" ], "title": "David Caradine recipe", - "url": "http://www.drinksmixer.com/drink3126.html" + "url": "https://www.drinksmixer.com/drink3126.html" }, { "directions": "Mix together as a punch. Add oranges or grapes to taste. Limes also go well in punch.", @@ -22387,7 +22387,7 @@ "Pepsi\u00ae cola" ], "title": "The Davy Wright recipe", - "url": "http://www.drinksmixer.com/drink3127.html" + "url": "https://www.drinksmixer.com/drink3127.html" }, { "directions": "In cocktail mixer filled with ice, combine all ingredients. Shake or stir & strain into rocks glass or large shot glass. \r", @@ -22400,7 +22400,7 @@ "grenadine syrup" ], "title": "Daydream recipe", - "url": "http://www.drinksmixer.com/drink3128.html" + "url": "https://www.drinksmixer.com/drink3128.html" }, { "directions": "Pour vanilla vodka into ice filled glass. Add triple sec. Add soda to taste. Mix with straw.", @@ -22410,7 +22410,7 @@ "7-Up\u00ae soda" ], "title": "Daylon's Bedtime recipe", - "url": "http://www.drinksmixer.com/drink3129.html" + "url": "https://www.drinksmixer.com/drink3129.html" }, { "directions": "Put tequila in a double shot glass, then add the baileys. Slam then repeat.", @@ -22419,7 +22419,7 @@ "tequila" ], "title": "DC recipe", - "url": "http://www.drinksmixer.com/drink3130.html" + "url": "https://www.drinksmixer.com/drink3130.html" }, { "directions": "Pour ingredients into a tall glass over ice, stir, and serve.", @@ -22433,7 +22433,7 @@ "ginger ale" ], "title": "Dead Bastard recipe", - "url": "http://www.drinksmixer.com/drink3131.html" + "url": "https://www.drinksmixer.com/drink3131.html" }, { "directions": "In a high-ball glass add one shot of 151 proof rum and then layer each of the other ingredents on top.", @@ -22443,7 +22443,7 @@ "Jagermeister\u00ae herbal liqueur" ], "title": "Dead Dog Vomit recipe", - "url": "http://www.drinksmixer.com/drink3132.html" + "url": "https://www.drinksmixer.com/drink3132.html" }, { "directions": "Add in the order given and enjoy!", @@ -22453,7 +22453,7 @@ "Tabasco\u00ae sauce" ], "title": "Dead Dog recipe", - "url": "http://www.drinksmixer.com/drink3133.html" + "url": "https://www.drinksmixer.com/drink3133.html" }, { "directions": "Shake creme de menthe, creme de cacao and milk with ice cubes in a shaker. Pour into a cocktail glass and add a dash of aftershock. Do not stir.", @@ -22464,7 +22464,7 @@ "Aftershock\u00ae Hot & Cool cinnamon schnapps" ], "title": "Dead Grasshopper recipe", - "url": "http://www.drinksmixer.com/drink3134.html" + "url": "https://www.drinksmixer.com/drink3134.html" }, { "directions": "Fill a shot glass equally in parts with Rumple Minze, J\ufffdgermeister, and Goldschlager.", @@ -22474,7 +22474,7 @@ "Goldschlager\u00ae cinnamon schnapps" ], "title": "Dead Hitler recipe", - "url": "http://www.drinksmixer.com/drink3135.html" + "url": "https://www.drinksmixer.com/drink3135.html" }, { "directions": "Mix lemon-lime mix in a large pitcher or punch bowl and add the other ingredients. Pour over ice in seperate highball glasses, and top each drink off with 1/2 oz of cherry liqueur.", @@ -22486,7 +22486,7 @@ "cherry liqueur" ], "title": "Dead Little Green Frog recipe", - "url": "http://www.drinksmixer.com/drink3136.html" + "url": "https://www.drinksmixer.com/drink3136.html" }, { "directions": "Pour vodka into glass. Add cordial until colour becomes light red. Add coke until definite colour change occurs. Drink.", @@ -22496,7 +22496,7 @@ "Coca-Cola\u00ae" ], "title": "Dead Lizard recipe", - "url": "http://www.drinksmixer.com/drink3137.html" + "url": "https://www.drinksmixer.com/drink3137.html" }, { "directions": "Chill ingredients before use. Pour rumple minze into a shot glass and add jagermeister. Serve.", @@ -22505,7 +22505,7 @@ "Jagermeister\u00ae herbal liqueur" ], "title": "Dead Nazi recipe", - "url": "http://www.drinksmixer.com/drink3138.html" + "url": "https://www.drinksmixer.com/drink3138.html" }, { "directions": "In a freezingly chilled glass pour in Bacardi 151 and gin. Now light the drink on fire (be extra careful!) After a few seconds of burning the drink, pour in the coke, and serve.", @@ -22515,7 +22515,7 @@ "Coca-Cola\u00ae" ], "title": "Death From Above recipe", - "url": "http://www.drinksmixer.com/drink3139.html" + "url": "https://www.drinksmixer.com/drink3139.html" }, { "directions": "Pour in cup and stir.", @@ -22524,7 +22524,7 @@ "Dr. Pepper\u00ae soda" ], "title": "Death Wish recipe", - "url": "http://www.drinksmixer.com/drink3141.html" + "url": "https://www.drinksmixer.com/drink3141.html" }, { "directions": "Shake all ingredients with ice, strain into a cocktail glass, and serve.", @@ -22535,7 +22535,7 @@ "lemons" ], "title": "Deauville Cocktail recipe", - "url": "http://www.drinksmixer.com/drink3142.html" + "url": "https://www.drinksmixer.com/drink3142.html" }, { "directions": "Mix pineapple juice and molasses well, either shake or blend, stirring won't work. Pour into glass and drop rum on top but do not stir in. Splash on cherry syrup and garnish with a pineapple wedge or pineapple chunks. \r", @@ -22546,7 +22546,7 @@ "cherry syrup" ], "title": "Deep South recipe", - "url": "http://www.drinksmixer.com/drink3143.html" + "url": "https://www.drinksmixer.com/drink3143.html" }, { "directions": "In a shaker half-filled with ice cubes, combine all of the ingredients. Shake well. Strain into a cocktail glass.", @@ -22557,7 +22557,7 @@ "heavy cream" ], "title": "Deep Dark Secret recipe", - "url": "http://www.drinksmixer.com/drink3144.html" + "url": "https://www.drinksmixer.com/drink3144.html" }, { "directions": "Pour in amaretto and rum on the rocks then add 7-up. Stir and serve.", @@ -22567,7 +22567,7 @@ "7-Up\u00ae soda" ], "title": "Deep-7 recipe", - "url": "http://www.drinksmixer.com/drink3145.html" + "url": "https://www.drinksmixer.com/drink3145.html" }, { "directions": "Mix all drinks in a blender, You can add 8 cubes of ice to chill the drink and give it more of a body. Add the hot melting butter (or the schnapps) right before you drink. Makes enough for at least 10 people.", @@ -22581,7 +22581,7 @@ "Jagermeister\u00ae herbal liqueur" ], "title": "Deer Killer recipe", - "url": "http://www.drinksmixer.com/drink3146.html" + "url": "https://www.drinksmixer.com/drink3146.html" }, { "directions": "Put a few ice cubes in a highball glass. Add the J\ufffdgermeister and Windsor, stir, then fill the glass with the 7-Up and give it a small stir.", @@ -22592,7 +22592,7 @@ "ice cubes" ], "title": "Deerslayer recipe", - "url": "http://www.drinksmixer.com/drink3147.html" + "url": "https://www.drinksmixer.com/drink3147.html" }, { "directions": "Add brandy to glass and fill with lemonade. Add ice if desired. Stir.", @@ -22601,7 +22601,7 @@ "lemonade" ], "title": "Deidru recipe", - "url": "http://www.drinksmixer.com/drink3148.html" + "url": "https://www.drinksmixer.com/drink3148.html" }, { "directions": "Mix blue curacao with rum and ice. Pour it into a glass and add the rest of the ingredients slowly. Garnish with a piece of peach, a cherry and a piece of celery.", @@ -22614,7 +22614,7 @@ "ice" ], "title": "Delicias de la Habana recipe", - "url": "http://www.drinksmixer.com/drink3149.html" + "url": "https://www.drinksmixer.com/drink3149.html" }, { "directions": "Mix all ingredients except sprite. Pour into a highball glass over ice cubes and fill with sprite. Garnish with red cherry and lime wheel.", @@ -22625,7 +22625,7 @@ "Sprite\u00ae soda" ], "title": "Dell Boy recipe", - "url": "http://www.drinksmixer.com/drink3150.html" + "url": "https://www.drinksmixer.com/drink3150.html" }, { "directions": "In a mixing glass half-filled with ice cubes, combine the gin, brandy, sweet vermouth, dry vermouth, and bitters. Stir well. Strain into a cocktail glass and garnish with the lemon twist.", @@ -22638,7 +22638,7 @@ "lemon" ], "title": "Delmonico Cocktail recipe", - "url": "http://www.drinksmixer.com/drink3151.html" + "url": "https://www.drinksmixer.com/drink3151.html" }, { "directions": "Stir all ingredients (except lemon peel) with ice and strain into a cocktail glass. Add the twist of lemon peel and serve.", @@ -22650,7 +22650,7 @@ "lemon" ], "title": "Delmonico #2 recipe", - "url": "http://www.drinksmixer.com/drink3152.html" + "url": "https://www.drinksmixer.com/drink3152.html" }, { "directions": "Add the everclear first and then the orange juice so that it settles on the top. Then shoot it. Repeat.", @@ -22659,7 +22659,7 @@ "orange juice" ], "title": "Demon Drop recipe", - "url": "http://www.drinksmixer.com/drink3153.html" + "url": "https://www.drinksmixer.com/drink3153.html" }, { "directions": "Stir all ingredients with ice, strain into a cocktail glass, and serve.", @@ -22670,7 +22670,7 @@ "grenadine syrup" ], "title": "Dempsey Cocktail recipe", - "url": "http://www.drinksmixer.com/drink3154.html" + "url": "https://www.drinksmixer.com/drink3154.html" }, { "directions": "Blend the absolut kurant, oregat and frangelico in a mixer. Pour in highball glass, add 2 ice cubes, fill with the cranberry juice and sprite. Put a slice of lemon on the edge of the glass. \r", @@ -22682,7 +22682,7 @@ "Sprite\u00ae soda" ], "title": "Dephaekt recipe", - "url": "http://www.drinksmixer.com/drink3155.html" + "url": "https://www.drinksmixer.com/drink3155.html" }, { "directions": "Fill a mason jar with ice. Pour over the whiskey (Jim Beam). Then add the Pepsi and Mountain Dew. Mix if desired.", @@ -22693,7 +22693,7 @@ "ice" ], "title": "Depressed Goalie recipe", - "url": "http://www.drinksmixer.com/drink3156.html" + "url": "https://www.drinksmixer.com/drink3156.html" }, { "directions": "Pour the Vodka, Pernod, Malibu & Tia Maria into a one pint beer glass, add the lemonade and pineapple juice, and top up with coke.", @@ -22707,7 +22707,7 @@ "cola" ], "title": "Depth Charge recipe", - "url": "http://www.drinksmixer.com/drink3157.html" + "url": "https://www.drinksmixer.com/drink3157.html" }, { "directions": "Add all alcohols to a large vat, then add juices. Add the sprite just before serving.", @@ -22725,7 +22725,7 @@ "Sprite\u00ae soda" ], "title": "Derailer recipe", - "url": "http://www.drinksmixer.com/drink3158.html" + "url": "https://www.drinksmixer.com/drink3158.html" }, { "directions": "Blend all ingredients with 1/2 cup shaved ice in an electric blender at a low speed. Pour into a champagne flute and serve.", @@ -22736,7 +22736,7 @@ "sugar" ], "title": "Derby Daiquiri recipe", - "url": "http://www.drinksmixer.com/drink3159.html" + "url": "https://www.drinksmixer.com/drink3159.html" }, { "directions": "In a shaker half-filled with ice cubes, combine all of the ingredients. Shake well. Strain into a cocktail glass.", @@ -22748,7 +22748,7 @@ "heavy cream" ], "title": "DeRosier recipe", - "url": "http://www.drinksmixer.com/drink3160.html" + "url": "https://www.drinksmixer.com/drink3160.html" }, { "directions": "Add the tabasco sauce to a shot glass, and fill with the tequila.\r", @@ -22757,7 +22757,7 @@ "tequila" ], "title": "Desert Water recipe", - "url": "http://www.drinksmixer.com/drink3161.html" + "url": "https://www.drinksmixer.com/drink3161.html" }, { "directions": "Serve on the rocks. \r", @@ -22766,7 +22766,7 @@ "Stolichnaya\u00ae vodka" ], "title": "Desiree recipe", - "url": "http://www.drinksmixer.com/drink3162.html" + "url": "https://www.drinksmixer.com/drink3162.html" }, { "directions": "Mix with ice in a tall glass.", @@ -22775,7 +22775,7 @@ "cinnamon schnapps" ], "title": "Detroit Red Wing recipe", - "url": "http://www.drinksmixer.com/drink3163.html" + "url": "https://www.drinksmixer.com/drink3163.html" }, { "directions": "Pour in shot glass.", @@ -22784,7 +22784,7 @@ "gin" ], "title": "Devastating Body Rocker recipe", - "url": "http://www.drinksmixer.com/drink3164.html" + "url": "https://www.drinksmixer.com/drink3164.html" }, { "directions": "Using a large glass of water, add lemonade concentrate to taste (best to make it a little stronger than usual). Add the shots of everclear and mix well.", @@ -22793,7 +22793,7 @@ "lemonade" ], "title": "Devil's Piss recipe", - "url": "http://www.drinksmixer.com/drink3165.html" + "url": "https://www.drinksmixer.com/drink3165.html" }, { "directions": "The first thing to do is add the ice. 4 large cubes work well. Then add the vodka. A good way to measure is to fill it almost to the top of the ice cubes. Add the Orange Juice until it is almost to the top of the glass and then add a little mountain dew. The more dew you add, the less vodka taste you have. (The oj also does a nice job of killing the vodka taste). Then enjoy.", @@ -22804,7 +22804,7 @@ "Mountain Dew\u00ae citrus soda" ], "title": "Dew-Driver #2 recipe", - "url": "http://www.drinksmixer.com/drink3166.html" + "url": "https://www.drinksmixer.com/drink3166.html" }, { "directions": "Fill glass w/ice, add vodka and mountain dew to taste, and serve.", @@ -22813,7 +22813,7 @@ "Mountain Dew\u00ae citrus soda" ], "title": "Dew-Driver recipe", - "url": "http://www.drinksmixer.com/drink3167.html" + "url": "https://www.drinksmixer.com/drink3167.html" }, { "directions": "Pour Captain Morgan's Spiced Rum over crushed ice. Add Mountain Dew.", @@ -22822,7 +22822,7 @@ "Mountain Dew\u00ae citrus soda" ], "title": "Dewing the Captain recipe", - "url": "http://www.drinksmixer.com/drink3168.html" + "url": "https://www.drinksmixer.com/drink3168.html" }, { "directions": "Place two ice cubes into a 16 oz. cup. Add one shot of bacardi 151 proof rum, and pour the mountain dew over the top.", @@ -22831,7 +22831,7 @@ "Mountain Dew\u00ae citrus soda" ], "title": "DewRunRum recipe", - "url": "http://www.drinksmixer.com/drink3169.html" + "url": "https://www.drinksmixer.com/drink3169.html" }, { "directions": "Combine the two ingredients in a tall glass with/without ice.", @@ -22840,7 +22840,7 @@ "Mountain Dew\u00ae citrus soda" ], "title": "Dew recipe", - "url": "http://www.drinksmixer.com/drink3170.html" + "url": "https://www.drinksmixer.com/drink3170.html" }, { "directions": "Shake gin, juice of lemon, and powdered sugar with ice and strain into a highball glass over two ice cubes. Fill with chilled champagne, stir, and serve.", @@ -22851,7 +22851,7 @@ "Champagne" ], "title": "Diamond Fizz recipe", - "url": "http://www.drinksmixer.com/drink3171.html" + "url": "https://www.drinksmixer.com/drink3171.html" }, { "directions": "In a mixing glass half-filled with ice cubes, combine all of the ingredients. Stir well. Strain into a cocktail glass.", @@ -22862,7 +22862,7 @@ "cherry brandy" ], "title": "Dianne-On-The-Tower recipe", - "url": "http://www.drinksmixer.com/drink3172.html" + "url": "https://www.drinksmixer.com/drink3172.html" }, { "directions": "Mix. Pretend it's a martini. Plastic glasses are the best for this beast.", @@ -22871,7 +22871,7 @@ "white wine" ], "title": "Dick Deming Martini recipe", - "url": "http://www.drinksmixer.com/drink3173.html" + "url": "https://www.drinksmixer.com/drink3173.html" }, { "directions": "Mix all three liquors then fill with sprite. Garnish with lime, and serve.", @@ -22882,7 +22882,7 @@ "Sprite\u00ae soda" ], "title": "Dick Hard recipe", - "url": "http://www.drinksmixer.com/drink3174.html" + "url": "https://www.drinksmixer.com/drink3174.html" }, { "directions": "Fill shot glass 2/3 full with Bailey's and then top it off with Crown Royal.", @@ -22891,7 +22891,7 @@ "Crown Royal\u00ae Canadian whisky" ], "title": "Dick Wells recipe", - "url": "http://www.drinksmixer.com/drink3175.html" + "url": "https://www.drinksmixer.com/drink3175.html" }, { "directions": "Mix all ingredients in a tall glass on the rocks.", @@ -22905,7 +22905,7 @@ "Grand Marnier\u00ae orange liqueur" ], "title": "Dick in the Dirt recipe", - "url": "http://www.drinksmixer.com/drink3176.html" + "url": "https://www.drinksmixer.com/drink3176.html" }, { "directions": "Take a large glass and fill with ice cubes. Add 1 part george dickel tennessee whiskey to 2 parts of mountain dew.", @@ -22914,7 +22914,7 @@ "Mountain Dew\u00ae citrus soda" ], "title": "Dickel & Dew recipe", - "url": "http://www.drinksmixer.com/drink3177.html" + "url": "https://www.drinksmixer.com/drink3177.html" }, { "directions": "Mix liquor and chocolate milk in a highball glass, then top with whipped cream and cinnamon.", @@ -22926,7 +22926,7 @@ "whipped cream" ], "title": "Dickhead's Delight recipe", - "url": "http://www.drinksmixer.com/drink3178.html" + "url": "https://www.drinksmixer.com/drink3178.html" }, { "directions": "Pour the scotch, bitters, and ginger ale into a highball glass almost filled with ice cubes. Stir well and garnish with the lime wedge.", @@ -22937,7 +22937,7 @@ "lime" ], "title": "Dickie Ward recipe", - "url": "http://www.drinksmixer.com/drink3179.html" + "url": "https://www.drinksmixer.com/drink3179.html" }, { "directions": "Use absolut citron or other citrus flavored vodka. Mix in highball glass and enjoy.", @@ -22947,7 +22947,7 @@ "iced tea" ], "title": "Dignified Iced Tea recipe", - "url": "http://www.drinksmixer.com/drink3180.html" + "url": "https://www.drinksmixer.com/drink3180.html" }, { "directions": "Shake all ingredients (except mint) with ice and strain into a cocktail glass. Add the sprig of mint and serve.", @@ -22958,7 +22958,7 @@ "mint" ], "title": "Dinah Cocktail recipe", - "url": "http://www.drinksmixer.com/drink3181.html" + "url": "https://www.drinksmixer.com/drink3181.html" }, { "directions": "Stir all ingredients (except lemon and cherry) with ice and strain into a cocktail glass. Add the lemon slice, top with the cherry, and serve.", @@ -22971,7 +22971,7 @@ "cherry" ], "title": "Diplomat recipe", - "url": "http://www.drinksmixer.com/drink3182.html" + "url": "https://www.drinksmixer.com/drink3182.html" }, { "directions": "Add J\ufffdgermeister, and fill rest of glass with Thomas Kemper Root Beer. Mix and enjoy!", @@ -22980,7 +22980,7 @@ "root beer" ], "title": "Dirk Diggler recipe", - "url": "http://www.drinksmixer.com/drink3183.html" + "url": "https://www.drinksmixer.com/drink3183.html" }, { "directions": "Mix the three ingredients in a shot glass and slam.", @@ -22990,7 +22990,7 @@ "Rumple Minze\u00ae peppermint liqueur" ], "title": "Dirtiest Ernie recipe", - "url": "http://www.drinksmixer.com/drink3184.html" + "url": "https://www.drinksmixer.com/drink3184.html" }, { "directions": "Put all ingredients into a shaker, except olives, and shake until shaker is frosted. Pour into cocktail glass, add olives and serve.", @@ -23003,7 +23003,7 @@ "ice cubes" ], "title": "Dirty Bloody Martini recipe", - "url": "http://www.drinksmixer.com/drink3185.html" + "url": "https://www.drinksmixer.com/drink3185.html" }, { "directions": "Blend, chill, and serve in 2-3 shot glasses.", @@ -23015,7 +23015,7 @@ "Blue Curacao liqueur" ], "title": "Dirty Bong Water #2 recipe", - "url": "http://www.drinksmixer.com/drink3186.html" + "url": "https://www.drinksmixer.com/drink3186.html" }, { "directions": "Pour all ingredients in a glass with ice. Mix and enjoy.", @@ -23027,7 +23027,7 @@ "sweet and sour mix" ], "title": "Dirty Bong Water recipe", - "url": "http://www.drinksmixer.com/drink3187.html" + "url": "https://www.drinksmixer.com/drink3187.html" }, { "directions": "Pour equal parts of all ingredients into a shaker filled with ice, and chill, shake, and strain.", @@ -23040,7 +23040,7 @@ "orange juice" ], "title": "Dirty Diaper recipe", - "url": "http://www.drinksmixer.com/drink3188.html" + "url": "https://www.drinksmixer.com/drink3188.html" }, { "directions": "In a mixing glass half-filled with ice cubes, combine the gin, vermouth, and campari. Stir well. Strain into a cocktail glass and garnish with the lemon twist.", @@ -23051,7 +23051,7 @@ "lemon" ], "title": "Dirty Dick's Downfall recipe", - "url": "http://www.drinksmixer.com/drink3189.html" + "url": "https://www.drinksmixer.com/drink3189.html" }, { "directions": "Put ingredients into a mixing cup or blender, shake, then pour into a mason jar. Enjoy!", @@ -23063,7 +23063,7 @@ "ice" ], "title": "Dirty Dog recipe", - "url": "http://www.drinksmixer.com/drink3190.html" + "url": "https://www.drinksmixer.com/drink3190.html" }, { "directions": "Mix the vodka, kahlua and bailey's and pour over ice. Pour the creme de menthe down the center of the glass. Looks gross, but tastes delicious!", @@ -23074,7 +23074,7 @@ "white creme de menthe" ], "title": "Dirty Girl Scout recipe", - "url": "http://www.drinksmixer.com/drink3191.html" + "url": "https://www.drinksmixer.com/drink3191.html" }, { "directions": "Pour creme de menthe and kahlua in a glass over ice. Add milk to fill. Garnish with whatever you'd like, and serve.", @@ -23084,7 +23084,7 @@ "milk" ], "title": "Dirty Grasshopper recipe", - "url": "http://www.drinksmixer.com/drink3192.html" + "url": "https://www.drinksmixer.com/drink3192.html" }, { "directions": "Mix in a mixing cup with ice and shake. Pour through a strainer, and drink.", @@ -23093,7 +23093,7 @@ "Jameson\u00ae Irish whiskey" ], "title": "Dirty Irish Whiskey recipe", - "url": "http://www.drinksmixer.com/drink3193.html" + "url": "https://www.drinksmixer.com/drink3193.html" }, { "directions": "Use mixing glass with ice pour gin and splash of olive juice from the jar or fruit tray. Shake or stir does not matter. Strain into Martini glass. Garnish with at least 3 olives.", @@ -23102,7 +23102,7 @@ "olive juice" ], "title": "Dirty Martini #2 recipe", - "url": "http://www.drinksmixer.com/drink3194.html" + "url": "https://www.drinksmixer.com/drink3194.html" }, { "directions": "First add vodka to lemonade, sprite goes in last. Stir and serve.", @@ -23112,7 +23112,7 @@ "Sprite\u00ae soda" ], "title": "Dirty Mexican Lemonade recipe", - "url": "http://www.drinksmixer.com/drink3195.html" + "url": "https://www.drinksmixer.com/drink3195.html" }, { "directions": "Pour ingredients over ice and stir.", @@ -23123,7 +23123,7 @@ "half-and-half" ], "title": "Dirty Moma recipe", - "url": "http://www.drinksmixer.com/drink3196.html" + "url": "https://www.drinksmixer.com/drink3196.html" }, { "directions": "Shake with ice.", @@ -23135,7 +23135,7 @@ "cranberry juice" ], "title": "Dirty Mop recipe", - "url": "http://www.drinksmixer.com/drink3197.html" + "url": "https://www.drinksmixer.com/drink3197.html" }, { "directions": "Pour ingredients into an old-fashioned glass filled with ice cubes, stir well, and serve.", @@ -23144,7 +23144,7 @@ "Kahlua\u00ae coffee liqueur" ], "title": "Dirty Mother recipe", - "url": "http://www.drinksmixer.com/drink3198.html" + "url": "https://www.drinksmixer.com/drink3198.html" }, { "directions": "Layer the ingredients in order - the Bailey's must be on top.", @@ -23154,7 +23154,7 @@ "Bailey's\u00ae Irish cream" ], "title": "Dirty Nipple recipe", - "url": "http://www.drinksmixer.com/drink3199.html" + "url": "https://www.drinksmixer.com/drink3199.html" }, { "directions": "This is a layered shot - the Bailey's must be on top.", @@ -23163,7 +23163,7 @@ "Bailey's\u00ae Irish cream" ], "title": "Dirty Oatmeal recipe", - "url": "http://www.drinksmixer.com/drink3200.html" + "url": "https://www.drinksmixer.com/drink3200.html" }, { "directions": "Layer in order.", @@ -23173,7 +23173,7 @@ "Bailey's\u00ae Irish cream" ], "title": "Dirty Orgasm recipe", - "url": "http://www.drinksmixer.com/drink3201.html" + "url": "https://www.drinksmixer.com/drink3201.html" }, { "directions": "Pour brandy and Kahlua into an old-fashioned glass filled with ice cubes and stir. Float cream on top and serve.", @@ -23183,7 +23183,7 @@ "light cream" ], "title": "Dirty White Mother recipe", - "url": "http://www.drinksmixer.com/drink3202.html" + "url": "https://www.drinksmixer.com/drink3202.html" }, { "directions": "Mix together over ice, strain into glass.", @@ -23192,7 +23192,7 @@ "Goldschlager\u00ae cinnamon schnapps" ], "title": "Disco Ball recipe", - "url": "http://www.drinksmixer.com/drink3203.html" + "url": "https://www.drinksmixer.com/drink3203.html" }, { "directions": "Fill a pint glass with ice cubes. Add one shot each of Bacardi Black Rum and Seagram's Extra Dry Gin. Add a splash of soda water and fill the rest of the glass with sweet & sour mix.", @@ -23204,7 +23204,7 @@ "ice cubes" ], "title": "The District III recipe", - "url": "http://www.drinksmixer.com/drink3204.html" + "url": "https://www.drinksmixer.com/drink3204.html" }, { "directions": "Pour the fruit punch into a glass. Add the vodka and schnapps. The correct amount of lemon juice all depends on personal preference. A couple of splashes is a good mix to start with.", @@ -23215,7 +23215,7 @@ "lemon juice" ], "title": "Dit Kicker recipe", - "url": "http://www.drinksmixer.com/drink3205.html" + "url": "https://www.drinksmixer.com/drink3205.html" }, { "directions": "Pour and build in a tall glass or collins glass. Fill with 7-up. Garnish with cherry and lime.", @@ -23227,7 +23227,7 @@ "7-Up\u00ae soda" ], "title": "Diva recipe", - "url": "http://www.drinksmixer.com/drink3206.html" + "url": "https://www.drinksmixer.com/drink3206.html" }, { "directions": "Fill shot glass with the amaretto the root beer schnapps, next drop the shot glass into mug of beer and drink before it fizzes over the mug.", @@ -23237,7 +23237,7 @@ "beer" ], "title": "Dive Bomber recipe", - "url": "http://www.drinksmixer.com/drink3207.html" + "url": "https://www.drinksmixer.com/drink3207.html" }, { "directions": "Shake all ingredients with ice, strain into a cocktail glass, and serve.", @@ -23248,7 +23248,7 @@ "oranges" ], "title": "Dixie Cocktail recipe", - "url": "http://www.drinksmixer.com/drink3208.html" + "url": "https://www.drinksmixer.com/drink3208.html" }, { "directions": "In a mixing glass half-filled with ice cubes, combine all of the ingredients. Stir well. Strain into a cocktail glass.", @@ -23258,7 +23258,7 @@ "triple sec" ], "title": "Dixie Dew recipe", - "url": "http://www.drinksmixer.com/drink3209.html" + "url": "https://www.drinksmixer.com/drink3209.html" }, { "directions": "Combine bourbon and powdered sugar in a collins glass. Fill with ice and stir gently until glass is frosted. Add the three sprigs of mint and serve with a straw.", @@ -23268,7 +23268,7 @@ "mint" ], "title": "Dixie Julep recipe", - "url": "http://www.drinksmixer.com/drink3210.html" + "url": "https://www.drinksmixer.com/drink3210.html" }, { "directions": "In a shaker half-filled with ice cubes, combine all of the ingredients. Shake well. Strain into a cocktail glass.", @@ -23278,7 +23278,7 @@ "Southern Comfort\u00ae peach liqueur" ], "title": "Dixie Stinger recipe", - "url": "http://www.drinksmixer.com/drink3211.html" + "url": "https://www.drinksmixer.com/drink3211.html" }, { "directions": "Shake all ingredients with ice, strain into a cocktail glass, and serve.", @@ -23290,7 +23290,7 @@ "bitters" ], "title": "Dixie Whiskey Cocktail recipe", - "url": "http://www.drinksmixer.com/drink3212.html" + "url": "https://www.drinksmixer.com/drink3212.html" }, { "directions": "Shake or stir. Garnish with a lemon wedge.", @@ -23300,7 +23300,7 @@ "iced tea" ], "title": "Dixieland Tea recipe", - "url": "http://www.drinksmixer.com/drink3213.html" + "url": "https://www.drinksmixer.com/drink3213.html" }, { "directions": "Chill ingredients in mixing glass with ice. Strain into a chilled shot glass.", @@ -23310,7 +23310,7 @@ "Goldschlager\u00ae cinnamon schnapps" ], "title": "Dizzy Damage recipe", - "url": "http://www.drinksmixer.com/drink3214.html" + "url": "https://www.drinksmixer.com/drink3214.html" }, { "directions": "In a pitcher full of ice, add Peach Schnapps, Rum, Vodka, Gin, and juices. Stir well. Serve.", @@ -23324,7 +23324,7 @@ "cranberry juice" ], "title": "DJ Shooters recipe", - "url": "http://www.drinksmixer.com/drink3215.html" + "url": "https://www.drinksmixer.com/drink3215.html" }, { "directions": "In a shaker half-filled with ice cubes, combine the tequila, lemon juice, sugar, bitters, and egg. Shake well. Strain into a highball glass almost filled with ice cubes. Top with the club soda.", @@ -23337,7 +23337,7 @@ "club soda" ], "title": "Doctor Dawson recipe", - "url": "http://www.drinksmixer.com/drink3216.html" + "url": "https://www.drinksmixer.com/drink3216.html" }, { "directions": "Mix it together and shake (not too hard). Pour it into an ordinary cocktail glass.", @@ -23347,7 +23347,7 @@ "lemon juice" ], "title": "Doctor recipe", - "url": "http://www.drinksmixer.com/drink3217.html" + "url": "https://www.drinksmixer.com/drink3217.html" }, { "directions": "Pour all ingredients on the rocks. Stir.", @@ -23358,7 +23358,7 @@ "Bailey's\u00ae Irish cream" ], "title": "Dog Biscuit recipe", - "url": "http://www.drinksmixer.com/drink3218.html" + "url": "https://www.drinksmixer.com/drink3218.html" }, { "directions": "Pour vodka into any cup or glass. Fill with mountain dew. Add a few splashes of lemon juice. Add a few ice cubes (optional, but recommended). Stir.", @@ -23368,7 +23368,7 @@ "lemon juice" ], "title": "Dog House Dew recipe", - "url": "http://www.drinksmixer.com/drink3219.html" + "url": "https://www.drinksmixer.com/drink3219.html" }, { "directions": "Dump the ingredients into a container and stir it. It's very simple and very delicious.", @@ -23378,7 +23378,7 @@ "Southern Comfort\u00ae peach liqueur" ], "title": "Dog Piss recipe", - "url": "http://www.drinksmixer.com/drink3220.html" + "url": "https://www.drinksmixer.com/drink3220.html" }, { "directions": "Pour in the vodka first and then proceed to pour the beer on top.", @@ -23388,7 +23388,7 @@ "lime juice" ], "title": "Dogs Bollocks recipe", - "url": "http://www.drinksmixer.com/drink3221.html" + "url": "https://www.drinksmixer.com/drink3221.html" }, { "directions": "Combine ingredients with ice. (NOTE: if you can't purchase Tahiti Treat use pineapple juice.)", @@ -23398,7 +23398,7 @@ "Canada Dry\u00ae Tahitian Treat punch" ], "title": "Doh recipe", - "url": "http://www.drinksmixer.com/drink3222.html" + "url": "https://www.drinksmixer.com/drink3222.html" }, { "directions": "Pour into shot glass.", @@ -23408,7 +23408,7 @@ "Goldschlager\u00ae cinnamon schnapps" ], "title": "Dolt Bolt recipe", - "url": "http://www.drinksmixer.com/drink3223.html" + "url": "https://www.drinksmixer.com/drink3223.html" }, { "directions": "Mix ruby red grapefruit juice and lemon-lime vintage seltzer water. Add the rum (as much as desired) and shake.", @@ -23418,7 +23418,7 @@ "lemon-lime soda" ], "title": "Dominican Goddess recipe", - "url": "http://www.drinksmixer.com/drink3224.html" + "url": "https://www.drinksmixer.com/drink3224.html" }, { "directions": "Put 4 or 5 ice cubes in a large old-fashioned glass and fill 3/4 full with Clamato juice. (Clamato may be mixed 1/2 and 1/2 with any other favorite tomato or veggie juice). Add the vodka, Worcestershire, Tabasco, and Horseradish and stir thoroughly with a spoon or swizzle. \r", @@ -23431,7 +23431,7 @@ "lime" ], "title": "Don's Bloody Mary recipe", - "url": "http://www.drinksmixer.com/drink3225.html" + "url": "https://www.drinksmixer.com/drink3225.html" }, { "directions": "Chill and strain together into shot glass.", @@ -23440,7 +23440,7 @@ "Rumple Minze\u00ae peppermint liqueur" ], "title": "Dong recipe", - "url": "http://www.drinksmixer.com/drink3226.html" + "url": "https://www.drinksmixer.com/drink3226.html" }, { "directions": "Put each of the ingredients into a punch bowl. Mix, and with a straw, shoot.", @@ -23452,7 +23452,7 @@ "Irish cream" ], "title": "Donivan Flowers' Rocks recipe", - "url": "http://www.drinksmixer.com/drink3227.html" + "url": "https://www.drinksmixer.com/drink3227.html" }, { "directions": "Mix all ingredients in a punchbowl and float orange slices on top.", @@ -23464,7 +23464,7 @@ "grenadine syrup" ], "title": "Donkey Punch recipe", - "url": "http://www.drinksmixer.com/drink3228.html" + "url": "https://www.drinksmixer.com/drink3228.html" }, { "directions": "Put 4 ice cubes in shaker. Add ingredients. shake well and serve in a margarita glass. Garnish with lime.", @@ -23474,7 +23474,7 @@ "soda water" ], "title": "Donkey Semmen recipe", - "url": "http://www.drinksmixer.com/drink3229.html" + "url": "https://www.drinksmixer.com/drink3229.html" }, { "directions": "Mix well the Thunderbird with the Vodka and pour into an empty litre coke/lemonade bottle. The exact ratio of vodka:thunderbird can be altered to the creator's taste. Fridge for at least 12 hours. \r", @@ -23483,7 +23483,7 @@ "Thunderbird\u00ae Red Label wine" ], "title": "Donnington Brainstorm recipe", - "url": "http://www.drinksmixer.com/drink3230.html" + "url": "https://www.drinksmixer.com/drink3230.html" }, { "directions": "Add all ingredients to a shaker filled with ice. Shake vigorously. Strain into shot glasses. (Optional garnish of Whipped cream and a Teddy-Graham on top.) Yields 3 or 4 shots depending on shot glass size and ice melt.", @@ -23494,7 +23494,7 @@ "cream" ], "title": "Door County Cherry Cheesecake recipe", - "url": "http://www.drinksmixer.com/drink3231.html" + "url": "https://www.drinksmixer.com/drink3231.html" }, { "directions": "In a shaker half-filled with ice cubes, combine the tequila, lemon juice, sugar, and bitters. Shake well. Strain into a highball glass almost filled with ice cubes. Top with the tonic water and garnish with the lime wedge.", @@ -23507,7 +23507,7 @@ "lime" ], "title": "Doralto recipe", - "url": "http://www.drinksmixer.com/drink3232.html" + "url": "https://www.drinksmixer.com/drink3232.html" }, { "directions": "Pour each ingredient into a double shot glass, they will mix by themselves. Shoot.", @@ -23516,7 +23516,7 @@ "Scotch whisky" ], "title": "Double Brit recipe", - "url": "http://www.drinksmixer.com/drink3233.html" + "url": "https://www.drinksmixer.com/drink3233.html" }, { "directions": "Add both ingredients to shot glass (don't layer). Sprinkle cocoa on top (optional).", @@ -23526,7 +23526,7 @@ "cocoa powder" ], "title": "Double Chocolate recipe", - "url": "http://www.drinksmixer.com/drink3234.html" + "url": "https://www.drinksmixer.com/drink3234.html" }, { "directions": "Keep goldschlager in freezer. Mix in jigger shot glass. Shot it down and enjoy.", @@ -23535,7 +23535,7 @@ "Jose Cuervo\u00ae Especial gold tequila" ], "title": "Double Gold recipe", - "url": "http://www.drinksmixer.com/drink3235.html" + "url": "https://www.drinksmixer.com/drink3235.html" }, { "directions": "Blend all the ingredients apart from the Grenadine. Pour that on top of the drink when its in the glass.", @@ -23549,7 +23549,7 @@ "grenadine syrup" ], "title": "Double Intention recipe", - "url": "http://www.drinksmixer.com/drink3236.html" + "url": "https://www.drinksmixer.com/drink3236.html" }, { "directions": "Combine the two jacks in glass.", @@ -23558,7 +23558,7 @@ "Yukon Jack\u00ae Canadian whisky" ], "title": "Double Jack recipe", - "url": "http://www.drinksmixer.com/drink3237.html" + "url": "https://www.drinksmixer.com/drink3237.html" }, { "directions": "Mix all the alcohol, then lime. Cola on the top.", @@ -23572,7 +23572,7 @@ "cola" ], "title": "Double Omega recipe", - "url": "http://www.drinksmixer.com/drink3238.html" + "url": "https://www.drinksmixer.com/drink3238.html" }, { "directions": "Pour each ounce in same shot glass. Slam or sip and enjoy.", @@ -23581,7 +23581,7 @@ "watermelon schnapps" ], "title": "Double Pucker recipe", - "url": "http://www.drinksmixer.com/drink3239.html" + "url": "https://www.drinksmixer.com/drink3239.html" }, { "directions": "Pour the rum first, then the Amaretto. Enjoy!", @@ -23590,7 +23590,7 @@ "rum" ], "title": "The Double Team recipe", - "url": "http://www.drinksmixer.com/drink3240.html" + "url": "https://www.drinksmixer.com/drink3240.html" }, { "directions": "Put amaretto first, then the southern comfort and top this with the creme de banane.", @@ -23600,7 +23600,7 @@ "creme de bananes" ], "title": "Doucet Devil recipe", - "url": "http://www.drinksmixer.com/drink3241.html" + "url": "https://www.drinksmixer.com/drink3241.html" }, { "directions": "Put Bailey's into a shot glass about 2/3 full. Fill the rest of the shot with Lemon or Lime juice. Take the shot and swish it around in your mouth. It feels really neat. Swallow it before it becomes solid.", @@ -23609,7 +23609,7 @@ "lemon juice" ], "title": "Doug's Modified Cement Mixer recipe", - "url": "http://www.drinksmixer.com/drink3242.html" + "url": "https://www.drinksmixer.com/drink3242.html" }, { "directions": "Mix in pitcher with ice. Pour into glass with ice, and enjoy.", @@ -23622,7 +23622,7 @@ "grenadine syrup" ], "title": "Down Home Punch recipe", - "url": "http://www.drinksmixer.com/drink3243.html" + "url": "https://www.drinksmixer.com/drink3243.html" }, { "directions": "Combine ingredients. Serve with ice.", @@ -23635,7 +23635,7 @@ "grenadine syrup" ], "title": "Down Home Punch #2 recipe", - "url": "http://www.drinksmixer.com/drink3244.html" + "url": "https://www.drinksmixer.com/drink3244.html" }, { "directions": "Start with the sprite. Next comes the tequila. After that, add the Minute Maid fruit punch, then float the 151 proof rum. Rocks optional.", @@ -23646,7 +23646,7 @@ "Bacardi\u00ae 151 rum" ], "title": "Downshift recipe", - "url": "http://www.drinksmixer.com/drink3245.html" + "url": "https://www.drinksmixer.com/drink3245.html" }, { "directions": "Mix in glass over ice.", @@ -23655,7 +23655,7 @@ "Dr. Pepper\u00ae soda" ], "title": "Dr Jack recipe", - "url": "http://www.drinksmixer.com/drink3246.html" + "url": "https://www.drinksmixer.com/drink3246.html" }, { "directions": "Pour ingredients over ice in a highball glass. Gently swirl to mix, and serve.", @@ -23664,7 +23664,7 @@ "Dr. Pepper\u00ae soda" ], "title": "Dr. Daniel recipe", - "url": "http://www.drinksmixer.com/drink3247.html" + "url": "https://www.drinksmixer.com/drink3247.html" }, { "directions": "Combine all ingredients over ice in this order: liquors, cranberry juice, ginger ale, aour mix, orange juice, and bitters. Cover and shake well. Garnish with a cherry.", @@ -23679,7 +23679,7 @@ "orange bitters" ], "title": "Dr. Dye's Revenge recipe", - "url": "http://www.drinksmixer.com/drink3248.html" + "url": "https://www.drinksmixer.com/drink3248.html" }, { "directions": "Stir well and enjoy!", @@ -23688,7 +23688,7 @@ "Dr. Pepper\u00ae soda" ], "title": "Dr. Kevorkian recipe", - "url": "http://www.drinksmixer.com/drink3249.html" + "url": "https://www.drinksmixer.com/drink3249.html" }, { "directions": "Fill a shot glass with amaretto and gin. Drop shot glass into half a glass of beer. Then, slam. It tastes just like Dr. Pepper.", @@ -23698,7 +23698,7 @@ "beer" ], "title": "Dr. Pepper #3 recipe", - "url": "http://www.drinksmixer.com/drink3250.html" + "url": "https://www.drinksmixer.com/drink3250.html" }, { "directions": "Pour beer into beer stein, add coke. In a shot glass mix the three other ingredients. Pour contents of shot glass into beer stein and chug it all down. Tastes just like a Dr. Pepper.", @@ -23710,7 +23710,7 @@ "cherry brandy" ], "title": "Dr. Pepper #4 recipe", - "url": "http://www.drinksmixer.com/drink3251.html" + "url": "https://www.drinksmixer.com/drink3251.html" }, { "directions": "Mix the Amaretto & Bacardi in one shot glass. Fill the beer mug 1/2 way with beer. Light the Bacardi & Amaretto with a match or lighter. Drop the flaming shot glass into the beer. It immediately begins to foam up. At this point gulp it down (be careful not to swallow the shot glass!).", @@ -23720,7 +23720,7 @@ "beer" ], "title": "Dr. Pepper #5 recipe", - "url": "http://www.drinksmixer.com/drink3252.html" + "url": "https://www.drinksmixer.com/drink3252.html" }, { "directions": "Pour Dr. Pepper into glass and add Chambord. Stir to mix, and serve chilled.", @@ -23729,7 +23729,7 @@ "Dr. Pepper\u00ae soda" ], "title": "Dr. Raspberry recipe", - "url": "http://www.drinksmixer.com/drink3253.html" + "url": "https://www.drinksmixer.com/drink3253.html" }, { "directions": "Poor Dr. Pepper into glass, add Aftershock. Stir once.", @@ -23738,7 +23738,7 @@ "Aftershock\u00ae Hot & Cool cinnamon schnapps" ], "title": "Dr. Shocker recipe", - "url": "http://www.drinksmixer.com/drink3254.html" + "url": "https://www.drinksmixer.com/drink3254.html" }, { "directions": "Pour Adocaat and orange fruit juice straight into the glass, there will be a little curdling but dont worry. Add the ice cubes into the glass then Sambuca , slide creme de menthe down the side. A yellow green yellow formation should occur, then add lemonade.", @@ -23751,7 +23751,7 @@ "lemonade" ], "title": "Dracona recipe", - "url": "http://www.drinksmixer.com/drink3255.html" + "url": "https://www.drinksmixer.com/drink3255.html" }, { "directions": "In a twelve ounce glass, mix all ingredients and serve.", @@ -23761,7 +23761,7 @@ "Aftershock\u00ae Hot & Cool cinnamon schnapps" ], "title": "Dragon's Blood recipe", - "url": "http://www.drinksmixer.com/drink3256.html" + "url": "https://www.drinksmixer.com/drink3256.html" }, { "directions": "Pour in firewater, float bacardi 151 proof rum on top, and ignite.", @@ -23770,7 +23770,7 @@ "Bacardi\u00ae 151 rum" ], "title": "Dragon's Breath recipe", - "url": "http://www.drinksmixer.com/drink3257.html" + "url": "https://www.drinksmixer.com/drink3257.html" }, { "directions": "In a highball glass almost filled with ice cubes, combine the gin and ginger ale. Stir well. Garnish with the lime wedge.", @@ -23780,7 +23780,7 @@ "lime" ], "title": "Dragonfly recipe", - "url": "http://www.drinksmixer.com/drink3258.html" + "url": "https://www.drinksmixer.com/drink3258.html" }, { "directions": "Place all ingredients in a glass and mix.", @@ -23791,7 +23791,7 @@ "strawberry schnapps" ], "title": "The Dragon recipe", - "url": "http://www.drinksmixer.com/drink3259.html" + "url": "https://www.drinksmixer.com/drink3259.html" }, { "directions": "Pour Bailey's and Curacao in a glass, stir. Add Coca-Cola slowly. No ice, serve with a straw. Blue Curacao may be used if you are out of green.", @@ -23801,7 +23801,7 @@ "Coca-Cola\u00ae" ], "title": "Drainpipe recipe", - "url": "http://www.drinksmixer.com/drink3260.html" + "url": "https://www.drinksmixer.com/drink3260.html" }, { "directions": "Shake all ingredients with ice, strain into a cocktail glass, and serve.", @@ -23811,7 +23811,7 @@ "anisette" ], "title": "Dream Cocktail #2 recipe", - "url": "http://www.drinksmixer.com/drink3261.html" + "url": "https://www.drinksmixer.com/drink3261.html" }, { "directions": "Mix in a mixing glass with ice cubes and pour into chilled cocktail glass.", @@ -23824,7 +23824,7 @@ "ice cubes" ], "title": "Dreaming in Antalya recipe", - "url": "http://www.drinksmixer.com/drink3262.html" + "url": "https://www.drinksmixer.com/drink3262.html" }, { "directions": "In a lowball glass combine the two and stir.", @@ -23833,7 +23833,7 @@ "orange juice" ], "title": "Dreamsicle recipe", - "url": "http://www.drinksmixer.com/drink3263.html" + "url": "https://www.drinksmixer.com/drink3263.html" }, { "directions": "Shake and strain contents into a highball glass filled with ice. Tastes just like the popsicle.", @@ -23844,7 +23844,7 @@ "half-and-half" ], "title": "Dreamsicle #2 recipe", - "url": "http://www.drinksmixer.com/drink3264.html" + "url": "https://www.drinksmixer.com/drink3264.html" }, { "directions": "Fill glass with ice. Add schnapps, then orange juice and at last milk. Stir vigorously until mixed.", @@ -23855,7 +23855,7 @@ "ice" ], "title": "Dreamsicle #3 recipe", - "url": "http://www.drinksmixer.com/drink3265.html" + "url": "https://www.drinksmixer.com/drink3265.html" }, { "directions": "Pour the schnapps into the orange juice and stir.", @@ -23864,7 +23864,7 @@ "orange juice" ], "title": "Dreamsicle #4 recipe", - "url": "http://www.drinksmixer.com/drink3266.html" + "url": "https://www.drinksmixer.com/drink3266.html" }, { "directions": "In a mixing glass half-filled with ice cubes, combine all of the ingredients. Stir well. Strain into a cocktail glass.", @@ -23878,7 +23878,7 @@ "sweet vermouth" ], "title": "Dressed Up Like A Dogs Dinner recipe", - "url": "http://www.drinksmixer.com/drink3267.html" + "url": "https://www.drinksmixer.com/drink3267.html" }, { "directions": "Make a zig-zag pattern of chocolate syrup on the inside of the glass while turning the glass. Blend rum, coconut milk and pineapple, with 2 cups of crushed ice, on high for a few seconds, until all large chunks of ice are gone. Pour into glass. Top with whipped cream and a cherry.", @@ -23891,7 +23891,7 @@ "maraschino cherry" ], "title": "Dressed Up Pina Colada recipe", - "url": "http://www.drinksmixer.com/drink3268.html" + "url": "https://www.drinksmixer.com/drink3268.html" }, { "directions": "Pour Crown Royal into beer mug. Fill with chilled Dr. Pepper or add ice cubes before pouring. Stir gently.", @@ -23900,7 +23900,7 @@ "Dr. Pepper\u00ae soda" ], "title": "The Drink Of Champions recipe", - "url": "http://www.drinksmixer.com/drink3269.html" + "url": "https://www.drinksmixer.com/drink3269.html" }, { "directions": "Stir with cracked ice and strain into a chilled cocktail glass. Garnish with a twist of orange.", @@ -23911,7 +23911,7 @@ "orange" ], "title": "The Drink Without A Name recipe", - "url": "http://www.drinksmixer.com/drink3270.html" + "url": "https://www.drinksmixer.com/drink3270.html" }, { "directions": "Heat the cream and milk with the cinnamon and vanilla bean (split lengthwise) very slowly for 15-20 minutes. (If you don't have any beans add 1-2 tsp of vanilla after heating). Remove the bean and cinnamon. Add the chocolate. Mix until fully melted. \r", @@ -23924,7 +23924,7 @@ "whipped cream" ], "title": "Drinking Chocolate recipe", - "url": "http://www.drinksmixer.com/drink3271.html" + "url": "https://www.drinksmixer.com/drink3271.html" }, { "directions": "Rinse glass with sherry, discard sherry. Shake gin over ice in separate glass to chill. Fill rinsed glass with ice, pour chilled gin over ice. Garnish with lemon twist (optional).", @@ -23934,7 +23934,7 @@ "ice cubes" ], "title": "The Drink recipe", - "url": "http://www.drinksmixer.com/drink3272.html" + "url": "https://www.drinksmixer.com/drink3272.html" }, { "directions": "In a shaker half-filled with ice cubes, combine all of the ingredients. Shake well. Strain into a cocktail glass.", @@ -23945,7 +23945,7 @@ "lime juice" ], "title": "Droog's Date Cocktail recipe", - "url": "http://www.drinksmixer.com/drink3273.html" + "url": "https://www.drinksmixer.com/drink3273.html" }, { "directions": "Pour aftershock into milk mix until light pink. Drink up.", @@ -23954,7 +23954,7 @@ "Aftershock\u00ae Hot & Cool cinnamon schnapps" ], "title": "Drool recipe", - "url": "http://www.drinksmixer.com/drink3274.html" + "url": "https://www.drinksmixer.com/drink3274.html" }, { "directions": "Mix and shake irish whiskey, midori, and apple schnapps with ice. Fill whiskey sour glass with ice. Strain mixture over ice in glass. Fill with sweet and sour mix. Garnish with several free floating maraschino cherries.", @@ -23967,7 +23967,7 @@ "maraschino cherries" ], "title": "Drunk on Christmas recipe", - "url": "http://www.drinksmixer.com/drink3275.html" + "url": "https://www.drinksmixer.com/drink3275.html" }, { "directions": "Cut a hole in the top of the watermelon and pour all of the vodka in the watermelon. Put the watermelon (hole upwards) in the fridge for one day before eating.", @@ -23976,7 +23976,7 @@ "watermelon" ], "title": "Drunk Watermelon recipe", - "url": "http://www.drinksmixer.com/drink3276.html" + "url": "https://www.drinksmixer.com/drink3276.html" }, { "directions": "In a mixing glass half-filled with ice cubes, combine the scotch and vermouth. Stir well. Strain into a cocktail glass. Garnish with the lemon twist.", @@ -23986,7 +23986,7 @@ "lemon" ], "title": "Dry Rob Roy recipe", - "url": "http://www.drinksmixer.com/drink3278.html" + "url": "https://www.drinksmixer.com/drink3278.html" }, { "directions": "Stir all ingredients (except orange slice) with ice and strain into a cocktail glass. Add the slice of orange and serve.", @@ -23998,7 +23998,7 @@ "orange" ], "title": "Du Barry Cocktail recipe", - "url": "http://www.drinksmixer.com/drink3279.html" + "url": "https://www.drinksmixer.com/drink3279.html" }, { "directions": "Mix irish whiskey, irish cream, and ice cubes. Shake to chill. Serve with or without the ice, it is very good either way.", @@ -24008,7 +24008,7 @@ "ice cubes" ], "title": "Dublin Doubler recipe", - "url": "http://www.drinksmixer.com/drink3280.html" + "url": "https://www.drinksmixer.com/drink3280.html" }, { "directions": "Pour Irish Mist and Orange Juice over rocks. Enjoy.", @@ -24018,7 +24018,7 @@ "ice cubes" ], "title": "Dublin Driver recipe", - "url": "http://www.drinksmixer.com/drink3281.html" + "url": "https://www.drinksmixer.com/drink3281.html" }, { "directions": "Stir all ingredients (except lemon peel) with ice and strain into a cocktail glass. Add the twist of lemon peel and serve.", @@ -24029,7 +24029,7 @@ "lemon" ], "title": "Dubonnet Cocktail recipe", - "url": "http://www.drinksmixer.com/drink3282.html" + "url": "https://www.drinksmixer.com/drink3282.html" }, { "directions": "Shake all ingredients (except carbonated water) with ice and strain into a highball glass over two ice cubes. Fill with carbonated water, stir, and serve.", @@ -24041,7 +24041,7 @@ "lemons" ], "title": "Dubonnet Fizz recipe", - "url": "http://www.drinksmixer.com/drink3283.html" + "url": "https://www.drinksmixer.com/drink3283.html" }, { "directions": "Shake all ingredients with ice, strain into a cocktail glass, and serve.", @@ -24051,7 +24051,7 @@ "dry vermouth" ], "title": "Duchess recipe", - "url": "http://www.drinksmixer.com/drink3284.html" + "url": "https://www.drinksmixer.com/drink3284.html" }, { "directions": "Find a large shot glass. Fill 80% of the way with Tanqueray Gin. Fill another 15% with Stoli or Absolut Vodka. Fill to the rim with cheap \"Ice\" beer (best results w/Busch Ice).", @@ -24061,7 +24061,7 @@ "beer" ], "title": "Duck Fuck recipe", - "url": "http://www.drinksmixer.com/drink3285.html" + "url": "https://www.drinksmixer.com/drink3285.html" }, { "directions": "Layer in cordial glass.", @@ -24072,7 +24072,7 @@ "tequila" ], "title": "Duck Shit Inn recipe", - "url": "http://www.drinksmixer.com/drink3286.html" + "url": "https://www.drinksmixer.com/drink3286.html" }, { "directions": "Mix in a tumbler with ice, then strain into a shot glass.", @@ -24082,7 +24082,7 @@ "Bacardi\u00ae 151 rum" ], "title": "Duck's Ass recipe", - "url": "http://www.drinksmixer.com/drink3287.html" + "url": "https://www.drinksmixer.com/drink3287.html" }, { "directions": "Take a good sized cooler, any with a drain plug will do, and pour in a 12 pack of Zima. Then pour in your sprite along with the limeade. Then pour the vodka in with the rest of it. Stir until the limeade has dissolved totally, and there you go. Makes roughly 5 gallons.", @@ -24093,7 +24093,7 @@ "vodka" ], "title": "Dudley's Damnation recipe", - "url": "http://www.drinksmixer.com/drink3288.html" + "url": "https://www.drinksmixer.com/drink3288.html" }, { "directions": "Shake well with ice and pour into shot glasses. The colder the shot the smoother it goes down. A dash of 7-up or sprite may be added to extend the shot for more than three.", @@ -24102,7 +24102,7 @@ "Jose Cuervo\u00ae Especial gold tequila" ], "title": "Duke's Nightmare recipe", - "url": "http://www.drinksmixer.com/drink3289.html" + "url": "https://www.drinksmixer.com/drink3289.html" }, { "directions": "Shake and serve.", @@ -24112,7 +24112,7 @@ "peach schnapps" ], "title": "The Dukes Of Hazzard Tonic recipe", - "url": "http://www.drinksmixer.com/drink3290.html" + "url": "https://www.drinksmixer.com/drink3290.html" }, { "directions": "Put in shot glass and stir.", @@ -24121,7 +24121,7 @@ "Canadian whisky" ], "title": "Dumbfuck recipe", - "url": "http://www.drinksmixer.com/drink3291.html" + "url": "https://www.drinksmixer.com/drink3291.html" }, { "directions": "Mix fruit punch flavored kool-aid with schnapps, vodka, and orange juice. Once stirred, garnish with cherries.", @@ -24133,7 +24133,7 @@ "cherries" ], "title": "Dungeon Punch recipe", - "url": "http://www.drinksmixer.com/drink3292.html" + "url": "https://www.drinksmixer.com/drink3292.html" }, { "directions": "Place all ingredients into a blender jar. Cover, and whiz on medium speed until well blended. Pour into a collins glass, and serve.", @@ -24145,7 +24145,7 @@ "cinnamon" ], "title": "Dutch Treat recipe", - "url": "http://www.drinksmixer.com/drink3293.html" + "url": "https://www.drinksmixer.com/drink3293.html" }, { "directions": "Mix on the rocks. Pour it all over cubed ice. Put a wedge pineapple on the glass. Serve it the way they want it.", @@ -24157,7 +24157,7 @@ "pineapple juice" ], "title": "Dutch Turbo recipe", - "url": "http://www.drinksmixer.com/drink3294.html" + "url": "https://www.drinksmixer.com/drink3294.html" }, { "directions": "Shake all ingredients (except chocolate) with ice and strain into a chilled cocktail glass. Garnish with the shaved chocolate and serve.", @@ -24168,7 +24168,7 @@ "chocolate" ], "title": "Dutch Velvet recipe", - "url": "http://www.drinksmixer.com/drink3295.html" + "url": "https://www.drinksmixer.com/drink3295.html" }, { "directions": "Pour creme de banane, apricot brandy and cherry brandy into the beer mug. Drop in a few ice cubes, and fill mug 3/4 with milk. Slowly pour the ounce of advocaat over the top of the milk covering the surface. \r", @@ -24181,7 +24181,7 @@ "ice cubes" ], "title": "Dutchie recipe", - "url": "http://www.drinksmixer.com/drink3296.html" + "url": "https://www.drinksmixer.com/drink3296.html" }, { "directions": "Place all ingredients into a tall glass over ice, stir, and serve.", @@ -24194,7 +24194,7 @@ "ginger ale" ], "title": "Dying Bastard recipe", - "url": "http://www.drinksmixer.com/drink3297.html" + "url": "https://www.drinksmixer.com/drink3297.html" }, { "directions": "Shake and serve in a highball glass with ice. Garnish with a slice of lime on the rim of the glass.", @@ -24206,7 +24206,7 @@ "ice" ], "title": "Eagle Eye recipe", - "url": "http://www.drinksmixer.com/drink3298.html" + "url": "https://www.drinksmixer.com/drink3298.html" }, { "directions": "Place all ingredients in a blender, cover and whiz on medium speed until well blended. Pour into a collins glass, and serve.", @@ -24216,7 +24216,7 @@ "carrot" ], "title": "Earth Shake recipe", - "url": "http://www.drinksmixer.com/drink3299.html" + "url": "https://www.drinksmixer.com/drink3299.html" }, { "directions": "Using a papaya or mango, cut into small pieces and puree in a blender. Add the milk, rum, ice and sugar. Blend until smooth. Pour into 4oz glasses and garnish with strawberries.", @@ -24229,7 +24229,7 @@ "strawberries" ], "title": "Pawpaw Paradise recipe", - "url": "http://www.drinksmixer.com/drink3300.html" + "url": "https://www.drinksmixer.com/drink3300.html" }, { "directions": "Combine ingredients in a blender, and mix until smooth and thick. Serve with a straw, and a garnish of shredded coconut.", @@ -24242,7 +24242,7 @@ "crushed ice" ], "title": "White Elephant recipe", - "url": "http://www.drinksmixer.com/drink3301.html" + "url": "https://www.drinksmixer.com/drink3301.html" }, { "directions": "Cut the pineapple into small pieces, enough for two cups. Combine with everything else in a blender until smooth and thick. Serve in whiskey-sour glasses and garnish with mint sprigs and maraschino cherries.", @@ -24255,7 +24255,7 @@ "crushed ice" ], "title": "Pineapple Buganda recipe", - "url": "http://www.drinksmixer.com/drink3302.html" + "url": "https://www.drinksmixer.com/drink3302.html" }, { "directions": "Combine ingredients in a punch bowl, serve with plenty of ice, and garnish with orange slices.", @@ -24269,7 +24269,7 @@ "7-Up\u00ae soda" ], "title": "Ethiopian Punch recipe", - "url": "http://www.drinksmixer.com/drink3303.html" + "url": "https://www.drinksmixer.com/drink3303.html" }, { "directions": "Shake ingredients with ice and strain into whiskey-sour glasses. Garnish with twists of lemon.", @@ -24279,7 +24279,7 @@ "white rum" ], "title": "Jungle Flame recipe", - "url": "http://www.drinksmixer.com/drink3304.html" + "url": "https://www.drinksmixer.com/drink3304.html" }, { "directions": "Use a thick-skinned california orange, peeling the rind very close to the edge. Avoid the white pulp, and chop the rind finely.\r", @@ -24292,7 +24292,7 @@ "crushed ice" ], "title": "Senegali Sunshine recipe", - "url": "http://www.drinksmixer.com/drink3305.html" + "url": "https://www.drinksmixer.com/drink3305.html" }, { "directions": "Combine ingredients in a blender until smooth. Pour over ice in 4oz glasses, and add a dash of dark rum to each. Garnish with halves orange slices and stemmed maraschino cherries.", @@ -24307,7 +24307,7 @@ "dark rum" ], "title": "Tanzanian Tonic recipe", - "url": "http://www.drinksmixer.com/drink3306.html" + "url": "https://www.drinksmixer.com/drink3306.html" }, { "directions": "Pour brandy and rum into a bowl filled with the sugar. Set on fire (use extreme caution) and let the sugar dissolve. Add black coffee and stir well.", @@ -24318,7 +24318,7 @@ "sugar" ], "title": "African Hot Punch recipe", - "url": "http://www.drinksmixer.com/drink3307.html" + "url": "https://www.drinksmixer.com/drink3307.html" }, { "directions": "Set the milk, tea and sugar to boil. Wash a thumb-sized piece of fresh ginger. Pound until flat, where juice should begin to ooze. Add the ginger to the milk-tea mixture when it begins to boil. Reduce the heat, letting it all simmer for 2-3 minutes.", @@ -24329,7 +24329,7 @@ "ginger" ], "title": "Ugandan Ginger Tea recipe", - "url": "http://www.drinksmixer.com/drink3308.html" + "url": "https://www.drinksmixer.com/drink3308.html" }, { "directions": "Shake the ingredients together and poor over in a cocktail-glass.", @@ -24339,7 +24339,7 @@ "Pernod\u00ae licorice liqueur" ], "title": "Earthquake recipe", - "url": "http://www.drinksmixer.com/drink3309.html" + "url": "https://www.drinksmixer.com/drink3309.html" }, { "directions": "Pour vodka, gin and creme-de-menthe over lots of ice.", @@ -24349,7 +24349,7 @@ "white creme de menthe" ], "title": "Earthquake #2 recipe", - "url": "http://www.drinksmixer.com/drink3310.html" + "url": "https://www.drinksmixer.com/drink3310.html" }, { "directions": "Shake with ice and strain into a collins glass.", @@ -24359,7 +24359,7 @@ "Deva\u00ae absinthe" ], "title": "Earthquake Cocktail recipe", - "url": "http://www.drinksmixer.com/drink3311.html" + "url": "https://www.drinksmixer.com/drink3311.html" }, { "directions": "Shake all ingredients (except cherry) with ice and strain into a cocktail glass. Top with the cherry and serve.", @@ -24372,7 +24372,7 @@ "cherry" ], "title": "East India Cocktail #1 recipe", - "url": "http://www.drinksmixer.com/drink3312.html" + "url": "https://www.drinksmixer.com/drink3312.html" }, { "directions": "Stir all ingredients with ice, strain into a cocktail glass, and serve.", @@ -24382,7 +24382,7 @@ "bitters" ], "title": "East India Cocktail #2 recipe", - "url": "http://www.drinksmixer.com/drink3313.html" + "url": "https://www.drinksmixer.com/drink3313.html" }, { "directions": "Shake creme de cacao and vodka with ice. Strain over ice in an old-fashioned glass. Float chocolate syrup and cherry brandy.", @@ -24393,7 +24393,7 @@ "cherry brandy" ], "title": "Easter Bunny recipe", - "url": "http://www.drinksmixer.com/drink3314.html" + "url": "https://www.drinksmixer.com/drink3314.html" }, { "directions": "Bailey's first. Pour Kahlua. Float Everlear. Bottoms up!", @@ -24403,7 +24403,7 @@ "Bailey's\u00ae Irish cream" ], "title": "Easy Does It recipe", - "url": "http://www.drinksmixer.com/drink3315.html" + "url": "https://www.drinksmixer.com/drink3315.html" }, { "directions": "Find a glass big enough, mix, find a room with a soft floor and consume very fast. Great initiation drink.", @@ -24412,7 +24412,7 @@ "lemon juice" ], "title": "Eat Hot Death recipe", - "url": "http://www.drinksmixer.com/drink3316.html" + "url": "https://www.drinksmixer.com/drink3316.html" }, { "directions": "Add the vodka to orange soda and add orange kool aid mix (make sure it is unsweetened). Pour a small amount of sugar into the mixture and stir (carefully. it is carbonated!). Taste and add sugar if needed. Enjoy!", @@ -24423,7 +24423,7 @@ "sugar" ], "title": "Eben's Magic Juice (Orange) recipe", - "url": "http://www.drinksmixer.com/drink3317.html" + "url": "https://www.drinksmixer.com/drink3317.html" }, { "directions": "Mix all ingredients together in pitcher. To add a cooler edge, throw in some crushed ice and a touch of cinammon.", @@ -24436,7 +24436,7 @@ "whiskey" ], "title": "Ebola recipe", - "url": "http://www.drinksmixer.com/drink3318.html" + "url": "https://www.drinksmixer.com/drink3318.html" }, { "directions": "Pour irish cream in shot glass, followed by the blue curacao and finally the strawberry schnapps.", @@ -24446,7 +24446,7 @@ "strawberry schnapps" ], "title": "Echo Hemoraging Tumor recipe", - "url": "http://www.drinksmixer.com/drink3319.html" + "url": "https://www.drinksmixer.com/drink3319.html" }, { "directions": "Blend with crushed ice. Garnish with a slice of melon and a green cocktail cherry.", @@ -24459,7 +24459,7 @@ "orange juice" ], "title": "EDO Cocktail recipe", - "url": "http://www.drinksmixer.com/drink3321.html" + "url": "https://www.drinksmixer.com/drink3321.html" }, { "directions": "Pour blue curacao, gin and 7-up/sprite into a shaker tin filled with ice, swirl until tin is frosty. Pour into a cocktail glass. Repeat this with the cranberry juice and add to glass so that an electric-purple colour is achieved. \r", @@ -24470,7 +24470,7 @@ "cranberry juice" ], "title": "Eenytini recipe", - "url": "http://www.drinksmixer.com/drink3322.html" + "url": "https://www.drinksmixer.com/drink3322.html" }, { "directions": "Step 1.\r", @@ -24485,7 +24485,7 @@ "ginger ale" ], "title": "Eerie Witch's Brew recipe", - "url": "http://www.drinksmixer.com/drink3323.html" + "url": "https://www.drinksmixer.com/drink3323.html" }, { "directions": "Add vodka and peach juice. Fill glass with ice and add vanilla to taste. If the drink is too sweet, dilute it with water.", @@ -24496,7 +24496,7 @@ "ice" ], "title": "Ejhazz recipe", - "url": "http://www.drinksmixer.com/drink3324.html" + "url": "https://www.drinksmixer.com/drink3324.html" }, { "directions": "Always put ice in glass first to cool the mixers when they are poured.", @@ -24506,7 +24506,7 @@ "orange juice" ], "title": "Ekatherina Andreevna recipe", - "url": "http://www.drinksmixer.com/drink3325.html" + "url": "https://www.drinksmixer.com/drink3325.html" }, { "directions": "Fill any type of glass 1/2 - 3/4 full with ice. Add equal amounts of Chocolate Liqueur and Kahlua - enough to cover the ice.", @@ -24516,7 +24516,7 @@ "ice cubes" ], "title": "Erinn's Kahlua And Godiva recipe", - "url": "http://www.drinksmixer.com/drink3326.html" + "url": "https://www.drinksmixer.com/drink3326.html" }, { "directions": "Mix all at the same time into a blender. After blending for approx. 30 seconds, fill beer mug 3/4 way and start a chugin'. \r", @@ -24527,7 +24527,7 @@ "Tabasco\u00ae sauce" ], "title": "El Bastardo recipe", - "url": "http://www.drinksmixer.com/drink3327.html" + "url": "https://www.drinksmixer.com/drink3327.html" }, { "directions": "Shake with cracked ice and strain into a chilled cocktail glass. Garnish with a lime slice.", @@ -24539,7 +24539,7 @@ "grenadine syrup" ], "title": "El Floridita recipe", - "url": "http://www.drinksmixer.com/drink3328.html" + "url": "https://www.drinksmixer.com/drink3328.html" }, { "directions": "Shake all ingredients with ice, strain into a cocktail glass, and serve.", @@ -24550,7 +24550,7 @@ "limes" ], "title": "El Presidente Cocktail recipe", - "url": "http://www.drinksmixer.com/drink3329.html" + "url": "https://www.drinksmixer.com/drink3329.html" }, { "directions": "Shake with ice and strain into a cocktail glass. Add a cherry.", @@ -24560,7 +24560,7 @@ "grenadine syrup" ], "title": "El Presidente Cocktail #2 recipe", - "url": "http://www.drinksmixer.com/drink3330.html" + "url": "https://www.drinksmixer.com/drink3330.html" }, { "directions": "Pour ingredients in glass and shake vigorously.", @@ -24571,7 +24571,7 @@ "pineapple juice" ], "title": "Electric Banana recipe", - "url": "http://www.drinksmixer.com/drink3331.html" + "url": "https://www.drinksmixer.com/drink3331.html" }, { "directions": "Combine. Add ice. Stir.", @@ -24580,7 +24580,7 @@ "lemonade" ], "title": "Electric Fuzzy recipe", - "url": "http://www.drinksmixer.com/drink3332.html" + "url": "https://www.drinksmixer.com/drink3332.html" }, { "directions": "Blend with ice until smooth. Serve in a hurricane glass and garnish with a lemon wheel.", @@ -24591,7 +24591,7 @@ "strawberries" ], "title": "Electric Lemonade recipe", - "url": "http://www.drinksmixer.com/drink3334.html" + "url": "https://www.drinksmixer.com/drink3334.html" }, { "directions": "Mix in this order. The blue curacao self-mixing with the sprite helps for show. Also not so keen in anything other than a clear container of course.", @@ -24602,7 +24602,7 @@ "melon liqueur" ], "title": "Electric Marcucci recipe", - "url": "http://www.drinksmixer.com/drink3335.html" + "url": "https://www.drinksmixer.com/drink3335.html" }, { "directions": "Pour both the melon liqueur and blue curacao in the collins glass and fill with 7-up. Place the slice of lime on the top of the glass.", @@ -24613,7 +24613,7 @@ "lime" ], "title": "Electric Popsicle recipe", - "url": "http://www.drinksmixer.com/drink3336.html" + "url": "https://www.drinksmixer.com/drink3336.html" }, { "directions": "Pour the shots into a highball glass, fill with orange juice (to taste), and serve.", @@ -24623,7 +24623,7 @@ "amaretto almond liqueur" ], "title": "Electric Screwdriver recipe", - "url": "http://www.drinksmixer.com/drink3337.html" + "url": "https://www.drinksmixer.com/drink3337.html" }, { "directions": "Put three ice cubes in a glass then add Malibu and Blue Curacao. Fill glass half with Sprite half with Pineapple Juice. Stir and Serve.", @@ -24634,7 +24634,7 @@ "pineapple juice" ], "title": "Electric Smurf recipe", - "url": "http://www.drinksmixer.com/drink3338.html" + "url": "https://www.drinksmixer.com/drink3338.html" }, { "directions": "Combine all ingredients into a shot glass and slam it.", @@ -24645,7 +24645,7 @@ "Rumple Minze\u00ae peppermint liqueur" ], "title": "Electric Storm recipe", - "url": "http://www.drinksmixer.com/drink3339.html" + "url": "https://www.drinksmixer.com/drink3339.html" }, { "directions": "Combine in a pint glass, shake and serve with a lemon wedge.", @@ -24660,7 +24660,7 @@ "ice" ], "title": "Electric Tea recipe", - "url": "http://www.drinksmixer.com/drink3340.html" + "url": "https://www.drinksmixer.com/drink3340.html" }, { "directions": "Add equal parts vodka, rum, and melon liqueur in a tall cocktail glass with ice. Add a couple of splashes of triple sec (orange liquor). Fill to the top with sweet and sour mix. Add a splash of 7-up and grenadine.", @@ -24674,7 +24674,7 @@ "7-Up\u00ae soda" ], "title": "Electric Watermelon recipe", - "url": "http://www.drinksmixer.com/drink3341.html" + "url": "https://www.drinksmixer.com/drink3341.html" }, { "directions": "In a shaker half-filled with ice cubes, combine all of the ingredients. Shake well. Strain into a cocktail glass.", @@ -24684,7 +24684,7 @@ "lemon juice" ], "title": "Elephant Lips recipe", - "url": "http://www.drinksmixer.com/drink3342.html" + "url": "https://www.drinksmixer.com/drink3342.html" }, { "directions": "Blend on high until smooth. Pour into a tall glass.", @@ -24694,7 +24694,7 @@ "amarula cream liqueur" ], "title": "Elephant Shake recipe", - "url": "http://www.drinksmixer.com/drink3343.html" + "url": "https://www.drinksmixer.com/drink3343.html" }, { "directions": "Mix all ingredients in a tall glass. Add more orange soda if it is unpalitable.\r", @@ -24705,7 +24705,7 @@ "ice" ], "title": "Eliminator recipe", - "url": "http://www.drinksmixer.com/drink3344.html" + "url": "https://www.drinksmixer.com/drink3344.html" }, { "directions": "Shake all ingredients (except pineapple) with ice and strain into a cocktail glass. Add the pineapple slice and serve.", @@ -24718,7 +24718,7 @@ "pineapple" ], "title": "Elk's Own Cocktail recipe", - "url": "http://www.drinksmixer.com/drink3345.html" + "url": "https://www.drinksmixer.com/drink3345.html" }, { "directions": "The mixture is one large can (12 oz) of frozen limeade, that same can filled with any cheap vodka, and three cans of light beer.", @@ -24728,7 +24728,7 @@ "light beer" ], "title": "Elmer Fuddpucker recipe", - "url": "http://www.drinksmixer.com/drink3346.html" + "url": "https://www.drinksmixer.com/drink3346.html" }, { "directions": "Mix beer, soda, and frozen lemonade into a large pitcher. Then fill empty lemonade container with vodka and add to mixture. Stir.", @@ -24739,7 +24739,7 @@ "vodka" ], "title": "Elmer Fuddpucker #2 recipe", - "url": "http://www.drinksmixer.com/drink3347.html" + "url": "https://www.drinksmixer.com/drink3347.html" }, { "directions": "Add rum and grenadine to a glass. Fill with coke. Ice optional.", @@ -24749,7 +24749,7 @@ "Coca-Cola\u00ae" ], "title": "Embolism recipe", - "url": "http://www.drinksmixer.com/drink3348.html" + "url": "https://www.drinksmixer.com/drink3348.html" }, { "directions": "Pour into an ice filled hurricane glass.", @@ -24761,7 +24761,7 @@ "Sprite\u00ae soda" ], "title": "Emerald City recipe", - "url": "http://www.drinksmixer.com/drink3349.html" + "url": "https://www.drinksmixer.com/drink3349.html" }, { "directions": "Add each ingredient to the shot glass. Color should be a bright emerald green.", @@ -24771,7 +24771,7 @@ "Blue Curacao liqueur" ], "title": "Emerald Eye recipe", - "url": "http://www.drinksmixer.com/drink3350.html" + "url": "https://www.drinksmixer.com/drink3350.html" }, { "directions": "In a mixing glass half-filled with crushed ice, combine all of the ingredients. Stir well. Strain into a cocktail glass.", @@ -24782,7 +24782,7 @@ "crushed ice" ], "title": "Emerald Forest recipe", - "url": "http://www.drinksmixer.com/drink3351.html" + "url": "https://www.drinksmixer.com/drink3351.html" }, { "directions": "Stir with ice, and serve.", @@ -24792,7 +24792,7 @@ "Mountain Dew\u00ae citrus soda" ], "title": "Emerald Isle #2 recipe", - "url": "http://www.drinksmixer.com/drink3352.html" + "url": "https://www.drinksmixer.com/drink3352.html" }, { "directions": "Stir all ingredients with ice, strain into a cocktail glass, and serve.", @@ -24802,7 +24802,7 @@ "bitters" ], "title": "Emerald Isle recipe", - "url": "http://www.drinksmixer.com/drink3353.html" + "url": "https://www.drinksmixer.com/drink3353.html" }, { "directions": "Stir with cracked ice in a shaker and pour into a chilled cocktail glass. Twist a lemon zest over the drink and float the zest on top.", @@ -24813,7 +24813,7 @@ "lemon" ], "title": "Emerald Vodka Martini recipe", - "url": "http://www.drinksmixer.com/drink3354.html" + "url": "https://www.drinksmixer.com/drink3354.html" }, { "directions": "Shake all ingredients with ice, strain into a cocktail glass, and serve.", @@ -24824,7 +24824,7 @@ "maraschino liqueur" ], "title": "Emerson recipe", - "url": "http://www.drinksmixer.com/drink3355.html" + "url": "https://www.drinksmixer.com/drink3355.html" }, { "directions": "Whack the liquid ingredients in a glass and give it a stir, then add the ice.", @@ -24836,7 +24836,7 @@ "ice" ], "title": "The Emily Weir recipe", - "url": "http://www.drinksmixer.com/drink3356.html" + "url": "https://www.drinksmixer.com/drink3356.html" }, { "directions": "Fill long drinks glass with ice-cubes, add vodka and sour-mix. Top with coca-cola, stir.", @@ -24846,7 +24846,7 @@ "Coca-Cola\u00ae" ], "title": "En Sann En recipe", - "url": "http://www.drinksmixer.com/drink3357.html" + "url": "https://www.drinksmixer.com/drink3357.html" }, { "directions": "Combine alcoholic ingredients in glass over ice. Fill to top with milk, add splash of grenadine. Stir gently.", @@ -24858,7 +24858,7 @@ "milk" ], "title": "Enchantress recipe", - "url": "http://www.drinksmixer.com/drink3358.html" + "url": "https://www.drinksmixer.com/drink3358.html" }, { "directions": "Put all the ingredients in a shaker (except the nuts), add ice, and shake well. Pour in the glass, and add the nuts on top.", @@ -24869,7 +24869,7 @@ "nuts" ], "title": "End of the Road recipe", - "url": "http://www.drinksmixer.com/drink3359.html" + "url": "https://www.drinksmixer.com/drink3359.html" }, { "directions": "Serve warm. Straight into the shot glass.", @@ -24879,7 +24879,7 @@ "vodka" ], "title": "The End Of The World recipe", - "url": "http://www.drinksmixer.com/drink3360.html" + "url": "https://www.drinksmixer.com/drink3360.html" }, { "directions": "Add ice. Tastes remarkably like a screwdriver.", @@ -24889,7 +24889,7 @@ "ice" ], "title": "End Wrench recipe", - "url": "http://www.drinksmixer.com/drink3361.html" + "url": "https://www.drinksmixer.com/drink3361.html" }, { "directions": "Pour brandy, gin, and sweet vermouth into a highball glass over ice cubes. Fill with carbonated water or ginger ale. Add the twist of lemon peel, stir, and serve.", @@ -24901,7 +24901,7 @@ "lemon" ], "title": "English Highball recipe", - "url": "http://www.drinksmixer.com/drink3362.html" + "url": "https://www.drinksmixer.com/drink3362.html" }, { "directions": "Rub rim of cocktail glass with lemon juice and dip rim of glass in powdered sugar. Shake all ingredients (except cherry) with ice and strain into sugar-rimmed glass. Top with the cherry and serve.", @@ -24914,7 +24914,7 @@ "cherry" ], "title": "English Rose Cocktail recipe", - "url": "http://www.drinksmixer.com/drink3363.html" + "url": "https://www.drinksmixer.com/drink3363.html" }, { "directions": "Pour all of the ingredients into a highball glass almost filled with ice cubes. Stir well.", @@ -24924,7 +24924,7 @@ "tonic water" ], "title": "Entwistle's Error recipe", - "url": "http://www.drinksmixer.com/drink3364.html" + "url": "https://www.drinksmixer.com/drink3364.html" }, { "directions": "Chill all ingredients well. Mix equal parts and serve in a cordial glass. Or, if you have a test tube or beaker handy, go for it!", @@ -24935,7 +24935,7 @@ "coconut cream" ], "title": "Epidural recipe", - "url": "http://www.drinksmixer.com/drink3365.html" + "url": "https://www.drinksmixer.com/drink3365.html" }, { "directions": "Layer ingredients in the exact order. Grenadine should sit on top for a little bit before sliding down the inside of the shot glass.", @@ -24945,7 +24945,7 @@ "grenadine syrup" ], "title": "The Equator recipe", - "url": "http://www.drinksmixer.com/drink3366.html" + "url": "https://www.drinksmixer.com/drink3366.html" }, { "directions": "Put the ingredients in the glass and mix it up!", @@ -24955,7 +24955,7 @@ "ice cubes" ], "title": "Equity's Darling recipe", - "url": "http://www.drinksmixer.com/drink3367.html" + "url": "https://www.drinksmixer.com/drink3367.html" }, { "directions": "Shake and serve over ice cubes in a champagne saucer.", @@ -24964,7 +24964,7 @@ "white chocolate liqueur" ], "title": "Erin's Sweater recipe", - "url": "http://www.drinksmixer.com/drink3368.html" + "url": "https://www.drinksmixer.com/drink3368.html" }, { "directions": "Pour the vodka over the beer.", @@ -24973,7 +24973,7 @@ "Baltika\u00ae beer" ], "title": "Ersh (Russian) recipe", - "url": "http://www.drinksmixer.com/drink3369.html" + "url": "https://www.drinksmixer.com/drink3369.html" }, { "directions": "Mix all ingredients in a shaker with ice, and shake.", @@ -24984,7 +24984,7 @@ "pineapple juice" ], "title": "Ershammar Dream recipe", - "url": "http://www.drinksmixer.com/drink3370.html" + "url": "https://www.drinksmixer.com/drink3370.html" }, { "directions": "Pour midori and chambord over ice in a glass and stir. Partially fill the glass with Sprite. Stir in vodka and add the maraschino cherry.", @@ -24996,7 +24996,7 @@ "maraschino cherry" ], "title": "Esirnus recipe", - "url": "http://www.drinksmixer.com/drink3371.html" + "url": "https://www.drinksmixer.com/drink3371.html" }, { "directions": "Add rum, fruits, ice, juice, and yoghurt to a blender. Ensure the orange is peeled and seedless. Cut seeds out of apple. Blend for 1 minute and you're ready for the eskimo.", @@ -25011,7 +25011,7 @@ "Malibu\u00ae coconut rum" ], "title": "Eskimo Joe's Drink recipe", - "url": "http://www.drinksmixer.com/drink3372.html" + "url": "https://www.drinksmixer.com/drink3372.html" }, { "directions": "Add the bailey's irish cream, and then layer the milk, creme de menthe and cinnamon schnapps.", @@ -25022,7 +25022,7 @@ "milk" ], "title": "Eskimo Joe recipe", - "url": "http://www.drinksmixer.com/drink3373.html" + "url": "https://www.drinksmixer.com/drink3373.html" }, { "directions": "Pour ingredients into shaker filled with ice, shake vigorously, and strain into chilled martini glass. It should be somewhat frothy.", @@ -25033,7 +25033,7 @@ "white creme de cacao" ], "title": "Espresso Martini recipe", - "url": "http://www.drinksmixer.com/drink3374.html" + "url": "https://www.drinksmixer.com/drink3374.html" }, { "directions": "Add vodka to a shot glass. Drop in the tabasco sauce, and chase with the kiwi.", @@ -25043,7 +25043,7 @@ "kiwi" ], "title": "Estonian Forest-Fire recipe", - "url": "http://www.drinksmixer.com/drink3375.html" + "url": "https://www.drinksmixer.com/drink3375.html" }, { "directions": "Shake all ingredients with ice, strain into a cocktail glass, and serve.", @@ -25053,7 +25053,7 @@ "triple sec" ], "title": "Ethel Duffy Cocktail recipe", - "url": "http://www.drinksmixer.com/drink3376.html" + "url": "https://www.drinksmixer.com/drink3376.html" }, { "directions": "Grenadine will sink to the bottom of the glass. The dash should be just enough to give a thin layer. Mix thoroughly. The correct mix will give a drink which is between pink & orange in color, but not one nor the other.", @@ -25063,7 +25063,7 @@ "grenadine syrup" ], "title": "Ethiopian Camel Basher recipe", - "url": "http://www.drinksmixer.com/drink3377.html" + "url": "https://www.drinksmixer.com/drink3377.html" }, { "directions": "Mix all ingredients together except for the surge and stir. Fill the rest up with surge and enjoy.", @@ -25076,7 +25076,7 @@ "ice cubes" ], "title": "Ethnic Sugar recipe", - "url": "http://www.drinksmixer.com/drink3378.html" + "url": "https://www.drinksmixer.com/drink3378.html" }, { "directions": "Shake and serve with ice!", @@ -25087,7 +25087,7 @@ "milk" ], "title": "Etyk recipe", - "url": "http://www.drinksmixer.com/drink3379.html" + "url": "https://www.drinksmixer.com/drink3379.html" }, { "directions": "In an old-fashioned glass almost filled with ice cubes, combine the gin, sherry, dubonnet, vermouth, and grand marnier. Stir well. Garnish with a maraschino cherry.", @@ -25100,7 +25100,7 @@ "maraschino cherry" ], "title": "European recipe", - "url": "http://www.drinksmixer.com/drink3380.html" + "url": "https://www.drinksmixer.com/drink3380.html" }, { "directions": "Stir all ingredients (except green olive) with ice and strain into a cocktail glass. Add the green olive and serve.", @@ -25111,7 +25111,7 @@ "olive" ], "title": "Everybody's Irish Cocktail recipe", - "url": "http://www.drinksmixer.com/drink3381.html" + "url": "https://www.drinksmixer.com/drink3381.html" }, { "directions": "Pour ingredients into glass, and drop in a blue whale! The blue whale isn't really necessary, but it makes the drink more \"fun\".", @@ -25121,7 +25121,7 @@ "light rum" ], "title": "The Evil Blue Thing recipe", - "url": "http://www.drinksmixer.com/drink3382.html" + "url": "https://www.drinksmixer.com/drink3382.html" }, { "directions": "Pour (drink) the first 2 oz. of corona, and add 2 oz. of Absolut Citron. Cap top of bottle and turn upside down for about 5 seconds. Serve with a lime wedge.", @@ -25131,7 +25131,7 @@ "lime" ], "title": "Evil Corona recipe", - "url": "http://www.drinksmixer.com/drink3383.html" + "url": "https://www.drinksmixer.com/drink3383.html" }, { "directions": "Mix well and serve.", @@ -25140,7 +25140,7 @@ "Turkey Hill\u00ae iced tea" ], "title": "Evil Slider recipe", - "url": "http://www.drinksmixer.com/drink3384.html" + "url": "https://www.drinksmixer.com/drink3384.html" }, { "directions": "Mix well, and pour over ice.", @@ -25149,7 +25149,7 @@ "iced tea" ], "title": "Evil Tea recipe", - "url": "http://www.drinksmixer.com/drink3385.html" + "url": "https://www.drinksmixer.com/drink3385.html" }, { "directions": "Pour all ingredients into shaker over ice. Shake and strain.", @@ -25160,7 +25160,7 @@ "7-Up\u00ae soda" ], "title": "Evil Tongue recipe", - "url": "http://www.drinksmixer.com/drink3386.html" + "url": "https://www.drinksmixer.com/drink3386.html" }, { "directions": "Pour the tequila and the orange juice into a collins glass almost filled with ice cubes. Stir well. Drop the creme de cassis into the center of the drink.", @@ -25170,7 +25170,7 @@ "creme de cassis" ], "title": "Executive Sunrise recipe", - "url": "http://www.drinksmixer.com/drink3387.html" + "url": "https://www.drinksmixer.com/drink3387.html" }, { "directions": "Fill a highball glass with cracked ice. Add the first three ingredients and stir. Top up with sprite and garnish with mint leaves, a strawberry, a twist of orange and a straw. \r", @@ -25181,7 +25181,7 @@ "Sprite\u00ae soda" ], "title": "Exotic Finn recipe", - "url": "http://www.drinksmixer.com/drink3388.html" + "url": "https://www.drinksmixer.com/drink3388.html" }, { "directions": "Mix vodka and juices, pour over ice in a glass, and layer a little grenadine on top. Garnish with a slice of orange.", @@ -25193,7 +25193,7 @@ "orange" ], "title": "Exotic Summernight recipe", - "url": "http://www.drinksmixer.com/drink3389.html" + "url": "https://www.drinksmixer.com/drink3389.html" }, { "directions": "Pour it all into an ice-cream pail and add more vodka if you wish.", @@ -25204,7 +25204,7 @@ "coconut liqueur" ], "title": "Exploding Cherry recipe", - "url": "http://www.drinksmixer.com/drink3390.html" + "url": "https://www.drinksmixer.com/drink3390.html" }, { "directions": "Combine all alcohol in 12 oz. glass with ice. Add Sour Mix. Add a splash of Cranberry Juice to form a layer of red at the top of the glass. Top with foam from draft beer tap.", @@ -25220,7 +25220,7 @@ "draft beer" ], "title": "The Extinguisher recipe", - "url": "http://www.drinksmixer.com/drink3391.html" + "url": "https://www.drinksmixer.com/drink3391.html" }, { "directions": "Mix Peach Brandy, Peach Schnapps, and Triple Sec in a highball glass. Fill with Orange Juice and Ice to taste.", @@ -25230,7 +25230,7 @@ "triple sec" ], "title": "Extra Fuzzy Navel recipe", - "url": "http://www.drinksmixer.com/drink3392.html" + "url": "https://www.drinksmixer.com/drink3392.html" }, { "directions": "Pour the jigger of Midori first. Layer the Irish Cream on top, then layer the Stoli Vodka. This will give you a very attractive three layer drink. \r", @@ -25241,7 +25241,7 @@ "Bacardi\u00ae 151 rum" ], "title": "Extraterrestrial recipe", - "url": "http://www.drinksmixer.com/drink3393.html" + "url": "https://www.drinksmixer.com/drink3393.html" }, { "directions": "Mix all ingredients together in a cocktail glass, and serve.", @@ -25253,7 +25253,7 @@ "grenadine syrup" ], "title": "Extremely Drunk recipe", - "url": "http://www.drinksmixer.com/drink3394.html" + "url": "https://www.drinksmixer.com/drink3394.html" }, { "directions": "In a shaker half-filled with ice cubes, combine all of the ingredients. Shake well. Strain into a sour glass.", @@ -25266,7 +25266,7 @@ "superfine sugar" ], "title": "Eye-Opener recipe", - "url": "http://www.drinksmixer.com/drink3395.html" + "url": "https://www.drinksmixer.com/drink3395.html" }, { "directions": "Place ice in shaker and add all ingredients. Shake well and strain into cocktail glass filled with ice. Garnish with orange slice and cherry.", @@ -25280,7 +25280,7 @@ "grenadine syrup" ], "title": "Eyes Wide Shut recipe", - "url": "http://www.drinksmixer.com/drink3396.html" + "url": "https://www.drinksmixer.com/drink3396.html" }, { "directions": "Add ingredients to a chilled martini glass. Shake well. Garnish with a black raspberry.", @@ -25290,7 +25290,7 @@ "sweet and sour mix" ], "title": "Tom Sweeney recipe", - "url": "http://www.drinksmixer.com/drink3397.html" + "url": "https://www.drinksmixer.com/drink3397.html" }, { "directions": "Muddle a teaspoon of sugar, cherry and orange in a chilled martini glass. Add ice, bacardi barrel aged rum, and rouge aperitif wine. Shake well. Garnish with a blood orange wheel.", @@ -25303,7 +25303,7 @@ "red wine" ], "title": "Grand Fashion recipe", - "url": "http://www.drinksmixer.com/drink3398.html" + "url": "https://www.drinksmixer.com/drink3398.html" }, { "directions": "Combine all of these ingredients into a cocktail shaker with crushed ice and shake well. Pour into an iced tulip glass and garnish with a slice of orange speared through a cocktail sword with a maraschino cherry. Add a coloured straw.", @@ -25315,7 +25315,7 @@ "grenadine syrup" ], "title": "Shirley Temple #2 recipe", - "url": "http://www.drinksmixer.com/drink3399.html" + "url": "https://www.drinksmixer.com/drink3399.html" }, { "directions": "Blend with 1 cup of ice until smooth and pour into a highball glass.", @@ -25326,7 +25326,7 @@ "cream" ], "title": "Abbot's Dream recipe", - "url": "http://www.drinksmixer.com/drink3400.html" + "url": "https://www.drinksmixer.com/drink3400.html" }, { "directions": "Stir all but the drambuie into a coffee mug. Warm the drambuie, ignite it and pour the burning liqueur into the mug. Stir rapidly and drink.", @@ -25337,7 +25337,7 @@ "lime juice" ], "title": "Aberdeen Angus recipe", - "url": "http://www.drinksmixer.com/drink3401.html" + "url": "https://www.drinksmixer.com/drink3401.html" }, { "directions": "Pour the creme de cacao into a shot glass. Layer the amaretto and then the bailey's to create a 3 layer drink. Insert a toothpick to the bottom of the shot glass and dribble some grenadine so it floats in the bottom of the glass.", @@ -25348,7 +25348,7 @@ "grenadine syrup" ], "title": "Abortion recipe", - "url": "http://www.drinksmixer.com/drink3402.html" + "url": "https://www.drinksmixer.com/drink3402.html" }, { "directions": "Mix in a highball glass.", @@ -25357,7 +25357,7 @@ "V8\u00ae vegetable juice" ], "title": "Absolut Splash recipe", - "url": "http://www.drinksmixer.com/drink3403.html" + "url": "https://www.drinksmixer.com/drink3403.html" }, { "directions": "Build in a salt rimmed highball glass and fill with grapefruit juice.", @@ -25366,7 +25366,7 @@ "grapefruit juice" ], "title": "Absolut Salty Dog recipe", - "url": "http://www.drinksmixer.com/drink3404.html" + "url": "https://www.drinksmixer.com/drink3404.html" }, { "directions": "Shake with ice and strain into a rocks glass.", @@ -25376,7 +25376,7 @@ "limes" ], "title": "Absolut Redhead recipe", - "url": "http://www.drinksmixer.com/drink3405.html" + "url": "https://www.drinksmixer.com/drink3405.html" }, { "directions": "Mix over cracked ice in an lowball glass. Garnish with a slice of lemon. Note: you can substitute Clamato juice (6 oz.) for the tomato juice and the clam juice.", @@ -25390,7 +25390,7 @@ "Tabasco\u00ae sauce" ], "title": "Acapulco Clam Digger recipe", - "url": "http://www.drinksmixer.com/drink3406.html" + "url": "https://www.drinksmixer.com/drink3406.html" }, { "directions": "Take a large chilled cocktail glass and fill it 1/4 full with ice, and top to 3/4 full with sprite. Add the vodka, rum and tequila. Fill the glass with the flavored sambucas in layers. Garnish with an umbrella and serve with a bendable straw.", @@ -25408,7 +25408,7 @@ "sambuca" ], "title": "Ace Ventura recipe", - "url": "http://www.drinksmixer.com/drink3407.html" + "url": "https://www.drinksmixer.com/drink3407.html" }, { "directions": "Shake with ice and strain into a cocktail glass.", @@ -25420,7 +25420,7 @@ "tequila" ], "title": "Acid Trip recipe", - "url": "http://www.drinksmixer.com/drink3408.html" + "url": "https://www.drinksmixer.com/drink3408.html" }, { "directions": "Shake with ice and strain into a cocktail glass.", @@ -25431,7 +25431,7 @@ "lemon juice" ], "title": "Adam and Eve recipe", - "url": "http://www.drinksmixer.com/drink3409.html" + "url": "https://www.drinksmixer.com/drink3409.html" }, { "directions": "Shake with ice and strain into an old-fashioned glass. Garnish with a lemon twist.", @@ -25442,7 +25442,7 @@ "lemon" ], "title": "Admiral recipe", - "url": "http://www.drinksmixer.com/drink3410.html" + "url": "https://www.drinksmixer.com/drink3410.html" }, { "directions": "Shake with ice and strain into a cocktail glass.", @@ -25452,7 +25452,7 @@ "limes" ], "title": "Admiral Cocktail recipe", - "url": "http://www.drinksmixer.com/drink3411.html" + "url": "https://www.drinksmixer.com/drink3411.html" }, { "directions": "Pour ingredients over ice, shake and strain into a cocktail glass. Top with whipped cream and a cherry.", @@ -25466,7 +25466,7 @@ "cherry" ], "title": "Afghan Monkey recipe", - "url": "http://www.drinksmixer.com/drink3412.html" + "url": "https://www.drinksmixer.com/drink3412.html" }, { "directions": "Mix in a tall glass. Adjust orange juice to taste.", @@ -25476,7 +25476,7 @@ "orange juice" ], "title": "Agent Orange #2 recipe", - "url": "http://www.drinksmixer.com/drink3413.html" + "url": "https://www.drinksmixer.com/drink3413.html" }, { "directions": "Build in a collins glass.", @@ -25487,7 +25487,7 @@ "Blue Curacao liqueur" ], "title": "Air Gunner recipe", - "url": "http://www.drinksmixer.com/drink3414.html" + "url": "https://www.drinksmixer.com/drink3414.html" }, { "directions": "Shake with ice and strain into a highball glass over two ice cubes. Fill with club soda and garnish with two sprigs of fresh mint.", @@ -25499,7 +25499,7 @@ "mint" ], "title": "Alabama Fizz recipe", - "url": "http://www.drinksmixer.com/drink3415.html" + "url": "https://www.drinksmixer.com/drink3415.html" }, { "directions": "Blend ingredients until of milkshake consistancy. Serve in a highball glass and garnish with whipped cream.", @@ -25512,7 +25512,7 @@ "whipped cream" ], "title": "Alaskan Polar Bear recipe", - "url": "http://www.drinksmixer.com/drink3416.html" + "url": "https://www.drinksmixer.com/drink3416.html" }, { "directions": "Shake with ice and strain into a highball glass over two ice cubes. Fill with club soda.", @@ -25524,7 +25524,7 @@ "club soda" ], "title": "Albemarle Fizz recipe", - "url": "http://www.drinksmixer.com/drink3417.html" + "url": "https://www.drinksmixer.com/drink3417.html" }, { "directions": "Combine the ingredients, starting with the orange juice, in a highball glass. Serve.", @@ -25536,7 +25536,7 @@ "grenadine syrup" ], "title": "Alcoholic Sherbert Delight recipe", - "url": "http://www.drinksmixer.com/drink3418.html" + "url": "https://www.drinksmixer.com/drink3418.html" }, { "directions": "Shake with ice and strain into a cocktail glass. Garnish with a twist of grapefruit peel.", @@ -25547,7 +25547,7 @@ "grapefruit juice" ], "title": "Alcudla recipe", - "url": "http://www.drinksmixer.com/drink3419.html" + "url": "https://www.drinksmixer.com/drink3419.html" }, { "directions": "Shake with ice and strain into a lowball glass.", @@ -25558,7 +25558,7 @@ "vodka" ], "title": "Alexander The Great recipe", - "url": "http://www.drinksmixer.com/drink3420.html" + "url": "https://www.drinksmixer.com/drink3420.html" }, { "directions": "Add vodka, sauces, pickle juice and brine to a mug full of ice. Fill with tomato juice. Add salt, pepper and celery salt to taste. Pour mixture back and fourth between two glasses to mix it well. Garnish with olives, a pickle and a slice of lime.", @@ -25574,7 +25574,7 @@ "celery salt" ], "title": "Alexi's Spicy Bloody Mary recipe", - "url": "http://www.drinksmixer.com/drink3421.html" + "url": "https://www.drinksmixer.com/drink3421.html" }, { "directions": "In a wine glass, add the bitters to the sugar. Then add the dubonnet and a tsp. of ice. Fill the glass with champagne, stir gently and garnish with a twist of lemon peel.", @@ -25585,7 +25585,7 @@ "Champagne" ], "title": "Alfonso recipe", - "url": "http://www.drinksmixer.com/drink3422.html" + "url": "https://www.drinksmixer.com/drink3422.html" }, { "directions": "Stir with ice and strain into a cocktail glass.", @@ -25597,7 +25597,7 @@ "Angostura\u00ae bitters" ], "title": "Alfonso Special recipe", - "url": "http://www.drinksmixer.com/drink3423.html" + "url": "https://www.drinksmixer.com/drink3423.html" }, { "directions": "Add vodka, juices and sauce to a shaker with ice, adding salt and pepper to taste. Shake vigorously. Strain over ice cubes into a highball glass and add a lime wedge.", @@ -25612,7 +25612,7 @@ "lime" ], "title": "Algonquin Bloody Mary recipe", - "url": "http://www.drinksmixer.com/drink3424.html" + "url": "https://www.drinksmixer.com/drink3424.html" }, { "directions": "Fill a mug with hot chocolate almost to the brim. Twist an orange peel over the mug and add it to the chocolate. Using a ladle, warm the cognac over hot water, ignite and while still flaming, pour into the mug. Garnish with whipped cream.", @@ -25623,7 +25623,7 @@ "whipped cream" ], "title": "Alhambra Royale recipe", - "url": "http://www.drinksmixer.com/drink3425.html" + "url": "https://www.drinksmixer.com/drink3425.html" }, { "directions": "Pour the last 3 ingredients in a tall glass and stir well. Add crushed ice and the white wine. Add some more club soda and stir again. Garnish with a strawberry.", @@ -25634,7 +25634,7 @@ "sugar" ], "title": "Alhoa Bubbly recipe", - "url": "http://www.drinksmixer.com/drink3426.html" + "url": "https://www.drinksmixer.com/drink3426.html" }, { "directions": "Mix in a martini glass.", @@ -25643,7 +25643,7 @@ "vodka" ], "title": "Alize Martini recipe", - "url": "http://www.drinksmixer.com/drink3427.html" + "url": "https://www.drinksmixer.com/drink3427.html" }, { "directions": "Shake with cracked ice. Strain into a chilled cocktail glass and garnish with a lemon twist.", @@ -25654,7 +25654,7 @@ "lemon" ], "title": "Allen Cocktail recipe", - "url": "http://www.drinksmixer.com/drink3428.html" + "url": "https://www.drinksmixer.com/drink3428.html" }, { "directions": "Shake with ice and strain into a cocktail glass filled with crushed ice.", @@ -25665,7 +25665,7 @@ "lemon juice" ], "title": "All White Frappe recipe", - "url": "http://www.drinksmixer.com/drink3429.html" + "url": "https://www.drinksmixer.com/drink3429.html" }, { "directions": "Warm the gin up in a mixing glass and add the brandy, the sugar syrup and 6 almond slivers. Chill. When needed, pour the chilled mixture over ice into an old-fashioned glass. Stir in the remaining ingredients.", @@ -25677,7 +25677,7 @@ "sugar syrup" ], "title": "Almond Cocktail recipe", - "url": "http://www.drinksmixer.com/drink3430.html" + "url": "https://www.drinksmixer.com/drink3430.html" }, { "directions": "Shake well with ice and strain into a cocktail glass. Garnish with grated nutmeg.", @@ -25687,7 +25687,7 @@ "cocoa powder" ], "title": "Almond Grove recipe", - "url": "http://www.drinksmixer.com/drink3431.html" + "url": "https://www.drinksmixer.com/drink3431.html" }, { "directions": "Mix in pousse cafe glass.", @@ -25697,7 +25697,7 @@ "hot chocolate" ], "title": "Almond Hot Chocolate recipe", - "url": "http://www.drinksmixer.com/drink3432.html" + "url": "https://www.drinksmixer.com/drink3432.html" }, { "directions": "Shake with ice cubes and strain into a large cocktail glass. Garnish with a lime wheel.", @@ -25710,7 +25710,7 @@ "soda water" ], "title": "Aloha recipe", - "url": "http://www.drinksmixer.com/drink3433.html" + "url": "https://www.drinksmixer.com/drink3433.html" }, { "directions": "Shake with cracked ice. Strain into a chilled cocktail glass rimmed with sweetened cocoa powder and garnish with a hershey's kiss.", @@ -25722,7 +25722,7 @@ "cocoa powder" ], "title": "Alternatini recipe", - "url": "http://www.drinksmixer.com/drink3434.html" + "url": "https://www.drinksmixer.com/drink3434.html" }, { "directions": "Combine over ice in a collins glass.", @@ -25732,7 +25732,7 @@ "Coca-Cola\u00ae" ], "title": "Alzheimers recipe", - "url": "http://www.drinksmixer.com/drink3435.html" + "url": "https://www.drinksmixer.com/drink3435.html" }, { "directions": "Warm the southern comfort and add the almonds, peach and sugar. Stir. Allow to cool and add the vermouth and amaretto. Stir again and strain over ice into an old-fashioned glass.", @@ -25745,7 +25745,7 @@ "sugar" ], "title": "Amaretto Heartwarmer recipe", - "url": "http://www.drinksmixer.com/drink3436.html" + "url": "https://www.drinksmixer.com/drink3436.html" }, { "directions": "Shake amaretto and jack daniel's with ice and strain into an iced highball glass. Add equal parts pineapple and orange juice, then splash with cherry syrup for colour. Garnish with an orange slice and a cherry. Enjoy!", @@ -25757,7 +25757,7 @@ "orange juice" ], "title": "Amaretto Jack recipe", - "url": "http://www.drinksmixer.com/drink3437.html" + "url": "https://www.drinksmixer.com/drink3437.html" }, { "directions": "Mix in lowball glass.", @@ -25766,7 +25766,7 @@ "cream" ], "title": "Amaretto Sombrero recipe", - "url": "http://www.drinksmixer.com/drink3438.html" + "url": "https://www.drinksmixer.com/drink3438.html" }, { "directions": "Stir and serve in a collins glass over ice. Garnish with the slice of orange.", @@ -25777,7 +25777,7 @@ "orange" ], "title": "Ambassador recipe", - "url": "http://www.drinksmixer.com/drink3439.html" + "url": "https://www.drinksmixer.com/drink3439.html" }, { "directions": "Pour amaretto and sour mix over ice in a collins glass. Top with club soda and garnish with a cherry.", @@ -25788,7 +25788,7 @@ "cherry" ], "title": "Amber Amour recipe", - "url": "http://www.drinksmixer.com/drink3440.html" + "url": "https://www.drinksmixer.com/drink3440.html" }, { "directions": "Mix scotch, rum and tequila over ice in a highball glass, then fill with root beer.", @@ -25799,7 +25799,7 @@ "A&W\u00ae root beer" ], "title": "Amber's Revenge recipe", - "url": "http://www.drinksmixer.com/drink3441.html" + "url": "https://www.drinksmixer.com/drink3441.html" }, { "directions": "Pour amer picon and lemon syrup into a beer mug. Fill the mug with beer and stir.", @@ -25809,7 +25809,7 @@ "beer" ], "title": "Amer Biere recipe", - "url": "http://www.drinksmixer.com/drink3442.html" + "url": "https://www.drinksmixer.com/drink3442.html" }, { "directions": "Stir the whiskey, the bitters and the sugar in a collins glass until the sugar is dissolved. Fill up with champagne and garnish with a slice of peach.", @@ -25821,7 +25821,7 @@ "peach" ], "title": "Americana recipe", - "url": "http://www.drinksmixer.com/drink3443.html" + "url": "https://www.drinksmixer.com/drink3443.html" }, { "directions": "Layer in order in a pousse cafe glass.", @@ -25831,7 +25831,7 @@ "maraschino liqueur" ], "title": "American Flag Pousse Cafe recipe", - "url": "http://www.drinksmixer.com/drink3444.html" + "url": "https://www.drinksmixer.com/drink3444.html" }, { "directions": "Shake the rum, the juice and the syrup with cracked ice. Strain into a chilled white wine glass and fill with sparkling wine.", @@ -25842,7 +25842,7 @@ "Champagne" ], "title": "American Flyer recipe", - "url": "http://www.drinksmixer.com/drink3445.html" + "url": "https://www.drinksmixer.com/drink3445.html" }, { "directions": "Pour into a coffee mug and fill with hot water. Stir.", @@ -25853,7 +25853,7 @@ "water" ], "title": "American Grog recipe", - "url": "http://www.drinksmixer.com/drink3446.html" + "url": "https://www.drinksmixer.com/drink3446.html" }, { "directions": "Mix in a blender and pour into a highball glass.", @@ -25864,7 +25864,7 @@ "creme de cacao" ], "title": "American Leroy recipe", - "url": "http://www.drinksmixer.com/drink3447.html" + "url": "https://www.drinksmixer.com/drink3447.html" }, { "directions": "Build campari and sweet vermouth in highball glass and fill with seltzer water. Garnish with a twist of lemon.", @@ -25875,7 +25875,7 @@ "lemon" ], "title": "Americano Highball recipe", - "url": "http://www.drinksmixer.com/drink3448.html" + "url": "https://www.drinksmixer.com/drink3448.html" }, { "directions": "Shake ingredients (except champagne) and strain into a chilled white wine glass. Fill with champagne and garnish with a peach slice.", @@ -25887,7 +25887,7 @@ "Champagne" ], "title": "American Rose recipe", - "url": "http://www.drinksmixer.com/drink3449.html" + "url": "https://www.drinksmixer.com/drink3449.html" }, { "directions": "Chill ingredients beforehand. Carefully layer the ingredients into a shot glass in order: Rum, Kahlua, Amaretto, Bailey's.", @@ -25898,7 +25898,7 @@ "Bailey's\u00ae Irish cream" ], "title": "F-69 recipe", - "url": "http://www.drinksmixer.com/drink3450.html" + "url": "https://www.drinksmixer.com/drink3450.html" }, { "directions": "Cover bottom of shot glass with tabasco sauce and then fill with half firewater and half absolut peppar.", @@ -25908,7 +25908,7 @@ "Tabasco\u00ae sauce" ], "title": "Fahrenheit 5000 recipe", - "url": "http://www.drinksmixer.com/drink3451.html" + "url": "https://www.drinksmixer.com/drink3451.html" }, { "directions": "Shake all ingredients with ice, strain into a cocktail glass, and serve.", @@ -25919,7 +25919,7 @@ "egg" ], "title": "Fairy Belle Cocktail recipe", - "url": "http://www.drinksmixer.com/drink3452.html" + "url": "https://www.drinksmixer.com/drink3452.html" }, { "directions": "Pour the vodka and white chocolate syrup together in a glass. Shake well. Then add the mixture of crushed ice and strawberries and voila'.", @@ -25930,7 +25930,7 @@ "crushed ice" ], "title": "Fairytale recipe", - "url": "http://www.drinksmixer.com/drink3453.html" + "url": "https://www.drinksmixer.com/drink3453.html" }, { "directions": "Pour the bacardi into a shot glass. Add the margarita mix. Top it with the lemon juice and shoot it.", @@ -25940,7 +25940,7 @@ "lemon juice" ], "title": "Falix recipe", - "url": "http://www.drinksmixer.com/drink3454.html" + "url": "https://www.drinksmixer.com/drink3454.html" }, { "directions": "Shake all ingredients (except cherry) with ice and strain into a cocktail glass. Top with the cherry and serve.", @@ -25952,7 +25952,7 @@ "cherry" ], "title": "Fallen Angel recipe", - "url": "http://www.drinksmixer.com/drink3455.html" + "url": "https://www.drinksmixer.com/drink3455.html" }, { "directions": "Pour white sambuca into shot glass 3/4 of the way full. Slowly pour a little jack daniels on top almost dripping it into glass. This will cause the Jack to slowly fall to the bottom of the glass, giving the appearance of a \"Falling Star\".", @@ -25961,7 +25961,7 @@ "Jack Daniel's\u00ae Tennessee whiskey" ], "title": "Falling Star recipe", - "url": "http://www.drinksmixer.com/drink3456.html" + "url": "https://www.drinksmixer.com/drink3456.html" }, { "directions": "In a shaker half-filled with ice cubes, combine the bourbon, triple sec, sugar, and bitters. Shake well. Strain into a cocktail glass and garnish with the lemon twist.", @@ -25973,7 +25973,7 @@ "lemon" ], "title": "Fancy Bourbon recipe", - "url": "http://www.drinksmixer.com/drink3457.html" + "url": "https://www.drinksmixer.com/drink3457.html" }, { "directions": "Shake all ingredients (except lemon peel) with ice and strain into a cocktail glass. Add the twist of lemon peel and serve.", @@ -25985,7 +25985,7 @@ "lemon" ], "title": "Fancy Brandy recipe", - "url": "http://www.drinksmixer.com/drink3458.html" + "url": "https://www.drinksmixer.com/drink3458.html" }, { "directions": "Shake all ingredients (except lemon peel) with ice and strain into a cocktail glass. Add the twist of lemon peel and serve.", @@ -25997,7 +25997,7 @@ "lemon" ], "title": "Fancy Gin recipe", - "url": "http://www.drinksmixer.com/drink3459.html" + "url": "https://www.drinksmixer.com/drink3459.html" }, { "directions": "In a shaker half-filled with ice cubes, combine the scotch, triple sec, sugar, and bitters. Shake well. Strain into a cocktail glass and garnish with the lemon twist.", @@ -26009,7 +26009,7 @@ "lemon" ], "title": "Fancy Scotch recipe", - "url": "http://www.drinksmixer.com/drink3460.html" + "url": "https://www.drinksmixer.com/drink3460.html" }, { "directions": "Shake all ingredients (except lemon peel) with ice and strain into a cocktail glass. Add the twist of lemon peel and serve.", @@ -26021,7 +26021,7 @@ "lemon" ], "title": "Fancy Whiskey recipe", - "url": "http://www.drinksmixer.com/drink3461.html" + "url": "https://www.drinksmixer.com/drink3461.html" }, { "directions": "Stir all ingredients with ice, strain into a cocktail glass, and serve.", @@ -26032,7 +26032,7 @@ "maraschino liqueur" ], "title": "Fantasio Cocktail recipe", - "url": "http://www.drinksmixer.com/drink3462.html" + "url": "https://www.drinksmixer.com/drink3462.html" }, { "directions": "In a mixing glass half-filled with ice cubes, combine the gin, dry vermouth, sweet vermouth, and bitters. Stir well. Strain into a cocktail glass and garnish with the lemon twist.", @@ -26044,7 +26044,7 @@ "lemon" ], "title": "Farmer Giles recipe", - "url": "http://www.drinksmixer.com/drink3463.html" + "url": "https://www.drinksmixer.com/drink3463.html" }, { "directions": "Stir all ingredients with ice, strain into a cocktail glass, and serve.", @@ -26055,7 +26055,7 @@ "bitters" ], "title": "Farmer's Cocktail recipe", - "url": "http://www.drinksmixer.com/drink3464.html" + "url": "https://www.drinksmixer.com/drink3464.html" }, { "directions": "Add almond-flavored tequila and chilled 7-up to a glass. Drop one sweet prune in each glass. Add ice if you wish.", @@ -26064,7 +26064,7 @@ "7-Up\u00ae soda" ], "title": "Fart in the Ocean recipe", - "url": "http://www.drinksmixer.com/drink3465.html" + "url": "https://www.drinksmixer.com/drink3465.html" }, { "directions": "In a shaker half-filled with ice cubes, combine all of the ingredients. Shake well. Pour into an old-fashioned glass.", @@ -26075,7 +26075,7 @@ "grenadine syrup" ], "title": "Fastlap recipe", - "url": "http://www.drinksmixer.com/drink3466.html" + "url": "https://www.drinksmixer.com/drink3466.html" }, { "directions": "In a blender, mix the chocolate milk, ice, and maple syrup for about 5 seconds. Then add the chocolate mint liqueur and kahlua, blending for another 2 seconds. Pour and top with whipped cream.", @@ -26088,7 +26088,7 @@ "whipped cream" ], "title": "The Fat Albert recipe", - "url": "http://www.drinksmixer.com/drink3467.html" + "url": "https://www.drinksmixer.com/drink3467.html" }, { "directions": "Mix ingredients in mixing glass with ice cubes. Shake and strain into a shot glass.", @@ -26099,7 +26099,7 @@ "pineapple juice" ], "title": "Fat Box recipe", - "url": "http://www.drinksmixer.com/drink3468.html" + "url": "https://www.drinksmixer.com/drink3468.html" }, { "directions": "Fill mixing cup 1/4 full with ice. Add all three ingredients. Shake and strain into a shot glass or serve on the rocks.", @@ -26109,7 +26109,7 @@ "banana liqueur" ], "title": "Fat Cat recipe", - "url": "http://www.drinksmixer.com/drink3469.html" + "url": "https://www.drinksmixer.com/drink3469.html" }, { "directions": "In a shaker half-filled with ice cubes, combine all of the ingredients. Shake well. Strain into a sour glass.", @@ -26120,7 +26120,7 @@ "egg" ], "title": "Fat Face recipe", - "url": "http://www.drinksmixer.com/drink3470.html" + "url": "https://www.drinksmixer.com/drink3470.html" }, { "directions": "Pour first three ingredients in a highball glass filled with ice. Fill with orange or pineapple juice, stir well, and serve.", @@ -26131,7 +26131,7 @@ "orange juice" ], "title": "Fat Hooker recipe", - "url": "http://www.drinksmixer.com/drink3471.html" + "url": "https://www.drinksmixer.com/drink3471.html" }, { "directions": "Put the ice cubes in first then add the shots in the order that they're listed.", @@ -26143,7 +26143,7 @@ "ice cubes" ], "title": "Fatkid On The Rocks recipe", - "url": "http://www.drinksmixer.com/drink3472.html" + "url": "https://www.drinksmixer.com/drink3472.html" }, { "directions": "Shake all ingredients with ice, strain into a cocktail glass, and serve.", @@ -26154,7 +26154,7 @@ "lemon juice" ], "title": "Favorite Cocktail recipe", - "url": "http://www.drinksmixer.com/drink3473.html" + "url": "https://www.drinksmixer.com/drink3473.html" }, { "directions": "Add galliano to a shot glass, layer the bailey's on top, and then the cointreau. Ignite the cointreau, and drink from the bottom of the glass with a straw.", @@ -26164,7 +26164,7 @@ "Cointreau\u00ae orange liqueur" ], "title": "The Feckin Bolox recipe", - "url": "http://www.drinksmixer.com/drink3474.html" + "url": "https://www.drinksmixer.com/drink3474.html" }, { "directions": "Stir vodka and grenadine with ice. Pour into a champagne-flute without the ice. Fill up with champagne.", @@ -26174,7 +26174,7 @@ "Champagne" ], "title": "Feel Like Holiday recipe", - "url": "http://www.drinksmixer.com/drink3475.html" + "url": "https://www.drinksmixer.com/drink3475.html" }, { "directions": "Layer all ingredients and light on fire to warm. Blow out flame and drink in one gulp.", @@ -26186,7 +26186,7 @@ "Bacardi\u00ae 151 rum" ], "title": "Feel The Burn recipe", - "url": "http://www.drinksmixer.com/drink3476.html" + "url": "https://www.drinksmixer.com/drink3476.html" }, { "directions": "Fill glass with ice. Next add absolut, sloe gin, pineapple juice, southern comfort, and last midori. Add pineapple and cherry garnish.", @@ -26199,7 +26199,7 @@ "ice cubes" ], "title": "Feel This recipe", - "url": "http://www.drinksmixer.com/drink3477.html" + "url": "https://www.drinksmixer.com/drink3477.html" }, { "directions": "Stir all ingredients together in the glass with a couple of ice cubes and enjoy!", @@ -26211,7 +26211,7 @@ "brandy" ], "title": "Feliz Natal recipe", - "url": "http://www.drinksmixer.com/drink3478.html" + "url": "https://www.drinksmixer.com/drink3478.html" }, { "directions": "Put some ice in a cocktail glass. Pour the fernet and then fill with coke. No mixing required.", @@ -26220,7 +26220,7 @@ "Coca-Cola\u00ae" ], "title": "Fernet Con Coca recipe", - "url": "http://www.drinksmixer.com/drink3479.html" + "url": "https://www.drinksmixer.com/drink3479.html" }, { "directions": "Stir in mixing glass. Pour into cocktail glass and add a squeeze of orange peel.", @@ -26231,7 +26231,7 @@ "orange" ], "title": "Festrus recipe", - "url": "http://www.drinksmixer.com/drink3480.html" + "url": "https://www.drinksmixer.com/drink3480.html" }, { "directions": "Fill the glass with ice. Add the rum and lime juice. Fill with ginger ale.", @@ -26241,7 +26241,7 @@ "ginger ale" ], "title": "Fidel Castro recipe", - "url": "http://www.drinksmixer.com/drink3481.html" + "url": "https://www.drinksmixer.com/drink3481.html" }, { "directions": "In a cocktail glass, layer the strawberry liqueur onto the midori. Shake and strain frangelico, and layer onto the strawberry liqueur. On top of the creamy layer, add a couple of drops of red or pink food dye, run a toothpick through the center of each drop to create a heart shape. Garnish with an open strawberry.", @@ -26253,7 +26253,7 @@ "cream" ], "title": "Field of Hearts recipe", - "url": "http://www.drinksmixer.com/drink3482.html" + "url": "https://www.drinksmixer.com/drink3482.html" }, { "directions": "Pour ingredients into a shot glass. Ignite, pray for your life and down it.", @@ -26263,7 +26263,7 @@ "triple sec" ], "title": "Fiery Balls Of Death recipe", - "url": "http://www.drinksmixer.com/drink3483.html" + "url": "https://www.drinksmixer.com/drink3483.html" }, { "directions": "Mix ingredients and light on fire. Blow out flame, saddle up, and enjoy the ride!", @@ -26273,7 +26273,7 @@ "Everclear\u00ae alcohol" ], "title": "Fiery Blue Mustang recipe", - "url": "http://www.drinksmixer.com/drink3484.html" + "url": "https://www.drinksmixer.com/drink3484.html" }, { "directions": "Pour ingredients into a parfait glass (in order given) so that each ingredient floats on preceding one. Serve without mixing.", @@ -26283,7 +26283,7 @@ "light cream" ], "title": "Fifth Avenue recipe", - "url": "http://www.drinksmixer.com/drink3485.html" + "url": "https://www.drinksmixer.com/drink3485.html" }, { "directions": "In a mixing glass half-filled with ice cubes, combine the gin and vermouth. Stir well. Strain into a cocktail glass and garnish with a cocktail olive.", @@ -26293,7 +26293,7 @@ "olive" ], "title": "Fifty-Fifty recipe", - "url": "http://www.drinksmixer.com/drink3487.html" + "url": "https://www.drinksmixer.com/drink3487.html" }, { "directions": "Shake well, pour into shot glass and serve.", @@ -26303,7 +26303,7 @@ "cranberry juice" ], "title": "Fig recipe", - "url": "http://www.drinksmixer.com/drink3488.html" + "url": "https://www.drinksmixer.com/drink3488.html" }, { "directions": "Mix ingredients and serve over ice.", @@ -26313,7 +26313,7 @@ "tonic water" ], "title": "Fin n' Tonic recipe", - "url": "http://www.drinksmixer.com/drink3489.html" + "url": "https://www.drinksmixer.com/drink3489.html" }, { "directions": "Pour vodka and lapponia lakka into an irish coffee cup. Fill with hot coffee and float fresh cream or whipped cream on top.", @@ -26324,7 +26324,7 @@ "double cream" ], "title": "Finlandia Coffee recipe", - "url": "http://www.drinksmixer.com/drink3490.html" + "url": "https://www.drinksmixer.com/drink3490.html" }, { "directions": "Stir and serve.", @@ -26334,7 +26334,7 @@ "Cinzano\u00ae dry vermouth" ], "title": "Finn Roses recipe", - "url": "http://www.drinksmixer.com/drink3491.html" + "url": "https://www.drinksmixer.com/drink3491.html" }, { "directions": "Mix all ingredients, shake and pour over ice in a collins glass. Garnish with a lemon, lime, and orange wedge.", @@ -26346,7 +26346,7 @@ "orange juice" ], "title": "The Finnely recipe", - "url": "http://www.drinksmixer.com/drink3492.html" + "url": "https://www.drinksmixer.com/drink3492.html" }, { "directions": "Shake all ingredients, pour into a longdrink glass. Garnish with a boat of orange and red cherry.", @@ -26357,7 +26357,7 @@ "sweet and sour mix" ], "title": "Finnish Passion recipe", - "url": "http://www.drinksmixer.com/drink3493.html" + "url": "https://www.drinksmixer.com/drink3493.html" }, { "directions": "In a mixing glas half-filled with ice cubes, combine the gin or vodka and the sherry. Stir well. Strain into a cocktail glass. Garnish with the lemon twist.", @@ -26367,7 +26367,7 @@ "lemon" ], "title": "Fino Martini recipe", - "url": "http://www.drinksmixer.com/drink3494.html" + "url": "https://www.drinksmixer.com/drink3494.html" }, { "directions": "Layer the rumple minze on top of the firewater. (as best as possible)", @@ -26376,7 +26376,7 @@ "Rumple Minze\u00ae peppermint liqueur" ], "title": "Fire and Ice recipe", - "url": "http://www.drinksmixer.com/drink3495.html" + "url": "https://www.drinksmixer.com/drink3495.html" }, { "directions": "Pour all the contents into a shot glass at once.", @@ -26386,7 +26386,7 @@ "lime juice" ], "title": "Fire And Torture recipe", - "url": "http://www.drinksmixer.com/drink3496.html" + "url": "https://www.drinksmixer.com/drink3496.html" }, { "directions": "Pour it in a highball glass, w/ice if preferred. Should be served cold.", @@ -26395,7 +26395,7 @@ "soda" ], "title": "Fire Engine recipe", - "url": "http://www.drinksmixer.com/drink3497.html" + "url": "https://www.drinksmixer.com/drink3497.html" }, { "directions": "Fill up shot glass with 151 proof rum. Add a dash of tabasco sauce. Allow a few seconds to settle. Drink fast and stand back.", @@ -26404,7 +26404,7 @@ "Tabasco\u00ae sauce" ], "title": "Fire in Heaven recipe", - "url": "http://www.drinksmixer.com/drink3498.html" + "url": "https://www.drinksmixer.com/drink3498.html" }, { "directions": "Pour vodka in a highball glass. Fill balance of glass with cider, stir, and serve. Add ice cubes if you like.", @@ -26414,7 +26414,7 @@ "ice cubes" ], "title": "Fire On Ice recipe", - "url": "http://www.drinksmixer.com/drink3499.html" + "url": "https://www.drinksmixer.com/drink3499.html" }, { "directions": "Mix the schnapps, southern comfort and tabasco sauce. Pour into cocktail glass. Garnish with a cherry.", @@ -26425,7 +26425,7 @@ "cherry" ], "title": "Fireball recipe", - "url": "http://www.drinksmixer.com/drink3500.html" + "url": "https://www.drinksmixer.com/drink3500.html" }, { "directions": "Pour tequila into a shot glass. Add the sambuca and a few drops of tabasco sauce (or 2 - 3 coffee beans). Pour some sambuca all over the glass and ignite. Let it burn for approx. 10 to 20 seconds. Sip through a straw, or extinguish to drink.", @@ -26435,7 +26435,7 @@ "Tabasco\u00ae sauce" ], "title": "Fireball #2 recipe", - "url": "http://www.drinksmixer.com/drink3501.html" + "url": "https://www.drinksmixer.com/drink3501.html" }, { "directions": "Mix the schnapps, rum and tabasco in a shooter glass. Stir briefly.", @@ -26445,7 +26445,7 @@ "Tabasco\u00ae sauce" ], "title": "Fireball Shooter recipe", - "url": "http://www.drinksmixer.com/drink3502.html" + "url": "https://www.drinksmixer.com/drink3502.html" }, { "directions": "Pour the cinnamon schnapps in shot glass and add the dash of tabasco sauce. Then shoot.", @@ -26454,7 +26454,7 @@ "Tabasco\u00ae sauce" ], "title": "Fireball #3 recipe", - "url": "http://www.drinksmixer.com/drink3503.html" + "url": "https://www.drinksmixer.com/drink3503.html" }, { "directions": "In a shaker half-filled with ice cubes, combine the rum, lime juice, and grenadine. Shake well. Strain into a highball glass almost filled with ice cubes. Top with the club soda. Stir well. Garnish with the orange slice and the cherry.", @@ -26467,7 +26467,7 @@ "maraschino cherry" ], "title": "Fireman's Sour recipe", - "url": "http://www.drinksmixer.com/drink3504.html" + "url": "https://www.drinksmixer.com/drink3504.html" }, { "directions": "Serve in a shot glass, and toss it straight down.", @@ -26476,7 +26476,7 @@ "ginger ale" ], "title": "Firetruck recipe", - "url": "http://www.drinksmixer.com/drink3505.html" + "url": "https://www.drinksmixer.com/drink3505.html" }, { "directions": "Dissolve sugar in some of the water. Add juice and the rest of the water, and stir. Add liquor 2-3 hours before serving, and refridgerate. Serve in a punch bowl with ice.", @@ -26489,7 +26489,7 @@ "water" ], "title": "Fish House Punch recipe", - "url": "http://www.drinksmixer.com/drink3506.html" + "url": "https://www.drinksmixer.com/drink3506.html" }, { "directions": "Fill glass with ice, add liquor, orange juice, and sour mix. Shake well. Add 7-up and serve.", @@ -26502,7 +26502,7 @@ "7-Up\u00ae soda" ], "title": "Fishbone recipe", - "url": "http://www.drinksmixer.com/drink3507.html" + "url": "https://www.drinksmixer.com/drink3507.html" }, { "directions": "Pour all ingredients into pint glass. Drink.", @@ -26512,7 +26512,7 @@ "Hooper's\u00ae Hooch" ], "title": "Five Dollar Shake recipe", - "url": "http://www.drinksmixer.com/drink3508.html" + "url": "https://www.drinksmixer.com/drink3508.html" }, { "directions": "Place ice in glass and pour in the five liquors. Next pour in the the orange juice and the sour mix. Finally shake and garnish with an orange slice.", @@ -26526,7 +26526,7 @@ "sweet and sour mix" ], "title": "Five in the Morning recipe", - "url": "http://www.drinksmixer.com/drink3509.html" + "url": "https://www.drinksmixer.com/drink3509.html" }, { "directions": "Just put all of them in a shot glass, and put it down.", @@ -26538,7 +26538,7 @@ "tequila" ], "title": "Five Star General recipe", - "url": "http://www.drinksmixer.com/drink3510.html" + "url": "https://www.drinksmixer.com/drink3510.html" }, { "directions": "Pour schnapps and orange juice over 2 ice cubes. Fill with champagne and stir gently.", @@ -26548,7 +26548,7 @@ "Champagne" ], "title": "Fizzy Fuzzy Navel recipe", - "url": "http://www.drinksmixer.com/drink3511.html" + "url": "https://www.drinksmixer.com/drink3511.html" }, { "directions": "Mix everything in a glass with ice.", @@ -26559,7 +26559,7 @@ "Sprite\u00ae soda" ], "title": "Fjellbekk (Mountain Stream) recipe", - "url": "http://www.drinksmixer.com/drink3512.html" + "url": "https://www.drinksmixer.com/drink3512.html" }, { "directions": "Mix the two ingredients. Garnish with a birch leaf.", @@ -26568,7 +26568,7 @@ "vodka" ], "title": "Fjellfinn recipe", - "url": "http://www.drinksmixer.com/drink3513.html" + "url": "https://www.drinksmixer.com/drink3513.html" }, { "directions": "Pour the vodka into the glass first, then pour the red bull slowly into it. Add ice.", @@ -26577,7 +26577,7 @@ "Red Bull\u00ae energy drink" ], "title": "Flageln recipe", - "url": "http://www.drinksmixer.com/drink3514.html" + "url": "https://www.drinksmixer.com/drink3514.html" }, { "directions": "Fill highball glass with ice, pour in vodka, midori and triple-sec. Fill to top with ginger ale and spoon in (do not mix) grenadine.", @@ -26589,7 +26589,7 @@ "grenadine syrup" ], "title": "Flaming Ale recipe", - "url": "http://www.drinksmixer.com/drink3515.html" + "url": "https://www.drinksmixer.com/drink3515.html" }, { "directions": "Combine all ingredients in mug. Let stand until room temperature. Enjoy!", @@ -26603,7 +26603,7 @@ "Tabasco\u00ae sauce" ], "title": "Flaming Anus recipe", - "url": "http://www.drinksmixer.com/drink3516.html" + "url": "https://www.drinksmixer.com/drink3516.html" }, { "directions": "Layer in this order: grenadine, creme de menthe, banana liqueur, white rum. Ignite rum before serving. Server with a straw.", @@ -26614,7 +26614,7 @@ "overproof rum" ], "title": "Flaming Asshole recipe", - "url": "http://www.drinksmixer.com/drink3517.html" + "url": "https://www.drinksmixer.com/drink3517.html" }, { "directions": "Layer with 151 proof rum on top. Light on fire - burn for 5 seconds - blow it out and drink.", @@ -26625,7 +26625,7 @@ "tequila" ], "title": "Flaming Blue Jesus recipe", - "url": "http://www.drinksmixer.com/drink3518.html" + "url": "https://www.drinksmixer.com/drink3518.html" }, { "directions": "Mix into a shot glass, and splash the bacardi on the very top. Be careful not to mix it into the rest of the drink. Then carefully light the rum on fire with a match. Blow out the flame and drink it fast before the rim gets too hot.", @@ -26635,7 +26635,7 @@ "Bacardi\u00ae 151 rum" ], "title": "Flaming Blue recipe", - "url": "http://www.drinksmixer.com/drink3519.html" + "url": "https://www.drinksmixer.com/drink3519.html" }, { "directions": "Pour ingredients over ice in an ordinary glass.", @@ -26646,7 +26646,7 @@ "Tabasco\u00ae sauce" ], "title": "Flaming Citrus Action recipe", - "url": "http://www.drinksmixer.com/drink3520.html" + "url": "https://www.drinksmixer.com/drink3520.html" }, { "directions": "Chill the shot glass until a frost has developed on it. All ingredients should be chilled. Add the aftershock and several small crystals, then add the vodka, and finally the cranberry juice.", @@ -26656,7 +26656,7 @@ "cranberry juice" ], "title": "Flaming Cocaine recipe", - "url": "http://www.drinksmixer.com/drink3521.html" + "url": "https://www.drinksmixer.com/drink3521.html" }, { "directions": "Mix the orange juice and jack daniel's in a beer mug and drop a shot glass of firewater in it.", @@ -26666,7 +26666,7 @@ "Firewater\u00ae cinnamon schnapps" ], "title": "Flaming Cornholio recipe", - "url": "http://www.drinksmixer.com/drink3522.html" + "url": "https://www.drinksmixer.com/drink3522.html" }, { "directions": "Pour amaretto and whiskey in a shot glass. Top with everclear. Light shot on fire, and drop into glass of beer.", @@ -26677,7 +26677,7 @@ "Everclear\u00ae alcohol" ], "title": "Flaming D recipe", - "url": "http://www.drinksmixer.com/drink3523.html" + "url": "https://www.drinksmixer.com/drink3523.html" }, { "directions": "Fill the shot glass about 3/4 full with amaretto and top it off with enough 151 proof rum to make it burn. Put the shot glass in another glass and fill the new glass with beer (right up to the level of the shot glass). \r", @@ -26687,7 +26687,7 @@ "beer" ], "title": "Flaming Dr. Pepper #2 recipe", - "url": "http://www.drinksmixer.com/drink3524.html" + "url": "https://www.drinksmixer.com/drink3524.html" }, { "directions": "Pour both into a pint glass, mix and drink.", @@ -26696,7 +26696,7 @@ "Dr. Pepper\u00ae soda" ], "title": "Flaming Dr. recipe", - "url": "http://www.drinksmixer.com/drink3525.html" + "url": "https://www.drinksmixer.com/drink3525.html" }, { "directions": "Mix together. Light on fire. Let the flames warm the concoction for about 20 secs. Blow out fire (optional). Swallow quickly (take care).", @@ -26705,7 +26705,7 @@ "Bacardi\u00ae 151 rum" ], "title": "Flaming Dragon recipe", - "url": "http://www.drinksmixer.com/drink3526.html" + "url": "https://www.drinksmixer.com/drink3526.html" }, { "directions": "Light on fire for five seconds, blow out and suck through a straw.", @@ -26715,7 +26715,7 @@ "Everclear\u00ae alcohol" ], "title": "Flaming Fruit Trees recipe", - "url": "http://www.drinksmixer.com/drink3527.html" + "url": "https://www.drinksmixer.com/drink3527.html" }, { "directions": "Pour kahlua first into a double shot glass. Add one ounce of butterscotch schnapps. Float 151 proof rum on top and set on fire. Blow out before drinking.", @@ -26725,7 +26725,7 @@ "151 proof rum" ], "title": "Flaming Giraffe recipe", - "url": "http://www.drinksmixer.com/drink3528.html" + "url": "https://www.drinksmixer.com/drink3528.html" }, { "directions": "Mix vodka, gin, rum, tequila, triple sec and curacao. Add sour mix. Add curacao until it's dark purple. Fill glass with ice cubes and float bacardi 151 rum on top. Have the flame blown out before drinking, and add a straw.", @@ -26742,7 +26742,7 @@ "Bacardi\u00ae 151 rum" ], "title": "Flaming Goat recipe", - "url": "http://www.drinksmixer.com/drink3529.html" + "url": "https://www.drinksmixer.com/drink3529.html" }, { "directions": "Pour into shot glass, layering ingredients, from top to bottom. Light on fire and extinguish after 15 seconds.", @@ -26752,7 +26752,7 @@ "Bacardi\u00ae 151 rum" ], "title": "Flaming Gorilla recipe", - "url": "http://www.drinksmixer.com/drink3530.html" + "url": "https://www.drinksmixer.com/drink3530.html" }, { "directions": "Add one shot of southern comfort and a splash of dr. pepper in a shot glass. Serve.", @@ -26761,7 +26761,7 @@ "Dr. Pepper\u00ae soda" ], "title": "Flaming Hurley recipe", - "url": "http://www.drinksmixer.com/drink3531.html" + "url": "https://www.drinksmixer.com/drink3531.html" }, { "directions": "Throw all in a glass and ignite. When flame goes down, chug but make sure you have a chaser, or you're in trouble.", @@ -26776,7 +26776,7 @@ "ice" ], "title": "Flaming Huscroft recipe", - "url": "http://www.drinksmixer.com/drink3532.html" + "url": "https://www.drinksmixer.com/drink3532.html" }, { "directions": "Put all ingredients in a shaker with ice. Shake, strain into a collins glass, garnish with an orange slice and serve.", @@ -26787,7 +26787,7 @@ "orange juice" ], "title": "Flaming Jesse recipe", - "url": "http://www.drinksmixer.com/drink3533.html" + "url": "https://www.drinksmixer.com/drink3533.html" }, { "directions": "Pour vodka, lime juice, and grenadine into shot glass. Then layer 151 proof rum on top from the back of a spoon. Light the 151 and shoot it while lit if you dare. If you are worried about shooting a lit drink, just blow out the flame and then shoot the drink.", @@ -26798,7 +26798,7 @@ "Bacardi\u00ae 151 rum" ], "title": "Flaming Jesus recipe", - "url": "http://www.drinksmixer.com/drink3534.html" + "url": "https://www.drinksmixer.com/drink3534.html" }, { "directions": "Just mix and stir.", @@ -26807,7 +26807,7 @@ "Everclear\u00ae alcohol" ], "title": "Flaming Kevin recipe", - "url": "http://www.drinksmixer.com/drink3535.html" + "url": "https://www.drinksmixer.com/drink3535.html" }, { "directions": "Pour the sambuca and kahlua into a cocktail glass. Pour the baileys and blue curacao into two seperate shot glasses either side of the cocktail glass. Set light the concoction in the cocktail glass and start to drink through a straw (this drink should be drunk in one). As the bottom of the glass is reached put out the fire by pouring the baileys and blue curacao into the cocktail glass and keep drinking till it's all gone.", @@ -26818,7 +26818,7 @@ "Bailey's\u00ae Irish cream" ], "title": "Flaming Lamborghini recipe", - "url": "http://www.drinksmixer.com/drink3536.html" + "url": "https://www.drinksmixer.com/drink3536.html" }, { "directions": "Pour absolut citron into a shot glass and top off with a splash of galliano. Place one half lemon slice flat on the rim of the shot glass, put some sugar on the slice and soak the sugar with 151 proof rum.\r", @@ -26830,7 +26830,7 @@ "151 proof rum" ], "title": "Flaming Lemon Drop recipe", - "url": "http://www.drinksmixer.com/drink3537.html" + "url": "https://www.drinksmixer.com/drink3537.html" }, { "directions": "Make sure the hot damn and the jagermeister are both cold before serving.", @@ -26839,7 +26839,7 @@ "DeKuyper\u00ae Hot Damn cinnamon schnapps" ], "title": "Flaming Nazi recipe", - "url": "http://www.drinksmixer.com/drink3538.html" + "url": "https://www.drinksmixer.com/drink3538.html" }, { "directions": "Take a tall shot glass, a straw and a lighter. When the drink is poured make sure your 151 is on top. Take your straw and lick it so it is wet. Light the drink (run the lighter over top), put your straw in and drink it fast.", @@ -26849,7 +26849,7 @@ "Bacardi\u00ae 151 rum" ], "title": "Flaming Rasta recipe", - "url": "http://www.drinksmixer.com/drink3539.html" + "url": "https://www.drinksmixer.com/drink3539.html" }, { "directions": "Pour vodka in shot glass, carefully layer rum on top. Ignite rum and serve.", @@ -26858,7 +26858,7 @@ "Bacardi\u00ae 151 rum" ], "title": "Flaming Russian recipe", - "url": "http://www.drinksmixer.com/drink3540.html" + "url": "https://www.drinksmixer.com/drink3540.html" }, { "directions": "Serve over rocks if desired.", @@ -26870,7 +26870,7 @@ "grenadine syrup" ], "title": "Flaming Soda recipe", - "url": "http://www.drinksmixer.com/drink3541.html" + "url": "https://www.drinksmixer.com/drink3541.html" }, { "directions": "Moisten rim of glass with cherry juice or water. Dip rim into coarse sugar to coat heavily. Pour tequila and coffee liquor into glass. Gently float 151 proof rum on top. Carefully ignite rum and swirl glass to lightly melt sugar with flame. Immediately pour in coffee to extinguish flames and fill cup. Top with whipped cream and cherry.", @@ -26884,7 +26884,7 @@ "cherry" ], "title": "Flaming Spanish Fly recipe", - "url": "http://www.drinksmixer.com/drink3542.html" + "url": "https://www.drinksmixer.com/drink3542.html" }, { "directions": "Light the jagermeister on fire and drop it in the glass of guinness. Now pound it quick. There you go!", @@ -26893,7 +26893,7 @@ "Guinness\u00ae stout" ], "title": "Flaming Yager recipe", - "url": "http://www.drinksmixer.com/drink3543.html" + "url": "https://www.drinksmixer.com/drink3543.html" }, { "directions": "Shake all ingredients with ice, strain into a cocktail glass, and serve.", @@ -26904,7 +26904,7 @@ "grenadine syrup" ], "title": "Flamingo Cocktail recipe", - "url": "http://www.drinksmixer.com/drink3544.html" + "url": "https://www.drinksmixer.com/drink3544.html" }, { "directions": "Build into an ice-filled hurricane glass. Garnish with an orange slice and a lemon wheel.", @@ -26917,7 +26917,7 @@ "sweet and sour mix" ], "title": "Flamingo Punch recipe", - "url": "http://www.drinksmixer.com/drink3545.html" + "url": "https://www.drinksmixer.com/drink3545.html" }, { "directions": "Add the kahlua and then add bacardi 151 rum to the shot glass. Place a small sipping straw in the mixture and then light on fire. The straw is so you do not burn your eyebrows off. Once lit suck the shot through the straw till empty. Tastes like chocolate milk. \r", @@ -26926,7 +26926,7 @@ "Kahlua\u00ae coffee liqueur" ], "title": "Flaming Gorilla Titties recipe", - "url": "http://www.drinksmixer.com/drink3546.html" + "url": "https://www.drinksmixer.com/drink3546.html" }, { "directions": "Bang 'em both in.", @@ -26935,7 +26935,7 @@ "sarsaparilla" ], "title": "Flander's Flake-Out recipe", - "url": "http://www.drinksmixer.com/drink3547.html" + "url": "https://www.drinksmixer.com/drink3547.html" }, { "directions": "Mix everything into a glass, add ice and lime on top.", @@ -26947,7 +26947,7 @@ "lime" ], "title": "Flash Gordon recipe", - "url": "http://www.drinksmixer.com/drink3548.html" + "url": "https://www.drinksmixer.com/drink3548.html" }, { "directions": "Shake tequila and sambuca over ice. Strain into shot glass.", @@ -26956,7 +26956,7 @@ "black sambuca" ], "title": "Flat Tire recipe", - "url": "http://www.drinksmixer.com/drink3549.html" + "url": "https://www.drinksmixer.com/drink3549.html" }, { "directions": "Layer the tequila over sambuca. Add tabasco sauce.", @@ -26966,7 +26966,7 @@ "Tabasco\u00ae sauce" ], "title": "Flatliner recipe", - "url": "http://www.drinksmixer.com/drink3550.html" + "url": "https://www.drinksmixer.com/drink3550.html" }, { "directions": "In a shaker half-filled with ice cubes, combine all of the ingredients. Shake well. Strain into a cocktail glass.", @@ -26978,7 +26978,7 @@ "lemon juice" ], "title": "Fleet Street recipe", - "url": "http://www.drinksmixer.com/drink3551.html" + "url": "https://www.drinksmixer.com/drink3551.html" }, { "directions": "Mix all ingredients together in a gallon pitcher and refrigerate. Serve chilled.", @@ -26989,7 +26989,7 @@ "lemon juice" ], "title": "Flip Juice recipe", - "url": "http://www.drinksmixer.com/drink3552.html" + "url": "https://www.drinksmixer.com/drink3552.html" }, { "directions": "Pour all of the ingredients into a highball glass almost filled with ice cubes. Stir well.", @@ -27000,7 +27000,7 @@ "orange bitters" ], "title": "Flirting with the Sandpiper recipe", - "url": "http://www.drinksmixer.com/drink3553.html" + "url": "https://www.drinksmixer.com/drink3553.html" }, { "directions": "First pour in the pear soda. Then take the fanta and the juice. Please use a cognac bowl when mixing and drinking the drink. Then attach the cucumber slice to the rim, as you would do with a lemon slice. Blend and serve instantly.", @@ -27011,7 +27011,7 @@ "cucumber" ], "title": "Floaty recipe", - "url": "http://www.drinksmixer.com/drink3554.html" + "url": "https://www.drinksmixer.com/drink3554.html" }, { "directions": "Please add in order from light to heavy finishing with coffee. No mixing required.", @@ -27022,7 +27022,7 @@ "coffee" ], "title": "Flori's Hot Tub Heaven recipe", - "url": "http://www.drinksmixer.com/drink3555.html" + "url": "https://www.drinksmixer.com/drink3555.html" }, { "directions": "Place all ingredients in a blender. Blend for 1 minute or until smooth. Serve immediately.", @@ -27036,7 +27036,7 @@ "ice cubes" ], "title": "Florida Pina Colada recipe", - "url": "http://www.drinksmixer.com/drink3556.html" + "url": "https://www.drinksmixer.com/drink3556.html" }, { "directions": "Mix in blender until ice is crushed into slushy form. Serve while frozen.", @@ -27049,7 +27049,7 @@ "crushed ice" ], "title": "Florida Rum Runner recipe", - "url": "http://www.drinksmixer.com/drink3557.html" + "url": "https://www.drinksmixer.com/drink3557.html" }, { "directions": "Shake all ingredients with ice, strain into a cocktail glass, and serve.", @@ -27061,7 +27061,7 @@ "lemon juice" ], "title": "Florida Cocktail recipe", - "url": "http://www.drinksmixer.com/drink3558.html" + "url": "https://www.drinksmixer.com/drink3558.html" }, { "directions": "Blend with ice and strained in to the cocktail glass and garnish with a slice of lime and red cherry.", @@ -27073,7 +27073,7 @@ "grenadine syrup" ], "title": "Flower Of Nippon recipe", - "url": "http://www.drinksmixer.com/drink3559.html" + "url": "https://www.drinksmixer.com/drink3559.html" }, { "directions": "Mix both ingredients with ice, strain into a cocktail glass or serve over ice.", @@ -27082,7 +27082,7 @@ "Bailey's\u00ae Irish cream" ], "title": "Fluffy Dog recipe", - "url": "http://www.drinksmixer.com/drink3560.html" + "url": "https://www.drinksmixer.com/drink3560.html" }, { "directions": "Pour into a glass half filled with ice. Stir well.", @@ -27093,7 +27093,7 @@ "ice cubes" ], "title": "Fluorescent Dream recipe", - "url": "http://www.drinksmixer.com/drink3562.html" + "url": "https://www.drinksmixer.com/drink3562.html" }, { "directions": "Pour mountain dew and banana liqueur into a glass, and stir. Slowly add the blue curacao so it takes on a type of swirling effect due to the bubbles; as fun to look at as it is tasty to drink.", @@ -27103,7 +27103,7 @@ "Mountain Dew\u00ae citrus soda" ], "title": "Fluxuation Cocktail recipe", - "url": "http://www.drinksmixer.com/drink3563.html" + "url": "https://www.drinksmixer.com/drink3563.html" }, { "directions": "Pour midori, rum, and pineapple juice into shaker with ice. Shake well. Strain into glass over ice. Pour in sprite and stir lightly.", @@ -27114,7 +27114,7 @@ "pineapple juice" ], "title": "Flyin' Hawaiian recipe", - "url": "http://www.drinksmixer.com/drink3564.html" + "url": "https://www.drinksmixer.com/drink3564.html" }, { "directions": "In an old-fashioned glass almost filled with ice cubes, combine the gin and triple sec. Stir well.", @@ -27123,7 +27123,7 @@ "triple sec" ], "title": "Flying Dutchman recipe", - "url": "http://www.drinksmixer.com/drink3565.html" + "url": "https://www.drinksmixer.com/drink3565.html" }, { "directions": "Pour the vodka and amaretto into the cup first. Add OJ until the cup is about half full, add cranberry juice until the glass is about 3/4 full, add ice to fill the cup, and shake the drink vigorously for a few seconds. Enjoy.", @@ -27134,7 +27134,7 @@ "cranberry juice" ], "title": "Flying Masturbator recipe", - "url": "http://www.drinksmixer.com/drink3566.html" + "url": "https://www.drinksmixer.com/drink3566.html" }, { "directions": "Layer each ingredient starting with kahlua, then bailey's and finish with the banana liqueur. If you have difficulty layering the shooter (shot) use a tea spoon held upside down and poor over slowly.", @@ -27144,7 +27144,7 @@ "Bailey's\u00ae Irish cream" ], "title": "Flying Monkey recipe", - "url": "http://www.drinksmixer.com/drink3567.html" + "url": "https://www.drinksmixer.com/drink3567.html" }, { "directions": "Pour liquors into a highball glass, balance with sprite and top with grenadine.", @@ -27156,7 +27156,7 @@ "grenadine syrup" ], "title": "Flying Moose recipe", - "url": "http://www.drinksmixer.com/drink3568.html" + "url": "https://www.drinksmixer.com/drink3568.html" }, { "directions": "Shake all ingredients with ice, strain into a cocktail glass, and serve.", @@ -27167,7 +27167,7 @@ "sugar syrup" ], "title": "Flying Scotsman recipe", - "url": "http://www.drinksmixer.com/drink3569.html" + "url": "https://www.drinksmixer.com/drink3569.html" }, { "directions": "First, add some ice. Then, pour in your jack daniels. Finally add pepsi and slosh around to mix. Enjoy your victory drink.", @@ -27177,7 +27177,7 @@ "Pepsi\u00ae cola" ], "title": "Flying Squadron recipe", - "url": "http://www.drinksmixer.com/drink3570.html" + "url": "https://www.drinksmixer.com/drink3570.html" }, { "directions": "Fill glass 1/3 full with ice. Pour gin and triple sec over ice. Add sour mix. Pour to top with tonic water. Mix lightly.", @@ -27189,7 +27189,7 @@ "crushed ice" ], "title": "Flying Teetsie Fly recipe", - "url": "http://www.drinksmixer.com/drink3571.html" + "url": "https://www.drinksmixer.com/drink3571.html" }, { "directions": "Fill glass with ice: add galliano, creme de menthe and vodka. Top glass off with orange juice.", @@ -27200,7 +27200,7 @@ "orange juice" ], "title": "Flying Tiger recipe", - "url": "http://www.drinksmixer.com/drink3572.html" + "url": "https://www.drinksmixer.com/drink3572.html" }, { "directions": "Mix ingredients. Pour over a single cube of ice in a small glass. Drink like a shot and throw the ice away!", @@ -27210,7 +27210,7 @@ "ice" ], "title": "Flugel recipe", - "url": "http://www.drinksmixer.com/drink3573.html" + "url": "https://www.drinksmixer.com/drink3573.html" }, { "directions": "Shake all ingredients and strain into a collins glass over ice cubes. Top with a teaspoon of sweet sherry and serve.", @@ -27224,7 +27224,7 @@ "sherry" ], "title": "Fog Cutter recipe", - "url": "http://www.drinksmixer.com/drink3574.html" + "url": "https://www.drinksmixer.com/drink3574.html" }, { "directions": "Serve on ice - peach juice to taste.", @@ -27235,7 +27235,7 @@ "lemon" ], "title": "Foggy Morning recipe", - "url": "http://www.drinksmixer.com/drink3575.html" + "url": "https://www.drinksmixer.com/drink3575.html" }, { "directions": "Fill glass with ice. Add malibu, then add pineapple juice. Stir.", @@ -27244,7 +27244,7 @@ "pineapple juice" ], "title": "Fong Juice recipe", - "url": "http://www.drinksmixer.com/drink3576.html" + "url": "https://www.drinksmixer.com/drink3576.html" }, { "directions": "Shake all ingredients with ice, strain into a cocktail glass, and serve.", @@ -27254,7 +27254,7 @@ "dry vermouth" ], "title": "Fontainebleau Special recipe", - "url": "http://www.drinksmixer.com/drink3577.html" + "url": "https://www.drinksmixer.com/drink3577.html" }, { "directions": "Mix or shake all ingredients, except grand marnier, with cracked ice in a shaker. Pour or strain into large chilled wine glass or snifter. Float grand marnier on top.", @@ -27265,7 +27265,7 @@ "Grand Marnier\u00ae orange liqueur" ], "title": "Fontainebleau Sidecar recipe", - "url": "http://www.drinksmixer.com/drink3578.html" + "url": "https://www.drinksmixer.com/drink3578.html" }, { "directions": "Fill glasses with ice. Mix absolut, midori, pineapple juice and cranberry juice in a decanter. Pour over ice and serve. Makes several.", @@ -27277,7 +27277,7 @@ "ice" ], "title": "Foreplay on the Neutral Ground recipe", - "url": "http://www.drinksmixer.com/drink3579.html" + "url": "https://www.drinksmixer.com/drink3579.html" }, { "directions": "Mix both ingredients together in a tumbler with ice. Strain into a shot glass! Enjoy!", @@ -27286,7 +27286,7 @@ "pineapple juice" ], "title": "Foreplay recipe", - "url": "http://www.drinksmixer.com/drink3580.html" + "url": "https://www.drinksmixer.com/drink3580.html" }, { "directions": "Mix in shot glass, it's that simple. Use more tabasco for more fire, less for more alcohol.", @@ -27295,7 +27295,7 @@ "Tabasco\u00ae sauce" ], "title": "Forest Fire recipe", - "url": "http://www.drinksmixer.com/drink3581.html" + "url": "https://www.drinksmixer.com/drink3581.html" }, { "directions": "Moisten the rim of the collins glass with a lime wedge and coat the rim with granulated sugar. Ice the glass and build the vodka and peach schnapps. Top with grapefruit juice.", @@ -27305,7 +27305,7 @@ "grapefruit juice" ], "title": "Forest Funk recipe", - "url": "http://www.drinksmixer.com/drink3582.html" + "url": "https://www.drinksmixer.com/drink3582.html" }, { "directions": "Add the 2 rums and vodka together in a beer mug. Then add the other 2 ingredients to it. Then top off the beer mug with lemonade.", @@ -27318,7 +27318,7 @@ "lemonade" ], "title": "Formula 3 recipe", - "url": "http://www.drinksmixer.com/drink3583.html" + "url": "https://www.drinksmixer.com/drink3583.html" }, { "directions": "Pour ingredients over a few ice cubes in order listed. Stir lightly.", @@ -27329,7 +27329,7 @@ "ice cubes" ], "title": "Formula 420 recipe", - "url": "http://www.drinksmixer.com/drink3584.html" + "url": "https://www.drinksmixer.com/drink3584.html" }, { "directions": "Shake all ingredients (except orange slice) with ice and strain into an old-fashioned glass over ice cubes. Add the slice of orange and serve.", @@ -27341,7 +27341,7 @@ "orange" ], "title": "Fort Lauderdale recipe", - "url": "http://www.drinksmixer.com/drink3585.html" + "url": "https://www.drinksmixer.com/drink3585.html" }, { "directions": "Mix the tequila, vodka, banana liqueur and coconut milk together. Shake it well together with crushed ice, and put it in an glass. Last, pour the creme de menthe into the glass so that it sinks to bottom of the glass.", @@ -27353,7 +27353,7 @@ "banana liqueur" ], "title": "Forza FCK recipe", - "url": "http://www.drinksmixer.com/drink3586.html" + "url": "https://www.drinksmixer.com/drink3586.html" }, { "directions": "Pour straight up.", @@ -27364,7 +27364,7 @@ "Jose Cuervo\u00ae Especial gold tequila" ], "title": "Four Horsemen #2 recipe", - "url": "http://www.drinksmixer.com/drink3587.html" + "url": "https://www.drinksmixer.com/drink3587.html" }, { "directions": "Pour contents in shaker over ice and shake well. Pour into glass. This is a big shooter so you have to use a small rocks glass.", @@ -27375,7 +27375,7 @@ "Bacardi\u00ae 151 rum" ], "title": "Four Horsemen recipe", - "url": "http://www.drinksmixer.com/drink3588.html" + "url": "https://www.drinksmixer.com/drink3588.html" }, { "directions": "Shake well in cracked ice, strain into cocktail glasses, serve with twists of lemon peel. Serves four.", @@ -27386,7 +27386,7 @@ "Angostura\u00ae bitters" ], "title": "Four Roses Cocktail recipe", - "url": "http://www.drinksmixer.com/drink3589.html" + "url": "https://www.drinksmixer.com/drink3589.html" }, { "directions": "Mix all ingredients in glass.", @@ -27396,7 +27396,7 @@ "white wine" ], "title": "Four Twenty recipe", - "url": "http://www.drinksmixer.com/drink3590.html" + "url": "https://www.drinksmixer.com/drink3590.html" }, { "directions": "Layer in a shot glass, banded red/white/blue shot is perfect for the fourth of july.", @@ -27406,7 +27406,7 @@ "cream" ], "title": "Fourth of July recipe", - "url": "http://www.drinksmixer.com/drink3591.html" + "url": "https://www.drinksmixer.com/drink3591.html" }, { "directions": "In a shaker half-filled with ice cubes, combine all of the ingredients. Shake well. Strain into a cocktail glass.", @@ -27418,7 +27418,7 @@ "egg" ], "title": "Fox And Hounds recipe", - "url": "http://www.drinksmixer.com/drink3592.html" + "url": "https://www.drinksmixer.com/drink3592.html" }, { "directions": "Begin with vodka, then blue curacao. After that, add the lime liqueur. Mix in the grenadine. Stir gently. Fill up with sprite and put in some ice cubes.", @@ -27430,7 +27430,7 @@ "Sprite\u00ae soda" ], "title": "Fox Poison recipe", - "url": "http://www.drinksmixer.com/drink3593.html" + "url": "https://www.drinksmixer.com/drink3593.html" }, { "directions": "Stir all ingredients with ice, strain into a cocktail glass, and serve.", @@ -27440,7 +27440,7 @@ "bitters" ], "title": "Fox River Cocktail recipe", - "url": "http://www.drinksmixer.com/drink3594.html" + "url": "https://www.drinksmixer.com/drink3594.html" }, { "directions": "Add ice, put in sprite, then add pineapple juice, followed by the coconut rum and peach schnapps. Serve very cold.", @@ -27452,7 +27452,7 @@ "ice cubes" ], "title": "The Frad recipe", - "url": "http://www.drinksmixer.com/drink3596.html" + "url": "https://www.drinksmixer.com/drink3596.html" }, { "directions": "Blend all ingredients until smooth. Serve in a highball glass and garnish with whipped cream.", @@ -27464,7 +27464,7 @@ "chocolate syrup" ], "title": "Frangelico Float recipe", - "url": "http://www.drinksmixer.com/drink3597.html" + "url": "https://www.drinksmixer.com/drink3597.html" }, { "directions": "Stir all ingredients (except cherry) with ice and strain into a cocktail glass. Add the cherry and serve.", @@ -27476,7 +27476,7 @@ "cherry" ], "title": "Frankenjack Cocktail recipe", - "url": "http://www.drinksmixer.com/drink3598.html" + "url": "https://www.drinksmixer.com/drink3598.html" }, { "directions": "Heat and stir until the honey is dissolved.", @@ -27488,7 +27488,7 @@ "honey" ], "title": "Franziska recipe", - "url": "http://www.drinksmixer.com/drink3599.html" + "url": "https://www.drinksmixer.com/drink3599.html" }, { "directions": "Slap it in, stir it around and take it down.", @@ -27501,7 +27501,7 @@ "Coca-Cola\u00ae" ], "title": "The Fran recipe", - "url": "http://www.drinksmixer.com/drink3600.html" + "url": "https://www.drinksmixer.com/drink3600.html" }, { "directions": "Mix together. Blend at full power for about 1 minute. Pour into a glass and drink with a straw. \r", @@ -27511,7 +27511,7 @@ "sugar" ], "title": "Frappe (Plain) recipe", - "url": "http://www.drinksmixer.com/drink3601.html" + "url": "https://www.drinksmixer.com/drink3601.html" }, { "directions": "Fill the boston shaker with all the ingredients and a lot of ice cubes, then shake untill your hand goes cold. Pour up in a highball glass and put a lemon slice on the edge.", @@ -27522,7 +27522,7 @@ "lemon juice" ], "title": "Fraustadt recipe", - "url": "http://www.drinksmixer.com/drink3602.html" + "url": "https://www.drinksmixer.com/drink3602.html" }, { "directions": "Layer in a shot glass. First kahlua, then white creme de cacao, and finally baja rosa tequila.", @@ -27532,7 +27532,7 @@ "Tequila Rose\u00ae strawberry cream liqueur" ], "title": "Freddie's Naughty Neopolitan recipe", - "url": "http://www.drinksmixer.com/drink3603.html" + "url": "https://www.drinksmixer.com/drink3603.html" }, { "directions": "Pour the tequila and orange juice into a highball glass almost filled with ice cubes. Pouring slowly and carefully over the back of a teaspoon, float the galliano on top of the drink, and serve.", @@ -27542,7 +27542,7 @@ "Galliano\u00ae herbal liqueur" ], "title": "Freddy Fudpucker recipe", - "url": "http://www.drinksmixer.com/drink3604.html" + "url": "https://www.drinksmixer.com/drink3604.html" }, { "directions": "Make it an ample size shot!", @@ -27552,7 +27552,7 @@ "vodka" ], "title": "Freddy Kruger recipe", - "url": "http://www.drinksmixer.com/drink3605.html" + "url": "https://www.drinksmixer.com/drink3605.html" }, { "directions": "Shake all ingredients (except carbonated water) with ice and strain into a collins glass over ice cubes. Fill with carbonated water, stir, and serve.", @@ -27565,7 +27565,7 @@ "carbonated water" ], "title": "Free Silver recipe", - "url": "http://www.drinksmixer.com/drink3606.html" + "url": "https://www.drinksmixer.com/drink3606.html" }, { "directions": "Pour ingredients into 1 ounce shot glass.", @@ -27574,7 +27574,7 @@ "Jack Daniel's\u00ae Tennessee whiskey" ], "title": "Freight Train recipe", - "url": "http://www.drinksmixer.com/drink3607.html" + "url": "https://www.drinksmixer.com/drink3607.html" }, { "directions": "In a shaker half-filled with ice cubes, combine the gin, sugar, and lemon juice. Shake well. Pour into a collins glass. Top with the champagne. Stir well and garnish with the orange slice and the cherry.", @@ -27587,7 +27587,7 @@ "maraschino cherry" ], "title": "French 75 recipe", - "url": "http://www.drinksmixer.com/drink3608.html" + "url": "https://www.drinksmixer.com/drink3608.html" }, { "directions": "Pour brandy and sweet and sour mix into a collins glass over ice cubes and stir well. Fill with chilled champagne and stir lightly. Add the slice of lemon and serve.", @@ -27598,7 +27598,7 @@ "lemon" ], "title": "French 125 recipe", - "url": "http://www.drinksmixer.com/drink3609.html" + "url": "https://www.drinksmixer.com/drink3609.html" }, { "directions": "Combine cognac, sugar and lemon juice in shaker. Add ice and shake till chilled. Pour into champagne flute. Pour champagne over cognac concoction. Garnish with lemon curl.", @@ -27609,7 +27609,7 @@ "Champagne" ], "title": "French 75 (Cognac) recipe", - "url": "http://www.drinksmixer.com/drink3610.html" + "url": "https://www.drinksmixer.com/drink3610.html" }, { "directions": "Served on ice in a rocks glass. May be served with a little whipped cream on top.", @@ -27618,7 +27618,7 @@ "Pernod\u00ae licorice liqueur" ], "title": "French Afternoon recipe", - "url": "http://www.drinksmixer.com/drink3611.html" + "url": "https://www.drinksmixer.com/drink3611.html" }, { "directions": "Combine ingredients into a snifter and serve neat, or add a small amount of ice if desired.", @@ -27627,7 +27627,7 @@ "Grand Marnier\u00ae orange liqueur" ], "title": "French Connection #2 recipe", - "url": "http://www.drinksmixer.com/drink3612.html" + "url": "https://www.drinksmixer.com/drink3612.html" }, { "directions": "Pour ingredients into a old-fashioned glass over ice, stir, and serve.", @@ -27636,7 +27636,7 @@ "amaretto almond liqueur" ], "title": "French Connection recipe", - "url": "http://www.drinksmixer.com/drink3613.html" + "url": "https://www.drinksmixer.com/drink3613.html" }, { "directions": "Add the 2 together and you've got \"French Monkey Madness!\".", @@ -27645,7 +27645,7 @@ "Orangina\u00ae orange soda" ], "title": "French Monkey recipe", - "url": "http://www.drinksmixer.com/drink3614.html" + "url": "https://www.drinksmixer.com/drink3614.html" }, { "directions": "Mix warm cointreau and vodka into a tumbler with a cube of sugar. Stir until sugar is dissolved.", @@ -27655,7 +27655,7 @@ "sugar" ], "title": "French Sailor recipe", - "url": "http://www.drinksmixer.com/drink3615.html" + "url": "https://www.drinksmixer.com/drink3615.html" }, { "directions": "Mix ingredients, the shot should taste like a piece of french toast.", @@ -27665,7 +27665,7 @@ "butterscotch schnapps" ], "title": "French Toast recipe", - "url": "http://www.drinksmixer.com/drink3616.html" + "url": "https://www.drinksmixer.com/drink3616.html" }, { "directions": "Shake vigorously over ice and strain into a rocks glass.", @@ -27675,7 +27675,7 @@ "pineapple juice" ], "title": "French Whore recipe", - "url": "http://www.drinksmixer.com/drink3617.html" + "url": "https://www.drinksmixer.com/drink3617.html" }, { "directions": "Pour both ingredients into a cocktail or rocks glass and stir.", @@ -27684,7 +27684,7 @@ "Grand Marnier\u00ae orange liqueur" ], "title": "Frenchie recipe", - "url": "http://www.drinksmixer.com/drink3618.html" + "url": "https://www.drinksmixer.com/drink3618.html" }, { "directions": "Wash leaves in cold water several times. Shake or pat dry gently. Snip each leaf in half or thirds. Discard stems. Measure cut mint leaves, packing lightly. Combine mint leaves and vodka in aging container. Cap and let stand in a cool place for 2 weeks, shaking occasionally. \r", @@ -27698,7 +27698,7 @@ "food coloring" ], "title": "Fresh Mint Liqueur recipe", - "url": "http://www.drinksmixer.com/drink3619.html" + "url": "https://www.drinksmixer.com/drink3619.html" }, { "directions": "Mix all ingredients and pour over ice.", @@ -27708,7 +27708,7 @@ "peach schnapps" ], "title": "Freson recipe", - "url": "http://www.drinksmixer.com/drink3620.html" + "url": "https://www.drinksmixer.com/drink3620.html" }, { "directions": "Mix all ingredients into an ice-filled shaker. Shake and strain into a chilled cocktail glass. Garnish with ground espresso.", @@ -27720,7 +27720,7 @@ "cream" ], "title": "Fria Cafe Italiano recipe", - "url": "http://www.drinksmixer.com/drink3621.html" + "url": "https://www.drinksmixer.com/drink3621.html" }, { "directions": "Shake and pour into a v-shape, and garnish with cinnamon.", @@ -27730,7 +27730,7 @@ "cream" ], "title": "Friar Tuck recipe", - "url": "http://www.drinksmixer.com/drink3622.html" + "url": "https://www.drinksmixer.com/drink3622.html" }, { "directions": "Blend all ingredents in blender at highest speed. Consistancy of the mix should be \"semi - thick:\" not so thick that a spoon would stand by itself in the mix, but not as thin as juice. If the mix is too thin, add sherbet, if too thick , add equal amount of juice and alcohol. Pour into glass and place in freezer for 15 minutes.", @@ -27741,7 +27741,7 @@ "rum" ], "title": "Friday Freeze recipe", - "url": "http://www.drinksmixer.com/drink3623.html" + "url": "https://www.drinksmixer.com/drink3623.html" }, { "directions": "Begin by crushing the 8 ice cubes in a blender. When ice is finely crushed, add the remaining ingredients and blend for 45 seconds on blender's highest setting. Pour into glass and serve immediately.", @@ -27755,7 +27755,7 @@ "Haagen-Dazs\u00ae chocolate ice cream" ], "title": "Fridays Frozen Mudslide recipe", - "url": "http://www.drinksmixer.com/drink3624.html" + "url": "https://www.drinksmixer.com/drink3624.html" }, { "directions": "Shake all ingredients (except slices of lemon and lime) with ice and strain into a whiskey sour glass. Decorate with the slices of lemon and lime and serve.", @@ -27768,7 +27768,7 @@ "lime" ], "title": "Frisco Sour recipe", - "url": "http://www.drinksmixer.com/drink3625.html" + "url": "https://www.drinksmixer.com/drink3625.html" }, { "directions": "Shake with cracked ice and strain into a chilled cocktail glass. Garnish with a lemon slice.", @@ -27778,7 +27778,7 @@ "lemon juice" ], "title": "Frisco Cocktail recipe", - "url": "http://www.drinksmixer.com/drink3626.html" + "url": "https://www.drinksmixer.com/drink3626.html" }, { "directions": "Start with ice. Add vodka to prefered level. Next add wanted amount of champagne and finish off the glass with ginger ale. Mix and drink.", @@ -27788,7 +27788,7 @@ "ginger ale" ], "title": "Frisky Steve recipe", - "url": "http://www.drinksmixer.com/drink3627.html" + "url": "https://www.drinksmixer.com/drink3627.html" }, { "directions": "Pour into glass, stir and enjoy.", @@ -27797,7 +27797,7 @@ "vodka" ], "title": "Frisky Witch recipe", - "url": "http://www.drinksmixer.com/drink3628.html" + "url": "https://www.drinksmixer.com/drink3628.html" }, { "directions": "Put all ingredients in blender, mix well, and enjoy.", @@ -27810,7 +27810,7 @@ "water" ], "title": "Frisky's Surprise recipe", - "url": "http://www.drinksmixer.com/drink3629.html" + "url": "https://www.drinksmixer.com/drink3629.html" }, { "directions": "Mix the Fresca and the whisky and drink fast.", @@ -27819,7 +27819,7 @@ "Fresca\u00ae grapefruit soda" ], "title": "Frisky recipe", - "url": "http://www.drinksmixer.com/drink3630.html" + "url": "https://www.drinksmixer.com/drink3630.html" }, { "directions": "Pour all of the ingredients in a trash can or large cooler. Stir until completely mixed.", @@ -27831,7 +27831,7 @@ "ice" ], "title": "Frizzy Punch recipe", - "url": "http://www.drinksmixer.com/drink3631.html" + "url": "https://www.drinksmixer.com/drink3631.html" }, { "directions": "Blend orange juice, blue maui and vodka, and pour in glass. Splash grenadine on top, but do not stir in.", @@ -27842,7 +27842,7 @@ "orange juice" ], "title": "Frog in a Blender recipe", - "url": "http://www.drinksmixer.com/drink3632.html" + "url": "https://www.drinksmixer.com/drink3632.html" }, { "directions": "Fill highball glass with ice, add the blue curacao, add the tequila and finally for that yummy green color, fill the glass with the orange juice.", @@ -27853,7 +27853,7 @@ "ice" ], "title": "Frogster recipe", - "url": "http://www.drinksmixer.com/drink3633.html" + "url": "https://www.drinksmixer.com/drink3633.html" }, { "directions": "Pour over ice.", @@ -27863,7 +27863,7 @@ "cranberry juice" ], "title": "From Russia With Love recipe", - "url": "http://www.drinksmixer.com/drink3634.html" + "url": "https://www.drinksmixer.com/drink3634.html" }, { "directions": "Shake all ingredients with ice, strain into a cocktail glass, and serve.", @@ -27873,7 +27873,7 @@ "egg" ], "title": "Froth Blower Cocktail recipe", - "url": "http://www.drinksmixer.com/drink3635.html" + "url": "https://www.drinksmixer.com/drink3635.html" }, { "directions": "Add in said order. Do not shake, soda will mix. Garnish with 2-3 grapes and sprinkle with sugar. Named after a friend who demanded a new drink.", @@ -27884,7 +27884,7 @@ "granulated sugar" ], "title": "Frothy Redhead recipe", - "url": "http://www.drinksmixer.com/drink3636.html" + "url": "https://www.drinksmixer.com/drink3636.html" }, { "directions": "Blend all ingredients with 1 cup crushed ice in an electric blender at a low speed for a short length of time. Pour into an old-fashioned glass and serve.", @@ -27895,7 +27895,7 @@ "egg" ], "title": "Frozen Apple recipe", - "url": "http://www.drinksmixer.com/drink3637.html" + "url": "https://www.drinksmixer.com/drink3637.html" }, { "directions": "Blend all ingredients with 1/2 cup crushed ice in an electric blender at a low speed for a short length of time. Pour into a champagne flute and serve.", @@ -27906,7 +27906,7 @@ "lemon juice" ], "title": "Frozen Berkeley recipe", - "url": "http://www.drinksmixer.com/drink3638.html" + "url": "https://www.drinksmixer.com/drink3638.html" }, { "directions": "Layer in a shot glass.", @@ -27915,7 +27915,7 @@ "Rumple Minze\u00ae peppermint liqueur" ], "title": "Frozen Bird recipe", - "url": "http://www.drinksmixer.com/drink3639.html" + "url": "https://www.drinksmixer.com/drink3639.html" }, { "directions": "Put all the ingredient into a blender. Blend at medium speed for about 20 seconds. Pour into an old-fashioned glass.", @@ -27926,7 +27926,7 @@ "ice" ], "title": "Frozen Blue Daiquiri recipe", - "url": "http://www.drinksmixer.com/drink3640.html" + "url": "https://www.drinksmixer.com/drink3640.html" }, { "directions": "Combine all ingredients with 1 cup of crushed ice in an electric blender and blend at a low speed for a short length of time. Pour into an old-fashioned glass and serve.", @@ -27938,7 +27938,7 @@ "egg" ], "title": "Frozen Brandy And Rum recipe", - "url": "http://www.drinksmixer.com/drink3641.html" + "url": "https://www.drinksmixer.com/drink3641.html" }, { "directions": "Combine all ingredients (except for the cherry) in an electric blender and blend at a low speed for five seconds, then blend at a high speed until firm. Pour contents into a champagne flute, top with the cherry, and serve.", @@ -27951,7 +27951,7 @@ "crushed ice" ], "title": "Frozen Daiquiri recipe", - "url": "http://www.drinksmixer.com/drink3642.html" + "url": "https://www.drinksmixer.com/drink3642.html" }, { "directions": "Blend. Add more or less milk to get a shake consistancy.", @@ -27961,7 +27961,7 @@ "chocolate ice cream" ], "title": "Frozen Girl Scout recipe", - "url": "http://www.drinksmixer.com/drink3643.html" + "url": "https://www.drinksmixer.com/drink3643.html" }, { "directions": "Mix all three ingredients together in a blender and blend until drink has the consistency of a good milk shake. Serve with a spoon and straw.", @@ -27971,7 +27971,7 @@ "vanilla ice cream" ], "title": "Frozen Grasshopper recipe", - "url": "http://www.drinksmixer.com/drink3644.html" + "url": "https://www.drinksmixer.com/drink3644.html" }, { "directions": "Place salt in a saucer. Rub rim of a cocktail glass with lime wedge and dip glass into salt to coat rim thoroughly, reserve lime. Pour tequila, triple sec, lime juice, and crushed ice into a blender. Blend well at high speed. Pour into a cocktail glass.", @@ -27984,7 +27984,7 @@ "crushed ice" ], "title": "Frozen Margarita recipe", - "url": "http://www.drinksmixer.com/drink3645.html" + "url": "https://www.drinksmixer.com/drink3645.html" }, { "directions": "In a blender, add the can of limeade. Using the empty can measure the tequila and the triple sec and add to the blender. Blend, adding ice cubes until the drink becomes slushy and holds in peaks. Serves 4.", @@ -27994,7 +27994,7 @@ "triple sec" ], "title": "Frozen Margarita #2 recipe", - "url": "http://www.drinksmixer.com/drink3646.html" + "url": "https://www.drinksmixer.com/drink3646.html" }, { "directions": "Blend all ingredients (except pineapple stick) with 1 cup crushed ice in an electric blender at a low speed for a short length of time. Pour into an old-fashioned glass, add the pineapple stick, and serve.", @@ -28005,7 +28005,7 @@ "pineapple" ], "title": "Frozen Matador recipe", - "url": "http://www.drinksmixer.com/drink3647.html" + "url": "https://www.drinksmixer.com/drink3647.html" }, { "directions": "Combine all ingredients with 1 cup of crushed ice in an electric blender. Blend at a low speed for a short length of time. Pour into an old-fashioned glass and serve.", @@ -28016,7 +28016,7 @@ "sugar" ], "title": "Frozen Mint Daiquiri recipe", - "url": "http://www.drinksmixer.com/drink3648.html" + "url": "https://www.drinksmixer.com/drink3648.html" }, { "directions": "Add all liquid ingredients into mixer. Add vanilla ice cream and mix. Add more ice cream till desired texture.", @@ -28028,7 +28028,7 @@ "chocolate syrup" ], "title": "Frozen Mudslide #2 recipe", - "url": "http://www.drinksmixer.com/drink3649.html" + "url": "https://www.drinksmixer.com/drink3649.html" }, { "directions": "Blend alcohol with ice-cream. Serve in a frosted glass.", @@ -28039,7 +28039,7 @@ "vanilla ice cream" ], "title": "Frozen Mudslide recipe", - "url": "http://www.drinksmixer.com/drink3650.html" + "url": "https://www.drinksmixer.com/drink3650.html" }, { "directions": "Combine all ingredients with 1 cup of crushed ice in an electric blender. Blend at a low speed for a short length of time. Pour into a champagne flute and serve.", @@ -28050,7 +28050,7 @@ "sugar" ], "title": "Frozen Pineapple Daiquiri recipe", - "url": "http://www.drinksmixer.com/drink3651.html" + "url": "https://www.drinksmixer.com/drink3651.html" }, { "directions": "Blend at high speed until smooth. Float 1/4 oz 151 proof rum as an optional extra. Garnish with a lime wheel and cherry. Enjoy!", @@ -28065,7 +28065,7 @@ "151 proof rum" ], "title": "Frozen Rum Runner recipe", - "url": "http://www.drinksmixer.com/drink3652.html" + "url": "https://www.drinksmixer.com/drink3652.html" }, { "directions": "Put all together in blender, and blend until smooth.", @@ -28080,7 +28080,7 @@ "vodka" ], "title": "Fruit a La La recipe", - "url": "http://www.drinksmixer.com/drink3653.html" + "url": "https://www.drinksmixer.com/drink3653.html" }, { "directions": "Mix the carbonated soft drink (like 7-Up) with different flavored fruit juices, and float the sherbet on top before serving.", @@ -28090,7 +28090,7 @@ "sherbet" ], "title": "Fruit And Sherbet Punch recipe", - "url": "http://www.drinksmixer.com/drink3654.html" + "url": "https://www.drinksmixer.com/drink3654.html" }, { "directions": "Mix appropriate amounts in a pitcher or bowl. Pour into glass filled with ice. Garnish with the fruit of your choice.", @@ -28104,7 +28104,7 @@ "apple juice" ], "title": "Fruit Basket recipe", - "url": "http://www.drinksmixer.com/drink3655.html" + "url": "https://www.drinksmixer.com/drink3655.html" }, { "directions": "Toss strawberries with sugar, and let sit overnight in refrigerator. Cut lemon, reserve two slices. Juice the rest. Mix together the lemon juice, strawberries, apple juice, and soda water. Add slices of lemon (decor, really). In glasses, put ice cubes, and a slice of apple. Pour drink in, and serve.", @@ -28118,7 +28118,7 @@ "ice" ], "title": "Fruit Cooler recipe", - "url": "http://www.drinksmixer.com/drink3656.html" + "url": "https://www.drinksmixer.com/drink3656.html" }, { "directions": "Place all ingredients into a blender jar. Cover, and whiz on medium speed until well blended. Pour into a collins glass, and serve.", @@ -28127,7 +28127,7 @@ "fruit juice" ], "title": "Fruit Flip-Flop recipe", - "url": "http://www.drinksmixer.com/drink3657.html" + "url": "https://www.drinksmixer.com/drink3657.html" }, { "directions": "Drain syrup from the fruit cocktail. Mix fruit and cinnamon with 4 ice cubes in a blender. Add whisky according to taste. Let blend for about 2 1/2 minutes at high setting.", @@ -28137,7 +28137,7 @@ "cinnamon" ], "title": "Fruit Fly recipe", - "url": "http://www.drinksmixer.com/drink3658.html" + "url": "https://www.drinksmixer.com/drink3658.html" }, { "directions": "Pour the liquor. Fill with juice to taste.", @@ -28148,7 +28148,7 @@ "raspberry juice" ], "title": "Fruit Hippy recipe", - "url": "http://www.drinksmixer.com/drink3659.html" + "url": "https://www.drinksmixer.com/drink3659.html" }, { "directions": "Shake ingredients in a mixing tin filled with ice cubes. Strain into a shot glass.", @@ -28159,7 +28159,7 @@ "milk" ], "title": "Fruit Loop #2 recipe", - "url": "http://www.drinksmixer.com/drink3660.html" + "url": "https://www.drinksmixer.com/drink3660.html" }, { "directions": "Fill highball glass with ice. Pour curacao over ice then fill with milk.", @@ -28169,7 +28169,7 @@ "ice cubes" ], "title": "Fruit Loop recipe", - "url": "http://www.drinksmixer.com/drink3661.html" + "url": "https://www.drinksmixer.com/drink3661.html" }, { "directions": "Mix ingredients in order, stir, enjoy.", @@ -28182,7 +28182,7 @@ "Sprite\u00ae soda" ], "title": "Fruit Lush recipe", - "url": "http://www.drinksmixer.com/drink3662.html" + "url": "https://www.drinksmixer.com/drink3662.html" }, { "directions": "Pour ingredients over ice cubes in shaker glass. Shake well, and strain into shot glass.", @@ -28193,7 +28193,7 @@ "coconut rum" ], "title": "Fruit of the Loom recipe", - "url": "http://www.drinksmixer.com/drink3663.html" + "url": "https://www.drinksmixer.com/drink3663.html" }, { "directions": "Place ice cubes into the glass. Pour over measure of gin, followed by the dry vermouth. Fill to desired level with orange juice. Gently pour in dashes of blue curacao so that about 2/3 of the orange turns green. Pour the dashes of grenadine to turn bottom of the drink red. Serve with a straw.", @@ -28206,7 +28206,7 @@ "ice cubes" ], "title": "Fruit Pastille recipe", - "url": "http://www.drinksmixer.com/drink3664.html" + "url": "https://www.drinksmixer.com/drink3664.html" }, { "directions": "Make up the kool-aid ahead of time, by dissolving in a small amount on water (as little as possible). Don't add sugar! Cool this mixture. \r", @@ -28218,7 +28218,7 @@ "sugar" ], "title": "Fruit Punch recipe", - "url": "http://www.drinksmixer.com/drink3665.html" + "url": "https://www.drinksmixer.com/drink3665.html" }, { "directions": "Fill blender 1/2 to 3/4 full with ice and add strawberries, pieces of watermelon, and slices of star fruit. Last add rum and pina colada mix. Blend until smooth and garnish with a slice of star fruit and an umbrella.", @@ -28229,7 +28229,7 @@ "watermelons" ], "title": "Fruit Salad Daiquiri recipe", - "url": "http://www.drinksmixer.com/drink3666.html" + "url": "https://www.drinksmixer.com/drink3666.html" }, { "directions": "Fill glass with ice and add all the ingredients - mix well. Add straw and garnish if required.", @@ -28240,7 +28240,7 @@ "pineapple juice" ], "title": "Fruit Sensation recipe", - "url": "http://www.drinksmixer.com/drink3667.html" + "url": "https://www.drinksmixer.com/drink3667.html" }, { "directions": "Blend until smooth.", @@ -28252,7 +28252,7 @@ "ice cubes" ], "title": "Fruit Shake recipe", - "url": "http://www.drinksmixer.com/drink3668.html" + "url": "https://www.drinksmixer.com/drink3668.html" }, { "directions": "Pour the blue curacao and vodka over the ice in a highball glass. Fill with lemonade and at the same time add the dash of cordial. Be sure not to go overboard with the cordial otherwise it overpowers the fruit tingle effect.", @@ -28264,7 +28264,7 @@ "ice cubes" ], "title": "Fruit Tingle #2 recipe", - "url": "http://www.drinksmixer.com/drink3669.html" + "url": "https://www.drinksmixer.com/drink3669.html" }, { "directions": "Place ice cubes in shaker, add all other ingredients and shake. Pour into shot glasses to drink.", @@ -28276,7 +28276,7 @@ "ice cubes" ], "title": "Fruit Tingles recipe", - "url": "http://www.drinksmixer.com/drink3670.html" + "url": "https://www.drinksmixer.com/drink3670.html" }, { "directions": "Pour curacao over ice in a tumbler. Add raspberry cordial and lemonade at the same time so that the combined effect mixes the drink. Tastes like the lollies called Fruit Tingles.", @@ -28287,7 +28287,7 @@ "ice" ], "title": "Fruit Tingle recipe", - "url": "http://www.drinksmixer.com/drink3671.html" + "url": "https://www.drinksmixer.com/drink3671.html" }, { "directions": "Stir all ingredients and serve over ice. Garnish with an orange slice and a cherry.", @@ -28298,7 +28298,7 @@ "grenadine syrup" ], "title": "Fruitloops recipe", - "url": "http://www.drinksmixer.com/drink3672.html" + "url": "https://www.drinksmixer.com/drink3672.html" }, { "directions": "Pour ingredients, shake with ice and serve with a straw. Garnish with an orange slice if desired.", @@ -28311,7 +28311,7 @@ "grenadine syrup" ], "title": "Fruitopia recipe", - "url": "http://www.drinksmixer.com/drink3673.html" + "url": "https://www.drinksmixer.com/drink3673.html" }, { "directions": "Mix all the ingredients to taste in any kind of container.", @@ -28322,7 +28322,7 @@ "Sprite\u00ae soda" ], "title": "Fruity Pebbles recipe", - "url": "http://www.drinksmixer.com/drink3674.html" + "url": "https://www.drinksmixer.com/drink3674.html" }, { "directions": "Shake with ice. Drink as a shooter or pour over rocks.", @@ -28333,7 +28333,7 @@ "milk" ], "title": "Fruity Pebble recipe", - "url": "http://www.drinksmixer.com/drink3675.html" + "url": "https://www.drinksmixer.com/drink3675.html" }, { "directions": "Pour orange juice and peach schnapps in a punch bowl. Add the vodka. Pour the bottles of strawberry daiquiri mix in after. Stir a little. Serve.", @@ -28344,7 +28344,7 @@ "strawberry daiquiri mix" ], "title": "Fruity Screaming Fuzzy Navel recipe", - "url": "http://www.drinksmixer.com/drink3676.html" + "url": "https://www.drinksmixer.com/drink3676.html" }, { "directions": "Pour ingredients over ice in a large glass.", @@ -28354,7 +28354,7 @@ "Sunny Delight\u00ae orange juice" ], "title": "Fruity Vodka Beverage recipe", - "url": "http://www.drinksmixer.com/drink3677.html" + "url": "https://www.drinksmixer.com/drink3677.html" }, { "directions": "Combine all ingredients except 151, shake well with ice, pour into highball glass and top it off with bacardi 151.", @@ -28368,7 +28368,7 @@ "Bacardi\u00ae 151 rum" ], "title": "Fu** Me Like A Beast recipe", - "url": "http://www.drinksmixer.com/drink3678.html" + "url": "https://www.drinksmixer.com/drink3678.html" }, { "directions": "Put in large container (fu-cha bottle) with ice and shake vigorously. Drink rapidly. Buckets on hand would be advisable.", @@ -28377,7 +28377,7 @@ "Hooper's\u00ae Hooch" ], "title": "Fu-Cha recipe", - "url": "http://www.drinksmixer.com/drink3679.html" + "url": "https://www.drinksmixer.com/drink3679.html" }, { "directions": "Layer from top to bottom.", @@ -28389,7 +28389,7 @@ "151 proof rum" ], "title": "FU2 recipe", - "url": "http://www.drinksmixer.com/drink3680.html" + "url": "https://www.drinksmixer.com/drink3680.html" }, { "directions": "Mix in shaker over cracked ice, pour into highball glass with ice and enjoy.", @@ -28402,7 +28402,7 @@ "pineapple juice" ], "title": "Fubar Kool-Aid recipe", - "url": "http://www.drinksmixer.com/drink3681.html" + "url": "https://www.drinksmixer.com/drink3681.html" }, { "directions": "Shake well, serve cold.", @@ -28417,7 +28417,7 @@ "orange juice" ], "title": "Fuck in the Graveyard recipe", - "url": "http://www.drinksmixer.com/drink3682.html" + "url": "https://www.drinksmixer.com/drink3682.html" }, { "directions": "Shake ingredients with ice, shake and strain into shooter glass. Shoot drink!", @@ -28427,7 +28427,7 @@ "banana liqueur" ], "title": "Fuck Me Up recipe", - "url": "http://www.drinksmixer.com/drink3683.html" + "url": "https://www.drinksmixer.com/drink3683.html" }, { "directions": "Mix each ingredient in a glass. Tilt glass 180 degrees and slam it!", @@ -28440,7 +28440,7 @@ "blueberry schnapps" ], "title": "Fuck You recipe", - "url": "http://www.drinksmixer.com/drink3684.html" + "url": "https://www.drinksmixer.com/drink3684.html" }, { "directions": "Mix together kahlua, schnapps, vodka, ice-cream and cola until blended. Fill with milk.", @@ -28453,7 +28453,7 @@ "milk" ], "title": "Fucked Up Float recipe", - "url": "http://www.drinksmixer.com/drink3685.html" + "url": "https://www.drinksmixer.com/drink3685.html" }, { "directions": "Pour all contents in glass over cubed ice and mix together.", @@ -28465,7 +28465,7 @@ "grenadine syrup" ], "title": "Fuka recipe", - "url": "http://www.drinksmixer.com/drink3687.html" + "url": "https://www.drinksmixer.com/drink3687.html" }, { "directions": "Add the three rums and the midori in highball glass with ice. Add a little sour mix for flavor and fill the rest with pineapple juice. It's a nice light green color. Garnish with a pineapple wedge and a cherry.", @@ -28478,7 +28478,7 @@ "pineapple juice" ], "title": "Full Moon Fever recipe", - "url": "http://www.drinksmixer.com/drink3688.html" + "url": "https://www.drinksmixer.com/drink3688.html" }, { "directions": "Cut lemons into wedges and mix all ingredients in large container.", @@ -28492,7 +28492,7 @@ "Sagatiba Pura" ], "title": "Fulminator recipe", - "url": "http://www.drinksmixer.com/drink3689.html" + "url": "https://www.drinksmixer.com/drink3689.html" }, { "directions": "Mix in shot glass. Serve.", @@ -28501,7 +28501,7 @@ "Wild Turkey\u00ae bourbon whiskey" ], "title": "Funky Chicken recipe", - "url": "http://www.drinksmixer.com/drink3690.html" + "url": "https://www.drinksmixer.com/drink3690.html" }, { "directions": "Pour over ice and top off with cranberry juice.", @@ -28513,7 +28513,7 @@ "ice" ], "title": "Funky Cold Medina recipe", - "url": "http://www.drinksmixer.com/drink3691.html" + "url": "https://www.drinksmixer.com/drink3691.html" }, { "directions": "Mix ingredients and strain over ice.", @@ -28527,7 +28527,7 @@ "lime juice" ], "title": "Funky Filly recipe", - "url": "http://www.drinksmixer.com/drink3692.html" + "url": "https://www.drinksmixer.com/drink3692.html" }, { "directions": "Blend with ice until smooth. Pour into a hurricane glass and garnish with coconut flakes.", @@ -28540,7 +28540,7 @@ "coconuts" ], "title": "Funky Monkey recipe", - "url": "http://www.drinksmixer.com/drink3693.html" + "url": "https://www.drinksmixer.com/drink3693.html" }, { "directions": "Pour beer, ginger ale, vodka, light rum, and amaretto in a funnel. Turn the funnel while you drink it.", @@ -28552,7 +28552,7 @@ "amaretto almond liqueur" ], "title": "Funnel Cloud recipe", - "url": "http://www.drinksmixer.com/drink3694.html" + "url": "https://www.drinksmixer.com/drink3694.html" }, { "directions": "Add absolut kurant and sprite to a cocktail glass. Mix in the grenadine syrup, and add the cherry cola. Serve. Add a dash of lime for a slightly different taste.", @@ -28563,7 +28563,7 @@ "cherry cola" ], "title": "Fuquay Friday Night recipe", - "url": "http://www.drinksmixer.com/drink3695.html" + "url": "https://www.drinksmixer.com/drink3695.html" }, { "directions": "In a whiskey glass with ice, add equal parts vodka and spiced rum, a splash of sour mix, then top off with orange juice.", @@ -28574,7 +28574,7 @@ "orange juice" ], "title": "Fury recipe", - "url": "http://www.drinksmixer.com/drink3696.html" + "url": "https://www.drinksmixer.com/drink3696.html" }, { "directions": "Fill a cup 2/3 with sprite, 1/3 with peach schnapps, and add ice.", @@ -28583,7 +28583,7 @@ "Sprite\u00ae soda" ], "title": "Fuzzball recipe", - "url": "http://www.drinksmixer.com/drink3697.html" + "url": "https://www.drinksmixer.com/drink3697.html" }, { "directions": "Pour peach nectar and orange juice into a chilled glass filled with ice cubes. Stir well and garnish with a slice of orange.", @@ -28592,7 +28592,7 @@ "orange juice" ], "title": "Fuzzless Navel recipe", - "url": "http://www.drinksmixer.com/drink3698.html" + "url": "https://www.drinksmixer.com/drink3698.html" }, { "directions": "Fill coffee mug half full with coffee. Fill the other half full of peach schnapps. Stir and drink while hot.", @@ -28601,7 +28601,7 @@ "peach schnapps" ], "title": "Fuzzy Asshole recipe", - "url": "http://www.drinksmixer.com/drink3699.html" + "url": "https://www.drinksmixer.com/drink3699.html" }, { "directions": "Combine all ingredients into a large strainer/mixer. Add a handful of ice. Shake for a few seconds. Strain into a mason jar.", @@ -28614,7 +28614,7 @@ "Sprite\u00ae soda" ], "title": "Fuzzy Ass recipe", - "url": "http://www.drinksmixer.com/drink3700.html" + "url": "https://www.drinksmixer.com/drink3700.html" }, { "directions": "Mix and serve.", @@ -28624,7 +28624,7 @@ "peach schnapps" ], "title": "Fuzzy Astronaut recipe", - "url": "http://www.drinksmixer.com/drink3701.html" + "url": "https://www.drinksmixer.com/drink3701.html" }, { "directions": "Mix alcoholic ingredients one part each - and add 7-up. Eight shots of each requires a 2L bottle of 7-up.", @@ -28635,7 +28635,7 @@ "7-Up\u00ae soda" ], "title": "Fuzzy Balls recipe", - "url": "http://www.drinksmixer.com/drink3702.html" + "url": "https://www.drinksmixer.com/drink3702.html" }, { "directions": "Mix all parts together in a glass, or pitcher, depending on the amount of people you wish to serve.", @@ -28645,7 +28645,7 @@ "DeKuyper\u00ae Peachtree schnapps" ], "title": "Fuzzy Banana recipe", - "url": "http://www.drinksmixer.com/drink3703.html" + "url": "https://www.drinksmixer.com/drink3703.html" }, { "directions": "Start at the top and work your way down.", @@ -28655,7 +28655,7 @@ "Wild Turkey\u00ae bourbon whiskey" ], "title": "Fuzzy Blue Gobbler recipe", - "url": "http://www.drinksmixer.com/drink3704.html" + "url": "https://www.drinksmixer.com/drink3704.html" }, { "directions": "Just mix it and drink it.", @@ -28664,7 +28664,7 @@ "peach schnapps" ], "title": "Fuzzy Bullet recipe", - "url": "http://www.drinksmixer.com/drink3705.html" + "url": "https://www.drinksmixer.com/drink3705.html" }, { "directions": "Fill glass half full with crushed ice. Add midori, then fill glass the rest of the way full with ginger ale. This should result in a chartreuse colored drink. Add more midori to your taste.", @@ -28674,7 +28674,7 @@ "crushed ice" ], "title": "Fuzzy Chartreuse recipe", - "url": "http://www.drinksmixer.com/drink3706.html" + "url": "https://www.drinksmixer.com/drink3706.html" }, { "directions": "Carefully pour the rum or vodka, then other ingredients. Stir.", @@ -28686,7 +28686,7 @@ "orange juice" ], "title": "Fuzzy Comfort recipe", - "url": "http://www.drinksmixer.com/drink3707.html" + "url": "https://www.drinksmixer.com/drink3707.html" }, { "directions": "Add the shots, and fill the rest with ginger ale, lemonade, and orange juice to taste.", @@ -28698,7 +28698,7 @@ "lemonade" ], "title": "Fuzzy Cooter recipe", - "url": "http://www.drinksmixer.com/drink3708.html" + "url": "https://www.drinksmixer.com/drink3708.html" }, { "directions": "Mix all ingredients except lime in a cocktail shaker, then shake, and pour into glass. Add lime.", @@ -28710,7 +28710,7 @@ "green creme de menthe" ], "title": "Fuzzy Ethan recipe", - "url": "http://www.drinksmixer.com/drink3709.html" + "url": "https://www.drinksmixer.com/drink3709.html" }, { "directions": "Mix all ingredients in a highball glass. Serve over ice.", @@ -28720,7 +28720,7 @@ "Sunny Delight\u00ae orange juice" ], "title": "Fuzzy F**ker recipe", - "url": "http://www.drinksmixer.com/drink3710.html" + "url": "https://www.drinksmixer.com/drink3710.html" }, { "directions": "Pour all ingredients in a huge bowl or an empty water bottle that holds several gallons. Stir or shake until mixed and serve either on ice or as a shot.", @@ -28732,7 +28732,7 @@ "Tang\u00ae powdered soft drink" ], "title": "Fuzzy Faser recipe", - "url": "http://www.drinksmixer.com/drink3711.html" + "url": "https://www.drinksmixer.com/drink3711.html" }, { "directions": "Pour raspberry first, butterscotch next and irish cream last. Need not be layered but pour in order given. Top 'O the Mornin' to you!", @@ -28742,7 +28742,7 @@ "Irish cream" ], "title": "Fuzzy Irishman recipe", - "url": "http://www.drinksmixer.com/drink3712.html" + "url": "https://www.drinksmixer.com/drink3712.html" }, { "directions": "Mix all ingredients together and mix vigorously. Pour into glass and serve.", @@ -28752,7 +28752,7 @@ "cream" ], "title": "Fuzzy Logic #2 recipe", - "url": "http://www.drinksmixer.com/drink3713.html" + "url": "https://www.drinksmixer.com/drink3713.html" }, { "directions": "Pour all of it into a shaker with ice, shake and pour.", @@ -28763,7 +28763,7 @@ "orange juice" ], "title": "Fuzzy Logic recipe", - "url": "http://www.drinksmixer.com/drink3714.html" + "url": "https://www.drinksmixer.com/drink3714.html" }, { "directions": "Mix all ingredients (except lemon wedge) into shaker. Fill glass with ice and pour until about 1/4 inch remains in glass. Squeeze lemon wedge into drink then drop lemon wedge in (for color and flavor).", @@ -28776,7 +28776,7 @@ "lemon" ], "title": "The Fuzzy Magnum recipe", - "url": "http://www.drinksmixer.com/drink3715.html" + "url": "https://www.drinksmixer.com/drink3715.html" }, { "directions": "Combine vodka and schnapps over lots of ice. Stir and pour into chilled martini glass. Garnish with fresh slice of peach.", @@ -28786,7 +28786,7 @@ "peach" ], "title": "Fuzzy Martini recipe", - "url": "http://www.drinksmixer.com/drink3716.html" + "url": "https://www.drinksmixer.com/drink3716.html" }, { "directions": "Add all ingredients to a highball glass filled with ice.", @@ -28796,7 +28796,7 @@ "cranberry juice" ], "title": "Fuzzy Melonberry recipe", - "url": "http://www.drinksmixer.com/drink3717.html" + "url": "https://www.drinksmixer.com/drink3717.html" }, { "directions": "Shooter. Shake ingredients with ice (in a mixing tin). Strain into a shooter glass.", @@ -28807,7 +28807,7 @@ "orange juice" ], "title": "Fuzzy Monkey recipe", - "url": "http://www.drinksmixer.com/drink3718.html" + "url": "https://www.drinksmixer.com/drink3718.html" }, { "directions": "Orange juice last, stir, and enjoy!", @@ -28817,7 +28817,7 @@ "orange juice" ], "title": "Fuzzy Navel #2 recipe", - "url": "http://www.drinksmixer.com/drink3719.html" + "url": "https://www.drinksmixer.com/drink3719.html" }, { "directions": "Pour peach schnapps into ice filled collins glass. Fill with orange juice (to taste) and stir to combine.", @@ -28826,7 +28826,7 @@ "orange juice" ], "title": "Fuzzy Navel #3 recipe", - "url": "http://www.drinksmixer.com/drink3720.html" + "url": "https://www.drinksmixer.com/drink3720.html" }, { "directions": "Pour all liquids over ice and shake. Pour into highball glass and garnish with either an orange wheel or a cherry. Can also be made frozen.", @@ -28837,7 +28837,7 @@ "orange juice" ], "title": "Fuzzy Nipple recipe", - "url": "http://www.drinksmixer.com/drink3721.html" + "url": "https://www.drinksmixer.com/drink3721.html" }, { "directions": "Pour vodka, then orange juice, then peach schnapps. Drink.", @@ -28847,7 +28847,7 @@ "orange juice" ], "title": "Fuzzy Peachclari recipe", - "url": "http://www.drinksmixer.com/drink3722.html" + "url": "https://www.drinksmixer.com/drink3722.html" }, { "directions": "Pour over ice, stir.", @@ -28857,7 +28857,7 @@ "orange juice" ], "title": "Fuzzy Pierced Navel recipe", - "url": "http://www.drinksmixer.com/drink3723.html" + "url": "https://www.drinksmixer.com/drink3723.html" }, { "directions": "Pour all ingredients in rocks glass. (with silver polka dots on it if possible) Stir. Watch it fizz for thirty seconds. Drink it fast.", @@ -28866,7 +28866,7 @@ "Mountain Dew\u00ae citrus soda" ], "title": "The Fuzzy Pissbomb recipe", - "url": "http://www.drinksmixer.com/drink3724.html" + "url": "https://www.drinksmixer.com/drink3724.html" }, { "directions": "Mix together in a pitcher. Pour into hurricane glass.", @@ -28876,7 +28876,7 @@ "Nehi\u00ae grape soda" ], "title": "Fuzzy Pusser recipe", - "url": "http://www.drinksmixer.com/drink3725.html" + "url": "https://www.drinksmixer.com/drink3725.html" }, { "directions": "Mix both ingredients in a shot glass. Tilt head back. Swallow.", @@ -28885,7 +28885,7 @@ "peach schnapps" ], "title": "Fuzzy Russian recipe", - "url": "http://www.drinksmixer.com/drink3726.html" + "url": "https://www.drinksmixer.com/drink3726.html" }, { "directions": "Pour a double shot glass half full of vodka. Pour the peach schnapps into the next quarter. Pour the triple sec in the remaining quarter. Stir and shoot.", @@ -28895,7 +28895,7 @@ "triple sec" ], "title": "Fuzzy Screw Shot recipe", - "url": "http://www.drinksmixer.com/drink3727.html" + "url": "https://www.drinksmixer.com/drink3727.html" }, { "directions": "Fill glass half with ice, add vodka, peach schnapps, and then orange juice. Stir.", @@ -28905,7 +28905,7 @@ "orange juice" ], "title": "Fuzzy Screw recipe", - "url": "http://www.drinksmixer.com/drink3728.html" + "url": "https://www.drinksmixer.com/drink3728.html" }, { "directions": "Mix ingredients together and top with ice.", @@ -28914,7 +28914,7 @@ "cranberry juice" ], "title": "Fuzzyberry recipe", - "url": "http://www.drinksmixer.com/drink3729.html" + "url": "https://www.drinksmixer.com/drink3729.html" }, { "directions": "Chill both ingredients by placing the bottles in the freezer for at least 1 hour. You should also chill the shot glasses you will be using the same way. Pour both ingredients into a chilled shot glass and enjoy.", @@ -28923,7 +28923,7 @@ "Absolut\u00ae vodka" ], "title": "G Bomb recipe", - "url": "http://www.drinksmixer.com/drink3730.html" + "url": "https://www.drinksmixer.com/drink3730.html" }, { "directions": "Mix all ingredients in tin over ice. Strain into shot glasses and enjoy!", @@ -28937,7 +28937,7 @@ "grenadine syrup" ], "title": "G. T. O. recipe", - "url": "http://www.drinksmixer.com/drink3731.html" + "url": "https://www.drinksmixer.com/drink3731.html" }, { "directions": "Layer irish cream on top of amaretto.", @@ -28946,7 +28946,7 @@ "Irish cream" ], "title": "G4 recipe", - "url": "http://www.drinksmixer.com/drink3733.html" + "url": "https://www.drinksmixer.com/drink3733.html" }, { "directions": "Shake well and serve in a cocktail glass. This is a home cocktail of American/Internet Bar del Pozzo, Pavia, Italy.", @@ -28957,7 +28957,7 @@ "syrup of roses" ], "title": "Gagliardo recipe", - "url": "http://www.drinksmixer.com/drink3734.html" + "url": "https://www.drinksmixer.com/drink3734.html" }, { "directions": "Pour vodka over ice in a collins glass. Add sprite and top with lemon juice. Garnish with a lemon slice.", @@ -28967,7 +28967,7 @@ "lemon juice" ], "title": "Gailwarning recipe", - "url": "http://www.drinksmixer.com/drink3735.html" + "url": "https://www.drinksmixer.com/drink3735.html" }, { "directions": "Pour galliano into a shot glass, float hot filter coffee over it and top with lightly thickened cream as to create three layers.", @@ -28977,7 +28977,7 @@ "cream" ], "title": "Galliano Hotshot #2 recipe", - "url": "http://www.drinksmixer.com/drink3736.html" + "url": "https://www.drinksmixer.com/drink3736.html" }, { "directions": "Layer galliano, then hot coffee, then cream. Sprinkle with a pinch of nutmeg.", @@ -28988,7 +28988,7 @@ "nutmeg" ], "title": "Galliano Hotshot recipe", - "url": "http://www.drinksmixer.com/drink3737.html" + "url": "https://www.drinksmixer.com/drink3737.html" }, { "directions": "Serve with ice. Stir vigorously until it has the consistency and appearance of iced tea.", @@ -28999,7 +28999,7 @@ "ice" ], "title": "Galliano Island Iced Tea recipe", - "url": "http://www.drinksmixer.com/drink3738.html" + "url": "https://www.drinksmixer.com/drink3738.html" }, { "directions": "Boil water, corn syrup and sugar for 5 minutes. Add the remaining ingredients and stir. Cover and let stand 1 month.", @@ -29013,7 +29013,7 @@ "vanilla extract" ], "title": "Galliano Liqueur recipe", - "url": "http://www.drinksmixer.com/drink3739.html" + "url": "https://www.drinksmixer.com/drink3739.html" }, { "directions": "Combine all ingredients in a shaker. Shake well and strain into a suitable glass.", @@ -29025,7 +29025,7 @@ "ice" ], "title": "Gangbuster Punch recipe", - "url": "http://www.drinksmixer.com/drink3741.html" + "url": "https://www.drinksmixer.com/drink3741.html" }, { "directions": "Take a highball glass or anything that will hold 12 oz. of soda and pour the soda in the glass. Next take one shot of the captain morgan's spiced rum and add it to the mountain dew. Finally, add one shot of the johnnie walker red label to the mix. Stir it and enjoy.", @@ -29035,7 +29035,7 @@ "Johnnie Walker\u00ae Scotch whisky" ], "title": "Ganggreen recipe", - "url": "http://www.drinksmixer.com/drink3742.html" + "url": "https://www.drinksmixer.com/drink3742.html" }, { "directions": "Mix all ingredients in shaker tin filled with ice. Chill. Strain into shot glass.", @@ -29045,7 +29045,7 @@ "Bailey's\u00ae Irish cream" ], "title": "Gangreen recipe", - "url": "http://www.drinksmixer.com/drink3743.html" + "url": "https://www.drinksmixer.com/drink3743.html" }, { "directions": "In a shaker half-filled with ice cubes, combine the rum, creme de cacao, and heavy cream. Shake well. Strain into a cocktail glass. Drop the cherry brandy into the center of the drink.", @@ -29056,7 +29056,7 @@ "cherry brandy" ], "title": "Gareth Glowworm recipe", - "url": "http://www.drinksmixer.com/drink3744.html" + "url": "https://www.drinksmixer.com/drink3744.html" }, { "directions": "Pour in rum, add triple sec, orange juice and pineapple juice, and serve.", @@ -29067,7 +29067,7 @@ "triple sec" ], "title": "Gary's Poison recipe", - "url": "http://www.drinksmixer.com/drink3745.html" + "url": "https://www.drinksmixer.com/drink3745.html" }, { "directions": "In a shaker half-filled with ice cubes, combine the tequila, lemon juice, and lime juice. Shake well. Strain into an old-fashioned glass almost filled with crushed ice. Drizzle the cherry brandy over the top.", @@ -29079,7 +29079,7 @@ "cherry brandy" ], "title": "Gates of Hell recipe", - "url": "http://www.drinksmixer.com/drink3746.html" + "url": "https://www.drinksmixer.com/drink3746.html" }, { "directions": "Pour midori and rum over ice, and top off with sweet and sour mix.", @@ -29090,7 +29090,7 @@ "ice" ], "title": "Gator Piss recipe", - "url": "http://www.drinksmixer.com/drink3747.html" + "url": "https://www.drinksmixer.com/drink3747.html" }, { "directions": "Pour ingredients over ice cubes in a tall glass, stir and serve.", @@ -29101,7 +29101,7 @@ "Arrow\u00ae triple sec" ], "title": "Gator Wizz recipe", - "url": "http://www.drinksmixer.com/drink3748.html" + "url": "https://www.drinksmixer.com/drink3748.html" }, { "directions": "Combine all ingredients (except cherry) with 1 cup of crushed ice in an electric blender. Blend at a low speed for a short length of time. Pour into an old-fashioned glass, add the cherry on top, and serve.", @@ -29113,7 +29113,7 @@ "cherry" ], "title": "Gauguin recipe", - "url": "http://www.drinksmixer.com/drink3749.html" + "url": "https://www.drinksmixer.com/drink3749.html" }, { "directions": "In a blender, pour in ice first, then the sweet and sour mix, followed by the strawberry margarita mix, followed by the tequila and triple sec. Blend until you have a nice mix, pour into chilled glass or mug, top with the cherry.", @@ -29125,7 +29125,7 @@ "cherry" ], "title": "Gayley Avenue Margarita recipe", - "url": "http://www.drinksmixer.com/drink3750.html" + "url": "https://www.drinksmixer.com/drink3750.html" }, { "directions": "Mix first two ingredients: fill with pineapple juice.", @@ -29135,7 +29135,7 @@ "pineapple juice" ], "title": "Geisha recipe", - "url": "http://www.drinksmixer.com/drink3751.html" + "url": "https://www.drinksmixer.com/drink3751.html" }, { "directions": "Combine the lime juice, club soda, and sugar into a collins glass. Stir, then add ice cubes, anisette, and gin. Stir again. Fill drink with ginger ale. Stir well and serve.", @@ -29148,7 +29148,7 @@ "ginger ale" ], "title": "General Lee recipe", - "url": "http://www.drinksmixer.com/drink3752.html" + "url": "https://www.drinksmixer.com/drink3752.html" }, { "directions": "Pour liquors in first, then add zima.", @@ -29161,7 +29161,7 @@ "Zima" ], "title": "Generation X recipe", - "url": "http://www.drinksmixer.com/drink3753.html" + "url": "https://www.drinksmixer.com/drink3753.html" }, { "directions": "Pour vodka and lime juice over ice. Fill with sprite.", @@ -29170,7 +29170,7 @@ "lime juice" ], "title": "Generic Kamikaze recipe", - "url": "http://www.drinksmixer.com/drink3754.html" + "url": "https://www.drinksmixer.com/drink3754.html" }, { "directions": "In a mixing glass half-filled with ice cubes, combine the gin and vermouth. Stir well. Strain into a cocktail glass. Garnish with the onions.", @@ -29180,7 +29180,7 @@ "onions" ], "title": "Gent Of The Jury recipe", - "url": "http://www.drinksmixer.com/drink3755.html" + "url": "https://www.drinksmixer.com/drink3755.html" }, { "directions": "Mix together in a highball glass, add some ice and a straw. Serve.", @@ -29191,7 +29191,7 @@ "orange juice" ], "title": "Gentle Ben recipe", - "url": "http://www.drinksmixer.com/drink3756.html" + "url": "https://www.drinksmixer.com/drink3756.html" }, { "directions": "In an old-fashioned glass almost filled with ice cubes, combine all of the ingredients. Stir well.", @@ -29202,7 +29202,7 @@ "club soda" ], "title": "Gentleman's Club recipe", - "url": "http://www.drinksmixer.com/drink3757.html" + "url": "https://www.drinksmixer.com/drink3757.html" }, { "directions": "Combine all of the ingredients in a shaker, fill with ice and shake until the shaker is well frosted. Strain into a tall glass and garnish with a slice of pineapple and cherry.", @@ -29217,7 +29217,7 @@ "Angostura\u00ae bitters" ], "title": "Genuine Singapore Sling recipe", - "url": "http://www.drinksmixer.com/drink3758.html" + "url": "https://www.drinksmixer.com/drink3758.html" }, { "directions": "Pour george dickel over ice into a tall glass. Add ginger ale, and stir.", @@ -29226,7 +29226,7 @@ "ginger ale" ], "title": "George and Ginger recipe", - "url": "http://www.drinksmixer.com/drink3759.html" + "url": "https://www.drinksmixer.com/drink3759.html" }, { "directions": "In a highball glass filled with ice, add southern comfort, peach schnapps and fill with orange juice. Mix. Top with a dash of grenadine. Garnish with cherry and serve.", @@ -29237,7 +29237,7 @@ "grenadine syrup" ], "title": "Georgia Peach #2 recipe", - "url": "http://www.drinksmixer.com/drink3760.html" + "url": "https://www.drinksmixer.com/drink3760.html" }, { "directions": "Fill collins glass with ice, add vodka, gin, and rum. Fill with sweet and sour mix. Pour peach schnapps on top.", @@ -29249,7 +29249,7 @@ "peach schnapps" ], "title": "Georgia Peach Iced Tea recipe", - "url": "http://www.drinksmixer.com/drink3761.html" + "url": "https://www.drinksmixer.com/drink3761.html" }, { "directions": "Shake with ice. Pour into a tall glass. Garnish with orange slice and a cherry.", @@ -29262,7 +29262,7 @@ "grenadine syrup" ], "title": "Georgia Pie recipe", - "url": "http://www.drinksmixer.com/drink3762.html" + "url": "https://www.drinksmixer.com/drink3762.html" }, { "directions": "Fill glass with large ice cubes. Mix alcoholic ingredients in the glass. Fill the rest of the glass with dole pineapple-orange juice and stir.", @@ -29274,7 +29274,7 @@ "fruit juice" ], "title": "Georgia Tea recipe", - "url": "http://www.drinksmixer.com/drink3763.html" + "url": "https://www.drinksmixer.com/drink3763.html" }, { "directions": "Combine and blend all four ingredients and serve in a highball glass with a lime garnish.", @@ -29285,7 +29285,7 @@ "sweet and sour mix" ], "title": "Georgian Sunrise recipe", - "url": "http://www.drinksmixer.com/drink3764.html" + "url": "https://www.drinksmixer.com/drink3764.html" }, { "directions": "In a shaker, half filled with crushed ice, combine tequila and apfelkorn. Shake well. Strain into a high-ball glass filled with a few ice cubes. Fill up with orange juice. Serve with salt and lemon as a usual tequila shot.", @@ -29297,7 +29297,7 @@ "lemons" ], "title": "German Hooker (Die Deutsche Nutte) recipe", - "url": "http://www.drinksmixer.com/drink3765.html" + "url": "https://www.drinksmixer.com/drink3765.html" }, { "directions": "Mix raspberry liqueur, vodka, and pineapple juice in the mixer, shake, strain, pour into glass, then add splash of cranberry juice.", @@ -29308,7 +29308,7 @@ "cranberry juice" ], "title": "Get Laid recipe", - "url": "http://www.drinksmixer.com/drink3766.html" + "url": "https://www.drinksmixer.com/drink3766.html" }, { "directions": "Start with the ice, add the vodka then the liquor then the ginger ale.", @@ -29318,7 +29318,7 @@ "ginger ale" ], "title": "Geting recipe", - "url": "http://www.drinksmixer.com/drink3767.html" + "url": "https://www.drinksmixer.com/drink3767.html" }, { "directions": "Pour the galliano liqueur over ice cubes. Fill the remainder of the glass with ginger ale, and serve.", @@ -29327,7 +29327,7 @@ "ginger ale" ], "title": "GG recipe", - "url": "http://www.drinksmixer.com/drink3768.html" + "url": "https://www.drinksmixer.com/drink3768.html" }, { "directions": "Stir gin and vermouth over ice cubes in a mixing glass. Strain into a cocktail glass. Add the cocktail onions and serve.", @@ -29337,7 +29337,7 @@ "onions" ], "title": "Gibson recipe", - "url": "http://www.drinksmixer.com/drink3769.html" + "url": "https://www.drinksmixer.com/drink3769.html" }, { "directions": "Add all ingredients in collins glass w/ice and stir.", @@ -29350,7 +29350,7 @@ "Mountain Dew\u00ae citrus soda" ], "title": "Gideon's Green Dinosaur recipe", - "url": "http://www.drinksmixer.com/drink3770.html" + "url": "https://www.drinksmixer.com/drink3770.html" }, { "directions": "Mix all ingredients in shaker, top with orange juice.", @@ -29364,7 +29364,7 @@ "orange juice" ], "title": "Gila Monster recipe", - "url": "http://www.drinksmixer.com/drink3771.html" + "url": "https://www.drinksmixer.com/drink3771.html" }, { "directions": "Shake all ingredients with ice, strain into a cocktail glass, and serve.", @@ -29376,7 +29376,7 @@ "orange bitters" ], "title": "Gilroy Cocktail recipe", - "url": "http://www.drinksmixer.com/drink3772.html" + "url": "https://www.drinksmixer.com/drink3772.html" }, { "directions": "Fill the glass to 2/3 with ice cubes. Shake the gin and lime and pour into the glass.", @@ -29385,7 +29385,7 @@ "Rose's\u00ae lime juice" ], "title": "Gimlet #2 recipe", - "url": "http://www.drinksmixer.com/drink3773.html" + "url": "https://www.drinksmixer.com/drink3773.html" }, { "directions": "In a shaker half-filled with ice cubes, combine the gin, lemon juice, and sugar. Shake well. Strain into a highball glass almost filled with ice cubes. Top with the tonic water.", @@ -29396,7 +29396,7 @@ "tonic water" ], "title": "Gin and Bitter Lemon recipe", - "url": "http://www.drinksmixer.com/drink3775.html" + "url": "https://www.drinksmixer.com/drink3775.html" }, { "directions": "Stir gin and vermouth in a cocktail glass. (No ice is used in this drink)", @@ -29405,7 +29405,7 @@ "sweet vermouth" ], "title": "Gin and It recipe", - "url": "http://www.drinksmixer.com/drink3776.html" + "url": "https://www.drinksmixer.com/drink3776.html" }, { "directions": "In a highball glass almost filled with ice cubes, combine the gin, tonic water, and bitters. Stir well and garnish with the lemon twist.", @@ -29416,7 +29416,7 @@ "lemon" ], "title": "Gin and Pink recipe", - "url": "http://www.drinksmixer.com/drink3777.html" + "url": "https://www.drinksmixer.com/drink3777.html" }, { "directions": "In a shaker half-filled with ice cubes, combine all of the ingredients. Shake well. Strain into a cocktail glass.", @@ -29427,7 +29427,7 @@ "grenadine syrup" ], "title": "Gin and Sin recipe", - "url": "http://www.drinksmixer.com/drink3778.html" + "url": "https://www.drinksmixer.com/drink3778.html" }, { "directions": "Pour the gin and the tonic water into a highball glass almost filled with ice cubes. Stir well. Garnish with the lime wedge.", @@ -29437,7 +29437,7 @@ "lime" ], "title": "Gin and Tonic recipe", - "url": "http://www.drinksmixer.com/drink3779.html" + "url": "https://www.drinksmixer.com/drink3779.html" }, { "directions": "Mix the gin and juice and fill up with schweppes russian. The gin and juice may be shaken for better taste.", @@ -29447,7 +29447,7 @@ "Schweppes\u00ae Russian tonic water" ], "title": "Gin Balalajka recipe", - "url": "http://www.drinksmixer.com/drink3780.html" + "url": "https://www.drinksmixer.com/drink3780.html" }, { "directions": "Fill the glass about two thirds full of sprite. Pour in the schnapps, then gin. Put ice in glass to cool.", @@ -29457,7 +29457,7 @@ "Sprite\u00ae soda" ], "title": "Gin Blossam recipe", - "url": "http://www.drinksmixer.com/drink3781.html" + "url": "https://www.drinksmixer.com/drink3781.html" }, { "directions": "For the full effect you should use a large folgers coffee can or a metal bucket. First, fill the can half full with ice and add the gin(the whole bottle). Next, add the concentrates and cherries. Finally, shake the can until it's ready to drink.", @@ -29469,7 +29469,7 @@ "cherries" ], "title": "Gin Bucket recipe", - "url": "http://www.drinksmixer.com/drink3782.html" + "url": "https://www.drinksmixer.com/drink3782.html" }, { "directions": "Pour gin and juice of lemon into an old-fashioned glass over ice cubes. Fill with ginger ale, stir, and serve.", @@ -29478,7 +29478,7 @@ "lemons" ], "title": "Gin Buck recipe", - "url": "http://www.drinksmixer.com/drink3783.html" + "url": "https://www.drinksmixer.com/drink3783.html" }, { "directions": "In an old-fashioned glass, dissolve the sugar in the club soda. Add crushed ice until the glass is almost full. Add the gin. Stir well. Garnish with the cherry and the orange and lemon slices.", @@ -29491,7 +29491,7 @@ "orange" ], "title": "Gin Cobbler recipe", - "url": "http://www.drinksmixer.com/drink3784.html" + "url": "https://www.drinksmixer.com/drink3784.html" }, { "directions": "Stir gin and bitters with ice and strain into a cocktail glass. Add the twist of lemon peel and serve.", @@ -29501,7 +29501,7 @@ "lemon" ], "title": "Gin Cocktail recipe", - "url": "http://www.drinksmixer.com/drink3785.html" + "url": "https://www.drinksmixer.com/drink3785.html" }, { "directions": "Stir powdered sugar and 2 oz. carbonated water in a collins glass. Fill glass with ice and add gin. Fill with carbonated water and stir. Add the lemon peel and the orange spiral so that the end of the orange spiral dangles over rim of glass.", @@ -29513,7 +29513,7 @@ "lemon" ], "title": "Gin Cooler recipe", - "url": "http://www.drinksmixer.com/drink3786.html" + "url": "https://www.drinksmixer.com/drink3786.html" }, { "directions": "In a shaker half-filled with ice cubes, combine the wine, lemon juice, sugar, and grenadine. Shake well. Pour into an old-fashioned glass and garnish with the cherry and the orange slice.", @@ -29526,7 +29526,7 @@ "orange" ], "title": "Gin Daisy recipe", - "url": "http://www.drinksmixer.com/drink3787.html" + "url": "https://www.drinksmixer.com/drink3787.html" }, { "directions": "In a shaker half-filled with ice cubes, combine the sugar, lemon juice, and water. Shake well. Strain into a highball glass almost filled with crushed ice. Add the gin. Stir well and garnish with the cherry and the lemon slice.", @@ -29539,7 +29539,7 @@ "lemon" ], "title": "Gin Fix recipe", - "url": "http://www.drinksmixer.com/drink3788.html" + "url": "https://www.drinksmixer.com/drink3788.html" }, { "directions": "Shake gin, juice of lemon, and powdered sugar with ice and strain into a highball glass over two ice cubes. Fill with carbonated water, stir, and serve.", @@ -29550,7 +29550,7 @@ "carbonated water" ], "title": "Gin Fizz recipe", - "url": "http://www.drinksmixer.com/drink3789.html" + "url": "https://www.drinksmixer.com/drink3789.html" }, { "directions": "Pour gin into a highball glass over ice cubes. Fill with carbonated water. Add the twist of lemon peel, stir, and serve.", @@ -29560,7 +29560,7 @@ "lemon" ], "title": "Gin Highball recipe", - "url": "http://www.drinksmixer.com/drink3790.html" + "url": "https://www.drinksmixer.com/drink3790.html" }, { "directions": "Shake all ingredients (except nutmeg) with ice and strain into a collins glass. Sprinkle nutmeg on top and serve.", @@ -29571,7 +29571,7 @@ "nutmeg" ], "title": "Gin Milk Punch recipe", - "url": "http://www.drinksmixer.com/drink3791.html" + "url": "https://www.drinksmixer.com/drink3791.html" }, { "directions": "Pour juice of lime and gin into a highball glass over ice cubes. Fill with carbonated water and stir. Add the wedge of lime and serve.", @@ -29582,7 +29582,7 @@ "lime" ], "title": "Gin Rickey recipe", - "url": "http://www.drinksmixer.com/drink3792.html" + "url": "https://www.drinksmixer.com/drink3792.html" }, { "directions": "Dissolve powdered sugar in water and add gin. Pour into a highball glass over 2 ice cubes. Fill with carbonated water and stir. Float port on top, sprinkle lightly with nutmeg, and serve.", @@ -29595,7 +29595,7 @@ "nutmeg" ], "title": "Gin Sangaree recipe", - "url": "http://www.drinksmixer.com/drink3793.html" + "url": "https://www.drinksmixer.com/drink3793.html" }, { "directions": "Dissolve powdered sugar in mixture of water and juice of lemon. Add gin. Pour into an old-fashioned glass over ice cubes and stir. Add the twist of orange peel and serve.", @@ -29607,7 +29607,7 @@ "orange" ], "title": "Gin Sling recipe", - "url": "http://www.drinksmixer.com/drink3794.html" + "url": "https://www.drinksmixer.com/drink3794.html" }, { "directions": "Muddle sugar with carbonated water and mint sprigs in an old-fashioned glass. Add gin and 1 ice cube. Stir, add the orange slice and the cherry, and serve.", @@ -29620,7 +29620,7 @@ "cherry" ], "title": "Gin Smash recipe", - "url": "http://www.drinksmixer.com/drink3795.html" + "url": "https://www.drinksmixer.com/drink3795.html" }, { "directions": "In a shaker half-filled with ice cubes, combine the gin, lemon juice, and sugar. Shake well. Strain into a sour glass and garnish with the orange slice and the cherry.", @@ -29632,7 +29632,7 @@ "maraschino cherry" ], "title": "Gin Sour recipe", - "url": "http://www.drinksmixer.com/drink3796.html" + "url": "https://www.drinksmixer.com/drink3796.html" }, { "directions": "Stir gin, grenadine, and powdered sugar with ice and strain into a highball glass over ice cubes. Fill with carbonated water and stir. Decorate with the pineapple chunks and the strawberries and serve.", @@ -29645,7 +29645,7 @@ "carbonated water" ], "title": "Gin Squirt recipe", - "url": "http://www.drinksmixer.com/drink3797.html" + "url": "https://www.drinksmixer.com/drink3797.html" }, { "directions": "In a shaker half-filled with ice cubes, combine the lime juice, sugar, gin, and bitters. Shake well. Almost fill a collins glass with ice cubes. Stir until the glass is frosted. Strain the mixture in the shaker into the glass and add the club soda.", @@ -29657,7 +29657,7 @@ "club soda" ], "title": "Gin Swizzle recipe", - "url": "http://www.drinksmixer.com/drink3798.html" + "url": "https://www.drinksmixer.com/drink3798.html" }, { "directions": "Mix powdered sugar and water in an old-fashioned glass. Add gin and one ice cube. Stir, add the twist of lemon peel, and serve.", @@ -29668,7 +29668,7 @@ "lemon" ], "title": "Gin Toddy recipe", - "url": "http://www.drinksmixer.com/drink3799.html" + "url": "https://www.drinksmixer.com/drink3799.html" }, { "directions": "In a shaker half-filled with ice cubes, combine the gin, lemon juice, and sugar. Shake well. Strain into a collins glass almost filled with ice cubes. Add the club soda. Stir well. Drop the cassis into the center of the drink.", @@ -29680,7 +29680,7 @@ "creme de cassis" ], "title": "Gin-Cassis Fizz recipe", - "url": "http://www.drinksmixer.com/drink3800.html" + "url": "https://www.drinksmixer.com/drink3800.html" }, { "directions": "Pour 1 shot of your favorite gin into a highball glass half filled with ice. Add mountain dew till glass is almost filled, then give it a splash of sprite. Stir well, and garnish with a lime wedge.", @@ -29691,7 +29691,7 @@ "lime" ], "title": "Gin-Dew-It recipe", - "url": "http://www.drinksmixer.com/drink3801.html" + "url": "https://www.drinksmixer.com/drink3801.html" }, { "directions": "Pour curacao over ice in a highball glass, then fill the rest of the way up with ginger ale.", @@ -29700,7 +29700,7 @@ "ginger ale" ], "title": "Ginger Swing recipe", - "url": "http://www.drinksmixer.com/drink3802.html" + "url": "https://www.drinksmixer.com/drink3802.html" }, { "directions": "In a cordial glass or shot glass, pour carefully in the order given, so that each ingredient floats on the preceding one.", @@ -29710,7 +29710,7 @@ "Grand Marnier\u00ae orange liqueur" ], "title": "Irish Flag recipe", - "url": "http://www.drinksmixer.com/drink3803.html" + "url": "https://www.drinksmixer.com/drink3803.html" }, { "directions": "Pour the irish mist into a shot glass. Add a splash of green creme de menthe.", @@ -29719,7 +29719,7 @@ "green creme de menthe" ], "title": "Irish Kiss recipe", - "url": "http://www.drinksmixer.com/drink3804.html" + "url": "https://www.drinksmixer.com/drink3804.html" }, { "directions": "Pour equal amounts into a shot glass, and serve.", @@ -29728,7 +29728,7 @@ "Jagermeister\u00ae herbal liqueur" ], "title": "All Night Hunter recipe", - "url": "http://www.drinksmixer.com/drink3805.html" + "url": "https://www.drinksmixer.com/drink3805.html" }, { "directions": "Mix all ingredients in a blender until smooth.", @@ -29742,7 +29742,7 @@ "crushed ice" ], "title": "Hummingbird recipe", - "url": "http://www.drinksmixer.com/drink3806.html" + "url": "https://www.drinksmixer.com/drink3806.html" }, { "directions": "Blend ingredients in a blender with crushed ice. Strain into a hurricane glass, and serve.", @@ -29754,7 +29754,7 @@ "banana" ], "title": "Hummingbird #2 recipe", - "url": "http://www.drinksmixer.com/drink3807.html" + "url": "https://www.drinksmixer.com/drink3807.html" }, { "directions": "Serve in a rocks glass over ice, or straight up in a martini glass.", @@ -29764,7 +29764,7 @@ "orange" ], "title": "O Martini Cocktail recipe", - "url": "http://www.drinksmixer.com/drink3808.html" + "url": "https://www.drinksmixer.com/drink3808.html" }, { "directions": "Serve in a tall glass with ice.", @@ -29774,7 +29774,7 @@ "orange" ], "title": "O & Tonic recipe", - "url": "http://www.drinksmixer.com/drink3809.html" + "url": "https://www.drinksmixer.com/drink3809.html" }, { "directions": "Serve on the rocks. Garnish with a wedge of orange.", @@ -29786,7 +29786,7 @@ "orange" ], "title": "O Cosmopolitan recipe", - "url": "http://www.drinksmixer.com/drink3810.html" + "url": "https://www.drinksmixer.com/drink3810.html" }, { "directions": "Stir together in a tall glass over ice. Garnish with an orange wedge.", @@ -29796,7 +29796,7 @@ "orange" ], "title": "O & Cranberry recipe", - "url": "http://www.drinksmixer.com/drink3811.html" + "url": "https://www.drinksmixer.com/drink3811.html" }, { "directions": "Shake with ice and strain into a sugar-rimmed martini glass.", @@ -29805,7 +29805,7 @@ "lemonade" ], "title": "Sunset Martini Cocktail recipe", - "url": "http://www.drinksmixer.com/drink3812.html" + "url": "https://www.drinksmixer.com/drink3812.html" }, { "directions": "Shake and serve in a chillled glass with an orange garnish.", @@ -29816,7 +29816,7 @@ "triple sec" ], "title": "Super O Martini Cocktail recipe", - "url": "http://www.drinksmixer.com/drink3813.html" + "url": "https://www.drinksmixer.com/drink3813.html" }, { "directions": "Shake bacardi O and pineapple juice, and pour into a chilled glass. Float raspberry liqueur on top.", @@ -29826,7 +29826,7 @@ "raspberry liqueur" ], "title": "Bacardi O Tini recipe", - "url": "http://www.drinksmixer.com/drink3814.html" + "url": "https://www.drinksmixer.com/drink3814.html" }, { "directions": "Shake ingredients with ice, strain into a martini glass and garnish with a strawberry.", @@ -29837,7 +29837,7 @@ "cranberry juice" ], "title": "Fruit Blast Martini Cocktail recipe", - "url": "http://www.drinksmixer.com/drink3815.html" + "url": "https://www.drinksmixer.com/drink3815.html" }, { "directions": "Blend ingredients with ice. Serve in a tall glass and garnish with a slice of orange.", @@ -29849,7 +29849,7 @@ "cranberry juice" ], "title": "Orange Rush recipe", - "url": "http://www.drinksmixer.com/drink3816.html" + "url": "https://www.drinksmixer.com/drink3816.html" }, { "directions": "Blend ingredients with ice and serve.", @@ -29861,7 +29861,7 @@ "orange soda" ], "title": "Punch In The Pants recipe", - "url": "http://www.drinksmixer.com/drink3817.html" + "url": "https://www.drinksmixer.com/drink3817.html" }, { "directions": "Shake ingredients with ice, strain and serve in a chilled martini glass. Garnish with a slice of orange.", @@ -29871,7 +29871,7 @@ "triple sec" ], "title": "Ooh La La Martini Cocktail recipe", - "url": "http://www.drinksmixer.com/drink3818.html" + "url": "https://www.drinksmixer.com/drink3818.html" }, { "directions": "Shake ingredients with ice, strain and serve into a chilled martini glass. Garnish with a twist of orange.", @@ -29881,7 +29881,7 @@ "cream" ], "title": "O Circle Martini recipe", - "url": "http://www.drinksmixer.com/drink3819.html" + "url": "https://www.drinksmixer.com/drink3819.html" }, { "directions": "Shake with ice and serve over ice.", @@ -29891,7 +29891,7 @@ "passion-fruit juice" ], "title": "Chicago View recipe", - "url": "http://www.drinksmixer.com/drink3820.html" + "url": "https://www.drinksmixer.com/drink3820.html" }, { "directions": "Serve over ice in a cocktail glass. Garnish with melon, strawberry and sugar-coated orange.", @@ -29902,7 +29902,7 @@ "cranberry juice" ], "title": "Sophisticate recipe", - "url": "http://www.drinksmixer.com/drink3821.html" + "url": "https://www.drinksmixer.com/drink3821.html" }, { "directions": "Serve together in a sugar-rimmed glass garnished with a slice of grapefruit.", @@ -29914,7 +29914,7 @@ "lemon-lime soda" ], "title": "O Look Martini Cocktail recipe", - "url": "http://www.drinksmixer.com/drink3822.html" + "url": "https://www.drinksmixer.com/drink3822.html" }, { "directions": "Shake ingredients with ice and strain into a chilled martini glass. Squeeze orange juice into the bottom of the glass, and garnish with a twist of orange.", @@ -29927,7 +29927,7 @@ "orange" ], "title": "Tango Martini Cocktail recipe", - "url": "http://www.drinksmixer.com/drink3823.html" + "url": "https://www.drinksmixer.com/drink3823.html" }, { "directions": "Serve in a chilled glass garnished with a lime and maraschino cherry.", @@ -29939,7 +29939,7 @@ "maraschino cherry" ], "title": "Bacardi Yeah Martini Cocktail recipe", - "url": "http://www.drinksmixer.com/drink3824.html" + "url": "https://www.drinksmixer.com/drink3824.html" }, { "directions": "Blend ingredients and serve in a powdered sugar rimmed glass. Garnish with an orange wheel.", @@ -29949,7 +29949,7 @@ "orange juice" ], "title": "Orangesicle recipe", - "url": "http://www.drinksmixer.com/drink3825.html" + "url": "https://www.drinksmixer.com/drink3825.html" }, { "directions": "Shake ingredients and strain into a cocktail glass. Garnish with a lime and two maraschino cherries on both ends of the lime.", @@ -29961,7 +29961,7 @@ "maraschino cherries" ], "title": "The Leap Frog recipe", - "url": "http://www.drinksmixer.com/drink3826.html" + "url": "https://www.drinksmixer.com/drink3826.html" }, { "directions": "Serve in a chilled cocktail glass. Garnish with a twist of lemon.", @@ -29973,7 +29973,7 @@ "lemon" ], "title": "Satin Rouge recipe", - "url": "http://www.drinksmixer.com/drink3827.html" + "url": "https://www.drinksmixer.com/drink3827.html" }, { "directions": "Shake, strain and serve in a chilled martini glass. Garnish with a twist of orange.", @@ -29985,7 +29985,7 @@ "orange" ], "title": "Rue L'Orange recipe", - "url": "http://www.drinksmixer.com/drink3828.html" + "url": "https://www.drinksmixer.com/drink3828.html" }, { "directions": "Shake with ice and strain into a chilled martini glass.", @@ -29995,7 +29995,7 @@ "cranberry juice" ], "title": "Sake O Martini recipe", - "url": "http://www.drinksmixer.com/drink3829.html" + "url": "https://www.drinksmixer.com/drink3829.html" }, { "directions": "Shake ingredients with ice. Strain into a chilled martini glass. Top with grenadine.", @@ -30006,7 +30006,7 @@ "grenadine syrup" ], "title": "O My Martini recipe", - "url": "http://www.drinksmixer.com/drink3830.html" + "url": "https://www.drinksmixer.com/drink3830.html" }, { "directions": "Blend ingredients with ice and serve in a tall glass. Garnish with a maraschino cherry and a slice of orange.", @@ -30018,7 +30018,7 @@ "orange" ], "title": "O Madras recipe", - "url": "http://www.drinksmixer.com/drink3831.html" + "url": "https://www.drinksmixer.com/drink3831.html" }, { "directions": "Shake ingredients with ice and serve in a rocks glass over ice.", @@ -30027,7 +30027,7 @@ "Irish cream" ], "title": "O & Cream recipe", - "url": "http://www.drinksmixer.com/drink3832.html" + "url": "https://www.drinksmixer.com/drink3832.html" }, { "directions": "Add bacardi O and coffee to a cup. Top with irish cream and green creme de menthe.", @@ -30038,7 +30038,7 @@ "green creme de menthe" ], "title": "Bacardi O Coffee recipe", - "url": "http://www.drinksmixer.com/drink3833.html" + "url": "https://www.drinksmixer.com/drink3833.html" }, { "directions": "Blend with ice until smooth and pour into an exotic glass.", @@ -30049,7 +30049,7 @@ "condensed milk" ], "title": "China Girl recipe", - "url": "http://www.drinksmixer.com/drink3834.html" + "url": "https://www.drinksmixer.com/drink3834.html" }, { "directions": "Make like a Bloody Mary, improvising with ingredients until you find your preferred taste and texture. Try adding extra vodka to thin out the sauce a little. When heated, this also makes a great sauce for food.", @@ -30063,7 +30063,7 @@ "pineapple" ], "title": "Chinese Mary recipe", - "url": "http://www.drinksmixer.com/drink3835.html" + "url": "https://www.drinksmixer.com/drink3835.html" }, { "directions": "Shake with ice and strain into a cocktail glass.", @@ -30074,7 +30074,7 @@ "grenadine syrup" ], "title": "Shanghai recipe", - "url": "http://www.drinksmixer.com/drink3836.html" + "url": "https://www.drinksmixer.com/drink3836.html" }, { "directions": "Cover rim of glass with brown sugar. Fill glass with crushed ice. Pour cointreau over ice, followed by amarula cream. Add garnish. ", @@ -30083,7 +30083,7 @@ "Cointreau\u00ae orange liqueur" ], "title": "African Breeze recipe", - "url": "http://www.drinksmixer.com/drink3837.html" + "url": "https://www.drinksmixer.com/drink3837.html" }, { "directions": "Mix, shake, stir and strain into a chilled cocktail glass.", @@ -30094,7 +30094,7 @@ "grenadine syrup" ], "title": "El Salvador recipe", - "url": "http://www.drinksmixer.com/drink3838.html" + "url": "https://www.drinksmixer.com/drink3838.html" }, { "directions": "Shake well with cracked ice and strain into a chilled cocktail glass.", @@ -30104,7 +30104,7 @@ "cream" ], "title": "Panama Cocktail recipe", - "url": "http://www.drinksmixer.com/drink3839.html" + "url": "https://www.drinksmixer.com/drink3839.html" }, { "directions": "Shake ingredients over ice and strain into a chilled cocktail glass.", @@ -30115,7 +30115,7 @@ "grenadine syrup" ], "title": "Panama Red recipe", - "url": "http://www.drinksmixer.com/drink3840.html" + "url": "https://www.drinksmixer.com/drink3840.html" }, { "directions": "Shake ingredients well and serve over ice.", @@ -30125,7 +30125,7 @@ "cream" ], "title": "Panama recipe", - "url": "http://www.drinksmixer.com/drink3841.html" + "url": "https://www.drinksmixer.com/drink3841.html" }, { "directions": "Pour all ingredients into a mixing glass or cocktail shaker half-filled with ice cubes. Stir well to combine, and chill. Strain into a chilled martini glass, and serve.", @@ -30135,7 +30135,7 @@ "Jagermeister\u00ae herbal liqueur" ], "title": "Blow My Skull Off (Almost) recipe", - "url": "http://www.drinksmixer.com/drink3842.html" + "url": "https://www.drinksmixer.com/drink3842.html" }, { "directions": "Put the tabasco sauce in a shot glass. This is the firestarter. The tequila shot is the propellant which spreads the fire. The peppermint schnapps shot brings the fire under control, and finally, the beer puts out the last of the flames.", @@ -30146,7 +30146,7 @@ "beer" ], "title": "Wildfire recipe", - "url": "http://www.drinksmixer.com/drink3843.html" + "url": "https://www.drinksmixer.com/drink3843.html" }, { "directions": "Stir gin and frangelico hazelnut liqueur with ice, strain into a cold cocktail glass, and garnish with some freshly grated nutmeg.", @@ -30156,7 +30156,7 @@ "nutmeg" ], "title": "Ginelico recipe", - "url": "http://www.drinksmixer.com/drink3844.html" + "url": "https://www.drinksmixer.com/drink3844.html" }, { "directions": "1. Put the sherry, sugar, spices, and lemon juice into a large mixing bowl, and stir until well-blended. Leave to soak for at least half an hour.\r", @@ -30170,7 +30170,7 @@ "ginger" ], "title": "Ginger Syllabub recipe", - "url": "http://www.drinksmixer.com/drink3845.html" + "url": "https://www.drinksmixer.com/drink3845.html" }, { "directions": "Mix the ingredients with ice in a shaker and pour into a highball glass.", @@ -30180,7 +30180,7 @@ "Bailey's\u00ae Irish cream" ], "title": "Gingerbread Man #2 recipe", - "url": "http://www.drinksmixer.com/drink3846.html" + "url": "https://www.drinksmixer.com/drink3846.html" }, { "directions": "Layer in sequence in a shot glass.", @@ -30190,7 +30190,7 @@ "Goldschlager\u00ae cinnamon schnapps" ], "title": "Gingerbread Man recipe", - "url": "http://www.drinksmixer.com/drink3847.html" + "url": "https://www.drinksmixer.com/drink3847.html" }, { "directions": "Shake kahlua, bailey's irish cream, frangelico, and jagermeister in an ice-filled shaker, and strain contents into an ice-filled highball glass. Fill with cola.", @@ -30203,7 +30203,7 @@ "cola" ], "title": "Gingersnap recipe", - "url": "http://www.drinksmixer.com/drink3848.html" + "url": "https://www.drinksmixer.com/drink3848.html" }, { "directions": "Pour liquors over ice. Mix orange juice and ruby red grapefruit juice exactly 50/50 in a separate container. Fill the glass with the juice mixture and stir well.", @@ -30217,7 +30217,7 @@ "grapefruit juice" ], "title": "Ginny's Slammin' Goddess #2 recipe", - "url": "http://www.drinksmixer.com/drink3849.html" + "url": "https://www.drinksmixer.com/drink3849.html" }, { "directions": "Pour liquors over ice. Mix orange juice and grapefruit juice exactly 50/50 in a separate container. Add the juice mixture to the liquors and stir well.", @@ -30230,7 +30230,7 @@ "grapefruit juice" ], "title": "Ginny's Slammin' Goddess recipe", - "url": "http://www.drinksmixer.com/drink3850.html" + "url": "https://www.drinksmixer.com/drink3850.html" }, { "directions": "Pour midori melon liqueur into a hurricane glass over ice. Add vodka and pineapple juice, then float the cranberry juice.", @@ -30241,7 +30241,7 @@ "cranberry juice" ], "title": "Giraffe recipe", - "url": "http://www.drinksmixer.com/drink3851.html" + "url": "https://www.drinksmixer.com/drink3851.html" }, { "directions": "Fill a mug with hot chocolate, add a shot of creme de menthe, stir and enjoy.", @@ -30250,7 +30250,7 @@ "white creme de menthe" ], "title": "Girl Scout Thin Mint Cookie recipe", - "url": "http://www.drinksmixer.com/drink3852.html" + "url": "https://www.drinksmixer.com/drink3852.html" }, { "directions": "Coat the inside of a chilled cocktail glass with dry vermouth.\r", @@ -30261,7 +30261,7 @@ "maraschino liqueur" ], "title": "Girlie Martini recipe", - "url": "http://www.drinksmixer.com/drink3853.html" + "url": "https://www.drinksmixer.com/drink3853.html" }, { "directions": "Mix the amaretto and southern comfort. Drop this mixture into a glass with the orange juice mixed with the 7-up.", @@ -30272,7 +30272,7 @@ "7-Up\u00ae soda" ], "title": "Gladiator recipe", - "url": "http://www.drinksmixer.com/drink3855.html" + "url": "https://www.drinksmixer.com/drink3855.html" }, { "directions": "Fill 3/4 of a shot glass with chilled goldschlager then add 1/4 glass of bud light. Splash grenadine on top for color. Allow the beer to suspend the gold flakes in the glass. Serve immediately.", @@ -30282,7 +30282,7 @@ "grenadine syrup" ], "title": "Glam Trash recipe", - "url": "http://www.drinksmixer.com/drink3856.html" + "url": "https://www.drinksmixer.com/drink3856.html" }, { "directions": "Pour all ingredients over ice in a shaker. Shake well. Strain into glass.", @@ -30296,7 +30296,7 @@ "ice" ], "title": "Glaucoma recipe", - "url": "http://www.drinksmixer.com/drink3857.html" + "url": "https://www.drinksmixer.com/drink3857.html" }, { "directions": "Stir with ice and add more ginger ale (or club soda) to taste. Stir well.", @@ -30307,7 +30307,7 @@ "Maker's Mark\u00ae bourbon whiskey" ], "title": "Glicktail recipe", - "url": "http://www.drinksmixer.com/drink3858.html" + "url": "https://www.drinksmixer.com/drink3858.html" }, { "directions": "Mix in order listed. The blue splash at the end makes the drink aquamarine colored, which is lovely.", @@ -30318,7 +30318,7 @@ "Blue Curacao liqueur" ], "title": "Glitch recipe", - "url": "http://www.drinksmixer.com/drink3859.html" + "url": "https://www.drinksmixer.com/drink3859.html" }, { "directions": "1. Pour the wine and vodka into a large pot. Add spices, fruit and nuts. Turn on the heat and bring the ingredients to a temperature just below the boil. \r", @@ -30335,7 +30335,7 @@ "sugar" ], "title": "Glogg recipe", - "url": "http://www.drinksmixer.com/drink3860.html" + "url": "https://www.drinksmixer.com/drink3860.html" }, { "directions": "1. Combine all the non-alcoholic ingredients in a heavy enamel or stainless steel saucepan, bring to a boil and simmer for 5 minutes. \r", @@ -30353,7 +30353,7 @@ "brandy" ], "title": "Glogg #2 recipe", - "url": "http://www.drinksmixer.com/drink3861.html" + "url": "https://www.drinksmixer.com/drink3861.html" }, { "directions": "Stir with ice. Strain in a cocktail glass. Decorate with a maraschino cherry.", @@ -30364,7 +30364,7 @@ "grenadine syrup" ], "title": "Gloom Raiser recipe", - "url": "http://www.drinksmixer.com/drink3862.html" + "url": "https://www.drinksmixer.com/drink3862.html" }, { "directions": "Fill a highball glass with ice. Pour ingredients in order. Do not mix. Float blue curacao on top.", @@ -30376,7 +30376,7 @@ "Blue Curacao liqueur" ], "title": "Glow-Worm recipe", - "url": "http://www.drinksmixer.com/drink3863.html" + "url": "https://www.drinksmixer.com/drink3863.html" }, { "directions": "Boil sugar and spices in water, leave in the water for 30 minutes. Strain the spiced water and mix with the wine. Heat slowly until short of boiling temperature. (To remove alcohol, let it boil for a while.) You may add lemon or orange juice to taste. Serve in irish coffee cup.", @@ -30389,7 +30389,7 @@ "lemon" ], "title": "Gluehwein recipe", - "url": "http://www.drinksmixer.com/drink3864.html" + "url": "https://www.drinksmixer.com/drink3864.html" }, { "directions": "Mix ingredients together on ice.", @@ -30400,7 +30400,7 @@ "sweet and sour mix" ], "title": "Go Girl! recipe", - "url": "http://www.drinksmixer.com/drink3865.html" + "url": "https://www.drinksmixer.com/drink3865.html" }, { "directions": "Pour whiskey and peach schnapps over ice cubes in a highball glass. Add frozen canned orange banana punch (no water). Add lemon juice and fill the rest with pepsi. Stir well and serve.", @@ -30412,7 +30412,7 @@ "Pepsi\u00ae cola" ], "title": "God's Great Creation recipe", - "url": "http://www.drinksmixer.com/drink3866.html" + "url": "https://www.drinksmixer.com/drink3866.html" }, { "directions": "Shake all ingredients well with cracked ice, strain into a champagne flute, and serve.", @@ -30422,7 +30422,7 @@ "heavy cream" ], "title": "Godchild recipe", - "url": "http://www.drinksmixer.com/drink3867.html" + "url": "https://www.drinksmixer.com/drink3867.html" }, { "directions": "Pour ingredients into an old-fashioned glass over ice and serve. \r", @@ -30431,7 +30431,7 @@ "amaretto almond liqueur" ], "title": "Godfather recipe", - "url": "http://www.drinksmixer.com/drink3868.html" + "url": "https://www.drinksmixer.com/drink3868.html" }, { "directions": "Pour rum, vodka, raspberry liqueur and lime juice into a strainer glass. Chill with ice and strain into your shot glass. Float 151 rum on top of shot. Throw down or ignite and throw down. (Igniting the 151 rum will lower the alcoholic content.)\r", @@ -30443,7 +30443,7 @@ "151 proof rum" ], "title": "Godhead recipe", - "url": "http://www.drinksmixer.com/drink3869.html" + "url": "https://www.drinksmixer.com/drink3869.html" }, { "directions": "Pour hot chocolate into a brandy snifter. Add peppermint schnapps (rumple minze) and godiva, then stir. Top with whipped cream.", @@ -30453,7 +30453,7 @@ "Godiva\u00ae chocolate liqueur" ], "title": "Godiva Peppermint Patty recipe", - "url": "http://www.drinksmixer.com/drink3870.html" + "url": "https://www.drinksmixer.com/drink3870.html" }, { "directions": "Pour vodka and amaretto into an old-fashioned glass over ice and serve.", @@ -30462,7 +30462,7 @@ "amaretto almond liqueur" ], "title": "Godmother recipe", - "url": "http://www.drinksmixer.com/drink3871.html" + "url": "https://www.drinksmixer.com/drink3871.html" }, { "directions": "This is essentially a hot eggnog. You beat an egg, add a tablespoon of honey and a jigger of whisky. Pour this into a irish coffee cup and then fill the glass with warm milk and stir until it's well mixed.", @@ -30473,7 +30473,7 @@ "milk" ], "title": "Gogl-Mogl recipe", - "url": "http://www.drinksmixer.com/drink3872.html" + "url": "https://www.drinksmixer.com/drink3872.html" }, { "directions": "Float goldschlager on top of rumple minze and enjoy.", @@ -30482,7 +30482,7 @@ "Goldschlager\u00ae cinnamon schnapps" ], "title": "Gold Baron recipe", - "url": "http://www.drinksmixer.com/drink3873.html" + "url": "https://www.drinksmixer.com/drink3873.html" }, { "directions": "Fill a short glass with ice. Pour jose cuervo gold tequila into the glass until about half full (or more to taste). Top off with the orange juice. Squeeze a slice of lime into the drink, and serve.", @@ -30492,7 +30492,7 @@ "orange juice" ], "title": "Gold Driver recipe", - "url": "http://www.drinksmixer.com/drink3874.html" + "url": "https://www.drinksmixer.com/drink3874.html" }, { "directions": "Shake and strain into an ice-filled highball glass. Garnish with a slice of lime.", @@ -30502,7 +30502,7 @@ "orange juice" ], "title": "Gold Record recipe", - "url": "http://www.drinksmixer.com/drink3875.html" + "url": "https://www.drinksmixer.com/drink3875.html" }, { "directions": "Pour the kahlua and bailey's irish cream into a glass. Fill most of the glass with milk, leaving enough room for the goldschlager. Float the goldschlager using the back of a spoon.", @@ -30513,7 +30513,7 @@ "Goldschlager\u00ae cinnamon schnapps" ], "title": "The Gold, The Bad, and The Ugly recipe", - "url": "http://www.drinksmixer.com/drink3876.html" + "url": "https://www.drinksmixer.com/drink3876.html" }, { "directions": "Pour into a shot glass, and pray for the best.", @@ -30522,7 +30522,7 @@ "Goldschlager\u00ae cinnamon schnapps" ], "title": "Golddigger recipe", - "url": "http://www.drinksmixer.com/drink3877.html" + "url": "https://www.drinksmixer.com/drink3877.html" }, { "directions": "Mix the two ingredients in a shot glass.", @@ -30531,7 +30531,7 @@ "DeKuyper\u00ae Sour Apple Pucker schnapps" ], "title": "Golden Apple recipe", - "url": "http://www.drinksmixer.com/drink3878.html" + "url": "https://www.drinksmixer.com/drink3878.html" }, { "directions": "Add the shots of goldschlager and peppermint schnapps to a mason jar, then fill with eggnog.", @@ -30541,7 +30541,7 @@ "Arrow\u00ae peppermint schnapps" ], "title": "Golden Blizzard recipe", - "url": "http://www.drinksmixer.com/drink3879.html" + "url": "https://www.drinksmixer.com/drink3879.html" }, { "directions": "In a shaker half-filled with ice cubes, combine all of the ingredients. Shake well. Strain into a whiskey sour glass.", @@ -30553,7 +30553,7 @@ "egg" ], "title": "Golden Bronx recipe", - "url": "http://www.drinksmixer.com/drink3880.html" + "url": "https://www.drinksmixer.com/drink3880.html" }, { "directions": "Add all of the ingredients in a cocktail shaker half filled with ice. Shake vigorously. Strain into a large chilled champagne flute. Garnish with shaved dark chocolate.", @@ -30566,7 +30566,7 @@ "sugar syrup" ], "title": "Golden Cadillac #2 recipe", - "url": "http://www.drinksmixer.com/drink3881.html" + "url": "https://www.drinksmixer.com/drink3881.html" }, { "directions": "Combine all ingredients with 1/2 cup crushed ice in an electric blender. Blend at low speed for ten seconds. Strain into a champagne flute and serve.", @@ -30576,7 +30576,7 @@ "light cream" ], "title": "Golden Cadillac recipe", - "url": "http://www.drinksmixer.com/drink3882.html" + "url": "https://www.drinksmixer.com/drink3882.html" }, { "directions": "Pour the cola into a tumbler. Add the goldschlager and stir gently. Consume.", @@ -30585,7 +30585,7 @@ "Goldschlager\u00ae cinnamon schnapps" ], "title": "Golden Coke recipe", - "url": "http://www.drinksmixer.com/drink3883.html" + "url": "https://www.drinksmixer.com/drink3883.html" }, { "directions": "Fill a highball glass halfway with crushed ice. Add alcohol contents over ice. Pour coke over mixture. Mix well.", @@ -30597,7 +30597,7 @@ "Coca-Cola\u00ae" ], "title": "Golden Cola recipe", - "url": "http://www.drinksmixer.com/drink3884.html" + "url": "https://www.drinksmixer.com/drink3884.html" }, { "directions": "Mix, then pour into shot glass.", @@ -30607,7 +30607,7 @@ "Jagermeister\u00ae herbal liqueur" ], "title": "Golden Comfort recipe", - "url": "http://www.drinksmixer.com/drink3885.html" + "url": "https://www.drinksmixer.com/drink3885.html" }, { "directions": "Shake all ingredients with ice, strain into a cocktail glass, and serve.", @@ -30617,7 +30617,7 @@ "orange juice" ], "title": "Golden Daze recipe", - "url": "http://www.drinksmixer.com/drink3886.html" + "url": "https://www.drinksmixer.com/drink3886.html" }, { "directions": "Fill shaker glass one third full of ice cubes. Add galliano, cream de cacao, triple sec, orange juice (non pulp), and light cream. Shake vigorously until creamy and strain into a champagne flute, or use a blender and blend until creamy.\r", @@ -30630,7 +30630,7 @@ "ice cubes" ], "title": "Golden Dream recipe", - "url": "http://www.drinksmixer.com/drink3887.html" + "url": "https://www.drinksmixer.com/drink3887.html" }, { "directions": "Pour goldschlager schnapps into a glass, add a nut, then layer the baileys irish cream on top.", @@ -30640,7 +30640,7 @@ "nut" ], "title": "Golden Eye recipe", - "url": "http://www.drinksmixer.com/drink3888.html" + "url": "https://www.drinksmixer.com/drink3888.html" }, { "directions": "Shake all ingredients (except carbonated water) with ice and strain into a highball glass. Fill with carbonated water and serve.", @@ -30652,7 +30652,7 @@ "carbonated water" ], "title": "Golden Fizz recipe", - "url": "http://www.drinksmixer.com/drink3889.html" + "url": "https://www.drinksmixer.com/drink3889.html" }, { "directions": "Pour goldschlager into a shot glass. Add a splash of tabasco sauce. Drink and run for water.", @@ -30661,7 +30661,7 @@ "Tabasco\u00ae sauce" ], "title": "Golden Furnace recipe", - "url": "http://www.drinksmixer.com/drink3890.html" + "url": "https://www.drinksmixer.com/drink3890.html" }, { "directions": "Pour the concentrate and the apple juice into the punch bowl. Stir the ginger ale into the bowl. Spoon in sherbet or add an ice ring. Serve immediately.", @@ -30674,7 +30674,7 @@ "ice" ], "title": "Golden Glow Punch recipe", - "url": "http://www.drinksmixer.com/drink3891.html" + "url": "https://www.drinksmixer.com/drink3891.html" }, { "directions": "Mix above ingredients together with lots of crushed ice. Enjoy!", @@ -30685,7 +30685,7 @@ "orange juice" ], "title": "Golden Miller recipe", - "url": "http://www.drinksmixer.com/drink3892.html" + "url": "https://www.drinksmixer.com/drink3892.html" }, { "directions": "Add goldschlager and butterscotch schnapps to a 1 1/2 oz. shot glass. Fill with bailey's irish cream and serve.", @@ -30695,7 +30695,7 @@ "Bailey's\u00ae Irish cream" ], "title": "Golden Nipple recipe", - "url": "http://www.drinksmixer.com/drink3893.html" + "url": "https://www.drinksmixer.com/drink3893.html" }, { "directions": "Stir rum and banana liqueur with ice. Fill with sprite, and serve.", @@ -30705,7 +30705,7 @@ "Sprite\u00ae soda" ], "title": "Golden Shower recipe", - "url": "http://www.drinksmixer.com/drink3894.html" + "url": "https://www.drinksmixer.com/drink3894.html" }, { "directions": "Pour over lots of ice.", @@ -30716,7 +30716,7 @@ "ice" ], "title": "Golden Sip recipe", - "url": "http://www.drinksmixer.com/drink3895.html" + "url": "https://www.drinksmixer.com/drink3895.html" }, { "directions": "Stir brandy and chartreuse with ice and strain into a cocktail glass. Float unbroken egg yolk on top and serve.", @@ -30726,7 +30726,7 @@ "egg" ], "title": "Golden Slipper recipe", - "url": "http://www.drinksmixer.com/drink3896.html" + "url": "https://www.drinksmixer.com/drink3896.html" }, { "directions": "Pour amaretto, rum, and liqueurs into a mixing glass with/without ice. Top as desired with equal amounts of orange and pineapple juice, and shake well. Serve in a tall glass.", @@ -30740,7 +30740,7 @@ "pineapple juice" ], "title": "Golden Sunrise recipe", - "url": "http://www.drinksmixer.com/drink3897.html" + "url": "https://www.drinksmixer.com/drink3897.html" }, { "directions": "Mix peach schnapps with plain or citrus vodka. Add mandarin oranges.", @@ -30750,7 +30750,7 @@ "mandarins" ], "title": "Goldfish recipe", - "url": "http://www.drinksmixer.com/drink3898.html" + "url": "https://www.drinksmixer.com/drink3898.html" }, { "directions": "Shake with ice, serve straight up.", @@ -30759,7 +30759,7 @@ "lemonade" ], "title": "Goldschlager Lemondrop recipe", - "url": "http://www.drinksmixer.com/drink3899.html" + "url": "https://www.drinksmixer.com/drink3899.html" }, { "directions": "Cocktail can be served on the rocks or blended until smooth.", @@ -30770,7 +30770,7 @@ "ice" ], "title": "Good 'n Plenty recipe", - "url": "http://www.drinksmixer.com/drink3900.html" + "url": "https://www.drinksmixer.com/drink3900.html" }, { "directions": "Shake and strain into an ice-filled hurricane glass. Garnish with a lemon wheel.", @@ -30780,7 +30780,7 @@ "lemonade" ], "title": "Good Fortune recipe", - "url": "http://www.drinksmixer.com/drink3901.html" + "url": "https://www.drinksmixer.com/drink3901.html" }, { "directions": "Mix all ingredients in a mixer with ice. Serve in a small bowl garnished with strawberries or grapes and a straw.", @@ -30794,7 +30794,7 @@ "ice" ], "title": "Good Morning To You My Love recipe", - "url": "http://www.drinksmixer.com/drink3902.html" + "url": "https://www.drinksmixer.com/drink3902.html" }, { "directions": "Combine vanilla ice-cream, sugar, ice, and espresso in a blender and blend until smooth. Add bailey's irish cream and tia maria then stir. Pour into a coffee mug and serve.\r", @@ -30807,7 +30807,7 @@ "ice cubes" ], "title": "Good Morning! recipe", - "url": "http://www.drinksmixer.com/drink3903.html" + "url": "https://www.drinksmixer.com/drink3903.html" }, { "directions": "Fill a tall glass with ice, add all ingredients and shake well.", @@ -30818,7 +30818,7 @@ "pineapple juice" ], "title": "Goombay Smash #2 recipe", - "url": "http://www.drinksmixer.com/drink3904.html" + "url": "https://www.drinksmixer.com/drink3904.html" }, { "directions": "Mix all ingredients in a highball glass with ice and shake. Garnish with an orange slice and cherry.", @@ -30830,7 +30830,7 @@ "orange juice" ], "title": "Goombay Smash recipe", - "url": "http://www.drinksmixer.com/drink3905.html" + "url": "https://www.drinksmixer.com/drink3905.html" }, { "directions": "Just add the 2 ingredients, and shoot it.", @@ -30839,7 +30839,7 @@ "Goldschlager\u00ae cinnamon schnapps" ], "title": "Gorilla Fart #2 recipe", - "url": "http://www.drinksmixer.com/drink3906.html" + "url": "https://www.drinksmixer.com/drink3906.html" }, { "directions": "Pour ingredients into a shot glass and serve.", @@ -30849,7 +30849,7 @@ "Jack Daniel's\u00ae Tennessee whiskey" ], "title": "Gorilla Fart #3 recipe", - "url": "http://www.drinksmixer.com/drink3907.html" + "url": "https://www.drinksmixer.com/drink3907.html" }, { "directions": "Shake and strain, pour into rocks glass, straight up.", @@ -30859,7 +30859,7 @@ "Crown Royal\u00ae Canadian whisky" ], "title": "Gorilla Fart #4 recipe", - "url": "http://www.drinksmixer.com/drink3908.html" + "url": "https://www.drinksmixer.com/drink3908.html" }, { "directions": "Pour yukon jack into a shot glass. Add the bacardi 151 proof rum.\r", @@ -30868,7 +30868,7 @@ "Yukon Jack\u00ae Canadian whisky" ], "title": "Gorilla Fart #5 recipe", - "url": "http://www.drinksmixer.com/drink3909.html" + "url": "https://www.drinksmixer.com/drink3909.html" }, { "directions": "Stir or shake. Ice cream can be used instead of milk and blended in a blender.", @@ -30879,7 +30879,7 @@ "milk" ], "title": "Gorilla Milk #2 recipe", - "url": "http://www.drinksmixer.com/drink3910.html" + "url": "https://www.drinksmixer.com/drink3910.html" }, { "directions": "Fill a highball glass with ice. Add the vodka and dark creme de cacao. Fill with milk, shake and serve.", @@ -30890,7 +30890,7 @@ "ice" ], "title": "Gorilla Milk recipe", - "url": "http://www.drinksmixer.com/drink3911.html" + "url": "https://www.drinksmixer.com/drink3911.html" }, { "directions": "Combine all in a blender with 8-12 oz of ice, blend. Garnish with a banana slice speared through an umbrella.", @@ -30903,7 +30903,7 @@ "peach schnapps" ], "title": "Gorilla Smile recipe", - "url": "http://www.drinksmixer.com/drink3912.html" + "url": "https://www.drinksmixer.com/drink3912.html" }, { "directions": "Measure the port into a brandy glass, the pour the bailey's in. As the bailey's enters the port it will solidify, forming a glob.", @@ -30911,7 +30911,7 @@ "Bailey's\u00ae Irish cream" ], "title": "Gorilla Snot recipe", - "url": "http://www.drinksmixer.com/drink3913.html" + "url": "https://www.drinksmixer.com/drink3913.html" }, { "directions": "Layer the creme de banane over the melon liqueur. Then drop the advocaat into the middle of the creme de banane. The advocaat should hang in the middle if poured correctly.", @@ -30921,7 +30921,7 @@ "advocaat liqueur" ], "title": "Gorilla Snot #2 recipe", - "url": "http://www.drinksmixer.com/drink3914.html" + "url": "https://www.drinksmixer.com/drink3914.html" }, { "directions": "Mix all ingredients (except cinnamon stick) and heat gently until butter is melted. Garnish with cinnamon stick.", @@ -30934,7 +30934,7 @@ "salt" ], "title": "Gorilla Sweat recipe", - "url": "http://www.drinksmixer.com/drink3915.html" + "url": "https://www.drinksmixer.com/drink3915.html" }, { "directions": "Mix all ingredients in a separate glass with ice, then pour it into the shot glass. Drink straight up.", @@ -30944,7 +30944,7 @@ "banana liqueur" ], "title": "Gorilla's Fart recipe", - "url": "http://www.drinksmixer.com/drink3916.html" + "url": "https://www.drinksmixer.com/drink3916.html" }, { "directions": "Layer ingredients in a normal shot glass. Can be lit and shot through a straw.", @@ -30953,7 +30953,7 @@ "Bacardi\u00ae 151 rum" ], "title": "Gorilla's Puke recipe", - "url": "http://www.drinksmixer.com/drink3917.html" + "url": "https://www.drinksmixer.com/drink3917.html" }, { "directions": "After mixing each ingredient in order shown, light the 151 with a match. Blow out the flames, and sip drink quickly with a straw.", @@ -30963,7 +30963,7 @@ "Bacardi\u00ae 151 rum" ], "title": "Gorilla's Tit recipe", - "url": "http://www.drinksmixer.com/drink3918.html" + "url": "https://www.drinksmixer.com/drink3918.html" }, { "directions": "Add ingredients together and serve.", @@ -30972,7 +30972,7 @@ "Jagermeister\u00ae herbal liqueur" ], "title": "Gorilla Cocktail recipe", - "url": "http://www.drinksmixer.com/drink3919.html" + "url": "https://www.drinksmixer.com/drink3919.html" }, { "directions": "Shake over ice, strain.", @@ -30982,7 +30982,7 @@ "pineapple juice" ], "title": "The Graduate recipe", - "url": "http://www.drinksmixer.com/drink3920.html" + "url": "https://www.drinksmixer.com/drink3920.html" }, { "directions": "Mix in a shot glass.", @@ -30992,7 +30992,7 @@ "Kahlua\u00ae coffee liqueur" ], "title": "Grainslide recipe", - "url": "http://www.drinksmixer.com/drink3921.html" + "url": "https://www.drinksmixer.com/drink3921.html" }, { "directions": "Serve in an old-fashioned glass.", @@ -31003,7 +31003,7 @@ "sweet and sour mix" ], "title": "Grand Blue recipe", - "url": "http://www.drinksmixer.com/drink3922.html" + "url": "https://www.drinksmixer.com/drink3922.html" }, { "directions": "Pour the the margarita mix, tequila, cointreau, grand marnier, and beer into a blender. \r", @@ -31016,7 +31016,7 @@ "ice cubes" ], "title": "Grand Gold Margarita recipe", - "url": "http://www.drinksmixer.com/drink3923.html" + "url": "https://www.drinksmixer.com/drink3923.html" }, { "directions": "Mix to dissolve sugar.", @@ -31026,7 +31026,7 @@ "sugar" ], "title": "Grand Marnier recipe", - "url": "http://www.drinksmixer.com/drink3924.html" + "url": "https://www.drinksmixer.com/drink3924.html" }, { "directions": "Pour the scotch, schnapps, and soda into a highball glass almost filled with ice cubes. Stir well. Garnish with the lemon twist.", @@ -31037,7 +31037,7 @@ "lemon" ], "title": "Grand Master recipe", - "url": "http://www.drinksmixer.com/drink3925.html" + "url": "https://www.drinksmixer.com/drink3925.html" }, { "directions": "Pour grand marnier into a champagne flute. Fill almost to the top with champagne and top off with fresh orange juice.", @@ -31047,7 +31047,7 @@ "Champagne" ], "title": "Grand Mimosa recipe", - "url": "http://www.drinksmixer.com/drink3926.html" + "url": "https://www.drinksmixer.com/drink3926.html" }, { "directions": "Place zest and sugar in a small bowl. Mash and mix together with the back of a wooden spoon or a pestle. Continue mashing until sugar is absorbed into the orange zest and is no longer distinct. Place into aging container. Add cognac. Stir, cap and let age in a cool dark place 2 to 3 months, shaking monthly. \r", @@ -31058,7 +31058,7 @@ "glycerine" ], "title": "Grand Orange-Cognac Liqueur recipe", - "url": "http://www.drinksmixer.com/drink3927.html" + "url": "https://www.drinksmixer.com/drink3927.html" }, { "directions": "Add ice. Shake it. Strain it. Shoot it.", @@ -31069,7 +31069,7 @@ "Rose's\u00ae lime juice" ], "title": "Grand-Ma In A Wheelchair recipe", - "url": "http://www.drinksmixer.com/drink3928.html" + "url": "https://www.drinksmixer.com/drink3928.html" }, { "directions": "Pour the bailey's irish cream into a shot glass. Pour the salmiac vodka in but don't let them mix into gray: there should be creamish white and also deep black visible in the drink, slightly mixed.", @@ -31078,7 +31078,7 @@ "Koskenkorva\u00ae vodka" ], "title": "Grandmom's Slipper recipe", - "url": "http://www.drinksmixer.com/drink3929.html" + "url": "https://www.drinksmixer.com/drink3929.html" }, { "directions": "Mix apple schnapps, gold tequila and daiquiri mix in a collins glass filled with ice. Fill to the top with 7-up.", @@ -31090,7 +31090,7 @@ "ice cubes" ], "title": "Granny Apple Blossom recipe", - "url": "http://www.drinksmixer.com/drink3930.html" + "url": "https://www.drinksmixer.com/drink3930.html" }, { "directions": "Mix ingredients as above in a tall glass.", @@ -31101,7 +31101,7 @@ "sweet and sour mix" ], "title": "Grape Ape recipe", - "url": "http://www.drinksmixer.com/drink3931.html" + "url": "https://www.drinksmixer.com/drink3931.html" }, { "directions": "Add ingredients to a small shaker with ice. Stir and strain into shot glass.", @@ -31111,7 +31111,7 @@ "sweet and sour mix" ], "title": "Grape Crush recipe", - "url": "http://www.drinksmixer.com/drink3932.html" + "url": "https://www.drinksmixer.com/drink3932.html" }, { "directions": "Shake or blend very well, serving ice cold in a burgundy glass. If you wish to garnish, use grapes.", @@ -31122,7 +31122,7 @@ "raspberry syrup" ], "title": "Grape Flip recipe", - "url": "http://www.drinksmixer.com/drink3933.html" + "url": "https://www.drinksmixer.com/drink3933.html" }, { "directions": "Place ingredients into a blender and liquify.", @@ -31132,7 +31132,7 @@ "pineapple" ], "title": "Grape-Lemon-Pineapple Smoothie recipe", - "url": "http://www.drinksmixer.com/drink3934.html" + "url": "https://www.drinksmixer.com/drink3934.html" }, { "directions": "Crush ice with lemon (or orange) and alcohols in a large glass. Use a strainer and pour into a cocktail glass. Garnish with a lemon wedge or salt on the glass.", @@ -31143,7 +31143,7 @@ "ice cubes" ], "title": "Grape Nehi recipe", - "url": "http://www.drinksmixer.com/drink3935.html" + "url": "https://www.drinksmixer.com/drink3935.html" }, { "directions": "Shake all ingredients (except cherry) with ice and strain into a cocktail glass. Add the cherry on top and serve.", @@ -31154,7 +31154,7 @@ "cherry" ], "title": "Grapefruit Cocktail recipe", - "url": "http://www.drinksmixer.com/drink3937.html" + "url": "https://www.drinksmixer.com/drink3937.html" }, { "directions": "Place some ice cubes in a large tumbler, add grenadine syrup and grapefruit juice, top up with soda water. Stir a little and serve with a drinking straw.", @@ -31164,7 +31164,7 @@ "soda water" ], "title": "Grapefruit Lemonade recipe", - "url": "http://www.drinksmixer.com/drink3938.html" + "url": "https://www.drinksmixer.com/drink3938.html" }, { "directions": "Blend all ingredients with 1/2 cup crushed ice in an electric blender at a low speed for a short length of time. Pour into a collins glass over ice cubes and serve.", @@ -31176,7 +31176,7 @@ "egg" ], "title": "Grapefruit Nog recipe", - "url": "http://www.drinksmixer.com/drink3939.html" + "url": "https://www.drinksmixer.com/drink3939.html" }, { "directions": "Fill collins glass with ice. Pour blue curacao and vodka into the glass. Fill 3/4 of the glass with 1/2 cranberry juice and 1/2 grape juice. Then fill the rest of the glass with coke. Add a splash of pineapple at the top and then shake thoroughly.", @@ -31189,7 +31189,7 @@ "pineapple juice" ], "title": "Grapes of Wrath recipe", - "url": "http://www.drinksmixer.com/drink3941.html" + "url": "https://www.drinksmixer.com/drink3941.html" }, { "directions": "Pour goldschlager over ice, then add the grape soda. Stir slightly, and enjoy.", @@ -31198,7 +31198,7 @@ "grape soda" ], "title": "Grapeschlager recipe", - "url": "http://www.drinksmixer.com/drink3942.html" + "url": "https://www.drinksmixer.com/drink3942.html" }, { "directions": "Shake and pour over ice-cubes.", @@ -31208,7 +31208,7 @@ "grappa brandy" ], "title": "Grappa Gimlet recipe", - "url": "http://www.drinksmixer.com/drink3943.html" + "url": "https://www.drinksmixer.com/drink3943.html" }, { "directions": "Place all ingredients into a blender jar. Cover, and whiz on medium speed until well blended. Pour into a collins glass, and serve.", @@ -31219,7 +31219,7 @@ "cinnamon" ], "title": "Grapple recipe", - "url": "http://www.drinksmixer.com/drink3944.html" + "url": "https://www.drinksmixer.com/drink3944.html" }, { "directions": "In a shaker half-filled with ice cubes, combine the gin, triple sec, pineapple juice, and grenadine. Shake well. Pour into an old-fashioned glass and garnish with the pineapple slice.", @@ -31231,7 +31231,7 @@ "pineapple" ], "title": "Grass Skirt recipe", - "url": "http://www.drinksmixer.com/drink3945.html" + "url": "https://www.drinksmixer.com/drink3945.html" }, { "directions": "Shake all ingredients with ice, strain into a cocktail glass, and serve.", @@ -31241,7 +31241,7 @@ "light cream" ], "title": "Grasshopper recipe", - "url": "http://www.drinksmixer.com/drink3946.html" + "url": "https://www.drinksmixer.com/drink3946.html" }, { "directions": "Fill a collins glass with ice. Add all the white alcohol. Add the sour mix. Top off the glass with razzmatazz or chambord raspberry liqueur. Then shake to mix contents. \r\n\r\nThis is a fruity version of a 'Long Island Iced Tea'.", @@ -31255,7 +31255,7 @@ "DeKuyper\u00ae Razzmatazz liqueur" ], "title": "Grateful Dead #2 recipe", - "url": "http://www.drinksmixer.com/drink3947.html" + "url": "https://www.drinksmixer.com/drink3947.html" }, { "directions": "Fill a highball glass with ice. Add each liquor, fill with sour mix and stir. Add a splash of 7-up or sprite, and serve.", @@ -31269,7 +31269,7 @@ "Sprite\u00ae soda" ], "title": "Grateful Dead #3 recipe", - "url": "http://www.drinksmixer.com/drink3948.html" + "url": "https://www.drinksmixer.com/drink3948.html" }, { "directions": "Fill a shot glass half and half with bacardi 151 and jim beam whiskey in any order you want.", @@ -31278,7 +31278,7 @@ "Jim Beam\u00ae bourbon whiskey" ], "title": "Gravedigger recipe", - "url": "http://www.drinksmixer.com/drink3949.html" + "url": "https://www.drinksmixer.com/drink3949.html" }, { "directions": "Mix together and serve. Do not chill or add ice.", @@ -31288,7 +31288,7 @@ "cinnamon schnapps" ], "title": "Greasy Swede recipe", - "url": "http://www.drinksmixer.com/drink3950.html" + "url": "https://www.drinksmixer.com/drink3950.html" }, { "directions": "Place all ingredients into a blender jar. Cover, and whiz on medium speed until well blended. Pour into a collins glass, and serve.", @@ -31299,7 +31299,7 @@ "lemon juice" ], "title": "Great Grapes recipe", - "url": "http://www.drinksmixer.com/drink3951.html" + "url": "https://www.drinksmixer.com/drink3951.html" }, { "directions": "Empty zima into a glass. Add the bacardi, followed by the kool-aid. Mix until a light froth is achieved, and serve.", @@ -31309,7 +31309,7 @@ "Kool-Aid\u00ae Mango mix" ], "title": "Greazy Deigo recipe", - "url": "http://www.drinksmixer.com/drink3952.html" + "url": "https://www.drinksmixer.com/drink3952.html" }, { "directions": "Pour into a mixing cup with 2 or 3 ice cubes, and chill to make a shooter. Strain into a shot glass or test tube.", @@ -31319,7 +31319,7 @@ "Chambord\u00ae raspberry liqueur" ], "title": "Greek Lightning recipe", - "url": "http://www.drinksmixer.com/drink3953.html" + "url": "https://www.drinksmixer.com/drink3953.html" }, { "directions": "Put all ingredients in together, and shake. Serve in a glass filled up to 2/3 with ice.", @@ -31332,7 +31332,7 @@ "Southern Comfort\u00ae peach liqueur" ], "title": "Greek Sex On The Beach recipe", - "url": "http://www.drinksmixer.com/drink3954.html" + "url": "https://www.drinksmixer.com/drink3954.html" }, { "directions": "Add the tanqueray \"malacca\" gin, followed by the metaxa brandy, and serve.", @@ -31341,7 +31341,7 @@ "Metaxa Brandy" ], "title": "Greek Tycoon recipe", - "url": "http://www.drinksmixer.com/drink3955.html" + "url": "https://www.drinksmixer.com/drink3955.html" }, { "directions": "Shake midori, lemon juice and lime juice with ice, and pour into a highball glass filled with ice. Fill up with sprite and soda to taste. Garnish with a lime wedge and add a straw.", @@ -31353,7 +31353,7 @@ "soda water" ], "title": "Green Alien recipe", - "url": "http://www.drinksmixer.com/drink3956.html" + "url": "https://www.drinksmixer.com/drink3956.html" }, { "directions": "Blend pisang ambon, peachtree schnapps, malibu and lemon squash together in a blender. Put ice cubes in a collins glass and pour the mix over. Fill up with sprite, and add a drop of blue syrup. Stir and serve.", @@ -31367,7 +31367,7 @@ "food coloring" ], "title": "Green Angel recipe", - "url": "http://www.drinksmixer.com/drink3957.html" + "url": "https://www.drinksmixer.com/drink3957.html" }, { "directions": "Mix all three ingredients together in a shot glass and serve.", @@ -31377,7 +31377,7 @@ "sweet and sour mix" ], "title": "Green Apple recipe", - "url": "http://www.drinksmixer.com/drink3958.html" + "url": "https://www.drinksmixer.com/drink3958.html" }, { "directions": "Place all ingredients (minus 7-up) in a shaker with ice and shake until cold. Pour a splash of 7-up into an old-fashioned glass and add the contents of the shaker.", @@ -31389,7 +31389,7 @@ "7-Up\u00ae soda" ], "title": "Green Apple #2 recipe", - "url": "http://www.drinksmixer.com/drink3959.html" + "url": "https://www.drinksmixer.com/drink3959.html" }, { "directions": "Add the cider to the liqueur. Serve cold.", @@ -31398,7 +31398,7 @@ "Hornsby's Draft\u00ae cider" ], "title": "Green Apple Cider recipe", - "url": "http://www.drinksmixer.com/drink3960.html" + "url": "https://www.drinksmixer.com/drink3960.html" }, { "directions": "Layer ingredients in a shot glass.", @@ -31408,7 +31408,7 @@ "Bailey's\u00ae Irish cream" ], "title": "Green Beaver recipe", - "url": "http://www.drinksmixer.com/drink3961.html" + "url": "https://www.drinksmixer.com/drink3961.html" }, { "directions": "Pour both ingredients into a shaker over ice. Shake well. Pour into a shot glass.", @@ -31417,7 +31417,7 @@ "peppermint schnapps" ], "title": "Green Beret recipe", - "url": "http://www.drinksmixer.com/drink3962.html" + "url": "https://www.drinksmixer.com/drink3962.html" }, { "directions": "Combine melon liqueur, gin, lime juice, and sweet vermouth into a shot glass. Drop the shot into a pint of beer. Drink both the shot and the beer at the same time.", @@ -31429,7 +31429,7 @@ "beer" ], "title": "Green Bomber recipe", - "url": "http://www.drinksmixer.com/drink3963.html" + "url": "https://www.drinksmixer.com/drink3963.html" }, { "directions": "Shake ingredients in a mixing glass with ice, except lime twist, then strain into a cocktail glass. Add a lime twist.", @@ -31439,7 +31439,7 @@ "lime" ], "title": "Green Casa Noble recipe", - "url": "http://www.drinksmixer.com/drink3964.html" + "url": "https://www.drinksmixer.com/drink3964.html" }, { "directions": "Pour ingredients in a shot glass in the order listed.", @@ -31449,7 +31449,7 @@ "rum" ], "title": "Green Cookie Monster recipe", - "url": "http://www.drinksmixer.com/drink3965.html" + "url": "https://www.drinksmixer.com/drink3965.html" }, { "directions": "Stir ingredients together and serve.", @@ -31460,7 +31460,7 @@ "Sprite\u00ae soda" ], "title": "Green Cow #2 recipe", - "url": "http://www.drinksmixer.com/drink3966.html" + "url": "https://www.drinksmixer.com/drink3966.html" }, { "directions": "Blend the two ingredients together in roughly equal parts.", @@ -31469,7 +31469,7 @@ "milk" ], "title": "Green Cow recipe", - "url": "http://www.drinksmixer.com/drink3967.html" + "url": "https://www.drinksmixer.com/drink3967.html" }, { "directions": "Pour all ingredients over ice.", @@ -31479,7 +31479,7 @@ "Malibu\u00ae coconut rum" ], "title": "Green Creeper recipe", - "url": "http://www.drinksmixer.com/drink3968.html" + "url": "https://www.drinksmixer.com/drink3968.html" }, { "directions": "Mix all the ingredients together, and serve cold.", @@ -31490,7 +31490,7 @@ "orange juice" ], "title": "Green Delight recipe", - "url": "http://www.drinksmixer.com/drink3970.html" + "url": "https://www.drinksmixer.com/drink3970.html" }, { "directions": "Shake vodka, rum, and liqueur and pour over ice in a highball glass. Fill with lemonade, add the cherry on top, and serve.", @@ -31502,7 +31502,7 @@ "cherry" ], "title": "Green Demon recipe", - "url": "http://www.drinksmixer.com/drink3971.html" + "url": "https://www.drinksmixer.com/drink3971.html" }, { "directions": "Combine all ingredients and stir. Serve in a highball glass over ice.", @@ -31516,7 +31516,7 @@ "7-Up\u00ae soda" ], "title": "Green Dinosaur recipe", - "url": "http://www.drinksmixer.com/drink3972.html" + "url": "https://www.drinksmixer.com/drink3972.html" }, { "directions": "Combine all ingredients and mix well. Add ice and drink up.", @@ -31528,7 +31528,7 @@ "lemonade" ], "title": "Green Dinosaur #2 recipe", - "url": "http://www.drinksmixer.com/drink3973.html" + "url": "https://www.drinksmixer.com/drink3973.html" }, { "directions": "Stir ingredients in ice and strain into a shot glass.", @@ -31538,7 +31538,7 @@ "Midori\u00ae melon liqueur" ], "title": "Green Dinosaur #3 recipe", - "url": "http://www.drinksmixer.com/drink3974.html" + "url": "https://www.drinksmixer.com/drink3974.html" }, { "directions": "Add all ingredients and shake.", @@ -31552,7 +31552,7 @@ "tequila" ], "title": "Green Dinosaur #4 recipe", - "url": "http://www.drinksmixer.com/drink3975.html" + "url": "https://www.drinksmixer.com/drink3975.html" }, { "directions": "Shake all ingredients with ice, strain into a cocktail glass, and serve.", @@ -31564,7 +31564,7 @@ "orange bitters" ], "title": "Green Dragon Cocktail #2 recipe", - "url": "http://www.drinksmixer.com/drink3976.html" + "url": "https://www.drinksmixer.com/drink3976.html" }, { "directions": "Layer carefully in a shot glass.", @@ -31574,7 +31574,7 @@ "Bailey's\u00ae Irish cream" ], "title": "Green Eyed Blonde recipe", - "url": "http://www.drinksmixer.com/drink3977.html" + "url": "https://www.drinksmixer.com/drink3977.html" }, { "directions": "Pour over crushed ice and stir, or blend ingredients together.", @@ -31586,7 +31586,7 @@ "pineapple juice" ], "title": "Green Eyes recipe", - "url": "http://www.drinksmixer.com/drink3978.html" + "url": "https://www.drinksmixer.com/drink3978.html" }, { "directions": "Fill 3/4 of a pint glass with cider. Add the blue curacao and fill the glass with cider.", @@ -31595,7 +31595,7 @@ "Blue Curacao liqueur" ], "title": "Green Ferrit recipe", - "url": "http://www.drinksmixer.com/drink3979.html" + "url": "https://www.drinksmixer.com/drink3979.html" }, { "directions": "Shake all ingredients (except carbonated water) with ice and strain into a highball glass over 2 ice cubes. Fill with carbonated water, stir, and serve.", @@ -31608,7 +31608,7 @@ "carbonated water" ], "title": "Green Fizz recipe", - "url": "http://www.drinksmixer.com/drink3980.html" + "url": "https://www.drinksmixer.com/drink3980.html" }, { "directions": "Pour ingredients into an old-fashioned glass and stir.", @@ -31617,7 +31617,7 @@ "Mountain Dew\u00ae citrus soda" ], "title": "Green Froggy recipe", - "url": "http://www.drinksmixer.com/drink3981.html" + "url": "https://www.drinksmixer.com/drink3981.html" }, { "directions": "Pour the Pisang Ambon into a highball glass. Add the sprite, a few drops of lime juice and ice cubes. Serve with a straw.", @@ -31627,7 +31627,7 @@ "lime juice" ], "title": "Green Frog recipe", - "url": "http://www.drinksmixer.com/drink3982.html" + "url": "https://www.drinksmixer.com/drink3982.html" }, { "directions": "Shake with ice. Add creme de menthe.", @@ -31638,7 +31638,7 @@ "green creme de menthe" ], "title": "Green Gulf recipe", - "url": "http://www.drinksmixer.com/drink3983.html" + "url": "https://www.drinksmixer.com/drink3983.html" }, { "directions": "Mix all ingredients in a shaker. Fill with ice and add orange juice. Pour into a hurricane glass and serve.", @@ -31652,7 +31652,7 @@ "orange juice" ], "title": "Green Hell #2 recipe", - "url": "http://www.drinksmixer.com/drink3984.html" + "url": "https://www.drinksmixer.com/drink3984.html" }, { "directions": "Pour both into glass over ice and serve.", @@ -31661,7 +31661,7 @@ "Everclear\u00ae alcohol" ], "title": "Green Hell recipe", - "url": "http://www.drinksmixer.com/drink3985.html" + "url": "https://www.drinksmixer.com/drink3985.html" }, { "directions": "Shake ingredients with ice, and garnish with red cherries.", @@ -31673,7 +31673,7 @@ "lemon juice" ], "title": "Green Hope recipe", - "url": "http://www.drinksmixer.com/drink3986.html" + "url": "https://www.drinksmixer.com/drink3986.html" }, { "directions": "Blend and pour into a salted glass.", @@ -31683,7 +31683,7 @@ "sweet and sour mix" ], "title": "Green Iguana Margarita recipe", - "url": "http://www.drinksmixer.com/drink3987.html" + "url": "https://www.drinksmixer.com/drink3987.html" }, { "directions": "Mix tequila, midori melon liqueur and sweet and sour mix in a blender. Add ice. Serve in a margarita/coupette glass.", @@ -31694,7 +31694,7 @@ "ice" ], "title": "Green Iguana recipe", - "url": "http://www.drinksmixer.com/drink3988.html" + "url": "https://www.drinksmixer.com/drink3988.html" }, { "directions": "Shake ingredients with ice and strain into a rocks glass.", @@ -31704,7 +31704,7 @@ "sweet and sour mix" ], "title": "Green Jolly Rancher recipe", - "url": "http://www.drinksmixer.com/drink3989.html" + "url": "https://www.drinksmixer.com/drink3989.html" }, { "directions": "Mix all ingredients together in order, shake once and pour into a glass.", @@ -31714,7 +31714,7 @@ "7-Up\u00ae soda" ], "title": "Green Lantern recipe", - "url": "http://www.drinksmixer.com/drink3990.html" + "url": "https://www.drinksmixer.com/drink3990.html" }, { "directions": "Fill the bottom of a highball glass with a shot of sour apple pucker and fill with lemon-lime soda.", @@ -31723,7 +31723,7 @@ "lemon-lime soda" ], "title": "Green Meanie recipe", - "url": "http://www.drinksmixer.com/drink3992.html" + "url": "https://www.drinksmixer.com/drink3992.html" }, { "directions": "Shake and serve in a cocktail glass.", @@ -31734,7 +31734,7 @@ "pineapple juice" ], "title": "The Green Mile recipe", - "url": "http://www.drinksmixer.com/drink3993.html" + "url": "https://www.drinksmixer.com/drink3993.html" }, { "directions": "Pour grenadine onto the edge of the glass and then sugar to create a red edge on the glass. Then pour all three ingredients into a shaker with crushed ice and shake well. Finally, pour the contents of the shaker into a highball glass.", @@ -31745,7 +31745,7 @@ "grenadine syrup" ], "title": "Green Milkshake recipe", - "url": "http://www.drinksmixer.com/drink3994.html" + "url": "https://www.drinksmixer.com/drink3994.html" }, { "directions": "Pour 151 rum, lime juice, and food coloring into a glass with several ice cubes. Shake, and strain into a shot glass.", @@ -31756,7 +31756,7 @@ "ice cubes" ], "title": "Green Monster #2 recipe", - "url": "http://www.drinksmixer.com/drink3995.html" + "url": "https://www.drinksmixer.com/drink3995.html" }, { "directions": "Mix all ingredients (in any order) in a large tub, which can hold several gallons. Stir so that the sherbert is completely dissolved. With the exception of the kool-aid and sherbert, as much or little of the other ingredients may be used.", @@ -31768,7 +31768,7 @@ "sherbet" ], "title": "Green Monster Party Punch recipe", - "url": "http://www.drinksmixer.com/drink3996.html" + "url": "https://www.drinksmixer.com/drink3996.html" }, { "directions": "Pour vodka over four ice cubes in an old-fashioned glass. Add pickled pepper, and stir around with its stem. Devour pepper after draining drink.", @@ -31777,7 +31777,7 @@ "pepper" ], "title": "Green Monster recipe", - "url": "http://www.drinksmixer.com/drink3997.html" + "url": "https://www.drinksmixer.com/drink3997.html" }, { "directions": "Pour each ingredient into a shot glass.", @@ -31786,7 +31786,7 @@ "green creme de menthe" ], "title": "Green Motherfucker recipe", - "url": "http://www.drinksmixer.com/drink3998.html" + "url": "https://www.drinksmixer.com/drink3998.html" }, { "directions": "Blend quickly and serve.", @@ -31798,7 +31798,7 @@ "orange juice" ], "title": "Green Ocean recipe", - "url": "http://www.drinksmixer.com/drink3999.html" + "url": "https://www.drinksmixer.com/drink3999.html" }, { "directions": "Shake ingredients with ice, and pour into a glass.", @@ -31809,7 +31809,7 @@ "orange juice" ], "title": "The Green One recipe", - "url": "http://www.drinksmixer.com/drink4000.html" + "url": "https://www.drinksmixer.com/drink4000.html" }, { "directions": "Shake all ingredients with ice, strain into a cocktail glass, and serve.", @@ -31819,7 +31819,7 @@ "anis liqueur" ], "title": "Green Opal recipe", - "url": "http://www.drinksmixer.com/drink4001.html" + "url": "https://www.drinksmixer.com/drink4001.html" }, { "directions": "Pour ingredients into a shaker and shake well. Serve in a cocktail glass.", @@ -31830,7 +31830,7 @@ "ice" ], "title": "Green Poison recipe", - "url": "http://www.drinksmixer.com/drink4002.html" + "url": "https://www.drinksmixer.com/drink4002.html" }, { "directions": "Combine all ingredients together in a glass, stir, and serve.", @@ -31840,7 +31840,7 @@ "orange juice" ], "title": "Green Puma recipe", - "url": "http://www.drinksmixer.com/drink4003.html" + "url": "https://www.drinksmixer.com/drink4003.html" }, { "directions": "In tall glass, mix midori, lime juice, sweet and sour, and vodka. Top off with tonic water and stir well.", @@ -31852,7 +31852,7 @@ "tonic water" ], "title": "Green Quencher recipe", - "url": "http://www.drinksmixer.com/drink4004.html" + "url": "https://www.drinksmixer.com/drink4004.html" }, { "directions": "Mix both ingredients together and serve over ice in a highball glass.", @@ -31861,7 +31861,7 @@ "Midori\u00ae melon liqueur" ], "title": "Green Russian recipe", - "url": "http://www.drinksmixer.com/drink4005.html" + "url": "https://www.drinksmixer.com/drink4005.html" }, { "directions": "Shake with ice and strain into a shot glass.", @@ -31873,7 +31873,7 @@ "orange juice" ], "title": "Green Sneaker recipe", - "url": "http://www.drinksmixer.com/drink4006.html" + "url": "https://www.drinksmixer.com/drink4006.html" }, { "directions": "Add the bacardi 151 to a shot glass, then add creme de menthe.", @@ -31882,7 +31882,7 @@ "green creme de menthe" ], "title": "Green Spider recipe", - "url": "http://www.drinksmixer.com/drink4007.html" + "url": "https://www.drinksmixer.com/drink4007.html" }, { "directions": "Take an ordinary glass, and put in the two shots of coconut rum. Malibu or coco ribe will work nicely. Then pour in cold/chilled mountain dew, and stir. Adjust ingredient quantities to taste.", @@ -31891,7 +31891,7 @@ "Mountain Dew\u00ae citrus soda" ], "title": "Green Summer recipe", - "url": "http://www.drinksmixer.com/drink4008.html" + "url": "https://www.drinksmixer.com/drink4008.html" }, { "directions": "Mix chartreuse and sour mix on top of ice in a collins glass. Fill with coca-cola and, if you like, garnish with a lemon or lime slice.", @@ -31902,7 +31902,7 @@ "ice cubes" ], "title": "Green Tea recipe", - "url": "http://www.drinksmixer.com/drink4009.html" + "url": "https://www.drinksmixer.com/drink4009.html" }, { "directions": "Shake well until it is a cream color and is frothing.", @@ -31912,7 +31912,7 @@ "pineapple juice" ], "title": "Green Thing recipe", - "url": "http://www.drinksmixer.com/drink4010.html" + "url": "https://www.drinksmixer.com/drink4010.html" }, { "directions": "Mix together first three ingredients and then slice fresh limes and place in drink. Allow to sit for at least one hour. This drink is to be made in a large quantity, so the limes may \"take effect.\"", @@ -31923,7 +31923,7 @@ "lime" ], "title": "Green Tree Frog recipe", - "url": "http://www.drinksmixer.com/drink4011.html" + "url": "https://www.drinksmixer.com/drink4011.html" }, { "directions": "Add ingredients and ice to a mixing tin. Shake 3 to 5 times and strain into a shot glass.", @@ -31935,7 +31935,7 @@ "Sprite\u00ae soda" ], "title": "Green Voodoo recipe", - "url": "http://www.drinksmixer.com/drink4012.html" + "url": "https://www.drinksmixer.com/drink4012.html" }, { "directions": "Pour alcohols into a hurricane glass and fill with equal parts of juices and sour mix. Add ice and serve.", @@ -31949,7 +31949,7 @@ "ice cubes" ], "title": "Green Wave recipe", - "url": "http://www.drinksmixer.com/drink4013.html" + "url": "https://www.drinksmixer.com/drink4013.html" }, { "directions": "Pour all ingredients into a shaker with ice. Chill and strain into an old-fashioned glass. Serve immediately.", @@ -31960,7 +31960,7 @@ "triple sec" ], "title": "The Green Wave recipe", - "url": "http://www.drinksmixer.com/drink4014.html" + "url": "https://www.drinksmixer.com/drink4014.html" }, { "directions": "Take a swig of corona, then fill the bottle the rest of the way with margarita mix.", @@ -31969,7 +31969,7 @@ "margarita mix" ], "title": "Green Weenie recipe", - "url": "http://www.drinksmixer.com/drink4015.html" + "url": "https://www.drinksmixer.com/drink4015.html" }, { "directions": "Place blue curacao, vodka and sugar into a blender. Fill to desired level with pineapple juice and orange juice at a ratio of 1:2 - (ie. 1 oz pineapple, 2 oz orange). Shake well, and strain into collins glass(es).", @@ -31981,7 +31981,7 @@ "sugar" ], "title": "Green Whale recipe", - "url": "http://www.drinksmixer.com/drink4016.html" + "url": "https://www.drinksmixer.com/drink4016.html" }, { "directions": "Pour blue curacao into a cocktail glass. Pour the orange juice over it. Stir and serve cold.", @@ -31990,7 +31990,7 @@ "orange juice" ], "title": "Green Widow recipe", - "url": "http://www.drinksmixer.com/drink4017.html" + "url": "https://www.drinksmixer.com/drink4017.html" }, { "directions": "Pour all ingredients with an ice cube into a shaker.", @@ -32000,7 +32000,7 @@ "orange juice" ], "title": "Green Zone recipe", - "url": "http://www.drinksmixer.com/drink4018.html" + "url": "https://www.drinksmixer.com/drink4018.html" }, { "directions": "Pour the kiwi liqueur into a shot glass. Add the vodka, and drop in the green gummi fish, and there's your green-eyed bi!", @@ -32010,7 +32010,7 @@ "gummi fish" ], "title": "Green-Eyed Bi recipe", - "url": "http://www.drinksmixer.com/drink4019.html" + "url": "https://www.drinksmixer.com/drink4019.html" }, { "directions": "Shake all ingredients with ice, strain into an old-fashioned glass over ice cubes, and serve.", @@ -32020,7 +32020,7 @@ "lemon juice" ], "title": "Greenback recipe", - "url": "http://www.drinksmixer.com/drink4020.html" + "url": "https://www.drinksmixer.com/drink4020.html" }, { "directions": "In a shaker half-filled with ice cubes, combine all of the ingredients. Shake well. Pour into an old-fashioned glass.", @@ -32031,7 +32031,7 @@ "lemon juice" ], "title": "Greenham's Grotto recipe", - "url": "http://www.drinksmixer.com/drink4021.html" + "url": "https://www.drinksmixer.com/drink4021.html" }, { "directions": "Shake ingredients (minus lemonade) with ice and pour into a pint glass. Top with lemonade.", @@ -32046,7 +32046,7 @@ "lemonade" ], "title": "Grendel recipe", - "url": "http://www.drinksmixer.com/drink4022.html" + "url": "https://www.drinksmixer.com/drink4022.html" }, { "directions": "Pour vodka, passoa and orange juice over ice in the glass. Add the blue curacao and the lime. Do not stir.", @@ -32058,7 +32058,7 @@ "limes" ], "title": "Greven recipe", - "url": "http://www.drinksmixer.com/drink4023.html" + "url": "https://www.drinksmixer.com/drink4023.html" }, { "directions": "Pour ingredients into a highball glass over ice cubes. Stir well and serve. (Vodka may be substituted for gin, if preferred.)", @@ -32067,7 +32067,7 @@ "grapefruit juice" ], "title": "Greyhound recipe", - "url": "http://www.drinksmixer.com/drink4024.html" + "url": "https://www.drinksmixer.com/drink4024.html" }, { "directions": "Mix kahlua and 151 proof rum in an old-fashioned glass. Quickly add ice and pour grenadine over the top to give an ice red tint.\r", @@ -32077,7 +32077,7 @@ "grenadine syrup" ], "title": "Grim Reaper recipe", - "url": "http://www.drinksmixer.com/drink4025.html" + "url": "https://www.drinksmixer.com/drink4025.html" }, { "directions": "Fill a hurricane glass with ice and pour in the four alcohols. Add the sweet and sour, and the same amount with a touch more of 7-up. Float the blue curacao on top to finish.", @@ -32091,7 +32091,7 @@ "Blue Curacao liqueur" ], "title": "Grinch #2 recipe", - "url": "http://www.drinksmixer.com/drink4026.html" + "url": "https://www.drinksmixer.com/drink4026.html" }, { "directions": "Mix ingredients, pour over ice and let chill. Shake, strain and serve.", @@ -32102,7 +32102,7 @@ "7-Up\u00ae soda" ], "title": "Grinch recipe", - "url": "http://www.drinksmixer.com/drink4027.html" + "url": "https://www.drinksmixer.com/drink4027.html" }, { "directions": "Mix ingredients in order.", @@ -32114,7 +32114,7 @@ "water" ], "title": "Groader recipe", - "url": "http://www.drinksmixer.com/drink4028.html" + "url": "https://www.drinksmixer.com/drink4028.html" }, { "directions": "Pour beer, vodka, and orange juice in a pitcher. Stir well.", @@ -32124,7 +32124,7 @@ "orange juice" ], "title": "Grog #2 recipe", - "url": "http://www.drinksmixer.com/drink4029.html" + "url": "https://www.drinksmixer.com/drink4029.html" }, { "directions": "Pour the rum and the water into an old-fashioned glass with no ice cubes. Stir well.", @@ -32133,7 +32133,7 @@ "water" ], "title": "Grog recipe", - "url": "http://www.drinksmixer.com/drink4030.html" + "url": "https://www.drinksmixer.com/drink4030.html" }, { "directions": "Mix the ingredients together in equal parts and serve.", @@ -32144,7 +32144,7 @@ "Kahlua\u00ae coffee liqueur" ], "title": "Ground Zero recipe", - "url": "http://www.drinksmixer.com/drink4031.html" + "url": "https://www.drinksmixer.com/drink4031.html" }, { "directions": "Fill a glass (40-50 cl) with whiskey, midori, bailey's and then coca-cola untill you have enough foam (it looks horrible). Drink it with a straw and don't look at the color.", @@ -32155,7 +32155,7 @@ "Coca-Cola\u00ae" ], "title": "Grovschpol recipe", - "url": "http://www.drinksmixer.com/drink4032.html" + "url": "https://www.drinksmixer.com/drink4032.html" }, { "directions": "Start by pouring the whiskey, then bailey's, then cointreau. Add a splash of pepsi on top of it.", @@ -32166,7 +32166,7 @@ "Pepsi\u00ae cola" ], "title": "Grovspol recipe", - "url": "http://www.drinksmixer.com/drink4033.html" + "url": "https://www.drinksmixer.com/drink4033.html" }, { "directions": "Pack a rocks or old-fashioned glass with ice. Add old grand dad bourbon (high proof bourbon, similar to wild turkey), lime juice, and top with sour mix. Serve with a sip stick, no garnish.", @@ -32177,7 +32177,7 @@ "ice" ], "title": "Grumpier Old Man recipe", - "url": "http://www.drinksmixer.com/drink4034.html" + "url": "https://www.drinksmixer.com/drink4034.html" }, { "directions": "Pack an old-fashioned glass with ice. Add old grand dad bourbon, lime juice and top with ginger ale. Serve with a sip stick, no garnish.", @@ -32188,7 +32188,7 @@ "ice" ], "title": "Grumpy Old Man recipe", - "url": "http://www.drinksmixer.com/drink4035.html" + "url": "https://www.drinksmixer.com/drink4035.html" }, { "directions": "Mix all ingredients in a blender. Pour contents of the blender into a hurricane glass that has been frosted with sugar. Add a twist of lemon.", @@ -32200,7 +32200,7 @@ "ice" ], "title": "Grungeist recipe", - "url": "http://www.drinksmixer.com/drink4036.html" + "url": "https://www.drinksmixer.com/drink4036.html" }, { "directions": "Stir it all together and serve.", @@ -32210,7 +32210,7 @@ "sugar" ], "title": "GSM recipe", - "url": "http://www.drinksmixer.com/drink4037.html" + "url": "https://www.drinksmixer.com/drink4037.html" }, { "directions": "The ingredients are best preserved cold for this purpose. To mix, just pour the ingredients into a glass. Add an ice cube, if you like.", @@ -32220,7 +32220,7 @@ "vodka" ], "title": "GTV recipe", - "url": "http://www.drinksmixer.com/drink4038.html" + "url": "https://www.drinksmixer.com/drink4038.html" }, { "directions": "Fill a coffee mug 3/4 full, add irish cream, kahlua and then butterscotch schnapps.", @@ -32231,7 +32231,7 @@ "DeKuyper\u00ae Buttershots liqueur" ], "title": "Guapo recipe", - "url": "http://www.drinksmixer.com/drink4039.html" + "url": "https://www.drinksmixer.com/drink4039.html" }, { "directions": "Fill a shot glass about 4/5 of the way full with butterscotch schnapps. Float a layer of bailey's irish cream on the schnapps, and then a layer of aftershock on the bailey's.", @@ -32241,7 +32241,7 @@ "Aftershock\u00ae Hot & Cool cinnamon schnapps" ], "title": "Guillotine recipe", - "url": "http://www.drinksmixer.com/drink4040.html" + "url": "https://www.drinksmixer.com/drink4040.html" }, { "directions": "Put the ice cream in first, then add the Guinness carefully. Wait for the head to go down then fill to top. Blend if you want a milkshake.", @@ -32250,7 +32250,7 @@ "Guinness\u00ae stout" ], "title": "Guinness Float recipe", - "url": "http://www.drinksmixer.com/drink4041.html" + "url": "https://www.drinksmixer.com/drink4041.html" }, { "directions": "Gently pour a well-chilled Guinness into a small mixing bowl or glass that will hold all of the liquid ingredients. Add the sweetened condensed milk, spices, and cocoa (if it's wanted). Stir or whisk well, and pour the mixture into a pint-sized beer mug or pub glass. Makes 1 drink.", @@ -32262,7 +32262,7 @@ "cocoa powder" ], "title": "Guinness Punch recipe", - "url": "http://www.drinksmixer.com/drink4042.html" + "url": "https://www.drinksmixer.com/drink4042.html" }, { "directions": "Mix lemonade with Guinness in a pint glass.", @@ -32271,7 +32271,7 @@ "lemonade" ], "title": "Guinness Shandy recipe", - "url": "http://www.drinksmixer.com/drink4043.html" + "url": "https://www.drinksmixer.com/drink4043.html" }, { "directions": "Pour all ingredients into a shaker half-filled with cracked ice and shake for 1 minute. Strain into a cocktail glass.", @@ -32282,7 +32282,7 @@ "pineapple juice" ], "title": "Gulyuz recipe", - "url": "http://www.drinksmixer.com/drink4044.html" + "url": "https://www.drinksmixer.com/drink4044.html" }, { "directions": "Combine ingredients in equal parts over ice in a cocktail shaker. Shake, strain, and serve.", @@ -32292,7 +32292,7 @@ "grapefruit juice" ], "title": "Gumball Hummer recipe", - "url": "http://www.drinksmixer.com/drink4045.html" + "url": "https://www.drinksmixer.com/drink4045.html" }, { "directions": "Half-fill a pint beer mug with ice cubes. Add vodka and midori. Fill with cider. Sip.", @@ -32303,7 +32303,7 @@ "ice" ], "title": "Gumby Dammit recipe", - "url": "http://www.drinksmixer.com/drink4046.html" + "url": "https://www.drinksmixer.com/drink4046.html" }, { "directions": "Mix the Rum, Ruby Red and Pineapple Juice, stir well and add ice cubes to the top for a delicious drink.", @@ -32314,7 +32314,7 @@ "ice cubes" ], "title": "Gumbys' Ruby Red recipe", - "url": "http://www.drinksmixer.com/drink4047.html" + "url": "https://www.drinksmixer.com/drink4047.html" }, { "directions": "Pour one cup of strong black tea, add rum and stir.", @@ -32323,7 +32323,7 @@ "Bundaberg\u00ae dark rum" ], "title": "Gunfire recipe", - "url": "http://www.drinksmixer.com/drink4048.html" + "url": "https://www.drinksmixer.com/drink4048.html" }, { "directions": "Stir gin and vermouth with ice and strain into a cocktail glass. Add the cherry on top and serve.", @@ -32333,7 +32333,7 @@ "cherry" ], "title": "Gypsy Cocktail recipe", - "url": "http://www.drinksmixer.com/drink4049.html" + "url": "https://www.drinksmixer.com/drink4049.html" }, { "directions": "Mix over ice in a highball glass and fill the rest of the glass with equal parts pineapple juice and ginger ale.", @@ -32345,7 +32345,7 @@ "ginger ale" ], "title": "Gaawanger recipe", - "url": "http://www.drinksmixer.com/drink4050.html" + "url": "https://www.drinksmixer.com/drink4050.html" }, { "directions": "Shake with ice and strain into a collins glass over ice cubes. Fill with Club Soda and garnish with a slice of lemon and a pineapple chunk.", @@ -32357,7 +32357,7 @@ "club soda" ], "title": "Gables Collins recipe", - "url": "http://www.drinksmixer.com/drink4051.html" + "url": "https://www.drinksmixer.com/drink4051.html" }, { "directions": "Blend until smooth and pour into an irish coffee cup. Top with whipped cream and sprinkle with green creme de menthe for color.", @@ -32370,7 +32370,7 @@ "green creme de menthe" ], "title": "Gaelic Coffee recipe", - "url": "http://www.drinksmixer.com/drink4052.html" + "url": "https://www.drinksmixer.com/drink4052.html" }, { "directions": "Mix ingredients in a tall glass over ice, stir and enjoy.", @@ -32383,7 +32383,7 @@ "Frangelico\u00ae hazelnut liqueur" ], "title": "Gail's Summer Storm recipe", - "url": "http://www.drinksmixer.com/drink4053.html" + "url": "https://www.drinksmixer.com/drink4053.html" }, { "directions": "Mix ingredients in a tall glass over ice, stir and enjoy.", @@ -32396,7 +32396,7 @@ "coffee" ], "title": "Gail's Winter Storm recipe", - "url": "http://www.drinksmixer.com/drink4054.html" + "url": "https://www.drinksmixer.com/drink4054.html" }, { "directions": "Shake ingredients with ice and strain into a chilled collins glass.", @@ -32407,7 +32407,7 @@ "pineapple juice" ], "title": "Gandy Dancer recipe", - "url": "http://www.drinksmixer.com/drink4055.html" + "url": "https://www.drinksmixer.com/drink4055.html" }, { "directions": "Pour over ice into a highball glass.", @@ -32416,7 +32416,7 @@ "Coca-Cola\u00ae" ], "title": "Gas and Coke recipe", - "url": "http://www.drinksmixer.com/drink4056.html" + "url": "https://www.drinksmixer.com/drink4056.html" }, { "directions": "Build in a lowball glass.", @@ -32425,7 +32425,7 @@ "tequila" ], "title": "Gasoline recipe", - "url": "http://www.drinksmixer.com/drink4057.html" + "url": "https://www.drinksmixer.com/drink4057.html" }, { "directions": "Pour gin, lime juice and lemon juice into a highball glass and fill with 7-up.", @@ -32436,7 +32436,7 @@ "7-Up\u00ae soda" ], "title": "Gaston recipe", - "url": "http://www.drinksmixer.com/drink4058.html" + "url": "https://www.drinksmixer.com/drink4058.html" }, { "directions": "Mix in a tall glass with ice (or a frosted mug) and garnish with a wedge of lime.", @@ -32447,7 +32447,7 @@ "cranberry juice" ], "title": "Gator Booger recipe", - "url": "http://www.drinksmixer.com/drink4059.html" + "url": "https://www.drinksmixer.com/drink4059.html" }, { "directions": "Combine over ice in a highball glass.", @@ -32456,7 +32456,7 @@ "grapefruit juice" ], "title": "Gayhound recipe", - "url": "http://www.drinksmixer.com/drink4060.html" + "url": "https://www.drinksmixer.com/drink4060.html" }, { "directions": "Build in a highball glass and garnish with a lime slice.", @@ -32468,7 +32468,7 @@ "lime juice" ], "title": "Gene Splice recipe", - "url": "http://www.drinksmixer.com/drink4061.html" + "url": "https://www.drinksmixer.com/drink4061.html" }, { "directions": "Shake with ice and strain into an old-fashioned glass.", @@ -32478,7 +32478,7 @@ "grappa brandy" ], "title": "Genoa recipe", - "url": "http://www.drinksmixer.com/drink4062.html" + "url": "https://www.drinksmixer.com/drink4062.html" }, { "directions": "Stir over ice in a highball glass. Garnish with a lemon twist.", @@ -32489,7 +32489,7 @@ "club soda" ], "title": "Gentleman's Cocktail recipe", - "url": "http://www.drinksmixer.com/drink4063.html" + "url": "https://www.drinksmixer.com/drink4063.html" }, { "directions": "Build in a collins glass and garnish with mint leaves.", @@ -32501,7 +32501,7 @@ "mint" ], "title": "Georgia Mint Julep recipe", - "url": "http://www.drinksmixer.com/drink4064.html" + "url": "https://www.drinksmixer.com/drink4064.html" }, { "directions": "Frappe in a parfait glass and garnish with mint leaves, whipped cream and a light dusting of cocoa.", @@ -32512,7 +32512,7 @@ "light cream" ], "title": "Georgio recipe", - "url": "http://www.drinksmixer.com/drink4065.html" + "url": "https://www.drinksmixer.com/drink4065.html" }, { "directions": "Mix and serve over ice in a lowball glass.", @@ -32522,7 +32522,7 @@ "orange juice" ], "title": "Gerbil recipe", - "url": "http://www.drinksmixer.com/drink4066.html" + "url": "https://www.drinksmixer.com/drink4066.html" }, { "directions": "Stir with plenty of ice and strain into a chilled martini glass.", @@ -32532,7 +32532,7 @@ "Underberg\u00ae bitters" ], "title": "German Band recipe", - "url": "http://www.drinksmixer.com/drink4067.html" + "url": "https://www.drinksmixer.com/drink4067.html" }, { "directions": "Shake with ice and strain into a highball glass.", @@ -32542,7 +32542,7 @@ "vodka" ], "title": "Ghostbuster recipe", - "url": "http://www.drinksmixer.com/drink4068.html" + "url": "https://www.drinksmixer.com/drink4068.html" }, { "directions": "Mix in a tall glass and stir well.", @@ -32552,7 +32552,7 @@ "Sprite\u00ae soda" ], "title": "Gibbs recipe", - "url": "http://www.drinksmixer.com/drink4069.html" + "url": "https://www.drinksmixer.com/drink4069.html" }, { "directions": "Mix in a chilled lowball glass. Stir well, and serve.", @@ -32562,7 +32562,7 @@ "lemonade" ], "title": "Gimto recipe", - "url": "http://www.drinksmixer.com/drink4070.html" + "url": "https://www.drinksmixer.com/drink4070.html" }, { "directions": "Build in a lowball glass.", @@ -32571,7 +32571,7 @@ "Fresca\u00ae grapefruit soda" ], "title": "Gin and Fresca recipe", - "url": "http://www.drinksmixer.com/drink4071.html" + "url": "https://www.drinksmixer.com/drink4071.html" }, { "directions": "Put Bitters into a cocktail glass and revolve the glass until it is entirely coated. Fill with gin.", @@ -32580,7 +32580,7 @@ "gin" ], "title": "Gin and Bitters recipe", - "url": "http://www.drinksmixer.com/drink4072.html" + "url": "https://www.drinksmixer.com/drink4072.html" }, { "directions": "Stir ingredients together in a highball glass.", @@ -32589,7 +32589,7 @@ "creme de cassis" ], "title": "Gin Cassis recipe", - "url": "http://www.drinksmixer.com/drink4073.html" + "url": "https://www.drinksmixer.com/drink4073.html" }, { "directions": "In a shaker half-filled with ice cubes, combine the gin, lemon juice, and sugar. Shake well. Strain into a collins glass almost filled with ice cubes. Add the club soda. Stir well. Drop the cassis into the centre of the drink.", @@ -32601,7 +32601,7 @@ "creme de cassis" ], "title": "Gin Cassis Fizz recipe", - "url": "http://www.drinksmixer.com/drink4074.html" + "url": "https://www.drinksmixer.com/drink4074.html" }, { "directions": "Shake with ice and strain into a chilled glass rimmed with lemon juice and sugar. Garnish with a twist of a lemon peel.", @@ -32612,7 +32612,7 @@ "Blue Curacao liqueur" ], "title": "Gin Crusta recipe", - "url": "http://www.drinksmixer.com/drink4075.html" + "url": "https://www.drinksmixer.com/drink4075.html" }, { "directions": "Pour over ice in a pint glass and serve.", @@ -32621,7 +32621,7 @@ "Hooper's\u00ae Hooch" ], "title": "Gin Dog recipe", - "url": "http://www.drinksmixer.com/drink4076.html" + "url": "https://www.drinksmixer.com/drink4076.html" }, { "directions": "Blend Tanqueray Gin, Rose's Lime Juice and 15 ice cubes until it is slurry and pour into a cocktail glass.", @@ -32631,7 +32631,7 @@ "ice cubes" ], "title": "Gin Flurrie recipe", - "url": "http://www.drinksmixer.com/drink4077.html" + "url": "https://www.drinksmixer.com/drink4077.html" }, { "directions": "Mix the gin and tonic in a highball glass over ice and pour the lime juice. Drop two lemon wedges into the glass and serve.", @@ -32642,7 +32642,7 @@ "lemons" ], "title": "Gin Lime Rickey recipe", - "url": "http://www.drinksmixer.com/drink4078.html" + "url": "https://www.drinksmixer.com/drink4078.html" }, { "directions": "Build gin and lime juice in a highball glass and fill with ginger ale.", @@ -32652,7 +32652,7 @@ "ginger ale" ], "title": "Gin Thing recipe", - "url": "http://www.drinksmixer.com/drink4079.html" + "url": "https://www.drinksmixer.com/drink4079.html" }, { "directions": "Stir and strain into a cocktail glass. Garnish with a cherry.", @@ -32662,7 +32662,7 @@ "Angostura\u00ae bitters" ], "title": "Ginza Strip recipe", - "url": "http://www.drinksmixer.com/drink4080.html" + "url": "https://www.drinksmixer.com/drink4080.html" }, { "directions": "Shake with ice and strain into a cocktail glass.", @@ -32672,7 +32672,7 @@ "Angostura\u00ae bitters" ], "title": "Gipsy recipe", - "url": "http://www.drinksmixer.com/drink4081.html" + "url": "https://www.drinksmixer.com/drink4081.html" }, { "directions": "Build into a cocktail glass over ice.", @@ -32684,7 +32684,7 @@ "lime juice" ], "title": "Glacier Mist recipe", - "url": "http://www.drinksmixer.com/drink4082.html" + "url": "https://www.drinksmixer.com/drink4082.html" }, { "directions": "Stir with ice and strain into a cocktail glass.", @@ -32693,7 +32693,7 @@ "peppermint liqueur" ], "title": "Glad Eye recipe", - "url": "http://www.drinksmixer.com/drink4083.html" + "url": "https://www.drinksmixer.com/drink4083.html" }, { "directions": "Build in a collins glass and fill with lemon-lime soda. Garnish with an orange slice and a cherry.", @@ -32706,7 +32706,7 @@ "lemon-lime soda" ], "title": "Glass Tower recipe", - "url": "http://www.drinksmixer.com/drink4084.html" + "url": "https://www.drinksmixer.com/drink4084.html" }, { "directions": "Pour gin into a highball glass filled with ice and fill with sprite. Top up with a splash of vodka.", @@ -32716,7 +32716,7 @@ "Sprite\u00ae soda" ], "title": "Glitter and Trash recipe", - "url": "http://www.drinksmixer.com/drink4085.html" + "url": "https://www.drinksmixer.com/drink4085.html" }, { "directions": "Shake with ice and strain into a cocktail glass.", @@ -32727,7 +32727,7 @@ "lemon juice" ], "title": "Gloom Chaser recipe", - "url": "http://www.drinksmixer.com/drink4086.html" + "url": "https://www.drinksmixer.com/drink4086.html" }, { "directions": "Shake with ice and strain into a cocktail glass.", @@ -32738,7 +32738,7 @@ "egg" ], "title": "Gloom Lifter recipe", - "url": "http://www.drinksmixer.com/drink4087.html" + "url": "https://www.drinksmixer.com/drink4087.html" }, { "directions": "Stir over ice in a rocks glass. Garnish with a sprig of mint.", @@ -32747,7 +32747,7 @@ "peppermint liqueur" ], "title": "Godiva Peppermint Kiss recipe", - "url": "http://www.drinksmixer.com/drink4088.html" + "url": "https://www.drinksmixer.com/drink4088.html" }, { "directions": "Shake all ingredients except grenadine with ice and strain into an old-fashioned glass. Top with grenadine.", @@ -32759,7 +32759,7 @@ "grenadine syrup" ], "title": "Golden Dawn recipe", - "url": "http://www.drinksmixer.com/drink4089.html" + "url": "https://www.drinksmixer.com/drink4089.html" }, { "directions": "Mix amaretto, sweet vermouth and white rum in a collins glass with ice, and fill with ginger ale. Garnish with an orange spiral and a cherry.", @@ -32770,7 +32770,7 @@ "ginger ale" ], "title": "Golden Friendship recipe", - "url": "http://www.drinksmixer.com/drink4090.html" + "url": "https://www.drinksmixer.com/drink4090.html" }, { "directions": "Shake over ice and pour into a highball glass.", @@ -32779,7 +32779,7 @@ "grapefruit juice" ], "title": "Golden Nugget recipe", - "url": "http://www.drinksmixer.com/drink4091.html" + "url": "https://www.drinksmixer.com/drink4091.html" }, { "directions": "Shake over ice and pour into a highball glass.", @@ -32788,7 +32788,7 @@ "grapefruit juice" ], "title": "Golden Nugget #2 recipe", - "url": "http://www.drinksmixer.com/drink4092.html" + "url": "https://www.drinksmixer.com/drink4092.html" }, { "directions": "Combine in a highball glass filled with ice cubes.", @@ -32798,7 +32798,7 @@ "pineapple juice" ], "title": "Golden Oldie recipe", - "url": "http://www.drinksmixer.com/drink4093.html" + "url": "https://www.drinksmixer.com/drink4093.html" }, { "directions": "Shake with ice and strain into a highball glass.", @@ -32810,7 +32810,7 @@ "oranges" ], "title": "Golden Panther recipe", - "url": "http://www.drinksmixer.com/drink4094.html" + "url": "https://www.drinksmixer.com/drink4094.html" }, { "directions": "Shake with ice and strain into a cocktail glass. Garnish with a cherry.", @@ -32821,7 +32821,7 @@ "orange juice" ], "title": "Golden Tang recipe", - "url": "http://www.drinksmixer.com/drink4095.html" + "url": "https://www.drinksmixer.com/drink4095.html" }, { "directions": "Shake with ice and strain into a salt rimmed cocktail glass. Garnish with a lime wedge.", @@ -32831,7 +32831,7 @@ "limes" ], "title": "Gold Margarita recipe", - "url": "http://www.drinksmixer.com/drink4096.html" + "url": "https://www.drinksmixer.com/drink4096.html" }, { "directions": "Build in a lowball or margarita glass, and serve.", @@ -32841,7 +32841,7 @@ "Grand Marnier\u00ae orange liqueur" ], "title": "Gold Margarita #2 recipe", - "url": "http://www.drinksmixer.com/drink4097.html" + "url": "https://www.drinksmixer.com/drink4097.html" }, { "directions": "Shake and serve in a chilled old-fashioned glass.", @@ -32853,7 +32853,7 @@ "orange juice" ], "title": "Gold Standard recipe", - "url": "http://www.drinksmixer.com/drink4098.html" + "url": "https://www.drinksmixer.com/drink4098.html" }, { "directions": "Stir and strain into a cocktail glass.", @@ -32863,7 +32863,7 @@ "bitters" ], "title": "Golf Cocktail recipe", - "url": "http://www.drinksmixer.com/drink4099.html" + "url": "https://www.drinksmixer.com/drink4099.html" }, { "directions": "Shake with cracked ice and strain into a chilled cocktail glass. Garnish with an olive.", @@ -32873,7 +32873,7 @@ "Angostura\u00ae bitters" ], "title": "Golf Martini recipe", - "url": "http://www.drinksmixer.com/drink4100.html" + "url": "https://www.drinksmixer.com/drink4100.html" }, { "directions": "Build in an old-fashioned glass. Garnish with just the stem of a cherry.", @@ -32882,7 +32882,7 @@ "lemon juice" ], "title": "Gone Tomorrow recipe", - "url": "http://www.drinksmixer.com/drink4101.html" + "url": "https://www.drinksmixer.com/drink4101.html" }, { "directions": "Shake with ice and strain into a collins glass filled with ice. Garnish with an orange slice and a cherry.", @@ -32896,7 +32896,7 @@ "orange juice" ], "title": "Goober recipe", - "url": "http://www.drinksmixer.com/drink4102.html" + "url": "https://www.drinksmixer.com/drink4102.html" }, { "directions": "Mix in a coffee mug.", @@ -32905,7 +32905,7 @@ "Everclear\u00ae alcohol" ], "title": "Good Coffee recipe", - "url": "http://www.drinksmixer.com/drink4103.html" + "url": "https://www.drinksmixer.com/drink4103.html" }, { "directions": "Build in a lowball glass.", @@ -32914,7 +32914,7 @@ "amaretto almond liqueur" ], "title": "Gorgeous recipe", - "url": "http://www.drinksmixer.com/drink4104.html" + "url": "https://www.drinksmixer.com/drink4104.html" }, { "directions": "Shake or blend over ice and pour into a large, chilled wine goblet. Add ice cubes if necessary and garnish with a pineapple slice.", @@ -32925,7 +32925,7 @@ "pineapple juice" ], "title": "Gorky Park Cooler recipe", - "url": "http://www.drinksmixer.com/drink4105.html" + "url": "https://www.drinksmixer.com/drink4105.html" }, { "directions": "Blend with ice and serve in a collins glass.", @@ -32935,7 +32935,7 @@ "Graham\u00ae cinnamon crackers" ], "title": "Graham Cracker Smasher recipe", - "url": "http://www.drinksmixer.com/drink4106.html" + "url": "https://www.drinksmixer.com/drink4106.html" }, { "directions": "Layer Yukon Jack on the bottom of an old-fashioned glass, add the blueberry then the orange juice. Top with cranberry juice.", @@ -32946,7 +32946,7 @@ "cranberry juice" ], "title": "Grampa Doogin recipe", - "url": "http://www.drinksmixer.com/drink4107.html" + "url": "https://www.drinksmixer.com/drink4107.html" }, { "directions": "Stir without ice and pour over ice into a cocktail glass. Garnish with a slice of orange.", @@ -32956,7 +32956,7 @@ "orange juice" ], "title": "Grand Quetsch recipe", - "url": "http://www.drinksmixer.com/drink4108.html" + "url": "https://www.drinksmixer.com/drink4108.html" }, { "directions": "Shake with ice and strain into a highball glass over two ice cubes. Fill with club soda and stir.", @@ -32970,7 +32970,7 @@ "club soda" ], "title": "Grand Royal Fizz recipe", - "url": "http://www.drinksmixer.com/drink4109.html" + "url": "https://www.drinksmixer.com/drink4109.html" }, { "directions": "Build over ice into a highball glass.", @@ -32982,7 +32982,7 @@ "pineapple juice" ], "title": "Grape Coconut recipe", - "url": "http://www.drinksmixer.com/drink4110.html" + "url": "https://www.drinksmixer.com/drink4110.html" }, { "directions": "Mix vodka with grapefruit soda to desired strength. Serve with ice in a rocks glass.", @@ -32991,7 +32991,7 @@ "grapefruit soda" ], "title": "Grapefruit Splash recipe", - "url": "http://www.drinksmixer.com/drink4111.html" + "url": "https://www.drinksmixer.com/drink4111.html" }, { "directions": "Shake with ice and pour into an ice filled highball glass. Garnish with a white grape.", @@ -33000,7 +33000,7 @@ "grape juice" ], "title": "Grape Rape recipe", - "url": "http://www.drinksmixer.com/drink4112.html" + "url": "https://www.drinksmixer.com/drink4112.html" }, { "directions": "Mix ingredients in a large old-fashioned glass, and serve.", @@ -33010,7 +33010,7 @@ "grape juice" ], "title": "Grape Rocket recipe", - "url": "http://www.drinksmixer.com/drink4113.html" + "url": "https://www.drinksmixer.com/drink4113.html" }, { "directions": "Fill a collins glass with ice then build the drink starting with the blue curacao. After you pour the cranberry juice you'll want to give it a good shake and then fill with a splash of soda.", @@ -33024,7 +33024,7 @@ "Sprite\u00ae soda" ], "title": "Grape Soda recipe", - "url": "http://www.drinksmixer.com/drink4114.html" + "url": "https://www.drinksmixer.com/drink4114.html" }, { "directions": "Shake with ice and strain into a cocktail glass.", @@ -33035,7 +33035,7 @@ "orange juice" ], "title": "Grappa Strega recipe", - "url": "http://www.drinksmixer.com/drink4115.html" + "url": "https://www.drinksmixer.com/drink4115.html" }, { "directions": "Shake with cracked ice and strain into a chilled cocktail glass. Garnish with an anchovy-stuffed olive.", @@ -33044,7 +33044,7 @@ "dry vermouth" ], "title": "Great Caesar's Martini recipe", - "url": "http://www.drinksmixer.com/drink4116.html" + "url": "https://www.drinksmixer.com/drink4116.html" }, { "directions": "Combine gin and vodka in a martini glass. Splash with sweet vermouth and add fresh lemon juice. Garnish with a lemon twist.", @@ -33055,7 +33055,7 @@ "lemon juice" ], "title": "Great Gatsby recipe", - "url": "http://www.drinksmixer.com/drink4117.html" + "url": "https://www.drinksmixer.com/drink4117.html" }, { "directions": "Build in a lowball glass.", @@ -33064,7 +33064,7 @@ "apple schnapps" ], "title": "Great Head recipe", - "url": "http://www.drinksmixer.com/drink4118.html" + "url": "https://www.drinksmixer.com/drink4118.html" }, { "directions": "Shake brandy and lemon juice and pour into a collins glass. Fill with ginger ale and float ouzo.", @@ -33075,7 +33075,7 @@ "ginger ale" ], "title": "Greek Buck recipe", - "url": "http://www.drinksmixer.com/drink4119.html" + "url": "https://www.drinksmixer.com/drink4119.html" }, { "directions": "Blend with 1/2 cup of ice and pour into a coffee mug.", @@ -33085,7 +33085,7 @@ "honey" ], "title": "Greek Iced Coffee recipe", - "url": "http://www.drinksmixer.com/drink4120.html" + "url": "https://www.drinksmixer.com/drink4120.html" }, { "directions": "Serve over ice in a highball glass.", @@ -33097,7 +33097,7 @@ "cider" ], "title": "Green Ant recipe", - "url": "http://www.drinksmixer.com/drink4121.html" + "url": "https://www.drinksmixer.com/drink4121.html" }, { "directions": "Blend on low speed with ice and serve in a highball glass.", @@ -33107,7 +33107,7 @@ "pine-orange-banana juice" ], "title": "Green Dream recipe", - "url": "http://www.drinksmixer.com/drink4122.html" + "url": "https://www.drinksmixer.com/drink4122.html" }, { "directions": "Shake thoroughly with ice and strain into a cocktail glass.", @@ -33119,7 +33119,7 @@ "Angostura\u00ae bitters" ], "title": "Green Fairy recipe", - "url": "http://www.drinksmixer.com/drink4123.html" + "url": "https://www.drinksmixer.com/drink4123.html" }, { "directions": "Build in a cocktail glass and garnish with kiwi fruit slices.", @@ -33129,7 +33129,7 @@ "melon liqueur" ], "title": "Green Fantasy recipe", - "url": "http://www.drinksmixer.com/drink4124.html" + "url": "https://www.drinksmixer.com/drink4124.html" }, { "directions": "Shake ingredients with ice and pour into a collins glass filled with cracked ice. Garnish with a mint sprig.", @@ -33141,7 +33141,7 @@ "lemon-lime soda" ], "title": "Green Gables recipe", - "url": "http://www.drinksmixer.com/drink4125.html" + "url": "https://www.drinksmixer.com/drink4125.html" }, { "directions": "Mix in a cocktail glass, and slam it! Be prepared for a five-alarm headache if you do too many of these.", @@ -33150,7 +33150,7 @@ "orange juice" ], "title": "Green Headache recipe", - "url": "http://www.drinksmixer.com/drink4126.html" + "url": "https://www.drinksmixer.com/drink4126.html" }, { "directions": "Chill ingredients, pour lemon juice over pisco in a lowball glass and top off with tonic water. Serve with a slice of lime.", @@ -33160,7 +33160,7 @@ "tonic water" ], "title": "Green Hornet recipe", - "url": "http://www.drinksmixer.com/drink4127.html" + "url": "https://www.drinksmixer.com/drink4127.html" }, { "directions": "Shake with ice, strain into a parfait glass and top with creme de menthe. Garnish with a pineapple slice.", @@ -33172,7 +33172,7 @@ "sugar syrup" ], "title": "Green Island recipe", - "url": "http://www.drinksmixer.com/drink4128.html" + "url": "https://www.drinksmixer.com/drink4128.html" }, { "directions": "Shake with cracked ice and strain into a chilled cocktail glass. Garnish with an almond-stuffed olive.", @@ -33181,7 +33181,7 @@ "Green Chartreuse\u00ae" ], "title": "Green Martini recipe", - "url": "http://www.drinksmixer.com/drink4129.html" + "url": "https://www.drinksmixer.com/drink4129.html" }, { "directions": "Fill a collins glass with ice. Add tequila and midori, fill rest of glass with sour mix, and garnish with an orange slice and a cherry.", @@ -33191,7 +33191,7 @@ "sweet and sour mix" ], "title": "Green Mexican recipe", - "url": "http://www.drinksmixer.com/drink4130.html" + "url": "https://www.drinksmixer.com/drink4130.html" }, { "directions": "Shake with ice and strain into a cocktail glass. Garnish with a slice of kiwi fruit and a mint.", @@ -33201,7 +33201,7 @@ "lemon juice" ], "title": "Green Mist recipe", - "url": "http://www.drinksmixer.com/drink4131.html" + "url": "https://www.drinksmixer.com/drink4131.html" }, { "directions": "Build in a lowball glass.", @@ -33211,7 +33211,7 @@ "white rum" ], "title": "Green Pussy recipe", - "url": "http://www.drinksmixer.com/drink4132.html" + "url": "https://www.drinksmixer.com/drink4132.html" }, { "directions": "Stir with ice and strain into a cocktail glass.", @@ -33221,7 +33221,7 @@ "Orange Curacao liqueur" ], "title": "Green Room recipe", - "url": "http://www.drinksmixer.com/drink4133.html" + "url": "https://www.drinksmixer.com/drink4133.html" }, { "directions": "Shake with ice and strain into a lowball glass.", @@ -33233,7 +33233,7 @@ "orange juice" ], "title": "Green Slime recipe", - "url": "http://www.drinksmixer.com/drink4134.html" + "url": "https://www.drinksmixer.com/drink4134.html" }, { "directions": "Build in a lowball glass.", @@ -33242,7 +33242,7 @@ "brandy" ], "title": "Green Stinger recipe", - "url": "http://www.drinksmixer.com/drink4135.html" + "url": "https://www.drinksmixer.com/drink4135.html" }, { "directions": "Mix and drink.", @@ -33252,7 +33252,7 @@ "7-Up\u00ae soda" ], "title": "Green Vodka recipe", - "url": "http://www.drinksmixer.com/drink4136.html" + "url": "https://www.drinksmixer.com/drink4136.html" }, { "directions": "Combine (except 151) over ice in a large rocks glass and float the 151 on top.", @@ -33265,7 +33265,7 @@ "151 proof rum" ], "title": "Grizz Killer recipe", - "url": "http://www.drinksmixer.com/drink4137.html" + "url": "https://www.drinksmixer.com/drink4137.html" }, { "directions": "Pour both ingredients chilled into a glass and enjoy.", @@ -33274,7 +33274,7 @@ "guava juice" ], "title": "Guadka recipe", - "url": "http://www.drinksmixer.com/drink4138.html" + "url": "https://www.drinksmixer.com/drink4138.html" }, { "directions": "Layer in order in a lowball glass.", @@ -33285,7 +33285,7 @@ "butterscotch schnapps" ], "title": "B-28 recipe", - "url": "http://www.drinksmixer.com/drink4139.html" + "url": "https://www.drinksmixer.com/drink4139.html" }, { "directions": "Layer in order into a shot glass, so that the kahlua is at the bottom.", @@ -33295,7 +33295,7 @@ "Tuaca\u00ae citrus liqueur" ], "title": "B-55 recipe", - "url": "http://www.drinksmixer.com/drink4140.html" + "url": "https://www.drinksmixer.com/drink4140.html" }, { "directions": "Serve over ice in a chilled pint glass.", @@ -33306,7 +33306,7 @@ "Rose's\u00ae lime juice" ], "title": "Baby Aspirine of Humbolt recipe", - "url": "http://www.drinksmixer.com/drink4141.html" + "url": "https://www.drinksmixer.com/drink4141.html" }, { "directions": "Shake with cracked ice and strain into a chilled cocktail glass. Garnish with a strawberry.", @@ -33316,7 +33316,7 @@ "maraschino liqueur" ], "title": "Babyface Martini recipe", - "url": "http://www.drinksmixer.com/drink4142.html" + "url": "https://www.drinksmixer.com/drink4142.html" }, { "directions": "Shake with cracked ice and strain into a cocktail glass.", @@ -33326,7 +33326,7 @@ "Angostura\u00ae bitters" ], "title": "Baby Fingers Cocktail recipe", - "url": "http://www.drinksmixer.com/drink4143.html" + "url": "https://www.drinksmixer.com/drink4143.html" }, { "directions": "Blend with ice and serve with a cherry on top.", @@ -33338,7 +33338,7 @@ "vanilla ice cream" ], "title": "Baby Jane recipe", - "url": "http://www.drinksmixer.com/drink4144.html" + "url": "https://www.drinksmixer.com/drink4144.html" }, { "directions": "Stir and strain into a cocktail glass.", @@ -33348,7 +33348,7 @@ "white creme de cacao" ], "title": "Baby's Bottom recipe", - "url": "http://www.drinksmixer.com/drink4145.html" + "url": "https://www.drinksmixer.com/drink4145.html" }, { "directions": "Mix over ice and serve in a highball glass.", @@ -33359,7 +33359,7 @@ "cranberry juice" ], "title": "Baby V.O.X. recipe", - "url": "http://www.drinksmixer.com/drink4146.html" + "url": "https://www.drinksmixer.com/drink4146.html" }, { "directions": "Frappe and pour into a cocktail glass.", @@ -33369,7 +33369,7 @@ "Bacardi\u00ae white rum" ], "title": "Bacardi Pina Colada recipe", - "url": "http://www.drinksmixer.com/drink4147.html" + "url": "https://www.drinksmixer.com/drink4147.html" }, { "directions": "Shake all but rum with ice until cold. Add rum and shake again. Strain into a cocktail glass.", @@ -33381,7 +33381,7 @@ "sugar" ], "title": "Bacardi Special recipe", - "url": "http://www.drinksmixer.com/drink4148.html" + "url": "https://www.drinksmixer.com/drink4148.html" }, { "directions": "Shake with cracked ice and strain into a chilled cocktail glass.", @@ -33392,7 +33392,7 @@ "egg" ], "title": "Bachelor's Bait recipe", - "url": "http://www.drinksmixer.com/drink4149.html" + "url": "https://www.drinksmixer.com/drink4149.html" }, { "directions": "Drop a double shot of 151 into a beer mug of guinness and chug immediately.", @@ -33401,7 +33401,7 @@ "Guinness\u00ae stout" ], "title": "Backfire On The Freeway recipe", - "url": "http://www.drinksmixer.com/drink4150.html" + "url": "https://www.drinksmixer.com/drink4150.html" }, { "directions": "Build in a lowball glass.", @@ -33410,7 +33410,7 @@ "Bailey's\u00ae Irish cream" ], "title": "Back Street Banger recipe", - "url": "http://www.drinksmixer.com/drink4151.html" + "url": "https://www.drinksmixer.com/drink4151.html" }, { "directions": "Add all liquors and grenadine to a shaker with crushed ice and shake for 30 seconds. Strain into a tall glass with cubed ice. Add the ginger ale and garnish with a cherry.", @@ -33422,7 +33422,7 @@ "grenadine syrup" ], "title": "Backyard Dawg recipe", - "url": "http://www.drinksmixer.com/drink4152.html" + "url": "https://www.drinksmixer.com/drink4152.html" }, { "directions": "Shake all ingredients together with equal parts of each juice and pour into a tall glass.", @@ -33439,7 +33439,7 @@ "grenadine syrup" ], "title": "Bad Attitude recipe", - "url": "http://www.drinksmixer.com/drink4153.html" + "url": "https://www.drinksmixer.com/drink4153.html" }, { "directions": "Open a corona and fill it to the top with tequila. Squeeze a 1/4 lime on top. Chug immediately.", @@ -33449,7 +33449,7 @@ "lime" ], "title": "Baha Fog recipe", - "url": "http://www.drinksmixer.com/drink4154.html" + "url": "https://www.drinksmixer.com/drink4154.html" }, { "directions": "Stir in a highball glass and fill with tonic water. Garnish with a slice of lemon.", @@ -33459,7 +33459,7 @@ "tonic water" ], "title": "Bahamas Highball recipe", - "url": "http://www.drinksmixer.com/drink4155.html" + "url": "https://www.drinksmixer.com/drink4155.html" }, { "directions": "Shake and strain into a collins glass filled with crushed ice. Garnish with a pineapple wedge.", @@ -33470,7 +33470,7 @@ "coconut cream" ], "title": "Bahia Cooler recipe", - "url": "http://www.drinksmixer.com/drink4156.html" + "url": "https://www.drinksmixer.com/drink4156.html" }, { "directions": "Build in a lowball glass.", @@ -33479,7 +33479,7 @@ "amaretto almond liqueur" ], "title": "Bailey's and Amaretto recipe", - "url": "http://www.drinksmixer.com/drink4157.html" + "url": "https://www.drinksmixer.com/drink4157.html" }, { "directions": "Shake with ice and strain into a cocktail glass.", @@ -33489,7 +33489,7 @@ "lemon juice" ], "title": "Balalaika recipe", - "url": "http://www.drinksmixer.com/drink4158.html" + "url": "https://www.drinksmixer.com/drink4158.html" }, { "directions": "Combine in a cocktail glass.", @@ -33499,7 +33499,7 @@ "lemonade" ], "title": "Bald Taco recipe", - "url": "http://www.drinksmixer.com/drink4159.html" + "url": "https://www.drinksmixer.com/drink4159.html" }, { "directions": "Shake ingredients (except champagne) with cracked ice and pour into a collins glass. Fill with champagne.", @@ -33513,7 +33513,7 @@ "Champagne" ], "title": "Bali Hai recipe", - "url": "http://www.drinksmixer.com/drink4160.html" + "url": "https://www.drinksmixer.com/drink4160.html" }, { "directions": "Build in a highball glass and fill with orange juice.", @@ -33522,7 +33522,7 @@ "orange juice" ], "title": "Ball Banger recipe", - "url": "http://www.drinksmixer.com/drink4161.html" + "url": "https://www.drinksmixer.com/drink4161.html" }, { "directions": "Shake with ice and strain into a cocktail glass.", @@ -33532,7 +33532,7 @@ "lime juice" ], "title": "Ballet Russe Cocktail recipe", - "url": "http://www.drinksmixer.com/drink4162.html" + "url": "https://www.drinksmixer.com/drink4162.html" }, { "directions": "Shake with ice and strain into a cocktail glass. Garnish with an olive.", @@ -33543,7 +33543,7 @@ "Pernod\u00ae licorice liqueur" ], "title": "Ball Or Head recipe", - "url": "http://www.drinksmixer.com/drink4163.html" + "url": "https://www.drinksmixer.com/drink4163.html" }, { "directions": "In an old-fashioned glass, muddle the honey and a little water until it dissolves. Add ice cubes and whiskey and fill with sparkling water. Stir gently and garnish with a lemon peel.", @@ -33553,7 +33553,7 @@ "soda water" ], "title": "Ballylickey Bait recipe", - "url": "http://www.drinksmixer.com/drink4164.html" + "url": "https://www.drinksmixer.com/drink4164.html" }, { "directions": "Stir in a cocktail glass. Garnish with a twist of lemon peel.", @@ -33563,7 +33563,7 @@ "orange bitters" ], "title": "Bamboo Cocktail recipe", - "url": "http://www.drinksmixer.com/drink4165.html" + "url": "https://www.drinksmixer.com/drink4165.html" }, { "directions": "Shake with ice and strain into a highball glass.", @@ -33573,7 +33573,7 @@ "light cream" ], "title": "Banana Banshee recipe", - "url": "http://www.drinksmixer.com/drink4166.html" + "url": "https://www.drinksmixer.com/drink4166.html" }, { "directions": "Pour creme de banane over ice in a highball glass. Fill to the top with milk and add grenadine.", @@ -33583,7 +33583,7 @@ "milk" ], "title": "Banana Berry recipe", - "url": "http://www.drinksmixer.com/drink4167.html" + "url": "https://www.drinksmixer.com/drink4167.html" }, { "directions": "Shake with ice and strain into a cocktail glass.", @@ -33594,7 +33594,7 @@ "double cream" ], "title": "Banana Bird recipe", - "url": "http://www.drinksmixer.com/drink4168.html" + "url": "https://www.drinksmixer.com/drink4168.html" }, { "directions": "Stir with ice and strain into a cocktail glass.", @@ -33603,7 +33603,7 @@ "banana liqueur" ], "title": "Banana Bliss recipe", - "url": "http://www.drinksmixer.com/drink4169.html" + "url": "https://www.drinksmixer.com/drink4169.html" }, { "directions": "Blend with 1 cup of ice until smooth and pour into a red wine glass. Garnish with orange and banana slices.", @@ -33614,7 +33614,7 @@ "sweet and sour mix" ], "title": "Banana Di Amore recipe", - "url": "http://www.drinksmixer.com/drink4170.html" + "url": "https://www.drinksmixer.com/drink4170.html" }, { "directions": "Blend until smooth and pour into a large brandy snifter. Sprinkle cinnamon on top.", @@ -33625,7 +33625,7 @@ "banana" ], "title": "Banana Foster recipe", - "url": "http://www.drinksmixer.com/drink4171.html" + "url": "https://www.drinksmixer.com/drink4171.html" }, { "directions": "Blend with cracked ice until smooth and pour into a chilled cocktail glass.", @@ -33635,7 +33635,7 @@ "half-and-half" ], "title": "Banana Italiano recipe", - "url": "http://www.drinksmixer.com/drink4172.html" + "url": "https://www.drinksmixer.com/drink4172.html" }, { "directions": "Pour the liquors, ice and coca-cola into a collins glass to make it 3/4 full. Fill to the top with milk.", @@ -33646,7 +33646,7 @@ "milk" ], "title": "Bananalyzer recipe", - "url": "http://www.drinksmixer.com/drink4173.html" + "url": "https://www.drinksmixer.com/drink4173.html" }, { "directions": "Pour over ice in a shaker adding equal parts of orange juice and pineapple juice to the spirits. Shake and strain over ice cubes into a collins glass.", @@ -33657,7 +33657,7 @@ "pineapple juice" ], "title": "Banana Popsicle recipe", - "url": "http://www.drinksmixer.com/drink4174.html" + "url": "https://www.drinksmixer.com/drink4174.html" }, { "directions": "Blend with cracked ice until smooth and pour into a chilled cocktail glass.", @@ -33667,7 +33667,7 @@ "orange juice" ], "title": "Banana Rum Frappe recipe", - "url": "http://www.drinksmixer.com/drink4175.html" + "url": "https://www.drinksmixer.com/drink4175.html" }, { "directions": "Shake well and serve in a cocktail glass.", @@ -33677,7 +33677,7 @@ "rum cream liqueur" ], "title": "Banana Sandwich recipe", - "url": "http://www.drinksmixer.com/drink4176.html" + "url": "https://www.drinksmixer.com/drink4176.html" }, { "directions": "Layer in a cordial glass.", @@ -33686,7 +33686,7 @@ "Irish cream" ], "title": "Banana Slip recipe", - "url": "http://www.drinksmixer.com/drink4177.html" + "url": "https://www.drinksmixer.com/drink4177.html" }, { "directions": "Blend ingredients in a pitcher until the mixture is slushy. Serve in a hurricane glass.", @@ -33698,7 +33698,7 @@ "ice" ], "title": "Banana Slushee recipe", - "url": "http://www.drinksmixer.com/drink4178.html" + "url": "https://www.drinksmixer.com/drink4178.html" }, { "directions": "Shake with cracked ice and strain into a chilled cocktail glass.", @@ -33709,7 +33709,7 @@ "Angostura\u00ae bitters" ], "title": "Banff Cocktail recipe", - "url": "http://www.drinksmixer.com/drink4179.html" + "url": "https://www.drinksmixer.com/drink4179.html" }, { "directions": "Pour into a cocktail glass and garnish with a slice of lemon.", @@ -33719,7 +33719,7 @@ "tomato juice" ], "title": "Bannockburn recipe", - "url": "http://www.drinksmixer.com/drink4180.html" + "url": "https://www.drinksmixer.com/drink4180.html" }, { "directions": "Shake with cracked ice and pour into a chilled collins glass. Garnish with a slice of orange, a slice of banana, a maraschino cherry and sprinkle with nutmeg.", @@ -33731,7 +33731,7 @@ "soda water" ], "title": "Barbados Planter's Punch recipe", - "url": "http://www.drinksmixer.com/drink4181.html" + "url": "https://www.drinksmixer.com/drink4181.html" }, { "directions": "Blend with 1 cup of ice until smooth and pour into a highball glass. Garnish with a lime slice and a pineapple wedge.", @@ -33742,7 +33742,7 @@ "pineapple juice" ], "title": "Barbados Punch recipe", - "url": "http://www.drinksmixer.com/drink4182.html" + "url": "https://www.drinksmixer.com/drink4182.html" }, { "directions": "Shake with ice and strain into a cocktail glass.", @@ -33752,7 +33752,7 @@ "cream" ], "title": "Barbara recipe", - "url": "http://www.drinksmixer.com/drink4183.html" + "url": "https://www.drinksmixer.com/drink4183.html" }, { "directions": "Shake with cracked ice and strain into a chilled old-fashioned glass.", @@ -33761,7 +33761,7 @@ "white sambuca" ], "title": "Barbarella recipe", - "url": "http://www.drinksmixer.com/drink4184.html" + "url": "https://www.drinksmixer.com/drink4184.html" }, { "directions": "Shake with cracked ice and strain into a chilled cocktail glass. Garnish with a lemon twist.", @@ -33772,7 +33772,7 @@ "Chambord\u00ae raspberry liqueur" ], "title": "Barbed Wire recipe", - "url": "http://www.drinksmixer.com/drink4185.html" + "url": "https://www.drinksmixer.com/drink4185.html" }, { "directions": "Shake with ice and strain into a cocktail glass.", @@ -33782,7 +33782,7 @@ "passion-fruit juice" ], "title": "Barbican recipe", - "url": "http://www.drinksmixer.com/drink4186.html" + "url": "https://www.drinksmixer.com/drink4186.html" }, { "directions": "Serve over ice in a collins glass, or blend for a frozen version of this drink.", @@ -33795,7 +33795,7 @@ "orange juice" ], "title": "Barking Spider recipe", - "url": "http://www.drinksmixer.com/drink4187.html" + "url": "https://www.drinksmixer.com/drink4187.html" }, { "directions": "Pour into a highball glass and fill with pineapple juice. Float the cranberry juice.", @@ -33805,7 +33805,7 @@ "cranberry juice" ], "title": "Barn Door recipe", - "url": "http://www.drinksmixer.com/drink4188.html" + "url": "https://www.drinksmixer.com/drink4188.html" }, { "directions": "Shake with ice and strain into a lowball glass.", @@ -33815,7 +33815,7 @@ "orange bitters" ], "title": "Barn Door #2 recipe", - "url": "http://www.drinksmixer.com/drink4189.html" + "url": "https://www.drinksmixer.com/drink4189.html" }, { "directions": "Shake with cracked ice and strain into a chilled cocktail glass. Garnish with a lemon twist.", @@ -33826,7 +33826,7 @@ "lemon juice" ], "title": "Barnum recipe", - "url": "http://www.drinksmixer.com/drink4190.html" + "url": "https://www.drinksmixer.com/drink4190.html" }, { "directions": "Stir with ice and strain into a cocktail glass. Garnish with a twist of lemon peel.", @@ -33837,7 +33837,7 @@ "Cointreau\u00ae orange liqueur" ], "title": "Baronial recipe", - "url": "http://www.drinksmixer.com/drink4191.html" + "url": "https://www.drinksmixer.com/drink4191.html" }, { "directions": "Shake with cracked ice and strain into a cocktail glass.", @@ -33847,7 +33847,7 @@ "lemon juice" ], "title": "Basin Street recipe", - "url": "http://www.drinksmixer.com/drink4193.html" + "url": "https://www.drinksmixer.com/drink4193.html" }, { "directions": "Build in a highball glass and fill with club soda.", @@ -33859,7 +33859,7 @@ "club soda" ], "title": "Bastardo recipe", - "url": "http://www.drinksmixer.com/drink4194.html" + "url": "https://www.drinksmixer.com/drink4194.html" }, { "directions": "Blend with 1 cup of ice until smooth and pour into a wine glass.", @@ -33869,7 +33869,7 @@ "granulated sugar" ], "title": "Batida Abaci recipe", - "url": "http://www.drinksmixer.com/drink4195.html" + "url": "https://www.drinksmixer.com/drink4195.html" }, { "directions": "Blend with cracked ice until smooth and pour into a chilled double old-fashioned glass. Garnish with a sprig of mint.", @@ -33879,7 +33879,7 @@ "superfine sugar" ], "title": "Batida de Pina recipe", - "url": "http://www.drinksmixer.com/drink4196.html" + "url": "https://www.drinksmixer.com/drink4196.html" }, { "directions": "Shake with ice and strain over ice cubes in a highball glass. Fill with sparkling water and garnish with fresh raspberries.", @@ -33891,7 +33891,7 @@ "soda water" ], "title": "Bayard Fizz recipe", - "url": "http://www.drinksmixer.com/drink4197.html" + "url": "https://www.drinksmixer.com/drink4197.html" }, { "directions": "Pour the vodka, the schnapps and the 7-up in a highball glass. Then add in slowly the cranberry juice. Float the blue curacao on top. If done right you'll have a nice multi-coloured drink.", @@ -33903,7 +33903,7 @@ "cranberry juice" ], "title": "Bay Blue recipe", - "url": "http://www.drinksmixer.com/drink4198.html" + "url": "https://www.drinksmixer.com/drink4198.html" }, { "directions": "Dump out six ounces of beer, add alcohol, fill up the rest of the beer can with water, mix and let settle.", @@ -33913,7 +33913,7 @@ "alcohol" ], "title": "H-Bomb recipe", - "url": "http://www.drinksmixer.com/drink4199.html" + "url": "https://www.drinksmixer.com/drink4199.html" }, { "directions": "Mix the whisky and baileys cream in a beer-glass (at least 50 cl). Fill the rest of the glass with coffee.", @@ -33923,7 +33923,7 @@ "coffee" ], "title": "H.D. recipe", - "url": "http://www.drinksmixer.com/drink4200.html" + "url": "https://www.drinksmixer.com/drink4200.html" }, { "directions": "Stir all ingredients (except orange peel) with ice and strain into a cocktail glass. Add the twist of orange peel and serve.", @@ -33934,7 +33934,7 @@ "orange" ], "title": "H.P.W. Cocktail recipe", - "url": "http://www.drinksmixer.com/drink4201.html" + "url": "https://www.drinksmixer.com/drink4201.html" }, { "directions": "Pour in vodka, pineapple, orange, lemonade, and fresca, then mix.", @@ -33947,7 +33947,7 @@ "ice" ], "title": "H2O recipe", - "url": "http://www.drinksmixer.com/drink4202.html" + "url": "https://www.drinksmixer.com/drink4202.html" }, { "directions": "Fill a 16 oz cup with ice, pour in alcohol, then top with orange juice.", @@ -33959,7 +33959,7 @@ "orange juice" ], "title": "Ha Ha Tonka recipe", - "url": "http://www.drinksmixer.com/drink4203.html" + "url": "https://www.drinksmixer.com/drink4203.html" }, { "directions": "Pour vodka into a glass. Add sugar and a suitable amount of crushed ice with the lime cubes. Stir until all sugar is dissolved.", @@ -33968,7 +33968,7 @@ "limes" ], "title": "Haacker Special recipe", - "url": "http://www.drinksmixer.com/drink4204.html" + "url": "https://www.drinksmixer.com/drink4204.html" }, { "directions": "In a mixing glass half-filled with ice cubes, combine the rum, vermouth, and bitters. Stir well. Strain into a cocktail glass and garnish with the lemon twist.", @@ -33979,7 +33979,7 @@ "lemon" ], "title": "Haidin-Haidin recipe", - "url": "http://www.drinksmixer.com/drink4205.html" + "url": "https://www.drinksmixer.com/drink4205.html" }, { "directions": "Shake all ingredients with ice, strain into a cocktail glass, and serve.", @@ -33989,7 +33989,7 @@ "lemon juice" ], "title": "Hair Raiser recipe", - "url": "http://www.drinksmixer.com/drink4206.html" + "url": "https://www.drinksmixer.com/drink4206.html" }, { "directions": "Fill 1/3 of a collins glass with cider, then float the guinness on top, to bring the volume to 2/3 full. Pour bushmill's irish whiskey in a separate shot glass. Drop the shot glass into the collins glass and slam it!", @@ -33999,7 +33999,7 @@ "Bushmills\u00ae Irish whiskey" ], "title": "Hairball recipe", - "url": "http://www.drinksmixer.com/drink4207.html" + "url": "https://www.drinksmixer.com/drink4207.html" }, { "directions": "Mix all ingredients into a large cooler, punch bowl or garbage can (a new one). Cut larger fruit into pieces and add.", @@ -34014,7 +34014,7 @@ "ice cubes" ], "title": "Hairy Buffalo recipe", - "url": "http://www.drinksmixer.com/drink4208.html" + "url": "https://www.drinksmixer.com/drink4208.html" }, { "directions": "Mix with whatever is available.", @@ -34026,7 +34026,7 @@ "lime juice" ], "title": "Hairy Happy Trail recipe", - "url": "http://www.drinksmixer.com/drink4209.html" + "url": "https://www.drinksmixer.com/drink4209.html" }, { "directions": "Add dark rum to an ice-filled glass. Fill to the top with papaya juice.", @@ -34036,7 +34036,7 @@ "ice" ], "title": "Hairy Jerry recipe", - "url": "http://www.drinksmixer.com/drink4210.html" + "url": "https://www.drinksmixer.com/drink4210.html" }, { "directions": "Mix all ingredients in a blender except grenadine. Pour into a collins glass and float grenadine on top. Garnish with a slice of lime.", @@ -34048,7 +34048,7 @@ "grenadine syrup" ], "title": "Hairy Sunrise recipe", - "url": "http://www.drinksmixer.com/drink4211.html" + "url": "https://www.drinksmixer.com/drink4211.html" }, { "directions": "Layer cointreau and chartreuse in the glass. Ignite with a match, lick the palm of your hand and cover the glass with it.\r", @@ -34057,7 +34057,7 @@ "Green Chartreuse\u00ae" ], "title": "Hakkespett recipe", - "url": "http://www.drinksmixer.com/drink4212.html" + "url": "https://www.drinksmixer.com/drink4212.html" }, { "directions": "Fill 1/2 a pint glass with harp. Slowly fill the remainder of the glass with guinness, pouring it slowly over the back side of a spoon as to layer it nicely on top.", @@ -34066,7 +34066,7 @@ "Guinness\u00ae stout" ], "title": "Half and Half recipe", - "url": "http://www.drinksmixer.com/drink4213.html" + "url": "https://www.drinksmixer.com/drink4213.html" }, { "directions": "Combine with ice, strain, and serve in a hollowed-out pineapple.", @@ -34078,7 +34078,7 @@ "grenadine syrup" ], "title": "Halfway Special recipe", - "url": "http://www.drinksmixer.com/drink4214.html" + "url": "https://www.drinksmixer.com/drink4214.html" }, { "directions": "Use a large metal container with plenty of ice and a strainer. Shake ingredients well, and pour them through a strainer into a margarita glass. Serve with salt and fresh lime.", @@ -34089,7 +34089,7 @@ "triple sec" ], "title": "Margarita Cocktail #3 recipe", - "url": "http://www.drinksmixer.com/drink4215.html" + "url": "https://www.drinksmixer.com/drink4215.html" }, { "directions": "Pour the ingredients into a large glass. Shaken, not stirred.", @@ -34100,7 +34100,7 @@ "Johnnie Walker\u00ae Scotch whisky" ], "title": "Hangover recipe", - "url": "http://www.drinksmixer.com/drink4216.html" + "url": "https://www.drinksmixer.com/drink4216.html" }, { "directions": "Pour captain morgan's spiced rum over ice and fill the glass with ginger ale. Garnish with lime.", @@ -34109,7 +34109,7 @@ "ginger ale" ], "title": "Happy Skipper recipe", - "url": "http://www.drinksmixer.com/drink4217.html" + "url": "https://www.drinksmixer.com/drink4217.html" }, { "directions": "Mix the ingredients in a shot glass and serve with a pint of beer on the side.", @@ -34118,7 +34118,7 @@ "Tabasco\u00ae sauce" ], "title": "Harakiri Shot recipe", - "url": "http://www.drinksmixer.com/drink4218.html" + "url": "https://www.drinksmixer.com/drink4218.html" }, { "directions": "Add 1/2 shot bailey's irish cream to 1/2 shot butterscotch schnapps, then float yukon jack on top. Ignite the yukon jack and sip quickly through a straw.", @@ -34128,7 +34128,7 @@ "Yukon Jack\u00ae Canadian whisky" ], "title": "Harbor Lights recipe", - "url": "http://www.drinksmixer.com/drink4219.html" + "url": "https://www.drinksmixer.com/drink4219.html" }, { "directions": "Combine all ingredients in a tall glass or wine goblet. Add the cola last. Hang orange on rim of glass.", @@ -34141,7 +34141,7 @@ "orange" ], "title": "Hard Core recipe", - "url": "http://www.drinksmixer.com/drink4220.html" + "url": "https://www.drinksmixer.com/drink4220.html" }, { "directions": "Add rum, lime juice and bitters to an ice-filled collins glass. Fill with ginger beer. Garnish with a lime wheel and a lemon spiral.", @@ -34152,7 +34152,7 @@ "ginger beer" ], "title": "Hard Eight recipe", - "url": "http://www.drinksmixer.com/drink4221.html" + "url": "https://www.drinksmixer.com/drink4221.html" }, { "directions": "Fill a glass with ice and add liquors. Add a dash of lime juice. Fill to top with pineapple juice. Shake well and serve. Garnish with a slice of lime and a cherry.", @@ -34165,7 +34165,7 @@ "lime" ], "title": "Hard Green Bricaki recipe", - "url": "http://www.drinksmixer.com/drink4222.html" + "url": "https://www.drinksmixer.com/drink4222.html" }, { "directions": "Measure light and dark rum into a glass. Add the juices and grenadine, shake well, then top with 151 rum. Garnish with a cherry and an orange slice.", @@ -34178,7 +34178,7 @@ "Bacardi\u00ae 151 rum" ], "title": "Harlee's Planters Punch recipe", - "url": "http://www.drinksmixer.com/drink4223.html" + "url": "https://www.drinksmixer.com/drink4223.html" }, { "directions": "Shake gin, pineapple juice, and maraschino liqueur with ice and strain into a cocktail glass. Decorate with pineapple chunks and serve.", @@ -34189,7 +34189,7 @@ "pineapple" ], "title": "Harlem Cocktail recipe", - "url": "http://www.drinksmixer.com/drink4224.html" + "url": "https://www.drinksmixer.com/drink4224.html" }, { "directions": "Build ingredients in order over ice in a collins glass.", @@ -34203,7 +34203,7 @@ "lime" ], "title": "Harlem Mugger recipe", - "url": "http://www.drinksmixer.com/drink4225.html" + "url": "https://www.drinksmixer.com/drink4225.html" }, { "directions": "Mix over ice cubes, pour into a suitable glass and consume immediately.\r", @@ -34216,7 +34216,7 @@ "gin" ], "title": "Harlem World Seven recipe", - "url": "http://www.drinksmixer.com/drink4226.html" + "url": "https://www.drinksmixer.com/drink4226.html" }, { "directions": "In a mixing tin add baileys irish cream and midori melon liqueur over ice. Stir and strain into a 4 oz. rocks glass, top with jagermeister, and serve.", @@ -34226,7 +34226,7 @@ "Jagermeister\u00ae herbal liqueur" ], "title": "Harley Davidson recipe", - "url": "http://www.drinksmixer.com/drink4227.html" + "url": "https://www.drinksmixer.com/drink4227.html" }, { "directions": "Combine all ingredients in a highball glass, stir, and serve.", @@ -34237,7 +34237,7 @@ "lemon juice" ], "title": "Harley Davidson #2 recipe", - "url": "http://www.drinksmixer.com/drink4228.html" + "url": "https://www.drinksmixer.com/drink4228.html" }, { "directions": "Pour alcohol into the shot glass. Occassionally mix with ice then put into a shot glass. Serve with a lemon wedge.", @@ -34246,7 +34246,7 @@ "Jack Daniel's\u00ae Tennessee whiskey" ], "title": "Harley Davidson #3 recipe", - "url": "http://www.drinksmixer.com/drink4229.html" + "url": "https://www.drinksmixer.com/drink4229.html" }, { "directions": "Layer ingredients in order listed above. Squeeze a wedge of lemon over layered ingredients. Be sure to mount lemon wedge on side of glass or place in glass.", @@ -34257,7 +34257,7 @@ "peppermint schnapps" ], "title": "Harry Alligator recipe", - "url": "http://www.drinksmixer.com/drink4230.html" + "url": "https://www.drinksmixer.com/drink4230.html" }, { "directions": "Mix with ice and serve cool.", @@ -34268,7 +34268,7 @@ "milk" ], "title": "Harry Boy recipe", - "url": "http://www.drinksmixer.com/drink4231.html" + "url": "https://www.drinksmixer.com/drink4231.html" }, { "directions": "Shake and strain into a cocktail glass.", @@ -34277,7 +34277,7 @@ "Green Chartreuse\u00ae" ], "title": "Harry Denton Martini recipe", - "url": "http://www.drinksmixer.com/drink4232.html" + "url": "https://www.drinksmixer.com/drink4232.html" }, { "directions": "Mix ingredients and serve.", @@ -34286,7 +34286,7 @@ "Jagermeister\u00ae herbal liqueur" ], "title": "Harsh recipe", - "url": "http://www.drinksmixer.com/drink4233.html" + "url": "https://www.drinksmixer.com/drink4233.html" }, { "directions": "Pour 2 oz. carbonated water into a collins glass. Add powdered sugar and stir. Add ice cubes and apple brandy. Fill with carbonated water and stir again. Add the twist of lemon peel and the spiral of orange so that the end dangles over rim of glass.", @@ -34298,7 +34298,7 @@ "carbonated water" ], "title": "Harvard Cooler recipe", - "url": "http://www.drinksmixer.com/drink4234.html" + "url": "https://www.drinksmixer.com/drink4234.html" }, { "directions": "Pour first 4 ingredients over ice into a collins glass, slowly adding grenadine as you stir.", @@ -34310,7 +34310,7 @@ "grenadine syrup" ], "title": "Harvest Moon recipe", - "url": "http://www.drinksmixer.com/drink4235.html" + "url": "https://www.drinksmixer.com/drink4235.html" }, { "directions": "Mix together.", @@ -34320,7 +34320,7 @@ "milk" ], "title": "Harvey Cowpuncher recipe", - "url": "http://www.drinksmixer.com/drink4236.html" + "url": "https://www.drinksmixer.com/drink4236.html" }, { "directions": "In a glass with ice, add Smirnoff No.21 Vodka and orange juice.\r", @@ -34331,7 +34331,7 @@ "orange" ], "title": "Harvey Wallbanger recipe", - "url": "http://www.drinksmixer.com/drink4237.html" + "url": "https://www.drinksmixer.com/drink4237.html" }, { "directions": "Pour gin and campari over a couple of ice cubes. Fill up with schweppes russian.", @@ -34341,7 +34341,7 @@ "Schweppes\u00ae Russian tonic water" ], "title": "Hashi Bashi recipe", - "url": "http://www.drinksmixer.com/drink4238.html" + "url": "https://www.drinksmixer.com/drink4238.html" }, { "directions": "Stir all ingredients with ice, strain into a cocktail glass, and serve.", @@ -34352,7 +34352,7 @@ "grenadine syrup" ], "title": "Hasty Cocktail recipe", - "url": "http://www.drinksmixer.com/drink4239.html" + "url": "https://www.drinksmixer.com/drink4239.html" }, { "directions": "In a mixing glass half-filled with ice cubes, combine the dark rum, light rum, and vermouth. Stir well. Strain into a cocktail glass.", @@ -34362,7 +34362,7 @@ "sweet vermouth" ], "title": "Hat Trick recipe", - "url": "http://www.drinksmixer.com/drink4240.html" + "url": "https://www.drinksmixer.com/drink4240.html" }, { "directions": "In a mixing glass half-filled with ice cubes, combine the rum, vermouth, and bitters. Stir well. Strain into a cocktail glass and garnish with the lemon twist.", @@ -34373,7 +34373,7 @@ "lemon" ], "title": "Hat Trick #2 recipe", - "url": "http://www.drinksmixer.com/drink4241.html" + "url": "https://www.drinksmixer.com/drink4241.html" }, { "directions": "Serve cold, with or without ice. Garnish with a cherry.", @@ -34384,7 +34384,7 @@ "ice" ], "title": "Haus Special recipe", - "url": "http://www.drinksmixer.com/drink4242.html" + "url": "https://www.drinksmixer.com/drink4242.html" }, { "directions": "In a shaker half-filled with ice cubes, combine all of the ingredients. Shake well. Strain into a cocktail glass.", @@ -34394,7 +34394,7 @@ "lemon juice" ], "title": "Havana Cocktail recipe", - "url": "http://www.drinksmixer.com/drink4243.html" + "url": "https://www.drinksmixer.com/drink4243.html" }, { "directions": "Add all ingredients on top of ice in a highball glass.", @@ -34405,7 +34405,7 @@ "pineapple juice" ], "title": "Hawaii Five-O recipe", - "url": "http://www.drinksmixer.com/drink4244.html" + "url": "https://www.drinksmixer.com/drink4244.html" }, { "directions": "Shake all ingredients with ice, strain into a cocktail glass, and serve.", @@ -34415,7 +34415,7 @@ "pineapple juice" ], "title": "Hawaiian Cocktail recipe", - "url": "http://www.drinksmixer.com/drink4245.html" + "url": "https://www.drinksmixer.com/drink4245.html" }, { "directions": "Mix with ice and strain into a tall shot glass.", @@ -34429,7 +34429,7 @@ "grenadine syrup" ], "title": "Hawaiian Shooter recipe", - "url": "http://www.drinksmixer.com/drink4246.html" + "url": "https://www.drinksmixer.com/drink4246.html" }, { "directions": "Place ice cubes into the glass. Shake vodka, orange juice and cranberry juice in a shaker. Pour into glass. Top off with soda water. Garnish with cherry and pineapple slice (optional).", @@ -34440,7 +34440,7 @@ "soda water" ], "title": "Hawaiian Sunset recipe", - "url": "http://www.drinksmixer.com/drink4247.html" + "url": "https://www.drinksmixer.com/drink4247.html" }, { "directions": "Shake and strain into an ice-filled highball glass.", @@ -34453,7 +34453,7 @@ "grenadine syrup" ], "title": "Hawaiian Volcano #2 recipe", - "url": "http://www.drinksmixer.com/drink4248.html" + "url": "https://www.drinksmixer.com/drink4248.html" }, { "directions": "Shake with ice and strain into shot glasses.", @@ -34465,7 +34465,7 @@ "orange juice" ], "title": "Hawaiian Volcano recipe", - "url": "http://www.drinksmixer.com/drink4249.html" + "url": "https://www.drinksmixer.com/drink4249.html" }, { "directions": "Pour all ingredients over ice, shake and strain into a large shot glass.", @@ -34478,7 +34478,7 @@ "grenadine syrup" ], "title": "Hawaiian Punch From Hell recipe", - "url": "http://www.drinksmixer.com/drink4250.html" + "url": "https://www.drinksmixer.com/drink4250.html" }, { "directions": "Serve over ice. Regular 7-up and amaretto can be used if cherry 7-Up is not available. Garnish with an orange slice and cherry. Serve with a straw.", @@ -34487,7 +34487,7 @@ "7-Up\u00ae cherry soda" ], "title": "Haywire recipe", - "url": "http://www.drinksmixer.com/drink4251.html" + "url": "https://www.drinksmixer.com/drink4251.html" }, { "directions": "Stir well with ice and a spoon.", @@ -34497,7 +34497,7 @@ "milk" ], "title": "Headcrack recipe", - "url": "http://www.drinksmixer.com/drink4252.html" + "url": "https://www.drinksmixer.com/drink4252.html" }, { "directions": "Fill the glass with tequila and add tabasco sauce. Carefully layer the whipped cream on top and add some salt to taste.", @@ -34508,7 +34508,7 @@ "salt" ], "title": "Headcrush recipe", - "url": "http://www.drinksmixer.com/drink4253.html" + "url": "https://www.drinksmixer.com/drink4253.html" }, { "directions": "Mix liquors (except beer) in a tall tumbler. Stir in the juices, and shake with ice. Slowly add the beer and stir to blend. Serve in a tall glass or a 1/2 coconut shell with the meat intact.", @@ -34523,7 +34523,7 @@ "beer" ], "title": "Headhunter recipe", - "url": "http://www.drinksmixer.com/drink4254.html" + "url": "https://www.drinksmixer.com/drink4254.html" }, { "directions": "Put vodka and bitters into a collins glass. Add several ice cubes, fill with ginger ale, and stir. Add the orange slice and serve.", @@ -34534,7 +34534,7 @@ "orange" ], "title": "Headless Horseman recipe", - "url": "http://www.drinksmixer.com/drink4255.html" + "url": "https://www.drinksmixer.com/drink4255.html" }, { "directions": "Place ice in a glass upto the rim. Add alcohol followed by cranberry juice, stir and serve.", @@ -34545,7 +34545,7 @@ "ice cubes" ], "title": "The Head recipe", - "url": "http://www.drinksmixer.com/drink4256.html" + "url": "https://www.drinksmixer.com/drink4256.html" }, { "directions": "Pour all ingredients into a mug or glass with a salted rim. Fill with ice and 7-up/sprite.", @@ -34556,7 +34556,7 @@ "7-Up\u00ae soda" ], "title": "Heavy G recipe", - "url": "http://www.drinksmixer.com/drink4257.html" + "url": "https://www.drinksmixer.com/drink4257.html" }, { "directions": "Pour vodka and then blueberry schnapps into a shot glass. Top off with the cranberry juice.", @@ -34566,7 +34566,7 @@ "cranberry juice" ], "title": "Heilig recipe", - "url": "http://www.drinksmixer.com/drink4258.html" + "url": "https://www.drinksmixer.com/drink4258.html" }, { "directions": "Pour into a glass and serve.", @@ -34576,7 +34576,7 @@ "ice" ], "title": "Heliuva Rootbeer recipe", - "url": "http://www.drinksmixer.com/drink4259.html" + "url": "https://www.drinksmixer.com/drink4259.html" }, { "directions": "Add ingredients to a shaker, fill with V8 juice and shake vigorously. Add black pepper to taste. Serve in a collins glass filled with ice, and garnish with celery and a lemon wedge.", @@ -34590,7 +34590,7 @@ "black pepper" ], "title": "Hell Mary recipe", - "url": "http://www.drinksmixer.com/drink4260.html" + "url": "https://www.drinksmixer.com/drink4260.html" }, { "directions": "Pour dark rum, light rum, juices, and grenadine over ice into a pilsner/parfait glass. Add a half spoon of sugar, stir slightly, and top with high octane 151 rum and cherries/pineapple. Add an optional sugar cube, ignite and drink with a straw.", @@ -34606,7 +34606,7 @@ "sugar" ], "title": "Helluva Hurricane recipe", - "url": "http://www.drinksmixer.com/drink4261.html" + "url": "https://www.drinksmixer.com/drink4261.html" }, { "directions": "Shake with ice and strain into a chilled cocktail glass.", @@ -34617,7 +34617,7 @@ "grapefruit juice" ], "title": "Hemingway Daiquiri recipe", - "url": "http://www.drinksmixer.com/drink4262.html" + "url": "https://www.drinksmixer.com/drink4262.html" }, { "directions": "Pour the cognac into a highball glass. Fill the remainder of the glass with sprite. Squeeze 1/2 of a medium size lemon into the drink and garnish with 1/4 inch lemon wedges.", @@ -34627,7 +34627,7 @@ "lemon" ], "title": "Hennyville Slugger recipe", - "url": "http://www.drinksmixer.com/drink4263.html" + "url": "https://www.drinksmixer.com/drink4263.html" }, { "directions": "Pour hot damn 100 into the bottom of a jar or regular glass. Fill the rest of the glass with sweet tea. Stir with a spoon, straw, or better yet a cinnamon stick and leave it in.", @@ -34636,7 +34636,7 @@ "tea" ], "title": "Herbal Flame recipe", - "url": "http://www.drinksmixer.com/drink4264.html" + "url": "https://www.drinksmixer.com/drink4264.html" }, { "directions": "Make cocoa in the traditional method, and add whiskey liberally.", @@ -34645,7 +34645,7 @@ "whiskey" ], "title": "Hershey Squirts recipe", - "url": "http://www.drinksmixer.com/drink4265.html" + "url": "https://www.drinksmixer.com/drink4265.html" }, { "directions": "Fill a medium glass most of the way with 4 - 5 ice cubes. Add the whiskey, and fill the rest up of the way with ginger ale.", @@ -34654,7 +34654,7 @@ "ginger ale" ], "title": "Highball Cocktail recipe", - "url": "http://www.drinksmixer.com/drink4266.html" + "url": "https://www.drinksmixer.com/drink4266.html" }, { "directions": "Stir all ingredients (except olive) with ice and strain into a cocktail glass. Add the olive and serve.", @@ -34665,7 +34665,7 @@ "olive" ], "title": "Highland Fling Cocktail recipe", - "url": "http://www.drinksmixer.com/drink4267.html" + "url": "https://www.drinksmixer.com/drink4267.html" }, { "directions": "In a shaker half-filled with ice cubes, combine the sugar, water, lemon juice, and scotch. Shake well. Strain into a highball glass. Garnish with the lemon twist.", @@ -34677,7 +34677,7 @@ "lemon" ], "title": "Highland Sling recipe", - "url": "http://www.drinksmixer.com/drink4268.html" + "url": "https://www.drinksmixer.com/drink4268.html" }, { "directions": "Fill a blender with ice, pour in the ingredients and blend it all together. Pour into a hurricane glass with a piece of orange on the glass.", @@ -34687,7 +34687,7 @@ "sweet and sour mix" ], "title": "Hilde's Special recipe", - "url": "http://www.drinksmixer.com/drink4269.html" + "url": "https://www.drinksmixer.com/drink4269.html" }, { "directions": "Shake all ingredients except coke. Pour over ice and top with coke for an extra creamy head. Serve with a straw on a sunny day.", @@ -34700,7 +34700,7 @@ "Coca-Cola\u00ae" ], "title": "Hillbilly Bob's Mountain Drink recipe", - "url": "http://www.drinksmixer.com/drink4270.html" + "url": "https://www.drinksmixer.com/drink4270.html" }, { "directions": "Mix the captain morgans, mountain dew and sugar in one glass. Pour the fire water into a shot glass. Take the shot, then follow it with the mixed drink. Make sure to drink the mixed drink quickly.", @@ -34711,7 +34711,7 @@ "sugar" ], "title": "Hillinator recipe", - "url": "http://www.drinksmixer.com/drink4271.html" + "url": "https://www.drinksmixer.com/drink4271.html" }, { "directions": "Heat wine, add raisins and boil. Mix coca-cola, tequila, orange juice and add to boiled wine with raisins. Toss bananas with hot red pepper flakes. Pour champagne over the bananas. Mix everything together and store in a glass jar. Place in a fridge for 8 hours. Served chilled with fresh cherries.", @@ -34726,7 +34726,7 @@ "pepper" ], "title": "Hina Blast recipe", - "url": "http://www.drinksmixer.com/drink4272.html" + "url": "https://www.drinksmixer.com/drink4272.html" }, { "directions": "Fill your shot glass 3/4 way full with triple sec. Carefully layer the bailey's on top of the triple sec, and add some drops of grenadine into the center. If done correctly it will look like an atomic mushroom cloud when the drop hits the bottom of the shot glass.", @@ -34736,7 +34736,7 @@ "grenadine syrup" ], "title": "Hiroshima Bomber recipe", - "url": "http://www.drinksmixer.com/drink4273.html" + "url": "https://www.drinksmixer.com/drink4273.html" }, { "directions": "Combine ingredients in an old-fashioned glass. Add ice and a cherry. Stir.", @@ -34746,7 +34746,7 @@ "sweet and sour mix" ], "title": "Hispaniola recipe", - "url": "http://www.drinksmixer.com/drink4274.html" + "url": "https://www.drinksmixer.com/drink4274.html" }, { "directions": "Shake all ingredients with ice, strain into a cocktail glass, and serve.", @@ -34756,7 +34756,7 @@ "sake rice wine" ], "title": "Hokkaido Cocktail recipe", - "url": "http://www.drinksmixer.com/drink4275.html" + "url": "https://www.drinksmixer.com/drink4275.html" }, { "directions": "Shake all ingredients with ice, strain into a cocktail glass, and serve.", @@ -34767,7 +34767,7 @@ "orange bitters" ], "title": "Hole-In-One recipe", - "url": "http://www.drinksmixer.com/drink4276.html" + "url": "https://www.drinksmixer.com/drink4276.html" }, { "directions": "Mix champagne and frozen cranberry juice (undiluted). Slice lime and garnish each wine glass. Serve with breakfast to start the day right. Note: Mix right before serving to retain the bubbles. You may use non-alcoholic champagne.", @@ -34777,7 +34777,7 @@ "lime" ], "title": "Holiday Cheer recipe", - "url": "http://www.drinksmixer.com/drink4277.html" + "url": "https://www.drinksmixer.com/drink4277.html" }, { "directions": "Mix all ingredients in a shaker and strain.", @@ -34788,7 +34788,7 @@ "Rose's\u00ae lime juice" ], "title": "Hollywood recipe", - "url": "http://www.drinksmixer.com/drink4278.html" + "url": "https://www.drinksmixer.com/drink4278.html" }, { "directions": "Mix with ice and strain into an ice-filled highball glass.", @@ -34798,7 +34798,7 @@ "pineapple juice" ], "title": "The Hollywood recipe", - "url": "http://www.drinksmixer.com/drink4279.html" + "url": "https://www.drinksmixer.com/drink4279.html" }, { "directions": "Place ingredients into a shaker with ice. Shake and strain into a shot glass.", @@ -34808,7 +34808,7 @@ "cranberry juice" ], "title": "Hologram recipe", - "url": "http://www.drinksmixer.com/drink4280.html" + "url": "https://www.drinksmixer.com/drink4280.html" }, { "directions": "Add ingredients, stir, and serve.", @@ -34819,7 +34819,7 @@ "ice cubes" ], "title": "Holy Doodle recipe", - "url": "http://www.drinksmixer.com/drink4281.html" + "url": "https://www.drinksmixer.com/drink4281.html" }, { "directions": "Combine alcohol in a rocks glass over ice. Fill with tonic water, then add one dash of grenadine. Be sure the drink is served with the tonic still bubbling.", @@ -34831,7 +34831,7 @@ "grenadine syrup" ], "title": "Holy Water recipe", - "url": "http://www.drinksmixer.com/drink4282.html" + "url": "https://www.drinksmixer.com/drink4282.html" }, { "directions": "Place all ingredients into a blender jar. Cover, and whiz on medium speed until well blended. Pour into a collins glass, and serve.", @@ -34841,7 +34841,7 @@ "honey" ], "title": "Honey Lemonade recipe", - "url": "http://www.drinksmixer.com/drink4283.html" + "url": "https://www.drinksmixer.com/drink4283.html" }, { "directions": "Dissolve honey in hot water. The water should not be hotter than 45 degrees celsius. Let the mixture cool down, then add spirit of wine (alcohol). \r", @@ -34851,7 +34851,7 @@ "alcohol" ], "title": "Honey Liquor recipe", - "url": "http://www.drinksmixer.com/drink4284.html" + "url": "https://www.drinksmixer.com/drink4284.html" }, { "directions": "Serve as a chilled shot.", @@ -34861,7 +34861,7 @@ "orange juice" ], "title": "Honey-Dew-Me recipe", - "url": "http://www.drinksmixer.com/drink4285.html" + "url": "https://www.drinksmixer.com/drink4285.html" }, { "directions": "Shake all ingredients with ice, strain into a cocktail glass, and serve.", @@ -34872,7 +34872,7 @@ "lemons" ], "title": "Honeymoon Cocktail recipe", - "url": "http://www.drinksmixer.com/drink4286.html" + "url": "https://www.drinksmixer.com/drink4286.html" }, { "directions": "Layer ingredients in the above order, top with whipped cream, top with a sprinkle of Li Hing Powder.", @@ -34887,7 +34887,7 @@ "whipped cream" ], "title": "Honolulu Action recipe", - "url": "http://www.drinksmixer.com/drink4287.html" + "url": "https://www.drinksmixer.com/drink4287.html" }, { "directions": "Stir all ingredients with ice, strain into a cocktail glass, and serve.", @@ -34897,7 +34897,7 @@ "maraschino liqueur" ], "title": "Honolulu Cocktail #2 recipe", - "url": "http://www.drinksmixer.com/drink4288.html" + "url": "https://www.drinksmixer.com/drink4288.html" }, { "directions": "Pack a tall glass with crushed ice, add lime juice and southern comfort. Fill with pineapple juice and stir.", @@ -34907,7 +34907,7 @@ "pineapple juice" ], "title": "Honolulu Cooler recipe", - "url": "http://www.drinksmixer.com/drink4289.html" + "url": "https://www.drinksmixer.com/drink4289.html" }, { "directions": "Mix southern Comfort, finlandia vodka, orange juice, and lime juice over ice. Top with a splash of peppermint schnapps and sprite.", @@ -34920,7 +34920,7 @@ "Sprite\u00ae soda" ], "title": "Hoo Doo recipe", - "url": "http://www.drinksmixer.com/drink4290.html" + "url": "https://www.drinksmixer.com/drink4290.html" }, { "directions": "In a mixing glass half-filled with ice cubes, combine all of the ingredients. Stir well. Strain into a cocktail glass.", @@ -34930,7 +34930,7 @@ "sweet vermouth" ], "title": "Hoots Mon recipe", - "url": "http://www.drinksmixer.com/drink4291.html" + "url": "https://www.drinksmixer.com/drink4291.html" }, { "directions": "Stir all ingredients with ice, strain into a cocktail glass, and serve.", @@ -34940,7 +34940,7 @@ "limes" ], "title": "Hop Toad recipe", - "url": "http://www.drinksmixer.com/drink4292.html" + "url": "https://www.drinksmixer.com/drink4292.html" }, { "directions": "Empty a bag of ice into a large cooler. Add the cans of limeade and lemonade, then the 2 liter bottle of sprite. Add 1/2 gallon of vodka and 20-24 cans of beer.", @@ -34953,7 +34953,7 @@ "beer" ], "title": "Hop Skip and Go Naked #2 recipe", - "url": "http://www.drinksmixer.com/drink4293.html" + "url": "https://www.drinksmixer.com/drink4293.html" }, { "directions": "Combine gin and peppermint schnapps over ice, add cola, and top with a lime slice.", @@ -34963,7 +34963,7 @@ "cola" ], "title": "Hornet recipe", - "url": "http://www.drinksmixer.com/drink4294.html" + "url": "https://www.drinksmixer.com/drink4294.html" }, { "directions": "In a shaker half-filled with ice cubes, combine all of the ingredients. Shake well. Strain into a cocktail glass.", @@ -34973,7 +34973,7 @@ "egg" ], "title": "Hornpipe recipe", - "url": "http://www.drinksmixer.com/drink4295.html" + "url": "https://www.drinksmixer.com/drink4295.html" }, { "directions": "Pour and slug back.", @@ -34982,7 +34982,7 @@ "rum" ], "title": "Horny Bull recipe", - "url": "http://www.drinksmixer.com/drink4296.html" + "url": "https://www.drinksmixer.com/drink4296.html" }, { "directions": "Pour and slug back.", @@ -34991,7 +34991,7 @@ "Southern Comfort\u00ae peach liqueur" ], "title": "Horny Bull #2 recipe", - "url": "http://www.drinksmixer.com/drink4297.html" + "url": "https://www.drinksmixer.com/drink4297.html" }, { "directions": "Pour into a shot glass and serve.", @@ -35001,7 +35001,7 @@ "Smirnoff\u00ae vodka" ], "title": "Horny Bull #3 recipe", - "url": "http://www.drinksmixer.com/drink4298.html" + "url": "https://www.drinksmixer.com/drink4298.html" }, { "directions": "Add lime juice, triple sec and Smirnoff No.21 Vodka.\r", @@ -35011,7 +35011,7 @@ "lime juice" ], "title": "Kamikaze recipe", - "url": "http://www.drinksmixer.com/drink4299.html" + "url": "https://www.drinksmixer.com/drink4299.html" }, { "directions": "Stir ingredients with ice, strain into a cocktail glass, and serve.", @@ -35020,7 +35020,7 @@ "sweet vermouth" ], "title": "Rob Roy recipe", - "url": "http://www.drinksmixer.com/drink4301.html" + "url": "https://www.drinksmixer.com/drink4301.html" }, { "directions": "Combine the sugar cube, bitters, and 1 tsp. water in an old-fashioned glass. Muddle well, add blended whiskey, and stir. Add a twist of lemon peel and ice cubes. Add slices of orange and lemon and top with the cherry. Serve with a swizzle stick.", @@ -35033,7 +35033,7 @@ "orange" ], "title": "Old-Fashioned Cocktail recipe", - "url": "http://www.drinksmixer.com/drink4302.html" + "url": "https://www.drinksmixer.com/drink4302.html" }, { "directions": "Mix ingredients into a punch bowl.", @@ -35044,7 +35044,7 @@ "Sprite\u00ae soda" ], "title": "Lynchburg Lemonade recipe", - "url": "http://www.drinksmixer.com/drink4303.html" + "url": "https://www.drinksmixer.com/drink4303.html" }, { "directions": "Pour all ingredients (except lime wedge) into a highball glass over ice. Add the lime wedge and serve.", @@ -35055,7 +35055,7 @@ "lime" ], "title": "Madras recipe", - "url": "http://www.drinksmixer.com/drink4304.html" + "url": "https://www.drinksmixer.com/drink4304.html" }, { "directions": "Shake all ingredients with ice, strain into a chilled cocktail glass, and serve.", @@ -35067,7 +35067,7 @@ "light cream" ], "title": "Orgasm recipe", - "url": "http://www.drinksmixer.com/drink4305.html" + "url": "https://www.drinksmixer.com/drink4305.html" }, { "directions": "Pour the scotch and drambuie into an old-fashioned glass almost filled with ice cubes. Stir well. Garnish with the lemon twist.", @@ -35077,7 +35077,7 @@ "lemon" ], "title": "Rusty Nail recipe", - "url": "http://www.drinksmixer.com/drink4306.html" + "url": "https://www.drinksmixer.com/drink4306.html" }, { "directions": "Shake blended whiskey, juice of lemon, and powdered sugar with ice and strain into a whiskey sour glass. Decorate with the half-slice of lemon, top with the cherry, and serve.", @@ -35089,7 +35089,7 @@ "lemon" ], "title": "Whiskey Sour recipe", - "url": "http://www.drinksmixer.com/drink4308.html" + "url": "https://www.drinksmixer.com/drink4308.html" }, { "directions": "Mix with ice and strain into a short glass.", @@ -35098,7 +35098,7 @@ "DeKuyper\u00ae Sour Apple Pucker schnapps" ], "title": "Dirty Tuaca recipe", - "url": "http://www.drinksmixer.com/drink4309.html" + "url": "https://www.drinksmixer.com/drink4309.html" }, { "directions": "Chill ingredients. Add the coffee liqueur to a shot glass first since it is heavier than the schnapps. Slowly add the peppermint schnapps.", @@ -35107,7 +35107,7 @@ "peppermint schnapps" ], "title": "Horny Girlscout recipe", - "url": "http://www.drinksmixer.com/drink4310.html" + "url": "https://www.drinksmixer.com/drink4310.html" }, { "directions": "Free pour each ingredient into a test tube and serve.", @@ -35117,7 +35117,7 @@ "Malibu\u00ae coconut rum" ], "title": "Horny Mohican recipe", - "url": "http://www.drinksmixer.com/drink4311.html" + "url": "https://www.drinksmixer.com/drink4311.html" }, { "directions": "In a mixing glass half-filled with ice cubes, combine all of the ingredients. Stir well. Strain into a cocktail glass.", @@ -35128,7 +35128,7 @@ "bitters" ], "title": "Horse And Jockey recipe", - "url": "http://www.drinksmixer.com/drink4312.html" + "url": "https://www.drinksmixer.com/drink4312.html" }, { "directions": "Get a big mug. Pour in one ingredient then the other.", @@ -35137,7 +35137,7 @@ "milk" ], "title": "Horse Jizz recipe", - "url": "http://www.drinksmixer.com/drink4313.html" + "url": "https://www.drinksmixer.com/drink4313.html" }, { "directions": "Mix with ice.", @@ -35146,7 +35146,7 @@ "soda water" ], "title": "Horse's Ass recipe", - "url": "http://www.drinksmixer.com/drink4314.html" + "url": "https://www.drinksmixer.com/drink4314.html" }, { "directions": "Place the lemon peel spiral in a highball glass and drape one end of it over the rim of the glass. Fill the glass with ice cubes. Pour the brandy, ginger ale, and bitters into the glass. Stir well.", @@ -35157,7 +35157,7 @@ "lemon" ], "title": "Horse's Neck recipe", - "url": "http://www.drinksmixer.com/drink4315.html" + "url": "https://www.drinksmixer.com/drink4315.html" }, { "directions": "In an old-fashioned glass almost filled with ice cubes, combine the gin, vermouth, applejack, and triple sec. Stir well and garnish with the orange slice.", @@ -35169,7 +35169,7 @@ "orange" ], "title": "Horsley's Honor recipe", - "url": "http://www.drinksmixer.com/drink4316.html" + "url": "https://www.drinksmixer.com/drink4316.html" }, { "directions": "Add ingredients to a shot glass and drink.", @@ -35178,7 +35178,7 @@ "Kahlua\u00ae coffee liqueur" ], "title": "Hot Afternoon recipe", - "url": "http://www.drinksmixer.com/drink4317.html" + "url": "https://www.drinksmixer.com/drink4317.html" }, { "directions": "Fill a shot glass half full with the bailey's irish cream and the rest of the way with the goldschlager. Mix with a toothpick. Sprinkle a bit of cinnamon on the top and light it with a match (it may take a couple of tries to get it to stay lit). Let it burn for a few seconds and gently blow out the flame being careful not to splash the drink out of the glass. Then, drink!", @@ -35188,7 +35188,7 @@ "cinnamon" ], "title": "Hot Apple Pie #2 recipe", - "url": "http://www.drinksmixer.com/drink4318.html" + "url": "https://www.drinksmixer.com/drink4318.html" }, { "directions": "Mix tuaca and cider in a large microwavable mug. Heat on high power for 2 1/2 minutes. Stir again, and serve.", @@ -35197,7 +35197,7 @@ "apple cider" ], "title": "Hot Apple Pie recipe", - "url": "http://www.drinksmixer.com/drink4319.html" + "url": "https://www.drinksmixer.com/drink4319.html" }, { "directions": "Add all the alcoholic measures into the glass without stirring, then add the dash of tabasco and serve.", @@ -35208,7 +35208,7 @@ "Tabasco\u00ae sauce" ], "title": "Hot Bitch recipe", - "url": "http://www.drinksmixer.com/drink4320.html" + "url": "https://www.drinksmixer.com/drink4320.html" }, { "directions": "Mix midori with cinnamon schnapps until the desired tone of brown is achieved.", @@ -35217,7 +35217,7 @@ "Midori\u00ae melon liqueur" ], "title": "Hot Brown Lizard recipe", - "url": "http://www.drinksmixer.com/drink4321.html" + "url": "https://www.drinksmixer.com/drink4321.html" }, { "directions": "Crush cranberry sauce with a fork. Mix with sugar, spices and salt. Add water and pineapple juice. Cover and simmer 2 hours. Ladle into mugs and float a pat of butter in each serving.", @@ -35234,7 +35234,7 @@ "butter" ], "title": "Hot Buttered Cranberry Punch recipe", - "url": "http://www.drinksmixer.com/drink4322.html" + "url": "https://www.drinksmixer.com/drink4322.html" }, { "directions": "Blend all ingredients in a food processer or mixer and store in the fridge or freezer. To make a drink add a shot of good dark rum along with 1 or 2 tbl spoons of batter to a mug of very hot water. Serve in irish coffee cup.", @@ -35248,7 +35248,7 @@ "vanilla" ], "title": "Hot Buttered Rum Batter recipe", - "url": "http://www.drinksmixer.com/drink4323.html" + "url": "https://www.drinksmixer.com/drink4323.html" }, { "directions": "Blend all ingredients in a food processer or mixer and store in the fridge or freezer. To make a drink add a shot of good dark rum along with 1 or 2 tbl spoons of batter to a mug of very hot water. Serve in irish coffee cup.", @@ -35259,7 +35259,7 @@ "vanilla ice cream" ], "title": "Hot Buttered Rum Batter #2 recipe", - "url": "http://www.drinksmixer.com/drink4324.html" + "url": "https://www.drinksmixer.com/drink4324.html" }, { "directions": "Mix ingredients in coffee mug, and top with whipped cream.", @@ -35270,7 +35270,7 @@ "whipped cream" ], "title": "Hot Butterscotch Cocoa recipe", - "url": "http://www.drinksmixer.com/drink4325.html" + "url": "https://www.drinksmixer.com/drink4325.html" }, { "directions": "Combine sugar and cocoa, add milk and a dash of salt. Makes 8 servings. For 1 serving place 1/3 cup dry mixture in a coffee mug, add boiling water and stir.", @@ -35281,7 +35281,7 @@ "salt" ], "title": "Hot Chocolate recipe", - "url": "http://www.drinksmixer.com/drink4326.html" + "url": "https://www.drinksmixer.com/drink4326.html" }, { "directions": "Mix milk, cocoa, sugar and coffeemate. For 1 serving place 1/3 cup dry mixture in coffee mug, add boiling water and stir.", @@ -35292,7 +35292,7 @@ "powdered sugar" ], "title": "Hot Chocolate #2 recipe", - "url": "http://www.drinksmixer.com/drink4327.html" + "url": "https://www.drinksmixer.com/drink4327.html" }, { "directions": "Melt the chocolate, butter and vanilla in a double boiler. When just smooth stir in the cream. Serve in the smallest coffee mugs you can find to all your friends. Top with freshly whipped cream, made from left over cream, and a mini-marshmellow.", @@ -35304,7 +35304,7 @@ "marshmallows" ], "title": "Hot Chocolate To Die For recipe", - "url": "http://www.drinksmixer.com/drink4328.html" + "url": "https://www.drinksmixer.com/drink4328.html" }, { "directions": "Let crushed ginger sit in the rum for as long as possible, preferably overnight. Add honey to the glass. Top with hot water.", @@ -35315,7 +35315,7 @@ "water" ], "title": "The Hot Churchill recipe", - "url": "http://www.drinksmixer.com/drink4329.html" + "url": "https://www.drinksmixer.com/drink4329.html" }, { "directions": "Stud the oranges with cloves. (Push the pointy end into them until the flower part is flush with the peel.) I use about 10 per orange. You may want to peel the top layer of skin off the orange if you don't want to ingest the dyes they put on them to make them orange. Put the cider into a large saucepan, and add the oranges and some cinnamon sticks (one or two will do). Heat for hours (you can just leave it on all day for a party). It gets better with age. Just pour in more cider when it starts getting low.", @@ -35326,7 +35326,7 @@ "cinnamon" ], "title": "Hot Cider recipe", - "url": "http://www.drinksmixer.com/drink4330.html" + "url": "https://www.drinksmixer.com/drink4330.html" }, { "directions": "Combine all ingredients in a glass.", @@ -35336,7 +35336,7 @@ "coffee" ], "title": "Hot Creamy Bush recipe", - "url": "http://www.drinksmixer.com/drink4331.html" + "url": "https://www.drinksmixer.com/drink4331.html" }, { "directions": "Shake all ingredients adding orange juice to taste. Serve in a shot glass.", @@ -35347,7 +35347,7 @@ "vodka" ], "title": "Hot Damn Shooter recipe", - "url": "http://www.drinksmixer.com/drink4332.html" + "url": "https://www.drinksmixer.com/drink4332.html" }, { "directions": "In 2 qt. microproof casserole, combine hot water, sugar, spices, and concentrated juices. Stir, then cook on HI 5-6 minutes or until mixture boils. Heat rum in microproof container on HI for 30 seconds. Ignite and pour over hot beverage. Ladle into punch cups for serving.", @@ -35361,7 +35361,7 @@ "light rum" ], "title": "Hot Devilish Daiquiri recipe", - "url": "http://www.drinksmixer.com/drink4333.html" + "url": "https://www.drinksmixer.com/drink4333.html" }, { "directions": "Pour bailey's and grand marnier into mug. Add espresso. Serve it hot with lots of cream and sprinkle with chocolate.", @@ -35372,7 +35372,7 @@ "whipped cream" ], "title": "Hot Dick recipe", - "url": "http://www.drinksmixer.com/drink4335.html" + "url": "https://www.drinksmixer.com/drink4335.html" }, { "directions": "Chill and pour into a shot glass. Serve.", @@ -35381,7 +35381,7 @@ "peach schnapps" ], "title": "Hot Georgia Peach recipe", - "url": "http://www.drinksmixer.com/drink4336.html" + "url": "https://www.drinksmixer.com/drink4336.html" }, { "directions": "Pour orange juice into a red wine glass and add amaretto. Garnish with the stick of cinnamon as a stirrer and serve.", @@ -35391,7 +35391,7 @@ "cinnamon" ], "title": "Hot Gold recipe", - "url": "http://www.drinksmixer.com/drink4337.html" + "url": "https://www.drinksmixer.com/drink4337.html" }, { "directions": "Pour ingredients into a shot glass and enjoy.", @@ -35400,7 +35400,7 @@ "Jose Cuervo\u00ae Especial gold tequila" ], "title": "Hot Jose recipe", - "url": "http://www.drinksmixer.com/drink4338.html" + "url": "https://www.drinksmixer.com/drink4338.html" }, { "directions": "Squeeze the juice of the lemon into a 10-oz. glass. Add maple syrup and a dash of cayenne pepper. Fill with ice water. Stir. Drink.", @@ -35410,7 +35410,7 @@ "cayenne pepper" ], "title": "Hot Lemonade recipe", - "url": "http://www.drinksmixer.com/drink4339.html" + "url": "https://www.drinksmixer.com/drink4339.html" }, { "directions": "Mix all ingredients in a cocktail glass. Garnish with a small pickle. Light contents of glass on fire. Tilt head back and have your buddy pour it into your mouth (very carefully). Have four more hot lunches and go to bed. You have no business going anywhere after the abuse you just gave yourself.", @@ -35419,7 +35419,7 @@ "Tabasco\u00ae sauce" ], "title": "Hot Lunch recipe", - "url": "http://www.drinksmixer.com/drink4340.html" + "url": "https://www.drinksmixer.com/drink4340.html" }, { "directions": "Dump cider, cinnamon sticks and a couple of teaspoons of nutmeg into a pot over very low heat. Wash and slice oranges, and stick whole cloves into the rind, then float in cider as it warms. Serve when warm.", @@ -35431,7 +35431,7 @@ "nutmeg" ], "title": "Hot Mulled Cider recipe", - "url": "http://www.drinksmixer.com/drink4341.html" + "url": "https://www.drinksmixer.com/drink4341.html" }, { "directions": "Combine apple cider/juice, brown sugar, and nutmeg in a large saucepan. Place cinnamon, allspice, and cloves in a cheesecloth and tie. Add to cider mixture, and bring to the boil. Reduce heat, cover and simmer for 10 minutes. Remove spice bag and discard. Serve mixture in mugs with a clove-studded orange wedge in each.", @@ -35446,7 +35446,7 @@ "cloves" ], "title": "Hot Mulled Cider #2 recipe", - "url": "http://www.drinksmixer.com/drink4342.html" + "url": "https://www.drinksmixer.com/drink4342.html" }, { "directions": "Pour frangelico into a brandy snifter glass. Add honey, lemon peel and cloves and fill snifter with hot water.", @@ -35458,7 +35458,7 @@ "water" ], "title": "Hot Nun recipe", - "url": "http://www.drinksmixer.com/drink4343.html" + "url": "https://www.drinksmixer.com/drink4343.html" }, { "directions": "Shake with ice cubes and pour into an old-fashioned glass rimmed with salt.", @@ -35469,7 +35469,7 @@ "powdered sugar" ], "title": "Hot Pants recipe", - "url": "http://www.drinksmixer.com/drink4344.html" + "url": "https://www.drinksmixer.com/drink4344.html" }, { "directions": "Make hot chocolate (preferably using water) according to instructions. Mix in Rumple Minze and enjoy.", @@ -35478,7 +35478,7 @@ "Rumple Minze\u00ae peppermint liqueur" ], "title": "Hot Peppermint Chocolate recipe", - "url": "http://www.drinksmixer.com/drink4345.html" + "url": "https://www.drinksmixer.com/drink4345.html" }, { "directions": "Pour butterscotch schnapps (buttershots) into an 8 oz. mug and fill with hot chocolate. Garnish with whipped cream.", @@ -35488,7 +35488,7 @@ "whipped cream" ], "title": "Hot Scotch recipe", - "url": "http://www.drinksmixer.com/drink4346.html" + "url": "https://www.drinksmixer.com/drink4346.html" }, { "directions": "Pour together to ensure a good mix.", @@ -35497,7 +35497,7 @@ "Kahlua\u00ae coffee liqueur" ], "title": "Hot Scott recipe", - "url": "http://www.drinksmixer.com/drink4347.html" + "url": "https://www.drinksmixer.com/drink4347.html" }, { "directions": "Mix vodka and peppermint schnapps in a shot glass. Add a dash of tabasco sauce.", @@ -35507,7 +35507,7 @@ "Tabasco\u00ae sauce" ], "title": "Hot Shot #2 recipe", - "url": "http://www.drinksmixer.com/drink4348.html" + "url": "https://www.drinksmixer.com/drink4348.html" }, { "directions": "Pour hot coffee into a shot glass and gently add the galliano, so it floats on the coffee. Then add some lightly whipped cream over it.", @@ -35517,7 +35517,7 @@ "whipped cream" ], "title": "Hot Shot recipe", - "url": "http://www.drinksmixer.com/drink4349.html" + "url": "https://www.drinksmixer.com/drink4349.html" }, { "directions": "Add allspice, clove and cinnamon stick to the apple cider and let simmer for 1 hour (or longer). This may not look like much spice, but it really does make a pleasantly spicey cider.", @@ -35528,7 +35528,7 @@ "cinnamon" ], "title": "Hot Spiced Cider recipe", - "url": "http://www.drinksmixer.com/drink4350.html" + "url": "https://www.drinksmixer.com/drink4350.html" }, { "directions": "Combine the cider, sugar and spices in a large saucepan. Heat slowly to boiling. Boil for 3-5 minutes, remove spices, and serve hot. Garnish with orange slices, lemon slices, or rings of unpared red apple with whole cloves forced through peel. 16 servings. If desired, chill spiced cider and serve over ice cubes made from apple juice.", @@ -35540,7 +35540,7 @@ "cinnamon" ], "title": "Hot Spiced Cider #2 recipe", - "url": "http://www.drinksmixer.com/drink4351.html" + "url": "https://www.drinksmixer.com/drink4351.html" }, { "directions": "Mix vodka and tequila. Pour in tabasco sauce until it's really red.", @@ -35550,7 +35550,7 @@ "Tabasco\u00ae sauce" ], "title": "Hot Spot recipe", - "url": "http://www.drinksmixer.com/drink4352.html" + "url": "https://www.drinksmixer.com/drink4352.html" }, { "directions": "Shake all ingredients with ice, strain into a cocktail glass, and serve.", @@ -35561,7 +35561,7 @@ "orange bitters" ], "title": "Hot Springs Cocktail recipe", - "url": "http://www.drinksmixer.com/drink4353.html" + "url": "https://www.drinksmixer.com/drink4353.html" }, { "directions": "Soak several slices of habanero pepper in the bottle of vodka for 3 months before using. It will give you that feeling of a summer hot breeze.", @@ -35571,7 +35571,7 @@ "ginger ale" ], "title": "Hot Summer Breeze recipe", - "url": "http://www.drinksmixer.com/drink4354.html" + "url": "https://www.drinksmixer.com/drink4354.html" }, { "directions": "Brew tea and fill a tall glass 3/4 full. Mix in honey. Mix in brandy shots. Add lemon slice and enjoy.", @@ -35582,7 +35582,7 @@ "lemon" ], "title": "Hot Toddy recipe", - "url": "http://www.drinksmixer.com/drink4355.html" + "url": "https://www.drinksmixer.com/drink4355.html" }, { "directions": "In a heavy saucepan, combine the ingredients and warm over low heat. When small bubbles appear around the sides of the pan, remove it from the heat and let the mixture sit at room temperature for 15 to 20 minutes. Place the pan back on the stove and rewarm the mixture, whisking it briefly to redistribute the skin that forms on the milk's surface. \r", @@ -35594,7 +35594,7 @@ "cinnamon" ], "title": "Hot Vanilla recipe", - "url": "http://www.drinksmixer.com/drink4356.html" + "url": "https://www.drinksmixer.com/drink4356.html" }, { "directions": "Stir all ingredients (except pineapple) with ice and strain into a cocktail glass. Decorate with the crushed slice of pineapple and serve.", @@ -35605,7 +35605,7 @@ "pineapple" ], "title": "Hotel Plaza Cocktail recipe", - "url": "http://www.drinksmixer.com/drink4357.html" + "url": "https://www.drinksmixer.com/drink4357.html" }, { "directions": "In a shaker half-filled with ice cubes, combine all of the ingredients. Shake well. Strain into an old-fashioned glass almost filled with ice cubes.", @@ -35617,7 +35617,7 @@ "orange bitters" ], "title": "Howell Says So recipe", - "url": "http://www.drinksmixer.com/drink4358.html" + "url": "https://www.drinksmixer.com/drink4358.html" }, { "directions": "Shake all ingredients with ice, strain into a cocktail glass, and serve.", @@ -35629,7 +35629,7 @@ "lime juice" ], "title": "Hudson Bay recipe", - "url": "http://www.drinksmixer.com/drink4359.html" + "url": "https://www.drinksmixer.com/drink4359.html" }, { "directions": "Pour together and stir as required.", @@ -35638,7 +35638,7 @@ "gin" ], "title": "Hudson recipe", - "url": "http://www.drinksmixer.com/drink4360.html" + "url": "https://www.drinksmixer.com/drink4360.html" }, { "directions": "Blend all ingredients in an electric blender at a low speed for a short length of time. Pour into a highball glass and serve.", @@ -35648,7 +35648,7 @@ "vanilla ice cream" ], "title": "Hummer recipe", - "url": "http://www.drinksmixer.com/drink4361.html" + "url": "https://www.drinksmixer.com/drink4361.html" }, { "directions": "Put them all together and mix it with a lot of ice. For big parties use more of each and mix in a garbage can.", @@ -35658,7 +35658,7 @@ "fruit" ], "title": "Hunch Punch recipe", - "url": "http://www.drinksmixer.com/drink4362.html" + "url": "https://www.drinksmixer.com/drink4362.html" }, { "directions": "Pour all ingredients into a glass (larger than 12 oz.). Put a lid over the glass. Shake vigorously for 30 seconds.", @@ -35668,7 +35668,7 @@ "Kool-Aid\u00ae" ], "title": "Hunka Hunka Burnin Luv recipe", - "url": "http://www.drinksmixer.com/drink4363.html" + "url": "https://www.drinksmixer.com/drink4363.html" }, { "directions": "Combine bailey's and frangelico over ice and stir. Add vodka, stir again, and serve.", @@ -35678,7 +35678,7 @@ "Absolut\u00ae vodka" ], "title": "Hunter Mountain recipe", - "url": "http://www.drinksmixer.com/drink4364.html" + "url": "https://www.drinksmixer.com/drink4364.html" }, { "directions": "Shake and strain into a chilled cocktail glass. Garnish with dried cranberries.", @@ -35690,7 +35690,7 @@ "cranberry juice" ], "title": "Hurlyburly recipe", - "url": "http://www.drinksmixer.com/drink4365.html" + "url": "https://www.drinksmixer.com/drink4365.html" }, { "directions": "Pour gin, rums, amaretto, and triple sec into a hurricane glass with ice. Add equal amounts of grapefruit juice and pineapple juice until almost full. Top with grenadine to taste.", @@ -35706,7 +35706,7 @@ "grenadine syrup" ], "title": "Hurricane #2 recipe", - "url": "http://www.drinksmixer.com/drink4366.html" + "url": "https://www.drinksmixer.com/drink4366.html" }, { "directions": "Shake all ingredients with ice, strain into a cocktail glass and serve.", @@ -35717,7 +35717,7 @@ "lime juice" ], "title": "Hurricane Flint recipe", - "url": "http://www.drinksmixer.com/drink4367.html" + "url": "https://www.drinksmixer.com/drink4367.html" }, { "directions": "Mix all ingredients over ice in large shaker. Add more juice to taste for the lightweights. Shake well and strain into shot glass. This recipe may be doubled or quadrupled. We strongly encourage this.", @@ -35731,7 +35731,7 @@ "cranberry juice" ], "title": "Hurricane Hugo recipe", - "url": "http://www.drinksmixer.com/drink4368.html" + "url": "https://www.drinksmixer.com/drink4368.html" }, { "directions": "Stir and pour in shot glasses.", @@ -35742,7 +35742,7 @@ "orange juice" ], "title": "Hurricane Laura recipe", - "url": "http://www.drinksmixer.com/drink4369.html" + "url": "https://www.drinksmixer.com/drink4369.html" }, { "directions": "Pour over ice into a hurricane glass, and stir. Garnish with an orange peel.", @@ -35757,7 +35757,7 @@ "orange juice" ], "title": "Hurricane Leah recipe", - "url": "http://www.drinksmixer.com/drink4370.html" + "url": "https://www.drinksmixer.com/drink4370.html" }, { "directions": "Combine all ingredients, mix well (shake or stir). Pour over crushed ice in hurricane glass. Best enjoyed through a small straw. Garnish with fruit wedge if desired.", @@ -35771,7 +35771,7 @@ "crushed ice" ], "title": "Hurricane, New Orleans Style recipe", - "url": "http://www.drinksmixer.com/drink4371.html" + "url": "https://www.drinksmixer.com/drink4371.html" }, { "directions": "Mix all ingredients in a glass with a lot of ice, shake well and serve.", @@ -35783,7 +35783,7 @@ "oranges" ], "title": "The Hurtado recipe", - "url": "http://www.drinksmixer.com/drink4372.html" + "url": "https://www.drinksmixer.com/drink4372.html" }, { "directions": "Mix together in a double shot glass. Shoot.", @@ -35792,7 +35792,7 @@ "Goldschlager\u00ae cinnamon schnapps" ], "title": "Hurts You Right Here recipe", - "url": "http://www.drinksmixer.com/drink4373.html" + "url": "https://www.drinksmixer.com/drink4373.html" }, { "directions": "Build in a highball glass, on ice. Decorate with lime.", @@ -35804,7 +35804,7 @@ "lime juice" ], "title": "Hybris recipe", - "url": "http://www.drinksmixer.com/drink4374.html" + "url": "https://www.drinksmixer.com/drink4374.html" }, { "directions": "In an irish coffee cup pour chilled caramel, then slowly pour one shot of chilled apple schnapps over caramel. Slowly add steamed milk, pour espresso through steamed milk exceedingly slowly, and top with whipped cream or foam. It should come out to be a 4 layer happily alcoholic latte.", @@ -35815,7 +35815,7 @@ "milk" ], "title": "Hyper-Active Apple recipe", - "url": "http://www.drinksmixer.com/drink4375.html" + "url": "https://www.drinksmixer.com/drink4375.html" }, { "directions": "Mix kahlua and tonic water with crushed ice, and strain into a glass with ice.", @@ -35824,7 +35824,7 @@ "tonic water" ], "title": "Ice Bolts recipe", - "url": "http://www.drinksmixer.com/drink4376.html" + "url": "https://www.drinksmixer.com/drink4376.html" }, { "directions": "Blend all ingredients with 2 scoops of ice. Pour into a poco grande glass.", @@ -35838,7 +35838,7 @@ "cream" ], "title": "Ice Cappuccino recipe", - "url": "http://www.drinksmixer.com/drink4377.html" + "url": "https://www.drinksmixer.com/drink4377.html" }, { "directions": "Blend all ingredients together in a blender.", @@ -35848,7 +35848,7 @@ "vanilla ice cream" ], "title": "Ice Cream Genius recipe", - "url": "http://www.drinksmixer.com/drink4378.html" + "url": "https://www.drinksmixer.com/drink4378.html" }, { "directions": "Shake all ingredients (except orange slice) with ice and strain into a collins glass over ice cubes. Garnish with the slice of orange and a cherry (if desired) and serve.", @@ -35861,7 +35861,7 @@ "orange" ], "title": "Ice Palace recipe", - "url": "http://www.drinksmixer.com/drink4379.html" + "url": "https://www.drinksmixer.com/drink4379.html" }, { "directions": "Put vodka in glass fill with iced tea. Stir in lemon to taste.", @@ -35871,7 +35871,7 @@ "lemon juice" ], "title": "Ice Pick recipe", - "url": "http://www.drinksmixer.com/drink4380.html" + "url": "https://www.drinksmixer.com/drink4380.html" }, { "directions": "In a large ice filled glass, pour vodka, then tea. Add a lemon wedge for garnish. Surprisingly refreshing.", @@ -35880,7 +35880,7 @@ "iced tea" ], "title": "Ice Pick #2 recipe", - "url": "http://www.drinksmixer.com/drink4381.html" + "url": "https://www.drinksmixer.com/drink4381.html" }, { "directions": "Shake all ingredients (except nutmeg) with ice and strain into a coupette glass. Sprinkle nutmeg on top and serve.", @@ -35892,7 +35892,7 @@ "nutmeg" ], "title": "Ice-Cream Flip recipe", - "url": "http://www.drinksmixer.com/drink4382.html" + "url": "https://www.drinksmixer.com/drink4382.html" }, { "directions": "Shake or stir. Serve with ice cubes.", @@ -35903,7 +35903,7 @@ "cranberry juice" ], "title": "Ice-T recipe", - "url": "http://www.drinksmixer.com/drink4383.html" + "url": "https://www.drinksmixer.com/drink4383.html" }, { "directions": "Add ice-cream last. Enjoy!", @@ -35916,7 +35916,7 @@ "Malibu\u00ae coconut rum" ], "title": "Iceberg In Radioactive Water #2 recipe", - "url": "http://www.drinksmixer.com/drink4384.html" + "url": "https://www.drinksmixer.com/drink4384.html" }, { "directions": "Place all drinks into a glass and add ice-cream at the end.", @@ -35928,7 +35928,7 @@ "vanilla ice cream" ], "title": "Iceberg In Radioactive Water recipe", - "url": "http://www.drinksmixer.com/drink4385.html" + "url": "https://www.drinksmixer.com/drink4385.html" }, { "directions": "Pour ingredients over ice in a blender, blend, and pour into a frozen highball glass. Garnish with a cinnamon stick or chocolate shavings.", @@ -35939,7 +35939,7 @@ "milk" ], "title": "Iceberg recipe", - "url": "http://www.drinksmixer.com/drink4386.html" + "url": "https://www.drinksmixer.com/drink4386.html" }, { "directions": "Mix together in a coffee mug and chill before serving.", @@ -35948,7 +35948,7 @@ "coffee" ], "title": "Iced Coffee Fillip recipe", - "url": "http://www.drinksmixer.com/drink4387.html" + "url": "https://www.drinksmixer.com/drink4387.html" }, { "directions": "Mix together until coffee and sugar is dissolved. Add milk. Shake well. Using a blender or milk shake maker produces a very foamy drink. Serve in a coffee mug.", @@ -35959,7 +35959,7 @@ "milk" ], "title": "Iced Coffee recipe", - "url": "http://www.drinksmixer.com/drink4388.html" + "url": "https://www.drinksmixer.com/drink4388.html" }, { "directions": "Fill a highball glass with ice. Pour black velvet canadian whisky over the top. Fill with iced tea. Stir with a straw.", @@ -35968,7 +35968,7 @@ "iced tea" ], "title": "Iced Velvet recipe", - "url": "http://www.drinksmixer.com/drink4389.html" + "url": "https://www.drinksmixer.com/drink4389.html" }, { "directions": "Mix a normal glass of vodka and fanta lemon, drink down to half and fill up with equal parts of beer and coke.", @@ -35979,7 +35979,7 @@ "Coca-Cola\u00ae" ], "title": "The Icelandic Way recipe", - "url": "http://www.drinksmixer.com/drink4390.html" + "url": "https://www.drinksmixer.com/drink4390.html" }, { "directions": "Shake all ingredients (except cherry) with ice and strain into a cocktail glass. Add the cherry on top and serve.", @@ -35991,7 +35991,7 @@ "cherry" ], "title": "Ideal Cocktail recipe", - "url": "http://www.drinksmixer.com/drink4391.html" + "url": "https://www.drinksmixer.com/drink4391.html" }, { "directions": "Fill glass with ice or snow. Pour in lemonade. Add vodka. Splash in grenadine (it should seep to the bottom).", @@ -36002,7 +36002,7 @@ "lemonade" ], "title": "Igloo Sue recipe", - "url": "http://www.drinksmixer.com/drink4392.html" + "url": "https://www.drinksmixer.com/drink4392.html" }, { "directions": "Mix vodka and tequila over ice in a shaker. Add Kahlua. Shake and pour into a shot glass.", @@ -36012,7 +36012,7 @@ "Kahlua\u00ae coffee liqueur" ], "title": "Iguana #2 recipe", - "url": "http://www.drinksmixer.com/drink4393.html" + "url": "https://www.drinksmixer.com/drink4393.html" }, { "directions": "Shake all ingredients (except lime slice) with ice and strain into a chilled cocktail glass. Add the lime slice and serve.", @@ -36024,7 +36024,7 @@ "lime" ], "title": "Iguana recipe", - "url": "http://www.drinksmixer.com/drink4394.html" + "url": "https://www.drinksmixer.com/drink4394.html" }, { "directions": "Pour all spirits into a shaker and top with a splash of pineapple juice.", @@ -36036,7 +36036,7 @@ "pineapple juice" ], "title": "Illusion recipe", - "url": "http://www.drinksmixer.com/drink4395.html" + "url": "https://www.drinksmixer.com/drink4395.html" }, { "directions": "Pour rye whiskey into a highball glass. Add the desired amount of ice. Fill to the top with ginger ale and add a splash of lime. Stir until well mixed.", @@ -36046,7 +36046,7 @@ "lime juice" ], "title": "Imagination recipe", - "url": "http://www.drinksmixer.com/drink4396.html" + "url": "https://www.drinksmixer.com/drink4396.html" }, { "directions": "In a shaker half-filled with ice cubes, combine all of the ingredients. Shake well. Strain into a cocktail glass.", @@ -36058,7 +36058,7 @@ "superfine sugar" ], "title": "Immaculata recipe", - "url": "http://www.drinksmixer.com/drink4397.html" + "url": "https://www.drinksmixer.com/drink4397.html" }, { "directions": "Shake all ingredients (except carbonated water) with ice and strain into a highball glass over two ice cubes. Fill with carbonated water, stir, and serve.", @@ -36070,7 +36070,7 @@ "carbonated water" ], "title": "Imperial Fizz recipe", - "url": "http://www.drinksmixer.com/drink4398.html" + "url": "https://www.drinksmixer.com/drink4398.html" }, { "directions": "Shake and serve.", @@ -36081,7 +36081,7 @@ "sugar" ], "title": "Imperial Moka recipe", - "url": "http://www.drinksmixer.com/drink4399.html" + "url": "https://www.drinksmixer.com/drink4399.html" }, { "directions": "Fill a cocktail glass with ice, and add a splash of dry vermouth. While glass chills, add 4 fingers of gin in a mixer of ice. Throw away ice/vermouth in cocktail glass then strain in gin.", @@ -36090,7 +36090,7 @@ "gin" ], "title": "In and Out Martini recipe", - "url": "http://www.drinksmixer.com/drink4400.html" + "url": "https://www.drinksmixer.com/drink4400.html" }, { "directions": "Mix all ingredients together and drink as a shot.", @@ -36100,7 +36100,7 @@ "Kahlua\u00ae coffee liqueur" ], "title": "Indian Summer recipe", - "url": "http://www.drinksmixer.com/drink4403.html" + "url": "https://www.drinksmixer.com/drink4403.html" }, { "directions": "Shake and strain into an ice-filled hurricane glass with a salted rim. Garnish with a lime wheel.", @@ -36113,7 +36113,7 @@ "pineapple juice" ], "title": "Indigo Blues recipe", - "url": "http://www.drinksmixer.com/drink4404.html" + "url": "https://www.drinksmixer.com/drink4404.html" }, { "directions": "Add tabasco sauce into the bottom of a shot glass, pour equal parts absolut peppar and everclear 190 then add salt. Set on fire and serve.", @@ -36124,7 +36124,7 @@ "salt" ], "title": "Inferno recipe", - "url": "http://www.drinksmixer.com/drink4405.html" + "url": "https://www.drinksmixer.com/drink4405.html" }, { "directions": "Blend all ingredients with 2 scoops of ice. Pour into a poco grande glass. Sprinkle some optional nutmeg or cinnamon on top.", @@ -36137,7 +36137,7 @@ "cream" ], "title": "Insomniac recipe", - "url": "http://www.drinksmixer.com/drink4406.html" + "url": "https://www.drinksmixer.com/drink4406.html" }, { "directions": "Put in all alcoholic ingredients first, water last, then salt.", @@ -36149,7 +36149,7 @@ "salt" ], "title": "Instant Death recipe", - "url": "http://www.drinksmixer.com/drink4407.html" + "url": "https://www.drinksmixer.com/drink4407.html" }, { "directions": "Shake all ingredients together in a cocktail shaker. Strain into a chilled martini glass and garnish with an orange twist.", @@ -36159,7 +36159,7 @@ "Grand Marnier\u00ae orange liqueur" ], "title": "Inverted Pyramid Martini recipe", - "url": "http://www.drinksmixer.com/drink4408.html" + "url": "https://www.drinksmixer.com/drink4408.html" }, { "directions": "Fill a cocktail glass with ice. Pour in peach schnapps, then add orange juice 3/4 to the top and shake. Slowly add and sink the grenadine to the bottom. In a mixer, mix the blue curacao with vodka and slowly strain that into the cocktail glass.", @@ -36171,7 +36171,7 @@ "Absolut\u00ae vodka" ], "title": "Inverted Traffic Light recipe", - "url": "http://www.drinksmixer.com/drink4409.html" + "url": "https://www.drinksmixer.com/drink4409.html" }, { "directions": "Pour irish cream and tequila over ice and stir.", @@ -36180,7 +36180,7 @@ "tequila" ], "title": "Irish Cactus recipe", - "url": "http://www.drinksmixer.com/drink4410.html" + "url": "https://www.drinksmixer.com/drink4410.html" }, { "directions": "Mix coffee and chilled irish cream with half & half. Add sugar and stir. Serve hot in an irish coffee cup.", @@ -36191,7 +36191,7 @@ "sugar" ], "title": "Irish Coffee #2 recipe", - "url": "http://www.drinksmixer.com/drink4411.html" + "url": "https://www.drinksmixer.com/drink4411.html" }, { "directions": "1. Stud the strips of orange and lemon peel with 2 cloves each and place them in a frying pan or chafing dish with the stick of cinnamon and the 2 teaspoons of sugar. Place over moderate heat, stirring occationally with a wooden spoon, until the sugar has melted. \r", @@ -36207,7 +36207,7 @@ "whipped cream" ], "title": "Irish Coffee #3 recipe", - "url": "http://www.drinksmixer.com/drink4412.html" + "url": "https://www.drinksmixer.com/drink4412.html" }, { "directions": "Start with sugar in the empty glass. Next pour in the whiskey, followed by the coffee. Stir until sugar is dissolved, and let mixture settle. Float whipped cream on top and serve.", @@ -36218,7 +36218,7 @@ "whipped cream" ], "title": "Irish Coffee (Simple) recipe", - "url": "http://www.drinksmixer.com/drink4413.html" + "url": "https://www.drinksmixer.com/drink4413.html" }, { "directions": "Combine whiskey, sugar and coffee in a mug and stir to dissolve. Float cold cream gently on top. Do not mix.", @@ -36229,7 +36229,7 @@ "heavy cream" ], "title": "Irish Coffee recipe", - "url": "http://www.drinksmixer.com/drink4414.html" + "url": "https://www.drinksmixer.com/drink4414.html" }, { "directions": "Combine southern comfort and blue curacao in a highball glass over ice. Add enough orange juice to fill the glass. The orange juice and blue curacao will combine to form a lovely green shade!", @@ -36239,7 +36239,7 @@ "orange juice" ], "title": "Irish Comfort recipe", - "url": "http://www.drinksmixer.com/drink4415.html" + "url": "https://www.drinksmixer.com/drink4415.html" }, { "directions": "Put everything into a blender and mix. Makes about three small mason jars.", @@ -36251,7 +36251,7 @@ "chocolate syrup" ], "title": "Irish Cream #2 recipe", - "url": "http://www.drinksmixer.com/drink4416.html" + "url": "https://www.drinksmixer.com/drink4416.html" }, { "directions": "Combine all the ingredients in a blender. Blend on lowest setting until frothy or well blended. Serve in wine glasses.", @@ -36264,7 +36264,7 @@ "condensed milk" ], "title": "Irish Cream #1 recipe", - "url": "http://www.drinksmixer.com/drink4417.html" + "url": "https://www.drinksmixer.com/drink4417.html" }, { "directions": "Blend all ingredients in a blender for no longer than 2 mins. Pour over ice in an old-fashioned glass and serve.", @@ -36276,7 +36276,7 @@ "coffee powder" ], "title": "Irish Cream #2 recipe", - "url": "http://www.drinksmixer.com/drink4418.html" + "url": "https://www.drinksmixer.com/drink4418.html" }, { "directions": "Blend all ingredients in a blender until mixed well, serve cold. Stores for up to two weeks in the fridge, but it's never lasted that long.", @@ -36289,7 +36289,7 @@ "vanilla" ], "title": "Irish Cream #3 recipe", - "url": "http://www.drinksmixer.com/drink4419.html" + "url": "https://www.drinksmixer.com/drink4419.html" }, { "directions": "Mix all the ingredients thoroughly, except for the whipping cream. You can use a mixer (recommended) or by hand. After all the ingredients are mixed well you will add the whipping cream, mix lightly, do not overmix.\r", @@ -36303,7 +36303,7 @@ "vanilla" ], "title": "Irish Cream BTB recipe", - "url": "http://www.drinksmixer.com/drink4420.html" + "url": "https://www.drinksmixer.com/drink4420.html" }, { "directions": "Combine all ingredients in a blender until smooth. Store in the refrigerator for up to one month.", @@ -36318,7 +36318,7 @@ "almond extract" ], "title": "Irish Cream Liqueur recipe", - "url": "http://www.drinksmixer.com/drink4421.html" + "url": "https://www.drinksmixer.com/drink4421.html" }, { "directions": "Place all ingredients in a blender, blend well. Bottle and let mellow in refrigerator at least one week befor serving. this has been found to be best after 1-2 weeks. Store in a refrigerator. Liqueur at room temperature by removing from refrigerator 1-2 hours before serving.", @@ -36333,7 +36333,7 @@ "Irish whiskey" ], "title": "Irish Cream Liqueur #2 recipe", - "url": "http://www.drinksmixer.com/drink4422.html" + "url": "https://www.drinksmixer.com/drink4422.html" }, { "directions": "Blend (use blender) all ingredients until smooth. Store tightly covered in refrigerator. Shake before serving. Keeps up to one month.", @@ -36347,7 +36347,7 @@ "almond extract" ], "title": "Irish Cream Liqueur #3 recipe", - "url": "http://www.drinksmixer.com/drink4423.html" + "url": "https://www.drinksmixer.com/drink4423.html" }, { "directions": "Put ice cubes into the bottom of a brandy snifter. Slowly pour bailey's irish cream over ice. Next pour in milk and then stir gently. Add more to taste. For chocoholics add hearshy's chocolate sauce.", @@ -36357,7 +36357,7 @@ "ice cubes" ], "title": "Irish Cream Special recipe", - "url": "http://www.drinksmixer.com/drink4424.html" + "url": "https://www.drinksmixer.com/drink4424.html" }, { "directions": "Mix all ingredients in a blender until well stirred. Consume within two weeks. Some ingredients are perishable. Store in an airtight container so you can shake it before each use. The chocolate settles at the bottom.", @@ -36371,7 +36371,7 @@ "brandy" ], "title": "Irish Cream, Home Made #2 recipe", - "url": "http://www.drinksmixer.com/drink4425.html" + "url": "https://www.drinksmixer.com/drink4425.html" }, { "directions": "Mix all ingredients together in a blender or mix in a bowl with a whisk until fully blended.", @@ -36383,7 +36383,7 @@ "rye whiskey" ], "title": "Irish Cream, Home Made recipe", - "url": "http://www.drinksmixer.com/drink4426.html" + "url": "https://www.drinksmixer.com/drink4426.html" }, { "directions": "Mix scotch and milk. Add half-and-half. Add syrups, and serve in wine glasses.", @@ -36395,7 +36395,7 @@ "chocolate syrup" ], "title": "Irish Cream Liqueur recipe", - "url": "http://www.drinksmixer.com/drink4427.html" + "url": "https://www.drinksmixer.com/drink4427.html" }, { "directions": "Pour baileys and chocolate syrup in a coffee mug. Fill with hot coffee, stir and enjoy.", @@ -36405,7 +36405,7 @@ "coffee" ], "title": "Irish Cup O' Joe recipe", - "url": "http://www.drinksmixer.com/drink4428.html" + "url": "https://www.drinksmixer.com/drink4428.html" }, { "directions": "Pour irish cream, vodka, and bourbon into a highball glass. Add some ice and mix in the orange juice.", @@ -36416,7 +36416,7 @@ "orange juice" ], "title": "Irish Curdling Cow recipe", - "url": "http://www.drinksmixer.com/drink4429.html" + "url": "https://www.drinksmixer.com/drink4429.html" }, { "directions": "Put vodka in first. then add the bailey's and cream. Lightly stir and serve.", @@ -36426,7 +36426,7 @@ "light cream" ], "title": "Irish Dawg recipe", - "url": "http://www.drinksmixer.com/drink4430.html" + "url": "https://www.drinksmixer.com/drink4430.html" }, { "directions": "Float irish cream on top of the cola.", @@ -36435,7 +36435,7 @@ "Bailey's\u00ae Irish cream" ], "title": "Irish Float recipe", - "url": "http://www.drinksmixer.com/drink4431.html" + "url": "https://www.drinksmixer.com/drink4431.html" }, { "directions": "Mix half an ounce of goldshlager with half an ounce of bailey's irish cream in a regular shot glass and stir.", @@ -36444,7 +36444,7 @@ "Goldschlager\u00ae cinnamon schnapps" ], "title": "Irish Gold recipe", - "url": "http://www.drinksmixer.com/drink4432.html" + "url": "https://www.drinksmixer.com/drink4432.html" }, { "directions": "Fill an old-fashioned glass with ice. Add blue curacao and sour mix. Top off with cola. Stir until a greenish/blue mixture is obtained.", @@ -36455,7 +36455,7 @@ "ice" ], "title": "Irish Griep recipe", - "url": "http://www.drinksmixer.com/drink4433.html" + "url": "https://www.drinksmixer.com/drink4433.html" }, { "directions": "Shake with ice and strain into shot glass.", @@ -36465,7 +36465,7 @@ "Bailey's\u00ae Irish cream" ], "title": "Irish Hammer recipe", - "url": "http://www.drinksmixer.com/drink4434.html" + "url": "https://www.drinksmixer.com/drink4434.html" }, { "directions": "Pour whiskey over ice. Fill with ginger ale.", @@ -36475,7 +36475,7 @@ "ice" ], "title": "Irish Highball recipe", - "url": "http://www.drinksmixer.com/drink4435.html" + "url": "https://www.drinksmixer.com/drink4435.html" }, { "directions": "Pour the milk first and then the irish cream - the parts are only guesses, I tend to go by color. You want a creamy beige that has only a slight hint of alcohol. Add just enough creme de menthe so as to turn the drink slightly green. Stir it up and serve cold.", @@ -36485,7 +36485,7 @@ "milk" ], "title": "Irish Mint recipe", - "url": "http://www.drinksmixer.com/drink4436.html" + "url": "https://www.drinksmixer.com/drink4436.html" }, { "directions": "Pour ingredients into a shot glass in the above order.", @@ -36495,7 +36495,7 @@ "brandy" ], "title": "Irish Monk #2 recipe", - "url": "http://www.drinksmixer.com/drink4437.html" + "url": "https://www.drinksmixer.com/drink4437.html" }, { "directions": "Pour liqueurs into an irish coffee cup. Fill with good quality hot chocolate. Add plenty of whipped cream.", @@ -36506,7 +36506,7 @@ "whipped cream" ], "title": "Irish Monk recipe", - "url": "http://www.drinksmixer.com/drink4438.html" + "url": "https://www.drinksmixer.com/drink4438.html" }, { "directions": "Combine in a shot glass.", @@ -36515,7 +36515,7 @@ "Irish Mist\u00ae herbal liqueur" ], "title": "Irish Pirate recipe", - "url": "http://www.drinksmixer.com/drink4439.html" + "url": "https://www.drinksmixer.com/drink4439.html" }, { "directions": "Layer in a highball glass and mix.", @@ -36525,7 +36525,7 @@ "lemon juice" ], "title": "Irish Pride recipe", - "url": "http://www.drinksmixer.com/drink4440.html" + "url": "https://www.drinksmixer.com/drink4440.html" }, { "directions": "Pour irish whiskey and juice of lime into a highball glass over ice cubes. Fill with carbonated water and stir. Add the wedge of lime and serve.", @@ -36536,7 +36536,7 @@ "carbonated water" ], "title": "Irish Rickey recipe", - "url": "http://www.drinksmixer.com/drink4441.html" + "url": "https://www.drinksmixer.com/drink4441.html" }, { "directions": "Add the ingredients in the order listed in the recipe. Care must be taken when adding the guinness to prevent an excess of foam. Do not add ice.", @@ -36547,7 +36547,7 @@ "Guinness\u00ae stout" ], "title": "Irish Russian recipe", - "url": "http://www.drinksmixer.com/drink4442.html" + "url": "https://www.drinksmixer.com/drink4442.html" }, { "directions": "Pour all ingredients (except orange slice and cherry) into a collins glass over ice cubes. Garnish with the slice of orange, add the cherry on top, and serve.", @@ -36560,7 +36560,7 @@ "cherry" ], "title": "Irish Spring recipe", - "url": "http://www.drinksmixer.com/drink4443.html" + "url": "https://www.drinksmixer.com/drink4443.html" }, { "directions": "Pour vodka over ice in an old-fashioned glass. Add kahlua and irish cream, and stir. Garnish with 1 - 3 optional filbert nuts.", @@ -36570,7 +36570,7 @@ "Irish cream" ], "title": "Iron Butterfly recipe", - "url": "http://www.drinksmixer.com/drink4444.html" + "url": "https://www.drinksmixer.com/drink4444.html" }, { "directions": "Pour yukon jack into a shot glass. Top with a small float of bacardi 151 rum. Add a small topping of whipped cream.", @@ -36580,7 +36580,7 @@ "whipped cream" ], "title": "Ironlung recipe", - "url": "http://www.drinksmixer.com/drink4445.html" + "url": "https://www.drinksmixer.com/drink4445.html" }, { "directions": "Mix seagram 7 and vodka in an old-fashioned glass. Stir. Add a few ice cubes, fill with soda and stir gently.", @@ -36591,7 +36591,7 @@ "ice cubes" ], "title": "Ironman recipe", - "url": "http://www.drinksmixer.com/drink4446.html" + "url": "https://www.drinksmixer.com/drink4446.html" }, { "directions": "Combine the ingredients in a small pitcher and add 1 tsp of juice from your jar of maraschino cherries. Pour over crushed ice and garnish with a maraschino cherry or slice of orange.", @@ -36602,7 +36602,7 @@ "bitters" ], "title": "The Irresistible Manhattan recipe", - "url": "http://www.drinksmixer.com/drink4447.html" + "url": "https://www.drinksmixer.com/drink4447.html" }, { "directions": "Stirred, not shaken. Rocks acceptable. Fresh raspberry optional.", @@ -36611,7 +36611,7 @@ "Chambord\u00ae raspberry liqueur" ], "title": "Is Paris Burning recipe", - "url": "http://www.drinksmixer.com/drink4448.html" + "url": "https://www.drinksmixer.com/drink4448.html" }, { "directions": "Shake all ingredients (except cherry) with ice and strain into a chilled cocktail glass. Add the cherry on top and serve.", @@ -36622,7 +36622,7 @@ "cherry" ], "title": "Italian Delight recipe", - "url": "http://www.drinksmixer.com/drink4450.html" + "url": "https://www.drinksmixer.com/drink4450.html" }, { "directions": "Pour the scotch and galliano into an old-fashioned glass almost filled with crushed ice. Stir well. Garnish with the lime wedge.", @@ -36633,7 +36633,7 @@ "lime" ], "title": "Italian Heather recipe", - "url": "http://www.drinksmixer.com/drink4451.html" + "url": "https://www.drinksmixer.com/drink4451.html" }, { "directions": "Whisk with a fork, until all mixed in. Add cream after mixing.", @@ -36645,7 +36645,7 @@ "cream" ], "title": "The Italian Job recipe", - "url": "http://www.drinksmixer.com/drink4452.html" + "url": "https://www.drinksmixer.com/drink4452.html" }, { "directions": "1. Wash the lemons with a vegetable brush and hot water to remove any reside of pesticides or wax. Carefully zest the lemons with a zester or vegetable peeler so there is no white pith on the peel.\r", @@ -36656,7 +36656,7 @@ "lemons" ], "title": "Italian Limoncello recipe", - "url": "http://www.drinksmixer.com/drink4453.html" + "url": "https://www.drinksmixer.com/drink4453.html" }, { "directions": "Pour into a margarita/coupette glass and stir. Add ice cubes.", @@ -36667,7 +36667,7 @@ "triple sec" ], "title": "Italian Margarita recipe", - "url": "http://www.drinksmixer.com/drink4454.html" + "url": "https://www.drinksmixer.com/drink4454.html" }, { "directions": "Shake. Garnish with a cherry.", @@ -36678,7 +36678,7 @@ "grenadine syrup" ], "title": "Italian Nut recipe", - "url": "http://www.drinksmixer.com/drink4455.html" + "url": "https://www.drinksmixer.com/drink4455.html" }, { "directions": "Add to a highball glass. Add vodka, galliano, and fill with pulpless orange juice.", @@ -36689,7 +36689,7 @@ "orange juice" ], "title": "Italian Screw recipe", - "url": "http://www.drinksmixer.com/drink4456.html" + "url": "https://www.drinksmixer.com/drink4456.html" }, { "directions": "Pour chambord into bottom of the glass. Top with soda water. Do not stir. Serve with straw.", @@ -36698,7 +36698,7 @@ "soda water" ], "title": "Italian Soda #2 recipe", - "url": "http://www.drinksmixer.com/drink4457.html" + "url": "https://www.drinksmixer.com/drink4457.html" }, { "directions": "Pour vodka over ice and fill with ginger ale.", @@ -36708,7 +36708,7 @@ "ice cubes" ], "title": "Italian Soda recipe", - "url": "http://www.drinksmixer.com/drink4458.html" + "url": "https://www.drinksmixer.com/drink4458.html" }, { "directions": "Shake amaretto and cream well, pour into a champagne flute, and serve.", @@ -36717,7 +36717,7 @@ "light cream" ], "title": "Italian Sombrero recipe", - "url": "http://www.drinksmixer.com/drink4459.html" + "url": "https://www.drinksmixer.com/drink4459.html" }, { "directions": "Place the ingredients in the order above into a shot glass and shoot.", @@ -36727,7 +36727,7 @@ "Tuaca\u00ae citrus liqueur" ], "title": "Italian Stallion recipe", - "url": "http://www.drinksmixer.com/drink4460.html" + "url": "https://www.drinksmixer.com/drink4460.html" }, { "directions": "Fill an old-fashioned glass with ice. Add brandy and galliano. Stir and garnish with wedge of lime.", @@ -36736,7 +36736,7 @@ "Galliano\u00ae herbal liqueur" ], "title": "Italian Stinger recipe", - "url": "http://www.drinksmixer.com/drink4461.html" + "url": "https://www.drinksmixer.com/drink4461.html" }, { "directions": "Blend until slushy, pour and enjoy.", @@ -36749,7 +36749,7 @@ "ice" ], "title": "Italian Sunrise #2 recipe", - "url": "http://www.drinksmixer.com/drink4462.html" + "url": "https://www.drinksmixer.com/drink4462.html" }, { "directions": "Fill a tall glass with crushed ice. Pour the amaretto over the ice then slowly add the orange juice and top with club soda to form layers. Add a dash of grenadine and garnish with a cherry and orange slice.", @@ -36760,7 +36760,7 @@ "grenadine syrup" ], "title": "Italian Sunset recipe", - "url": "http://www.drinksmixer.com/drink4463.html" + "url": "https://www.drinksmixer.com/drink4463.html" }, { "directions": "Pour ingredients into an ice filled glass. Stir to mix.", @@ -36770,7 +36770,7 @@ "Malibu\u00ae coconut rum" ], "title": "Italian Surfer recipe", - "url": "http://www.drinksmixer.com/drink4464.html" + "url": "https://www.drinksmixer.com/drink4464.html" }, { "directions": "In a shaker half-filled with ice cubes, combine all of the ingredients. Shake well. Strain into a cocktail glass, and serve.\r", @@ -36782,7 +36782,7 @@ "grenadine syrup" ], "title": "Izayoi recipe", - "url": "http://www.drinksmixer.com/drink4465.html" + "url": "https://www.drinksmixer.com/drink4465.html" }, { "directions": "In a shaker half-filled with ice cubes, combine the boubon, amaretto, and milk. Shake well. Pour into an old-fashioned glass.", @@ -36792,7 +36792,7 @@ "milk" ], "title": "J. R.'s Godchild recipe", - "url": "http://www.drinksmixer.com/drink4466.html" + "url": "https://www.drinksmixer.com/drink4466.html" }, { "directions": "In an old-fashioned glass almost filled with ice cubes, combine both of the ingredients. Stir to mix the flavors.", @@ -36801,7 +36801,7 @@ "amaretto almond liqueur" ], "title": "J. R.'s Godfather recipe", - "url": "http://www.drinksmixer.com/drink4467.html" + "url": "https://www.drinksmixer.com/drink4467.html" }, { "directions": "In a mixing glass half-filled with ice cubes, combine all of the ingredients. Stir well. Strain into a cocktail glass.", @@ -36811,7 +36811,7 @@ "bitters" ], "title": "J. R.'s Revenge recipe", - "url": "http://www.drinksmixer.com/drink4468.html" + "url": "https://www.drinksmixer.com/drink4468.html" }, { "directions": "Pour jack daniels into large glass filled with ice. Pour coca-cola into the glass. Stir lightly.\n\n", @@ -36820,7 +36820,7 @@ "Coca-Cola\u00ae" ], "title": "Jack and Coke recipe", - "url": "http://www.drinksmixer.com/drink4469.html" + "url": "https://www.drinksmixer.com/drink4469.html" }, { "directions": "Fill glass with ice. Pour jack daniels then add ginger ale. Stir.", @@ -36829,7 +36829,7 @@ "ginger ale" ], "title": "Jack and Ginger recipe", - "url": "http://www.drinksmixer.com/drink4470.html" + "url": "https://www.drinksmixer.com/drink4470.html" }, { "directions": "Add ice and stir. Garnish with lemon slices and cherries.", @@ -36840,7 +36840,7 @@ "Sprite\u00ae soda" ], "title": "Jack Daniel's Lynchburg Lemonade recipe", - "url": "http://www.drinksmixer.com/drink4471.html" + "url": "https://www.drinksmixer.com/drink4471.html" }, { "directions": "Combine all ingredients over ice in a glass.", @@ -36852,7 +36852,7 @@ "orange juice" ], "title": "Jack Frost recipe", - "url": "http://www.drinksmixer.com/drink4472.html" + "url": "https://www.drinksmixer.com/drink4472.html" }, { "directions": "Pour both shots into one shot glass, straight up.", @@ -36861,7 +36861,7 @@ "Jose Cuervo\u00ae Especial gold tequila" ], "title": "The Jack Hammer recipe", - "url": "http://www.drinksmixer.com/drink4473.html" + "url": "https://www.drinksmixer.com/drink4473.html" }, { "directions": "Pour jack daniels and lemon juice over ice. Top off with dr. pepper. Garnish with a lemon slice. Stir.", @@ -36873,7 +36873,7 @@ "lemon" ], "title": "Jack Lemmon M.D. recipe", - "url": "http://www.drinksmixer.com/drink4474.html" + "url": "https://www.drinksmixer.com/drink4474.html" }, { "directions": "Shake all ingredients with ice, strain into a cocktail glass, and serve.", @@ -36883,7 +36883,7 @@ "limes" ], "title": "Jack Rose Cocktail recipe", - "url": "http://www.drinksmixer.com/drink4475.html" + "url": "https://www.drinksmixer.com/drink4475.html" }, { "directions": "Shake with crushed ice and strain into a cocktail glass.", @@ -36893,7 +36893,7 @@ "grenadine syrup" ], "title": "Jack Rose recipe", - "url": "http://www.drinksmixer.com/drink4476.html" + "url": "https://www.drinksmixer.com/drink4476.html" }, { "directions": "Pour the jack daniels into a glass followed by sprite to taste. Add a slice of lemon. Stir the beverage and enjoy.", @@ -36903,7 +36903,7 @@ "Sprite\u00ae soda" ], "title": "Jack Sprite recipe", - "url": "http://www.drinksmixer.com/drink4477.html" + "url": "https://www.drinksmixer.com/drink4477.html" }, { "directions": "Put in any order into a shot glass, preferably captain morgan's first.", @@ -36913,7 +36913,7 @@ "creme de bananes" ], "title": "Jack Voigt recipe", - "url": "http://www.drinksmixer.com/drink4478.html" + "url": "https://www.drinksmixer.com/drink4478.html" }, { "directions": "Pour the mountain dew in any kind of ordinary glass. Add the shots of watermelon schnapps and jack daniels to the glass, stir, and serve.", @@ -36923,7 +36923,7 @@ "Jack Daniel's\u00ae Tennessee whiskey" ], "title": "Jack Your Melon recipe", - "url": "http://www.drinksmixer.com/drink4479.html" + "url": "https://www.drinksmixer.com/drink4479.html" }, { "directions": "Pour into a shot glass and slam it.", @@ -36932,7 +36932,7 @@ "tequila" ], "title": "Jack-Hammer II recipe", - "url": "http://www.drinksmixer.com/drink4480.html" + "url": "https://www.drinksmixer.com/drink4480.html" }, { "directions": "Shake all ingredients with ice, strain into a cocktail glass, and serve.", @@ -36942,7 +36942,7 @@ "bitters" ], "title": "Jack-In-The-Box recipe", - "url": "http://www.drinksmixer.com/drink4481.html" + "url": "https://www.drinksmixer.com/drink4481.html" }, { "directions": "Pour in one shot of jack daniel's on ice, more if you like your drinks strong. Then pour about a half of a can of coca-cola on top, leaving room for the iced tea. Finally, fill to the top with very strong iced tea (try three times the amount of powder).", @@ -36953,7 +36953,7 @@ "ice" ], "title": "Jack-Off recipe", - "url": "http://www.drinksmixer.com/drink4482.html" + "url": "https://www.drinksmixer.com/drink4482.html" }, { "directions": "Serve over ice.", @@ -36962,7 +36962,7 @@ "amaretto almond liqueur" ], "title": "Jackhammer recipe", - "url": "http://www.drinksmixer.com/drink4483.html" + "url": "https://www.drinksmixer.com/drink4483.html" }, { "directions": "Mix the shots of rum, vodka, amaretto over ice, add a dash of sour mix, then fill the rest with cranberry juice.", @@ -36974,7 +36974,7 @@ "cranberry juice" ], "title": "Jackson 5 recipe", - "url": "http://www.drinksmixer.com/drink4484.html" + "url": "https://www.drinksmixer.com/drink4484.html" }, { "directions": "Mix vodka, jagermeister and red bull in a glass. Add ice and a slice of kiwi.", @@ -36986,7 +36986,7 @@ "ice cubes" ], "title": "Jacobs Haze recipe", - "url": "http://www.drinksmixer.com/drink4485.html" + "url": "https://www.drinksmixer.com/drink4485.html" }, { "directions": "Shake all ingredients (except cherry) in a shaker cup. Strain into a hurricane glass 1/2 filled with chipped ice. Garnish with a cherry and a long straw.", @@ -36999,7 +36999,7 @@ "maraschino cherry" ], "title": "Jade Isle recipe", - "url": "http://www.drinksmixer.com/drink4486.html" + "url": "https://www.drinksmixer.com/drink4486.html" }, { "directions": "Shake all ingredients (except lime slice) with ice and strain into a cocktail glass. Add the slice of lime and serve.", @@ -37012,7 +37012,7 @@ "lime" ], "title": "Jade recipe", - "url": "http://www.drinksmixer.com/drink4487.html" + "url": "https://www.drinksmixer.com/drink4487.html" }, { "directions": "Add jagermeister to a highball glass with three ice cubes. Fill with tonic water and garnish with an orange slice.", @@ -37021,7 +37021,7 @@ "tonic water" ], "title": "Jager Tonic recipe", - "url": "http://www.drinksmixer.com/drink4488.html" + "url": "https://www.drinksmixer.com/drink4488.html" }, { "directions": "Add all three ingredients in a shaker or blender, and mix with ice.", @@ -37031,7 +37031,7 @@ "pina colada mix" ], "title": "Jager Vacation recipe", - "url": "http://www.drinksmixer.com/drink4489.html" + "url": "https://www.drinksmixer.com/drink4489.html" }, { "directions": "Pour the beer into a glass, then drop the shot of jagermeister into it (shot glass optional)", @@ -37040,7 +37040,7 @@ "beer" ], "title": "Jagerbeer Bomb recipe", - "url": "http://www.drinksmixer.com/drink4490.html" + "url": "https://www.drinksmixer.com/drink4490.html" }, { "directions": "Chill the two ingredients then pour into a chilled shot glass (the order you put them in does not matter).", @@ -37049,7 +37049,7 @@ "Jagermeister\u00ae herbal liqueur" ], "title": "Jagershock recipe", - "url": "http://www.drinksmixer.com/drink4491.html" + "url": "https://www.drinksmixer.com/drink4491.html" }, { "directions": "Mix in a punchbowl or make individual drinks.", @@ -37058,7 +37058,7 @@ "Jagermeister\u00ae herbal liqueur" ], "title": "Jagnog recipe", - "url": "http://www.drinksmixer.com/drink4492.html" + "url": "https://www.drinksmixer.com/drink4492.html" }, { "directions": "Mix in a highball glass. Add ice if desired.", @@ -37068,7 +37068,7 @@ "banana syrup" ], "title": "Jaguar recipe", - "url": "http://www.drinksmixer.com/drink4493.html" + "url": "https://www.drinksmixer.com/drink4493.html" }, { "directions": "Shake all ingredients with ice, strain into a cocktail glass, and serve.", @@ -37079,7 +37079,7 @@ "orange juice" ], "title": "Jamaica Glow recipe", - "url": "http://www.drinksmixer.com/drink4494.html" + "url": "https://www.drinksmixer.com/drink4494.html" }, { "directions": "Shake all ingredients with ice, strain into a cocktail glass, and serve.", @@ -37089,7 +37089,7 @@ "light cream" ], "title": "Jamaica Hop recipe", - "url": "http://www.drinksmixer.com/drink4495.html" + "url": "https://www.drinksmixer.com/drink4495.html" }, { "directions": "Fill a tumbler with ice cubes. Add a shot of tia maria and a shot of jamaican light rum. Fill the tumbler with milk. Blend until smooth and serve immediately.", @@ -37100,7 +37100,7 @@ "milk" ], "title": "Jamaica Kiss recipe", - "url": "http://www.drinksmixer.com/drink4496.html" + "url": "https://www.drinksmixer.com/drink4496.html" }, { "directions": "Fill a tall glass with ice. Pour in rum and tia maria. Add pineapple juice.", @@ -37111,7 +37111,7 @@ "ice" ], "title": "Jamaica Me Crazy recipe", - "url": "http://www.drinksmixer.com/drink4497.html" + "url": "https://www.drinksmixer.com/drink4497.html" }, { "directions": "Pour in the rum. Top with cola.", @@ -37120,7 +37120,7 @@ "Jolt\u00ae cola" ], "title": "Jamaican Ass-Kicker recipe", - "url": "http://www.drinksmixer.com/drink4498.html" + "url": "https://www.drinksmixer.com/drink4498.html" }, { "directions": "Blend all ingredients (except sliced banana) in an electric blender at a low speed for a short length of time. Pour into a large brandy snifter and add sliced banana. Sprinkle lightly with nutmeg, top with a whole strawberry, and serve.", @@ -37132,7 +37132,7 @@ "banana" ], "title": "Jamaican Banana recipe", - "url": "http://www.drinksmixer.com/drink4499.html" + "url": "https://www.drinksmixer.com/drink4499.html" }, { "directions": "Pour vermouths, gin and whisky into a glass. Add the beer, and finish with a drop of both blue curacao and vodka.", @@ -37146,7 +37146,7 @@ "Blue Curacao liqueur" ], "title": "Jamaican Beer recipe", - "url": "http://www.drinksmixer.com/drink4500.html" + "url": "https://www.drinksmixer.com/drink4500.html" }, { "directions": "Pour the shots into a glass over ice, fill with 7-up, add cream and stir. Garnish with any fruit or cherry.", @@ -37158,7 +37158,7 @@ "half-and-half" ], "title": "Jamaican Bum recipe", - "url": "http://www.drinksmixer.com/drink4501.html" + "url": "https://www.drinksmixer.com/drink4501.html" }, { "directions": "Put ice into a glass. Add orange juice and coconut rum. Lastly add cranberry juice to taste and stir well.", @@ -37168,7 +37168,7 @@ "cranberry juice" ], "title": "Jamaican Cabdriver recipe", - "url": "http://www.drinksmixer.com/drink4502.html" + "url": "https://www.drinksmixer.com/drink4502.html" }, { "directions": "Stir the rum, coffee and water together. Top with the whipped cream. Sprinkle with a pinch of well ground coffee and drink with a straw.", @@ -37179,7 +37179,7 @@ "whipped cream" ], "title": "Jamaican Coffee recipe", - "url": "http://www.drinksmixer.com/drink4503.html" + "url": "https://www.drinksmixer.com/drink4503.html" }, { "directions": "Mix ingredients in a glass and serve.", @@ -37189,7 +37189,7 @@ "Kahlua\u00ae coffee liqueur" ], "title": "Jamaican Dust-Buster recipe", - "url": "http://www.drinksmixer.com/drink4504.html" + "url": "https://www.drinksmixer.com/drink4504.html" }, { "directions": "Mix all three ingredients in a strainer with ice, strain into a chilled cocktail glass and serve.", @@ -37199,7 +37199,7 @@ "pineapple juice" ], "title": "Jamaican Dust recipe", - "url": "http://www.drinksmixer.com/drink4505.html" + "url": "https://www.drinksmixer.com/drink4505.html" }, { "directions": "Start with the ice cubes. Pour rum and orange juice. Carefully add blue curacao, making sure it falls to the bottom. Layer pineapple vodka on top.", @@ -37211,7 +37211,7 @@ "ice" ], "title": "Jamaican Green Sunrise recipe", - "url": "http://www.drinksmixer.com/drink4506.html" + "url": "https://www.drinksmixer.com/drink4506.html" }, { "directions": "Pour rum over ice. Fill to the top with fruit punch.", @@ -37221,7 +37221,7 @@ "ice cubes" ], "title": "Jamaican Jambaylaya recipe", - "url": "http://www.drinksmixer.com/drink4507.html" + "url": "https://www.drinksmixer.com/drink4507.html" }, { "directions": "Add 3 ice cubes to a mason jar. Using the exact amounts as above, pour the rum and juice into the masor jar and mix.", @@ -37230,7 +37230,7 @@ "grapefruit juice" ], "title": "Jamaican Juice recipe", - "url": "http://www.drinksmixer.com/drink4508.html" + "url": "https://www.drinksmixer.com/drink4508.html" }, { "directions": "Mix in a shaker glass and serve.", @@ -37242,7 +37242,7 @@ "pineapple juice" ], "title": "Jamaican Me Crazy recipe", - "url": "http://www.drinksmixer.com/drink4509.html" + "url": "https://www.drinksmixer.com/drink4509.html" }, { "directions": "Mix the ingredients in shaker with ice. Strain into small or regular size rocks glass.", @@ -37253,7 +37253,7 @@ "milk" ], "title": "Jamaican Qualude recipe", - "url": "http://www.drinksmixer.com/drink4510.html" + "url": "https://www.drinksmixer.com/drink4510.html" }, { "directions": "Mix all ingredients together in a blender or punch bowl. Pour over ice cubes in any type of glass.", @@ -37268,7 +37268,7 @@ "ice cubes" ], "title": "Jamaican Rum Punch recipe", - "url": "http://www.drinksmixer.com/drink4511.html" + "url": "https://www.drinksmixer.com/drink4511.html" }, { "directions": "Mix rum and orange juice together (stirring) then pour over ice.", @@ -37278,7 +37278,7 @@ "ice cubes" ], "title": "Jamaican Screw recipe", - "url": "http://www.drinksmixer.com/drink4512.html" + "url": "https://www.drinksmixer.com/drink4512.html" }, { "directions": "Pour vodka, peach schnapps, and orange juice in a glass and be sure to mix them well. Add the cranberry juice and let it sit at the top of the glass.", @@ -37289,7 +37289,7 @@ "cranberry juice" ], "title": "Jamaican Sunrise recipe", - "url": "http://www.drinksmixer.com/drink4513.html" + "url": "https://www.drinksmixer.com/drink4513.html" }, { "directions": "Combine the vodka and the coconut rum. Fill with orange juice and add a splash of grenadine. Shake or stir.", @@ -37300,7 +37300,7 @@ "grenadine syrup" ], "title": "Jamaican Sunset #2 recipe", - "url": "http://www.drinksmixer.com/drink4514.html" + "url": "https://www.drinksmixer.com/drink4514.html" }, { "directions": "Shake and strain this drink into an ice-filled hurricane glass. Float myer's rum and garnish with a pineapple, orange, or cherry pinwheel.", @@ -37312,7 +37312,7 @@ "sweet and sour mix" ], "title": "Jamaican Sunset recipe", - "url": "http://www.drinksmixer.com/drink4515.html" + "url": "https://www.drinksmixer.com/drink4515.html" }, { "directions": "Shake and strain over ice.", @@ -37323,7 +37323,7 @@ "Malibu\u00ae coconut rum" ], "title": "Jamaican Ten Speed recipe", - "url": "http://www.drinksmixer.com/drink4516.html" + "url": "https://www.drinksmixer.com/drink4516.html" }, { "directions": "Mix all ingredients in a shaker filled with ice. Strain into a frosted zombie glass filled with fresh ice. Garnish with an orange slice and cherry.", @@ -37338,7 +37338,7 @@ "powdered sugar" ], "title": "Jamaican Zombie recipe", - "url": "http://www.drinksmixer.com/drink4517.html" + "url": "https://www.drinksmixer.com/drink4517.html" }, { "directions": "Combine ingredients. Stir.", @@ -37348,7 +37348,7 @@ "Bacardi\u00ae Limon rum" ], "title": "James D recipe", - "url": "http://www.drinksmixer.com/drink4518.html" + "url": "https://www.drinksmixer.com/drink4518.html" }, { "directions": "Mix to make a large punch.", @@ -37360,7 +37360,7 @@ "orange soda" ], "title": "The James Robert Dean recipe", - "url": "http://www.drinksmixer.com/drink4519.html" + "url": "https://www.drinksmixer.com/drink4519.html" }, { "directions": "In a mixing glass half-filled with ice cubes, combine all of the ingredients. Stir well. Strain into a cocktail glass.", @@ -37371,7 +37371,7 @@ "bitters" ], "title": "James The Second Comes First recipe", - "url": "http://www.drinksmixer.com/drink4520.html" + "url": "https://www.drinksmixer.com/drink4520.html" }, { "directions": "Shake all ingredients (except carbonated water) with ice and strain into a highball glass over two ice cubes. Fill with carbonated water, stir, and serve.", @@ -37384,7 +37384,7 @@ "carbonated water" ], "title": "Japanese Fizz recipe", - "url": "http://www.drinksmixer.com/drink4522.html" + "url": "https://www.drinksmixer.com/drink4522.html" }, { "directions": "Shake all ingredients (except lime peel) with ice and strain into a cocktail glass. Add the twist of lime peel and serve.", @@ -37396,7 +37396,7 @@ "lime" ], "title": "Japanese Cocktail recipe", - "url": "http://www.drinksmixer.com/drink4523.html" + "url": "https://www.drinksmixer.com/drink4523.html" }, { "directions": "Pour into a large crushed-ice-filled cup and pour back into the collins glass. Use a plastic stirring utensil if desired.", @@ -37407,7 +37407,7 @@ "Sprite\u00ae soda" ], "title": "Jaq'ed Up Screwdriver recipe", - "url": "http://www.drinksmixer.com/drink4524.html" + "url": "https://www.drinksmixer.com/drink4524.html" }, { "directions": "Stir with cracked ice and strain into a chilled cocktail glass. Garnish with a twist of lemon peel.", @@ -37419,7 +37419,7 @@ "cracked ice" ], "title": "Jasmine recipe", - "url": "http://www.drinksmixer.com/drink4525.html" + "url": "https://www.drinksmixer.com/drink4525.html" }, { "directions": "Mix them all together in a tall glass, and serve.", @@ -37430,7 +37430,7 @@ "ginger ale" ], "title": "The Jaw recipe", - "url": "http://www.drinksmixer.com/drink4526.html" + "url": "https://www.drinksmixer.com/drink4526.html" }, { "directions": "Shake all the above ingredients in a tin with ice.", @@ -37442,7 +37442,7 @@ "pineapple juice" ], "title": "Jay In Your Tummy recipe", - "url": "http://www.drinksmixer.com/drink4527.html" + "url": "https://www.drinksmixer.com/drink4527.html" }, { "directions": "Add all ingredients except the cola into a flash cup. Flash for 10 sec. or till foamy. Serve in a beer mug, preferably chilled, half-filled with ice. Add a splash of cola on top.", @@ -37454,7 +37454,7 @@ "Coca-Cola\u00ae" ], "title": "Jay's Rootbeer Dream recipe", - "url": "http://www.drinksmixer.com/drink4528.html" + "url": "https://www.drinksmixer.com/drink4528.html" }, { "directions": "Mix together in a glass.", @@ -37465,7 +37465,7 @@ "salt" ], "title": "Jealous Queen recipe", - "url": "http://www.drinksmixer.com/drink4529.html" + "url": "https://www.drinksmixer.com/drink4529.html" }, { "directions": "In a hurricane glass (or a long drink glass), pour orange juice, pineapple juice and 7-Up. Add malibu rum and stir gently. Slowly add, as a top off, the sloe gin, so that the red color slowly mixes down through the rest of the drink.", @@ -37477,7 +37477,7 @@ "sloe gin" ], "title": "Jeannie's Dream recipe", - "url": "http://www.drinksmixer.com/drink4530.html" + "url": "https://www.drinksmixer.com/drink4530.html" }, { "directions": "Mix all ingredients in shaker with ice. Coat the rim of the glass with sugar, strain shaker contents over ice and add the cherry.", @@ -37492,7 +37492,7 @@ "cherries" ], "title": "Jedamski's Tropical Orgasm recipe", - "url": "http://www.drinksmixer.com/drink4531.html" + "url": "https://www.drinksmixer.com/drink4531.html" }, { "directions": "Combine all contents (except cherries) in a blender until smooth. Pour into a mug and garnish with cherries.", @@ -37506,7 +37506,7 @@ "cherries" ], "title": "Jedi Mind Trick recipe", - "url": "http://www.drinksmixer.com/drink4532.html" + "url": "https://www.drinksmixer.com/drink4532.html" }, { "directions": "Mix jell-o and unflavored gellatin in a bowl. Add the boiling water. Wait a few minutes to cool and add vodka. Pour into a pan and refrigerate until solidified. Cut into squares and enjoy!", @@ -37517,7 +37517,7 @@ "water" ], "title": "Jell-o Jiggler Shots recipe", - "url": "http://www.drinksmixer.com/drink4533.html" + "url": "https://www.drinksmixer.com/drink4533.html" }, { "directions": "Mix hot water and jello. Add rum. Pour into 2 ounce cups. Serve after the jello has set.", @@ -37527,7 +37527,7 @@ "watermelon jell-o" ], "title": "Jello Shot recipe", - "url": "http://www.drinksmixer.com/drink4534.html" + "url": "https://www.drinksmixer.com/drink4534.html" }, { "directions": "Bring water to a boil. Mix with a large package of black cherry jello. Then add peachtree schnapps, mix well. Pour into small plastic shots or 2 oz. containers. Chill and enjoy.", @@ -37537,7 +37537,7 @@ "DeKuyper\u00ae Peachtree schnapps" ], "title": "Jello-Shot Supreme recipe", - "url": "http://www.drinksmixer.com/drink4535.html" + "url": "https://www.drinksmixer.com/drink4535.html" }, { "directions": "Pour the creme de cacao and amaretto into a shot glass. Float enough bailey's on top to cover the shot, and then drop a few drops of grenadine into it. It looks just like a jellyfish!", @@ -37548,7 +37548,7 @@ "grenadine syrup" ], "title": "Jellyfish recipe", - "url": "http://www.drinksmixer.com/drink4536.html" + "url": "https://www.drinksmixer.com/drink4536.html" }, { "directions": "In an irish coffee cup, combine amaretto and bailey's. Fill with coffee. Top with whipped cream. Float grand marnier over the whipped cream. After serving, consumer may stir for a full flavor combination.", @@ -37560,7 +37560,7 @@ "whipped cream" ], "title": "Jen's Creamy Sighs recipe", - "url": "http://www.drinksmixer.com/drink4537.html" + "url": "https://www.drinksmixer.com/drink4537.html" }, { "directions": "Add one shot of butterscotch schnapps to the hot chocolate. Top off with bailey's.", @@ -37570,7 +37570,7 @@ "Bailey's\u00ae Irish cream" ], "title": "Jen's Hot Chocolate Butterscotch recipe", - "url": "http://www.drinksmixer.com/drink4538.html" + "url": "https://www.drinksmixer.com/drink4538.html" }, { "directions": "Rub lime peel around the rim of a highball glass. Dip the glass upside-down into sugar. Mix lemon gin and mountain dew together, and pour into the glass over ice. Garnish with a lime wedge.", @@ -37582,7 +37582,7 @@ "lime" ], "title": "Jen's Mountain Gin recipe", - "url": "http://www.drinksmixer.com/drink4539.html" + "url": "https://www.drinksmixer.com/drink4539.html" }, { "directions": "Pour vodka and triple sec simultaneously. Add sour mix, grenadine, and sprite. Shake and serve in a shot glass.", @@ -37594,7 +37594,7 @@ "Sprite\u00ae soda" ], "title": "Jen's Red recipe", - "url": "http://www.drinksmixer.com/drink4540.html" + "url": "https://www.drinksmixer.com/drink4540.html" }, { "directions": "Pour ingredients into a shaker over ice, shake well and strain into shot glasses. Take an entire shot in one swallow.", @@ -37603,7 +37603,7 @@ "Captain Morgan\u00ae Original spiced rum" ], "title": "Jennifer's Orgasm recipe", - "url": "http://www.drinksmixer.com/drink4541.html" + "url": "https://www.drinksmixer.com/drink4541.html" }, { "directions": "Pour the vodka and anisette into a glass and top it off with orange juice.", @@ -37613,7 +37613,7 @@ "orange juice" ], "title": "Jenny's Concoction recipe", - "url": "http://www.drinksmixer.com/drink4542.html" + "url": "https://www.drinksmixer.com/drink4542.html" }, { "directions": "Pour bacardi lim\ufffdn into a glass, add the sprite and the red bull, then stir to mix.", @@ -37623,7 +37623,7 @@ "Red Bull\u00ae energy drink" ], "title": "Jens Special recipe", - "url": "http://www.drinksmixer.com/drink4543.html" + "url": "https://www.drinksmixer.com/drink4543.html" }, { "directions": "Mix all ingredients except milk in a mixing glass. Add ice, then fill the glass with milk. Shake vigorously, pour into a hurricane glass and serve.", @@ -37635,7 +37635,7 @@ "milk" ], "title": "Jeremiah recipe", - "url": "http://www.drinksmixer.com/drink4544.html" + "url": "https://www.drinksmixer.com/drink4544.html" }, { "directions": "Build over ice in a rocks glass. Garnish with a cherry.", @@ -37645,7 +37645,7 @@ "cola" ], "title": "Jersey Cherry recipe", - "url": "http://www.drinksmixer.com/drink4545.html" + "url": "https://www.drinksmixer.com/drink4545.html" }, { "directions": "Put cranberry juice in a punch bowl. Add apple cider/juice and apple juice brandy to taste. Slice apple in 3/16th.", @@ -37656,7 +37656,7 @@ "apple" ], "title": "Jersey Devil recipe", - "url": "http://www.drinksmixer.com/drink4546.html" + "url": "https://www.drinksmixer.com/drink4546.html" }, { "directions": "Shake all ingredients with ice, strain into a cocktail glass, and serve.", @@ -37666,7 +37666,7 @@ "limes" ], "title": "Jersey Lightning recipe", - "url": "http://www.drinksmixer.com/drink4547.html" + "url": "https://www.drinksmixer.com/drink4547.html" }, { "directions": "Add sugar, vodka, and sour mix over ice and shake. Fill with sprite/7-up, and top with grenadine or cherry juice. Garnish with a cherry and lemon wedge.", @@ -37678,7 +37678,7 @@ "grenadine syrup" ], "title": "Jersey Shore Cherry Lemonade recipe", - "url": "http://www.drinksmixer.com/drink4548.html" + "url": "https://www.drinksmixer.com/drink4548.html" }, { "directions": "Pour the vodka and then the russian. Stir gently. Drink.", @@ -37687,7 +37687,7 @@ "vodka" ], "title": "Jesus is Here recipe", - "url": "http://www.drinksmixer.com/drink4549.html" + "url": "https://www.drinksmixer.com/drink4549.html" }, { "directions": "In a mixing glass half-filled with ice cubes, combine all of the ingredients. Stir well. Strain into a cocktail glass.", @@ -37697,7 +37697,7 @@ "black sambuca" ], "title": "Jet Black recipe", - "url": "http://www.drinksmixer.com/drink4550.html" + "url": "https://www.drinksmixer.com/drink4550.html" }, { "directions": "Add ice cubes to a mason jar glass. Pour in the rums, followed by the juices. Add the grenadine. Top with a double shot of southern comfort. More juice could be used to mask liquor. Drink can be stirred if preferred.", @@ -37713,7 +37713,7 @@ "Southern Comfort\u00ae peach liqueur" ], "title": "Jet Pilot recipe", - "url": "http://www.drinksmixer.com/drink4551.html" + "url": "https://www.drinksmixer.com/drink4551.html" }, { "directions": "Shake the spirits with crushed ice in a shaker and pour in the cocktail glass. Fill with soda.", @@ -37723,7 +37723,7 @@ "Sprite\u00ae soda" ], "title": "Jetstream recipe", - "url": "http://www.drinksmixer.com/drink4552.html" + "url": "https://www.drinksmixer.com/drink4552.html" }, { "directions": "Stir all ingredients (except cherry) with ice and strain into a cocktail glass. Top with the cherry and serve.", @@ -37735,7 +37735,7 @@ "cherry" ], "title": "Jewel Cocktail recipe", - "url": "http://www.drinksmixer.com/drink4553.html" + "url": "https://www.drinksmixer.com/drink4553.html" }, { "directions": "In a mixing glass half-filled with ice cubes, combine all of the ingredients. Stir well. Strain into a cocktail glass.", @@ -37745,7 +37745,7 @@ "Yellow Chartreuse\u00ae" ], "title": "Jewel of the Nile recipe", - "url": "http://www.drinksmixer.com/drink4554.html" + "url": "https://www.drinksmixer.com/drink4554.html" }, { "directions": "Add vodka to white grape juice. Alter the concentration of vodka slightly (to taste) and pour over ice.", @@ -37754,7 +37754,7 @@ "grape juice" ], "title": "Jeweler's Hammer recipe", - "url": "http://www.drinksmixer.com/drink4555.html" + "url": "https://www.drinksmixer.com/drink4555.html" }, { "directions": "Stir all ingredients (except cherry) with ice and strain into a cocktail glass. Top with the cherry and serve.", @@ -37765,7 +37765,7 @@ "cherry" ], "title": "Jeyplak Cocktail recipe", - "url": "http://www.drinksmixer.com/drink4556.html" + "url": "https://www.drinksmixer.com/drink4556.html" }, { "directions": "In a shaker half-filled with ice cubes, combine all of the ingredients. Shake well and strain into a cocktail glass.", @@ -37776,7 +37776,7 @@ "egg" ], "title": "Jillionaire recipe", - "url": "http://www.drinksmixer.com/drink4557.html" + "url": "https://www.drinksmixer.com/drink4557.html" }, { "directions": "In a rocks glass, pour the vodka over ice. Fill 3/4 with tonic water, add a splash of cranberry juice, then squeeze the lime wedge in.", @@ -37787,7 +37787,7 @@ "lime" ], "title": "Jilly recipe", - "url": "http://www.drinksmixer.com/drink4558.html" + "url": "https://www.drinksmixer.com/drink4558.html" }, { "directions": "Mix all the ingredients in a mason jar and enjoy!", @@ -37799,7 +37799,7 @@ "vanilla syrup" ], "title": "Jim Kroener recipe", - "url": "http://www.drinksmixer.com/drink4559.html" + "url": "https://www.drinksmixer.com/drink4559.html" }, { "directions": "In a chilled double-shot glass (or any chilled glass big enough to hold 2 shots) mix in the Jack Daniel's, Jim Beam, Seagram 7, and Wild Turkey.", @@ -37810,7 +37810,7 @@ "Seagram's\u00ae 7 whisky" ], "title": "Jim Morrison recipe", - "url": "http://www.drinksmixer.com/drink4560.html" + "url": "https://www.drinksmixer.com/drink4560.html" }, { "directions": "Add equal parts jim beam and amaretto on the rocks. Stir.", @@ -37819,7 +37819,7 @@ "amaretto almond liqueur" ], "title": "Jim's Nuts recipe", - "url": "http://www.drinksmixer.com/drink4561.html" + "url": "https://www.drinksmixer.com/drink4561.html" }, { "directions": "Add vodka, cherry brandy, grenadine and ice to a highball glass. Fill with ginger ale and serve.", @@ -37831,7 +37831,7 @@ "ginger ale" ], "title": "Jim's Special recipe", - "url": "http://www.drinksmixer.com/drink4562.html" + "url": "https://www.drinksmixer.com/drink4562.html" }, { "directions": "Put the cognac in a glass and after that, the champagne.", @@ -37840,7 +37840,7 @@ "cognac" ], "title": "Jimmy's Special recipe", - "url": "http://www.drinksmixer.com/drink4563.html" + "url": "https://www.drinksmixer.com/drink4563.html" }, { "directions": "Lightly rub the rim of a cocktail glass with some lime juice, dip glass rim in the salt. Mix all ingredients with ice, strain into fresh ice in the salt-rimmed glass, and enjoy!", @@ -37851,7 +37851,7 @@ "salt" ], "title": "JimPop's Margarita recipe", - "url": "http://www.drinksmixer.com/drink4564.html" + "url": "https://www.drinksmixer.com/drink4564.html" }, { "directions": "Pour bailey's, blueberry schnapps, irish cream, and vodka into a punch bowl. Add grape juice, then sprite. Stir up and have fun.", @@ -37863,7 +37863,7 @@ "grape juice" ], "title": "Jinx recipe", - "url": "http://www.drinksmixer.com/drink4565.html" + "url": "https://www.drinksmixer.com/drink4565.html" }, { "directions": "Fill an old-fashioned glass with ice. Add dark rum and amaretto. Fill with coke. Add a splash of high proof rum to taste.", @@ -37875,7 +37875,7 @@ "151 proof rum" ], "title": "Jo Jo Original recipe", - "url": "http://www.drinksmixer.com/drink4566.html" + "url": "https://www.drinksmixer.com/drink4566.html" }, { "directions": "Stir with a butter knife.", @@ -37885,7 +37885,7 @@ "ice cubes" ], "title": "Jo Jo recipe", - "url": "http://www.drinksmixer.com/drink4567.html" + "url": "https://www.drinksmixer.com/drink4567.html" }, { "directions": "Fill a collins glass with ice. Add southern comfort and amaretto. Fill the rest of the glass with cranberry juice and serve.", @@ -37895,7 +37895,7 @@ "cranberry juice" ], "title": "Jo-Jo Cool-Aid recipe", - "url": "http://www.drinksmixer.com/drink4568.html" + "url": "https://www.drinksmixer.com/drink4568.html" }, { "directions": "In a shaker half-filled with ice cubes, combine the scotch, lemon juice, and sugar. Shake well. Strain into a collins glass almost filled with ice cubes. Add the club soda, stir and garnish with the cherry and the orange slice.", @@ -37908,7 +37908,7 @@ "orange" ], "title": "Jock Collins recipe", - "url": "http://www.drinksmixer.com/drink4569.html" + "url": "https://www.drinksmixer.com/drink4569.html" }, { "directions": "In a shaker half-filled with ice cubes, combine all of the ingredients. Shake well. Strain into an old-fashioned glass half-filled with ice cubes.", @@ -37919,7 +37919,7 @@ "egg" ], "title": "Jock-In-A-Box recipe", - "url": "http://www.drinksmixer.com/drink4570.html" + "url": "https://www.drinksmixer.com/drink4570.html" }, { "directions": "Shake and strain into a chilled cocktail glass. Garnish with a maraschino cherry.", @@ -37929,7 +37929,7 @@ "Angostura\u00ae bitters" ], "title": "Jockey's Choice Manhattan recipe", - "url": "http://www.drinksmixer.com/drink4571.html" + "url": "https://www.drinksmixer.com/drink4571.html" }, { "directions": "Blend all ingredients (except carbonated water) in an electric blender at a low speed for a short length of time. Pour into a collins glass over ice cubes. Fill with carbonated water and serve.", @@ -37942,7 +37942,7 @@ "carbonated water" ], "title": "Jocose Julep recipe", - "url": "http://www.drinksmixer.com/drink4572.html" + "url": "https://www.drinksmixer.com/drink4572.html" }, { "directions": "Add vodka to fresca in a glass.", @@ -37951,7 +37951,7 @@ "Fresca\u00ae grapefruit soda" ], "title": "Joe Blow recipe", - "url": "http://www.drinksmixer.com/drink4573.html" + "url": "https://www.drinksmixer.com/drink4573.html" }, { "directions": "Put all ingredients into a shot glass and serve.", @@ -37962,7 +37962,7 @@ "Jack Daniel's\u00ae Tennessee whiskey" ], "title": "Joe Cocker recipe", - "url": "http://www.drinksmixer.com/drink4574.html" + "url": "https://www.drinksmixer.com/drink4574.html" }, { "directions": "Pour scotch and sweet and sour into a collins glass over ice cubes and stir well. Fill with cola and stir lightly. Top with the cherry and serve.", @@ -37973,7 +37973,7 @@ "cherry" ], "title": "Joe Collins recipe", - "url": "http://www.drinksmixer.com/drink4575.html" + "url": "https://www.drinksmixer.com/drink4575.html" }, { "directions": "Mix all ingredients then top with 151 proof rum.", @@ -37986,7 +37986,7 @@ "cranberry juice" ], "title": "Joe's Killer Bee recipe", - "url": "http://www.drinksmixer.com/drink4576.html" + "url": "https://www.drinksmixer.com/drink4576.html" }, { "directions": "Mix in a shot glass in order above.", @@ -37997,7 +37997,7 @@ "lime juice" ], "title": "Joel's Pet Monkey recipe", - "url": "http://www.drinksmixer.com/drink4577.html" + "url": "https://www.drinksmixer.com/drink4577.html" }, { "directions": "Shake two parts vodka with one part raspberry liqueur and one part cranberry juice. Chill and serve as shots.", @@ -38007,7 +38007,7 @@ "cranberry juice" ], "title": "Joey F's Grape Ape recipe", - "url": "http://www.drinksmixer.com/drink4578.html" + "url": "https://www.drinksmixer.com/drink4578.html" }, { "directions": "Mix lime vodka, absolut citron and juice together and put it in a shot glass. Add galliano right before serving. Shoot it.", @@ -38018,7 +38018,7 @@ "Galliano\u00ae herbal liqueur" ], "title": "Jogeir recipe", - "url": "http://www.drinksmixer.com/drink4579.html" + "url": "https://www.drinksmixer.com/drink4579.html" }, { "directions": "Mix and top it with some ice cubes.", @@ -38028,7 +38028,7 @@ "cranberry juice" ], "title": "Johanna recipe", - "url": "http://www.drinksmixer.com/drink4580.html" + "url": "https://www.drinksmixer.com/drink4580.html" }, { "directions": "In a shaker half-filled with ice cubes, combine the bourbon, lemon juice, and sugar. Shake well. Strain into a collins glass almost filled with ice cubes. Add the club soda. Stir and garnish with the cherry and the orange slice.", @@ -38041,7 +38041,7 @@ "orange" ], "title": "John Collins recipe", - "url": "http://www.drinksmixer.com/drink4581.html" + "url": "https://www.drinksmixer.com/drink4581.html" }, { "directions": "Fill a collins glass with ice. Add absolute citron and triple sec. Fill glass with equal parts lemonade/iced tea. Garnish with a lemon wedge.", @@ -38053,7 +38053,7 @@ "ice cubes" ], "title": "John Daly recipe", - "url": "http://www.drinksmixer.com/drink4582.html" + "url": "https://www.drinksmixer.com/drink4582.html" }, { "directions": "Pour very cold tequila with benedictine in a shot glass. Serve it with a slice of orange that has cinnamon on it nad kalo methisi. (that was Greek)", @@ -38064,7 +38064,7 @@ "cinnamon" ], "title": "John's Bomb recipe", - "url": "http://www.drinksmixer.com/drink4583.html" + "url": "https://www.drinksmixer.com/drink4583.html" }, { "directions": "Shake all ingredients with ice, strain into a cocktail glass, and serve.", @@ -38074,7 +38074,7 @@ "anisette" ], "title": "Johnnie Cocktail recipe", - "url": "http://www.drinksmixer.com/drink4584.html" + "url": "https://www.drinksmixer.com/drink4584.html" }, { "directions": "Place gin or vodka, triple sec, vermouth, grenadine and ice into a shaker. Shake well and pour into a red wine glass. Fill with tonic water or club soda.", @@ -38087,7 +38087,7 @@ "ice cubes" ], "title": "Johnny Cat recipe", - "url": "http://www.drinksmixer.com/drink4585.html" + "url": "https://www.drinksmixer.com/drink4585.html" }, { "directions": "Pour the first 3 ingredients into a shaker and shake. Pour over ice and top up with tonic. Layer with blue curacao.", @@ -38099,7 +38099,7 @@ "Blue Curacao liqueur" ], "title": "Johnny K8 recipe", - "url": "http://www.drinksmixer.com/drink4586.html" + "url": "https://www.drinksmixer.com/drink4586.html" }, { "directions": "Mix over ice. Garnish with a slice of orange.", @@ -38111,7 +38111,7 @@ "orange" ], "title": "Johnny on the Beach recipe", - "url": "http://www.drinksmixer.com/drink4587.html" + "url": "https://www.drinksmixer.com/drink4587.html" }, { "directions": "Mix just like you would a screwdriver, except substitute with lime vodka.", @@ -38120,7 +38120,7 @@ "orange juice" ], "title": "Jolly Green Giant recipe", - "url": "http://www.drinksmixer.com/drink4588.html" + "url": "https://www.drinksmixer.com/drink4588.html" }, { "directions": "Put together, fill with orange juice, add ice and drink.", @@ -38132,7 +38132,7 @@ "orange juice" ], "title": "Jolly Jumper recipe", - "url": "http://www.drinksmixer.com/drink4589.html" + "url": "https://www.drinksmixer.com/drink4589.html" }, { "directions": "Mix and serve chilled in an old-fashioned glass.", @@ -38142,7 +38142,7 @@ "cranberry juice" ], "title": "Jolly Rancher #2 recipe", - "url": "http://www.drinksmixer.com/drink4590.html" + "url": "https://www.drinksmixer.com/drink4590.html" }, { "directions": "Shake ingredients and serve in a highball glass over ice.", @@ -38152,7 +38152,7 @@ "cranberry juice" ], "title": "The Jolly Rancher recipe", - "url": "http://www.drinksmixer.com/drink4591.html" + "url": "https://www.drinksmixer.com/drink4591.html" }, { "directions": "Shake melon liqueur and blueberry schnapps with ice and strain into an old-fashioned glass over ice cubes. Fill with sweet and sour, add grenadine for color, and stir. Add cherry on top and serve.", @@ -38164,7 +38164,7 @@ "cherry" ], "title": "Jolly Rancher recipe", - "url": "http://www.drinksmixer.com/drink4592.html" + "url": "https://www.drinksmixer.com/drink4592.html" }, { "directions": "Mix liquor and syrup with some ice in a highball glass, add 7-up and enjoy.", @@ -38176,7 +38176,7 @@ "7-Up\u00ae soda" ], "title": "Jon Lee Hooker recipe", - "url": "http://www.drinksmixer.com/drink4593.html" + "url": "https://www.drinksmixer.com/drink4593.html" }, { "directions": "In a mixing glass half-filled with ice cubes, combine the rum and creme de cacao. Stir well. Strain into a cocktail glass.", @@ -38185,7 +38185,7 @@ "dark creme de cacao" ], "title": "Jonesey recipe", - "url": "http://www.drinksmixer.com/drink4594.html" + "url": "https://www.drinksmixer.com/drink4594.html" }, { "directions": "Add tequila to a shot glass, and add firewater.", @@ -38194,7 +38194,7 @@ "Firewater\u00ae cinnamon schnapps" ], "title": "Jose Flame-O recipe", - "url": "http://www.drinksmixer.com/drink4595.html" + "url": "https://www.drinksmixer.com/drink4595.html" }, { "directions": "Shake all ingredients with ice, strain into a cocktail glass, and serve.", @@ -38206,7 +38206,7 @@ "grenadine syrup" ], "title": "Joulouville recipe", - "url": "http://www.drinksmixer.com/drink4596.html" + "url": "https://www.drinksmixer.com/drink4596.html" }, { "directions": "Shake all ingredients with ice, strain into a cocktail glass, and serve.", @@ -38219,7 +38219,7 @@ "bitters" ], "title": "Journalist Cocktail recipe", - "url": "http://www.drinksmixer.com/drink4597.html" + "url": "https://www.drinksmixer.com/drink4597.html" }, { "directions": "Muddle lemon and sugar in a mixing glass. Add ice, absolut citron, campari and sweet and sour. Shake well and dump into a hurricane glass. Spritz with soda.", @@ -38232,7 +38232,7 @@ "soda water" ], "title": "Joy Ride recipe", - "url": "http://www.drinksmixer.com/drink4598.html" + "url": "https://www.drinksmixer.com/drink4598.html" }, { "directions": "In a mixing glass half-filled with ice cubes, combine all of the ingredients. Stir well, and strain into a cocktail glass.", @@ -38242,7 +38242,7 @@ "dark creme de cacao" ], "title": "Joy-To-The-World recipe", - "url": "http://www.drinksmixer.com/drink4599.html" + "url": "https://www.drinksmixer.com/drink4599.html" }, { "directions": "Fill mug 2/3 full with coffee. Add tequila, kahlua and tia maria. Stir. You may stir in half 'n half instead of topping with whipped cream. Garnish with a cherry or mint.", @@ -38254,7 +38254,7 @@ "whipped cream" ], "title": "Joyful Bull recipe", - "url": "http://www.drinksmixer.com/drink4600.html" + "url": "https://www.drinksmixer.com/drink4600.html" }, { "directions": "Add the vodka, tropical schnapps, orange juice and the cranberry juice in that order into a collins glass and serve.", @@ -38265,7 +38265,7 @@ "cranberry juice" ], "title": "JT Delight recipe", - "url": "http://www.drinksmixer.com/drink4601.html" + "url": "https://www.drinksmixer.com/drink4601.html" }, { "directions": "Shake all ingredients (except cherry) with ice and strain into a cocktail glass. Top with the cherry and serve.", @@ -38277,7 +38277,7 @@ "cherry" ], "title": "Judgette Cocktail recipe", - "url": "http://www.drinksmixer.com/drink4602.html" + "url": "https://www.drinksmixer.com/drink4602.html" }, { "directions": "Shake. Serve on the rocks.", @@ -38290,7 +38290,7 @@ "7-Up\u00ae soda" ], "title": "Jufu Cocktail recipe", - "url": "http://www.drinksmixer.com/drink4603.html" + "url": "https://www.drinksmixer.com/drink4603.html" }, { "directions": "Pour into a five gallon pitcher, the canister of lemonade, water, everclear and mix. Serve on ice.", @@ -38300,7 +38300,7 @@ "water" ], "title": "The Juice recipe", - "url": "http://www.drinksmixer.com/drink4604.html" + "url": "https://www.drinksmixer.com/drink4604.html" }, { "directions": "Mix in the shots of blue curacao, taboo and vodka. Add the guinness to the spirits up to 3cm below the rim of the pint glass. Allow the guinness to settle before adding the carling premier. Allow to settle again before consuming.", @@ -38312,7 +38312,7 @@ "Carling\u00ae Premier lager" ], "title": "Juicy Guiness Premier recipe", - "url": "http://www.drinksmixer.com/drink4605.html" + "url": "https://www.drinksmixer.com/drink4605.html" }, { "directions": "Mix all above, pour over ice, and enjoy.", @@ -38327,7 +38327,7 @@ "grapefruit juice" ], "title": "Juicy Lucy #2 recipe", - "url": "http://www.drinksmixer.com/drink4606.html" + "url": "https://www.drinksmixer.com/drink4606.html" }, { "directions": "Mix all ingredients and blend well. Add more coca-cola if needed. Serve with a slice of lemon and a straw.", @@ -38337,7 +38337,7 @@ "Coca-Cola\u00ae" ], "title": "Juicy Tiger recipe", - "url": "http://www.drinksmixer.com/drink4608.html" + "url": "https://www.drinksmixer.com/drink4608.html" }, { "directions": "Serve in a shot glass.", @@ -38346,7 +38346,7 @@ "coconut rum" ], "title": "Juicy Volkheimer recipe", - "url": "http://www.drinksmixer.com/drink4609.html" + "url": "https://www.drinksmixer.com/drink4609.html" }, { "directions": "Mix in a chilled glass.", @@ -38355,7 +38355,7 @@ "Jolt\u00ae cola" ], "title": "Jump Starter recipe", - "url": "http://www.drinksmixer.com/drink4610.html" + "url": "https://www.drinksmixer.com/drink4610.html" }, { "directions": "Pour rum over ice, fill with jolt cola, and stir.", @@ -38364,7 +38364,7 @@ "Jolt\u00ae cola" ], "title": "Jumper Cable recipe", - "url": "http://www.drinksmixer.com/drink4611.html" + "url": "https://www.drinksmixer.com/drink4611.html" }, { "directions": "Fill a highball glass with ice, pour in both liquors, give a quick stir and serve.", @@ -38373,7 +38373,7 @@ "blackberry brandy" ], "title": "The Jumpin' Black Jack recipe", - "url": "http://www.drinksmixer.com/drink4612.html" + "url": "https://www.drinksmixer.com/drink4612.html" }, { "directions": "Place orange juice and ginger into a blender jar. Break the banana into chunks and add it in. Cover, and whiz on medium speed until well blended. Pour into a collins glass, and serve.", @@ -38383,7 +38383,7 @@ "ginger" ], "title": "Jungle Juice #4 recipe", - "url": "http://www.drinksmixer.com/drink4613.html" + "url": "https://www.drinksmixer.com/drink4613.html" }, { "directions": "Mix all equal parts, shake, and strain. Serve in shot glasses.", @@ -38398,7 +38398,7 @@ "cranberry juice" ], "title": "Jungle Juice #2 recipe", - "url": "http://www.drinksmixer.com/drink4614.html" + "url": "https://www.drinksmixer.com/drink4614.html" }, { "directions": "Mix everything except orange juice. Shake well and add the orange juice. Serve in a highball glass.", @@ -38410,7 +38410,7 @@ "orange juice" ], "title": "Jungle Juice #3 recipe", - "url": "http://www.drinksmixer.com/drink4615.html" + "url": "https://www.drinksmixer.com/drink4615.html" }, { "directions": "Add the rum to the beer, and stir in frozen lime juice concentrate.", @@ -38420,7 +38420,7 @@ "lime juice" ], "title": "Juniata Juice recipe", - "url": "http://www.drinksmixer.com/drink4616.html" + "url": "https://www.drinksmixer.com/drink4616.html" }, { "directions": "Combine all ingredients with ice, shake, and strain into old-fashioned glass.", @@ -38430,7 +38430,7 @@ "white creme de menthe" ], "title": "Junior Mint recipe", - "url": "http://www.drinksmixer.com/drink4617.html" + "url": "https://www.drinksmixer.com/drink4617.html" }, { "directions": "Place all ingredients into a blender jar. Cover, and whiz on medium speed until well blended. Pour into a collins glass, and serve.", @@ -38440,7 +38440,7 @@ "mint syrup" ], "title": "Just A Moonmint recipe", - "url": "http://www.drinksmixer.com/drink4618.html" + "url": "https://www.drinksmixer.com/drink4618.html" }, { "directions": "Mix together the peach schnapps and the iced tea and serve over ice in a highball glass.", @@ -38450,7 +38450,7 @@ "ice cubes" ], "title": "Just Peachy recipe", - "url": "http://www.drinksmixer.com/drink4619.html" + "url": "https://www.drinksmixer.com/drink4619.html" }, { "directions": "Mix over ice and pour into a shot glass.", @@ -38463,7 +38463,7 @@ "151 proof rum" ], "title": "Just Shoot Me recipe", - "url": "http://www.drinksmixer.com/drink4620.html" + "url": "https://www.drinksmixer.com/drink4620.html" }, { "directions": "Pour Jagermeister over ice in a 12 oz highball or old-fashioned glass. Add a dash of grenadine, add orange juice, and serve.", @@ -38473,7 +38473,7 @@ "orange juice" ], "title": "Jagermonster recipe", - "url": "http://www.drinksmixer.com/drink4621.html" + "url": "https://www.drinksmixer.com/drink4621.html" }, { "directions": "Pour the amaretto into a cup. Add a tablespoon of cinnamon schnapps, and fill with apple juice. Stir and serve warm.", @@ -38483,7 +38483,7 @@ "cinnamon schnapps" ], "title": "K-Dawg's Apple Pie recipe", - "url": "http://www.drinksmixer.com/drink4622.html" + "url": "https://www.drinksmixer.com/drink4622.html" }, { "directions": "Mix all ingredients into a large punch bowl or ice chest. Slice fruit and add into mixture. More cranberry juice may be added if you are a bunch of light-weights. Stir vigorously with a paddle.", @@ -38497,7 +38497,7 @@ "ice" ], "title": "K-V-S Kaboom recipe", - "url": "http://www.drinksmixer.com/drink4623.html" + "url": "https://www.drinksmixer.com/drink4623.html" }, { "directions": "Layer/float the ingredients in a shot glass. Make sure galliano is on top.", @@ -38507,7 +38507,7 @@ "Bailey's\u00ae Irish cream" ], "title": "K.G.B. #2 recipe", - "url": "http://www.drinksmixer.com/drink4624.html" + "url": "https://www.drinksmixer.com/drink4624.html" }, { "directions": "Shake all ingredients (except lemon peel) with ice and strain into a cocktail glass. Add the twist of lemon peel and serve.", @@ -38519,7 +38519,7 @@ "lemon" ], "title": "K.G.B. recipe", - "url": "http://www.drinksmixer.com/drink4625.html" + "url": "https://www.drinksmixer.com/drink4625.html" }, { "directions": "Pour each shot into a cup filled with ice cubes. Shake three times and serve.", @@ -38529,7 +38529,7 @@ "Jagermeister\u00ae herbal liqueur" ], "title": "Kahlodster recipe", - "url": "http://www.drinksmixer.com/drink4626.html" + "url": "https://www.drinksmixer.com/drink4626.html" }, { "directions": "Bring to the boil. Reduce heat and simmer for 1 hour. Let cool and add vanilla and either a pint or fifth of vodka. Drink and enjoy.", @@ -38540,7 +38540,7 @@ "vanilla" ], "title": "Kahlua Coffee recipe", - "url": "http://www.drinksmixer.com/drink4627.html" + "url": "https://www.drinksmixer.com/drink4627.html" }, { "directions": "Simmer water, sugar, and coffee until the sugar dissolves. Put vanilla bean and bourbon in a gallon jug and add the coffee syrup you just prepared. Cover and let sit for a month.", @@ -38552,7 +38552,7 @@ "bourbon whiskey" ], "title": "Kahlua Coffee #2 recipe", - "url": "http://www.drinksmixer.com/drink4628.html" + "url": "https://www.drinksmixer.com/drink4628.html" }, { "directions": "Boil water, add coffee and sugar and simmer for 20 min. Remove from heat and add chocolate. Allow to cool, then add the vodka (or don't cool if you want some of the alcohol to boil off).", @@ -38564,7 +38564,7 @@ "chocolate syrup" ], "title": "Kahlua Coffee #3 recipe", - "url": "http://www.drinksmixer.com/drink4629.html" + "url": "https://www.drinksmixer.com/drink4629.html" }, { "directions": "Mix 3 cups water with 4 cups sugar, bring to boil and boil for 20 minutes. Set aside, add 1 whole vanilla bean split. Let mixture cool. Add 2 oz instant coffee to 1 cup boiling water. Stir until dissolved. Set aside and cool. When above are cool (important) put into a half gallon container and add the vodka. Let age for at least 3 weeks.", @@ -38576,7 +38576,7 @@ "vodka" ], "title": "Kahlua Coffee #4 recipe", - "url": "http://www.drinksmixer.com/drink4630.html" + "url": "https://www.drinksmixer.com/drink4630.html" }, { "directions": "Pour kahlua into a glass over ice. Add cream and shake.", @@ -38585,7 +38585,7 @@ "cream" ], "title": "Kahlua and Cream recipe", - "url": "http://www.drinksmixer.com/drink4631.html" + "url": "https://www.drinksmixer.com/drink4631.html" }, { "directions": "Mix in a blender by adding the ice cream first, followed by the milk, then add the kahlua. Blend until smooth.", @@ -38595,7 +38595,7 @@ "Kahlua\u00ae coffee liqueur" ], "title": "Kahlua and Iced Cream recipe", - "url": "http://www.drinksmixer.com/drink4632.html" + "url": "https://www.drinksmixer.com/drink4632.html" }, { "directions": "Mix all of the ingredients well. Serve in an old-fashioned glass.", @@ -38606,7 +38606,7 @@ "milk" ], "title": "Kahlua Bomb recipe", - "url": "http://www.drinksmixer.com/drink4633.html" + "url": "https://www.drinksmixer.com/drink4633.html" }, { "directions": "Just like making a milk shake, but add the kahlua and serve in an old-fashioned glass.", @@ -38617,7 +38617,7 @@ "ice" ], "title": "Kahlua Fudge Shake recipe", - "url": "http://www.drinksmixer.com/drink4634.html" + "url": "https://www.drinksmixer.com/drink4634.html" }, { "directions": "Pour kahlua into an old-fashioned glass. Add vodka and tonic water. Drink from the bottom with two straws.", @@ -38630,7 +38630,7 @@ "tonic water" ], "title": "Kahlua Madness recipe", - "url": "http://www.drinksmixer.com/drink4635.html" + "url": "https://www.drinksmixer.com/drink4635.html" }, { "directions": "Pour tequila and kahlua into a hurricane glass. Fill the rest with chocolate milk. Stir well.", @@ -38640,7 +38640,7 @@ "chocolate milk" ], "title": "Kahlua Twist recipe", - "url": "http://www.drinksmixer.com/drink4636.html" + "url": "https://www.drinksmixer.com/drink4636.html" }, { "directions": "Pour into a shot glass, and shoot.", @@ -38650,7 +38650,7 @@ "triple sec" ], "title": "Kalabreeze recipe", - "url": "http://www.drinksmixer.com/drink4637.html" + "url": "https://www.drinksmixer.com/drink4637.html" }, { "directions": "Drink (or throw away) one half of a 1.5 ltr. bottle of coke. Then simply pour red wine, cheap or not, into the bottle slowly, until full. Do not shake the bottle, but simply turn it over a couple of times.", @@ -38659,7 +38659,7 @@ "Coca-Cola\u00ae" ], "title": "Kalimocho recipe", - "url": "http://www.drinksmixer.com/drink4638.html" + "url": "https://www.drinksmixer.com/drink4638.html" }, { "directions": "Best served cold in a highball glass, but without ice.", @@ -38668,7 +38668,7 @@ "Coca-Cola\u00ae" ], "title": "Kalimotxo recipe", - "url": "http://www.drinksmixer.com/drink4639.html" + "url": "https://www.drinksmixer.com/drink4639.html" }, { "directions": "Shake well with ice and strain mixture into a shot glass. Salute.", @@ -38678,7 +38678,7 @@ "Rose's\u00ae lime juice" ], "title": "Kamakazie recipe", - "url": "http://www.drinksmixer.com/drink4640.html" + "url": "https://www.drinksmixer.com/drink4640.html" }, { "directions": "Pour absolut and cointreau over ice in an old-fashioned glass. Squeeze and drop in lime wedge to taste.", @@ -38688,7 +38688,7 @@ "lime" ], "title": "Kamakazie #2 recipe", - "url": "http://www.drinksmixer.com/drink4641.html" + "url": "https://www.drinksmixer.com/drink4641.html" }, { "directions": "Pour welch's concentrate into pitcher, then fill can with vodka and pour into pitcher. Finally fill can with raspberry schnapps and pour into pitcher. Add crushed ice and shake.", @@ -38698,7 +38698,7 @@ "Absolut\u00ae vodka" ], "title": "Kamakazie Razzberry recipe", - "url": "http://www.drinksmixer.com/drink4642.html" + "url": "https://www.drinksmixer.com/drink4642.html" }, { "directions": "Pour the sambuca into a shot glass, and layer the bailey's by pouring over a spoon into the same glass. Do not allow to mix.", @@ -38707,7 +38707,7 @@ "Bailey's\u00ae Irish cream" ], "title": "Kamel Drivare recipe", - "url": "http://www.drinksmixer.com/drink4643.html" + "url": "https://www.drinksmixer.com/drink4643.html" }, { "directions": "Firstly, build ingredients in the order given in a collins glass over ice. Layer the Pimms on top.", @@ -38719,7 +38719,7 @@ "Pimm's\u00ae gin" ], "title": "Kameleon recipe", - "url": "http://www.drinksmixer.com/drink4644.html" + "url": "https://www.drinksmixer.com/drink4644.html" }, { "directions": "Pour ingredients into a shot glass and serve.", @@ -38729,7 +38729,7 @@ "lime juice" ], "title": "Kamikaze #2 recipe", - "url": "http://www.drinksmixer.com/drink4645.html" + "url": "https://www.drinksmixer.com/drink4645.html" }, { "directions": "Fill a cocktail glass with ice. Simultaneously pour in the vodka and grand marnier. Add lime juice. Stir with a straw and serve.", @@ -38739,7 +38739,7 @@ "Rose's\u00ae lime juice" ], "title": "Kamikaze Kool recipe", - "url": "http://www.drinksmixer.com/drink4646.html" + "url": "https://www.drinksmixer.com/drink4646.html" }, { "directions": "Add vodka and mixers to a cocktail glass with ice. Fill with sour mix and shake.", @@ -38750,7 +38750,7 @@ "sweet and sour mix" ], "title": "Kamikaze Version recipe", - "url": "http://www.drinksmixer.com/drink4647.html" + "url": "https://www.drinksmixer.com/drink4647.html" }, { "directions": "Combine ingredients in a shaker, shake well, and strain into a highball glass.", @@ -38760,7 +38760,7 @@ "milk" ], "title": "Karlsson's Dream recipe", - "url": "http://www.drinksmixer.com/drink4648.html" + "url": "https://www.drinksmixer.com/drink4648.html" }, { "directions": "Shake well and pour into a glass. Substitute banana liqueur for pisang ambon if needed.", @@ -38770,7 +38770,7 @@ "Malibu\u00ae coconut rum" ], "title": "Karlsson recipe", - "url": "http://www.drinksmixer.com/drink4649.html" + "url": "https://www.drinksmixer.com/drink4649.html" }, { "directions": "Pour vodka, peach schnapps, sprite, and lastly grenadine to taste. Mix well. Serve over ice.", @@ -38781,7 +38781,7 @@ "grenadine syrup" ], "title": "Karma Chameleon recipe", - "url": "http://www.drinksmixer.com/drink4650.html" + "url": "https://www.drinksmixer.com/drink4650.html" }, { "directions": "Put a copper coin in a coffee-cup and fill up with coffee until you no longer see the coin, then add alcohol until you see the coin. Norwegian speciality.", @@ -38790,7 +38790,7 @@ "alcohol" ], "title": "Karsk recipe", - "url": "http://www.drinksmixer.com/drink4651.html" + "url": "https://www.drinksmixer.com/drink4651.html" }, { "directions": "Combine all ingredients into a mixing tin with ice. Shake and strain. Can be served over ice or up.", @@ -38803,7 +38803,7 @@ "cranberry juice" ], "title": "Kavorkien recipe", - "url": "http://www.drinksmixer.com/drink4652.html" + "url": "https://www.drinksmixer.com/drink4652.html" }, { "directions": "Mix, chill, strain, and shoot.", @@ -38815,7 +38815,7 @@ "Sprite\u00ae soda" ], "title": "Keith Jackson recipe", - "url": "http://www.drinksmixer.com/drink4653.html" + "url": "https://www.drinksmixer.com/drink4653.html" }, { "directions": "Mix the three together in a big glass and pour into shot glasses. Top each shot off with whipped cream.", @@ -38826,7 +38826,7 @@ "whipped cream" ], "title": "Kelly's Buttery Nipple recipe", - "url": "http://www.drinksmixer.com/drink4654.html" + "url": "https://www.drinksmixer.com/drink4654.html" }, { "directions": "Mix the peach vodka with the sprite and some ice cubes.", @@ -38835,7 +38835,7 @@ "Sprite\u00ae soda" ], "title": "Kenny recipe", - "url": "http://www.drinksmixer.com/drink4655.html" + "url": "https://www.drinksmixer.com/drink4655.html" }, { "directions": "Pour the bourbon and benedictine into a brandy snifter.", @@ -38844,7 +38844,7 @@ "benedictine herbal liqueur" ], "title": "Kentucky B And B recipe", - "url": "http://www.drinksmixer.com/drink4656.html" + "url": "https://www.drinksmixer.com/drink4656.html" }, { "directions": "Stir bourbon and benedictine with ice and strain into a cocktail glass. Add the twist of lemon peel and serve.", @@ -38854,7 +38854,7 @@ "lemon" ], "title": "Kentucky Colonel recipe", - "url": "http://www.drinksmixer.com/drink4657.html" + "url": "https://www.drinksmixer.com/drink4657.html" }, { "directions": "Shake all ingredients over ice in a cocktail shaker and strain into a shot glass. Voila!", @@ -38865,7 +38865,7 @@ "Tabasco\u00ae sauce" ], "title": "Kentucky Hot Tub recipe", - "url": "http://www.drinksmixer.com/drink4659.html" + "url": "https://www.drinksmixer.com/drink4659.html" }, { "directions": "Fill glass with ice. Add bourbon, fill with ginger beer and a splash of lime juice. Stir and drink!", @@ -38876,7 +38876,7 @@ "ice" ], "title": "Kentucky Mule recipe", - "url": "http://www.drinksmixer.com/drink4660.html" + "url": "https://www.drinksmixer.com/drink4660.html" }, { "directions": "Mix alcohols, add coffee, top with whipped cream, and serve.", @@ -38888,7 +38888,7 @@ "whipped cream" ], "title": "Keoke Coffee recipe", - "url": "http://www.drinksmixer.com/drink4661.html" + "url": "https://www.drinksmixer.com/drink4661.html" }, { "directions": "Mix and shoot.", @@ -38898,7 +38898,7 @@ "Rumple Minze\u00ae peppermint liqueur" ], "title": "Keremiki recipe", - "url": "http://www.drinksmixer.com/drink4662.html" + "url": "https://www.drinksmixer.com/drink4662.html" }, { "directions": "Pour ingredients into a glass and serve.", @@ -38909,7 +38909,7 @@ "7-Up\u00ae soda" ], "title": "Kermit The Frog Piss recipe", - "url": "http://www.drinksmixer.com/drink4663.html" + "url": "https://www.drinksmixer.com/drink4663.html" }, { "directions": "Add ice and shake. Top up with orange juice.", @@ -38920,7 +38920,7 @@ "banana liqueur" ], "title": "Kermit recipe", - "url": "http://www.drinksmixer.com/drink4664.html" + "url": "https://www.drinksmixer.com/drink4664.html" }, { "directions": "Put iced tea mix into a glass and fill about half full of water. Add rye whiskey, then fill remainder of glass with water. Stir. Add ice cubes. The colder this drink is, the better.", @@ -38930,7 +38930,7 @@ "water" ], "title": "Kevin's Special Blend recipe", - "url": "http://www.drinksmixer.com/drink4665.html" + "url": "https://www.drinksmixer.com/drink4665.html" }, { "directions": "Mix juices and alcohol in a mixing tin, flash blend, and pour over ice in a 23 oz. squall glass and float bacardi 151 rum. Garnish with an orange flag and umbrella.", @@ -38943,7 +38943,7 @@ "Bacardi\u00ae 151 rum" ], "title": "Key Largo Kooler recipe", - "url": "http://www.drinksmixer.com/drink4666.html" + "url": "https://www.drinksmixer.com/drink4666.html" }, { "directions": "Add ice and then equal parts of key largo and orange juice. Mix and enjoy.", @@ -38952,7 +38952,7 @@ "orange juice" ], "title": "Key Largo OJ recipe", - "url": "http://www.drinksmixer.com/drink4667.html" + "url": "https://www.drinksmixer.com/drink4667.html" }, { "directions": "Pour ingredients into mixing cup filled with ice, shake and strain into glass.", @@ -38963,7 +38963,7 @@ "milk" ], "title": "Key Lime Pie recipe", - "url": "http://www.drinksmixer.com/drink4668.html" + "url": "https://www.drinksmixer.com/drink4668.html" }, { "directions": "Shake with ice and strain into 2 shot glasses. ", @@ -38975,7 +38975,7 @@ "half-and-half" ], "title": "Key Lime Shooter recipe", - "url": "http://www.drinksmixer.com/drink4669.html" + "url": "https://www.drinksmixer.com/drink4669.html" }, { "directions": "Mix vodka and sweet and sour mix proportionally in any size batch, then add sprite or 7-up and cranberry accordingly, a dash each per serving. Directions are for single, regular bar size servings.", @@ -38986,7 +38986,7 @@ "cranberry juice" ], "title": "Key West Lemonade recipe", - "url": "http://www.drinksmixer.com/drink4670.html" + "url": "https://www.drinksmixer.com/drink4670.html" }, { "directions": "Pour all ingredients into a highball glass over ice cubes and serve.", @@ -38995,7 +38995,7 @@ "banana juice" ], "title": "Kiba recipe", - "url": "http://www.drinksmixer.com/drink4671.html" + "url": "https://www.drinksmixer.com/drink4671.html" }, { "directions": "Combine in mixing tin with ice, shake and strain.", @@ -39006,7 +39006,7 @@ "Firewater\u00ae cinnamon schnapps" ], "title": "Kick Me in the Jimmy recipe", - "url": "http://www.drinksmixer.com/drink4672.html" + "url": "https://www.drinksmixer.com/drink4672.html" }, { "directions": "Pour shots and soda over ice in a mason jar or antique glass and experience a taste of the old west.", @@ -39015,7 +39015,7 @@ "Jagermeister\u00ae herbal liqueur" ], "title": "Kick Yer Ass Sas recipe", - "url": "http://www.drinksmixer.com/drink4673.html" + "url": "https://www.drinksmixer.com/drink4673.html" }, { "directions": "Pour amaretto and southern comfort into a highball glass, and layer kahlua and irish cream.", @@ -39026,7 +39026,7 @@ "Irish cream" ], "title": "Kickstand recipe", - "url": "http://www.drinksmixer.com/drink4674.html" + "url": "https://www.drinksmixer.com/drink4674.html" }, { "directions": "Build in a highball glass. Add 7-up or sprite over ice and sprinkle grenadine syrup over it. Garnish with a lemon slice and a cherry.", @@ -39035,7 +39035,7 @@ "grenadine syrup" ], "title": "Kiddie Cocktail recipe", - "url": "http://www.drinksmixer.com/drink4675.html" + "url": "https://www.drinksmixer.com/drink4675.html" }, { "directions": "Mix all ingredients in a hurricane glass.", @@ -39047,7 +39047,7 @@ "amaretto almond liqueur" ], "title": "Kill Me Now recipe", - "url": "http://www.drinksmixer.com/drink4676.html" + "url": "https://www.drinksmixer.com/drink4676.html" }, { "directions": "Pour both liquors into a shot glass.", @@ -39056,7 +39056,7 @@ "Barenjager\u00ae honey liqueur" ], "title": "Killer Bee recipe", - "url": "http://www.drinksmixer.com/drink4677.html" + "url": "https://www.drinksmixer.com/drink4677.html" }, { "directions": "Shake and strain, then pour into a collins glass filled with ice. Garnish with a flag, or a flag and a pineapple wedge, if carried by your bar.", @@ -39074,7 +39074,7 @@ "cranberry juice" ], "title": "Killer Kool-Aid #2 recipe", - "url": "http://www.drinksmixer.com/drink4678.html" + "url": "https://www.drinksmixer.com/drink4678.html" }, { "directions": "Pour equal parts into a mug/glass. Add the alcohol first, then add the cranberry juice last. This drink may be mixed/stirred, but it isn't required.", @@ -39087,7 +39087,7 @@ "cranberry juice" ], "title": "Killer Kool-Aid (Rhode Island) recipe", - "url": "http://www.drinksmixer.com/drink4679.html" + "url": "https://www.drinksmixer.com/drink4679.html" }, { "directions": "Highly dangerous mix - but taste it! You'll be surprised.", @@ -39099,7 +39099,7 @@ "7-Up\u00ae soda" ], "title": "Killing Light recipe", - "url": "http://www.drinksmixer.com/drink4680.html" + "url": "https://www.drinksmixer.com/drink4680.html" }, { "directions": "Layer ingredients in the above order into a shot glass.", @@ -39109,7 +39109,7 @@ "Drambuie\u00ae Scotch whisky" ], "title": "Kilted Black Leprechaun recipe", - "url": "http://www.drinksmixer.com/drink4681.html" + "url": "https://www.drinksmixer.com/drink4681.html" }, { "directions": "Shake gently and pour over ice in old-fashioned glass.", @@ -39119,7 +39119,7 @@ "Rose's\u00ae lime juice" ], "title": "Kiltlifter recipe", - "url": "http://www.drinksmixer.com/drink4682.html" + "url": "https://www.drinksmixer.com/drink4682.html" }, { "directions": "Build over ice in a tall glass and serve.", @@ -39130,7 +39130,7 @@ "cream" ], "title": "Kim Special recipe", - "url": "http://www.drinksmixer.com/drink4683.html" + "url": "https://www.drinksmixer.com/drink4683.html" }, { "directions": "Put in highball glass with ice and stir.", @@ -39140,7 +39140,7 @@ "grenadine syrup" ], "title": "Kinda Tasty recipe", - "url": "http://www.drinksmixer.com/drink4684.html" + "url": "https://www.drinksmixer.com/drink4684.html" }, { "directions": "Muddle orange slice, pineapple slice, and powdered sugar in an old-fashioned glass. Add blended whiskey and 2 ice cubes, stir well, and serve.", @@ -39151,7 +39151,7 @@ "powdered sugar" ], "title": "King Cole Cocktail recipe", - "url": "http://www.drinksmixer.com/drink4685.html" + "url": "https://www.drinksmixer.com/drink4685.html" }, { "directions": "Stir the pernod and black, and add several big ice cubes.", @@ -39161,7 +39161,7 @@ "water" ], "title": "King of Denmark recipe", - "url": "http://www.drinksmixer.com/drink4686.html" + "url": "https://www.drinksmixer.com/drink4686.html" }, { "directions": "Mix the two things together and serve. It is possible, but not necessary, to set the drink on fire as it is usually done with sambuca. In any case don't add any ice.", @@ -39170,7 +39170,7 @@ "grenadine syrup" ], "title": "The King Of Denmark recipe", - "url": "http://www.drinksmixer.com/drink4687.html" + "url": "https://www.drinksmixer.com/drink4687.html" }, { "directions": "Pour the scotch, add lemon juice, add crushed ice, then top off with the vodka. Serve in a highball glass, drink as a shot.", @@ -39181,7 +39181,7 @@ "crushed ice" ], "title": "King of Poland recipe", - "url": "http://www.drinksmixer.com/drink4688.html" + "url": "https://www.drinksmixer.com/drink4688.html" }, { "directions": "Pour the melon liqueur onto two ice cubes in a highball glass. Add a few drops of green curacao, and fill with 7-up or sprite. Pour a few drops of grenadine in a way that will look like its shaping a stripe down the drink.", @@ -39192,7 +39192,7 @@ "grenadine syrup" ], "title": "King Willy recipe", - "url": "http://www.drinksmixer.com/drink4689.html" + "url": "https://www.drinksmixer.com/drink4689.html" }, { "directions": "Stir, and add whipped cream to the top.", @@ -39202,7 +39202,7 @@ "coffee" ], "title": "Kioki Coffee recipe", - "url": "http://www.drinksmixer.com/drink4690.html" + "url": "https://www.drinksmixer.com/drink4690.html" }, { "directions": "Mix all ingredients in a mixing glass full of ice. Strain into a chilled cocktail glass. Garnish with twist of lemon.", @@ -39212,7 +39212,7 @@ "creme de cassis" ], "title": "Kir Martini recipe", - "url": "http://www.drinksmixer.com/drink4691.html" + "url": "https://www.drinksmixer.com/drink4691.html" }, { "directions": "Pour creme de cassis into a glass and gently pour champagne on top.", @@ -39221,7 +39221,7 @@ "Champagne" ], "title": "Kir Royale recipe", - "url": "http://www.drinksmixer.com/drink4692.html" + "url": "https://www.drinksmixer.com/drink4692.html" }, { "directions": "Combine ingredients in a large white wine glass. Twist the lemon peel to release the oil and drop it into the glass.", @@ -39232,7 +39232,7 @@ "lemon" ], "title": "Kir recipe", - "url": "http://www.drinksmixer.com/drink4693.html" + "url": "https://www.drinksmixer.com/drink4693.html" }, { "directions": "Mix the ingredients in a blender with ice, and strain into a cocktail glass. Tastes like a chocolate shake. Add an extra amount of bailey's to taste if desired.", @@ -39243,7 +39243,7 @@ "Kahlua\u00ae coffee liqueur" ], "title": "Kish Wacker recipe", - "url": "http://www.drinksmixer.com/drink4694.html" + "url": "https://www.drinksmixer.com/drink4694.html" }, { "directions": "Pour alcohols into a cocktail glass, add juices, then grenadine and cream, and garnish with a cherry or pineapple wedge.", @@ -39256,7 +39256,7 @@ "cream" ], "title": "Kiss From Rudy recipe", - "url": "http://www.drinksmixer.com/drink4695.html" + "url": "https://www.drinksmixer.com/drink4695.html" }, { "directions": "Mix in a highball glass.", @@ -39268,7 +39268,7 @@ "ice cubes" ], "title": "Kiss Me Quick recipe", - "url": "http://www.drinksmixer.com/drink4696.html" + "url": "https://www.drinksmixer.com/drink4696.html" }, { "directions": "Stir all ingredients with ice, strain into a cocktail glass, and serve.", @@ -39278,7 +39278,7 @@ "gin" ], "title": "Kiss in the Dark recipe", - "url": "http://www.drinksmixer.com/drink4697.html" + "url": "https://www.drinksmixer.com/drink4697.html" }, { "directions": "Mix in a highball glass. Stir. Garnish with a slice of kiwi.", @@ -39288,7 +39288,7 @@ "ice cubes" ], "title": "Kiwi Lemon recipe", - "url": "http://www.drinksmixer.com/drink4698.html" + "url": "https://www.drinksmixer.com/drink4698.html" }, { "directions": "Throw everything into a blender and liquify.", @@ -39297,7 +39297,7 @@ "papaya" ], "title": "Kiwi Papaya Smoothie recipe", - "url": "http://www.drinksmixer.com/drink4699.html" + "url": "https://www.drinksmixer.com/drink4699.html" }, { "directions": "Mix all three ingredients together. Shoot.", @@ -39307,7 +39307,7 @@ "cinnamon schnapps" ], "title": "Klingon Disrupter recipe", - "url": "http://www.drinksmixer.com/drink4700.html" + "url": "https://www.drinksmixer.com/drink4700.html" }, { "directions": "Mix powdered sugar and 2 oz. carbonated water in a collins glass. Fill glass with ice and add blended whiskey. Fill with carbonated water and stir. Add twist of lemon peel and orange spiral so that the end dangles over rim of glass.", @@ -39319,7 +39319,7 @@ "orange" ], "title": "Klondike Cooler recipe", - "url": "http://www.drinksmixer.com/drink4701.html" + "url": "https://www.drinksmixer.com/drink4701.html" }, { "directions": "Pour apfelkorn into a highball glass. Add peach juice and fill with iced tea.", @@ -39329,7 +39329,7 @@ "iced tea" ], "title": "Knacky recipe", - "url": "http://www.drinksmixer.com/drink4702.html" + "url": "https://www.drinksmixer.com/drink4702.html" }, { "directions": "Stir all ingredients (except lemon peel) with ice and strain into a cocktail glass. Add the twist of lemon peel and serve.", @@ -39340,7 +39340,7 @@ "lemon" ], "title": "Knickerbocker Cocktail recipe", - "url": "http://www.drinksmixer.com/drink4703.html" + "url": "https://www.drinksmixer.com/drink4703.html" }, { "directions": "Stir all ingredients (except cherry) with ice and strain into a cocktail glass. Top with the cherry and serve.", @@ -39352,7 +39352,7 @@ "cherry" ], "title": "Knockout Cocktail recipe", - "url": "http://www.drinksmixer.com/drink4704.html" + "url": "https://www.drinksmixer.com/drink4704.html" }, { "directions": "Pour all three together, and mix well.", @@ -39362,7 +39362,7 @@ "rum" ], "title": "Knockout Punch recipe", - "url": "http://www.drinksmixer.com/drink4705.html" + "url": "https://www.drinksmixer.com/drink4705.html" }, { "directions": "Layer. Peppermint schnapps first, then the kahlua on top.", @@ -39371,7 +39371,7 @@ "peppermint schnapps" ], "title": "Kokopa recipe", - "url": "http://www.drinksmixer.com/drink4706.html" + "url": "https://www.drinksmixer.com/drink4706.html" }, { "directions": "Mix first 6 ingredients in a pitcher. Fill highball glasses with ice. Pour the mixture over. Garnish with pineapple wedges, if desired.", @@ -39385,7 +39385,7 @@ "crushed ice" ], "title": "Kona Village Mai Tai recipe", - "url": "http://www.drinksmixer.com/drink4707.html" + "url": "https://www.drinksmixer.com/drink4707.html" }, { "directions": "Pour the cognac into the mug, and mix in the champagne.", @@ -39394,7 +39394,7 @@ "cognac" ], "title": "Kongepjolter recipe", - "url": "http://www.drinksmixer.com/drink4708.html" + "url": "https://www.drinksmixer.com/drink4708.html" }, { "directions": "Add kool aid to a double shot glass, and top with rum. Slam and shoot.", @@ -39403,7 +39403,7 @@ "Kool-Aid\u00ae Tropical Punch mix" ], "title": "Kool First Aid recipe", - "url": "http://www.drinksmixer.com/drink4709.html" + "url": "https://www.drinksmixer.com/drink4709.html" }, { "directions": "Shake all ingredients on ice and strain.", @@ -39414,7 +39414,7 @@ "grenadine syrup" ], "title": "Kool-Aid (Boulder Style) recipe", - "url": "http://www.drinksmixer.com/drink4710.html" + "url": "https://www.drinksmixer.com/drink4710.html" }, { "directions": "Just put all ingredients in a large glass with ice and shake it up. Add cranberry juice to taste.", @@ -39426,7 +39426,7 @@ "cranberry juice" ], "title": "Kool-Aid Shot recipe", - "url": "http://www.drinksmixer.com/drink4711.html" + "url": "https://www.drinksmixer.com/drink4711.html" }, { "directions": "Fill half a shot glass with the kool-aid. Put a paper towel over the top of the glass and slowly pour in the vodka. If you do it right, you should be able to see that the two liquids are separated, with the vodka on top. Now slam it! The last thing you'll taste is the kool-aid.", @@ -39435,7 +39435,7 @@ "vodka" ], "title": "Kool-Aid Slammer recipe", - "url": "http://www.drinksmixer.com/drink4712.html" + "url": "https://www.drinksmixer.com/drink4712.html" }, { "directions": "Place a few ice cubes into the glass, add the aftershock, then the kool-aid. Stir to mix. Serve in a highball glass.", @@ -39444,7 +39444,7 @@ "Kool-Aid\u00ae Cherry mix" ], "title": "KoolShock recipe", - "url": "http://www.drinksmixer.com/drink4713.html" + "url": "https://www.drinksmixer.com/drink4713.html" }, { "directions": "Pour in the ingredients. Add a dash of angostura on the cube, and place it in the champagne by using a tong.", @@ -39454,7 +39454,7 @@ "Angostura\u00ae bitters" ], "title": "Kordulas Special recipe", - "url": "http://www.drinksmixer.com/drink4714.html" + "url": "https://www.drinksmixer.com/drink4714.html" }, { "directions": "Blend all ingredients until smooth. If it gets too thick, add some cream. Top with whipped cream and a cherry.", @@ -39465,7 +39465,7 @@ "vanilla ice cream" ], "title": "Kori's Saturday Night Special recipe", - "url": "http://www.drinksmixer.com/drink4715.html" + "url": "https://www.drinksmixer.com/drink4715.html" }, { "directions": "Put rye malt and sugar in a bucket. Boil water and pour it in the bucket. Let the mixture cool down and drain filter it. Dissolve yeast in a bit of kotikalja and add it to kotikalja. Leave the bucket until next day in room temperature (20 C). Cool down the drink. Kotikalja stays drinkable 3-4 days stored in closed bucket or bottles in a cold place.", @@ -39476,7 +39476,7 @@ "yeast" ], "title": "Kotikalja recipe", - "url": "http://www.drinksmixer.com/drink4716.html" + "url": "https://www.drinksmixer.com/drink4716.html" }, { "directions": "In a shaker half-filled with ice cubes, combine the rum, anisette, cherry brandy and lemon juice. Shake well. Strain into a highball glass almost filled with ice cubes. Add the cola and stir well. Garnish with the lemon wedge.", @@ -39489,7 +39489,7 @@ "lemon" ], "title": "Krazee Keith recipe", - "url": "http://www.drinksmixer.com/drink4717.html" + "url": "https://www.drinksmixer.com/drink4717.html" }, { "directions": "Shake all ingredients with ice, strain into a cocktail glass, and serve.", @@ -39500,7 +39500,7 @@ "lemon juice" ], "title": "Kretchma Cocktail recipe", - "url": "http://www.drinksmixer.com/drink4718.html" + "url": "https://www.drinksmixer.com/drink4718.html" }, { "directions": "Mix all ingredients with cracked ice in a shaker or blender. Strain into a chilled cocktail glass.", @@ -39511,7 +39511,7 @@ "grenadine syrup" ], "title": "Kretchma recipe", - "url": "http://www.drinksmixer.com/drink4719.html" + "url": "https://www.drinksmixer.com/drink4719.html" }, { "directions": "Combine creme de almond and root beer schnapps in a shot glass. Layer the half-and-half on the top.", @@ -39521,7 +39521,7 @@ "half-and-half" ], "title": "Kris Kringle recipe", - "url": "http://www.drinksmixer.com/drink4720.html" + "url": "https://www.drinksmixer.com/drink4720.html" }, { "directions": "Place all ingredients in a shaker and shake well. Pour over ice in an old-fashioned glass.", @@ -39533,7 +39533,7 @@ "ice cubes" ], "title": "Kristi GreenEye recipe", - "url": "http://www.drinksmixer.com/drink4721.html" + "url": "https://www.drinksmixer.com/drink4721.html" }, { "directions": "Mix all ingredients in a cocktail glass. Add ice. If frozen drink is preferred, use more ice and mix in blender.", @@ -39546,7 +39546,7 @@ "ice cubes" ], "title": "The Kristy #2 recipe", - "url": "http://www.drinksmixer.com/drink4722.html" + "url": "https://www.drinksmixer.com/drink4722.html" }, { "directions": "Put all together in a glass and stir. May put ice cubes in after mixed, or put in blender to make frozen drink.", @@ -39558,7 +39558,7 @@ "ice cubes" ], "title": "The Kristy recipe", - "url": "http://www.drinksmixer.com/drink4723.html" + "url": "https://www.drinksmixer.com/drink4723.html" }, { "directions": "Put a couple ice cubes into a coffee mug then add juices and mix a great morning drink.", @@ -39569,7 +39569,7 @@ "lemon juice" ], "title": "The Kruzewski recipe", - "url": "http://www.drinksmixer.com/drink4724.html" + "url": "https://www.drinksmixer.com/drink4724.html" }, { "directions": "Shake ingredients in a mixing tin filled with ice. Strain into a highball glass.", @@ -39581,7 +39581,7 @@ "sweet and sour mix" ], "title": "Krypto Kami recipe", - "url": "http://www.drinksmixer.com/drink4725.html" + "url": "https://www.drinksmixer.com/drink4725.html" }, { "directions": "Mix the rum, maui, and pineapple juice together. Add ice, and enjoy.", @@ -39591,7 +39591,7 @@ "pineapple juice" ], "title": "Kryptonite Kooler recipe", - "url": "http://www.drinksmixer.com/drink4726.html" + "url": "https://www.drinksmixer.com/drink4726.html" }, { "directions": "Mix ingredients swiftly with a spork in either a irish coffee cup, or cappucino mug. Serve hot/warm.", @@ -39602,7 +39602,7 @@ "sugar" ], "title": "Kuoyamuli recipe", - "url": "http://www.drinksmixer.com/drink4727.html" + "url": "https://www.drinksmixer.com/drink4727.html" }, { "directions": "In a shaker half-filled with ice cubes, combine the absolut kurant, lemon juice, and sugar. Shake well. Strain into a collins glass almost filled with ice cubes. Add the club soda.", @@ -39613,7 +39613,7 @@ "club soda" ], "title": "Kurant Collins recipe", - "url": "http://www.drinksmixer.com/drink4728.html" + "url": "https://www.drinksmixer.com/drink4728.html" }, { "directions": "Pour absolut kurant into a glass and fill up with sprite and ice.", @@ -39622,7 +39622,7 @@ "Sprite\u00ae soda" ], "title": "Kurant Shot recipe", - "url": "http://www.drinksmixer.com/drink4729.html" + "url": "https://www.drinksmixer.com/drink4729.html" }, { "directions": "Pour absolut kurant into a comfortably big tea-cup. Add hot/very warm apple tea and, if you like, some sugar.", @@ -39632,7 +39632,7 @@ "sugar" ], "title": "Kurant Tea recipe", - "url": "http://www.drinksmixer.com/drink4730.html" + "url": "https://www.drinksmixer.com/drink4730.html" }, { "directions": "Put some ice cubes into a highball glass. Pour absolut kurant into the glass and fill up with schweppes russian. Serve with a straw.", @@ -39642,7 +39642,7 @@ "ice cubes" ], "title": "Kurant recipe", - "url": "http://www.drinksmixer.com/drink4731.html" + "url": "https://www.drinksmixer.com/drink4731.html" }, { "directions": "Pour vodka and curacao into a highball glass filled with ice. Fill it up with battery.", @@ -39652,7 +39652,7 @@ "Battery\u00ae energy drink" ], "title": "Kursk recipe", - "url": "http://www.drinksmixer.com/drink4732.html" + "url": "https://www.drinksmixer.com/drink4732.html" }, { "directions": "Put pineapple chunks in the blender and blend until smooth. Add vodka, rum, and enough ice to raise the level to five cups. Blend until the ice gets all smashed up. Pour into tall glasses, garnished with the cherries.", @@ -39664,7 +39664,7 @@ "maraschino cherries" ], "title": "L&C recipe", - "url": "http://www.drinksmixer.com/drink4733.html" + "url": "https://www.drinksmixer.com/drink4733.html" }, { "directions": "In a shaker half-filled with ice cubes, combine all of the ingredients. Shake well. Strain into an old-fashioned glass almost filled with ice cubes.", @@ -39674,7 +39674,7 @@ "pineapple juice" ], "title": "L'aird Of Summer Isle recipe", - "url": "http://www.drinksmixer.com/drink4734.html" + "url": "https://www.drinksmixer.com/drink4734.html" }, { "directions": "Layer into a shot glass.", @@ -39684,7 +39684,7 @@ "tequila" ], "title": "L.A.P.D. Nightshift recipe", - "url": "http://www.drinksmixer.com/drink4735.html" + "url": "https://www.drinksmixer.com/drink4735.html" }, { "directions": "Shake all ingredients (except grenadine) with ice 3 times. Pour into sugar rimmed cocktail glass. Add grenadine and garnish with a lime wheel.", @@ -39696,7 +39696,7 @@ "grenadine syrup" ], "title": "La Bomba recipe", - "url": "http://www.drinksmixer.com/drink4736.html" + "url": "https://www.drinksmixer.com/drink4736.html" }, { "directions": "Blend. Garnish with shaved chocolate.", @@ -39707,7 +39707,7 @@ "sugar syrup" ], "title": "La Cafe recipe", - "url": "http://www.drinksmixer.com/drink4737.html" + "url": "https://www.drinksmixer.com/drink4737.html" }, { "directions": "In a shaker half-filled with ice cubes, combine all of the ingredients. Shake well. Strain into a cocktail glass.", @@ -39718,7 +39718,7 @@ "lemon juice" ], "title": "La Jolla recipe", - "url": "http://www.drinksmixer.com/drink4738.html" + "url": "https://www.drinksmixer.com/drink4738.html" }, { "directions": "Empty the beers into a large container, add the lemons, tabasco and the salt, and mix in. Add the tequila and clamato, then swirl.", @@ -39731,7 +39731,7 @@ "salt" ], "title": "La Mamila recipe", - "url": "http://www.drinksmixer.com/drink4739.html" + "url": "https://www.drinksmixer.com/drink4739.html" }, { "directions": "In a shaker half-filled with ice cubes, combine all of the ingredients. Shake well. Strain into a cocktail glass.", @@ -39742,7 +39742,7 @@ "bitters" ], "title": "La Stephanique recipe", - "url": "http://www.drinksmixer.com/drink4740.html" + "url": "https://www.drinksmixer.com/drink4740.html" }, { "directions": "Pour into a cocktail glass and serve.", @@ -39754,7 +39754,7 @@ "Sprite\u00ae soda" ], "title": "Ladder recipe", - "url": "http://www.drinksmixer.com/drink4741.html" + "url": "https://www.drinksmixer.com/drink4741.html" }, { "directions": "Stir well with ice. Strain into glass. Serve with a piece of pineapple on top.", @@ -39765,7 +39765,7 @@ "bitters" ], "title": "Ladies Cocktail #2 recipe", - "url": "http://www.drinksmixer.com/drink4742.html" + "url": "https://www.drinksmixer.com/drink4742.html" }, { "directions": "Stir all ingredients (except pineapple) with ice and strain into a cocktail glass. Add the pineapple stick on top and serve.", @@ -39776,7 +39776,7 @@ "pineapple" ], "title": "Ladies Cocktail recipe", - "url": "http://www.drinksmixer.com/drink4743.html" + "url": "https://www.drinksmixer.com/drink4743.html" }, { "directions": "Shake well with ice. Strain into a chilled cocktail glass.", @@ -39787,7 +39787,7 @@ "brandy" ], "title": "Ladies Sidecar recipe", - "url": "http://www.drinksmixer.com/drink4744.html" + "url": "https://www.drinksmixer.com/drink4744.html" }, { "directions": "Shake all ingredients with ice, strain into a cocktail glass, and serve.", @@ -39797,7 +39797,7 @@ "sweet vermouth" ], "title": "Lady Be Good recipe", - "url": "http://www.drinksmixer.com/drink4745.html" + "url": "https://www.drinksmixer.com/drink4745.html" }, { "directions": "Shake all ingredients with ice, strain into a cocktail glass, and serve.", @@ -39807,7 +39807,7 @@ "Kirschwasser\u00ae cherry brandy" ], "title": "Lady Finger recipe", - "url": "http://www.drinksmixer.com/drink4746.html" + "url": "https://www.drinksmixer.com/drink4746.html" }, { "directions": "Shake sugar, triple sec, lime and lemon juice with ice. Strain into a highball glass and fill with brandy.", @@ -39820,7 +39820,7 @@ "ice" ], "title": "Lady Godiva recipe", - "url": "http://www.drinksmixer.com/drink4747.html" + "url": "https://www.drinksmixer.com/drink4747.html" }, { "directions": "Pour ingredients into a shot glass. Let stand for 30 seconds and slam it back.", @@ -39831,7 +39831,7 @@ "grenadine syrup" ], "title": "The Lady In Red recipe", - "url": "http://www.drinksmixer.com/drink4748.html" + "url": "https://www.drinksmixer.com/drink4748.html" }, { "directions": "Shake all ingredients (except carbonated water) with ice and strain into a cocktail glass over two ice cubes. Fill with carbonated water, stir, and serve.", @@ -39844,7 +39844,7 @@ "carbonated water" ], "title": "Lady Love Fizz recipe", - "url": "http://www.drinksmixer.com/drink4749.html" + "url": "https://www.drinksmixer.com/drink4749.html" }, { "directions": "Shake with 7-up and a splash of pineapple juice. Pour into a tall glass over crushed ice. Color the top with a splash of cherry syrup, and add a cherry for garnish.", @@ -39855,7 +39855,7 @@ "cherry syrup" ], "title": "Lady L recipe", - "url": "http://www.drinksmixer.com/drink4750.html" + "url": "https://www.drinksmixer.com/drink4750.html" }, { "directions": "Shake. Garnish with a cherry and lemon-peel.", @@ -39867,7 +39867,7 @@ "Monin bitter" ], "title": "Lady Scarlett recipe", - "url": "http://www.drinksmixer.com/drink4751.html" + "url": "https://www.drinksmixer.com/drink4751.html" }, { "directions": "Pour red wine and blue curacao in a punsch glass and fill up with boiling water. Garnish with orange slice.", @@ -39878,7 +39878,7 @@ "orange" ], "title": "Lady's Punsch recipe", - "url": "http://www.drinksmixer.com/drink4752.html" + "url": "https://www.drinksmixer.com/drink4752.html" }, { "directions": "Shake all ingredients with ice in shaker, strain into a champagne flute or longdrink glass over some ice cubes. Decorate with mint and a cherry.", @@ -39890,7 +39890,7 @@ "pineapple juice" ], "title": "Lady Killer recipe", - "url": "http://www.drinksmixer.com/drink4753.html" + "url": "https://www.drinksmixer.com/drink4753.html" }, { "directions": "Pour the beer in first, then add the lime juice. Because the lime juice is heavier than the beer, don't let it sit for a long time. For best results, use \"bar lime\" (out of the nozzle) instead of real lime juice.", @@ -39899,7 +39899,7 @@ "lime juice" ], "title": "Lager and Lime recipe", - "url": "http://www.drinksmixer.com/drink4754.html" + "url": "https://www.drinksmixer.com/drink4754.html" }, { "directions": "In a shaker half-filled with ice cubes, combine all of the ingredients. Shake well. Strain into a cocktail glass.", @@ -39909,7 +39909,7 @@ "pineapple juice" ], "title": "Lamb Brothers recipe", - "url": "http://www.drinksmixer.com/drink4755.html" + "url": "https://www.drinksmixer.com/drink4755.html" }, { "directions": "Shake all ingredients in a shaker with ice. Pour over crushed ice in a fancy glass.", @@ -39920,7 +39920,7 @@ "cherry juice" ], "title": "Lambada recipe", - "url": "http://www.drinksmixer.com/drink4756.html" + "url": "https://www.drinksmixer.com/drink4756.html" }, { "directions": "In a shaker half-filled with ice cubes, combine all of the ingredients. Shake well, and strain into a cocktail glass.", @@ -39930,7 +39930,7 @@ "heavy cream" ], "title": "Landed Gentry recipe", - "url": "http://www.drinksmixer.com/drink4757.html" + "url": "https://www.drinksmixer.com/drink4757.html" }, { "directions": "Pour vodka, ice, and cranberry juice into a cocktail glass. Fill with orange juice.", @@ -39941,7 +39941,7 @@ "orange juice" ], "title": "Lanette recipe", - "url": "http://www.drinksmixer.com/drink4758.html" + "url": "https://www.drinksmixer.com/drink4758.html" }, { "directions": "Pour passoa and grapefruit juice into a glass over ice cubes and fill with tonic water, stir, and serve.", @@ -39951,7 +39951,7 @@ "tonic water" ], "title": "Lani recipe", - "url": "http://www.drinksmixer.com/drink4759.html" + "url": "https://www.drinksmixer.com/drink4759.html" }, { "directions": "Combine the three liquors over ice, and top with vodka. Stir and serve.", @@ -39962,7 +39962,7 @@ "Absolut\u00ae vodka" ], "title": "Lara's Russian Qualude recipe", - "url": "http://www.drinksmixer.com/drink4760.html" + "url": "https://www.drinksmixer.com/drink4760.html" }, { "directions": "Combine all liquors in a collins glass filled with ice. Shake well. Garnish with an orange and a cherry.", @@ -39975,7 +39975,7 @@ "orange juice" ], "title": "Laser Beam recipe", - "url": "http://www.drinksmixer.com/drink4761.html" + "url": "https://www.drinksmixer.com/drink4761.html" }, { "directions": "Fill a tall glass with ice. Add vodka and amaretto. Fill the remainder of the glass with sprite or 7-up and serve.", @@ -39986,7 +39986,7 @@ "Sprite\u00ae soda" ], "title": "Lash recipe", - "url": "http://www.drinksmixer.com/drink4762.html" + "url": "https://www.drinksmixer.com/drink4762.html" }, { "directions": "Shake all ingredients with ice, strain into a cocktail glass, and serve.", @@ -39996,7 +39996,7 @@ "Swedish punsch" ], "title": "Lasky Cocktail recipe", - "url": "http://www.drinksmixer.com/drink4763.html" + "url": "https://www.drinksmixer.com/drink4763.html" }, { "directions": "Mix the black coffee with the ouzo (until you can't feel the ouzo taste anymore) and put a little blob of whipped cream on top. Drink and enjoy.", @@ -40006,7 +40006,7 @@ "whipped cream" ], "title": "Lasseman's Partysaver recipe", - "url": "http://www.drinksmixer.com/drink4764.html" + "url": "https://www.drinksmixer.com/drink4764.html" }, { "directions": "Blend in a blender for 3 seconds. Serve cold.\r", @@ -40018,7 +40018,7 @@ "mint" ], "title": "Lassi recipe", - "url": "http://www.drinksmixer.com/drink4765.html" + "url": "https://www.drinksmixer.com/drink4765.html" }, { "directions": "Add to a blender and pour over crushed ice. You can also use other fruits like strawberries and bananas.", @@ -40029,7 +40029,7 @@ "water" ], "title": "Lassi - Mango recipe", - "url": "http://www.drinksmixer.com/drink4766.html" + "url": "https://www.drinksmixer.com/drink4766.html" }, { "directions": "Mix all ingredients in a blender. Adjust ingredients to taste, ensuring the right amount of ice is added.", @@ -40042,7 +40042,7 @@ "rosewater" ], "title": "Lassi - Sweet #2 recipe", - "url": "http://www.drinksmixer.com/drink4767.html" + "url": "https://www.drinksmixer.com/drink4767.html" }, { "directions": "Mix ingredients in a blender until nice and frothy. Serve chilled.", @@ -40054,7 +40054,7 @@ "lemon juice" ], "title": "Lassi - Sweet recipe", - "url": "http://www.drinksmixer.com/drink4768.html" + "url": "https://www.drinksmixer.com/drink4768.html" }, { "directions": "Blend (frappe) in a blender until frothy. Add torn curry leaves and serve cold.", @@ -40065,7 +40065,7 @@ "asafoetida" ], "title": "Lassi Khara recipe", - "url": "http://www.drinksmixer.com/drink4769.html" + "url": "https://www.drinksmixer.com/drink4769.html" }, { "directions": "Blend the yoghurt and ice cubes together, until the yoghurt becomes more liquid. Add sugar to taste. The lemon/lime is optional but it gives it a slightly tart taste. Add a dash of salt. Raita is also good for the summer. Instead of having a traditional salad you can make raita instead.", @@ -40077,7 +40077,7 @@ "salt" ], "title": "Lassi Raita recipe", - "url": "http://www.drinksmixer.com/drink4770.html" + "url": "https://www.drinksmixer.com/drink4770.html" }, { "directions": "Pour ingredients into an ice-filled mixing glass and stir until well chilled. Strain into a chilled cocktail or martini glass, add the lemon and serve.", @@ -40088,7 +40088,7 @@ "bitters" ], "title": "Latin Manhattan recipe", - "url": "http://www.drinksmixer.com/drink4771.html" + "url": "https://www.drinksmixer.com/drink4771.html" }, { "directions": "Add banana, strawberries, pineapple, ice, and captain morgan's into a blender and mix until slushy. Pour into a glass, top with a cherry and an orange slice on the side of the glass.", @@ -40102,7 +40102,7 @@ "orange" ], "title": "Laura's Surprise recipe", - "url": "http://www.drinksmixer.com/drink4772.html" + "url": "https://www.drinksmixer.com/drink4772.html" }, { "directions": "Blend banana, coconut cream, and pineapple juice in a blender and set aside. In the bottom of a hurricane glass, stir together both rums and strawberries.\r", @@ -40115,7 +40115,7 @@ "coconut cream" ], "title": "Lava Flow recipe", - "url": "http://www.drinksmixer.com/drink4773.html" + "url": "https://www.drinksmixer.com/drink4773.html" }, { "directions": "In a shot glass, pour kahlua, strawberry liqueur and frangelico. Float bailey's irish cream on top of the other spirits and dribble 2-3 drops of advocaat on top.", @@ -40127,7 +40127,7 @@ "advocaat liqueur" ], "title": "Lava Lamp #2 recipe", - "url": "http://www.drinksmixer.com/drink4774.html" + "url": "https://www.drinksmixer.com/drink4774.html" }, { "directions": "Pour grenadine over ice in a highball glass. Add absolut citron, and fill with apple juice.", @@ -40137,7 +40137,7 @@ "grenadine syrup" ], "title": "Lava Lamp recipe", - "url": "http://www.drinksmixer.com/drink4775.html" + "url": "https://www.drinksmixer.com/drink4775.html" }, { "directions": "Add all three ingredients to a shot glass and serve.", @@ -40147,7 +40147,7 @@ "Tabasco\u00ae sauce" ], "title": "Lava Shot recipe", - "url": "http://www.drinksmixer.com/drink4776.html" + "url": "https://www.drinksmixer.com/drink4776.html" }, { "directions": "Stir all ingredients with ice, strain into a cocktail glass, and serve.", @@ -40159,7 +40159,7 @@ "bitters" ], "title": "Lawhill Cocktail recipe", - "url": "http://www.drinksmixer.com/drink4777.html" + "url": "https://www.drinksmixer.com/drink4777.html" }, { "directions": "Put the ice in a blender, pour the vodka over it, toss in the mint, and fill with limeade. Blend until smooth, adding sugar little by little until it's just right. More vodka may be added during blending as well.", @@ -40171,7 +40171,7 @@ "sugar" ], "title": "Lawn Boy recipe", - "url": "http://www.drinksmixer.com/drink4778.html" + "url": "https://www.drinksmixer.com/drink4778.html" }, { "directions": "Shake over ice, strain and pour into a shot glass.", @@ -40182,7 +40182,7 @@ "cream" ], "title": "Lay Down and Shut Up recipe", - "url": "http://www.drinksmixer.com/drink4779.html" + "url": "https://www.drinksmixer.com/drink4779.html" }, { "directions": "Add ice, mix, and serve.", @@ -40193,7 +40193,7 @@ "chocolate milk" ], "title": "Leah's Last Hope #2 recipe", - "url": "http://www.drinksmixer.com/drink4780.html" + "url": "https://www.drinksmixer.com/drink4780.html" }, { "directions": "Add ice, mix and serve.", @@ -40203,7 +40203,7 @@ "chocolate milk" ], "title": "Leah's Last Hope recipe", - "url": "http://www.drinksmixer.com/drink4781.html" + "url": "https://www.drinksmixer.com/drink4781.html" }, { "directions": "In a mixing glass half-filled with crushed ice, combine all of the ingredients. Stir well. Strain into a cocktail glass.", @@ -40214,7 +40214,7 @@ "crushed ice" ], "title": "Leaning Tower recipe", - "url": "http://www.drinksmixer.com/drink4782.html" + "url": "https://www.drinksmixer.com/drink4782.html" }, { "directions": "Pour gin and juice of lemon over ice cubes in a highball glass. Fill with ginger ale, stir, and serve.", @@ -40224,7 +40224,7 @@ "ginger ale" ], "title": "Leap Frog Highball recipe", - "url": "http://www.drinksmixer.com/drink4783.html" + "url": "https://www.drinksmixer.com/drink4783.html" }, { "directions": "Shake with cracked ice and strain into a chilled cocktail glass. Garnish with a lemon or orange twist.", @@ -40235,7 +40235,7 @@ "lemon juice" ], "title": "Leap Year recipe", - "url": "http://www.drinksmixer.com/drink4785.html" + "url": "https://www.drinksmixer.com/drink4785.html" }, { "directions": "Pour 1/4 to one inch tabasco sauce into a shot glass. Pour rum over the top and shoot.", @@ -40244,7 +40244,7 @@ "151 proof rum" ], "title": "Leatherneck recipe", - "url": "http://www.drinksmixer.com/drink4786.html" + "url": "https://www.drinksmixer.com/drink4786.html" }, { "directions": "Stir all ingredients with ice, strain into a cocktail glass, and serve.", @@ -40255,7 +40255,7 @@ "maraschino liqueur" ], "title": "Leave It To Me recipe", - "url": "http://www.drinksmixer.com/drink4787.html" + "url": "https://www.drinksmixer.com/drink4787.html" }, { "directions": "Place whole eggs, in shell, (organic would be preferable) in a jar. Cover with lemon/lime juice. Seal the jar and refrigerate. Leave the eggs to marinate for 2-3 weeks. The shells should become soft. Place the eggs and juice in a blender and blend until smooth. Strain to remove egg membranes. Add sugar and pisco to taste.", @@ -40266,7 +40266,7 @@ "pisco brandy" ], "title": "Leche de Monja recipe", - "url": "http://www.drinksmixer.com/drink4788.html" + "url": "https://www.drinksmixer.com/drink4788.html" }, { "directions": "Fill a glass 1/4 with coffee. Pour tia maria, frangelico and amaretto slowly, add whipped cream on top, and a cherry if desired. When drinking, stir gently if you like your coffee light. Drink from the bottom with a straw if you like it strong.", @@ -40279,7 +40279,7 @@ "cherry" ], "title": "Lee's Drink recipe", - "url": "http://www.drinksmixer.com/drink4789.html" + "url": "https://www.drinksmixer.com/drink4789.html" }, { "directions": "Fill 1/2 highball glass with ice, and add both liquors. Fill glass with milk or half-and-half.", @@ -40290,7 +40290,7 @@ "ice" ], "title": "LeFreak recipe", - "url": "http://www.drinksmixer.com/drink4790.html" + "url": "https://www.drinksmixer.com/drink4790.html" }, { "directions": "Mix in glass and enjoy.", @@ -40301,7 +40301,7 @@ "rum" ], "title": "Legspreader recipe", - "url": "http://www.drinksmixer.com/drink4791.html" + "url": "https://www.drinksmixer.com/drink4791.html" }, { "directions": "Shake gently with ice (the champagne will fizz). Strain into a martini glass.", @@ -40311,7 +40311,7 @@ "Champagne" ], "title": "Lemon Celebration recipe", - "url": "http://www.drinksmixer.com/drink4792.html" + "url": "https://www.drinksmixer.com/drink4792.html" }, { "directions": "Place sugar on lemon, place in mouth and take shot, then bite down on lemon.", @@ -40321,7 +40321,7 @@ "sugar" ], "title": "Lemon Drop #2 recipe", - "url": "http://www.drinksmixer.com/drink4793.html" + "url": "https://www.drinksmixer.com/drink4793.html" }, { "directions": "Mix equal parts absolut citron and sweet and sour mix over ice then strain into a shot glass. Sprinkle sugar on lemon slice. Drink shot, then suck the lemon.", @@ -40332,7 +40332,7 @@ "sugar" ], "title": "Lemon Drop #3 recipe", - "url": "http://www.drinksmixer.com/drink4794.html" + "url": "https://www.drinksmixer.com/drink4794.html" }, { "directions": "Fill a shot glass with rum. Dip lemon wedge in sugar, bite and hold the juice in your mouth. Shoot the rum and lick your lips.", @@ -40342,7 +40342,7 @@ "lemon" ], "title": "Lemon Drop #4 recipe", - "url": "http://www.drinksmixer.com/drink4795.html" + "url": "https://www.drinksmixer.com/drink4795.html" }, { "directions": "Pour over cracked ice, and strain into a cocktail glass with sugar around its rim.", @@ -40354,7 +40354,7 @@ "sugar" ], "title": "Lemon Drop #5 recipe", - "url": "http://www.drinksmixer.com/drink4796.html" + "url": "https://www.drinksmixer.com/drink4796.html" }, { "directions": "Put the vodka and cointreau into a shaker. Squeeze the lemon juice into the shaker. Put a good amount of ice in the shaker, close and shake until cold. \r", @@ -40366,7 +40366,7 @@ "sugar" ], "title": "Lemon Drop #6 recipe", - "url": "http://www.drinksmixer.com/drink4797.html" + "url": "https://www.drinksmixer.com/drink4797.html" }, { "directions": "Fill a mug half way with bacardi, then top off with lemon kool-aid or lemonade.", @@ -40375,7 +40375,7 @@ "lemonade" ], "title": "Lemon Drop #7 recipe", - "url": "http://www.drinksmixer.com/drink4798.html" + "url": "https://www.drinksmixer.com/drink4798.html" }, { "directions": "Pour into a scotch glass over ice. Stir. Garnish with a twist of lemon peel.", @@ -40385,7 +40385,7 @@ "Drambuie\u00ae Scotch whisky" ], "title": "Lemon Highlander recipe", - "url": "http://www.drinksmixer.com/drink4799.html" + "url": "https://www.drinksmixer.com/drink4799.html" }, { "directions": "Serve chilled straight or on the rocks.", @@ -40394,7 +40394,7 @@ "grappa brandy" ], "title": "Lemon Lift recipe", - "url": "http://www.drinksmixer.com/drink4800.html" + "url": "https://www.drinksmixer.com/drink4800.html" }, { "directions": "Add equal parts everclear and lemon juice to a shot glass. Place the shot into the freezer for 30 minutes to completely chill it. Drink it ice cold.", @@ -40403,7 +40403,7 @@ "lemon juice" ], "title": "Lemon Lightning recipe", - "url": "http://www.drinksmixer.com/drink4801.html" + "url": "https://www.drinksmixer.com/drink4801.html" }, { "directions": "Mix lemonade concentrate in a very large punch bowl. Add soda and frozen fruit. Open sherbet and dump the entire package of it into the punch (it will float on the top). Due to the frozen fruit and sherbet, there is really no need for ice until later, or unless it it very hot.", @@ -40415,7 +40415,7 @@ "water" ], "title": "Lemon Sherbert Punch recipe", - "url": "http://www.drinksmixer.com/drink4802.html" + "url": "https://www.drinksmixer.com/drink4802.html" }, { "directions": "Cover lemon slice with sugar. Shoot vodka, then suck lemon.", @@ -40424,7 +40424,7 @@ "lemon" ], "title": "Lemon Shooters recipe", - "url": "http://www.drinksmixer.com/drink4803.html" + "url": "https://www.drinksmixer.com/drink4803.html" }, { "directions": "Mix galliano and absolut citron in a shot glass, lay lemon wedge sprinkled with sugar over glass and pour rum over the wedge and glass. Ignite rum and allow to burn for a moment. Extinguish, shoot quickly, and suck on the lemon.\r", @@ -40436,7 +40436,7 @@ "Bacardi\u00ae 151 rum" ], "title": "Lemon Shot recipe", - "url": "http://www.drinksmixer.com/drink4804.html" + "url": "https://www.drinksmixer.com/drink4804.html" }, { "directions": "Mix vodka, amaretto, triple sec and a 1/2 squeeze of lemon wedge in a shaker with ice. Shake. Squeeze remaining lemon juice into martini glass. Pour mixture into glass. Garnish with a lemon twist.", @@ -40447,7 +40447,7 @@ "lemon" ], "title": "Lemon Splash Martini recipe", - "url": "http://www.drinksmixer.com/drink4805.html" + "url": "https://www.drinksmixer.com/drink4805.html" }, { "directions": "Mix lemon juice with sugar syrup in a highball glass, stir well and fill up with soda water. Serve with drinking straw.", @@ -40457,7 +40457,7 @@ "soda water" ], "title": "Lemon Squash recipe", - "url": "http://www.drinksmixer.com/drink4806.html" + "url": "https://www.drinksmixer.com/drink4806.html" }, { "directions": "Shake together, stirring bruises the vodka.", @@ -40467,7 +40467,7 @@ "lemon" ], "title": "Lemon Twister recipe", - "url": "http://www.drinksmixer.com/drink4807.html" + "url": "https://www.drinksmixer.com/drink4807.html" }, { "directions": "Juice the lemons. Peel and grate the ginger. Place the grated ginger and a liberal dash of the cayenne pepper into a piece of cheesecloth, and tie it into a knot. Let soak in the water. After 15 minutes or so, add the sugar, and the lemon juice. Chill, and serve.", @@ -40479,7 +40479,7 @@ "cayenne pepper" ], "title": "Lemouroudji recipe", - "url": "http://www.drinksmixer.com/drink4808.html" + "url": "https://www.drinksmixer.com/drink4808.html" }, { "directions": "Pour pear brandy over ice in a highball glass. Fill with ginger ale. Add a slice of lime.", @@ -40490,7 +40490,7 @@ "lime" ], "title": "Lennart #2 recipe", - "url": "http://www.drinksmixer.com/drink4809.html" + "url": "https://www.drinksmixer.com/drink4809.html" }, { "directions": "Pour pear brandy and lime juice over ice in a glass. Fill with sprite.", @@ -40501,7 +40501,7 @@ "ice cubes" ], "title": "Lennart recipe", - "url": "http://www.drinksmixer.com/drink4810.html" + "url": "https://www.drinksmixer.com/drink4810.html" }, { "directions": "Pour half a shot of irish cream into a shot glass and fill the remaining part with goldschlager.", @@ -40510,7 +40510,7 @@ "Irish cream" ], "title": "Leprechaun's Gold recipe", - "url": "http://www.drinksmixer.com/drink4811.html" + "url": "https://www.drinksmixer.com/drink4811.html" }, { "directions": "Pour zima into a frozen pilsner. Add a shot of coconut rum and enjoy.", @@ -40519,7 +40519,7 @@ "Captain Morgan\u00ae Parrot Bay coconut rum" ], "title": "Lesbian Lover recipe", - "url": "http://www.drinksmixer.com/drink4812.html" + "url": "https://www.drinksmixer.com/drink4812.html" }, { "directions": "Pour in order, and stir.", @@ -40530,7 +40530,7 @@ "milk" ], "title": "Less Than Jake On The Rocks recipe", - "url": "http://www.drinksmixer.com/drink4813.html" + "url": "https://www.drinksmixer.com/drink4813.html" }, { "directions": "Combine all ingredients into a tall glass and serve with ice. As an option, use two cans of mountain dew if the drink seems too strong for you.", @@ -40541,7 +40541,7 @@ "triple sec" ], "title": "Lethal Weapon recipe", - "url": "http://www.drinksmixer.com/drink4814.html" + "url": "https://www.drinksmixer.com/drink4814.html" }, { "directions": "Combine all ingredients, pour over ice, and enjoy.", @@ -40553,7 +40553,7 @@ "milk" ], "title": "Letitia's Penisbutter Cup recipe", - "url": "http://www.drinksmixer.com/drink4815.html" + "url": "https://www.drinksmixer.com/drink4815.html" }, { "directions": "Layer in order.", @@ -40562,7 +40562,7 @@ "cream" ], "title": "Lewd Lewinsky recipe", - "url": "http://www.drinksmixer.com/drink4816.html" + "url": "https://www.drinksmixer.com/drink4816.html" }, { "directions": "Fill a pilsner glass with ice. Add rum, amaretto and orange juice. Shake. Top with a splash of grenadine. Adjust rum and amaretto to taste.", @@ -40574,7 +40574,7 @@ "grenadine syrup" ], "title": "Lewie recipe", - "url": "http://www.drinksmixer.com/drink4817.html" + "url": "https://www.drinksmixer.com/drink4817.html" }, { "directions": "Pour together into a shot glass and serve.", @@ -40584,7 +40584,7 @@ "peppermint schnapps" ], "title": "Lewinsky recipe", - "url": "http://www.drinksmixer.com/drink4818.html" + "url": "https://www.drinksmixer.com/drink4818.html" }, { "directions": "Pour in the kahlua, layer the milk on top, and the bacardi 151 on top of the milk. Ignite, let burn for about 10 seconds, blow out and shoot.", @@ -40594,7 +40594,7 @@ "Bacardi\u00ae 151 rum" ], "title": "Liberace recipe", - "url": "http://www.drinksmixer.com/drink4819.html" + "url": "https://www.drinksmixer.com/drink4819.html" }, { "directions": "Shake first 4 ingredients over ice and strain into a sugar rimmed champagne flute. Fill with champagne.", @@ -40605,7 +40605,7 @@ "Blue Curacao liqueur" ], "title": "Liberty Blue Champagne recipe", - "url": "http://www.drinksmixer.com/drink4820.html" + "url": "https://www.drinksmixer.com/drink4820.html" }, { "directions": "Place liquors and juice into a shaker and mix well. Serve in a rocks glass.", @@ -40615,7 +40615,7 @@ "pineapple juice" ], "title": "Lifesaver recipe", - "url": "http://www.drinksmixer.com/drink4821.html" + "url": "https://www.drinksmixer.com/drink4821.html" }, { "directions": "Add rums, sour mix and ice to a shaker and shake. Pour into a whiskey sour glass or 10 oz. goblet. Garnish with a lime wedge.", @@ -40626,7 +40626,7 @@ "crushed ice" ], "title": "Light and Dark recipe", - "url": "http://www.drinksmixer.com/drink4822.html" + "url": "https://www.drinksmixer.com/drink4822.html" }, { "directions": "Shake the vodka, green menthe, and baileys over ice in a mixing tin. Strain into a sherry glass. Carefully pour a drop of grenadine down the inside of the glass.", @@ -40637,7 +40637,7 @@ "grenadine syrup" ], "title": "Light Green Panties recipe", - "url": "http://www.drinksmixer.com/drink4823.html" + "url": "https://www.drinksmixer.com/drink4823.html" }, { "directions": "Dissolve the sugar in the apple juice. Add pineapple (you can also add the liquid from the pineapple tin). Peel and cut the apple. Mix all the ingredients except the ale and the ice which you add before serving.", @@ -40651,7 +40651,7 @@ "ice cubes" ], "title": "Light Sangria With Pineapple recipe", - "url": "http://www.drinksmixer.com/drink4824.html" + "url": "https://www.drinksmixer.com/drink4824.html" }, { "directions": "Pour kahlua into a shot glass. With a spoon, slowly pour irish cream into the shot glass on top of the kahlua. Pour the 151 rum, again with the spoon, slowly on top of the irish cream and light on fire. Blow flame out before drinking.", @@ -40661,7 +40661,7 @@ "151 proof rum" ], "title": "Lighthouse recipe", - "url": "http://www.drinksmixer.com/drink4825.html" + "url": "https://www.drinksmixer.com/drink4825.html" }, { "directions": "Combine vodka and curacao in a collins glass over ice. Fill with orange juice. Stir and serve.", @@ -40672,7 +40672,7 @@ "ice" ], "title": "Wa-Hoo-Wa recipe", - "url": "http://www.drinksmixer.com/drink4826.html" + "url": "https://www.drinksmixer.com/drink4826.html" }, { "directions": "In a shaker over ice combine the ingredients, pour into a salt rimmed martini glass and garnish with a slice of lime.", @@ -40683,7 +40683,7 @@ "ice" ], "title": "Waborita recipe", - "url": "http://www.drinksmixer.com/drink4827.html" + "url": "https://www.drinksmixer.com/drink4827.html" }, { "directions": "Serve in a shot glass. Adjust amounts to taste if desired.", @@ -40693,7 +40693,7 @@ "sweet and sour mix" ], "title": "Rattlesnake Shot recipe", - "url": "http://www.drinksmixer.com/drink4828.html" + "url": "https://www.drinksmixer.com/drink4828.html" }, { "directions": "Shake all ingredients (except cinnamon) with ice and strain into a red wine glass. Sprinkle cinnamon on top and serve.", @@ -40706,7 +40706,7 @@ "cinnamon" ], "title": "Lil Naue recipe", - "url": "http://www.drinksmixer.com/drink4829.html" + "url": "https://www.drinksmixer.com/drink4829.html" }, { "directions": "Mix and serve.", @@ -40716,7 +40716,7 @@ "Rose's\u00ae lime juice" ], "title": "Lil' Johnson recipe", - "url": "http://www.drinksmixer.com/drink4830.html" + "url": "https://www.drinksmixer.com/drink4830.html" }, { "directions": "Pour the shochu and lime juice over ice. Stir, and fill the glass with soda water.", @@ -40726,7 +40726,7 @@ "soda water" ], "title": "Lime Chu-Hai recipe", - "url": "http://www.drinksmixer.com/drink4831.html" + "url": "https://www.drinksmixer.com/drink4831.html" }, { "directions": "Pour vodka into a shot glass and mix in the other ingredients. Count to three and drink.", @@ -40737,7 +40737,7 @@ "grenadine syrup" ], "title": "Lime Lizard recipe", - "url": "http://www.drinksmixer.com/drink4832.html" + "url": "https://www.drinksmixer.com/drink4832.html" }, { "directions": "Pour the beer into a pint glass. Add the lime juice and the hooch. Stir with a spoon.", @@ -40747,7 +40747,7 @@ "Hooper's\u00ae Hooch" ], "title": "Lime Time recipe", - "url": "http://www.drinksmixer.com/drink4833.html" + "url": "https://www.drinksmixer.com/drink4833.html" }, { "directions": "Fill a collins glass 3/4 full with ice cubes. Add vodka, lemon juice and sugar. Top with club soda.", @@ -40759,7 +40759,7 @@ "ice cubes" ], "title": "Lime Vodka Collins recipe", - "url": "http://www.drinksmixer.com/drink4834.html" + "url": "https://www.drinksmixer.com/drink4834.html" }, { "directions": "Stir well with ice cubes and strain into a cocktail glass.", @@ -40769,7 +40769,7 @@ "grapefruit juice" ], "title": "Limelight recipe", - "url": "http://www.drinksmixer.com/drink4835.html" + "url": "https://www.drinksmixer.com/drink4835.html" }, { "directions": "Mix all liquids then fill with ice. Finally cap with powdered sugar.", @@ -40781,7 +40781,7 @@ "crushed ice" ], "title": "Limelon recipe", - "url": "http://www.drinksmixer.com/drink4836.html" + "url": "https://www.drinksmixer.com/drink4836.html" }, { "directions": "Squeeze the 8 parts of a lime and the brown sugar with a wooden muddler, fill up with apple juice and crushed ice.", @@ -40792,7 +40792,7 @@ "crushed ice" ], "title": "LimLer recipe", - "url": "http://www.drinksmixer.com/drink4837.html" + "url": "https://www.drinksmixer.com/drink4837.html" }, { "directions": "Fill a whiskey sour glass with ice. Add one shot bacardi limon, and fill with sunny delight or orange juice.", @@ -40801,7 +40801,7 @@ "Sunny Delight\u00ae orange juice" ], "title": "Limon Delight recipe", - "url": "http://www.drinksmixer.com/drink4838.html" + "url": "https://www.drinksmixer.com/drink4838.html" }, { "directions": "Open the corona. Fill the empty space in the neck in the bottle with the rum. The bottle should be filled to the top. Plug the bottle with your thumb or the palm of your hand. Turn the bottle upside-down so the rum and beer mix. Turn the bottle rightside-up, unplug, and drink.", @@ -40810,7 +40810,7 @@ "Bacardi\u00ae Limon rum" ], "title": "Limona Corona recipe", - "url": "http://www.drinksmixer.com/drink4839.html" + "url": "https://www.drinksmixer.com/drink4839.html" }, { "directions": "Take a tall or short glass and fill with ice. Mix in the bacardi and the lemonade in equal parts.", @@ -40819,7 +40819,7 @@ "lemonade" ], "title": "Limonaide recipe", - "url": "http://www.drinksmixer.com/drink4840.html" + "url": "https://www.drinksmixer.com/drink4840.html" }, { "directions": "Soak skin of 7 lemons in alcohol for 2 days. Strain. Boil water and sugar and chill. Mix with alcohol. Store in the fridge.", @@ -40830,7 +40830,7 @@ "sugar" ], "title": "Limoncello Liqueur recipe", - "url": "http://www.drinksmixer.com/drink4841.html" + "url": "https://www.drinksmixer.com/drink4841.html" }, { "directions": "Get a empty gallon container. Then put in the 3/4 gallons of water. Put the two cases of crystal light and add the rum. Mix.", @@ -40840,7 +40840,7 @@ "white rum" ], "title": "Limoncillo recipe", - "url": "http://www.drinksmixer.com/drink4842.html" + "url": "https://www.drinksmixer.com/drink4842.html" }, { "directions": "Mix everything together in a hightumbler glass and serve.", @@ -40852,7 +40852,7 @@ "ice cubes" ], "title": "Lina recipe", - "url": "http://www.drinksmixer.com/drink4843.html" + "url": "https://www.drinksmixer.com/drink4843.html" }, { "directions": "Put the 2 shots of jaigermister into the bottom of a tall beer mug and pour in the surge.", @@ -40861,7 +40861,7 @@ "Jagermeister\u00ae herbal liqueur" ], "title": "The Lindy recipe", - "url": "http://www.drinksmixer.com/drink4844.html" + "url": "https://www.drinksmixer.com/drink4844.html" }, { "directions": "Select a large container (at least 5 gallons) that can dispense the drink. Simply mix at will, add the ice on top, and go.", @@ -40876,7 +40876,7 @@ "ice" ], "title": "Linfield's Spare Part Punch recipe", - "url": "http://www.drinksmixer.com/drink4845.html" + "url": "https://www.drinksmixer.com/drink4845.html" }, { "directions": "Shake all ingredients with ice, strain into a cocktail glass, and serve.", @@ -40888,7 +40888,7 @@ "lemon juice" ], "title": "Linstead Cocktail recipe", - "url": "http://www.drinksmixer.com/drink4846.html" + "url": "https://www.drinksmixer.com/drink4846.html" }, { "directions": "Mix southern comfort and lime juice into a martini glass. Top off with a pinch of powdered sugar. Add a large ice cube. Serve.", @@ -40898,7 +40898,7 @@ "powdered sugar" ], "title": "Lion Tamer recipe", - "url": "http://www.drinksmixer.com/drink4847.html" + "url": "https://www.drinksmixer.com/drink4847.html" }, { "directions": "Mix creme de cacoa, creme de menthe, midori, kahlua and ice into a shaker. Give a small shake, then add milk and shake well to foam up milk.", @@ -40911,7 +40911,7 @@ "milk" ], "title": "Liqiud Mintaero recipe", - "url": "http://www.drinksmixer.com/drink4848.html" + "url": "https://www.drinksmixer.com/drink4848.html" }, { "directions": "Pour the creme de menthe into a highball glass. Fill the glass with cold chocolate-milk.", @@ -40920,7 +40920,7 @@ "chocolate milk" ], "title": "Liquid After-Eight recipe", - "url": "http://www.drinksmixer.com/drink4849.html" + "url": "https://www.drinksmixer.com/drink4849.html" }, { "directions": "Layer jagermeister on top of sambuca and serve in a shot glass.", @@ -40929,7 +40929,7 @@ "Jagermeister\u00ae herbal liqueur" ], "title": "Liquid Asphault recipe", - "url": "http://www.drinksmixer.com/drink4850.html" + "url": "https://www.drinksmixer.com/drink4850.html" }, { "directions": "Stir all ingredients into a glass.", @@ -40939,7 +40939,7 @@ "cola" ], "title": "Liquid Bubble Gum recipe", - "url": "http://www.drinksmixer.com/drink4851.html" + "url": "https://www.drinksmixer.com/drink4851.html" }, { "directions": "Combine 4 alcohols and pineapple juice into a cocktail mixer with ice. Shake well. Strain into a shot glass and serve.", @@ -40951,7 +40951,7 @@ "pineapple juice" ], "title": "Liquid Cocaine #2 recipe", - "url": "http://www.drinksmixer.com/drink4852.html" + "url": "https://www.drinksmixer.com/drink4852.html" }, { "directions": "Chill over ice and pour.", @@ -40961,7 +40961,7 @@ "Rumple Minze\u00ae peppermint liqueur" ], "title": "Liquid Cocaine #3 recipe", - "url": "http://www.drinksmixer.com/drink4853.html" + "url": "https://www.drinksmixer.com/drink4853.html" }, { "directions": "Mix all ingredients into a shot glass. Shoot it all at once.", @@ -40973,7 +40973,7 @@ "Everclear\u00ae alcohol" ], "title": "Liquid Cocaine #4 recipe", - "url": "http://www.drinksmixer.com/drink4854.html" + "url": "https://www.drinksmixer.com/drink4854.html" }, { "directions": "Mix the alcohol in an 8-12oz glass. Cover and shake for about 3 seconds. Mix the juices together in a glass of your choice, add ice for character, and pour in alcohol. Serve chilled.", @@ -40986,7 +40986,7 @@ "guava juice" ], "title": "Liquid Cocaine #5 recipe", - "url": "http://www.drinksmixer.com/drink4855.html" + "url": "https://www.drinksmixer.com/drink4855.html" }, { "directions": "Mix together in a champagne flute and drink.", @@ -40996,7 +40996,7 @@ "Red Bull\u00ae energy drink" ], "title": "Liquid Cocaine #6 recipe", - "url": "http://www.drinksmixer.com/drink4856.html" + "url": "https://www.drinksmixer.com/drink4856.html" }, { "directions": "Mix together and wait for the effects.", @@ -41008,7 +41008,7 @@ "grenadine syrup" ], "title": "Liquid Cocaine 8-Ball recipe", - "url": "http://www.drinksmixer.com/drink4857.html" + "url": "https://www.drinksmixer.com/drink4857.html" }, { "directions": "Add all ingredients to a blender and liquify until shake-like consistancy. Serve in beer mugs.", @@ -41020,7 +41020,7 @@ "Bacardi\u00ae white rum" ], "title": "Liquid Courage recipe", - "url": "http://www.drinksmixer.com/drink4858.html" + "url": "https://www.drinksmixer.com/drink4858.html" }, { "directions": "Pour ingredients in equal parts into a shot glass and serve.", @@ -41030,7 +41030,7 @@ "Goldschlager\u00ae cinnamon schnapps" ], "title": "Liquid Crack recipe", - "url": "http://www.drinksmixer.com/drink4859.html" + "url": "https://www.drinksmixer.com/drink4859.html" }, { "directions": "Build bacardi, midori, blue curacao, lemon juice and pineapple juice in that order over ice in a highball glass, or shake and strain into a martini glass. Add a slice of lemon to either the highball glass or the rim of the martini glass. Serve with two straws.", @@ -41042,7 +41042,7 @@ "pineapple juice" ], "title": "Liquid Ecstasy recipe", - "url": "http://www.drinksmixer.com/drink4860.html" + "url": "https://www.drinksmixer.com/drink4860.html" }, { "directions": "Mix rumple minze and jagermeister in an iced shaker and strain into a shot glass.", @@ -41051,7 +41051,7 @@ "Jagermeister\u00ae herbal liqueur" ], "title": "Liquid Heroine recipe", - "url": "http://www.drinksmixer.com/drink4861.html" + "url": "https://www.drinksmixer.com/drink4861.html" }, { "directions": "Mix kool-aid according to instructions. Fill a hurricane glass with ice. Pour in citrus vodka. Add kool-aid until glass is full.", @@ -41060,7 +41060,7 @@ "Kool-Aid\u00ae Black Cherry mix" ], "title": "Liquid Jello recipe", - "url": "http://www.drinksmixer.com/drink4862.html" + "url": "https://www.drinksmixer.com/drink4862.html" }, { "directions": "Add all ingredients to a cordial glass. Enjoy.", @@ -41070,7 +41070,7 @@ "vanilla liqueur" ], "title": "Liquid Rocher recipe", - "url": "http://www.drinksmixer.com/drink4863.html" + "url": "https://www.drinksmixer.com/drink4863.html" }, { "directions": "Add marshmallow to a shot glass, pour over vodka and add red food coloring. Mix it together with a wire whisk.", @@ -41080,7 +41080,7 @@ "food coloring" ], "title": "Liquid Sex recipe", - "url": "http://www.drinksmixer.com/drink4864.html" + "url": "https://www.drinksmixer.com/drink4864.html" }, { "directions": "Pour creme de cacao, irish cream and frangelico liqueur over ice cubes in an old-fashioned glass. Top with light cream, stir and serve.", @@ -41091,7 +41091,7 @@ "light cream" ], "title": "Liquid Snickers recipe", - "url": "http://www.drinksmixer.com/drink4865.html" + "url": "https://www.drinksmixer.com/drink4865.html" }, { "directions": "Mix liquors in a tall glass with ice and fill with orange juice.", @@ -41101,7 +41101,7 @@ "orange juice" ], "title": "Liquid Sword recipe", - "url": "http://www.drinksmixer.com/drink4866.html" + "url": "https://www.drinksmixer.com/drink4866.html" }, { "directions": "Fill a hurricane glass with ice, pour liquors and fill with equal parts orange and cranberry juice. Shake and serve with an orange and cherry garnish.", @@ -41113,7 +41113,7 @@ "cranberry juice" ], "title": "Liquid Valium recipe", - "url": "http://www.drinksmixer.com/drink4867.html" + "url": "https://www.drinksmixer.com/drink4867.html" }, { "directions": "Pour Licor 43 into a shot glass. Layer cream slowly on top so that it resembles the 'head' on a beer.", @@ -41122,7 +41122,7 @@ "cream" ], "title": "Little Beer recipe", - "url": "http://www.drinksmixer.com/drink4868.html" + "url": "https://www.drinksmixer.com/drink4868.html" }, { "directions": "Pour into shot glass and serve.", @@ -41131,7 +41131,7 @@ "dark rum" ], "title": "Little Black Devil recipe", - "url": "http://www.drinksmixer.com/drink4869.html" + "url": "https://www.drinksmixer.com/drink4869.html" }, { "directions": "Pour all the ingredients into blender. If preferred add an ice cube. Mix thoroughly and pour into an old-fashioned glass.", @@ -41142,7 +41142,7 @@ "vanilla extract" ], "title": "Little Brother recipe", - "url": "http://www.drinksmixer.com/drink4870.html" + "url": "https://www.drinksmixer.com/drink4870.html" }, { "directions": "Prepare lemon-lime mix in a large pitcher or punch bowl and add the other ingredients. Pour over ice into hurricane glasses.", @@ -41153,7 +41153,7 @@ "Malibu\u00ae coconut rum" ], "title": "Little Green Frog recipe", - "url": "http://www.drinksmixer.com/drink4871.html" + "url": "https://www.drinksmixer.com/drink4871.html" }, { "directions": "In a mixing glass half-filled with ice cubes, combine both of the ingredients. Stir well. Strain into a cocktail glass and serve.", @@ -41162,7 +41162,7 @@ "sweet vermouth" ], "title": "Little Princess Cocktail recipe", - "url": "http://www.drinksmixer.com/drink4872.html" + "url": "https://www.drinksmixer.com/drink4872.html" }, { "directions": "Pour over ice. Stir, dont shake.", @@ -41178,7 +41178,7 @@ "sweet and sour mix" ], "title": "The Liver Transplant recipe", - "url": "http://www.drinksmixer.com/drink4873.html" + "url": "https://www.drinksmixer.com/drink4873.html" }, { "directions": "Mix ingredients over ice and stir, add an optional lime.", @@ -41188,7 +41188,7 @@ "tonic water" ], "title": "Livingston recipe", - "url": "http://www.drinksmixer.com/drink4874.html" + "url": "https://www.drinksmixer.com/drink4874.html" }, { "directions": "Pour into a shot glass and shoot it back.", @@ -41197,7 +41197,7 @@ "Grand Marnier\u00ae orange liqueur" ], "title": "Lloyd Special recipe", - "url": "http://www.drinksmixer.com/drink4875.html" + "url": "https://www.drinksmixer.com/drink4875.html" }, { "directions": "In a mixing glass half-filled with ice cubes, combine the scotch, drambuie, and vermouth. Stir well. Strain into a cocktail glass. Garnish with a lemon twist.", @@ -41208,7 +41208,7 @@ "lemon" ], "title": "Loch Lomond recipe", - "url": "http://www.drinksmixer.com/drink4876.html" + "url": "https://www.drinksmixer.com/drink4876.html" }, { "directions": "Layer into a glass in the above order.", @@ -41218,7 +41218,7 @@ "Jagermeister\u00ae herbal liqueur" ], "title": "Loch Ness Monster recipe", - "url": "http://www.drinksmixer.com/drink4877.html" + "url": "https://www.drinksmixer.com/drink4877.html" }, { "directions": "Pour the ingredients into a normal drink glass with a few ice-cubes. Stir.", @@ -41227,7 +41227,7 @@ "rum" ], "title": "Lombomba recipe", - "url": "http://www.drinksmixer.com/drink4878.html" + "url": "https://www.drinksmixer.com/drink4878.html" }, { "directions": "Stir all ingredients (except lemon peel) with ice and strain into a highball glass. Add the twist of lemon peel and serve.", @@ -41239,7 +41239,7 @@ "lemon" ], "title": "London Buck recipe", - "url": "http://www.drinksmixer.com/drink4879.html" + "url": "https://www.drinksmixer.com/drink4879.html" }, { "directions": "Frappe in a highball glass.", @@ -41248,7 +41248,7 @@ "Deva\u00ae absinthe" ], "title": "London Fog #2 recipe", - "url": "http://www.drinksmixer.com/drink4880.html" + "url": "https://www.drinksmixer.com/drink4880.html" }, { "directions": "Shake gin and pernod with cracked ice. Strain into a red wine glass packed with shaved ice.", @@ -41258,7 +41258,7 @@ "ice" ], "title": "London Fog recipe", - "url": "http://www.drinksmixer.com/drink4881.html" + "url": "https://www.drinksmixer.com/drink4881.html" }, { "directions": "In a mixing glass half-filled with ice cubes, combine all of the ingredients. Stir well. Strain into a cocktail glass.", @@ -41268,7 +41268,7 @@ "orange bitters" ], "title": "London Town recipe", - "url": "http://www.drinksmixer.com/drink4882.html" + "url": "https://www.drinksmixer.com/drink4882.html" }, { "directions": "Stir ingredients with ice, strain into a cocktail glass, and serve.", @@ -41277,7 +41277,7 @@ "gin" ], "title": "Lone Tree Cocktail recipe", - "url": "http://www.drinksmixer.com/drink4883.html" + "url": "https://www.drinksmixer.com/drink4883.html" }, { "directions": "Stir powdered sugar and 2 oz. carbonated water in a collins glass. Fill with ice, add gin and vermouth, and stir. Fill with carbonated water and stir again. \r", @@ -41290,7 +41290,7 @@ "carbonated water" ], "title": "Lone Tree Cooler recipe", - "url": "http://www.drinksmixer.com/drink4884.html" + "url": "https://www.drinksmixer.com/drink4884.html" }, { "directions": "Garnish with fresh lime cuts.", @@ -41304,7 +41304,7 @@ "ice cubes" ], "title": "Long Beach Ice Tea recipe", - "url": "http://www.drinksmixer.com/drink4885.html" + "url": "https://www.drinksmixer.com/drink4885.html" }, { "directions": "In a tall glass, pour shots over ice and top off with cranberry juice and lemon wedge (squeeze if you like). Give the drink a little shake (if you like) and drink up!", @@ -41319,7 +41319,7 @@ "lemon" ], "title": "Long Beach Iced Tea recipe", - "url": "http://www.drinksmixer.com/drink4886.html" + "url": "https://www.drinksmixer.com/drink4886.html" }, { "directions": "Mix as a long island ice tea.", @@ -41333,7 +41333,7 @@ "cranberry juice" ], "title": "Long Beach Cocktail recipe", - "url": "http://www.drinksmixer.com/drink4887.html" + "url": "https://www.drinksmixer.com/drink4887.html" }, { "directions": "In a large blender cup, add ice, sugar cubes, creme de cacao, vanilla extract (optional), and the cream. Mix for no more than 5-10 seconds. \r\n", @@ -41350,7 +41350,7 @@ "vanilla extract" ], "title": "Long Island Milkshake recipe", - "url": "http://www.drinksmixer.com/drink4888.html" + "url": "https://www.drinksmixer.com/drink4888.html" }, { "directions": "Pour ingredients into a mixing glass, shake, and strain into a highball glass. Add a cherry and a slice of orange, and serve.", @@ -41361,7 +41361,7 @@ "cranberry juice" ], "title": "Long Island Sunset recipe", - "url": "http://www.drinksmixer.com/drink4889.html" + "url": "https://www.drinksmixer.com/drink4889.html" }, { "directions": "Combine all ingredients (except cola) and pour over ice in a highball glass. Add the splash of cola for color. Decorate with a slice of lemon and serve.", @@ -41374,7 +41374,7 @@ "Coca-Cola\u00ae" ], "title": "Long Island Tea recipe", - "url": "http://www.drinksmixer.com/drink4890.html" + "url": "https://www.drinksmixer.com/drink4890.html" }, { "directions": "Combine and mix all ingredients in a collins glass, and serve.", @@ -41389,7 +41389,7 @@ "orange juice" ], "title": "Long Island Cocktail recipe", - "url": "http://www.drinksmixer.com/drink4891.html" + "url": "https://www.drinksmixer.com/drink4891.html" }, { "directions": "Pour liquor over ice. Fill 3/4 full with sour mix. Shake. Top with cola and add a lemon wedge.", @@ -41404,7 +41404,7 @@ "lemon" ], "title": "Long Iver Iced Tea recipe", - "url": "http://www.drinksmixer.com/drink4892.html" + "url": "https://www.drinksmixer.com/drink4892.html" }, { "directions": "Freeze a martini glass with shaved chocolate on rim. In a shaker put ice, stoli vanilla, stoli vodka, and white creme de cacao. Shake lightly and pour into the martini glass. Garnish with chocolate kiss.", @@ -41416,7 +41416,7 @@ "ice" ], "title": "Long Kiss Goodnight Martini recipe", - "url": "http://www.drinksmixer.com/drink4893.html" + "url": "https://www.drinksmixer.com/drink4893.html" }, { "directions": "Shake a tall glass with ice cubes and angostura, coating the inside of the glass. Pour on the vodka, add a slice of lime and squeeze juice out of remainder, mix with tonic, stir and serve.", @@ -41428,7 +41428,7 @@ "ice cubes" ], "title": "Long Vodka recipe", - "url": "http://www.drinksmixer.com/drink4894.html" + "url": "https://www.drinksmixer.com/drink4894.html" }, { "directions": "Combine ingredients in a collins glass filled with ice.", @@ -41439,7 +41439,7 @@ "7-Up\u00ae soda" ], "title": "Longaberger Lemonade recipe", - "url": "http://www.drinksmixer.com/drink4895.html" + "url": "https://www.drinksmixer.com/drink4895.html" }, { "directions": "Fill a pint glass with ice. Add absolut citron, squeeze two lemon wedges and add three packages of sugar. Fill remainder of glass with 7-up and sweet and sour mix.", @@ -41452,7 +41452,7 @@ "ice cubes" ], "title": "Loopy Lemonade recipe", - "url": "http://www.drinksmixer.com/drink4896.html" + "url": "https://www.drinksmixer.com/drink4896.html" }, { "directions": "Pour the rum and tia maria into an old-fashioned glass almost filled with ice cubes. Stir well.", @@ -41461,7 +41461,7 @@ "Tia Maria\u00ae coffee liqueur" ], "title": "Lord And Lady recipe", - "url": "http://www.drinksmixer.com/drink4897.html" + "url": "https://www.drinksmixer.com/drink4897.html" }, { "directions": "Add everything to a blender with 6-10 ice cubes and blend until thick and frosty. Pour into a frozen margarita glass.", @@ -41475,7 +41475,7 @@ "sugar" ], "title": "Lorraine's Delight recipe", - "url": "http://www.drinksmixer.com/drink4898.html" + "url": "https://www.drinksmixer.com/drink4898.html" }, { "directions": "Shake all ingredients with ice, strain into a whiskey sour glass, and serve.", @@ -41487,7 +41487,7 @@ "egg" ], "title": "Los Angeles Cocktail recipe", - "url": "http://www.drinksmixer.com/drink4899.html" + "url": "https://www.drinksmixer.com/drink4899.html" }, { "directions": "Add all ingredients to a blender and blend for 10 seconds. Pour into a margarita glass. Do not strain.", @@ -41501,7 +41501,7 @@ "tequila" ], "title": "Los Cabos Clout recipe", - "url": "http://www.drinksmixer.com/drink4900.html" + "url": "https://www.drinksmixer.com/drink4900.html" }, { "directions": "Stir and serve in a cocktail glass.", @@ -41511,7 +41511,7 @@ "Tia Maria\u00ae coffee liqueur" ], "title": "Louie Louie recipe", - "url": "http://www.drinksmixer.com/drink4901.html" + "url": "https://www.drinksmixer.com/drink4901.html" }, { "directions": "In a shaker half-filled with ice cubes, combine all of the ingredients. Shake well. Strain into a cocktail glass.", @@ -41522,7 +41522,7 @@ "lime juice" ], "title": "Love For Toby recipe", - "url": "http://www.drinksmixer.com/drink4902.html" + "url": "https://www.drinksmixer.com/drink4902.html" }, { "directions": "Fill a cocktail glass with crushed ice. Add batida de coco and then slowly add the passoa. Slowly add the grenadine, so it goes under the batida. You should get three layers: red, white, red. Serve orange juice, but let the customer mix it, because the colors will mix.", @@ -41534,7 +41534,7 @@ "crushed ice" ], "title": "Love Game recipe", - "url": "http://www.drinksmixer.com/drink4903.html" + "url": "https://www.drinksmixer.com/drink4903.html" }, { "directions": "First add rum, followed by other ingredients, and mix well. Serve on the rocks with an orange slice in a collins glass (approx. 14 oz.).", @@ -41545,7 +41545,7 @@ "Squirt\u00ae citrus soda" ], "title": "Love Juice recipe", - "url": "http://www.drinksmixer.com/drink4904.html" + "url": "https://www.drinksmixer.com/drink4904.html" }, { "directions": "Pour ingredients into a shaker with ice, shake and serve on the rocks.", @@ -41558,7 +41558,7 @@ "ice cubes" ], "title": "Love Potion recipe", - "url": "http://www.drinksmixer.com/drink4905.html" + "url": "https://www.drinksmixer.com/drink4905.html" }, { "directions": "Pour kool-aid into a jug, add vodka and rum, 1 pouch of kool-aid (cherry or orange), cover and shake.", @@ -41568,7 +41568,7 @@ "white rum" ], "title": "Love Potion #9 recipe", - "url": "http://www.drinksmixer.com/drink4906.html" + "url": "https://www.drinksmixer.com/drink4906.html" }, { "directions": "Chill all ingredients over ice, strain into a chilled shot glass, serve, and enjoy.", @@ -41578,7 +41578,7 @@ "cranberry juice" ], "title": "Love Potion #2 recipe", - "url": "http://www.drinksmixer.com/drink4907.html" + "url": "https://www.drinksmixer.com/drink4907.html" }, { "directions": "In a mixing tin, combine the vodka, southern comfort, and pineapple juice. Add the cherry juice from a jar of maraschino cherries. Shake well and pour over crushed or cubed ice.", @@ -41589,7 +41589,7 @@ "pineapple juice" ], "title": "Low Lattitude Lust recipe", - "url": "http://www.drinksmixer.com/drink4908.html" + "url": "https://www.drinksmixer.com/drink4908.html" }, { "directions": "Stir it up, and serve.", @@ -41599,7 +41599,7 @@ "lemonade" ], "title": "The Lowee recipe", - "url": "http://www.drinksmixer.com/drink4909.html" + "url": "https://www.drinksmixer.com/drink4909.html" }, { "directions": "It is best to use a \"tall\" shot glass. Fill it halfway with the irish cream: fill it the rest of the way with vodka and shoot it.", @@ -41608,7 +41608,7 @@ "Bailey's\u00ae Irish cream" ], "title": "Lube Job recipe", - "url": "http://www.drinksmixer.com/drink4910.html" + "url": "https://www.drinksmixer.com/drink4910.html" }, { "directions": "Prepare in a blender or shaker, serve in a highball glass with 2-3 ice cubes. Garnish with one orange slice, and one lemon slice. Use only freshly squeezed juice for best results.", @@ -41621,7 +41621,7 @@ "sugar syrup" ], "title": "Lucky Driver recipe", - "url": "http://www.drinksmixer.com/drink4911.html" + "url": "https://www.drinksmixer.com/drink4911.html" }, { "directions": "Mix all ingredients into a glass, stir and enjoy!", @@ -41631,7 +41631,7 @@ "lemonade" ], "title": "Lucky Lemon recipe", - "url": "http://www.drinksmixer.com/drink4912.html" + "url": "https://www.drinksmixer.com/drink4912.html" }, { "directions": "Empty one can of tropicana strawberry/orange/banana into a blender and 1/4 gallon vodka. Mix well. Pour half of this into a pitcher and set aside for later use, leaving the other half in the blender. \r", @@ -41641,7 +41641,7 @@ "ice" ], "title": "Lucky Lindeman recipe", - "url": "http://www.drinksmixer.com/drink4913.html" + "url": "https://www.drinksmixer.com/drink4913.html" }, { "directions": "Combine the seven liquors, straight, into a tall glass. Top it with three splashes of cranberry, lime, and orange juices.", @@ -41658,7 +41658,7 @@ "orange juice" ], "title": "Lucky Seven recipe", - "url": "http://www.drinksmixer.com/drink4914.html" + "url": "https://www.drinksmixer.com/drink4914.html" }, { "directions": "Combine with ice in a mixing glass and pour into shot glasses.", @@ -41667,7 +41667,7 @@ "Galliano\u00ae herbal liqueur" ], "title": "Lucky Stud recipe", - "url": "http://www.drinksmixer.com/drink4915.html" + "url": "https://www.drinksmixer.com/drink4915.html" }, { "directions": "Mix and add some ice.", @@ -41676,7 +41676,7 @@ "apple cider" ], "title": "Ludvika Walker recipe", - "url": "http://www.drinksmixer.com/drink4916.html" + "url": "https://www.drinksmixer.com/drink4916.html" }, { "directions": "In a mixing glass half-filled with ice cubes, combine all of the ingredients. Stir well. Strain into an old-fashioned glass almost filled with crushed ice.", @@ -41689,7 +41689,7 @@ "crushed ice" ], "title": "Ludwig And The Gang recipe", - "url": "http://www.drinksmixer.com/drink4917.html" + "url": "https://www.drinksmixer.com/drink4917.html" }, { "directions": "Shake all ingredients. Strain into a highball glass, and serve.", @@ -41702,7 +41702,7 @@ "pineapple juice" ], "title": "Luftschlange recipe", - "url": "http://www.drinksmixer.com/drink4918.html" + "url": "https://www.drinksmixer.com/drink4918.html" }, { "directions": "Put 1/3 chocolate syrup, then 1/3 jagermeister, and then 1/3 butterscotch of the glass.", @@ -41712,7 +41712,7 @@ "butterscotch schnapps" ], "title": "Luftwaffe recipe", - "url": "http://www.drinksmixer.com/drink4919.html" + "url": "https://www.drinksmixer.com/drink4919.html" }, { "directions": "Stir all ingredients with ice, strain into a cocktail glass, and serve.", @@ -41722,7 +41722,7 @@ "apricot brandy" ], "title": "Lugger recipe", - "url": "http://www.drinksmixer.com/drink4920.html" + "url": "https://www.drinksmixer.com/drink4920.html" }, { "directions": "Mix with ice. Strain into shot glass.", @@ -41734,7 +41734,7 @@ "pineapple juice" ], "title": "Lui Lui recipe", - "url": "http://www.drinksmixer.com/drink4921.html" + "url": "https://www.drinksmixer.com/drink4921.html" }, { "directions": "Pour into shot glass, no particular order. Add small dash of hot sauce.", @@ -41745,7 +41745,7 @@ "Tabasco\u00ae sauce" ], "title": "Lumberjack recipe", - "url": "http://www.drinksmixer.com/drink4922.html" + "url": "https://www.drinksmixer.com/drink4922.html" }, { "directions": "Mix the beer and orange juice in a beer mug, drop the shot of amaretto in, and down it.", @@ -41755,7 +41755,7 @@ "amaretto almond liqueur" ], "title": "Lunch Box #2 recipe", - "url": "http://www.drinksmixer.com/drink4923.html" + "url": "https://www.drinksmixer.com/drink4923.html" }, { "directions": "Fill a glass almost full with beer. Fill the rest with orange juice (careful not to fill it to the top). Then take the shot of amaretto and drop it into the cup with the beer and orange juice.", @@ -41765,7 +41765,7 @@ "orange juice" ], "title": "Lunch Box recipe", - "url": "http://www.drinksmixer.com/drink4924.html" + "url": "https://www.drinksmixer.com/drink4924.html" }, { "directions": "Chill and strain into a cocktail glass.", @@ -41779,7 +41779,7 @@ "7-Up\u00ae soda" ], "title": "The Lunchbox recipe", - "url": "http://www.drinksmixer.com/drink4925.html" + "url": "https://www.drinksmixer.com/drink4925.html" }, { "directions": "Mix all ingredients together in a shaker and pour into a shot glass.", @@ -41789,7 +41789,7 @@ "Blue Curacao liqueur" ], "title": "Lusty Lisa recipe", - "url": "http://www.drinksmixer.com/drink4926.html" + "url": "https://www.drinksmixer.com/drink4926.html" }, { "directions": "Add all alcohols to a shaker with ice. Fill remaining space with 1/3 apple juice and 2/3 orange juice. Shake vigorously, strain into a highball glass and serve.\r", @@ -41803,7 +41803,7 @@ "apple juice" ], "title": "Luxor Boom-Boom recipe", - "url": "http://www.drinksmixer.com/drink4927.html" + "url": "https://www.drinksmixer.com/drink4927.html" }, { "directions": "Pour in the sweet and sour mix, then the amaretto and then orange soda, and stir.", @@ -41813,7 +41813,7 @@ "sweet and sour mix" ], "title": "The Lynchmob recipe", - "url": "http://www.drinksmixer.com/drink4928.html" + "url": "https://www.drinksmixer.com/drink4928.html" }, { "directions": "Shake with ice and serve.", @@ -41822,7 +41822,7 @@ "cranberry juice" ], "title": "Lyndy recipe", - "url": "http://www.drinksmixer.com/drink4929.html" + "url": "https://www.drinksmixer.com/drink4929.html" }, { "directions": "Add vodka, then orange juice and stir. Fill with schweppes russian and ice cubes.", @@ -41832,7 +41832,7 @@ "Schweppes\u00ae Russian tonic water" ], "title": "Lysekil's Groggen recipe", - "url": "http://www.drinksmixer.com/drink4930.html" + "url": "https://www.drinksmixer.com/drink4930.html" }, { "directions": "Pour into a whiskey sour glass in the order listed and serve.", @@ -41842,7 +41842,7 @@ "cola" ], "title": "Lachler recipe", - "url": "http://www.drinksmixer.com/drink4931.html" + "url": "https://www.drinksmixer.com/drink4931.html" }, { "directions": "Pour 151 proof rum and amaretto over ice in an old-fashioned glass. Top off with pineapple juice (to taste), and serve.", @@ -41852,7 +41852,7 @@ "pineapple juice" ], "title": "Wahoo recipe", - "url": "http://www.drinksmixer.com/drink4932.html" + "url": "https://www.drinksmixer.com/drink4932.html" }, { "directions": "Shake all ingredients with ice, strain into a cocktail glass, and serve.", @@ -41862,7 +41862,7 @@ "pineapple juice" ], "title": "Waikiki Beachcomber recipe", - "url": "http://www.drinksmixer.com/drink4933.html" + "url": "https://www.drinksmixer.com/drink4933.html" }, { "directions": "Pour rum over ice. Fill with 7-Up. Stir. Garnish with cherries.", @@ -41874,7 +41874,7 @@ "cherries" ], "title": "Walk the Plank recipe", - "url": "http://www.drinksmixer.com/drink4934.html" + "url": "https://www.drinksmixer.com/drink4934.html" }, { "directions": "Add rums over ice and fill glass with ice tea. Best in a tall frosty glass.", @@ -41884,7 +41884,7 @@ "iced tea" ], "title": "Walker's Revenge recipe", - "url": "http://www.drinksmixer.com/drink4935.html" + "url": "https://www.drinksmixer.com/drink4935.html" }, { "directions": "Stir all ingredients with ice, strain into a cocktail glass, and serve.", @@ -41894,7 +41894,7 @@ "triple sec" ], "title": "Wallick Cocktail recipe", - "url": "http://www.drinksmixer.com/drink4936.html" + "url": "https://www.drinksmixer.com/drink4936.html" }, { "directions": "Shake blended whiskey, juice of lemon, grenadine, and powdered sugar with ice and strain into a red wine glass filled with cracked ice. Add the orange slice, top with the cherry, and serve with a straw.", @@ -41907,7 +41907,7 @@ "lemons" ], "title": "Ward Eight recipe", - "url": "http://www.drinksmixer.com/drink4937.html" + "url": "https://www.drinksmixer.com/drink4937.html" }, { "directions": "Pour southern comfort, triple sec, and then cherry brandy into a shot glass.", @@ -41917,7 +41917,7 @@ "cherry brandy" ], "title": "Warm and Fuzzy recipe", - "url": "http://www.drinksmixer.com/drink4938.html" + "url": "https://www.drinksmixer.com/drink4938.html" }, { "directions": "Bring to a boil in a saucepan and reduce heat to simmer. Simmer gently for 15 minutes, stirring and muttering appropriate incantations. Serve in ghoulish glasses, garnish with an orange slice if desired.", @@ -41930,7 +41930,7 @@ "sugar" ], "title": "Warm Witch's Blood recipe", - "url": "http://www.drinksmixer.com/drink4939.html" + "url": "https://www.drinksmixer.com/drink4939.html" }, { "directions": "Mix scotch and drambuie, then top with warm milk.", @@ -41940,7 +41940,7 @@ "milk" ], "title": "Warm Woolly Sheep recipe", - "url": "http://www.drinksmixer.com/drink4940.html" + "url": "https://www.drinksmixer.com/drink4940.html" }, { "directions": "Empty half a can of cherry coke, pour the vodka into the can, then pour in the kool-aid. Alternatively, use a 12oz glass. Stir. A kabob stick works well in the can.", @@ -41950,7 +41950,7 @@ "Kool-Aid\u00ae Tropical Punch mix" ], "title": "Warped Thursday recipe", - "url": "http://www.drinksmixer.com/drink4941.html" + "url": "https://www.drinksmixer.com/drink4941.html" }, { "directions": "Shake all ingredients with ice, strain into a cocktail glass, and serve.", @@ -41961,7 +41961,7 @@ "lemon juice" ], "title": "Warsaw Cocktail recipe", - "url": "http://www.drinksmixer.com/drink4942.html" + "url": "https://www.drinksmixer.com/drink4942.html" }, { "directions": "Pour both ingredients into a shot glass. Stir until syrup is dissolved.", @@ -41970,7 +41970,7 @@ "vodka" ], "title": "Warsaw Waffle recipe", - "url": "http://www.drinksmixer.com/drink4943.html" + "url": "https://www.drinksmixer.com/drink4943.html" }, { "directions": "Stir all ingredients with ice, strain into a cocktail glass, and serve.", @@ -41981,7 +41981,7 @@ "bitters" ], "title": "Washington Cocktail recipe", - "url": "http://www.drinksmixer.com/drink4944.html" + "url": "https://www.drinksmixer.com/drink4944.html" }, { "directions": "1. Heat the water to boiling. Cut the lemons and oranges (and lime if using) in half and squeeze the juice into a separate bowl to save, throw the skins and pulp into the boiling water. Add spices and simmer for one hour. \r\n", @@ -41997,7 +41997,7 @@ "sugar" ], "title": "Wassail recipe", - "url": "http://www.drinksmixer.com/drink4945.html" + "url": "https://www.drinksmixer.com/drink4945.html" }, { "directions": "Simmer the nonalcoholic ingredients together for 1-2 hours, then add the wine and rum about 10 minutes before serving (hot).", @@ -42012,7 +42012,7 @@ "rum" ], "title": "Wassail #2 recipe", - "url": "http://www.drinksmixer.com/drink4946.html" + "url": "https://www.drinksmixer.com/drink4946.html" }, { "directions": "Pour the mountain dew into any kind of ordinary glass. Then, add the watermelon schnapps and stir.", @@ -42021,7 +42021,7 @@ "watermelon schnapps" ], "title": "Water Your Melon recipe", - "url": "http://www.drinksmixer.com/drink4947.html" + "url": "https://www.drinksmixer.com/drink4947.html" }, { "directions": "Mix liquors together and add pineapple juice to taste. Garnish with a cherry or a pineapple chunk.", @@ -42032,7 +42032,7 @@ "pineapple juice" ], "title": "Watercolour recipe", - "url": "http://www.drinksmixer.com/drink4948.html" + "url": "https://www.drinksmixer.com/drink4948.html" }, { "directions": "Half fill glass with ice cubes. Add liquor and fill with mountain dew.", @@ -42042,7 +42042,7 @@ "Mountain Dew\u00ae citrus soda" ], "title": "Watermelon Crawl # 2 recipe", - "url": "http://www.drinksmixer.com/drink4949.html" + "url": "https://www.drinksmixer.com/drink4949.html" }, { "directions": "Fill a 16 oz pint glass with ice, pour the above in. Garnish with cherries.", @@ -42054,7 +42054,7 @@ "pineapple juice" ], "title": "Watermelon Crawl recipe", - "url": "http://www.drinksmixer.com/drink4950.html" + "url": "https://www.drinksmixer.com/drink4950.html" }, { "directions": "Cut up a watermelon, removing seeds. Liquify in a blender until you have about 16 oz. Add remaining ingredients, top with ice and blend until smooth. Taste and add sugar if watermelon is not sweet enough. Serve in a margarita glass with a sugar-coated rim.", @@ -42066,7 +42066,7 @@ "sugar" ], "title": "Watermelon Margarita recipe", - "url": "http://www.drinksmixer.com/drink4951.html" + "url": "https://www.drinksmixer.com/drink4951.html" }, { "directions": "Pour ingredients into a mixing glass 1/4 of the way full with ice. Mix all four ingredients then strain into a rocks glass.", @@ -42077,7 +42077,7 @@ "sweet and sour mix" ], "title": "Watermelon Shooter #5 recipe", - "url": "http://www.drinksmixer.com/drink4952.html" + "url": "https://www.drinksmixer.com/drink4952.html" }, { "directions": "Mix ingredients in a cocktail shaker full of ice. Strain and pour into a glass.", @@ -42088,7 +42088,7 @@ "sweet and sour mix" ], "title": "Watermelon Shooter recipe", - "url": "http://www.drinksmixer.com/drink4953.html" + "url": "https://www.drinksmixer.com/drink4953.html" }, { "directions": "In a large juice or water pitcher filled with ice cubes, pour equal parts pineapple juice and jack daniels. Stir, then add a splash of grenadine to give the mixture a pink, almost watermelon, tint. Stir until well chilled. Pour into shot glass, straining ice, and enjoy.", @@ -42098,7 +42098,7 @@ "grenadine syrup" ], "title": "Watermelon Shooter #2 recipe", - "url": "http://www.drinksmixer.com/drink4954.html" + "url": "https://www.drinksmixer.com/drink4954.html" }, { "directions": "Pour all ingredients in any order into a sifting glass filled with ice. Shake for 5 seconds and pour the chilled contents into your cocktail glass.", @@ -42108,7 +42108,7 @@ "grenadine syrup" ], "title": "Watermelon Shooter #3 recipe", - "url": "http://www.drinksmixer.com/drink4955.html" + "url": "https://www.drinksmixer.com/drink4955.html" }, { "directions": "Add ingredients in a shaker tin with ice, stir and strain into a rocks glass.", @@ -42118,7 +42118,7 @@ "pineapple juice" ], "title": "Watermelon Shooter #4 recipe", - "url": "http://www.drinksmixer.com/drink4956.html" + "url": "https://www.drinksmixer.com/drink4956.html" }, { "directions": "Shake well with ice. Strain and pour into a shot glass.", @@ -42131,7 +42131,7 @@ "grenadine syrup" ], "title": "Watermelon Shot recipe", - "url": "http://www.drinksmixer.com/drink4957.html" + "url": "https://www.drinksmixer.com/drink4957.html" }, { "directions": "Fill a hurricane glass with ice. Add grenadine, then vodka, rum, gin and triple sec. Fill with half orange juice and half cranberry juice. Float with midori. Drink should be presented as is but stirred before drinking.", @@ -42146,7 +42146,7 @@ "Midori\u00ae melon liqueur" ], "title": "Watermelon Slice recipe", - "url": "http://www.drinksmixer.com/drink4958.html" + "url": "https://www.drinksmixer.com/drink4958.html" }, { "directions": "Shake all ingredients with ice, strain into a collins glass over ice cubes, and serve.", @@ -42157,7 +42157,7 @@ "orange juice" ], "title": "Watermelon recipe", - "url": "http://www.drinksmixer.com/drink4959.html" + "url": "https://www.drinksmixer.com/drink4959.html" }, { "directions": "Pour rum and cranberry juice into a tall glass. Slowly add sprite, stopping immediately when the color changes from red to pink.", @@ -42167,7 +42167,7 @@ "Sprite\u00ae soda" ], "title": "Wave Runner recipe", - "url": "http://www.drinksmixer.com/drink4960.html" + "url": "https://www.drinksmixer.com/drink4960.html" }, { "directions": "Shake all ingredients (except champagne) with ice. Strain into a sugar rimmed cocktail glass. Top with champagne. Squeeze and drop another wedge of lemon into the drink. (the other two should still be in the tin).", @@ -42180,7 +42180,7 @@ "Champagne" ], "title": "Waverunner recipe", - "url": "http://www.drinksmixer.com/drink4961.html" + "url": "https://www.drinksmixer.com/drink4961.html" }, { "directions": "Fill the shot glass about 2/3 full of jager, and then top it off with the sambuca.", @@ -42189,7 +42189,7 @@ "sambuca" ], "title": "Wayne's World recipe", - "url": "http://www.drinksmixer.com/drink4962.html" + "url": "https://www.drinksmixer.com/drink4962.html" }, { "directions": "Pour all four shots into a low ball glass, chill if you care.", @@ -42200,7 +42200,7 @@ "Jagermeister\u00ae herbal liqueur" ], "title": "Weakness recipe", - "url": "http://www.drinksmixer.com/drink4963.html" + "url": "https://www.drinksmixer.com/drink4963.html" }, { "directions": "Shake all ingredients with ice, strain into a cocktail glass, and serve.", @@ -42211,7 +42211,7 @@ "limes" ], "title": "Webster Cocktail recipe", - "url": "http://www.drinksmixer.com/drink4964.html" + "url": "https://www.drinksmixer.com/drink4964.html" }, { "directions": "Shake with ice and strain into a glass.", @@ -42222,7 +42222,7 @@ "orange juice" ], "title": "Wedding Anniversary recipe", - "url": "http://www.drinksmixer.com/drink4965.html" + "url": "https://www.drinksmixer.com/drink4965.html" }, { "directions": "Shake all ingredients with ice, strain into a cocktail glass, and serve.", @@ -42233,7 +42233,7 @@ "orange juice" ], "title": "Wedding Belle Cocktail recipe", - "url": "http://www.drinksmixer.com/drink4966.html" + "url": "https://www.drinksmixer.com/drink4966.html" }, { "directions": "Pour over ice in a highball glass. Stir.", @@ -42243,7 +42243,7 @@ "ice" ], "title": "The Wedge recipe", - "url": "http://www.drinksmixer.com/drink4967.html" + "url": "https://www.drinksmixer.com/drink4967.html" }, { "directions": "Mix the crown royal, apple and peach schnapps, and sweet and sour mix with ice cubes in a shaker and shake until well blended. Strain into a shot glass. Makes one serving.", @@ -42254,7 +42254,7 @@ "apple schnapps" ], "title": "Weekend On The Beach recipe", - "url": "http://www.drinksmixer.com/drink4968.html" + "url": "https://www.drinksmixer.com/drink4968.html" }, { "directions": "Shake all ingredients with ice, strain into a cocktail glass, and serve.", @@ -42265,7 +42265,7 @@ "limes" ], "title": "Weep-No-More Cocktail recipe", - "url": "http://www.drinksmixer.com/drink4969.html" + "url": "https://www.drinksmixer.com/drink4969.html" }, { "directions": "Pour ingredients into a bowl, and mix them together.", @@ -42276,7 +42276,7 @@ "Sprite\u00ae soda" ], "title": "Welcome Delight recipe", - "url": "http://www.drinksmixer.com/drink4970.html" + "url": "https://www.drinksmixer.com/drink4970.html" }, { "directions": "Layer the ingredients in the order they are listed in a pony glass. The sambuca should be chilled first to layer more easily.", @@ -42286,7 +42286,7 @@ "Bailey's\u00ae Irish cream" ], "title": "Well Greased Dwarf recipe", - "url": "http://www.drinksmixer.com/drink4971.html" + "url": "https://www.drinksmixer.com/drink4971.html" }, { "directions": "Stir all ingredients with ice, strain into a cocktail glass, and serve.", @@ -42297,7 +42297,7 @@ "apple brandy" ], "title": "Wembly Cocktail recipe", - "url": "http://www.drinksmixer.com/drink4972.html" + "url": "https://www.drinksmixer.com/drink4972.html" }, { "directions": "Shake all ingredients with ice, strain into a cocktail glass, and serve.", @@ -42308,7 +42308,7 @@ "lemon juice" ], "title": "Western Rose recipe", - "url": "http://www.drinksmixer.com/drink4973.html" + "url": "https://www.drinksmixer.com/drink4973.html" }, { "directions": "In a beer mug full of ice, pour in the tequila, gin, light rum and stir. Stir in the cinnamon schnapps, then stir in the vanilla vodka. Splash the high proof rum on top.", @@ -42321,7 +42321,7 @@ "Stoli\u00ae Vanil vodka" ], "title": "Westwood Ice Tea recipe", - "url": "http://www.drinksmixer.com/drink4974.html" + "url": "https://www.drinksmixer.com/drink4974.html" }, { "directions": "Mix and shoot.", @@ -42330,7 +42330,7 @@ "tequila" ], "title": "Wet Back recipe", - "url": "http://www.drinksmixer.com/drink4975.html" + "url": "https://www.drinksmixer.com/drink4975.html" }, { "directions": "Pour ingredients into a shaker with ice, shake and strain into shot glass.", @@ -42340,7 +42340,7 @@ "Chambord\u00ae raspberry liqueur" ], "title": "Wet Crotch recipe", - "url": "http://www.drinksmixer.com/drink4976.html" + "url": "https://www.drinksmixer.com/drink4976.html" }, { "directions": "Mix all ingredients except chambord. Chill and strain mixture into a martini glass. Float chambord to the bottom of the glass.", @@ -42353,7 +42353,7 @@ "Chambord\u00ae raspberry liqueur" ], "title": "Wet Dream recipe", - "url": "http://www.drinksmixer.com/drink4977.html" + "url": "https://www.drinksmixer.com/drink4977.html" }, { "directions": "Layer the ingredients in the order listed into a shot glass. It is also good over ice in a highball glass.", @@ -42363,7 +42363,7 @@ "watermelon schnapps" ], "title": "Wet Kiss recipe", - "url": "http://www.drinksmixer.com/drink4978.html" + "url": "https://www.drinksmixer.com/drink4978.html" }, { "directions": "Pour the chambord, irish cream, and milk or cream into a shaker with ice. Shake, strain and pour into a champagne saucer.", @@ -42373,7 +42373,7 @@ "milk" ], "title": "Wet Pussy recipe", - "url": "http://www.drinksmixer.com/drink4979.html" + "url": "https://www.drinksmixer.com/drink4979.html" }, { "directions": "Add blue raspberry to ice, add vanilla, pineapple, and coconut, then blend. Add tequila, and blend again. Add whipped cream on top if desired.", @@ -42386,7 +42386,7 @@ "pineapple juice" ], "title": "Wet Snatch recipe", - "url": "http://www.drinksmixer.com/drink4980.html" + "url": "https://www.drinksmixer.com/drink4980.html" }, { "directions": "Fill a 20 ounce glass with ice. Add the 7 shots. Finish off with with equal parts orange and pineapple juice. Add grenadine until it turns pink. Top with cherries.", @@ -42403,7 +42403,7 @@ "grenadine syrup" ], "title": "The Whammie recipe", - "url": "http://www.drinksmixer.com/drink4981.html" + "url": "https://www.drinksmixer.com/drink4981.html" }, { "directions": "Pour in vodka, then fill with the orange juice. Add the amaretto which should mostly sink to the bottom. Splash in some grenadine to cloud the center of the drink. Serve without mixing or stirring.", @@ -42414,7 +42414,7 @@ "grenadine syrup" ], "title": "What She's Having recipe", - "url": "http://www.drinksmixer.com/drink4982.html" + "url": "https://www.drinksmixer.com/drink4982.html" }, { "directions": "Stir all ingredients with ice cubes in an old-fashioned glass and serve.", @@ -42425,7 +42425,7 @@ "lemon juice" ], "title": "What The Hell recipe", - "url": "http://www.drinksmixer.com/drink4983.html" + "url": "https://www.drinksmixer.com/drink4983.html" }, { "directions": "Stir all ingredients with ice, strain into a cocktail glass, and serve.", @@ -42437,7 +42437,7 @@ "anis liqueur" ], "title": "Whip Cocktail recipe", - "url": "http://www.drinksmixer.com/drink4984.html" + "url": "https://www.drinksmixer.com/drink4984.html" }, { "directions": "Add rum, fresca, and 1 or 2 ice cubes to a highball glass and serve.", @@ -42447,7 +42447,7 @@ "ice cubes" ], "title": "Whippersnapper recipe", - "url": "http://www.drinksmixer.com/drink4985.html" + "url": "https://www.drinksmixer.com/drink4985.html" }, { "directions": "Made as in a normal vodka and orange, with raspberry cordial added last.", @@ -42457,7 +42457,7 @@ "raspberry cordial" ], "title": "Whippet recipe", - "url": "http://www.drinksmixer.com/drink4986.html" + "url": "https://www.drinksmixer.com/drink4986.html" }, { "directions": "Stir all ingredients (except cherry) with ice and strain into a cocktail glass. Top with the cherry and serve.", @@ -42468,7 +42468,7 @@ "cherry" ], "title": "Whiskey Cocktail recipe", - "url": "http://www.drinksmixer.com/drink4987.html" + "url": "https://www.drinksmixer.com/drink4987.html" }, { "directions": "Shake blended whiskey, juice of lemon, and powdered sugar with ice and strain into a collins glass. Add several ice cubes, fill with carbonated water, and stir. Decorate with slices of orange, lemon, and top with the cherry. Serve with a straw.", @@ -42481,7 +42481,7 @@ "orange" ], "title": "Whiskey Collins recipe", - "url": "http://www.drinksmixer.com/drink4988.html" + "url": "https://www.drinksmixer.com/drink4988.html" }, { "directions": "Shake juice of lemon and powdered sugar with ice and strain into a highball glass over ice cubes. Add blended whiskey and stir. Add the slice of lemon and serve with a straw.", @@ -42492,7 +42492,7 @@ "lemon" ], "title": "Whiskey Fix recipe", - "url": "http://www.drinksmixer.com/drink4989.html" + "url": "https://www.drinksmixer.com/drink4989.html" }, { "directions": "Shake all ingredients (except nutmeg) with ice and strain into a whiskey sour glass. Sprinkle nutmeg on top and serve.", @@ -42504,7 +42504,7 @@ "nutmeg" ], "title": "Whiskey Flip recipe", - "url": "http://www.drinksmixer.com/drink4990.html" + "url": "https://www.drinksmixer.com/drink4990.html" }, { "directions": "Pour blended whiskey into a highball glass over ice cubes. Fill with carbonated water and stir. Add the twist of lemon peel and serve.", @@ -42514,7 +42514,7 @@ "lemon" ], "title": "Whiskey Highball recipe", - "url": "http://www.drinksmixer.com/drink4991.html" + "url": "https://www.drinksmixer.com/drink4991.html" }, { "directions": "Pour into an old-fashioned glass and serve.", @@ -42523,7 +42523,7 @@ "sweet vermouth" ], "title": "Whiskey Manhattan recipe", - "url": "http://www.drinksmixer.com/drink4992.html" + "url": "https://www.drinksmixer.com/drink4992.html" }, { "directions": "Shake all ingredients (except nutmeg) with ice and strain into a collins glass. Sprinkle nutmeg on top and serve.", @@ -42534,7 +42534,7 @@ "nutmeg" ], "title": "Whiskey Milk Punch recipe", - "url": "http://www.drinksmixer.com/drink4993.html" + "url": "https://www.drinksmixer.com/drink4993.html" }, { "directions": "Mix together in a whiskey sour glass.", @@ -42543,7 +42543,7 @@ "orange juice" ], "title": "Whiskey Orange The Jesperian Way recipe", - "url": "http://www.drinksmixer.com/drink4994.html" + "url": "https://www.drinksmixer.com/drink4994.html" }, { "directions": "Pour blended whiskey and juice of lime into a highball glass over ice cubes. Fill with carbonated water and stir. Drop the wedge of lime in glass and serve.", @@ -42554,7 +42554,7 @@ "lime" ], "title": "Whiskey Rickey recipe", - "url": "http://www.drinksmixer.com/drink4995.html" + "url": "https://www.drinksmixer.com/drink4995.html" }, { "directions": "Mix whiskey, bitters, and cherry juice in a ice-filled cocktail glass, and fill the remainder of the glass with sour mix. Garnish with olives or mushrooms and use a stir stick to mix.", @@ -42565,7 +42565,7 @@ "bitters" ], "title": "Whiskey Sour Old Fashioned recipe", - "url": "http://www.drinksmixer.com/drink4996.html" + "url": "https://www.drinksmixer.com/drink4996.html" }, { "directions": "Pour both of the ingredients into a wine goblet with no ice.", @@ -42574,7 +42574,7 @@ "green ginger wine" ], "title": "Whisky Mac recipe", - "url": "http://www.drinksmixer.com/drink4997.html" + "url": "https://www.drinksmixer.com/drink4997.html" }, { "directions": "Mix ingredients in a cocktail glass with chipped ice.", @@ -42583,7 +42583,7 @@ "vermouth" ], "title": "Whisky Martini recipe", - "url": "http://www.drinksmixer.com/drink4998.html" + "url": "https://www.drinksmixer.com/drink4998.html" }, { "directions": "Muddle a small piece of fresh ginger in the glass. Fill glass with ice, add whisky and ginger ale. Drop in a strip of lemon peel and stir gently.", @@ -42594,7 +42594,7 @@ "ginger" ], "title": "Whisky Melba recipe", - "url": "http://www.drinksmixer.com/drink4999.html" + "url": "https://www.drinksmixer.com/drink4999.html" }, { "directions": "Layer tia maria, bailey's irish cream, and stoli vodka in that order in a doubleshot glass.", @@ -42604,7 +42604,7 @@ "Stolichnaya\u00ae vodka" ], "title": "Whistling Gypsy recipe", - "url": "http://www.drinksmixer.com/drink5000.html" + "url": "https://www.drinksmixer.com/drink5000.html" }, { "directions": "Make hot chocolate, add bailey's and ground cinnamon. Float whipped cream on top.", @@ -42615,7 +42615,7 @@ "whipped cream" ], "title": "White Ape recipe", - "url": "http://www.drinksmixer.com/drink5001.html" + "url": "https://www.drinksmixer.com/drink5001.html" }, { "directions": "Pour ice into a glass, add tequila and kahlua, fill with cream, shake and serve.", @@ -42625,7 +42625,7 @@ "cream" ], "title": "White Bull recipe", - "url": "http://www.drinksmixer.com/drink5002.html" + "url": "https://www.drinksmixer.com/drink5002.html" }, { "directions": "Stir and pour over ice in a highball glass. Garnish with an orange slice.", @@ -42637,7 +42637,7 @@ "cream" ], "title": "White Carnation recipe", - "url": "http://www.drinksmixer.com/drink5003.html" + "url": "https://www.drinksmixer.com/drink5003.html" }, { "directions": "Pour amaretto and cream de cacao into a blender cup with the ice cream. Blend until smooth like a shake. Line the inside of a snifter glass with chocolate syrup. Pour drink into a cup and top with whipped cream. Add cherry to top.", @@ -42649,7 +42649,7 @@ "whipped cream" ], "title": "White Dove recipe", - "url": "http://www.drinksmixer.com/drink5004.html" + "url": "https://www.drinksmixer.com/drink5004.html" }, { "directions": "Shake all ingredients with ice, strain into a cocktail glass, and serve.", @@ -42659,7 +42659,7 @@ "cream" ], "title": "White Heart recipe", - "url": "http://www.drinksmixer.com/drink5005.html" + "url": "https://www.drinksmixer.com/drink5005.html" }, { "directions": "Fill a collins glass with ice and pour in the ingredients. Speed shake and serve.", @@ -42671,7 +42671,7 @@ "ice" ], "title": "White Jamaican recipe", - "url": "http://www.drinksmixer.com/drink5006.html" + "url": "https://www.drinksmixer.com/drink5006.html" }, { "directions": "Shake vigourously with plenty of ice.", @@ -42682,7 +42682,7 @@ "egg" ], "title": "White Lady 1910 recipe", - "url": "http://www.drinksmixer.com/drink5007.html" + "url": "https://www.drinksmixer.com/drink5007.html" }, { "directions": "In a shaker half-filled with ice cubes, combine all of the ingredients. Shake well. Strain into a cocktail glass.", @@ -42693,7 +42693,7 @@ "superfine sugar" ], "title": "White Lady recipe", - "url": "http://www.drinksmixer.com/drink5008.html" + "url": "https://www.drinksmixer.com/drink5008.html" }, { "directions": "Pour both ingredients into a blender. Vary the amount of vodka according to how buzzed you want to be. Remember, it must have at least 2 oz. of vodka in order to be called white lightning. Serve in a tall glass.", @@ -42702,7 +42702,7 @@ "lemonade" ], "title": "White Lightning recipe", - "url": "http://www.drinksmixer.com/drink5009.html" + "url": "https://www.drinksmixer.com/drink5009.html" }, { "directions": "Shake all ingredients with ice, strain into a cocktail glass, and serve.", @@ -42713,7 +42713,7 @@ "anisette" ], "title": "White Lily Cocktail recipe", - "url": "http://www.drinksmixer.com/drink5010.html" + "url": "https://www.drinksmixer.com/drink5010.html" }, { "directions": "Shake all ingredients with ice, strain into a cocktail glass, and serve.", @@ -42725,7 +42725,7 @@ "bitters" ], "title": "White Lion Cocktail recipe", - "url": "http://www.drinksmixer.com/drink5011.html" + "url": "https://www.drinksmixer.com/drink5011.html" }, { "directions": "In a mixing tin, combine all ingredients with ice and shake. Strain into a double shot glass. Can also be made tall (add a little soda water to cut down on the cream)", @@ -42737,7 +42737,7 @@ "heavy cream" ], "title": "White Mess recipe", - "url": "http://www.drinksmixer.com/drink5012.html" + "url": "https://www.drinksmixer.com/drink5012.html" }, { "directions": "Build over crushed ice in an old-fashioned glass.", @@ -42747,7 +42747,7 @@ "cognac" ], "title": "White Out recipe", - "url": "http://www.drinksmixer.com/drink5013.html" + "url": "https://www.drinksmixer.com/drink5013.html" }, { "directions": "Pour vodka and coffee liqueur over ice cubes in an old-fashioned glass. Fill with light cream and serve.\n\n", @@ -42757,7 +42757,7 @@ "light cream" ], "title": "White Russian recipe", - "url": "http://www.drinksmixer.com/drink5014.html" + "url": "https://www.drinksmixer.com/drink5014.html" }, { "directions": "Serve over ice cubes in an old-fashioned glass.", @@ -42767,7 +42767,7 @@ "cream" ], "title": "White Russian #2 recipe", - "url": "http://www.drinksmixer.com/drink5015.html" + "url": "https://www.drinksmixer.com/drink5015.html" }, { "directions": "Pour vanilla vodka and kahlua over ice. Top off with light cream and enjoy.", @@ -42777,7 +42777,7 @@ "light cream" ], "title": "White Russian #3 recipe", - "url": "http://www.drinksmixer.com/drink5016.html" + "url": "https://www.drinksmixer.com/drink5016.html" }, { "directions": "Pour over lots of ice.", @@ -42786,7 +42786,7 @@ "white creme de menthe" ], "title": "White Spider recipe", - "url": "http://www.drinksmixer.com/drink5017.html" + "url": "https://www.drinksmixer.com/drink5017.html" }, { "directions": "Shake ingredients with ice, strain into cocktail glass.", @@ -42796,7 +42796,7 @@ "Cointreau\u00ae orange liqueur" ], "title": "White Spider #2 recipe", - "url": "http://www.drinksmixer.com/drink5018.html" + "url": "https://www.drinksmixer.com/drink5018.html" }, { "directions": "Add the cola slowly to the pina colada mix.", @@ -42805,7 +42805,7 @@ "cola" ], "title": "White Splash recipe", - "url": "http://www.drinksmixer.com/drink5019.html" + "url": "https://www.drinksmixer.com/drink5019.html" }, { "directions": "The trick to getting the look of the tornado is to pour the tequila rose slowly on the side of the shooter glass on top of the sambuca.", @@ -42814,7 +42814,7 @@ "Tequila Rose\u00ae strawberry cream liqueur" ], "title": "White Tornado recipe", - "url": "http://www.drinksmixer.com/drink5020.html" + "url": "https://www.drinksmixer.com/drink5020.html" }, { "directions": "Pour ingredients over ice. Garnish with a lime wedge. Ingredients can be varied to taste.", @@ -42824,7 +42824,7 @@ "lime" ], "title": "White Trash recipe", - "url": "http://www.drinksmixer.com/drink5021.html" + "url": "https://www.drinksmixer.com/drink5021.html" }, { "directions": "Shake ingredients with ice, strain into a cocktail glass, and serve.", @@ -42833,7 +42833,7 @@ "white creme de menthe" ], "title": "White Way Cocktail recipe", - "url": "http://www.drinksmixer.com/drink5022.html" + "url": "https://www.drinksmixer.com/drink5022.html" }, { "directions": "Shake and strain into a shot glass.", @@ -42842,7 +42842,7 @@ "Irish cream" ], "title": "White Witch recipe", - "url": "http://www.drinksmixer.com/drink5023.html" + "url": "https://www.drinksmixer.com/drink5023.html" }, { "directions": "Place all ingredients into a blender and blend until smooth. Serve in a margarita glass.", @@ -42853,7 +42853,7 @@ "lime juice" ], "title": "Whitecap Margarita recipe", - "url": "http://www.drinksmixer.com/drink5024.html" + "url": "https://www.drinksmixer.com/drink5024.html" }, { "directions": "Pour vodka, tequila and orange juice into a cocktail glass. Finally, add a dash of grenadine.", @@ -42864,7 +42864,7 @@ "grenadine syrup" ], "title": "Whiting Sunset recipe", - "url": "http://www.drinksmixer.com/drink5025.html" + "url": "https://www.drinksmixer.com/drink5025.html" }, { "directions": "Add ingredients chilled for better flavor. Avoid ice cubes to prevent watered down taste. Mix rum first (must be a white rum), add a dark type of wine (blush or red is fine), and finally a touch of lemon juice. Get ready to have fun!", @@ -42874,7 +42874,7 @@ "lemon juice" ], "title": "Whitney recipe", - "url": "http://www.drinksmixer.com/drink5026.html" + "url": "https://www.drinksmixer.com/drink5026.html" }, { "directions": "Layer over ice and serve.", @@ -42885,7 +42885,7 @@ "cream" ], "title": "The Whole Maryann recipe", - "url": "http://www.drinksmixer.com/drink5027.html" + "url": "https://www.drinksmixer.com/drink5027.html" }, { "directions": "Add everything to a large cooler or similar. Add one block of ice and mix. Serve.", @@ -42900,7 +42900,7 @@ "fruit punch" ], "title": "Whoomp recipe", - "url": "http://www.drinksmixer.com/drink5028.html" + "url": "https://www.drinksmixer.com/drink5028.html" }, { "directions": "Combine all together. If too strong, add more soda. For more kick, add more everclear.", @@ -42913,7 +42913,7 @@ "7-Up\u00ae soda" ], "title": "Whoop Juice recipe", - "url": "http://www.drinksmixer.com/drink5029.html" + "url": "https://www.drinksmixer.com/drink5029.html" }, { "directions": "Best in a large mason jar. Blue going down, blue coming up.", @@ -42928,7 +42928,7 @@ "7-Up\u00ae soda" ], "title": "Whop Me Down Sweet Jesus recipe", - "url": "http://www.drinksmixer.com/drink5030.html" + "url": "https://www.drinksmixer.com/drink5030.html" }, { "directions": "Shake all ingredients with ice, strain into a cocktail glass, and serve.", @@ -42939,7 +42939,7 @@ "lemon juice" ], "title": "Why Not? recipe", - "url": "http://www.drinksmixer.com/drink5031.html" + "url": "https://www.drinksmixer.com/drink5031.html" }, { "directions": "Dip the rim of a cocktail glass in amaretto and then into powdered sugar. Shake all alcohol and cream with ice and strain into the rimmed cocktail glass. Garnish with a cinnamon stick and whipped cream (optional)", @@ -42951,7 +42951,7 @@ "cream" ], "title": "Wicked Tasty Treat recipe", - "url": "http://www.drinksmixer.com/drink5032.html" + "url": "https://www.drinksmixer.com/drink5032.html" }, { "directions": "Fill an old-fashioned glass half full with ice. Add first three ingredients into the glass and sway lightly to mix them together. Add the 2 drops of grenadine for the red hour glass on the bottom of the widow maker spider.", @@ -42962,7 +42962,7 @@ "grenadine syrup" ], "title": "Widow Maker recipe", - "url": "http://www.drinksmixer.com/drink5033.html" + "url": "https://www.drinksmixer.com/drink5033.html" }, { "directions": "In a shaker half-filled with ice cubes, combine all of the ingredients. Shake well. Strain into a cocktail glass.", @@ -42972,7 +42972,7 @@ "milk" ], "title": "Widow Woods' Nightcap recipe", - "url": "http://www.drinksmixer.com/drink5034.html" + "url": "https://www.drinksmixer.com/drink5034.html" }, { "directions": "Shake all ingredients with ice, strain into a cocktail glass, and serve.", @@ -42983,7 +42983,7 @@ "bitters" ], "title": "Widow's Kiss recipe", - "url": "http://www.drinksmixer.com/drink5035.html" + "url": "https://www.drinksmixer.com/drink5035.html" }, { "directions": "Pour vodka in first. Put cherry in last. Add ice if needed. Mix well and serve in a cocktail glass.", @@ -42994,7 +42994,7 @@ "maraschino cherries" ], "title": "Wiggle Worm recipe", - "url": "http://www.drinksmixer.com/drink5036.html" + "url": "https://www.drinksmixer.com/drink5036.html" }, { "directions": "Shake.", @@ -43004,7 +43004,7 @@ "Scotch whisky" ], "title": "Wild Ass Indian recipe", - "url": "http://www.drinksmixer.com/drink5037.html" + "url": "https://www.drinksmixer.com/drink5037.html" }, { "directions": "Add all ingredients into a shot glass, slam it on the table and shoot it, followed promptly with a beer.", @@ -43014,7 +43014,7 @@ "strawberry schnapps" ], "title": "Wild Berry Pop-Tart recipe", - "url": "http://www.drinksmixer.com/drink5038.html" + "url": "https://www.drinksmixer.com/drink5038.html" }, { "directions": "Combine, chill and strain into either a shot glass or ups glass.", @@ -43023,7 +43023,7 @@ "peppermint schnapps" ], "title": "Wild Peppertini recipe", - "url": "http://www.drinksmixer.com/drink5039.html" + "url": "https://www.drinksmixer.com/drink5039.html" }, { "directions": "Fill a hurricane glass with ice, pour in malibu, peach schnapps and 151. Pour juices on top followed by a splash of grenadine. Use a shaker tin to cover the glass and give a couple of good shakes.", @@ -43037,7 +43037,7 @@ "grenadine syrup" ], "title": "Wild Sex recipe", - "url": "http://www.drinksmixer.com/drink5040.html" + "url": "https://www.drinksmixer.com/drink5040.html" }, { "directions": "Fill a 16 oz. cup with ice. Add shots and almost-fill with equal parts of sour mix and cranberry juice. Top with a splash of grenadine, and serve.", @@ -43052,7 +43052,7 @@ "grenadine syrup" ], "title": "Wild Squirrel Sex recipe", - "url": "http://www.drinksmixer.com/drink5041.html" + "url": "https://www.drinksmixer.com/drink5041.html" }, { "directions": "Place all ingredients into blender with ice and blend until slushy. Adjust amount of ice to achieve proper consistency. Rim of glass can be salted if desired.", @@ -43065,7 +43065,7 @@ "sugar" ], "title": "Wild Thing #2 recipe", - "url": "http://www.drinksmixer.com/drink5042.html" + "url": "https://www.drinksmixer.com/drink5042.html" }, { "directions": "Pour over ice into an old-fashioned glass. Garnish with a lime wheel.", @@ -43076,7 +43076,7 @@ "lime juice" ], "title": "Wild Thing recipe", - "url": "http://www.drinksmixer.com/drink5043.html" + "url": "https://www.drinksmixer.com/drink5043.html" }, { "directions": "Pour each ingredient into a shaker. Shake well. Serve in a highball glass over ice.", @@ -43088,7 +43088,7 @@ "orange juice" ], "title": "Wild Wendy recipe", - "url": "http://www.drinksmixer.com/drink5044.html" + "url": "https://www.drinksmixer.com/drink5044.html" }, { "directions": "Take ink pen and stir well!", @@ -43098,7 +43098,7 @@ "cranberry juice" ], "title": "Wild Wild West recipe", - "url": "http://www.drinksmixer.com/drink5045.html" + "url": "https://www.drinksmixer.com/drink5045.html" }, { "directions": "Pour all ingredients over ice in a tall glass.", @@ -43110,7 +43110,7 @@ "cranberry juice" ], "title": "Wile E Coyote recipe", - "url": "http://www.drinksmixer.com/drink5046.html" + "url": "https://www.drinksmixer.com/drink5046.html" }, { "directions": "Shake all ingredients with ice, strain into a cocktail glass, and serve.", @@ -43121,7 +43121,7 @@ "orange juice" ], "title": "Will Rogers recipe", - "url": "http://www.drinksmixer.com/drink5047.html" + "url": "https://www.drinksmixer.com/drink5047.html" }, { "directions": "In a shaker, add southern comfort, rock and rye, creme de fraise, amaretto and sour mix. Fill with orange juice. Pour into shot glasses.", @@ -43134,7 +43134,7 @@ "orange juice" ], "title": "Will Willy Wander recipe", - "url": "http://www.drinksmixer.com/drink5048.html" + "url": "https://www.drinksmixer.com/drink5048.html" }, { "directions": "Fill a highball glass with ice. Pour in vodka, then fill up with sprite. Slowly pour the blue curacao on top, followed by the grenadine. Serve as is, allowing the guest to stir it until purple.", @@ -43145,7 +43145,7 @@ "Sprite\u00ae soda" ], "title": "William's Rainbow recipe", - "url": "http://www.drinksmixer.com/drink5049.html" + "url": "https://www.drinksmixer.com/drink5049.html" }, { "directions": "Stir first three ingredients together and pour over ice in an old-fashioned glass. Top with a maraschino cherry.", @@ -43156,7 +43156,7 @@ "ice" ], "title": "Windjammer recipe", - "url": "http://www.drinksmixer.com/drink5050.html" + "url": "https://www.drinksmixer.com/drink5050.html" }, { "directions": "Mix all ingredients in a blender until smooth. Makes 2 servings.", @@ -43169,7 +43169,7 @@ "ice" ], "title": "Windy Beach recipe", - "url": "http://www.drinksmixer.com/drink5051.html" + "url": "https://www.drinksmixer.com/drink5051.html" }, { "directions": "Mix wine and lemon-lime soda. Pour over ice cubes in an old-fashioned glass.", @@ -43178,7 +43178,7 @@ "lemon-lime soda" ], "title": "Wine Cooler recipe", - "url": "http://www.drinksmixer.com/drink5052.html" + "url": "https://www.drinksmixer.com/drink5052.html" }, { "directions": "Combine all of the ingredients and pour over a block of ice.", @@ -43190,7 +43190,7 @@ "pineapple juice" ], "title": "Wine Punch recipe", - "url": "http://www.drinksmixer.com/drink5053.html" + "url": "https://www.drinksmixer.com/drink5053.html" }, { "directions": "Mix ingredients in a highball glass with ice.", @@ -43200,7 +43200,7 @@ "ginger ale" ], "title": "Moscow Mule recipe", - "url": "http://www.drinksmixer.com/drink5054.html" + "url": "https://www.drinksmixer.com/drink5054.html" }, { "directions": "Add the vodka and orange juice to a collins glass filled with ice. Top with 7-Up.", @@ -43210,7 +43210,7 @@ "7-Up\u00ae soda" ], "title": "Hal Ligon recipe", - "url": "http://www.drinksmixer.com/drink5055.html" + "url": "https://www.drinksmixer.com/drink5055.html" }, { "directions": "Combine vanilla vodka, orange juice and some ice cubes in a highball glass and stir.", @@ -43219,7 +43219,7 @@ "orange juice" ], "title": "Creamsicle Screwdriver recipe", - "url": "http://www.drinksmixer.com/drink5056.html" + "url": "https://www.drinksmixer.com/drink5056.html" }, { "directions": "Mix contents in a martini shaker with ice and serve in a chilled martini glass.", @@ -43231,7 +43231,7 @@ "orange juice" ], "title": "Bronx Martini recipe", - "url": "http://www.drinksmixer.com/drink5057.html" + "url": "https://www.drinksmixer.com/drink5057.html" }, { "directions": "Stir with ice and strain into a chilled cocktail glass 3/4 filled with cracked ice. Add a splash of soda water if desired. Garnish with a half slice of orange. ", @@ -43241,7 +43241,7 @@ "Campari\u00ae bitters" ], "title": "Negroni Cocktail recipe", - "url": "http://www.drinksmixer.com/drink5060.html" + "url": "https://www.drinksmixer.com/drink5060.html" }, { "directions": "Stir with ice and strain into a chilled cocktail glass. Add a twist of lemon.", @@ -43250,7 +43250,7 @@ "dry vermouth" ], "title": "Montgomery recipe", - "url": "http://www.drinksmixer.com/drink5061.html" + "url": "https://www.drinksmixer.com/drink5061.html" }, { "directions": "Shake well until ice cold, strain into a deep champagne goblet. Add a thin slice of lemon-peel.", @@ -43260,7 +43260,7 @@ "Kina\u00ae Lillet Blanc wine" ], "title": "Vesper recipe", - "url": "http://www.drinksmixer.com/drink5062.html" + "url": "https://www.drinksmixer.com/drink5062.html" }, { "directions": "Slice a lemon in half. Rub the rim of a collins glass with the lemon and dip into sugar to coat the edge. Pare the circumference of each lemon half's peel and add to the glass. Shake brandy, lemon juice, orange curacao and bitters in a shaker with crushed ice and strain into the collins glass. Add an orange slice.", @@ -43271,7 +43271,7 @@ "Angostura\u00ae bitters" ], "title": "Brandy Crusta recipe", - "url": "http://www.drinksmixer.com/drink5063.html" + "url": "https://www.drinksmixer.com/drink5063.html" }, { "directions": "Shake and strain into a double-cocktail glass filled with crushed ice.", @@ -43282,7 +43282,7 @@ "caster sugar" ], "title": "Abracadabra recipe", - "url": "http://www.drinksmixer.com/drink5064.html" + "url": "https://www.drinksmixer.com/drink5064.html" }, { "directions": "Shake well and strain into a cordial glass. Sprinkle with nutmeg.", @@ -43293,7 +43293,7 @@ "egg" ], "title": "Absent Friend recipe", - "url": "http://www.drinksmixer.com/drink5065.html" + "url": "https://www.drinksmixer.com/drink5065.html" }, { "directions": "Shake and strain into a highball glass with cracked ice.", @@ -43304,7 +43304,7 @@ "grapefruit juice" ], "title": "Acapulco Gold recipe", - "url": "http://www.drinksmixer.com/drink5066.html" + "url": "https://www.drinksmixer.com/drink5066.html" }, { "directions": "Shake and strain into a cocktail glass, and garnish with a cherry and orange slice.", @@ -43315,7 +43315,7 @@ "coconut cream" ], "title": "Acapulcoco recipe", - "url": "http://www.drinksmixer.com/drink5067.html" + "url": "https://www.drinksmixer.com/drink5067.html" }, { "directions": "Shake briefly with a glassful of crushed ice, and strain into an old-fashioned glass. Garnish with a slice of lime or cherry.", @@ -43329,7 +43329,7 @@ "Parfait Amour\u00ae orange liqueur" ], "title": "Agent Provocateur recipe", - "url": "http://www.drinksmixer.com/drink5068.html" + "url": "https://www.drinksmixer.com/drink5068.html" }, { "directions": "Shake and strain into an old-fashioned glass filled with cracked/broken ice. Add a maraschino cherry.", @@ -43340,7 +43340,7 @@ "triple sec" ], "title": "Albert 2000 recipe", - "url": "http://www.drinksmixer.com/drink5069.html" + "url": "https://www.drinksmixer.com/drink5069.html" }, { "directions": "Blend briefly with a half a glassful of crushed ice. Serve in a goblet with grated orange zest, chocolate and nutmeg.", @@ -43350,7 +43350,7 @@ "vanilla ice cream" ], "title": "Alaskan Orange recipe", - "url": "http://www.drinksmixer.com/drink5070.html" + "url": "https://www.drinksmixer.com/drink5070.html" }, { "directions": "Shake well and strain into a champagne saucer.", @@ -43362,7 +43362,7 @@ "egg" ], "title": "Alexandra #2 recipe", - "url": "http://www.drinksmixer.com/drink5071.html" + "url": "https://www.drinksmixer.com/drink5071.html" }, { "directions": "Shake and strain into an old-fashioned glass three-quarters filled with cracked ice. Add an orange slice or a cherry.", @@ -43372,7 +43372,7 @@ "pineapple juice" ], "title": "Algonquin Bar Punch recipe", - "url": "http://www.drinksmixer.com/drink5072.html" + "url": "https://www.drinksmixer.com/drink5072.html" }, { "directions": "Make the cocoa in an irish coffee cup and add the cognac.", @@ -43381,7 +43381,7 @@ "cocoa" ], "title": "Alhambra recipe", - "url": "http://www.drinksmixer.com/drink5073.html" + "url": "https://www.drinksmixer.com/drink5073.html" }, { "directions": "Blend briefly with a glassful of crushed ice. Garnish with a pineapple slice or cherry, add straws, and serve in a pina colada glass.", @@ -43393,7 +43393,7 @@ "whipping cream" ], "title": "Amaretto Colada recipe", - "url": "http://www.drinksmixer.com/drink5074.html" + "url": "https://www.drinksmixer.com/drink5074.html" }, { "directions": "Add to a champagne saucer filled with crushed ice. Serve with short straws and a cherry.", @@ -43401,7 +43401,7 @@ "amaretto almond liqueur" ], "title": "Amaretto Frappe recipe", - "url": "http://www.drinksmixer.com/drink5075.html" + "url": "https://www.drinksmixer.com/drink5075.html" }, { "directions": "Rim a collins glass with lime juice and dip in caster sugar. Fill with broken ice. Shake all ingredients in a shaker and strain into the collins glass. Add a slice of lime or a cherry, and serve with straws.", @@ -43414,7 +43414,7 @@ "sugar syrup" ], "title": "Ambience recipe", - "url": "http://www.drinksmixer.com/drink5076.html" + "url": "https://www.drinksmixer.com/drink5076.html" }, { "directions": "Add ingredients to a frosted ice-filled highball glass.", @@ -43424,7 +43424,7 @@ "lemonade" ], "title": "American Glory recipe", - "url": "http://www.drinksmixer.com/drink5077.html" + "url": "https://www.drinksmixer.com/drink5077.html" }, { "directions": "Shake and strain into a cocktail glass.", @@ -43436,7 +43436,7 @@ "grenadine syrup" ], "title": "Amigo recipe", - "url": "http://www.drinksmixer.com/drink5078.html" + "url": "https://www.drinksmixer.com/drink5078.html" }, { "directions": "Shake with a glassful of broken ice and pour, unstrained, into an old-fashioned glass.", @@ -43446,7 +43446,7 @@ "mandarin juice" ], "title": "Amsterdam recipe", - "url": "http://www.drinksmixer.com/drink5079.html" + "url": "https://www.drinksmixer.com/drink5079.html" }, { "directions": "Shake ingredients and strain into an old-fashioned glass, three-quarters filled with broken ice.", @@ -43457,7 +43457,7 @@ "Angostura\u00ae bitters" ], "title": "Andalusian Smile recipe", - "url": "http://www.drinksmixer.com/drink5080.html" + "url": "https://www.drinksmixer.com/drink5080.html" }, { "directions": "Shake and strain into a cocktail glass, and sprinkle grated chocolate on the surface.", @@ -43468,7 +43468,7 @@ "cocoa powder" ], "title": "Angel's Treat recipe", - "url": "http://www.drinksmixer.com/drink5081.html" + "url": "https://www.drinksmixer.com/drink5081.html" }, { "directions": "Shake and strain into a cordial glass. Sprinkle with nutmeg.", @@ -43479,7 +43479,7 @@ "egg" ], "title": "Anisette Cocktail recipe", - "url": "http://www.drinksmixer.com/drink5082.html" + "url": "https://www.drinksmixer.com/drink5082.html" }, { "directions": "Blend briefly with half a glassful of crushed ice. Serve in a double cocktail glass with a sprig of mint.", @@ -43489,7 +43489,7 @@ "vanilla ice cream" ], "title": "Apple a la Mode recipe", - "url": "http://www.drinksmixer.com/drink5083.html" + "url": "https://www.drinksmixer.com/drink5083.html" }, { "directions": "Shake with a glassful of broken ice. Pour unstrained into an old-fashioned glass,", @@ -43499,7 +43499,7 @@ "Pimm's\u00ae gin" ], "title": "Apollo 1 recipe", - "url": "http://www.drinksmixer.com/drink5084.html" + "url": "https://www.drinksmixer.com/drink5084.html" }, { "directions": "Add to an ice-filled highball glass with the spent shell of the lemon.", @@ -43509,7 +43509,7 @@ "lemons" ], "title": "Apple Buck recipe", - "url": "http://www.drinksmixer.com/drink5085.html" + "url": "https://www.drinksmixer.com/drink5085.html" }, { "directions": "Add ingredients to a heatproof cup.", @@ -43518,7 +43518,7 @@ "apple juice" ], "title": "Apple Comfort recipe", - "url": "http://www.drinksmixer.com/drink5086.html" + "url": "https://www.drinksmixer.com/drink5086.html" }, { "directions": "Blend briefly with a glassful of crushed ice, and serve in an old-fashioned glass. Sprinkle with cinnamon.", @@ -43528,7 +43528,7 @@ "whipping cream" ], "title": "Apple Of My Eye recipe", - "url": "http://www.drinksmixer.com/drink5087.html" + "url": "https://www.drinksmixer.com/drink5087.html" }, { "directions": "Shake apple brandy, dark rum, lime juice and syrup in a shaker and strain into a frosted collins glass almost filled with crushed ice. Swizzle briefly to frost the glass. Add the apple juice, and serve with a swizzle stick and straws.", @@ -43540,7 +43540,7 @@ "sugar syrup" ], "title": "Apple Swizzle recipe", - "url": "http://www.drinksmixer.com/drink5088.html" + "url": "https://www.drinksmixer.com/drink5088.html" }, { "directions": "Add ingredients to an old-fashioned glass three-quarters filled with broken ice. Serve with a slice of lime or mint sprig.", @@ -43551,7 +43551,7 @@ "lemonade" ], "title": "Apres Ski recipe", - "url": "http://www.drinksmixer.com/drink5089.html" + "url": "https://www.drinksmixer.com/drink5089.html" }, { "directions": "Pour ingredients into an ice-filled collins glass. Add a lemon spiral to finish.", @@ -43564,7 +43564,7 @@ "lemonade" ], "title": "Apricot Cooler recipe", - "url": "http://www.drinksmixer.com/drink5090.html" + "url": "https://www.drinksmixer.com/drink5090.html" }, { "directions": "Shake and strain into a champagne saucer filled with crushed ice.", @@ -43575,7 +43575,7 @@ "lemon juice" ], "title": "Apricot Crush recipe", - "url": "http://www.drinksmixer.com/drink5091.html" + "url": "https://www.drinksmixer.com/drink5091.html" }, { "directions": "Shake ingredients and strain into a cocktail glass.", @@ -43587,7 +43587,7 @@ "pineapple juice" ], "title": "Apricot Tree recipe", - "url": "http://www.drinksmixer.com/drink5092.html" + "url": "https://www.drinksmixer.com/drink5092.html" }, { "directions": "Shake vodka, green creme de menthe and lemon juice, and strain into a champagne flute. Add champagne.", @@ -43598,7 +43598,7 @@ "lemon juice" ], "title": "Aqua Marina recipe", - "url": "http://www.drinksmixer.com/drink5093.html" + "url": "https://www.drinksmixer.com/drink5093.html" }, { "directions": "Shake and strain into a champagne saucer.", @@ -43608,7 +43608,7 @@ "whipping cream" ], "title": "Arago recipe", - "url": "http://www.drinksmixer.com/drink5094.html" + "url": "https://www.drinksmixer.com/drink5094.html" }, { "directions": "Add ingredients to an ice-filled highball glass. Serve with a cherry and lemon slice.", @@ -43619,7 +43619,7 @@ "bitter lemon soda" ], "title": "Arctic Summer recipe", - "url": "http://www.drinksmixer.com/drink5095.html" + "url": "https://www.drinksmixer.com/drink5095.html" }, { "directions": "Add ingredients to an old-fashioned glass, three-quarters filled with broken ice.", @@ -43631,7 +43631,7 @@ "lemonade" ], "title": "Arrowhead recipe", - "url": "http://www.drinksmixer.com/drink5096.html" + "url": "https://www.drinksmixer.com/drink5096.html" }, { "directions": "Blend briefly with three-quarters glassful of crushed ice in a collins glass, then add the soda water. Serve with straws and garnish with a slice of lemon and a sugar-dipped strawberry.", @@ -43643,7 +43643,7 @@ "soda water" ], "title": "Arthur's Day Dream recipe", - "url": "http://www.drinksmixer.com/drink5097.html" + "url": "https://www.drinksmixer.com/drink5097.html" }, { "directions": "Shake and strain into a cocktail glass.", @@ -43654,7 +43654,7 @@ "lemon juice" ], "title": "Artists' Special recipe", - "url": "http://www.drinksmixer.com/drink5098.html" + "url": "https://www.drinksmixer.com/drink5098.html" }, { "directions": "Shake and strain into an ice-filled highball glass, and serve with a cherry.", @@ -43665,7 +43665,7 @@ "cherry syrup" ], "title": "Australian Virgin recipe", - "url": "http://www.drinksmixer.com/drink5099.html" + "url": "https://www.drinksmixer.com/drink5099.html" }, { "directions": "Shake and strain into an old-fashioned glass filled with broken ice. Serve with a wedge of orange on the rim.", @@ -43676,7 +43676,7 @@ "lime juice" ], "title": "AWOL recipe", - "url": "http://www.drinksmixer.com/drink5100.html" + "url": "https://www.drinksmixer.com/drink5100.html" }, { "directions": "Pour ingredients into a champagne flute and serve.", @@ -43686,7 +43686,7 @@ "gold tequila" ], "title": "Aztec recipe", - "url": "http://www.drinksmixer.com/drink5101.html" + "url": "https://www.drinksmixer.com/drink5101.html" }, { "directions": "Shake and strain into an ice-filled collins glass.", @@ -43700,7 +43700,7 @@ "orgeat syrup" ], "title": "Aztec Surfboard recipe", - "url": "http://www.drinksmixer.com/drink5102.html" + "url": "https://www.drinksmixer.com/drink5102.html" }, { "directions": "Shake and strain into an ice-filled collins glass, and garnish with fruit.", @@ -43713,7 +43713,7 @@ "egg" ], "title": "Azzuro recipe", - "url": "http://www.drinksmixer.com/drink5103.html" + "url": "https://www.drinksmixer.com/drink5103.html" }, { "directions": "Pour into a glass.\r", @@ -43724,7 +43724,7 @@ "Champagne" ], "title": "B2 C2 recipe", - "url": "http://www.drinksmixer.com/drink5104.html" + "url": "https://www.drinksmixer.com/drink5104.html" }, { "directions": "Pour brandy, lemon juice, sugar syrup and soda water into a frosted glass two-thirds filled with ice. Sprinkle benedictine on top. Serve with straws, and garnish with a cherry and slices of orange and lemon.", @@ -43736,7 +43736,7 @@ "soda water" ], "title": "B&B Collins recipe", - "url": "http://www.drinksmixer.com/drink5105.html" + "url": "https://www.drinksmixer.com/drink5105.html" }, { "directions": "Pour into an ice-filled highball glass. Add the spent shell of the lemon quarter.", @@ -43747,7 +43747,7 @@ "lemons" ], "title": "Bacardi Buck recipe", - "url": "http://www.drinksmixer.com/drink5106.html" + "url": "https://www.drinksmixer.com/drink5106.html" }, { "directions": "Combine ingredients (except champagne and water) in a punch bowl, cover and chill for 2 hours. Add champagne and water, with a little ice. Add 5-10 frozen strawberries. Serve in wine glasses (30 servings).", @@ -43762,7 +43762,7 @@ "water" ], "title": "Bacardi Champagne Punch recipe", - "url": "http://www.drinksmixer.com/drink5107.html" + "url": "https://www.drinksmixer.com/drink5107.html" }, { "directions": "Stir and strain into a frosted cocktail glass. Serve with a green olive.", @@ -43771,7 +43771,7 @@ "dry vermouth" ], "title": "Bacardi Martini recipe", - "url": "http://www.drinksmixer.com/drink5108.html" + "url": "https://www.drinksmixer.com/drink5108.html" }, { "directions": "Add to an ice-filled collins glass. Serve with a slice of orange and straws.", @@ -43783,7 +43783,7 @@ "lemonade" ], "title": "Bacardi Orange recipe", - "url": "http://www.drinksmixer.com/drink5109.html" + "url": "https://www.drinksmixer.com/drink5109.html" }, { "directions": "Shake all the ingredients (except lemonade) and strain into an ice-filled collins glass. Add the lemonade, and serve with seedless grapes.", @@ -43797,7 +43797,7 @@ "lemonade" ], "title": "Bacchanalian Cocktail recipe", - "url": "http://www.drinksmixer.com/drink5110.html" + "url": "https://www.drinksmixer.com/drink5110.html" }, { "directions": "Pour into an old-fashioned glass filled with broken ice. Serve with a twist of lime.", @@ -43807,7 +43807,7 @@ "lime juice" ], "title": "Bacchus recipe", - "url": "http://www.drinksmixer.com/drink5111.html" + "url": "https://www.drinksmixer.com/drink5111.html" }, { "directions": "Pour into an old-fashioned glass three-quarters filled with broken ice.", @@ -43818,7 +43818,7 @@ "lemonade" ], "title": "Bacon and Tomato Sandwich recipe", - "url": "http://www.drinksmixer.com/drink5112.html" + "url": "https://www.drinksmixer.com/drink5112.html" }, { "directions": "Add coffee and liquor to an irish coffee cup and sweeten to taste. Gently float the cream on top, and sprinkle with nutmeg.", @@ -43829,7 +43829,7 @@ "sugar" ], "title": "Balearic Coffee recipe", - "url": "http://www.drinksmixer.com/drink5113.html" + "url": "https://www.drinksmixer.com/drink5113.html" }, { "directions": "Shake rums, juices and syrup and strain into an ice-filled collins glass. Add the orangeade, and serve with in-season fruit and straws.", @@ -43842,7 +43842,7 @@ "pineapple syrup" ], "title": "Bali Punch recipe", - "url": "http://www.drinksmixer.com/drink5114.html" + "url": "https://www.drinksmixer.com/drink5114.html" }, { "directions": "Apply lemon juice to the rim of a frosted double-cocktail glass, and dip into caster sugar. Fill the glass with crushed ice, add the ingredients and blend briefly. Serve with a lemon juice-dipped slice of banana.", @@ -43854,7 +43854,7 @@ "banana" ], "title": "Banana Margarita recipe", - "url": "http://www.drinksmixer.com/drink5115.html" + "url": "https://www.drinksmixer.com/drink5115.html" }, { "directions": "Blend briefly with half a glassful of crushed ice. Serve in a double-cocktail glass.", @@ -43865,7 +43865,7 @@ "vanilla ice cream" ], "title": "Banana Nutbread recipe", - "url": "http://www.drinksmixer.com/drink5116.html" + "url": "https://www.drinksmixer.com/drink5116.html" }, { "directions": "Add to an ice-filled highball glass, and garnish with a cherry and slice of lime.", @@ -43878,7 +43878,7 @@ "cherryade" ], "title": "Bar Bandit recipe", - "url": "http://www.drinksmixer.com/drink5117.html" + "url": "https://www.drinksmixer.com/drink5117.html" }, { "directions": "Add to an ice-filled highball glass. Garnish with a slice of seville orange speared with a cherry, and paper parasol.", @@ -43890,7 +43890,7 @@ "lemonade" ], "title": "Barcelona recipe", - "url": "http://www.drinksmixer.com/drink5118.html" + "url": "https://www.drinksmixer.com/drink5118.html" }, { "directions": "Shake the sherry, gin, lemon juice and syrup in a shaker. Strain into a frosted highball glass half filled with ice, then add chilled soda. Garnish with a lemon slice and a cherry, and serve with straws and a muddler.", @@ -43902,7 +43902,7 @@ "soda water" ], "title": "Barcelona Fizz recipe", - "url": "http://www.drinksmixer.com/drink5119.html" + "url": "https://www.drinksmixer.com/drink5119.html" }, { "directions": "Blend ingredients (except cream) briefly with half a glassful of crushed ice in a collins glass. Top with whipped cream. Serve with a cherry.", @@ -43916,7 +43916,7 @@ "whipped cream" ], "title": "Barnaby's Buffalo Blizzard recipe", - "url": "http://www.drinksmixer.com/drink5120.html" + "url": "https://www.drinksmixer.com/drink5120.html" }, { "directions": "Add coffee and liquors to an irish coffee cup and sweeten to taste. Gently float the cream on top, and sprinkle with grated chocolate.", @@ -43928,7 +43928,7 @@ "sugar" ], "title": "Bavarian Coffee recipe", - "url": "http://www.drinksmixer.com/drink5121.html" + "url": "https://www.drinksmixer.com/drink5121.html" }, { "directions": "Shake and strain into a cordial glass, and garnish with two halves of a cherry.", @@ -43939,7 +43939,7 @@ "grenadine syrup" ], "title": "Bazooka recipe", - "url": "http://www.drinksmixer.com/drink5122.html" + "url": "https://www.drinksmixer.com/drink5122.html" }, { "directions": "Shake and strain into a cordial glass half-filled with broken ice.", @@ -43951,7 +43951,7 @@ "pineapple syrup" ], "title": "Beach Peach recipe", - "url": "http://www.drinksmixer.com/drink5123.html" + "url": "https://www.drinksmixer.com/drink5123.html" }, { "directions": "Carefully add the ingredients, in the order listed, into a cordial glass; layering each on top of the previous.", @@ -43961,7 +43961,7 @@ "Bailey's\u00ae Irish cream" ], "title": "Beam Me Up Scotty recipe", - "url": "http://www.drinksmixer.com/drink5124.html" + "url": "https://www.drinksmixer.com/drink5124.html" }, { "directions": "Shake the gin, whisky and syrup in a shaker. Strain into an old-fashioned glass half-filled with broken ice. Add the lemon.", @@ -43972,7 +43972,7 @@ "bitter lemon soda" ], "title": "Beef On Rye recipe", - "url": "http://www.drinksmixer.com/drink5125.html" + "url": "https://www.drinksmixer.com/drink5125.html" }, { "directions": "Add to an ice-filled highball glass, and serve with in-season fruit and straws.", @@ -43983,7 +43983,7 @@ "bitter lemon soda" ], "title": "Beef Salad recipe", - "url": "http://www.drinksmixer.com/drink5126.html" + "url": "https://www.drinksmixer.com/drink5126.html" }, { "directions": "Pour coffee and liquor into an irish coffee cup and sweeten to taste. Gently float the cream on top, and sprinkle with grated chocolate.", @@ -43993,7 +43993,7 @@ "whipped cream" ], "title": "Belgian Coffee recipe", - "url": "http://www.drinksmixer.com/drink5127.html" + "url": "https://www.drinksmixer.com/drink5127.html" }, { "directions": "Shake and strain into a cordial glass and serve.", @@ -44003,7 +44003,7 @@ "raspberry syrup" ], "title": "Belmont recipe", - "url": "http://www.drinksmixer.com/drink5128.html" + "url": "https://www.drinksmixer.com/drink5128.html" }, { "directions": "Shake and strain into an old-fashioned glass filled with broken ice.", @@ -44014,7 +44014,7 @@ "Angostura\u00ae bitters" ], "title": "Bennet Cocktail recipe", - "url": "http://www.drinksmixer.com/drink5129.html" + "url": "https://www.drinksmixer.com/drink5129.html" }, { "directions": "Shake and strain into an old-fashioned glass filled with broken ice.", @@ -44026,7 +44026,7 @@ "Rose's\u00ae lime juice" ], "title": "Best Year recipe", - "url": "http://www.drinksmixer.com/drink5130.html" + "url": "https://www.drinksmixer.com/drink5130.html" }, { "directions": "Stir and strain into a liqueur or cordial glass. Serve with a cherry on a stick.", @@ -44039,7 +44039,7 @@ "dark creme de cacao" ], "title": "Big Toe recipe", - "url": "http://www.drinksmixer.com/drink5131.html" + "url": "https://www.drinksmixer.com/drink5131.html" }, { "directions": "Shake ingredients (except soda) well and strain into a highball glass half-filled with ice. Add the soda, and garnish with a slice of lemon and a cherry. Serve with straws and a muddler.", @@ -44052,7 +44052,7 @@ "soda water" ], "title": "Bird of Paradise Fizz recipe", - "url": "http://www.drinksmixer.com/drink5132.html" + "url": "https://www.drinksmixer.com/drink5132.html" }, { "directions": "Add ingredients to an old-fashioned glass half-filled with broken ice. Garnish with a cherry and an orange twist.", @@ -44064,7 +44064,7 @@ "lemonade" ], "title": "Biscay recipe", - "url": "http://www.drinksmixer.com/drink5133.html" + "url": "https://www.drinksmixer.com/drink5133.html" }, { "directions": "Add to a wine goblet filled with broken ice. Serve with short straws.", @@ -44074,7 +44074,7 @@ "bitter lemon soda" ], "title": "Bitter Experience recipe", - "url": "http://www.drinksmixer.com/drink5134.html" + "url": "https://www.drinksmixer.com/drink5134.html" }, { "directions": "Shake and strain into a cocktail saucer.", @@ -44085,7 +44085,7 @@ "dry sherry" ], "title": "Black Dublinski recipe", - "url": "http://www.drinksmixer.com/drink5135.html" + "url": "https://www.drinksmixer.com/drink5135.html" }, { "directions": "Pour into a wine glass and garnish with a black grape.", @@ -44094,7 +44094,7 @@ "Champagne" ], "title": "Black Tie recipe", - "url": "http://www.drinksmixer.com/drink5136.html" + "url": "https://www.drinksmixer.com/drink5136.html" }, { "directions": "Pour into an ice-filled highball glass.", @@ -44105,7 +44105,7 @@ "cola" ], "title": "Blackberry Cola recipe", - "url": "http://www.drinksmixer.com/drink5137.html" + "url": "https://www.drinksmixer.com/drink5137.html" }, { "directions": "Dissolve sugar, shake and strain ingredients (except lemonade) into a highball glass half-filled with ice. Add the lemonade, and garnish with a cherry and orange slice. Serve with straws and a muddler.", @@ -44117,7 +44117,7 @@ "lemonade" ], "title": "Blackberry Fizz recipe", - "url": "http://www.drinksmixer.com/drink5138.html" + "url": "https://www.drinksmixer.com/drink5138.html" }, { "directions": "Shake ingredients and strain into a shot glass.", @@ -44128,7 +44128,7 @@ "sugar syrup" ], "title": "Blackout recipe", - "url": "http://www.drinksmixer.com/drink5139.html" + "url": "https://www.drinksmixer.com/drink5139.html" }, { "directions": "Shake and strain into an ice-filled old-fashioned glass. Garnish with a cherry and a slice of orange.", @@ -44139,7 +44139,7 @@ "orange juice" ], "title": "Blue Star recipe", - "url": "http://www.drinksmixer.com/drink5140.html" + "url": "https://www.drinksmixer.com/drink5140.html" }, { "directions": "Stir and strain into a brandy snifter glass.", @@ -44149,7 +44149,7 @@ "blueberry syrup" ], "title": "Bluebeard recipe", - "url": "http://www.drinksmixer.com/drink5141.html" + "url": "https://www.drinksmixer.com/drink5141.html" }, { "directions": "Shake liquors, syrup and juice in a shaker, and strain into an ice-filled highball glass. Add the lemonade.", @@ -44163,7 +44163,7 @@ "lemonade" ], "title": "Blueberry Rumba recipe", - "url": "http://www.drinksmixer.com/drink5142.html" + "url": "https://www.drinksmixer.com/drink5142.html" }, { "directions": "Shake and strain into a champagne flute.", @@ -44174,7 +44174,7 @@ "whipping cream" ], "title": "Blushin' Russian recipe", - "url": "http://www.drinksmixer.com/drink5143.html" + "url": "https://www.drinksmixer.com/drink5143.html" }, { "directions": "Pour ingredients into an old-fashioned glass half-filled with broken ice.", @@ -44184,7 +44184,7 @@ "bitter lemon soda" ], "title": "Blushing Barmaid recipe", - "url": "http://www.drinksmixer.com/drink5144.html" + "url": "https://www.drinksmixer.com/drink5144.html" }, { "directions": "Pour into a heatproof cup, and sweeten to taste with sugar.", @@ -44195,7 +44195,7 @@ "cocoa" ], "title": "Brandy Mocha Almond recipe", - "url": "http://www.drinksmixer.com/drink5145.html" + "url": "https://www.drinksmixer.com/drink5145.html" }, { "directions": "Mix and chill all but fruit and lemonade in a punch bowl for 2 - 3 hours. Add remaining ingredients when serving.", @@ -44209,7 +44209,7 @@ "orange" ], "title": "Boatman's Cup recipe", - "url": "http://www.drinksmixer.com/drink5146.html" + "url": "https://www.drinksmixer.com/drink5146.html" }, { "directions": "Shake and strain. Serve with a cherry or orange slice.", @@ -44221,7 +44221,7 @@ "passion-fruit syrup" ], "title": "Boca Chica recipe", - "url": "http://www.drinksmixer.com/drink5147.html" + "url": "https://www.drinksmixer.com/drink5147.html" }, { "directions": "Add to punch bowl with sufficient ice to chill. Serve with sliced fruit.", @@ -44236,7 +44236,7 @@ "sugar syrup" ], "title": "Bombay Punch recipe", - "url": "http://www.drinksmixer.com/drink5148.html" + "url": "https://www.drinksmixer.com/drink5148.html" }, { "directions": "Stir and strain into a brandy snifter.", @@ -44245,7 +44245,7 @@ "Mandarine Napoleon\u00ae orange liqueur" ], "title": "Bonaparte recipe", - "url": "http://www.drinksmixer.com/drink5149.html" + "url": "https://www.drinksmixer.com/drink5149.html" }, { "directions": "Blend briefly with half a glassful of crushed ice in a highball glass. Garnish with an orange slice, and serve with straws.", @@ -44256,7 +44256,7 @@ "vanilla ice cream" ], "title": "Bonaparte Velvet recipe", - "url": "http://www.drinksmixer.com/drink5150.html" + "url": "https://www.drinksmixer.com/drink5150.html" }, { "directions": "Stir and strain into an old-fashioned glass three-quarters filled with broken ice.", @@ -44266,7 +44266,7 @@ "Drambuie\u00ae Scotch whisky" ], "title": "Bonny Prince recipe", - "url": "http://www.drinksmixer.com/drink5151.html" + "url": "https://www.drinksmixer.com/drink5151.html" }, { "directions": "Stir and strain into an ice-filled wine glass.", @@ -44276,7 +44276,7 @@ "creme de cassis" ], "title": "Bordij recipe", - "url": "http://www.drinksmixer.com/drink5152.html" + "url": "https://www.drinksmixer.com/drink5152.html" }, { "directions": "Dissolve sugar and combine ingredients in a punch bowl with sufficient ice to chill. Add thin wedges of apple. Serve in wine glasses. (16 servings.)", @@ -44291,7 +44291,7 @@ "sugar" ], "title": "Boston Punch recipe", - "url": "http://www.drinksmixer.com/drink5153.html" + "url": "https://www.drinksmixer.com/drink5153.html" }, { "directions": "Pour ingredients into a frosted collins glass, two-thirds filled with ice. Serve with straws and garnish with a slice of orange and a cherry.", @@ -44302,7 +44302,7 @@ "soda water" ], "title": "Bourbon Collins recipe", - "url": "http://www.drinksmixer.com/drink5154.html" + "url": "https://www.drinksmixer.com/drink5154.html" }, { "directions": "Shake and strain into an ice-filled old-fashioned glass and serve with a twist of lemon.", @@ -44313,7 +44313,7 @@ "sugar syrup" ], "title": "Bourbon Triple Sour recipe", - "url": "http://www.drinksmixer.com/drink5155.html" + "url": "https://www.drinksmixer.com/drink5155.html" }, { "directions": "Shake briefly with a glassful of crushed ice and serve in a wine goblet with fruit and straws.", @@ -44330,7 +44330,7 @@ "grenadine syrup" ], "title": "Brain Blender recipe", - "url": "http://www.drinksmixer.com/drink5156.html" + "url": "https://www.drinksmixer.com/drink5156.html" }, { "directions": "Mix ingredients and add to a double cocktail glass filled with crushed ice. Garnish with a cherry, serve with straws.", @@ -44341,7 +44341,7 @@ "apricot juice" ], "title": "Brandied Apricot Frappe recipe", - "url": "http://www.drinksmixer.com/drink5157.html" + "url": "https://www.drinksmixer.com/drink5157.html" }, { "directions": "Pour into an ice-filled highball glass, adding the spent shell of the lemon quarter.", @@ -44351,7 +44351,7 @@ "lemons" ], "title": "Brandy Buck recipe", - "url": "http://www.drinksmixer.com/drink5158.html" + "url": "https://www.drinksmixer.com/drink5158.html" }, { "directions": "Stir ingredients and strain into a cordial glass.", @@ -44362,7 +44362,7 @@ "Green Chartreuse\u00ae" ], "title": "Brandy Champarelle recipe", - "url": "http://www.drinksmixer.com/drink5159.html" + "url": "https://www.drinksmixer.com/drink5159.html" }, { "directions": "Stir ingredients and strain into a brandy snifter.", @@ -44372,7 +44372,7 @@ "Glayva\u00ae Scotch liqueur" ], "title": "Brandy Fino recipe", - "url": "http://www.drinksmixer.com/drink5160.html" + "url": "https://www.drinksmixer.com/drink5160.html" }, { "directions": "Shake the brandy and milk in a shaker, strain into a wine goblet, and add the soda.", @@ -44382,7 +44382,7 @@ "soda water" ], "title": "Brandy Puff recipe", - "url": "http://www.drinksmixer.com/drink5161.html" + "url": "https://www.drinksmixer.com/drink5161.html" }, { "directions": "Combine all but ginger ale in a punch bowl with sufficient ice to chill. Add ginger ale when ready to serve, and pour out into wine glasses.", @@ -44397,7 +44397,7 @@ "raspberries" ], "title": "Brandy Punch recipe", - "url": "http://www.drinksmixer.com/drink5162.html" + "url": "https://www.drinksmixer.com/drink5162.html" }, { "directions": "Add to a goblet filled with crushed ice. Garnish with a mint sprig and some fruit.", @@ -44407,7 +44407,7 @@ "dry ginger ale" ], "title": "Brandy Punch Cocktail recipe", - "url": "http://www.drinksmixer.com/drink5163.html" + "url": "https://www.drinksmixer.com/drink5163.html" }, { "directions": "Add to a cocktail glass in the order listed.", @@ -44417,7 +44417,7 @@ "Angostura\u00ae bitters" ], "title": "Brandy Scaffa recipe", - "url": "http://www.drinksmixer.com/drink5164.html" + "url": "https://www.drinksmixer.com/drink5164.html" }, { "directions": "Carefully layer into a cordial glass in the order given.", @@ -44428,7 +44428,7 @@ "Parfait Amour\u00ae orange liqueur" ], "title": "Brasier d'Ange recipe", - "url": "http://www.drinksmixer.com/drink5165.html" + "url": "https://www.drinksmixer.com/drink5165.html" }, { "directions": "Pour into a collins glass and blend briefly. Garnish with a mint leaf and cherry, and sprinkle with grated chocolate.", @@ -44440,7 +44440,7 @@ "vanilla ice cream" ], "title": "Brazilian Monk recipe", - "url": "http://www.drinksmixer.com/drink5166.html" + "url": "https://www.drinksmixer.com/drink5166.html" }, { "directions": "Shake well and strain into a cocktail glass. Sprinkle with nutmeg.", @@ -44452,7 +44452,7 @@ "egg" ], "title": "Breakfast recipe", - "url": "http://www.drinksmixer.com/drink5167.html" + "url": "https://www.drinksmixer.com/drink5167.html" }, { "directions": "Combine all but champagne in a punch bowl, cover and chill for a minimum of two hours. Add champagne and ice when ready to serve. Pour into wine glasses.", @@ -44468,7 +44468,7 @@ "Champagne" ], "title": "Bride's Bowl recipe", - "url": "http://www.drinksmixer.com/drink5168.html" + "url": "https://www.drinksmixer.com/drink5168.html" }, { "directions": "Pour into a collins glass filled with ice and a lemon spiral.", @@ -44480,7 +44480,7 @@ "ginger ale" ], "title": "Bridesmaid Cooler recipe", - "url": "http://www.drinksmixer.com/drink5169.html" + "url": "https://www.drinksmixer.com/drink5169.html" }, { "directions": "Shake and strain into a cocktail glass.", @@ -44492,7 +44492,7 @@ "caster sugar" ], "title": "Broker's Thought recipe", - "url": "http://www.drinksmixer.com/drink5170.html" + "url": "https://www.drinksmixer.com/drink5170.html" }, { "directions": "Pour frangelico into a double-cocktail glass and add the ice-cream. Coarsely chop the pecan nuts and put them in.", @@ -44502,7 +44502,7 @@ "pecan nuts" ], "title": "Butter Pecan recipe", - "url": "http://www.drinksmixer.com/drink5171.html" + "url": "https://www.drinksmixer.com/drink5171.html" }, { "directions": "Shake and strain into an ice-filled highball glass, add the lemonade and garnish with a celery stick.", @@ -44513,7 +44513,7 @@ "lemonade" ], "title": "Brontosaurus recipe", - "url": "http://www.drinksmixer.com/drink5172.html" + "url": "https://www.drinksmixer.com/drink5172.html" }, { "directions": "Shake and strain into an old-fashioned glass three-quarters filled with broken ice, or serve straight-up.", @@ -44523,7 +44523,7 @@ "maple syrup" ], "title": "Brown Derby recipe", - "url": "http://www.drinksmixer.com/drink5173.html" + "url": "https://www.drinksmixer.com/drink5173.html" }, { "directions": "Blend briefly with half a glassful of crushed ice in a collins glass. Garnish with a cherry and serve with straws.", @@ -44533,7 +44533,7 @@ "vanilla ice cream" ], "title": "Brute recipe", - "url": "http://www.drinksmixer.com/drink5174.html" + "url": "https://www.drinksmixer.com/drink5174.html" }, { "directions": "Add to a frosted wine glass.", @@ -44543,7 +44543,7 @@ "grenadine syrup" ], "title": "Buck's Fizz recipe", - "url": "http://www.drinksmixer.com/drink5175.html" + "url": "https://www.drinksmixer.com/drink5175.html" }, { "directions": "Add to heatproof cup and allow the sugar to dissolve. Dust with nutmeg.", @@ -44554,7 +44554,7 @@ "water" ], "title": "Bumpo recipe", - "url": "http://www.drinksmixer.com/drink5176.html" + "url": "https://www.drinksmixer.com/drink5176.html" }, { "directions": "Shake all but lemonade in a shaker and strain into an ice-filled highball glass. Add the lemonade.", @@ -44567,7 +44567,7 @@ "lemonade" ], "title": "Bury Me Deep recipe", - "url": "http://www.drinksmixer.com/drink5177.html" + "url": "https://www.drinksmixer.com/drink5177.html" }, { "directions": "Shake and strain into an ice-filled highball glass and sprinkle with nutmeg.", @@ -44579,7 +44579,7 @@ "sugar syrup" ], "title": "Butterscotch Milk Punch recipe", - "url": "http://www.drinksmixer.com/drink5178.html" + "url": "https://www.drinksmixer.com/drink5178.html" }, { "directions": "Shake all but the lemonade and strain into an ice-filled highball glass. Add the lemonade and garnish with a cherry and pineapple chunk on stick.", @@ -44591,7 +44591,7 @@ "lemonade" ], "title": "Buttock Clencher recipe", - "url": "http://www.drinksmixer.com/drink5179.html" + "url": "https://www.drinksmixer.com/drink5179.html" }, { "directions": "Serve straight up in a shot glass.", @@ -44600,7 +44600,7 @@ "creme de cacao" ], "title": "M&M recipe", - "url": "http://www.drinksmixer.com/drink5180.html" + "url": "https://www.drinksmixer.com/drink5180.html" }, { "directions": "Pour vodka, midori, and malibu into an ice-filled hurricane glass. Fill with pineapple juice. Stir or shake.", @@ -44611,7 +44611,7 @@ "pineapple juice" ], "title": "M.V.P. recipe", - "url": "http://www.drinksmixer.com/drink5181.html" + "url": "https://www.drinksmixer.com/drink5181.html" }, { "directions": "Combine ingredients in a shaker half-filled with ice cubes. Shake well and strain into a cocktail glass.", @@ -44623,7 +44623,7 @@ "grenadine syrup" ], "title": "Ma Bonnie Wee Hen recipe", - "url": "http://www.drinksmixer.com/drink5182.html" + "url": "https://www.drinksmixer.com/drink5182.html" }, { "directions": "Combine ingredients in a shaker half-filled with ice cubes. Shake well and strain into a cocktail glass.", @@ -44635,7 +44635,7 @@ "grenadine syrup" ], "title": "Ma Wee Hen recipe", - "url": "http://www.drinksmixer.com/drink5183.html" + "url": "https://www.drinksmixer.com/drink5183.html" }, { "directions": "Add gin and midori to a shaker with ice, and fill with equal parts of grape juice and club soda. Shake and strain over ice in a hurricane glass.", @@ -44646,7 +44646,7 @@ "club soda" ], "title": "MacAttack recipe", - "url": "http://www.drinksmixer.com/drink5184.html" + "url": "https://www.drinksmixer.com/drink5184.html" }, { "directions": "Combine ingredients in a shaker half-filled with ice cubes. Shake well and strain into a cocktail glass.", @@ -44659,7 +44659,7 @@ "superfine sugar" ], "title": "Macbeth's Dream recipe", - "url": "http://www.drinksmixer.com/drink5185.html" + "url": "https://www.drinksmixer.com/drink5185.html" }, { "directions": "1. Pour the orange juice into a shot glass, take a napkin and place it over the glass pushing it down toward the juice. (As far as it can go without touching the juice.) \r", @@ -44668,7 +44668,7 @@ "vodka" ], "title": "Machine recipe", - "url": "http://www.drinksmixer.com/drink5186.html" + "url": "https://www.drinksmixer.com/drink5186.html" }, { "directions": "Mix in a shaker one-quarter filled with ice and pour into a liberal shot glass.", @@ -44678,7 +44678,7 @@ "151 proof rum" ], "title": "Mad Cow recipe", - "url": "http://www.drinksmixer.com/drink5187.html" + "url": "https://www.drinksmixer.com/drink5187.html" }, { "directions": "Shake and strain, serving straight up in a shot glass.", @@ -44689,7 +44689,7 @@ "Coca-Cola\u00ae" ], "title": "Mad Hatter recipe", - "url": "http://www.drinksmixer.com/drink5188.html" + "url": "https://www.drinksmixer.com/drink5188.html" }, { "directions": "Serve on the rocks.", @@ -44698,7 +44698,7 @@ "root beer" ], "title": "The Mad Hungarian recipe", - "url": "http://www.drinksmixer.com/drink5189.html" + "url": "https://www.drinksmixer.com/drink5189.html" }, { "directions": "Mix melon liqueur, sour mix, and soda water with ice in a shaker. Shake and strain into a martini glass. Top with rum and carefully ignite.\r", @@ -44709,7 +44709,7 @@ "151 proof rum" ], "title": "Mad Scientist #2 recipe", - "url": "http://www.drinksmixer.com/drink5190.html" + "url": "https://www.drinksmixer.com/drink5190.html" }, { "directions": "Add both blueberry and raspberry schnapps to a shot glass, and slowly top off with grenadine. Dribble a small amount of bailey's irish cream on top and serve.", @@ -44720,7 +44720,7 @@ "Bailey's\u00ae Irish cream" ], "title": "Mad Scientist recipe", - "url": "http://www.drinksmixer.com/drink5191.html" + "url": "https://www.drinksmixer.com/drink5191.html" }, { "directions": "In a shaker half-filled with ice cubes, combine the rum, sherry, and lime juice. Shake well. Strain into a collins glass almost filled with crushed ice and top with the ginger ale. Garnish with a lemon twist.", @@ -44731,7 +44731,7 @@ "ginger ale" ], "title": "Maestro recipe", - "url": "http://www.drinksmixer.com/drink5192.html" + "url": "https://www.drinksmixer.com/drink5192.html" }, { "directions": "Add amaretto, southern comfort, and sour mix to an ice-filled glass. Stir, and serve.", @@ -44741,7 +44741,7 @@ "sweet and sour mix" ], "title": "Mafia's Kiss recipe", - "url": "http://www.drinksmixer.com/drink5193.html" + "url": "https://www.drinksmixer.com/drink5193.html" }, { "directions": "Mix the schnapps and curacao into a bottle with vodka. Chill for 24 hours, and serve as cold shots.", @@ -44751,7 +44751,7 @@ "Blue Curacao liqueur" ], "title": "Mage's Fire recipe", - "url": "http://www.drinksmixer.com/drink5194.html" + "url": "https://www.drinksmixer.com/drink5194.html" }, { "directions": "Mix equal parts blue maui and mountain dew in a hurricane glass.", @@ -44760,7 +44760,7 @@ "Mountain Dew\u00ae citrus soda" ], "title": "Magic Dew recipe", - "url": "http://www.drinksmixer.com/drink5195.html" + "url": "https://www.drinksmixer.com/drink5195.html" }, { "directions": "Add ingredients to an ice-filled collins glass and shake.", @@ -44771,7 +44771,7 @@ "mango juice" ], "title": "Magic Punch recipe", - "url": "http://www.drinksmixer.com/drink5196.html" + "url": "https://www.drinksmixer.com/drink5196.html" }, { "directions": "Shake in a cocktail glass. Garnish with powdered chocolate and a crystalized fruit star-shape.", @@ -44783,7 +44783,7 @@ "grenadine syrup" ], "title": "Magic Star recipe", - "url": "http://www.drinksmixer.com/drink5197.html" + "url": "https://www.drinksmixer.com/drink5197.html" }, { "directions": "Pour blue curacao, rum and gin into an ice-filled highball glass. Blend briefly, fill with sprite and add a splash of lemon juice.", @@ -44795,7 +44795,7 @@ "lemon juice" ], "title": "Magic Woman recipe", - "url": "http://www.drinksmixer.com/drink5198.html" + "url": "https://www.drinksmixer.com/drink5198.html" }, { "directions": "Shake well with ice and serve in a highball glass with a slice of green lemon.", @@ -44807,7 +44807,7 @@ "lemon juice" ], "title": "Magic's Tornado recipe", - "url": "http://www.drinksmixer.com/drink5199.html" + "url": "https://www.drinksmixer.com/drink5199.html" }, { "directions": "Add the whiskey and southern comfort to a highball glass. Fill with iced tea, and drop in a couple of ice cubes.", @@ -44817,7 +44817,7 @@ "iced tea" ], "title": "Mahwah Iced Tea recipe", - "url": "http://www.drinksmixer.com/drink5200.html" + "url": "https://www.drinksmixer.com/drink5200.html" }, { "directions": "Mix chilled ingredients; cherry brandy, 7-up and snapple with a stirring stick. Top with whipped cream and a cherry in a white wine glass.", @@ -44828,7 +44828,7 @@ "whipped cream" ], "title": "Maiden Head recipe", - "url": "http://www.drinksmixer.com/drink5201.html" + "url": "https://www.drinksmixer.com/drink5201.html" }, { "directions": "Combine the gin, triple sec, cherry brandy and lemon juice in a shaker half-filled with ice cubes. Shake and strain into a cocktail glass and garnish with a maraschino cherry.", @@ -44840,7 +44840,7 @@ "maraschino cherry" ], "title": "Maiden's Blush recipe", - "url": "http://www.drinksmixer.com/drink5202.html" + "url": "https://www.drinksmixer.com/drink5202.html" }, { "directions": "Shake with crushed ice and strain into a chilled wine or cocktail glass. Serve with a lemon twist.", @@ -44851,7 +44851,7 @@ "lemon juice" ], "title": "Maiden's Prayer #2 recipe", - "url": "http://www.drinksmixer.com/drink5203.html" + "url": "https://www.drinksmixer.com/drink5203.html" }, { "directions": "Shake all ingredients with ice, strain into a cocktail glass, and serve.", @@ -44861,7 +44861,7 @@ "lemon juice" ], "title": "Maiden's Prayer recipe", - "url": "http://www.drinksmixer.com/drink5204.html" + "url": "https://www.drinksmixer.com/drink5204.html" }, { "directions": "Combine ingredients in a shaker half-filled with ice cubes. Shake well and strain into a cocktail glass.", @@ -44872,7 +44872,7 @@ "lemon juice" ], "title": "Maiden-No-More recipe", - "url": "http://www.drinksmixer.com/drink5205.html" + "url": "https://www.drinksmixer.com/drink5205.html" }, { "directions": "Pour campari into highball glass over ice, add the tonic water and stir with a spoon. Garnish with an orange slice.", @@ -44882,7 +44882,7 @@ "orange" ], "title": "Malaria Killer recipe", - "url": "http://www.drinksmixer.com/drink5206.html" + "url": "https://www.drinksmixer.com/drink5206.html" }, { "directions": "Mix in a cup with ice.", @@ -44891,7 +44891,7 @@ "Coca-Cola\u00ae" ], "title": "Malibu and Soda recipe", - "url": "http://www.drinksmixer.com/drink5207.html" + "url": "https://www.drinksmixer.com/drink5207.html" }, { "directions": "Blend ingredients and serve over ice.", @@ -44901,7 +44901,7 @@ "pineapple juice" ], "title": "Malibu Bay Breeze recipe", - "url": "http://www.drinksmixer.com/drink5208.html" + "url": "https://www.drinksmixer.com/drink5208.html" }, { "directions": "Combine the malibu and grenadine. Fill with 7-up or lemon-lime soda.", @@ -44911,7 +44911,7 @@ "7-Up\u00ae soda" ], "title": "Malibu Dreams recipe", - "url": "http://www.drinksmixer.com/drink5209.html" + "url": "https://www.drinksmixer.com/drink5209.html" }, { "directions": "Blend and serve on ice.", @@ -44922,7 +44922,7 @@ "pineapple juice" ], "title": "Malibu Express recipe", - "url": "http://www.drinksmixer.com/drink5210.html" + "url": "https://www.drinksmixer.com/drink5210.html" }, { "directions": "In a mason jar, pour in the coconut rum. Add milk, three teaspoons of cocoa powder, and let stand for one minute.", @@ -44932,7 +44932,7 @@ "milk" ], "title": "Malibu Jane recipe", - "url": "http://www.drinksmixer.com/drink5211.html" + "url": "https://www.drinksmixer.com/drink5211.html" }, { "directions": "Boil the water and add to peach passion fruit jello. Allow to dissolve for 2 minutes. Add the malibu rum and pour into shot glasses or one-ounce cups found in party stores. Chill for four hours before serving.", @@ -44942,7 +44942,7 @@ "Malibu\u00ae coconut rum" ], "title": "Malibu Jello recipe", - "url": "http://www.drinksmixer.com/drink5212.html" + "url": "https://www.drinksmixer.com/drink5212.html" }, { "directions": "Pour the malibu rum into a glass and fill with fruit juice; orange, pineapple or banana.", @@ -44951,7 +44951,7 @@ "fruit juice" ], "title": "Malibu Juice recipe", - "url": "http://www.drinksmixer.com/drink5213.html" + "url": "https://www.drinksmixer.com/drink5213.html" }, { "directions": "Combine ingredients in a cocktail shaker glass over ice. Shake and pour into an old-fashioned glass, and garnish with an orange slice and a cherry.", @@ -44964,7 +44964,7 @@ "triple sec" ], "title": "Malibu Massage recipe", - "url": "http://www.drinksmixer.com/drink5214.html" + "url": "https://www.drinksmixer.com/drink5214.html" }, { "directions": "Add malibu rum, sugar and your desired amount of ice to a blender. Fill with milk, and blend until smooth with a frothy head. Serve in glasses immediately.", @@ -44974,7 +44974,7 @@ "milk" ], "title": "Malibu Milk Shake recipe", - "url": "http://www.drinksmixer.com/drink5215.html" + "url": "https://www.drinksmixer.com/drink5215.html" }, { "directions": "Add malibu rum and sugar to a hurricane glass. Fill to three-quarters full with milk, and whip to blend. Add creme de cacao, stir, and drop in 3 - 4 ice cubes.", @@ -44985,7 +44985,7 @@ "creme de cacao" ], "title": "Malibu Mocha Milkshake recipe", - "url": "http://www.drinksmixer.com/drink5216.html" + "url": "https://www.drinksmixer.com/drink5216.html" }, { "directions": "Crush a hand full or two of ice into a blender, add the frozen pink lemonade and malibu rum, and blend for 30 seconds or until smooth-like consistensy. Add in your desired amount of whipped cream and blend further until smooth. Serve.", @@ -44995,7 +44995,7 @@ "whipped cream" ], "title": "Malibu Pink Panther recipe", - "url": "http://www.drinksmixer.com/drink5217.html" + "url": "https://www.drinksmixer.com/drink5217.html" }, { "directions": "Shake malibu rum and blue curacao in a cocktail shaker. Add the juices, and pour over ice in a highball glass.", @@ -45006,7 +45006,7 @@ "cranberry juice" ], "title": "Malibu Pop recipe", - "url": "http://www.drinksmixer.com/drink5218.html" + "url": "https://www.drinksmixer.com/drink5218.html" }, { "directions": "Pour malibu rum into an ice-filled collins glass and fill with pineapple juice. Add grenadine and a splash of 7-up.", @@ -45017,7 +45017,7 @@ "7-Up\u00ae soda" ], "title": "Malibu Punch recipe", - "url": "http://www.drinksmixer.com/drink5219.html" + "url": "https://www.drinksmixer.com/drink5219.html" }, { "directions": "Add chilled orange juice to vodka and malibu rum over ice (if desired).", @@ -45027,7 +45027,7 @@ "orange juice" ], "title": "Malibu Screw recipe", - "url": "http://www.drinksmixer.com/drink5220.html" + "url": "https://www.drinksmixer.com/drink5220.html" }, { "directions": "Mix the 7-up and rum together in a cup of ice.", @@ -45036,7 +45036,7 @@ "7-Up\u00ae soda" ], "title": "Malibu Seven recipe", - "url": "http://www.drinksmixer.com/drink5221.html" + "url": "https://www.drinksmixer.com/drink5221.html" }, { "directions": "Fill one-quarter of a cocktail glass with malibu rum, and fill the rest with snapple.", @@ -45045,7 +45045,7 @@ "Snapple\u00ae Kiwi-Strawberry soda" ], "title": "Malibu Snapper recipe", - "url": "http://www.drinksmixer.com/drink5222.html" + "url": "https://www.drinksmixer.com/drink5222.html" }, { "directions": "Shake with ice and serve in a champagne flute.", @@ -45055,7 +45055,7 @@ "pineapple juice" ], "title": "Malibu Tequichi recipe", - "url": "http://www.drinksmixer.com/drink5223.html" + "url": "https://www.drinksmixer.com/drink5223.html" }, { "directions": "Pour malibu rum into a glass, and add tropicana; orange, strawberry or pineapple. Add cranberry juice, and stir.", @@ -45065,7 +45065,7 @@ "cranberry juice" ], "title": "Malibu Twister recipe", - "url": "http://www.drinksmixer.com/drink5224.html" + "url": "https://www.drinksmixer.com/drink5224.html" }, { "directions": "Shake all but the lime with ice and strain into a chilled cocktail glass. Add the slice of lime and serve.", @@ -45077,7 +45077,7 @@ "lime" ], "title": "Malibu Wave recipe", - "url": "http://www.drinksmixer.com/drink5225.html" + "url": "https://www.drinksmixer.com/drink5225.html" }, { "directions": "Combine orange juice, lilikoi syrup and guava syrup, blend well. Chill. Serve over ice cubes.", @@ -45087,7 +45087,7 @@ "guava syrup" ], "title": "Malihini Punch recipe", - "url": "http://www.drinksmixer.com/drink5226.html" + "url": "https://www.drinksmixer.com/drink5226.html" }, { "directions": "Pour the rum, grand marnier and orange juice into an old-fashioned glass almost filled with ice cubes. Stir well and serve.", @@ -45097,7 +45097,7 @@ "orange juice" ], "title": "Mallelieu recipe", - "url": "http://www.drinksmixer.com/drink5227.html" + "url": "https://www.drinksmixer.com/drink5227.html" }, { "directions": "Shake ingredients in a glass with a few ice cubes.", @@ -45107,7 +45107,7 @@ "milk" ], "title": "Mallis 97 recipe", - "url": "http://www.drinksmixer.com/drink5228.html" + "url": "https://www.drinksmixer.com/drink5228.html" }, { "directions": "Pour malibu rum, passoa and cointreau into an ice-filled hurricane glass. Fill with guava syrup and shake well. Garnish with a maraschino cherry and pineapple chunk.", @@ -45120,7 +45120,7 @@ "pineapple" ], "title": "Mamacita recipe", - "url": "http://www.drinksmixer.com/drink5229.html" + "url": "https://www.drinksmixer.com/drink5229.html" }, { "directions": "Pour all ingredients into a collins glass over ice cubes, stir, and serve.", @@ -45130,7 +45130,7 @@ "ginger ale" ], "title": "Mamie Gilroy recipe", - "url": "http://www.drinksmixer.com/drink5230.html" + "url": "https://www.drinksmixer.com/drink5230.html" }, { "directions": "In a shaker half-filled with ice cubes, combine all of the ingredients. Shake well and strain into a cocktail glass.", @@ -45141,7 +45141,7 @@ "grenadine syrup" ], "title": "Man of the Moment recipe", - "url": "http://www.drinksmixer.com/drink5231.html" + "url": "https://www.drinksmixer.com/drink5231.html" }, { "directions": "Pour vodka into a shot glass, and add a dash of soy sauce.", @@ -45150,7 +45150,7 @@ "soy sauce" ], "title": "Manchurian Candidate recipe", - "url": "http://www.drinksmixer.com/drink5232.html" + "url": "https://www.drinksmixer.com/drink5232.html" }, { "directions": "Add absolut mandrin to an ice-filled highball glass. Fill with orange soda.", @@ -45159,7 +45159,7 @@ "orange soda" ], "title": "Mandarin Crush recipe", - "url": "http://www.drinksmixer.com/drink5233.html" + "url": "https://www.drinksmixer.com/drink5233.html" }, { "directions": "Pour vodka and splash juices in a shaker with ice. Shake vigorously so when poured, a thin layer of ice crystals is visible. Strain into a cocktail glass and garnish with an orange slice.", @@ -45170,7 +45170,7 @@ "orange" ], "title": "Mandarin Dream recipe", - "url": "http://www.drinksmixer.com/drink5234.html" + "url": "https://www.drinksmixer.com/drink5234.html" }, { "directions": "Shake with ice and strain into a martini glass. Garnish with a wedge of mandarin orange on the side.", @@ -45180,7 +45180,7 @@ "Rose's\u00ae lime juice" ], "title": "Mandarin Metropolitan recipe", - "url": "http://www.drinksmixer.com/drink5235.html" + "url": "https://www.drinksmixer.com/drink5235.html" }, { "directions": "Shake once, and strain into a collins glass.", @@ -45193,7 +45193,7 @@ "pineapple juice" ], "title": "Mandarin Split recipe", - "url": "http://www.drinksmixer.com/drink5236.html" + "url": "https://www.drinksmixer.com/drink5236.html" }, { "directions": "Combine absolut mandrin, peach schnapps and juices in a shaker with ice. Pour into a collins glass, fill with 7-up and stir. Sink the grenadine and garnish with a twist of lime.", @@ -45207,7 +45207,7 @@ "lime" ], "title": "Mandarin Sunrise recipe", - "url": "http://www.drinksmixer.com/drink5237.html" + "url": "https://www.drinksmixer.com/drink5237.html" }, { "directions": "Stir and serve in an old-fashioned glass.", @@ -45216,7 +45216,7 @@ "bourbon whiskey" ], "title": "Mandarine Bourbon recipe", - "url": "http://www.drinksmixer.com/drink5238.html" + "url": "https://www.drinksmixer.com/drink5238.html" }, { "directions": "Pour mandarine napoleon and gin into a highball glass and fill with passion fruit juice. Add two cubes of ice and garnish with a slice of lemon.", @@ -45226,7 +45226,7 @@ "passion-fruit juice" ], "title": "Mandarine Passion recipe", - "url": "http://www.drinksmixer.com/drink5239.html" + "url": "https://www.drinksmixer.com/drink5239.html" }, { "directions": "Pour mandarine napoleon and gin into a highball glass and fill with orange juice. Add a touch of grenadine, two cubes of ice and garnish with a slice of lemon.", @@ -45237,7 +45237,7 @@ "grenadine syrup" ], "title": "Mandarine Summertime recipe", - "url": "http://www.drinksmixer.com/drink5240.html" + "url": "https://www.drinksmixer.com/drink5240.html" }, { "directions": "Combine the rums, anisette, lemon juice and grenadine in a shaker half-filled with ice cubes. Shake well and strain into an old-fashioned glass almost filled with ice cubes. Top with the cola and stir well.", @@ -45250,7 +45250,7 @@ "Coca-Cola\u00ae" ], "title": "Mandeville recipe", - "url": "http://www.drinksmixer.com/drink5241.html" + "url": "https://www.drinksmixer.com/drink5241.html" }, { "directions": "Blend the amaretto, triple sec, sour mix and juices in a mixing cup. Pour over ice in a collins glass and top with grenadine and a splash of 7-up. Garnish with a flag or two cherries.", @@ -45264,7 +45264,7 @@ "7-Up\u00ae soda" ], "title": "Mandy Sea recipe", - "url": "http://www.drinksmixer.com/drink5242.html" + "url": "https://www.drinksmixer.com/drink5242.html" }, { "directions": "Pour ingredients into an irish coffee cup in the order given.", @@ -45276,7 +45276,7 @@ "coffee" ], "title": "Mangan Coffee recipe", - "url": "http://www.drinksmixer.com/drink5243.html" + "url": "https://www.drinksmixer.com/drink5243.html" }, { "directions": "Fill a champagne flute one-third full with mango juice. Top with champagne and stir gently. Garnish with a slice of mango.", @@ -45286,7 +45286,7 @@ "mango" ], "title": "Mango Bellini recipe", - "url": "http://www.drinksmixer.com/drink5244.html" + "url": "https://www.drinksmixer.com/drink5244.html" }, { "directions": "Throw everything into a blender and liquify.", @@ -45295,7 +45295,7 @@ "oranges" ], "title": "Mango Orange Smoothie recipe", - "url": "http://www.drinksmixer.com/drink5245.html" + "url": "https://www.drinksmixer.com/drink5245.html" }, { "directions": "Combine ingredients in a blender at low speed for 15 seconds. Strain over ice in a cocktail glass.", @@ -45306,7 +45306,7 @@ "crushed ice" ], "title": "Mango Mint recipe", - "url": "http://www.drinksmixer.com/drink5246.html" + "url": "https://www.drinksmixer.com/drink5246.html" }, { "directions": "Shake with ice and strain into a cocktail glass.", @@ -45317,7 +45317,7 @@ "lemon juice" ], "title": "Manhasset recipe", - "url": "http://www.drinksmixer.com/drink5247.html" + "url": "https://www.drinksmixer.com/drink5247.html" }, { "directions": "Shake and strain into a chilled cocktail glass. Garnish with a brandied cherry.", @@ -45328,7 +45328,7 @@ "Angostura\u00ae bitters" ], "title": "Manhattan Bella recipe", - "url": "http://www.drinksmixer.com/drink5248.html" + "url": "https://www.drinksmixer.com/drink5248.html" }, { "directions": "Stir vermouth and blended whiskey with ice and strain into a cocktail glass. Serve with the olive as garnish.", @@ -45338,7 +45338,7 @@ "olive" ], "title": "Dry Manhattan #2 recipe", - "url": "http://www.drinksmixer.com/drink5249.html" + "url": "https://www.drinksmixer.com/drink5249.html" }, { "directions": "Stir well in a mixing glass filled with ice. Strain into a chilled cocktail glass and garnish with a lemon peel.", @@ -45348,7 +45348,7 @@ "Angostura\u00ae bitters" ], "title": "Dry Manhattan recipe", - "url": "http://www.drinksmixer.com/drink5250.html" + "url": "https://www.drinksmixer.com/drink5250.html" }, { "directions": "Serve on the rocks.", @@ -45357,7 +45357,7 @@ "bourbon whiskey" ], "title": "Sweet Manhattan #2 recipe", - "url": "http://www.drinksmixer.com/drink5251.html" + "url": "https://www.drinksmixer.com/drink5251.html" }, { "directions": "Stir well in an ice-filled mixing glass. Strain into a chilled cocktail glass and garnish with a cherry.", @@ -45367,7 +45367,7 @@ "Angostura\u00ae bitters" ], "title": "Sweet Manhattan recipe", - "url": "http://www.drinksmixer.com/drink5252.html" + "url": "https://www.drinksmixer.com/drink5252.html" }, { "directions": "Shake with ice, strain into a highball glass over two ice cubes, and serve.", @@ -45379,7 +45379,7 @@ "powdered sugar" ], "title": "Manila Fizz recipe", - "url": "http://www.drinksmixer.com/drink5253.html" + "url": "https://www.drinksmixer.com/drink5253.html" }, { "directions": "Blend ingredients in a shaker and serve on the rocks in a margarita glass.", @@ -45390,7 +45390,7 @@ "sweet and sour mix" ], "title": "Mansion Margarita recipe", - "url": "http://www.drinksmixer.com/drink5254.html" + "url": "https://www.drinksmixer.com/drink5254.html" }, { "directions": "Pour the kahlua, bailey's and rum over ice cubes in a collins glass, and fill with 7-up. Serve with two straws.", @@ -45401,7 +45401,7 @@ "7-Up\u00ae soda" ], "title": "Mansion Mind Eraser recipe", - "url": "http://www.drinksmixer.com/drink5255.html" + "url": "https://www.drinksmixer.com/drink5255.html" }, { "directions": "Bring to the boil; aftershock, cinnamon schnapps and apple cider. Stir in the cinnamon sticks, stirring frequently. Add apple slices and let cool for 2 minutes. Add the apple pucker and serve.", @@ -45413,7 +45413,7 @@ "cinnamon" ], "title": "Maple Lake Irish Shock recipe", - "url": "http://www.drinksmixer.com/drink5256.html" + "url": "https://www.drinksmixer.com/drink5256.html" }, { "directions": "Combine the rum and vermouth in a mixing glass half-filled with ice cubes. Stir well and strain into a cocktail glass. Garnish with the lemon twist.", @@ -45422,7 +45422,7 @@ "sweet vermouth" ], "title": "Mardee Mine recipe", - "url": "http://www.drinksmixer.com/drink5257.html" + "url": "https://www.drinksmixer.com/drink5257.html" }, { "directions": "Combine the ingredients in a shaker half-filled with ice cubes. Shake well and strain into a cocktail glass.", @@ -45433,7 +45433,7 @@ "light cream" ], "title": "Margaret In The Marketplace recipe", - "url": "http://www.drinksmixer.com/drink5258.html" + "url": "https://www.drinksmixer.com/drink5258.html" }, { "directions": "Rub the rim of a margarita glass with lemon juice, and dip in salt. Shake ingredients with ice, strain into the glass, and serve.", @@ -45444,7 +45444,7 @@ "salt" ], "title": "Margarita Cocktail #2 recipe", - "url": "http://www.drinksmixer.com/drink5259.html" + "url": "https://www.drinksmixer.com/drink5259.html" }, { "directions": "Rum the rim of a cocktail glass with lime juice, and dip in salt. Shake all ingredients with ice, strain into the glass, and serve.\n\n", @@ -45454,7 +45454,7 @@ "lime juice" ], "title": "Margarita Cocktail recipe", - "url": "http://www.drinksmixer.com/drink5260.html" + "url": "https://www.drinksmixer.com/drink5260.html" }, { "directions": "Combine ingredients with ice in a shaker. Shake and strain into a glass over ice.", @@ -45464,7 +45464,7 @@ "lime juice" ], "title": "Maria Theresa recipe", - "url": "http://www.drinksmixer.com/drink5261.html" + "url": "https://www.drinksmixer.com/drink5261.html" }, { "directions": "Mix all ingredients in a blender with ice cubes. Pour into a highball glass and fill up with ginger ale.", @@ -45475,7 +45475,7 @@ "Cointreau\u00ae orange liqueur" ], "title": "Maria's Delight recipe", - "url": "http://www.drinksmixer.com/drink5262.html" + "url": "https://www.drinksmixer.com/drink5262.html" }, { "directions": "1. Blend strawberries, raspberries and apple juice until slushy.\r", @@ -45487,7 +45487,7 @@ "whipped cream" ], "title": "Marianne recipe", - "url": "http://www.drinksmixer.com/drink5263.html" + "url": "https://www.drinksmixer.com/drink5263.html" }, { "directions": "Layer in order.", @@ -45497,7 +45497,7 @@ "Bailey's\u00ae Irish cream" ], "title": "Martian Hard On recipe", - "url": "http://www.drinksmixer.com/drink5264.html" + "url": "https://www.drinksmixer.com/drink5264.html" }, { "directions": "Combine gin and midori in a cocktail shaker with ice. Shake and strain into a cocktail/martini glass.", @@ -45506,7 +45506,7 @@ "gin" ], "title": "Martian Martini recipe", - "url": "http://www.drinksmixer.com/drink5265.html" + "url": "https://www.drinksmixer.com/drink5265.html" }, { "directions": "Pour juice, vodka and a splash of grand marnier in a shaker. Add ice, shake and strain into a cocktail glass. Garnish with a orange peel curl.", @@ -45516,7 +45516,7 @@ "Grand Marnier\u00ae orange liqueur" ], "title": "Martina Mandarina recipe", - "url": "http://www.drinksmixer.com/drink5266.html" + "url": "https://www.drinksmixer.com/drink5266.html" }, { "directions": "Pour all ingredients into an ice-filled cocktail shaker. Stir or shake, and strain into a chilled cocktail glass.", @@ -45526,7 +45526,7 @@ "vermouth" ], "title": "Martinet recipe", - "url": "http://www.drinksmixer.com/drink5267.html" + "url": "https://www.drinksmixer.com/drink5267.html" }, { "directions": "Combine gin, vermouth and olive juice in a cocktail shaker with ice. Shake and strain into a cocktail glass. Garnish with onions and olives on a toothpick.", @@ -45538,7 +45538,7 @@ "olive juice" ], "title": "Martini, Patton recipe", - "url": "http://www.drinksmixer.com/drink5268.html" + "url": "https://www.drinksmixer.com/drink5268.html" }, { "directions": "Pour bailey's irish cream and southern comfort into a glass, and mix in the butterscotch schnapps.", @@ -45548,7 +45548,7 @@ "butterscotch schnapps" ], "title": "The Marv Alberts recipe", - "url": "http://www.drinksmixer.com/drink5269.html" + "url": "https://www.drinksmixer.com/drink5269.html" }, { "directions": "Combine equal parts of orange vodka and cointreau in a shaker with ice. Shake until well chilled, and strain into a chilled martini (cocktail) glass. Garnish with an orange slice.", @@ -45557,7 +45557,7 @@ "Cointreau\u00ae orange liqueur" ], "title": "Marvellaid recipe", - "url": "http://www.drinksmixer.com/drink5270.html" + "url": "https://www.drinksmixer.com/drink5270.html" }, { "directions": "Stir ingredients with ice, strain into a cocktail glass, and serve.", @@ -45566,7 +45566,7 @@ "dry vermouth" ], "title": "Mary Garden Cocktail recipe", - "url": "http://www.drinksmixer.com/drink5271.html" + "url": "https://www.drinksmixer.com/drink5271.html" }, { "directions": "Combine the rum, pineapple juice, maraschino liqueur, and grenadine in a shaker half-filled with ice cubes. Shake well, strain into a cocktail glass, and garnish with a maraschino cherry.", @@ -45578,7 +45578,7 @@ "maraschino cherry" ], "title": "Mary Pickford Cocktail recipe", - "url": "http://www.drinksmixer.com/drink5272.html" + "url": "https://www.drinksmixer.com/drink5272.html" }, { "directions": "Pour the rum, triple sec, orange juice and orange bitters into a highball glass almost filled with ice cubes. Stir well and garnish with an orange slice.", @@ -45589,7 +45589,7 @@ "orange bitters" ], "title": "Mary's Dream recipe", - "url": "http://www.drinksmixer.com/drink5273.html" + "url": "https://www.drinksmixer.com/drink5273.html" }, { "directions": "1. Put water in a saucepan. Add the cinnamon, cardamom, and cloves and bring to a boil. Cover, turn heat to low and simmer for 10 minutes. \r", @@ -45603,7 +45603,7 @@ "tea" ], "title": "Masala Chai #2 recipe", - "url": "http://www.drinksmixer.com/drink5274.html" + "url": "https://www.drinksmixer.com/drink5274.html" }, { "directions": "1. Bring two cups of water to the boil. Add all the ingredients (except milk and sugar) and boil again for about 15 seconds. Let stand for one minute.\r", @@ -45619,7 +45619,7 @@ "milk" ], "title": "Masala Chai recipe", - "url": "http://www.drinksmixer.com/drink5275.html" + "url": "https://www.drinksmixer.com/drink5275.html" }, { "directions": "Combine ingredients in a highball glass with ice. Stir well and serve.", @@ -45629,7 +45629,7 @@ "ginger ale" ], "title": "Massacre recipe", - "url": "http://www.drinksmixer.com/drink5276.html" + "url": "https://www.drinksmixer.com/drink5276.html" }, { "directions": "Build on the rocks and stir with a straw.", @@ -45640,7 +45640,7 @@ "cranberry juice" ], "title": "Matt's Tropical Punch recipe", - "url": "http://www.drinksmixer.com/drink5277.html" + "url": "https://www.drinksmixer.com/drink5277.html" }, { "directions": "Combine ingredients in a mug and stir until fizzy.", @@ -45651,7 +45651,7 @@ "tonic water" ], "title": "Matty's Magic Mixture recipe", - "url": "http://www.drinksmixer.com/drink5278.html" + "url": "https://www.drinksmixer.com/drink5278.html" }, { "directions": "Chop the lime, stir in the cane sugar and ginger. Add the crushed ice and fill up with apple juice.", @@ -45663,7 +45663,7 @@ "apple juice" ], "title": "Maurizio's Dream recipe", - "url": "http://www.drinksmixer.com/drink5279.html" + "url": "https://www.drinksmixer.com/drink5279.html" }, { "directions": "In a mixing glass half-filled with ice cubes, combine all of the ingredients. Stir well and strain into a cocktail glass.", @@ -45674,7 +45674,7 @@ "anisette" ], "title": "Max The Silent recipe", - "url": "http://www.drinksmixer.com/drink5280.html" + "url": "https://www.drinksmixer.com/drink5280.html" }, { "directions": "Shake all ingredients with ice, strain into a cocktail glass, and serve.", @@ -45684,7 +45684,7 @@ "white creme de cacao" ], "title": "Maxim recipe", - "url": "http://www.drinksmixer.com/drink5281.html" + "url": "https://www.drinksmixer.com/drink5281.html" }, { "directions": "Shake all ingredients (except carbonated water) with ice and strain into a highball glass over two ice cubes. Fill with carbonated water, stir, and serve.", @@ -45695,7 +45695,7 @@ "carbonated water" ], "title": "May Blossum Fizz recipe", - "url": "http://www.drinksmixer.com/drink5282.html" + "url": "https://www.drinksmixer.com/drink5282.html" }, { "directions": "Pour the absolut citron into a highball glass, balance with cranberry juice and top with a little 7-up. Garnish with a lime slice.", @@ -45705,7 +45705,7 @@ "7-Up\u00ae soda" ], "title": "Mazerati recipe", - "url": "http://www.drinksmixer.com/drink5283.html" + "url": "https://www.drinksmixer.com/drink5283.html" }, { "directions": "Combine in a glass, add orange peel and serve.", @@ -45715,7 +45715,7 @@ "orange juice" ], "title": "Maeek recipe", - "url": "http://www.drinksmixer.com/drink5284.html" + "url": "https://www.drinksmixer.com/drink5284.html" }, { "directions": "Shake all ingredients with ice, strain into a cocktail glass, and serve.", @@ -45725,7 +45725,7 @@ "orange bitters" ], "title": "Mcclelland Cocktail recipe", - "url": "http://www.drinksmixer.com/drink5285.html" + "url": "https://www.drinksmixer.com/drink5285.html" }, { "directions": "Combine the scotch, triple sec and bitters in a mixing glass half-filled with ice cubes. Stir well, and strain into a cocktail glass. Garnish with an orange slice.", @@ -45735,7 +45735,7 @@ "bitters" ], "title": "McDuff recipe", - "url": "http://www.drinksmixer.com/drink5286.html" + "url": "https://www.drinksmixer.com/drink5286.html" }, { "directions": "Combine in a blender - chocolate syrup to taste. Blend until desired thickness.", @@ -45746,7 +45746,7 @@ "chocolate syrup" ], "title": "McShake recipe", - "url": "http://www.drinksmixer.com/drink5287.html" + "url": "https://www.drinksmixer.com/drink5287.html" }, { "directions": "Serve in a shot glass or on the rocks.", @@ -45756,7 +45756,7 @@ "butterscotch schnapps" ], "title": "McTavish recipe", - "url": "http://www.drinksmixer.com/drink5288.html" + "url": "https://www.drinksmixer.com/drink5288.html" }, { "directions": "Add ingredients to a cocktail shaker, shake, and serve over ice in a highball glass.", @@ -45767,7 +45767,7 @@ "Blue Curacao liqueur" ], "title": "Mean Green Love Making Machine recipe", - "url": "http://www.drinksmixer.com/drink5289.html" + "url": "https://www.drinksmixer.com/drink5289.html" }, { "directions": "Shake well with ice and strain into a highball glass.", @@ -45778,7 +45778,7 @@ "lime juice" ], "title": "Mean Green Machine recipe", - "url": "http://www.drinksmixer.com/drink5290.html" + "url": "https://www.drinksmixer.com/drink5290.html" }, { "directions": "1. Spread the yeast on a piece of bread. \r", @@ -45793,7 +45793,7 @@ "bread" ], "title": "Medd recipe", - "url": "http://www.drinksmixer.com/drink5291.html" + "url": "https://www.drinksmixer.com/drink5291.html" }, { "directions": "Pour the gin into a cocktail glass, almost fill with orange juice, and stir briefly. Add a slice of orange, and pour the campari gently onto the slice.", @@ -45803,7 +45803,7 @@ "orange juice" ], "title": "Meiner recipe", - "url": "http://www.drinksmixer.com/drink5292.html" + "url": "https://www.drinksmixer.com/drink5292.html" }, { "directions": "Pour the coca-cola into a highball glass. Add the amaretto, and drop in an ice cube.", @@ -45812,7 +45812,7 @@ "amaretto almond liqueur" ], "title": "Meister Mind Meld recipe", - "url": "http://www.drinksmixer.com/drink5293.html" + "url": "https://www.drinksmixer.com/drink5293.html" }, { "directions": "Mix the first ten ingredients (malibu, peach, strawberry, banana, melon, blue, orange juice, pineapple juice, pina mix, 7-up) in a shaker. Pour into a hurricane glass, then top with cream. Serve with fresh fruit (except lime), and some filberts if desired.", @@ -45830,7 +45830,7 @@ "heavy cream" ], "title": "Mekong recipe", - "url": "http://www.drinksmixer.com/drink5294.html" + "url": "https://www.drinksmixer.com/drink5294.html" }, { "directions": "Pour midori, chambord and raspberry juice into a shaker. Add a squeeze of lemon and lime juice. Shake, and strain into a highball glass half-filled with ice. Garnish with fresh raspberries.", @@ -45842,7 +45842,7 @@ "lime juice" ], "title": "Melberry recipe", - "url": "http://www.drinksmixer.com/drink5295.html" + "url": "https://www.drinksmixer.com/drink5295.html" }, { "directions": "Combine alcohol over ice and add mountain dew. Stir and garnish with a melon ball if desired.", @@ -45854,7 +45854,7 @@ "Mountain Dew\u00ae citrus soda" ], "title": "Mellow Hiker recipe", - "url": "http://www.drinksmixer.com/drink5296.html" + "url": "https://www.drinksmixer.com/drink5296.html" }, { "directions": "Mix in a shot glass and shoot.", @@ -45864,7 +45864,7 @@ "sweet and sour mix" ], "title": "Melon Jones recipe", - "url": "http://www.drinksmixer.com/drink5297.html" + "url": "https://www.drinksmixer.com/drink5297.html" }, { "directions": "Serve on the rocks in a margarita glass or blend with ice.", @@ -45875,7 +45875,7 @@ "lime juice" ], "title": "Melon Margarita recipe", - "url": "http://www.drinksmixer.com/drink5298.html" + "url": "https://www.drinksmixer.com/drink5298.html" }, { "directions": "Carefully layer ingredients in a cordial glass.", @@ -45885,7 +45885,7 @@ "Midori\u00ae melon liqueur" ], "title": "Melon Pousse Cafe recipe", - "url": "http://www.drinksmixer.com/drink5299.html" + "url": "https://www.drinksmixer.com/drink5299.html" }, { "directions": "Add vodka, melon liqueur, and lemon juice over ice in a cocktail shaker. Shake 3-4 times, then add tonic water or club soda and shake once. Strain into cocktail glass or pour over ice into a highball glass.", @@ -45896,7 +45896,7 @@ "tonic water" ], "title": "Melon Tonic recipe", - "url": "http://www.drinksmixer.com/drink5300.html" + "url": "https://www.drinksmixer.com/drink5300.html" }, { "directions": "Shake midori, malibu, and pineapple juice and strain into a highball glass. Add orange juice.", @@ -45907,7 +45907,7 @@ "orange juice" ], "title": "Spanish Melonball recipe", - "url": "http://www.drinksmixer.com/drink5301.html" + "url": "https://www.drinksmixer.com/drink5301.html" }, { "directions": "Pour the melon liqueur and vodka into an ice-filled highball glass. Fill with pineapple juice, or orange juice.", @@ -45917,7 +45917,7 @@ "pineapple juice" ], "title": "Melonball recipe", - "url": "http://www.drinksmixer.com/drink5302.html" + "url": "https://www.drinksmixer.com/drink5302.html" }, { "directions": "Shake ice, vodka and melon liqueur. Strain into a shot glass.", @@ -45926,7 +45926,7 @@ "melon liqueur" ], "title": "Melonoma recipe", - "url": "http://www.drinksmixer.com/drink5303.html" + "url": "https://www.drinksmixer.com/drink5303.html" }, { "directions": "Combine ingredients in a cocktail shaker and shake. Pour into a pousse cafe glass with ice.", @@ -45935,7 +45935,7 @@ "Sagatiba Pura" ], "title": "Melzinho recipe", - "url": "http://www.drinksmixer.com/drink5304.html" + "url": "https://www.drinksmixer.com/drink5304.html" }, { "directions": "Pour the lager into a beer mug or pint glass. Add kahlua and stir.", @@ -45944,7 +45944,7 @@ "Kahlua\u00ae coffee liqueur" ], "title": "Memachau recipe", - "url": "http://www.drinksmixer.com/drink5305.html" + "url": "https://www.drinksmixer.com/drink5305.html" }, { "directions": "Combine ingredients in a shaker half-filled with ice cubes. Shake well and strain into a cocktail glass.", @@ -45954,7 +45954,7 @@ "light cream" ], "title": "Menage A Trois recipe", - "url": "http://www.drinksmixer.com/drink5306.html" + "url": "https://www.drinksmixer.com/drink5306.html" }, { "directions": "Stir ingredients with ice in a mixing glass. Strain into a cocktail glass, add the cherry, and serve.", @@ -45964,7 +45964,7 @@ "cranberry juice" ], "title": "Merete recipe", - "url": "http://www.drinksmixer.com/drink5307.html" + "url": "https://www.drinksmixer.com/drink5307.html" }, { "directions": "Stir maraschino and cherry brandy with ice and strain into a cocktail glass. Add the cherry and serve.", @@ -45974,7 +45974,7 @@ "cherry" ], "title": "Merry Widow Cocktail recipe", - "url": "http://www.drinksmixer.com/drink5308.html" + "url": "https://www.drinksmixer.com/drink5308.html" }, { "directions": "Shake ingredients (except carbonated water) with ice and strain into a highball glass over two ice cubes. Fill with carbonated water, stir, and serve.", @@ -45987,7 +45987,7 @@ "carbonated water" ], "title": "Merry Widow Fizz recipe", - "url": "http://www.drinksmixer.com/drink5309.html" + "url": "https://www.drinksmixer.com/drink5309.html" }, { "directions": "Mix hot chocolate to taste in a large mug. Add liquors, top with whipped cream, sprinkle with cinnamon, and serve.", @@ -46001,7 +46001,7 @@ "cinnamon" ], "title": "Metromelt recipe", - "url": "http://www.drinksmixer.com/drink5310.html" + "url": "https://www.drinksmixer.com/drink5310.html" }, { "directions": "In a shaker half-filled with crushed ice, combine all of the ingredients. Shake well and strain into a cocktail glass.", @@ -46012,7 +46012,7 @@ "superfine sugar" ], "title": "Metropolitan recipe", - "url": "http://www.drinksmixer.com/drink5311.html" + "url": "https://www.drinksmixer.com/drink5311.html" }, { "directions": "In a large coffee mug, pour the kahlua and tequila into the bottom. Brew cappuccino per the instructions for your machine. Fill the cup with espresso, top with the frothed milk and serve.", @@ -46022,7 +46022,7 @@ "tequila" ], "title": "Mexican Cappuccino recipe", - "url": "http://www.drinksmixer.com/drink5312.html" + "url": "https://www.drinksmixer.com/drink5312.html" }, { "directions": "Pour into a shot glass.", @@ -46031,7 +46031,7 @@ "cherry liqueur" ], "title": "Mexican Cherry recipe", - "url": "http://www.drinksmixer.com/drink5313.html" + "url": "https://www.drinksmixer.com/drink5313.html" }, { "directions": "1. Heat water in a medium saucepan. When hot, add coffee and stir until dissolved. Add sugar and vanilla bean, stirring well to combine. Bring to boil, stirring constantly. Immediately reduce heat so that a very low boil is maintained for one minute. Remove from heat and cool to lukewarm. \r", @@ -46046,7 +46046,7 @@ "food coloring" ], "title": "Mexican Coffee Liqueur recipe", - "url": "http://www.drinksmixer.com/drink5314.html" + "url": "https://www.drinksmixer.com/drink5314.html" }, { "directions": "Carefully layer ingredients into a highball glass (using a spoon), in the order given; grenadine, creme de menthe, tequila. \r", @@ -46056,7 +46056,7 @@ "tequila" ], "title": "Mexican Flag recipe", - "url": "http://www.drinksmixer.com/drink5315.html" + "url": "https://www.drinksmixer.com/drink5315.html" }, { "directions": "Pour a mug of corona and drop in a shot of jack daniels.", @@ -46065,7 +46065,7 @@ "Jack Daniel's\u00ae Tennessee whiskey" ], "title": "Mexican Hillbilly recipe", - "url": "http://www.drinksmixer.com/drink5316.html" + "url": "https://www.drinksmixer.com/drink5316.html" }, { "directions": "Serve chilled.", @@ -46075,7 +46075,7 @@ "Rose's\u00ae lime juice" ], "title": "Mexican Killer recipe", - "url": "http://www.drinksmixer.com/drink5317.html" + "url": "https://www.drinksmixer.com/drink5317.html" }, { "directions": "Pour juices and tequila into a shaker 1/2 filled with ice. Shake well and strain into old-fashioned glass. Garnish with an orange slice.", @@ -46086,7 +46086,7 @@ "lime juice" ], "title": "Mexican Madras recipe", - "url": "http://www.drinksmixer.com/drink5318.html" + "url": "https://www.drinksmixer.com/drink5318.html" }, { "directions": "Pour each part into an old-fashioned glass over ice. Top with a wedge of lime.", @@ -46095,7 +46095,7 @@ "Yukon Jack\u00ae Canadian whisky" ], "title": "Mexican Mountie recipe", - "url": "http://www.drinksmixer.com/drink5319.html" + "url": "https://www.drinksmixer.com/drink5319.html" }, { "directions": "Pour ingredients into a shaker with ice, and gently swirl together. Pour into an old-fashioned glass, and serve.", @@ -46104,7 +46104,7 @@ "Rumple Minze\u00ae peppermint liqueur" ], "title": "Mexican Mouthwash recipe", - "url": "http://www.drinksmixer.com/drink5320.html" + "url": "https://www.drinksmixer.com/drink5320.html" }, { "directions": "Combine the kahlua, amaretto, and ice-cream in a glass. Swirl chocolate into the glass and add whipped cream on top.", @@ -46117,7 +46117,7 @@ "cherry" ], "title": "Mexican Mudslide recipe", - "url": "http://www.drinksmixer.com/drink5321.html" + "url": "https://www.drinksmixer.com/drink5321.html" }, { "directions": "Shake ingredients and strain into a double-shot glass.", @@ -46128,7 +46128,7 @@ "grenadine syrup" ], "title": "Mexican Rose recipe", - "url": "http://www.drinksmixer.com/drink5322.html" + "url": "https://www.drinksmixer.com/drink5322.html" }, { "directions": "Carefully layer into a shot glass in the above order.", @@ -46138,7 +46138,7 @@ "Passoa\u00ae liqueur" ], "title": "Mexican Stand-Off recipe", - "url": "http://www.drinksmixer.com/drink5323.html" + "url": "https://www.drinksmixer.com/drink5323.html" }, { "directions": "Pour the malibu rum into an old-fashioned glass, and add tequila and pineapple juice. Add ice and stir.", @@ -46148,7 +46148,7 @@ "pineapple juice" ], "title": "Mexican Surfer recipe", - "url": "http://www.drinksmixer.com/drink5324.html" + "url": "https://www.drinksmixer.com/drink5324.html" }, { "directions": "Combine ingredients straight up or on the rocks. Shoot.", @@ -46158,7 +46158,7 @@ "Jose Cuervo\u00ae Especial gold tequila" ], "title": "Mexican Three Wise Men recipe", - "url": "http://www.drinksmixer.com/drink5325.html" + "url": "https://www.drinksmixer.com/drink5325.html" }, { "directions": "Pour into a mixing glass and stir. Serve in an 8 oz. glass over ice.", @@ -46167,7 +46167,7 @@ "cherry cider" ], "title": "Mexican Virgin recipe", - "url": "http://www.drinksmixer.com/drink5326.html" + "url": "https://www.drinksmixer.com/drink5326.html" }, { "directions": "Shake and pour over ice. Garnish with a slice of lemon and serve with straws.", @@ -46177,7 +46177,7 @@ "cranberry juice" ], "title": "Mexican's Revenge recipe", - "url": "http://www.drinksmixer.com/drink5327.html" + "url": "https://www.drinksmixer.com/drink5327.html" }, { "directions": "Shake with ice and strain into a cocktail glass.", @@ -46188,7 +46188,7 @@ "grenadine syrup" ], "title": "Mexicana recipe", - "url": "http://www.drinksmixer.com/drink5328.html" + "url": "https://www.drinksmixer.com/drink5328.html" }, { "directions": "Pour tequila and juice of lime over ice cubes in a collins glass. Fill with cola, stir, and serve.", @@ -46198,7 +46198,7 @@ "Coca-Cola\u00ae" ], "title": "Mexicola recipe", - "url": "http://www.drinksmixer.com/drink5329.html" + "url": "https://www.drinksmixer.com/drink5329.html" }, { "directions": "Stir all ingredients with ice, strain into a cocktail glass, and serve.", @@ -46208,7 +46208,7 @@ "grapefruit juice" ], "title": "Miami Beach Cocktail recipe", - "url": "http://www.drinksmixer.com/drink5330.html" + "url": "https://www.drinksmixer.com/drink5330.html" }, { "directions": "Mix with ice cubes in a hurricane glass.", @@ -46219,7 +46219,7 @@ "pineapple juice" ], "title": "Miami Hurricane recipe", - "url": "http://www.drinksmixer.com/drink5331.html" + "url": "https://www.drinksmixer.com/drink5331.html" }, { "directions": "Pour the rum and grenadine into a glass over 4 ice cubes. Fill with equal parts orange and cranberry juice.", @@ -46230,7 +46230,7 @@ "cranberry juice" ], "title": "Micheal's Downfall recipe", - "url": "http://www.drinksmixer.com/drink5332.html" + "url": "https://www.drinksmixer.com/drink5332.html" }, { "directions": "Add lemon juice to 4 ice cubes in a beer mug. Add salt and stir to blend. Add tequila and again, stir to blend. Fill with corona and serve.", @@ -46241,7 +46241,7 @@ "Corona\u00ae Extra lager" ], "title": "Michelada Regular recipe", - "url": "http://www.drinksmixer.com/drink5333.html" + "url": "https://www.drinksmixer.com/drink5333.html" }, { "directions": "Mix ingredients in a tall high glass with lots of ice. Add beer, mix, and serve.", @@ -46255,7 +46255,7 @@ "salt" ], "title": "Michelada recipe", - "url": "http://www.drinksmixer.com/drink5334.html" + "url": "https://www.drinksmixer.com/drink5334.html" }, { "directions": "Shake all ingredients (except lime wedge) with ice and strain into an old-fashioned glass over ice cubes. Add salt and pepper to taste. Add the wedge of lime and serve.", @@ -46267,7 +46267,7 @@ "lime" ], "title": "Mickey Mouse recipe", - "url": "http://www.drinksmixer.com/drink5335.html" + "url": "https://www.drinksmixer.com/drink5335.html" }, { "directions": "Combine sugar, cocoa, salt and hot water in 1-quart micro-proof measuring cup (or coffee mug). Microwave at high (100%) for 1 to 1 1/2 minutes or until boiling. Add milk, stir and microwave an additonal 1 1/2 to 2 minutes or until hot. Stir in vanilla, blend well.", @@ -46280,7 +46280,7 @@ "vanilla" ], "title": "Microwave Hot Cocoa recipe", - "url": "http://www.drinksmixer.com/drink5336.html" + "url": "https://www.drinksmixer.com/drink5336.html" }, { "directions": "Combine ingredients in a shaker half-filled with ice cubes, shake well, and strain into a cocktail glass.", @@ -46290,7 +46290,7 @@ "heavy cream" ], "title": "Midnight Cowboy recipe", - "url": "http://www.drinksmixer.com/drink5337.html" + "url": "https://www.drinksmixer.com/drink5337.html" }, { "directions": "Build with ice. Can be shaken, or left layered.", @@ -46301,7 +46301,7 @@ "pineapple juice" ], "title": "Midnight Flight to Malibu recipe", - "url": "http://www.drinksmixer.com/drink5338.html" + "url": "https://www.drinksmixer.com/drink5338.html" }, { "directions": "Combine berry tattoo schnapps and lemonade in a collins glass filled with ice. Top with a splash of 7-up, and garnish with a lemon wedge.", @@ -46311,7 +46311,7 @@ "7-Up\u00ae soda" ], "title": "Midnight Lemonade recipe", - "url": "http://www.drinksmixer.com/drink5339.html" + "url": "https://www.drinksmixer.com/drink5339.html" }, { "directions": "Fill a mixer with ice and add baileys, kahlua, goldshlager, and cream. Shake for 5 seconds and strain into an ice-filled double rocks glass. Add chilled coffee, stir and serve.", @@ -46323,7 +46323,7 @@ "coffee" ], "title": "Midnight Manx recipe", - "url": "http://www.drinksmixer.com/drink5340.html" + "url": "https://www.drinksmixer.com/drink5340.html" }, { "directions": "Rim a cocktail (martini) glass with sugar syrup then dip into chocolate flakes or powder. Add ingredients into a shaker with ice. Shake well then strain into the cocktail glass.", @@ -46333,7 +46333,7 @@ "double cream" ], "title": "Midnight Mint recipe", - "url": "http://www.drinksmixer.com/drink5341.html" + "url": "https://www.drinksmixer.com/drink5341.html" }, { "directions": "Mix in the shot glass. (Ingredients should not be chilled.)", @@ -46342,7 +46342,7 @@ "Jagermeister\u00ae herbal liqueur" ], "title": "Midnight Oil recipe", - "url": "http://www.drinksmixer.com/drink5342.html" + "url": "https://www.drinksmixer.com/drink5342.html" }, { "directions": "Build over ice and garnish with a pineapple wedge, three pineapple leaves, and two cherries.", @@ -46354,7 +46354,7 @@ "lemonade" ], "title": "Midori 2000 recipe", - "url": "http://www.drinksmixer.com/drink5343.html" + "url": "https://www.drinksmixer.com/drink5343.html" }, { "directions": "Add ingredients to a blender with ice and mix until desired consistency is achieved. Strain into a highball glass with/without ice.", @@ -46365,7 +46365,7 @@ "pineapples" ], "title": "Midori Chan recipe", - "url": "http://www.drinksmixer.com/drink5344.html" + "url": "https://www.drinksmixer.com/drink5344.html" }, { "directions": "Pour midori and vodka over ice in a highball glass. Top with cream, to taste.", @@ -46375,7 +46375,7 @@ "cream" ], "title": "Midori Green Russian recipe", - "url": "http://www.drinksmixer.com/drink5345.html" + "url": "https://www.drinksmixer.com/drink5345.html" }, { "directions": "Shake midori, vodka, and sweet and sour over ice in a tin. Prepare a large rocks glass by juicing lime garnish into the glass half filled with ice. Strain in the chilled cocktail, add a splash of pineapple juice (upto half an ounce), and serve.", @@ -46386,7 +46386,7 @@ "pineapple juice" ], "title": "Midori Hack recipe", - "url": "http://www.drinksmixer.com/drink5346.html" + "url": "https://www.drinksmixer.com/drink5346.html" }, { "directions": "1. Warm the bottle of midori so that it is hot to the touch, by first loosening the cap half way, then set the entire bottle in a saucepan half full of water on high heat. \r", @@ -46397,7 +46397,7 @@ "water" ], "title": "Midori Jello Shots recipe", - "url": "http://www.drinksmixer.com/drink5347.html" + "url": "https://www.drinksmixer.com/drink5347.html" }, { "directions": "Moisten the rim of a cocktail glass with lime juice and dip in salt. Shake ingredients together, and pour into a glass filled with crushed ice. \r", @@ -46409,7 +46409,7 @@ "salt" ], "title": "Midori Margarita recipe", - "url": "http://www.drinksmixer.com/drink5348.html" + "url": "https://www.drinksmixer.com/drink5348.html" }, { "directions": "Pour midori melon liqueur and sweet and sour mix into a champagne flute. Add champagne.", @@ -46419,7 +46419,7 @@ "Champagne" ], "title": "Midori Mimosa recipe", - "url": "http://www.drinksmixer.com/drink5349.html" + "url": "https://www.drinksmixer.com/drink5349.html" }, { "directions": "Pour midori into a highball glass, add sweet and sour until three-quarters full, and fill with sprite. Stir.", @@ -46429,7 +46429,7 @@ "Sprite\u00ae soda" ], "title": "Midori Sour #2 recipe", - "url": "http://www.drinksmixer.com/drink5350.html" + "url": "https://www.drinksmixer.com/drink5350.html" }, { "directions": "Mix all ingredients in a blender with enough ice to freeze. Serve in a tall glass with a lime twist garnish.", @@ -46440,7 +46440,7 @@ "ice" ], "title": "Frozen Midori Sour recipe", - "url": "http://www.drinksmixer.com/drink5351.html" + "url": "https://www.drinksmixer.com/drink5351.html" }, { "directions": "Mix ingredients in a boston shaker with cracked ice. In a highball glass or champagne flute (optional), fill glass three quarters full with ice. Pour one tablespoon of cherry juice into the glass before pouring in mixed ingredients. Garnish with two maraschino cherries and lemon wedge. Drink through a straw.", @@ -46452,7 +46452,7 @@ "cherry juice" ], "title": "Midori Sour Ultra recipe", - "url": "http://www.drinksmixer.com/drink5352.html" + "url": "https://www.drinksmixer.com/drink5352.html" }, { "directions": "Build all ingredients over ice in a tall glass. Float fresh cream last.", @@ -46463,7 +46463,7 @@ "cream" ], "title": "Midori Splice recipe", - "url": "http://www.drinksmixer.com/drink5353.html" + "url": "https://www.drinksmixer.com/drink5353.html" }, { "directions": "Mix one part of midori (or equivalent melon liqueur) with one part orange juice. Add a splash of grenadine syrup, and serve.", @@ -46473,7 +46473,7 @@ "grenadine syrup" ], "title": "Midori Sunrise recipe", - "url": "http://www.drinksmixer.com/drink5354.html" + "url": "https://www.drinksmixer.com/drink5354.html" }, { "directions": "In an old-fashioned glass almost filled with ice cubes, combine all of the ingredients. Stir well.", @@ -46485,7 +46485,7 @@ "bitters" ], "title": "Mikado recipe", - "url": "http://www.drinksmixer.com/drink5356.html" + "url": "https://www.drinksmixer.com/drink5356.html" }, { "directions": "Mix and serve with ice.", @@ -46495,7 +46495,7 @@ "Pernod\u00ae licorice liqueur" ], "title": "Mike Tyson recipe", - "url": "http://www.drinksmixer.com/drink5357.html" + "url": "https://www.drinksmixer.com/drink5357.html" }, { "directions": "Pour kahlua and irish cream into a collins glass three-quarters filled with ice. Add coke, then the cream. Stir together. Top off with a small shot of whipped cream.", @@ -46507,7 +46507,7 @@ "whipped cream" ], "title": "Mike's Chocolate Pudding recipe", - "url": "http://www.drinksmixer.com/drink5358.html" + "url": "https://www.drinksmixer.com/drink5358.html" }, { "directions": "Pour eggnog into a coffee mug. Stir in amaretto, and float kahlua on top. Add a small shot of whipped cream, then sprinkle a couple of pinches of nutmeg on top.", @@ -46518,7 +46518,7 @@ "whipped cream" ], "title": "Mike's Eggnog Wonderful recipe", - "url": "http://www.drinksmixer.com/drink5359.html" + "url": "https://www.drinksmixer.com/drink5359.html" }, { "directions": "Mix ingredients in a tumbler and shake thoroughly. Pour over ice in a tall glass.", @@ -46530,7 +46530,7 @@ "pineapple juice" ], "title": "Mikey Mike recipe", - "url": "http://www.drinksmixer.com/drink5360.html" + "url": "https://www.drinksmixer.com/drink5360.html" }, { "directions": "Pour the campari into a highball glass with ice. Add the grapefruit juice, then the soda. Stir once.", @@ -46540,7 +46540,7 @@ "grapefruit juice" ], "title": "The Miki recipe", - "url": "http://www.drinksmixer.com/drink5361.html" + "url": "https://www.drinksmixer.com/drink5361.html" }, { "directions": "Shake liquors and milk with cracked ice and sugar syrup and strain into a chilled highball glass. Sprinkle nutmeg on top and serve.", @@ -46552,7 +46552,7 @@ "nutmeg" ], "title": "Milk Punch recipe", - "url": "http://www.drinksmixer.com/drink5362.html" + "url": "https://www.drinksmixer.com/drink5362.html" }, { "directions": "Pour licor 43 over ice, shake and strain into a highball glass. Vary ingredients to taste.", @@ -46561,7 +46561,7 @@ "milk" ], "title": "Milk Shake 43 recipe", - "url": "http://www.drinksmixer.com/drink5363.html" + "url": "https://www.drinksmixer.com/drink5363.html" }, { "directions": "Shake and serve in a highball glass.", @@ -46571,7 +46571,7 @@ "Jagermeister\u00ae herbal liqueur" ], "title": "Milky Nooky recipe", - "url": "http://www.drinksmixer.com/drink5364.html" + "url": "https://www.drinksmixer.com/drink5364.html" }, { "directions": "Combine all ingredients, mix, and serve in a cocktail glass without ice.", @@ -46581,7 +46581,7 @@ "Irish cream" ], "title": "Milky Way Martini recipe", - "url": "http://www.drinksmixer.com/drink5365.html" + "url": "https://www.drinksmixer.com/drink5365.html" }, { "directions": "Add ingredients to a cocktail shaker, shake, and serve with cut apple, lemon, and pineapple-leaves.", @@ -46593,7 +46593,7 @@ "pineapple juice" ], "title": "Milky Way recipe", - "url": "http://www.drinksmixer.com/drink5366.html" + "url": "https://www.drinksmixer.com/drink5366.html" }, { "directions": "Pour the root beer schnapps into a shot glass and add the irish cream. Top with goldschlager.", @@ -46603,7 +46603,7 @@ "Goldschlager\u00ae cinnamon schnapps" ], "title": "The Milky Way recipe", - "url": "http://www.drinksmixer.com/drink5367.html" + "url": "https://www.drinksmixer.com/drink5367.html" }, { "directions": "Shake ingredients with ice, strain into a cocktail glass, and serve.", @@ -46615,7 +46615,7 @@ "egg" ], "title": "Million-Dollar Cocktail recipe", - "url": "http://www.drinksmixer.com/drink5368.html" + "url": "https://www.drinksmixer.com/drink5368.html" }, { "directions": "Pour bailey's irish cream, frangelico and kahlua into an irish coffee cup and add coffee. Top with whipped cream and, optionally, allspice (cinnamon and nutmeg).", @@ -46626,7 +46626,7 @@ "coffee" ], "title": "Millionaire's Coffee recipe", - "url": "http://www.drinksmixer.com/drink5369.html" + "url": "https://www.drinksmixer.com/drink5369.html" }, { "directions": "Pour milk into a highball glass, add the pepsi and drink before seperation occurs.", @@ -46635,7 +46635,7 @@ "milk" ], "title": "Milpsi recipe", - "url": "http://www.drinksmixer.com/drink5370.html" + "url": "https://www.drinksmixer.com/drink5370.html" }, { "directions": "Pour into a shot glass and serve.", @@ -46645,7 +46645,7 @@ "Goldschlager\u00ae cinnamon schnapps" ], "title": "Milwaukee Stop Light recipe", - "url": "http://www.drinksmixer.com/drink5371.html" + "url": "https://www.drinksmixer.com/drink5371.html" }, { "directions": "Pour orange juice into a collins glass over two ice cubes. Fill with chilled champagne, stir very gently, and serve.", @@ -46654,7 +46654,7 @@ "Champagne" ], "title": "Mimosa recipe", - "url": "http://www.drinksmixer.com/drink5372.html" + "url": "https://www.drinksmixer.com/drink5372.html" }, { "directions": "Place three to four ice cubes in a small, narrow glass. Carefully layer the kahlua, vodka and finally the sprite. (Sprite should be about half of the shot, or to taste.) Serve unstirred with a wide straw.", @@ -46664,7 +46664,7 @@ "Sprite\u00ae soda" ], "title": "Mind Eraser #2 recipe", - "url": "http://www.drinksmixer.com/drink5373.html" + "url": "https://www.drinksmixer.com/drink5373.html" }, { "directions": "Fill a cocktail glass with ice, and carefully layer in each ingredient; kalhua, vodka, butterscotch schnapps, then 7-up.", @@ -46675,7 +46675,7 @@ "7-Up\u00ae soda" ], "title": "Mind Eraser #3 recipe", - "url": "http://www.drinksmixer.com/drink5374.html" + "url": "https://www.drinksmixer.com/drink5374.html" }, { "directions": "Pour vodka, kahlua, and tonic water into a rocks or old-fashioned glass. Serve with a straw.", @@ -46685,7 +46685,7 @@ "tonic water" ], "title": "Mind Eraser recipe", - "url": "http://www.drinksmixer.com/drink5375.html" + "url": "https://www.drinksmixer.com/drink5375.html" }, { "directions": "Shake the ricard, blue curacao and milk (2% fat) with ice in a shot glass.", @@ -46695,7 +46695,7 @@ "milk" ], "title": "Mind Game recipe", - "url": "http://www.drinksmixer.com/drink5376.html" + "url": "https://www.drinksmixer.com/drink5376.html" }, { "directions": "Pour vodka into an ice-filled hurricane glass. Add the juices, and top with club soda.", @@ -46706,7 +46706,7 @@ "club soda" ], "title": "Mind Over Marny recipe", - "url": "http://www.drinksmixer.com/drink5377.html" + "url": "https://www.drinksmixer.com/drink5377.html" }, { "directions": "Place three shots of vodka into a pint size beer glass, and fill with guinness stout.", @@ -46715,7 +46715,7 @@ "Guinness\u00ae stout" ], "title": "Miner's Lung recipe", - "url": "http://www.drinksmixer.com/drink5378.html" + "url": "https://www.drinksmixer.com/drink5378.html" }, { "directions": "Mix in shot glass.", @@ -46725,7 +46725,7 @@ "Bailey's\u00ae Irish cream" ], "title": "Mint Chocolate recipe", - "url": "http://www.drinksmixer.com/drink5379.html" + "url": "https://www.drinksmixer.com/drink5379.html" }, { "directions": "Shake gin and juice of lemon with ice and strain into a collins glass over ice cubes. Fill with carbonated water and stir. Add slices of orange and lemon, top with a cherry, and serve with a straw.", @@ -46738,7 +46738,7 @@ "cherry" ], "title": "Mint Collins recipe", - "url": "http://www.drinksmixer.com/drink5380.html" + "url": "https://www.drinksmixer.com/drink5380.html" }, { "directions": "Stir all ingredients with ice, strain into a cocktail glass, and serve.", @@ -46748,7 +46748,7 @@ "dry vermouth" ], "title": "Mint Gin Cocktail recipe", - "url": "http://www.drinksmixer.com/drink5381.html" + "url": "https://www.drinksmixer.com/drink5381.html" }, { "directions": "Muddle mint leaves, powdered sugar, and water in a collins glass. Fill the glass with shaved or crushed ice and add bourbon. Top with more ice and garnish with a mint sprig. Serve with a straw.", @@ -46759,7 +46759,7 @@ "water" ], "title": "Mint Julep recipe", - "url": "http://www.drinksmixer.com/drink5382.html" + "url": "https://www.drinksmixer.com/drink5382.html" }, { "directions": "In a mixing glass half-filled with ice cubes, combine the gin and creme de menthe. Stir well. Strain into a cocktail glass and garnish with mint leaves.", @@ -46769,7 +46769,7 @@ "mint" ], "title": "Mint Martini recipe", - "url": "http://www.drinksmixer.com/drink5383.html" + "url": "https://www.drinksmixer.com/drink5383.html" }, { "directions": "Place twisted or crushed fresh mint leaves into a medium sized cocktail glass. Add frozen vodka, and ice if desired. Stir briefly.", @@ -46778,7 +46778,7 @@ "mint" ], "title": "Mint Russki recipe", - "url": "http://www.drinksmixer.com/drink5384.html" + "url": "https://www.drinksmixer.com/drink5384.html" }, { "directions": "Pour white creme de menthe over ice in a cocktail glass and add iced tea to taste.", @@ -46787,7 +46787,7 @@ "iced tea" ], "title": "Mint Tea recipe", - "url": "http://www.drinksmixer.com/drink5385.html" + "url": "https://www.drinksmixer.com/drink5385.html" }, { "directions": "Shake all ingredients with ice cubes, then pour into a martini glass. Garnish with a mint leaf.", @@ -46797,7 +46797,7 @@ "vermouth" ], "title": "Minttini recipe", - "url": "http://www.drinksmixer.com/drink5386.html" + "url": "https://www.drinksmixer.com/drink5386.html" }, { "directions": "Shake with ice and stir in chilled glasses. Garnish with a strawberry.", @@ -46808,7 +46808,7 @@ "strawberry juice" ], "title": "Mirage recipe", - "url": "http://www.drinksmixer.com/drink5387.html" + "url": "https://www.drinksmixer.com/drink5387.html" }, { "directions": "Pour both shots over rocks in a highball glass. Fill with coke, or soda of your choice.", @@ -46818,7 +46818,7 @@ "Coca-Cola\u00ae" ], "title": "Mir recipe", - "url": "http://www.drinksmixer.com/drink5388.html" + "url": "https://www.drinksmixer.com/drink5388.html" }, { "directions": "In a mixing glass half-filled with ice cubes, combine all of the ingredients. Stir well, and strain into a cocktail glass.", @@ -46828,7 +46828,7 @@ "dark creme de cacao" ], "title": "Miss Belle recipe", - "url": "http://www.drinksmixer.com/drink5389.html" + "url": "https://www.drinksmixer.com/drink5389.html" }, { "directions": "Shake and serve over ice.", @@ -46839,7 +46839,7 @@ "pineapple juice" ], "title": "Miss V recipe", - "url": "http://www.drinksmixer.com/drink5390.html" + "url": "https://www.drinksmixer.com/drink5390.html" }, { "directions": "Shake all ingredients (except carbonated water) with ice and strain into a collins glass over ice cubes. Fill with carbonated water, stir, and serve.", @@ -46852,7 +46852,7 @@ "carbonated water" ], "title": "Mississippi Planters Punch recipe", - "url": "http://www.drinksmixer.com/drink5391.html" + "url": "https://www.drinksmixer.com/drink5391.html" }, { "directions": "Pour vodka, pineapple juice and fruit punch into an ice-filled glass. Fill with orange juice, and serve.", @@ -46863,7 +46863,7 @@ "orange juice" ], "title": "Missle Pop recipe", - "url": "http://www.drinksmixer.com/drink5392.html" + "url": "https://www.drinksmixer.com/drink5392.html" }, { "directions": "In a shaker half-filled with ice cubes, combine all of the ingredients. Shake well, and strain into a cocktail glass.", @@ -46876,7 +46876,7 @@ "grenadine syrup" ], "title": "Mister Christian recipe", - "url": "http://www.drinksmixer.com/drink5393.html" + "url": "https://www.drinksmixer.com/drink5393.html" }, { "directions": "Pour two ounces of whiskey and one ounce of vodka on ice into a regular glass. Add three ounces of lemon-lime soda and a dash of orange juice. Serve.", @@ -46887,7 +46887,7 @@ "orange juice" ], "title": "Mister Wu recipe", - "url": "http://www.drinksmixer.com/drink5394.html" + "url": "https://www.drinksmixer.com/drink5394.html" }, { "directions": "Combine creme de almond, white creme de cacao, swiss mocha cream and grenadine in an ice-filled highball glass. Fill with half-and-half, and top with coca-cola. Garnish with filbert nuts or cherries.", @@ -46900,7 +46900,7 @@ "Coca-Cola\u00ae" ], "title": "Mistletoe recipe", - "url": "http://www.drinksmixer.com/drink5395.html" + "url": "https://www.drinksmixer.com/drink5395.html" }, { "directions": "Pour vodka into a collins glass half-filled with ice. Add the orange juice, and pour the cranberry juice. Stir gently.", @@ -46910,7 +46910,7 @@ "cranberry juice" ], "title": "Mistolin recipe", - "url": "http://www.drinksmixer.com/drink5396.html" + "url": "https://www.drinksmixer.com/drink5396.html" }, { "directions": "Pour the drambuie, gin and bailey's irish cream into a shaker with ice. Shake, strain into a brandy snifter, and add two small dashes of kahlua.", @@ -46921,7 +46921,7 @@ "Kahlua\u00ae coffee liqueur" ], "title": "Misty Loch recipe", - "url": "http://www.drinksmixer.com/drink5397.html" + "url": "https://www.drinksmixer.com/drink5397.html" }, { "directions": "In a shaker half-filled with ice cubes, combine all of the ingredients. Shake well, and strain into an old-fashioned glass almost filled with ice cubes.", @@ -46931,7 +46931,7 @@ "orange juice" ], "title": "Mithering Bastard recipe", - "url": "http://www.drinksmixer.com/drink5398.html" + "url": "https://www.drinksmixer.com/drink5398.html" }, { "directions": "Pour chambord and peach schnapps over crushed ice in a collins glass. Fill up to half with coconut syrup, fill the other half with orange juice, and stir. Garnish with a paper umbrella through a marachino cherry and orange wedge.\r", @@ -46942,7 +46942,7 @@ "orange juice" ], "title": "Moana Sands recipe", - "url": "http://www.drinksmixer.com/drink5399.html" + "url": "https://www.drinksmixer.com/drink5399.html" }, { "directions": "Pour surge into a highball glass, and add vodka.", @@ -46951,7 +46951,7 @@ "Surge\u00ae citrus soda" ], "title": "The Moby recipe", - "url": "http://www.drinksmixer.com/drink5400.html" + "url": "https://www.drinksmixer.com/drink5400.html" }, { "directions": "Pour chilled coffee, milk, and instant chocolate milk powder into a blender. Mix together. Add whipped cream and ice cream, and blend together at 'frappe' setting. Pour into a coffee mug. Garnish with whipped cream, nutmeg, cinnamon, or chocolate shavings.", @@ -46963,7 +46963,7 @@ "vanilla ice cream" ], "title": "Mocha Frappe recipe", - "url": "http://www.drinksmixer.com/drink5401.html" + "url": "https://www.drinksmixer.com/drink5401.html" }, { "directions": "Add ingredients to shaker half-filled with ice, shake, and pour over ice in a highball glass.", @@ -46973,7 +46973,7 @@ "Bailey's\u00ae Irish cream" ], "title": "Mocha Maria recipe", - "url": "http://www.drinksmixer.com/drink5402.html" + "url": "https://www.drinksmixer.com/drink5402.html" }, { "directions": "Mix ingredients in a shaker with ice and strain into a chilled martini glass.", @@ -46983,7 +46983,7 @@ "creme de cacao" ], "title": "Mocha Martini recipe", - "url": "http://www.drinksmixer.com/drink5403.html" + "url": "https://www.drinksmixer.com/drink5403.html" }, { "directions": "Pour chocolate syrup, creme de menthe, creme de cacao and irish cream to an irish coffee cup. Add the espresso, and then the steamed milk. Stir well.", @@ -46997,7 +46997,7 @@ "whipped cream" ], "title": "Mocha Mint Cappuccino recipe", - "url": "http://www.drinksmixer.com/drink5404.html" + "url": "https://www.drinksmixer.com/drink5404.html" }, { "directions": "Shake all ingredients with ice, strain into a cocktail glass, and serve.", @@ -47007,7 +47007,7 @@ "white creme de cacao" ], "title": "Mocha Mint recipe", - "url": "http://www.drinksmixer.com/drink5405.html" + "url": "https://www.drinksmixer.com/drink5405.html" }, { "directions": "Place the milk, banana, sugar and coffee granules in a blender and blend until smooth. Freeze in a blender container for 1 hour or until slightly frozen. Loosen frozen mixture from the sides of blender container, add yoghurt and blend until smooth. Garnish with banana slices. Serve immediately.", @@ -47019,7 +47019,7 @@ "yoghurt" ], "title": "Mocha Mudslide Milkshake recipe", - "url": "http://www.drinksmixer.com/drink5406.html" + "url": "https://www.drinksmixer.com/drink5406.html" }, { "directions": "Pour coffee into an irish coffee cup. Add cocoa mix and chambord, mix well and top off with whipped cream.", @@ -47030,7 +47030,7 @@ "whipped cream" ], "title": "Mocha-Berry recipe", - "url": "http://www.drinksmixer.com/drink5407.html" + "url": "https://www.drinksmixer.com/drink5407.html" }, { "directions": "Boil sugar and water until the sugar dissolves, and allow to cool. Stir cranberry, pineapple, and orange juice, and chill. Prior to serving, add carbonated beverage.", @@ -47043,7 +47043,7 @@ "lemon-lime soda" ], "title": "Mock Pink Champagne recipe", - "url": "http://www.drinksmixer.com/drink5408.html" + "url": "https://www.drinksmixer.com/drink5408.html" }, { "directions": "Combine ingredients in a shaker half-filled with ice cubes. Shake well, and strain into a cocktail glass.", @@ -47055,7 +47055,7 @@ "orange bitters" ], "title": "Modern Cocktail recipe", - "url": "http://www.drinksmixer.com/drink5409.html" + "url": "https://www.drinksmixer.com/drink5409.html" }, { "directions": "Carefully layer each liquor in the order listed (from top to bottom) into a shot glass. Shoot.", @@ -47065,7 +47065,7 @@ "Kahlua\u00ae coffee liqueur" ], "title": "Modified Duck Fart recipe", - "url": "http://www.drinksmixer.com/drink5410.html" + "url": "https://www.drinksmixer.com/drink5410.html" }, { "directions": "Pour absolut citron into a highball glass filled with ice cubes. Fill with 7-up, add a splash of fruit juice, and stir.", @@ -47075,7 +47075,7 @@ "fruit juice" ], "title": "Mogadon recipe", - "url": "http://www.drinksmixer.com/drink5411.html" + "url": "https://www.drinksmixer.com/drink5411.html" }, { "directions": "Mix hot chocolate as per usual (in a 12 oz. glass or larger) and add liquors. Top with whipped cream.", @@ -47087,7 +47087,7 @@ "whipped cream" ], "title": "Mogul Masher recipe", - "url": "http://www.drinksmixer.com/drink5412.html" + "url": "https://www.drinksmixer.com/drink5412.html" }, { "directions": "1. Slice half a lemon into small slices. Extract the juice from the other half.\r", @@ -47097,7 +47097,7 @@ "lemon" ], "title": "Moilanen recipe", - "url": "http://www.drinksmixer.com/drink5413.html" + "url": "https://www.drinksmixer.com/drink5413.html" }, { "directions": "Mix in a large container. Chill with bags of ice. Add sugar (to taste) if desired.", @@ -47112,7 +47112,7 @@ "oranges" ], "title": "Mojambo Punch recipe", - "url": "http://www.drinksmixer.com/drink5414.html" + "url": "https://www.drinksmixer.com/drink5414.html" }, { "directions": "Mix all ingredients in a large container. Keep stirred.", @@ -47126,7 +47126,7 @@ "ice" ], "title": "Mojo recipe", - "url": "http://www.drinksmixer.com/drink5415.html" + "url": "https://www.drinksmixer.com/drink5415.html" }, { "directions": "Pour a shot of vodka (preferably russian) into a shot glass. Float the 151, ignite, blow out, and shoot.", @@ -47135,7 +47135,7 @@ "151 proof rum" ], "title": "Molotov Cocktail recipe", - "url": "http://www.drinksmixer.com/drink5416.html" + "url": "https://www.drinksmixer.com/drink5416.html" }, { "directions": "Pour apple schnapps over ice in a brandy snifter and float hot damn on top.", @@ -47144,7 +47144,7 @@ "DeKuyper\u00ae Hot Damn cinnamon schnapps" ], "title": "Mom's Apple Pie recipe", - "url": "http://www.drinksmixer.com/drink5417.html" + "url": "https://www.drinksmixer.com/drink5417.html" }, { "directions": "Stir ingredients and pour into a highball glass.", @@ -47153,7 +47153,7 @@ "lemon soda" ], "title": "Mona-Lisa recipe", - "url": "http://www.drinksmixer.com/drink5418.html" + "url": "https://www.drinksmixer.com/drink5418.html" }, { "directions": "Pour grenadine syrup into a collins glass filled with ice cubes. Add the beer and 7-up, and stir well.", @@ -47163,7 +47163,7 @@ "7-Up\u00ae soda" ], "title": "Monaco recipe", - "url": "http://www.drinksmixer.com/drink5419.html" + "url": "https://www.drinksmixer.com/drink5419.html" }, { "directions": "Add rums and vanilla to an ice-filled brandy snifter. Add a splash of cola and fill with orange juice. Pour mixture into blender and half blend so it isn't too thick. Pour back into a brandy snifter and serve.", @@ -47175,7 +47175,7 @@ "orange juice" ], "title": "Monet Carribean Frost recipe", - "url": "http://www.drinksmixer.com/drink5420.html" + "url": "https://www.drinksmixer.com/drink5420.html" }, { "directions": "Pour ingredients, in order, over ice. Shake, and serve.", @@ -47190,7 +47190,7 @@ "grenadine syrup" ], "title": "Mongolian Motherfucker recipe", - "url": "http://www.drinksmixer.com/drink5421.html" + "url": "https://www.drinksmixer.com/drink5421.html" }, { "directions": "Pour ingredients into a highball glass (the larger the better) and stir. Use ice if desired.", @@ -47201,7 +47201,7 @@ "cranberry juice" ], "title": "Moninger's Madness recipe", - "url": "http://www.drinksmixer.com/drink5422.html" + "url": "https://www.drinksmixer.com/drink5422.html" }, { "directions": "Add all ingredients to a highball glass, stir, and serve.", @@ -47210,7 +47210,7 @@ "Coca-Cola\u00ae" ], "title": "Monk on Coke recipe", - "url": "http://www.drinksmixer.com/drink5423.html" + "url": "https://www.drinksmixer.com/drink5423.html" }, { "directions": "Pour frangelico, butterscotch schnapps, and creme de cacao over ice. Add milk (or cream) if desired, and stir.", @@ -47221,7 +47221,7 @@ "milk" ], "title": "Monk's Butt recipe", - "url": "http://www.drinksmixer.com/drink5424.html" + "url": "https://www.drinksmixer.com/drink5424.html" }, { "directions": "Mix ingredients in a cocktail glass, and serve.", @@ -47232,7 +47232,7 @@ "Irish cream" ], "title": "Monk's Martini recipe", - "url": "http://www.drinksmixer.com/drink5425.html" + "url": "https://www.drinksmixer.com/drink5425.html" }, { "directions": "Fill a shot glass with apfelkorn almost to the rim. Carefully pour a little bailey's into the glass. The two liquors don't mix if poured correctly, and the bailey's will sink to the bottom as a nasty looking blob, not unlike a brain.", @@ -47241,7 +47241,7 @@ "Bailey's\u00ae Irish cream" ], "title": "Monkey Brain recipe", - "url": "http://www.drinksmixer.com/drink5426.html" + "url": "https://www.drinksmixer.com/drink5426.html" }, { "directions": "Combine ingredients in a shaker half-filled with ice cubes, and shake well. Strain into a cocktail glass.", @@ -47252,7 +47252,7 @@ "grenadine syrup" ], "title": "Monkey Gland #2 recipe", - "url": "http://www.drinksmixer.com/drink5427.html" + "url": "https://www.drinksmixer.com/drink5427.html" }, { "directions": "Add rum, creme de banane and grenadine to a collins glass. Almost fill with pineapple juice, and mix. Float midori on top, and serve.", @@ -47264,7 +47264,7 @@ "Midori\u00ae melon liqueur" ], "title": "Monkey In a Tree recipe", - "url": "http://www.drinksmixer.com/drink5428.html" + "url": "https://www.drinksmixer.com/drink5428.html" }, { "directions": "Blend until smooth and frothy.", @@ -47276,7 +47276,7 @@ "cream of coconut" ], "title": "Monkey La La recipe", - "url": "http://www.drinksmixer.com/drink5429.html" + "url": "https://www.drinksmixer.com/drink5429.html" }, { "directions": "Pour 2 - 3 oz whiskey into a beer glass, and fill with vernors ginger ale.", @@ -47285,7 +47285,7 @@ "Vernors\u00ae Original ginger soda" ], "title": "Monkey Spanker recipe", - "url": "http://www.drinksmixer.com/drink5430.html" + "url": "https://www.drinksmixer.com/drink5430.html" }, { "directions": "Pour all of the ingredients into an old-fashioned glass almost filled with ice cubes. Stir well.", @@ -47295,7 +47295,7 @@ "bitters" ], "title": "Monkey Wrench recipe", - "url": "http://www.drinksmixer.com/drink5431.html" + "url": "https://www.drinksmixer.com/drink5431.html" }, { "directions": "Pour alcohol over ice in a cocktail glass and add milk.\r", @@ -47305,7 +47305,7 @@ "milk" ], "title": "Monkey's Lunch recipe", - "url": "http://www.drinksmixer.com/drink5432.html" + "url": "https://www.drinksmixer.com/drink5432.html" }, { "directions": "Pour all ingredients except myer's dark rum and stir in an ice-filled hurricane glass. Add dark rum at the top, mix and serve.", @@ -47317,7 +47317,7 @@ "Myer's\u00ae dark rum" ], "title": "Monsoon recipe", - "url": "http://www.drinksmixer.com/drink5433.html" + "url": "https://www.drinksmixer.com/drink5433.html" }, { "directions": "Mix orange juice concentrate and kool-aid, and add water. Stir, and watch it turn green.", @@ -47327,7 +47327,7 @@ "water" ], "title": "Monster Slime Juice recipe", - "url": "http://www.drinksmixer.com/drink5434.html" + "url": "https://www.drinksmixer.com/drink5434.html" }, { "directions": "Pour all ingredients into a mason jar, and stir.", @@ -47339,7 +47339,7 @@ "7-Up\u00ae soda" ], "title": "Montana Tornado recipe", - "url": "http://www.drinksmixer.com/drink5435.html" + "url": "https://www.drinksmixer.com/drink5435.html" }, { "directions": "Stir all ingredients into an old-fashioned glass over ice cubes and serve.", @@ -47349,7 +47349,7 @@ "port" ], "title": "Montana recipe", - "url": "http://www.drinksmixer.com/drink5436.html" + "url": "https://www.drinksmixer.com/drink5436.html" }, { "directions": "Moisten the rim of an irish coffee cup with lemon juice, and dip into sugar. Pour the kahlua and grand marnier into the cup, and fill (almost to the top) with coffee. Top with whipped cream and grated chocolate.", @@ -47360,7 +47360,7 @@ "whipped cream" ], "title": "Monte Cristo recipe", - "url": "http://www.drinksmixer.com/drink5437.html" + "url": "https://www.drinksmixer.com/drink5437.html" }, { "directions": "Blend ingredients briefly, with half a cup of crushed ice, in a blender at low speed. Pour into a champagne flute and serve.", @@ -47370,7 +47370,7 @@ "egg" ], "title": "Montezuma recipe", - "url": "http://www.drinksmixer.com/drink5438.html" + "url": "https://www.drinksmixer.com/drink5438.html" }, { "directions": "Stir all ingredients (except cherry) with ice and strain into a cocktail glass. Top with the cherry and serve.", @@ -47381,7 +47381,7 @@ "cherry" ], "title": "Montmartre Cocktail recipe", - "url": "http://www.drinksmixer.com/drink5439.html" + "url": "https://www.drinksmixer.com/drink5439.html" }, { "directions": "Pour ingredients into an old-fashioned glass over ice cubes, stir, and serve.", @@ -47390,7 +47390,7 @@ "anis liqueur" ], "title": "Montreal Club Bouncer recipe", - "url": "http://www.drinksmixer.com/drink5440.html" + "url": "https://www.drinksmixer.com/drink5440.html" }, { "directions": "Shake all ingredients (except lemon slice) with ice and strain into a whiskey sour glass. Add the slice of lemon and serve.", @@ -47402,7 +47402,7 @@ "lemon" ], "title": "Montreal Gin Sour recipe", - "url": "http://www.drinksmixer.com/drink5441.html" + "url": "https://www.drinksmixer.com/drink5441.html" }, { "directions": "Pour both liquors into glass with ice. Add cream and shake well. Serve with a large straw.", @@ -47412,7 +47412,7 @@ "cream" ], "title": "Moo Moo recipe", - "url": "http://www.drinksmixer.com/drink5442.html" + "url": "https://www.drinksmixer.com/drink5442.html" }, { "directions": "Shake all ingredients with ice, strain into a cocktail glass, and serve.", @@ -47422,7 +47422,7 @@ "lemon juice" ], "title": "Moon Quake Shake recipe", - "url": "http://www.drinksmixer.com/drink5443.html" + "url": "https://www.drinksmixer.com/drink5443.html" }, { "directions": "Combine in a highball glass with ice cubes. Stir, and garnish with a slice of orange.", @@ -47431,7 +47431,7 @@ "orange juice" ], "title": "Moonlight Serenade recipe", - "url": "http://www.drinksmixer.com/drink5444.html" + "url": "https://www.drinksmixer.com/drink5444.html" }, { "directions": "Shake all ingredients with ice, strain into an old-fashioned glass over ice cubes, and serve.", @@ -47441,7 +47441,7 @@ "powdered sugar" ], "title": "Moonlight recipe", - "url": "http://www.drinksmixer.com/drink5445.html" + "url": "https://www.drinksmixer.com/drink5445.html" }, { "directions": "Add with ice in a blender, and blend to a thick consistency.", @@ -47452,7 +47452,7 @@ "Bailey's\u00ae Irish cream" ], "title": "Moose Fart recipe", - "url": "http://www.drinksmixer.com/drink5446.html" + "url": "https://www.drinksmixer.com/drink5446.html" }, { "directions": "Pour the absinthe into a shot glass, add the tequila, then add the grenadine syrup.", @@ -47462,7 +47462,7 @@ "grenadine syrup" ], "title": "Moranguito recipe", - "url": "http://www.drinksmixer.com/drink5447.html" + "url": "https://www.drinksmixer.com/drink5447.html" }, { "directions": "Stir ingredients together until it just looks like dark bailey's.", @@ -47472,7 +47472,7 @@ "Malibu\u00ae coconut rum" ], "title": "More Orgasms recipe", - "url": "http://www.drinksmixer.com/drink5448.html" + "url": "https://www.drinksmixer.com/drink5448.html" }, { "directions": "In a shaker half-filled with ice cubes, combine the rum, creme de cacao, and cream. Shake well, and strain into a cocktail glass. Drop the kahlua into the center of the drink.", @@ -47483,7 +47483,7 @@ "Kahlua\u00ae coffee liqueur" ], "title": "Morgan's Mountain recipe", - "url": "http://www.drinksmixer.com/drink5449.html" + "url": "https://www.drinksmixer.com/drink5449.html" }, { "directions": "Add the vodka and grape juice to a collins glass and fill with ginger ale.", @@ -47493,7 +47493,7 @@ "ginger ale" ], "title": "Mormon Surprise recipe", - "url": "http://www.drinksmixer.com/drink5450.html" + "url": "https://www.drinksmixer.com/drink5450.html" }, { "directions": "Pour ingredients into a punch bowl and stir. Add cherries or grenadine.", @@ -47503,7 +47503,7 @@ "Southern Comfort\u00ae peach liqueur" ], "title": "Morning Dew recipe", - "url": "http://www.drinksmixer.com/drink5451.html" + "url": "https://www.drinksmixer.com/drink5451.html" }, { "directions": "Shake all ingredients (except carbonated water) with ice and strain into a highball glass over two ice cubes. Fill with carbonated water, stir, and serve.", @@ -47516,7 +47516,7 @@ "carbonated water" ], "title": "Morning Glory Fizz #2 recipe", - "url": "http://www.drinksmixer.com/drink5452.html" + "url": "https://www.drinksmixer.com/drink5452.html" }, { "directions": "Blend until smooth and creamy. Pour into a collins glass, and serve.", @@ -47527,7 +47527,7 @@ "kiwi" ], "title": "Morning Milk recipe", - "url": "http://www.drinksmixer.com/drink5453.html" + "url": "https://www.drinksmixer.com/drink5453.html" }, { "directions": "Rub the rim of old-fashioned glass with lime juice, and dip into powdered sugar. Shake all ingredients with ice, strain into the sugar-rimmed glass over ice cubes, and serve.", @@ -47539,7 +47539,7 @@ "powdered sugar" ], "title": "Morro recipe", - "url": "http://www.drinksmixer.com/drink5454.html" + "url": "https://www.drinksmixer.com/drink5454.html" }, { "directions": "Pour grenadine and amaretto into a chilled cocktail glass. Add chilled vodka.", @@ -47549,7 +47549,7 @@ "vodka" ], "title": "Mortini recipe", - "url": "http://www.drinksmixer.com/drink5455.html" + "url": "https://www.drinksmixer.com/drink5455.html" }, { "directions": "Fill a pitcher with one bottle of tom collins mix. Add everclear as above or \"to taste\". (Caution: everclear is extremely potent.) Add ice and serve.", @@ -47558,7 +47558,7 @@ "collins mix" ], "title": "Mortuary Mix recipe", - "url": "http://www.drinksmixer.com/drink5456.html" + "url": "https://www.drinksmixer.com/drink5456.html" }, { "directions": "Almost fill a glass half-filled with ice with root beer. Add a little 7-up, and stir with a straw.", @@ -47568,7 +47568,7 @@ "ice" ], "title": "Mosstrooper recipe", - "url": "http://www.drinksmixer.com/drink5457.html" + "url": "https://www.drinksmixer.com/drink5457.html" }, { "directions": "Combine the rum, vermouth, triple sec and grenadine in a shaker half-filled with ice cubes. Shake well, and strain into a cocktail glass garnished with a cherry.", @@ -47580,7 +47580,7 @@ "maraschino cherry" ], "title": "Mostly Mal recipe", - "url": "http://www.drinksmixer.com/drink5458.html" + "url": "https://www.drinksmixer.com/drink5458.html" }, { "directions": "Pour the licor 43 into a highball glass over two ice cubes. Fill with milk, and add a stirring pin.", @@ -47589,7 +47589,7 @@ "milk" ], "title": "Mother Moo recipe", - "url": "http://www.drinksmixer.com/drink5459.html" + "url": "https://www.drinksmixer.com/drink5459.html" }, { "directions": "Pour appropriate amounts into a mixing container to your liking. Serve in highball glasses.", @@ -47598,7 +47598,7 @@ "7-Up\u00ae soda" ], "title": "Mother Pucker recipe", - "url": "http://www.drinksmixer.com/drink5460.html" + "url": "https://www.drinksmixer.com/drink5460.html" }, { "directions": "Shake over ice, and strain into two shot glasses.", @@ -47608,7 +47608,7 @@ "milk" ], "title": "Mother's Milk recipe", - "url": "http://www.drinksmixer.com/drink5461.html" + "url": "https://www.drinksmixer.com/drink5461.html" }, { "directions": "Pour jagermeister into a triple shot glass. Add, in order; peppermint schnapps, goldshlager, and malibu rum.", @@ -47619,7 +47619,7 @@ "Malibu\u00ae coconut rum" ], "title": "Motor Oil recipe", - "url": "http://www.drinksmixer.com/drink5462.html" + "url": "https://www.drinksmixer.com/drink5462.html" }, { "directions": "Fill a collins glass with ice, add rum, creme de cacao, and fill with cream.", @@ -47629,7 +47629,7 @@ "cream" ], "title": "Mounds recipe", - "url": "http://www.drinksmixer.com/drink5463.html" + "url": "https://www.drinksmixer.com/drink5463.html" }, { "directions": "Add the vodka, rum, gin and schnapps to a highball glass. Fill with cranberry juice, and serve with a lime slice.", @@ -47641,7 +47641,7 @@ "cranberry juice" ], "title": "Mount Red recipe", - "url": "http://www.drinksmixer.com/drink5464.html" + "url": "https://www.drinksmixer.com/drink5464.html" }, { "directions": "Add the vodka, cider and mountain dew to a glass filled with ice cubes.", @@ -47651,7 +47651,7 @@ "Mountain Dew\u00ae citrus soda" ], "title": "Mountain Cider High recipe", - "url": "http://www.drinksmixer.com/drink5465.html" + "url": "https://www.drinksmixer.com/drink5465.html" }, { "directions": "Shake all ingredients with ice, strain into a cocktail glass, and serve.", @@ -47663,7 +47663,7 @@ "egg" ], "title": "Mountain Cocktail recipe", - "url": "http://www.drinksmixer.com/drink5466.html" + "url": "https://www.drinksmixer.com/drink5466.html" }, { "directions": "Fill a glass (ice optional) three-quarters full with mountain dew. Add tang to taste.", @@ -47672,7 +47672,7 @@ "Tang\u00ae powdered soft drink" ], "title": "Mountain Dang recipe", - "url": "http://www.drinksmixer.com/drink5467.html" + "url": "https://www.drinksmixer.com/drink5467.html" }, { "directions": "Fill a beer glass half-way with beer. Fill the other half with 7-up. (If you have the patience, pour a little of one, then a little of the other, until the glass is full.) \r", @@ -47682,7 +47682,7 @@ "Midori\u00ae melon liqueur" ], "title": "Mountain Dew recipe", - "url": "http://www.drinksmixer.com/drink5468.html" + "url": "https://www.drinksmixer.com/drink5468.html" }, { "directions": "Shake and serve over crushed ice.", @@ -47693,7 +47693,7 @@ "Mountain Dew\u00ae citrus soda" ], "title": "Mountain Sunrise recipe", - "url": "http://www.drinksmixer.com/drink5469.html" + "url": "https://www.drinksmixer.com/drink5469.html" }, { "directions": "Mix in shaker, and serve chilled.", @@ -47703,7 +47703,7 @@ "pineapple juice" ], "title": "Mountaineer On Acid recipe", - "url": "http://www.drinksmixer.com/drink5470.html" + "url": "https://www.drinksmixer.com/drink5470.html" }, { "directions": "Combine the rum, vermouth, triple sec and orange bitters in a mixing glass half-filled with ice cubes. Stir well, strain into a cocktail glass, and serve with a lemon twist.", @@ -47714,7 +47714,7 @@ "orange bitters" ], "title": "Mozart Cocktail recipe", - "url": "http://www.drinksmixer.com/drink5471.html" + "url": "https://www.drinksmixer.com/drink5471.html" }, { "directions": "Shake with ice and strain into a highball glass.", @@ -47725,7 +47725,7 @@ "milk" ], "title": "Mr G recipe", - "url": "http://www.drinksmixer.com/drink5472.html" + "url": "https://www.drinksmixer.com/drink5472.html" }, { "directions": "Add fisherman's friend bags to a bottle of vodka. Mix together so that the fishermans friend dissolves. Rest for a couple of days, pour into shot glasses, and serve.", @@ -47734,7 +47734,7 @@ "Fisherman's Friend\u00ae menthol candy" ], "title": "Mr. Freeze recipe", - "url": "http://www.drinksmixer.com/drink5473.html" + "url": "https://www.drinksmixer.com/drink5473.html" }, { "directions": "Pour gin and ginger ale over ice in a collins glass. Add chocolate syrup and let settle in the bottom. Stir very lightly. Drink should appear dark brown on the bottom and gradate to clear on top.", @@ -47744,7 +47744,7 @@ "chocolate syrup" ], "title": "Mudskipper recipe", - "url": "http://www.drinksmixer.com/drink5474.html" + "url": "https://www.drinksmixer.com/drink5474.html" }, { "directions": "Add ingredients to a large jug or punch bowl and stir well.", @@ -47754,7 +47754,7 @@ "Coca-Cola\u00ae" ], "title": "Mudslinger recipe", - "url": "http://www.drinksmixer.com/drink5475.html" + "url": "https://www.drinksmixer.com/drink5475.html" }, { "directions": "Mix ingredients in a shaker. Serve in an ice-filled old-fashioned glass.", @@ -47765,7 +47765,7 @@ "Bailey's\u00ae Irish cream" ], "title": "Mudwrestle recipe", - "url": "http://www.drinksmixer.com/drink5476.html" + "url": "https://www.drinksmixer.com/drink5476.html" }, { "directions": "Mix all the alcohol in a shaker with ice, and strain into a shot glass. Place shot glass into a wide-mouth rocks or old-fashioned glass, fill with whipped cream, and add a cherry if desired. Shoot without hands.", @@ -47776,7 +47776,7 @@ "whipped cream" ], "title": "Muff Diver recipe", - "url": "http://www.drinksmixer.com/drink5477.html" + "url": "https://www.drinksmixer.com/drink5477.html" }, { "directions": "Pour smirnoff vodka into a glass. Fill with ginger beer, add ice and squeeze in the lime juice.", @@ -47786,7 +47786,7 @@ "lime juice" ], "title": "Mule recipe", - "url": "http://www.drinksmixer.com/drink5478.html" + "url": "https://www.drinksmixer.com/drink5478.html" }, { "directions": "Combine madeira, honey, juice, peel, cloves and cinnamon in a large saucepan and bring almost to simmer over medium heat. Reduce heat and cook for 10 minutes (do not simmer). Add cointreau and stir until hot. Serve warm in heat proof glasses or mugs, leaving peel and spices in pan.", @@ -47800,7 +47800,7 @@ "Cointreau\u00ae orange liqueur" ], "title": "Mulled Madeira recipe", - "url": "http://www.drinksmixer.com/drink5479.html" + "url": "https://www.drinksmixer.com/drink5479.html" }, { "directions": "Simmer water with, sugar, cloves, cinnamon sticks, and peel of one lemon in a stainless steel pot for 10 minutes. Pour in the wine, heat to a \"coffee temperature\" (do not boil) and add brandy.", @@ -47814,7 +47814,7 @@ "brandy" ], "title": "Mulled Wine recipe", - "url": "http://www.drinksmixer.com/drink5480.html" + "url": "https://www.drinksmixer.com/drink5480.html" }, { "directions": "Combine ingredients in an empty shaker. Shake vigorously then pour contents into a tall cocktail glass filled with crushed ice. Garnish with a slice of orange, a wedge of pineapple or a cherry (or all three).", @@ -47828,7 +47828,7 @@ "limes" ], "title": "Mullens Mai Tai recipe", - "url": "http://www.drinksmixer.com/drink5481.html" + "url": "https://www.drinksmixer.com/drink5481.html" }, { "directions": "Shake the orange juice, vodka, and mango syrup with ice in a shaker. Carefully layer the apricot liqueur and blueberry schnapps into a highball glass. Float the pre-shaken mixture of vodka and juices on top, and serve.", @@ -47840,7 +47840,7 @@ "orange juice" ], "title": "Multi-Colored Smurf recipe", - "url": "http://www.drinksmixer.com/drink5482.html" + "url": "https://www.drinksmixer.com/drink5482.html" }, { "directions": "Build over ice in a tall glass. Garnish with strawberries or cherries.", @@ -47851,7 +47851,7 @@ "strawberries" ], "title": "Multiple Orgasm recipe", - "url": "http://www.drinksmixer.com/drink5483.html" + "url": "https://www.drinksmixer.com/drink5483.html" }, { "directions": "Add all ingredients to a blender with ice and blend until smooth. Serve in a hurricane glass.", @@ -47864,7 +47864,7 @@ "ice cream" ], "title": "Multiple Orgasm Cajun Style recipe", - "url": "http://www.drinksmixer.com/drink5484.html" + "url": "https://www.drinksmixer.com/drink5484.html" }, { "directions": "Combine all of the ingredients in a shaker half-filled with ice cubes. Shake well, and strain into an old-fashioned glass almost filled with ice cubes.", @@ -47877,7 +47877,7 @@ "nutmeg" ], "title": "Mumbo Jumbo recipe", - "url": "http://www.drinksmixer.com/drink5485.html" + "url": "https://www.drinksmixer.com/drink5485.html" }, { "directions": "Mix vodka, triple sec, and lemon juice in an old-fashioned glass half-filled with ice. Top off with club soda. Stir.", @@ -47888,7 +47888,7 @@ "club soda" ], "title": "The Mummy recipe", - "url": "http://www.drinksmixer.com/drink5486.html" + "url": "https://www.drinksmixer.com/drink5486.html" }, { "directions": "In a mixing glass half-filled with ice cubes, combine the rum, bourbon, and bitters. Stir well, strain into a cocktail glass, and garnish with a maraschino cherry.", @@ -47899,7 +47899,7 @@ "maraschino cherry" ], "title": "Mumsicle recipe", - "url": "http://www.drinksmixer.com/drink5487.html" + "url": "https://www.drinksmixer.com/drink5487.html" }, { "directions": "Shake or mix all ingredients, and pour over ice cubes into a collins glass, (or any glass large enough). Garnish with an orange slice, a lemon slice, and a cherry if so desired.", @@ -47912,7 +47912,7 @@ "grenadine syrup" ], "title": "Mundo Fine recipe", - "url": "http://www.drinksmixer.com/drink5488.html" + "url": "https://www.drinksmixer.com/drink5488.html" }, { "directions": "Pour equal parts tequila and 7-up into a shot glass. Place palm over the glass, hit it on the table (to stir), and shoot.", @@ -47921,7 +47921,7 @@ "7-Up\u00ae soda" ], "title": "Muppet recipe", - "url": "http://www.drinksmixer.com/drink5489.html" + "url": "https://www.drinksmixer.com/drink5489.html" }, { "directions": "Pour ouzo and drambuie into an old-fashioned glass with ice. Fill with pepsi cola, and serve.", @@ -47931,7 +47931,7 @@ "Pepsi\u00ae cola" ], "title": "Mussaka recipe", - "url": "http://www.drinksmixer.com/drink5490.html" + "url": "https://www.drinksmixer.com/drink5490.html" }, { "directions": "Mix and pour into shot glass(es).", @@ -47941,7 +47941,7 @@ "sambuca" ], "title": "Mussolini recipe", - "url": "http://www.drinksmixer.com/drink5491.html" + "url": "https://www.drinksmixer.com/drink5491.html" }, { "directions": "Combine the rum, dubonnet, and bitters in a mixing glass half-filled with ice cubes. Stir well, strain into a cocktail glass, and garnish with a maraschino cherry.", @@ -47952,7 +47952,7 @@ "maraschino cherry" ], "title": "Mutiny recipe", - "url": "http://www.drinksmixer.com/drink5492.html" + "url": "https://www.drinksmixer.com/drink5492.html" }, { "directions": "Pour ingredients into a pint glass half-filled with ice cubes.", @@ -47963,7 +47963,7 @@ "half-and-half" ], "title": "Mutual Orgasm recipe", - "url": "http://www.drinksmixer.com/drink5493.html" + "url": "https://www.drinksmixer.com/drink5493.html" }, { "directions": "Shake ingredients with ice and strain into three seperate shot glasses. Savor the scent for a moment and shoot.", @@ -47973,7 +47973,7 @@ "strawberry schnapps" ], "title": "MVP's Strawberry Bomb recipe", - "url": "http://www.drinksmixer.com/drink5494.html" + "url": "https://www.drinksmixer.com/drink5494.html" }, { "directions": "In a highball glass, combine gin and chambord over ice. Stir, add two italian green olives, and fill with tonic water. Garnish with a lime wedge.", @@ -47985,7 +47985,7 @@ "olives" ], "title": "My Antonella recipe", - "url": "http://www.drinksmixer.com/drink5495.html" + "url": "https://www.drinksmixer.com/drink5495.html" }, { "directions": "1. Drain juice out of the cherry jar and fill with rum. Let set overnight in a refridgerator.\r", @@ -47997,7 +47997,7 @@ "maraschino cherry" ], "title": "My Busted Cherry recipe", - "url": "http://www.drinksmixer.com/drink5496.html" + "url": "https://www.drinksmixer.com/drink5496.html" }, { "directions": "Add to a shot glass, and serve.", @@ -48006,7 +48006,7 @@ "7-Up\u00ae soda" ], "title": "Mach 1 recipe", - "url": "http://www.drinksmixer.com/drink5497.html" + "url": "https://www.drinksmixer.com/drink5497.html" }, { "directions": "Blend ingredients in a highball glass until smooth. Add three-quarters of a glassful of crushed ice and blend again briefly. Garnish with a pineapple chunk and a cherry, and serve with straws.", @@ -48019,7 +48019,7 @@ "grenadine syrup" ], "title": "Mach 6 recipe", - "url": "http://www.drinksmixer.com/drink5498.html" + "url": "https://www.drinksmixer.com/drink5498.html" }, { "directions": "Pour into a rocks or old-fashioned glass three-quarters filled with broken ice.", @@ -48030,7 +48030,7 @@ "lemonade" ], "title": "Mackinnon Spice recipe", - "url": "http://www.drinksmixer.com/drink5499.html" + "url": "https://www.drinksmixer.com/drink5499.html" }, { "directions": "Pour into a frosted champagne flute.", @@ -48040,7 +48040,7 @@ "Lambrusco\u00ae red wine" ], "title": "Maggie May recipe", - "url": "http://www.drinksmixer.com/drink5500.html" + "url": "https://www.drinksmixer.com/drink5500.html" }, { "directions": "Stir, and strain into a cordial glass.", @@ -48052,7 +48052,7 @@ "benedictine herbal liqueur" ], "title": "Maiden's Kiss recipe", - "url": "http://www.drinksmixer.com/drink5501.html" + "url": "https://www.drinksmixer.com/drink5501.html" }, { "directions": "Pour gin, lemon and lime juice into a double-cocktail glass. Add the sugar. Gently crush the mint, and add to the glass. Fill with crushed ice, and serve with a cherry and fresh mint sprig.", @@ -48064,7 +48064,7 @@ "mint" ], "title": "Major Bailey recipe", - "url": "http://www.drinksmixer.com/drink5502.html" + "url": "https://www.drinksmixer.com/drink5502.html" }, { "directions": "Shake and strain into a double-cocktail glass filled with crushed ice.", @@ -48076,7 +48076,7 @@ "caster sugar" ], "title": "Malayan Gold recipe", - "url": "http://www.drinksmixer.com/drink5503.html" + "url": "https://www.drinksmixer.com/drink5503.html" }, { "directions": "Dissolve sugar, shake and strain into a cocktail glass. Garnish with a maraschino cherry.", @@ -48088,7 +48088,7 @@ "caster sugar" ], "title": "Man Overboard recipe", - "url": "http://www.drinksmixer.com/drink5504.html" + "url": "https://www.drinksmixer.com/drink5504.html" }, { "directions": "Shake and strain into an ice-filled double-cocktail glass. Garnish with a slice of orange and lime.", @@ -48101,7 +48101,7 @@ "limes" ], "title": "Maragato Special recipe", - "url": "http://www.drinksmixer.com/drink5505.html" + "url": "https://www.drinksmixer.com/drink5505.html" }, { "directions": "Shake and strain into a cocktail glass. Garnish with orange and pineapple slices.", @@ -48114,7 +48114,7 @@ "lime juice" ], "title": "Marimba recipe", - "url": "http://www.drinksmixer.com/drink5506.html" + "url": "https://www.drinksmixer.com/drink5506.html" }, { "directions": "Shake and strain into a glass three-quarters filled with broken ice.", @@ -48125,7 +48125,7 @@ "pineapple juice" ], "title": "Martian Cherry recipe", - "url": "http://www.drinksmixer.com/drink5507.html" + "url": "https://www.drinksmixer.com/drink5507.html" }, { "directions": "Shake and strain into a cocktail glass.", @@ -48136,7 +48136,7 @@ "clove syrup" ], "title": "Mayfair recipe", - "url": "http://www.drinksmixer.com/drink5508.html" + "url": "https://www.drinksmixer.com/drink5508.html" }, { "directions": "Add to an ice filled old-fashioned glass. Garnish with a green cherry.", @@ -48145,7 +48145,7 @@ "lemonade" ], "title": "Melonade recipe", - "url": "http://www.drinksmixer.com/drink5509.html" + "url": "https://www.drinksmixer.com/drink5509.html" }, { "directions": "Pour into an old-fashioned glass three-quarters filled with broken ice.", @@ -48157,7 +48157,7 @@ "lemonade" ], "title": "Melon Tree recipe", - "url": "http://www.drinksmixer.com/drink5510.html" + "url": "https://www.drinksmixer.com/drink5510.html" }, { "directions": "Shake and strain into a champagne saucer filled with crushed ice. Garnish with a lemon slice and sugar-dipped strawberry.", @@ -48167,7 +48167,7 @@ "strawberry brandy" ], "title": "Merlin's Love Potion recipe", - "url": "http://www.drinksmixer.com/drink5511.html" + "url": "https://www.drinksmixer.com/drink5511.html" }, { "directions": "Shake and strain into a double-cocktail glass filled with crushed ice. Garnish with a sugar-dipped strawberry.", @@ -48179,7 +48179,7 @@ "lemon juice" ], "title": "Mexican Strawberry recipe", - "url": "http://www.drinksmixer.com/drink5512.html" + "url": "https://www.drinksmixer.com/drink5512.html" }, { "directions": "Shake well and strain into a double-cocktail glass filled with broken ice.", @@ -48191,7 +48191,7 @@ "pastis liqueur" ], "title": "Millionaire recipe", - "url": "http://www.drinksmixer.com/drink5513.html" + "url": "https://www.drinksmixer.com/drink5513.html" }, { "directions": "Blend briefly with three-quarters of a glassful of crushed ice in a wine goblet. Garnish with in-season fruit and serve with short straws.", @@ -48203,7 +48203,7 @@ "grenadine syrup" ], "title": "Magic Island recipe", - "url": "http://www.drinksmixer.com/drink5514.html" + "url": "https://www.drinksmixer.com/drink5514.html" }, { "directions": "Add to an ice filled wine goblet.", @@ -48213,7 +48213,7 @@ "raspberry syrup" ], "title": "Mandate recipe", - "url": "http://www.drinksmixer.com/drink5515.html" + "url": "https://www.drinksmixer.com/drink5515.html" }, { "directions": "Shake juice and syrup, and strain into an ice-filled wine goblet. Add the ginger ale, garnish with fruit in-season, and sprinkle with grated nutmeg. Serve with straws.", @@ -48225,7 +48225,7 @@ "dry ginger ale" ], "title": "Merlin's Treat recipe", - "url": "http://www.drinksmixer.com/drink5516.html" + "url": "https://www.drinksmixer.com/drink5516.html" }, { "directions": "Rim a wine glass with lime/caster sugar, add a spiral of lime, and fill with crushed ice. Stir lime juice and syrups together, and strain into the glass. Add the soda and sprinkle the grenadine on top.", @@ -48237,7 +48237,7 @@ "soda water" ], "title": "Mock Daisy Crusta recipe", - "url": "http://www.drinksmixer.com/drink5517.html" + "url": "https://www.drinksmixer.com/drink5517.html" }, { "directions": "Shake all ingredients and strain into a highball glass filled with crushed ice. Add the spent lime shell and swizzle briefly. Garnish with a slice of pineapple and mint sprigs.", @@ -48252,7 +48252,7 @@ "Pernod\u00ae licorice liqueur" ], "title": "Mai Tai Swizzle recipe", - "url": "http://www.drinksmixer.com/drink5518.html" + "url": "https://www.drinksmixer.com/drink5518.html" }, { "directions": "And to an ice-filled highball glass.", @@ -48262,7 +48262,7 @@ "bitter lemon soda" ], "title": "The Manager's Daughter recipe", - "url": "http://www.drinksmixer.com/drink5519.html" + "url": "https://www.drinksmixer.com/drink5519.html" }, { "directions": "Shake with a glassful of broken ice and pour unstrained into a collins glass.", @@ -48276,7 +48276,7 @@ "caster sugar" ], "title": "Marrakech Express recipe", - "url": "http://www.drinksmixer.com/drink5520.html" + "url": "https://www.drinksmixer.com/drink5520.html" }, { "directions": "Pour into an ice-filled highball glass.", @@ -48287,7 +48287,7 @@ "lemonade" ], "title": "Mean Machine recipe", - "url": "http://www.drinksmixer.com/drink5521.html" + "url": "https://www.drinksmixer.com/drink5521.html" }, { "directions": "Pour into an ice-filled collins glass. Garnish with slices of orange, lemon and lime speared with a cherry, and serve with straws.", @@ -48298,7 +48298,7 @@ "lemonade" ], "title": "Melanie Pimm recipe", - "url": "http://www.drinksmixer.com/drink5522.html" + "url": "https://www.drinksmixer.com/drink5522.html" }, { "directions": "Shake and strain into an ice-filled collins glass. Garnish with a melon ball and a slice of lime on a stick, and serve with straws.", @@ -48308,7 +48308,7 @@ "pineapple juice" ], "title": "Melon Ball recipe", - "url": "http://www.drinksmixer.com/drink5523.html" + "url": "https://www.drinksmixer.com/drink5523.html" }, { "directions": "Shake and strain into a wine goblet filled with crushed ice. Garnish with a mint sprig, and serve with short straws.", @@ -48318,7 +48318,7 @@ "cocoa" ], "title": "Mexican Chocolate recipe", - "url": "http://www.drinksmixer.com/drink5524.html" + "url": "https://www.drinksmixer.com/drink5524.html" }, { "directions": "Blend briefly in a wine goblet filled with crushed ice, and serve with straws.", @@ -48332,7 +48332,7 @@ "peach puree" ], "title": "Mississippi Magic recipe", - "url": "http://www.drinksmixer.com/drink5525.html" + "url": "https://www.drinksmixer.com/drink5525.html" }, { "directions": "1. Shake white rum, brandy, juices and almond syrup together in a cocktail shaker. Strain into a highball glass two-thirds filled with crushed ice and mix.\r", @@ -48346,7 +48346,7 @@ "grenadine syrup" ], "title": "Molokai Mike recipe", - "url": "http://www.drinksmixer.com/drink5526.html" + "url": "https://www.drinksmixer.com/drink5526.html" }, { "directions": "Shake and strain into a wine goblet filled with crushed ice. Add the curacao streaked across the top.", @@ -48360,7 +48360,7 @@ "sugar syrup" ], "title": "Moon River recipe", - "url": "http://www.drinksmixer.com/drink5527.html" + "url": "https://www.drinksmixer.com/drink5527.html" }, { "directions": "Shake all but lemonade and strain into a collins glass half-filled with broken ice. Add the lemonade and serve with straws.", @@ -48373,7 +48373,7 @@ "lemonade" ], "title": "Munchausen recipe", - "url": "http://www.drinksmixer.com/drink5528.html" + "url": "https://www.drinksmixer.com/drink5528.html" }, { "directions": "Shake and strain into an old-fashioned glass three-quarters filled with broken ice.", @@ -48385,7 +48385,7 @@ "caster sugar" ], "title": "Missile Rider recipe", - "url": "http://www.drinksmixer.com/drink5529.html" + "url": "https://www.drinksmixer.com/drink5529.html" }, { "directions": "Shake and strain into an old-fashioned glass three-quarters filled with broken ice.", @@ -48397,7 +48397,7 @@ "grenadine syrup" ], "title": "Missile Stopper recipe", - "url": "http://www.drinksmixer.com/drink5530.html" + "url": "https://www.drinksmixer.com/drink5530.html" }, { "directions": "Shake and strain into a cocktail glass. Garnish with a slice of orange wrapped around a cherry.", @@ -48408,7 +48408,7 @@ "grenadine syrup" ], "title": "Monkey Gland recipe", - "url": "http://www.drinksmixer.com/drink5531.html" + "url": "https://www.drinksmixer.com/drink5531.html" }, { "directions": "Rim a frosted cocktail glass with grenadine/caster sugar. Shake ingredients and strain into the glass.", @@ -48420,7 +48420,7 @@ "mango juice" ], "title": "Monkey Tree recipe", - "url": "http://www.drinksmixer.com/drink5532.html" + "url": "https://www.drinksmixer.com/drink5532.html" }, { "directions": "Pour into a wine glass and serve with two melon balls.", @@ -48429,7 +48429,7 @@ "lager" ], "title": "Moon Drops recipe", - "url": "http://www.drinksmixer.com/drink5533.html" + "url": "https://www.drinksmixer.com/drink5533.html" }, { "directions": "Shake with a glassful of broken ice and pour unstrained into an old-fashioned glass.", @@ -48442,7 +48442,7 @@ "sugar syrup" ], "title": "Morticia recipe", - "url": "http://www.drinksmixer.com/drink5534.html" + "url": "https://www.drinksmixer.com/drink5534.html" }, { "directions": "Shake briefly with a glassful of crushed ice. Serve in a double-cocktail glass.", @@ -48452,7 +48452,7 @@ "limes" ], "title": "Mulata recipe", - "url": "http://www.drinksmixer.com/drink5535.html" + "url": "https://www.drinksmixer.com/drink5535.html" }, { "directions": "Shake and strain into an old-fashioned glass three-quarters filled with broken ice.", @@ -48464,7 +48464,7 @@ "maple syrup" ], "title": "Mule's Hind Leg recipe", - "url": "http://www.drinksmixer.com/drink5536.html" + "url": "https://www.drinksmixer.com/drink5536.html" }, { "directions": "Blend briefly with three-quarters of a glassful of crushed ice. Serve in a double-cocktail glass garnished with a slice of orange speared with a cherry.", @@ -48478,7 +48478,7 @@ "orange juice" ], "title": "Mandarin recipe", - "url": "http://www.drinksmixer.com/drink5537.html" + "url": "https://www.drinksmixer.com/drink5537.html" }, { "directions": "Shake and strain into a champagne saucer. Garnish with a twist of lemon, slice of banana and a cherry.", @@ -48489,7 +48489,7 @@ "amaretto almond liqueur" ], "title": "Maria Mia recipe", - "url": "http://www.drinksmixer.com/drink5538.html" + "url": "https://www.drinksmixer.com/drink5538.html" }, { "directions": "Shake and strain into a champagne saucer. Garnish with half a slice of orange.", @@ -48502,7 +48502,7 @@ "whipping cream" ], "title": "Mexican Bliss recipe", - "url": "http://www.drinksmixer.com/drink5539.html" + "url": "https://www.drinksmixer.com/drink5539.html" }, { "directions": "Shake and strain into a champagne saucer. Sprinkle with a straight line of grated chocolate.", @@ -48513,7 +48513,7 @@ "whipping cream" ], "title": "Mohican recipe", - "url": "http://www.drinksmixer.com/drink5540.html" + "url": "https://www.drinksmixer.com/drink5540.html" }, { "directions": "Shake and strain into a liqueur or cordial glass.", @@ -48524,7 +48524,7 @@ "whipping cream" ], "title": "Moira recipe", - "url": "http://www.drinksmixer.com/drink5541.html" + "url": "https://www.drinksmixer.com/drink5541.html" }, { "directions": "Shake and strain into a champagne saucer.", @@ -48536,7 +48536,7 @@ "sugar syrup" ], "title": "Motel Wrecker recipe", - "url": "http://www.drinksmixer.com/drink5542.html" + "url": "https://www.drinksmixer.com/drink5542.html" }, { "directions": "Shake and strain into a cocktail glass. Garnish with a slice of star-fruit.", @@ -48546,7 +48546,7 @@ "Kahlua\u00ae coffee liqueur" ], "title": "Mozartus recipe", - "url": "http://www.drinksmixer.com/drink5543.html" + "url": "https://www.drinksmixer.com/drink5543.html" }, { "directions": "Shake and strain into an ice-filled highball glass. Sprinkle with campari, and serve with a cherry.", @@ -48559,7 +48559,7 @@ "whipping cream" ], "title": "Mistress recipe", - "url": "http://www.drinksmixer.com/drink5544.html" + "url": "https://www.drinksmixer.com/drink5544.html" }, { "directions": "Blend briefly with half a glassful of crushed ice. Serve in a collins glass topped with whipped cream, and sprinkle with grated chocolate.", @@ -48570,7 +48570,7 @@ "whipped cream" ], "title": "Mozart Eiskaffee recipe", - "url": "http://www.drinksmixer.com/drink5545.html" + "url": "https://www.drinksmixer.com/drink5545.html" }, { "directions": "Blend the galliano, cognac, and ice cream briefly in a highball glass half-filled with crushed ice. Sprinkle the melon liqueur on top, and serve with straws.", @@ -48581,7 +48581,7 @@ "vanilla ice cream" ], "title": "Martian Sex Monster recipe", - "url": "http://www.drinksmixer.com/drink5546.html" + "url": "https://www.drinksmixer.com/drink5546.html" }, { "directions": "Shake mandarine, egg white, lemon juice and syrup well and strain into a wine glass. Pour in the champagne.", @@ -48593,7 +48593,7 @@ "sugar syrup" ], "title": "Mandarine Imperiale recipe", - "url": "http://www.drinksmixer.com/drink5547.html" + "url": "https://www.drinksmixer.com/drink5547.html" }, { "directions": "Pour into a champagne saucer, and serve with two cherries on a stick.", @@ -48603,7 +48603,7 @@ "grenadine syrup" ], "title": "Marilyn Monroe recipe", - "url": "http://www.drinksmixer.com/drink5548.html" + "url": "https://www.drinksmixer.com/drink5548.html" }, { "directions": "Stir brandy, cointreau, raspberry liqueur and orange juice and strain into a champagne saucer. Add the champagne, and serve with a twist of orange.", @@ -48615,7 +48615,7 @@ "orange juice" ], "title": "Maxim's recipe", - "url": "http://www.drinksmixer.com/drink5549.html" + "url": "https://www.drinksmixer.com/drink5549.html" }, { "directions": "Shake all but champagne, and strain into a wine glass. Add the champagne.", @@ -48627,7 +48627,7 @@ "grenadine syrup" ], "title": "Mustique Whammy recipe", - "url": "http://www.drinksmixer.com/drink5550.html" + "url": "https://www.drinksmixer.com/drink5550.html" }, { "directions": "Heat in a small saucepan and strain into a heatproof cup. Do not boil.", @@ -48642,7 +48642,7 @@ "clove" ], "title": "Mulled Red Wine recipe", - "url": "http://www.drinksmixer.com/drink5551.html" + "url": "https://www.drinksmixer.com/drink5551.html" }, { "directions": "Shake and strain into a cocktail glass filled with crushed ice. Serve with a cherry and a slice of orange.", @@ -48653,7 +48653,7 @@ "sugar syrup" ], "title": "Mandarin Daiquiri recipe", - "url": "http://www.drinksmixer.com/drink5552.html" + "url": "https://www.drinksmixer.com/drink5552.html" }, { "directions": "Shake well and strain into a wine glass three-quarters filled with crushed ice. Sprinkle with grated nutmeg and serve.", @@ -48663,7 +48663,7 @@ "egg" ], "title": "Mocha Flip recipe", - "url": "http://www.drinksmixer.com/drink5553.html" + "url": "https://www.drinksmixer.com/drink5553.html" }, { "directions": "Add scotch, lemon juice, sugar, egg and bitters to a cocktail shaker. Shake and strain into a collins glass half-filled with ice. Add the soda water, and serve with a slice of orange and a muddler.", @@ -48676,7 +48676,7 @@ "soda water" ], "title": "Morning Glory Fizz recipe", - "url": "http://www.drinksmixer.com/drink5554.html" + "url": "https://www.drinksmixer.com/drink5554.html" }, { "directions": "Pour into a highball glass three-quarters filled with ice. Add lemon twist and serve.", @@ -48686,7 +48686,7 @@ "bitter lemon soda" ], "title": "Mile Highball recipe", - "url": "http://www.drinksmixer.com/drink5555.html" + "url": "https://www.drinksmixer.com/drink5555.html" }, { "directions": "Funnel the rums, pernod, lemon juice and grenadine into one small cola bottle (185-200ml), roughly half-filled with cola. Briefly invert the bottle to mix the ingredients. Place in the center of a large glass (tankard, stein or british pint), and fill glass with broken ice. Add a straw to the bottle.", @@ -48699,7 +48699,7 @@ "Coca-Cola\u00ae" ], "title": "Mandeville-Polar recipe", - "url": "http://www.drinksmixer.com/drink5556.html" + "url": "https://www.drinksmixer.com/drink5556.html" }, { "directions": "Add ingredients to a collins glass and fill with crushed ice. Mix gently, rum rim with a piece of fresh pineapple, and serve.", @@ -48710,7 +48710,7 @@ "sugar syrup" ], "title": "Marryat's Mint Julep recipe", - "url": "http://www.drinksmixer.com/drink5557.html" + "url": "https://www.drinksmixer.com/drink5557.html" }, { "directions": "Blend briefly with a glassful of crushed ice. Serve in a pina colada glass with a slice of pineapple, cherry and straws.", @@ -48722,7 +48722,7 @@ "whipping cream" ], "title": "Melon Colada recipe", - "url": "http://www.drinksmixer.com/drink5558.html" + "url": "https://www.drinksmixer.com/drink5558.html" }, { "directions": "Pour coffee and kahlua into an irish coffee cup, and sweeten to taste. Gently float the cream on top, and sprinkle with grated chocolate.", @@ -48733,7 +48733,7 @@ "sugar" ], "title": "Mexican Coffee recipe", - "url": "http://www.drinksmixer.com/drink5559.html" + "url": "https://www.drinksmixer.com/drink5559.html" }, { "directions": "Combine butterscotch schnapps and milk in an old-fashioned glass filled with ice cubes.", @@ -48742,7 +48742,7 @@ "milk" ], "title": "Nagel Nectar recipe", - "url": "http://www.drinksmixer.com/drink5560.html" + "url": "https://www.drinksmixer.com/drink5560.html" }, { "directions": "Mix and serve in a shot glass.", @@ -48751,7 +48751,7 @@ "Rumple Minze\u00ae peppermint liqueur" ], "title": "Naked Girl Scout recipe", - "url": "http://www.drinksmixer.com/drink5561.html" + "url": "https://www.drinksmixer.com/drink5561.html" }, { "directions": "Mix in a tall glass and serve over ice.", @@ -48764,7 +48764,7 @@ "Sprite\u00ae soda" ], "title": "The Naked Lady recipe", - "url": "http://www.drinksmixer.com/drink5562.html" + "url": "https://www.drinksmixer.com/drink5562.html" }, { "directions": "Both vodka and schnapps should be kept in the freezer prior to making. Pour vodka into a shot glass, and add the schnapps, forming a ball in the bottom of the glass.", @@ -48773,7 +48773,7 @@ "peach schnapps" ], "title": "Naked Navel recipe", - "url": "http://www.drinksmixer.com/drink5563.html" + "url": "https://www.drinksmixer.com/drink5563.html" }, { "directions": "Add the vanilla schnapps, swiss mocha cream liqueur and a few ounces of half-and-half to an ice-filled cocktail shaker. Stir or shake and strain into an ice-filled highball glass. Top with a splash of coca-cola, and garnish with filbert nuts or cherries.", @@ -48784,7 +48784,7 @@ "cola" ], "title": "Naked Shake recipe", - "url": "http://www.drinksmixer.com/drink5564.html" + "url": "https://www.drinksmixer.com/drink5564.html" }, { "directions": "Pour vodka half-way up an ice-filled beer mug. Add roughly a shot of grenadine. Fill with orange juice, stir, and serve.", @@ -48794,7 +48794,7 @@ "orange juice" ], "title": "Naked Surfer recipe", - "url": "http://www.drinksmixer.com/drink5565.html" + "url": "https://www.drinksmixer.com/drink5565.html" }, { "directions": "Mix equal parts over ice. Shake, strain and serve.", @@ -48805,7 +48805,7 @@ "sweet and sour mix" ], "title": "Naked Yellow Bird recipe", - "url": "http://www.drinksmixer.com/drink5566.html" + "url": "https://www.drinksmixer.com/drink5566.html" }, { "directions": "Pour cherry liqueur over four ice cubes in a highball glass, and add the campari. Fill with 7-up, or sprite, and serve.", @@ -48815,7 +48815,7 @@ "7-Up\u00ae soda" ], "title": "Nalgaa recipe", - "url": "http://www.drinksmixer.com/drink5567.html" + "url": "https://www.drinksmixer.com/drink5567.html" }, { "directions": "Mix the vodka, 7-up, and soda in that order. Add lemon juice. Add salt gradually until the sweet taste of 7-up just disappears.", @@ -48827,7 +48827,7 @@ "salt" ], "title": "Nan's Special recipe", - "url": "http://www.drinksmixer.com/drink5568.html" + "url": "https://www.drinksmixer.com/drink5568.html" }, { "directions": "Pour coffee over crushed ice, or small ice cubes, in a blender. Add all other ingredients and blend on high speed until desired consistency.", @@ -48838,7 +48838,7 @@ "Frangelico\u00ae hazelnut liqueur" ], "title": "Nanc's Iced-Coffee recipe", - "url": "http://www.drinksmixer.com/drink5569.html" + "url": "https://www.drinksmixer.com/drink5569.html" }, { "directions": "Carefully layer into a shot glass, in equal parts, and in order; kahlua first.", @@ -48849,7 +48849,7 @@ "Cointreau\u00ae orange liqueur" ], "title": "Napalm-Death recipe", - "url": "http://www.drinksmixer.com/drink5570.html" + "url": "https://www.drinksmixer.com/drink5570.html" }, { "directions": "Pour into a shot glass in order; aftershock, schnapps, rum. Ignite the rum, allow to burn for a few seconds, extinguish, and serve.", @@ -48859,7 +48859,7 @@ "151 proof rum" ], "title": "Napalm recipe", - "url": "http://www.drinksmixer.com/drink5571.html" + "url": "https://www.drinksmixer.com/drink5571.html" }, { "directions": "Stir all ingredients with ice, strain into a cocktail glass, and serve.", @@ -48869,7 +48869,7 @@ "Dubonnet\u00ae French vermouth" ], "title": "Napoleon recipe", - "url": "http://www.drinksmixer.com/drink5572.html" + "url": "https://www.drinksmixer.com/drink5572.html" }, { "directions": "Pour mandarine napoleon into a highball glass over ice cubes. Fill with tonic water, and garnish with orange peels.", @@ -48878,7 +48878,7 @@ "Schweppes\u00ae tonic water" ], "title": "Napotonic recipe", - "url": "http://www.drinksmixer.com/drink5573.html" + "url": "https://www.drinksmixer.com/drink5573.html" }, { "directions": "Build ingredients over two ice cubes in a highball glass, and stir.", @@ -48889,7 +48889,7 @@ "7-Up\u00ae soda" ], "title": "Nappy Dugout recipe", - "url": "http://www.drinksmixer.com/drink5574.html" + "url": "https://www.drinksmixer.com/drink5574.html" }, { "directions": "Combine the bourbon, vermouth, and anisette in an old-fashioned glass almost filled with ice cubes. Stir well, and garnish with a twist of lemon.", @@ -48899,7 +48899,7 @@ "anisette" ], "title": "Narragansett recipe", - "url": "http://www.drinksmixer.com/drink5575.html" + "url": "https://www.drinksmixer.com/drink5575.html" }, { "directions": "Serve chilled tequila and cointreau straight up in a shot glass.", @@ -48908,7 +48908,7 @@ "Cointreau\u00ae orange liqueur" ], "title": "Nasty Bitch recipe", - "url": "http://www.drinksmixer.com/drink5576.html" + "url": "https://www.drinksmixer.com/drink5576.html" }, { "directions": "Pour vodka and blackberry brandy into an ice-filled pint glass. Fill with orange juice and top with blue curacao.", @@ -48919,7 +48919,7 @@ "orange juice" ], "title": "Nasty Pablo recipe", - "url": "http://www.drinksmixer.com/drink5577.html" + "url": "https://www.drinksmixer.com/drink5577.html" }, { "directions": "Pour ingredients into a shaker filled with ice. Shake well, and serve on the rocks.", @@ -48932,7 +48932,7 @@ "lemon-lime soda" ], "title": "National Aquarium recipe", - "url": "http://www.drinksmixer.com/drink5578.html" + "url": "https://www.drinksmixer.com/drink5578.html" }, { "directions": "Pour malibu into a hurricane glass, and slowly add the orange juice.", @@ -48941,7 +48941,7 @@ "orange juice" ], "title": "Navel Caribbean Love recipe", - "url": "http://www.drinksmixer.com/drink5580.html" + "url": "https://www.drinksmixer.com/drink5580.html" }, { "directions": "Pour liquors into an ice-filled collins glass. Add juices, shake, and garnish with an orange wedge and pineapple chunk.", @@ -48955,7 +48955,7 @@ "pineapple juice" ], "title": "Navy Grog recipe", - "url": "http://www.drinksmixer.com/drink5581.html" + "url": "https://www.drinksmixer.com/drink5581.html" }, { "directions": "Pour all three ingredients into a large container, in any order.", @@ -48965,7 +48965,7 @@ "Jack Daniel's\u00ae Tennessee whiskey" ], "title": "Nay-Nay Strohmeyer recipe", - "url": "http://www.drinksmixer.com/drink5583.html" + "url": "https://www.drinksmixer.com/drink5583.html" }, { "directions": "Combine jagermeister and rumple minze over ice in a cocktail glass. Fill with cola, and serve.", @@ -48975,7 +48975,7 @@ "Coca-Cola\u00ae" ], "title": "Nazi Cola recipe", - "url": "http://www.drinksmixer.com/drink5584.html" + "url": "https://www.drinksmixer.com/drink5584.html" }, { "directions": "Combine in a shot glass.", @@ -48984,7 +48984,7 @@ "Rumple Minze\u00ae peppermint liqueur" ], "title": "Nazi Helmet recipe", - "url": "http://www.drinksmixer.com/drink5585.html" + "url": "https://www.drinksmixer.com/drink5585.html" }, { "directions": "Chill, shake, and strain into a shot glass.", @@ -48996,7 +48996,7 @@ "grenadine syrup" ], "title": "Nazi Surfer recipe", - "url": "http://www.drinksmixer.com/drink5586.html" + "url": "https://www.drinksmixer.com/drink5586.html" }, { "directions": "Mix ingredients together and pour into a shot glass.", @@ -49006,7 +49006,7 @@ "Tabasco\u00ae sauce" ], "title": "Nazi Taco recipe", - "url": "http://www.drinksmixer.com/drink5587.html" + "url": "https://www.drinksmixer.com/drink5587.html" }, { "directions": "Coat the rim of an old-fashioned glass with sugar. Shake all ingredients in a cocktail shaker, and pour into the glass over plenty of ice.", @@ -49017,7 +49017,7 @@ "oranges" ], "title": "Negroni - Zimbabwe Style recipe", - "url": "http://www.drinksmixer.com/drink5588.html" + "url": "https://www.drinksmixer.com/drink5588.html" }, { "directions": "Pour gin into a cocktail glass with ice cubes, and fill one-quarter full with cranberry juice. Fill with tonic water. Blend briefly with a small stick and drop in a slice of orange and a cherry.", @@ -49027,7 +49027,7 @@ "tonic water" ], "title": "Nelson Special recipe", - "url": "http://www.drinksmixer.com/drink5589.html" + "url": "https://www.drinksmixer.com/drink5589.html" }, { "directions": "Pour ingredients into a tall glass, stir, and serve.", @@ -49039,7 +49039,7 @@ "orange juice" ], "title": "Neon Iguana recipe", - "url": "http://www.drinksmixer.com/drink5590.html" + "url": "https://www.drinksmixer.com/drink5590.html" }, { "directions": "Combine ingredients into a mixing tin full of ice. Shake vigorously and strain into a hurricane glass. Garnish with an orange flag.", @@ -49050,7 +49050,7 @@ "pineapple juice" ], "title": "Neon Nightmare recipe", - "url": "http://www.drinksmixer.com/drink5591.html" + "url": "https://www.drinksmixer.com/drink5591.html" }, { "directions": "Combine the vodka, apple juice, and mountain dew in a blender with about 6-8 ice cubes, and blend on high for about 10 seconds. Add more vodka if desired.", @@ -49060,7 +49060,7 @@ "Mountain Dew\u00ae citrus soda" ], "title": "Neon Voodoo recipe", - "url": "http://www.drinksmixer.com/drink5592.html" + "url": "https://www.drinksmixer.com/drink5592.html" }, { "directions": "Combine ingredients in a mixing glass with one cup of crushed ice. Strain into a margarita glass and serve immediately.", @@ -49070,7 +49070,7 @@ "Firewater\u00ae cinnamon schnapps" ], "title": "Neon-Geek recipe", - "url": "http://www.drinksmixer.com/drink5593.html" + "url": "https://www.drinksmixer.com/drink5593.html" }, { "directions": "Pour stoli vanil, stoli oranj, grand marnier, parfait d'amour and lime juice into a mixing glass with ice. Stir and strain into a chilled cocktail glass, and garnish with orange peel.", @@ -49082,7 +49082,7 @@ "lime juice" ], "title": "Neopolitan Martini recipe", - "url": "http://www.drinksmixer.com/drink5594.html" + "url": "https://www.drinksmixer.com/drink5594.html" }, { "directions": "Pour midori and blue curacao into a highball glass with a few ice cubes. Fill with lemonade.", @@ -49092,7 +49092,7 @@ "lemonade" ], "title": "Nerds recipe", - "url": "http://www.drinksmixer.com/drink5595.html" + "url": "https://www.drinksmixer.com/drink5595.html" }, { "directions": "Combine in a shot glass and serve.", @@ -49101,7 +49101,7 @@ "Midori\u00ae melon liqueur" ], "title": "Nestle recipe", - "url": "http://www.drinksmixer.com/drink5596.html" + "url": "https://www.drinksmixer.com/drink5596.html" }, { "directions": "Shake well and pour into a cocktail glass frosted with strawberry.", @@ -49115,7 +49115,7 @@ "strawberry syrup" ], "title": "Net Surfer recipe", - "url": "http://www.drinksmixer.com/drink5597.html" + "url": "https://www.drinksmixer.com/drink5597.html" }, { "directions": "Pour ingredients into an old-fashioned glass over ice cubes. Stir well and serve.", @@ -49125,7 +49125,7 @@ "bitters" ], "title": "Netherland recipe", - "url": "http://www.drinksmixer.com/drink5598.html" + "url": "https://www.drinksmixer.com/drink5598.html" }, { "directions": "Mix in a highball glass, and add ice if desired.", @@ -49135,7 +49135,7 @@ "ginger ale" ], "title": "Neuralizer recipe", - "url": "http://www.drinksmixer.com/drink5599.html" + "url": "https://www.drinksmixer.com/drink5599.html" }, { "directions": "Pour the butterscotch, float the bailey's and let the kahlua sink to the bottom of the shot glass.", @@ -49145,7 +49145,7 @@ "Kahlua\u00ae coffee liqueur" ], "title": "Neutron Bomb recipe", - "url": "http://www.drinksmixer.com/drink5600.html" + "url": "https://www.drinksmixer.com/drink5600.html" }, { "directions": "Combine ingredients in a shaker half-filled with ice cubes. Shake well and strain into a cocktail glass.", @@ -49157,7 +49157,7 @@ "superfine sugar" ], "title": "Nevada Cocktail recipe", - "url": "http://www.drinksmixer.com/drink5601.html" + "url": "https://www.drinksmixer.com/drink5601.html" }, { "directions": "Shake ingredients with ice, strain into a cocktail glass, and serve.", @@ -49169,7 +49169,7 @@ "bitters" ], "title": "Nevins recipe", - "url": "http://www.drinksmixer.com/drink5602.html" + "url": "https://www.drinksmixer.com/drink5602.html" }, { "directions": "Shake all ingredients (except ginger ale) with ice and strain into a collins glass over ice cubes. Fill with ginger ale, stir, and serve.", @@ -49180,7 +49180,7 @@ "ginger ale" ], "title": "New Orleans Buck recipe", - "url": "http://www.drinksmixer.com/drink5603.html" + "url": "https://www.drinksmixer.com/drink5603.html" }, { "directions": "Coat the rim of a highball glass with salt. Mix vodka and grapefruit juice in another glass with ice and pour into glass with salted rim.", @@ -49190,7 +49190,7 @@ "salt" ], "title": "New Orleans Salty Dog recipe", - "url": "http://www.drinksmixer.com/drink5604.html" + "url": "https://www.drinksmixer.com/drink5604.html" }, { "directions": "Stir and strain into a chilled cocktail glass with a frosted rim (lemon and sugar).", @@ -49201,7 +49201,7 @@ "club soda" ], "title": "New York Lemonade recipe", - "url": "http://www.drinksmixer.com/drink5605.html" + "url": "https://www.drinksmixer.com/drink5605.html" }, { "directions": "Shake blended whiskey, juice of lemon, and powdered sugar with ice and strain into a whiskey sour glass. Float claret red wine on top, and serve with a half-slice of lemon and a cherry.", @@ -49212,7 +49212,7 @@ "red wine" ], "title": "New York Sour recipe", - "url": "http://www.drinksmixer.com/drink5606.html" + "url": "https://www.drinksmixer.com/drink5606.html" }, { "directions": "Shake with cracked ice and strain into a chilled cocktail glass. Garnish with a cherry and a lemon twist.", @@ -49223,7 +49223,7 @@ "Pernod\u00ae licorice liqueur" ], "title": "Nicky Finn recipe", - "url": "http://www.drinksmixer.com/drink5607.html" + "url": "https://www.drinksmixer.com/drink5607.html" }, { "directions": "Combine ingredients in a shaker with ice. Shake, strain into a cocktail glass, and garnish with a lime wedge.", @@ -49233,7 +49233,7 @@ "amaretto almond liqueur" ], "title": "The Nick recipe", - "url": "http://www.drinksmixer.com/drink5608.html" + "url": "https://www.drinksmixer.com/drink5608.html" }, { "directions": "Mix absolut mandrin and passoa in a highball glass. Add ice and fill with orange juice.", @@ -49243,7 +49243,7 @@ "orange juice" ], "title": "Nicolalas recipe", - "url": "http://www.drinksmixer.com/drink5609.html" + "url": "https://www.drinksmixer.com/drink5609.html" }, { "directions": "Shake with ice and pour into a tumbler with crushed ice.", @@ -49254,7 +49254,7 @@ "batida de coco" ], "title": "Nightboat to Recife recipe", - "url": "http://www.drinksmixer.com/drink5610.html" + "url": "https://www.drinksmixer.com/drink5610.html" }, { "directions": "Heat the milk. Add sugar and kahlua, sprinkle nutmeg on top, and serve.", @@ -49265,7 +49265,7 @@ "powdered sugar" ], "title": "Nightcap recipe", - "url": "http://www.drinksmixer.com/drink5611.html" + "url": "https://www.drinksmixer.com/drink5611.html" }, { "directions": "Shake all ingredients with ice, strain into a cocktail glass, and serve.", @@ -49276,7 +49276,7 @@ "orange juice" ], "title": "Nightmare recipe", - "url": "http://www.drinksmixer.com/drink5612.html" + "url": "https://www.drinksmixer.com/drink5612.html" }, { "directions": "Pour bailey's and butterscotch into a coffee mug. Fill with coffee and stir.", @@ -49286,7 +49286,7 @@ "coffee" ], "title": "Nikki Coffee recipe", - "url": "http://www.drinksmixer.com/drink5613.html" + "url": "https://www.drinksmixer.com/drink5613.html" }, { "directions": "Pour ingredients over 4 - 5 ice cubes in a collins glass, and stir briefly.", @@ -49296,7 +49296,7 @@ "pineapple juice" ], "title": "Nikki Delight recipe", - "url": "http://www.drinksmixer.com/drink5614.html" + "url": "https://www.drinksmixer.com/drink5614.html" }, { "directions": "Blend together in equal parts in a cocktail glass.", @@ -49307,7 +49307,7 @@ "lime juice" ], "title": "Nina's Special recipe", - "url": "http://www.drinksmixer.com/drink5615.html" + "url": "https://www.drinksmixer.com/drink5615.html" }, { "directions": "Pour in order into a shot glass; butterscotch, firewater, and float the irish cream.", @@ -49317,7 +49317,7 @@ "Irish cream" ], "title": "Nipple On Fire recipe", - "url": "http://www.drinksmixer.com/drink5616.html" + "url": "https://www.drinksmixer.com/drink5616.html" }, { "directions": "Mix together in a shot glass.", @@ -49327,7 +49327,7 @@ "brandy" ], "title": "Nitro recipe", - "url": "http://www.drinksmixer.com/drink5617.html" + "url": "https://www.drinksmixer.com/drink5617.html" }, { "directions": "Fill a hurricane glass one-third full with frozen strawberry daiquiri mix. Carefully layer the frozen pina colada mix until two-thirds full. Add a splash of blue curacao on top, and insert a straw. Fill with 151 proof rum.", @@ -49338,7 +49338,7 @@ "Bacardi\u00ae 151 rum" ], "title": "No Pressure recipe", - "url": "http://www.drinksmixer.com/drink5618.html" + "url": "https://www.drinksmixer.com/drink5618.html" }, { "directions": "Shake with ice and pour into a tall glass.", @@ -49352,7 +49352,7 @@ "creme de bananes" ], "title": "No Problem recipe", - "url": "http://www.drinksmixer.com/drink5619.html" + "url": "https://www.drinksmixer.com/drink5619.html" }, { "directions": "Pour the irish cream into a shot glass, add the gold tequila, and shoot.", @@ -49361,7 +49361,7 @@ "Bailey's\u00ae Irish cream" ], "title": "No Regrets recipe", - "url": "http://www.drinksmixer.com/drink5620.html" + "url": "https://www.drinksmixer.com/drink5620.html" }, { "directions": "Pour amaretto into an ice-filled glass. Fill with equal parts of orange juice and lemon-lime soda, and serve.", @@ -49371,7 +49371,7 @@ "lemon-lime soda" ], "title": "Noah recipe", - "url": "http://www.drinksmixer.com/drink5621.html" + "url": "https://www.drinksmixer.com/drink5621.html" }, { "directions": "Add ingredients to a shaker with ice and shake vigorously. Drink should be frothy on top. Pour into a highball glass and garnish with a cherry.", @@ -49384,7 +49384,7 @@ "Midori\u00ae melon liqueur" ], "title": "Noche de Phoof recipe", - "url": "http://www.drinksmixer.com/drink5622.html" + "url": "https://www.drinksmixer.com/drink5622.html" }, { "directions": "Pour midori, triple sec and rum into a 12-ounce highball glass filled with ice. Fill with pineapple juice, stir, and serve.", @@ -49395,7 +49395,7 @@ "pineapple juice" ], "title": "The Nog recipe", - "url": "http://www.drinksmixer.com/drink5623.html" + "url": "https://www.drinksmixer.com/drink5623.html" }, { "directions": "Blend ingredients briefly in a highball glass.", @@ -49405,7 +49405,7 @@ "orange juice" ], "title": "Nolan recipe", - "url": "http://www.drinksmixer.com/drink5624.html" + "url": "https://www.drinksmixer.com/drink5624.html" }, { "directions": "Mix vodka, lemonade and fresca and serve over ice. Add a dash of grenadine.", @@ -49416,7 +49416,7 @@ "grenadine syrup" ], "title": "The Nomad recipe", - "url": "http://www.drinksmixer.com/drink5625.html" + "url": "https://www.drinksmixer.com/drink5625.html" }, { "directions": "Pour cointreau, aquavit, gin and lime juice over ice in a small highball glass. Stir, top with sprite or 7-up, and serve.", @@ -49428,7 +49428,7 @@ "lemon-lime soda" ], "title": "Nord-Norsk Depresjon recipe", - "url": "http://www.drinksmixer.com/drink5626.html" + "url": "https://www.drinksmixer.com/drink5626.html" }, { "directions": "Pour midori and bacardi limon into a highball glass half-filled with crushed ice. Fill with equal parts 7-up and cranberry juice.", @@ -49439,7 +49439,7 @@ "cranberry juice" ], "title": "Norling Special recipe", - "url": "http://www.drinksmixer.com/drink5627.html" + "url": "https://www.drinksmixer.com/drink5627.html" }, { "directions": "Add shots to an old-fashioned glass. Fill with coca-cola and serve.", @@ -49452,7 +49452,7 @@ "Coca-Cola\u00ae" ], "title": "North Dakota Special recipe", - "url": "http://www.drinksmixer.com/drink5628.html" + "url": "https://www.drinksmixer.com/drink5628.html" }, { "directions": "Mix the blackcurrant and the lemonade together. Add the gin and pimms together stirring well but do not shake. Garnish with fruit pieces. Mix a batch and serve liberally.", @@ -49463,7 +49463,7 @@ "lemonade" ], "title": "North Mymms Mirage recipe", - "url": "http://www.drinksmixer.com/drink5629.html" + "url": "https://www.drinksmixer.com/drink5629.html" }, { "directions": "Shake all ingredients (except whipped cream) with ice and strain into a cocktail glass. Top with whipped cream and serve.", @@ -49475,7 +49475,7 @@ "whipped cream" ], "title": "North Pole Cocktail recipe", - "url": "http://www.drinksmixer.com/drink5631.html" + "url": "https://www.drinksmixer.com/drink5631.html" }, { "directions": "Layer vodka and irish cream in a shot glass. Pour beer to fill.", @@ -49485,7 +49485,7 @@ "beer" ], "title": "Northern Europe Mongrel recipe", - "url": "http://www.drinksmixer.com/drink5632.html" + "url": "https://www.drinksmixer.com/drink5632.html" }, { "directions": "1. Fill a a large clean mixing bowl with approx. 2 gallon pure alcohol and 5 gallon lemonade. \r", @@ -49497,7 +49497,7 @@ "grapefruits" ], "title": "Norwegian Hunting Mixture Bowl recipe", - "url": "http://www.drinksmixer.com/drink5633.html" + "url": "https://www.drinksmixer.com/drink5633.html" }, { "directions": "Add all items to a whiskey sour glass. Mix well with a bar spoon.", @@ -49510,7 +49510,7 @@ "ginger ale" ], "title": "Notre Dame Pick-Me-Up recipe", - "url": "http://www.drinksmixer.com/drink5635.html" + "url": "https://www.drinksmixer.com/drink5635.html" }, { "directions": "Stir with ice cubes and serve.", @@ -49520,7 +49520,7 @@ "gin" ], "title": "Novebuche recipe", - "url": "http://www.drinksmixer.com/drink5636.html" + "url": "https://www.drinksmixer.com/drink5636.html" }, { "directions": "Carefully layer, in order, into a glass.", @@ -49534,7 +49534,7 @@ "amaretto almond liqueur" ], "title": "Nuclear Rainbow recipe", - "url": "http://www.drinksmixer.com/drink5637.html" + "url": "https://www.drinksmixer.com/drink5637.html" }, { "directions": "Blend vodka, blue curacao and bailey's in a shaker. Pour into a cocktail glass and top up with coke.", @@ -49545,7 +49545,7 @@ "Coca-Cola\u00ae" ], "title": "Nuclear Waste recipe", - "url": "http://www.drinksmixer.com/drink5638.html" + "url": "https://www.drinksmixer.com/drink5638.html" }, { "directions": "Shake well and serve in a highball glass.", @@ -49558,7 +49558,7 @@ "cream" ], "title": "Nuclear Waste #2 recipe", - "url": "http://www.drinksmixer.com/drink5639.html" + "url": "https://www.drinksmixer.com/drink5639.html" }, { "directions": "Pour liquors into a coffee mug, and fill with coffee.", @@ -49569,7 +49569,7 @@ "coffee" ], "title": "Nudge recipe", - "url": "http://www.drinksmixer.com/drink5640.html" + "url": "https://www.drinksmixer.com/drink5640.html" }, { "directions": "Mix with ice in a tupperware dish pan. Serve in 16 oz glasses (with caution). Tastes great, but potent.", @@ -49581,7 +49581,7 @@ "Hawaiian Punch\u00ae" ], "title": "Null and Void Punch recipe", - "url": "http://www.drinksmixer.com/drink5641.html" + "url": "https://www.drinksmixer.com/drink5641.html" }, { "directions": "Fill a whiskey sour glass one-third full with raspberry vodka. Sprinkle a few drops of kahlua on top and mix. Fill with schweppes russian and serve.", @@ -49591,7 +49591,7 @@ "Schweppes\u00ae Russian tonic water" ], "title": "Nummer 10 recipe", - "url": "http://www.drinksmixer.com/drink5642.html" + "url": "https://www.drinksmixer.com/drink5642.html" }, { "directions": "Pour vodka and licor 43 over 2 - 3 ice cubes in a highball glass. Stir and fill with with root beer. Serve with a straw.", @@ -49601,7 +49601,7 @@ "root beer" ], "title": "Nurse recipe", - "url": "http://www.drinksmixer.com/drink5643.html" + "url": "https://www.drinksmixer.com/drink5643.html" }, { "directions": "Pour in liquors, add lime juice, and fill with beer. Serve unstirred.", @@ -49612,7 +49612,7 @@ "beer" ], "title": "Nuthugger recipe", - "url": "http://www.drinksmixer.com/drink5644.html" + "url": "https://www.drinksmixer.com/drink5644.html" }, { "directions": "Pour over ice in a mixing glass, shake and serve straight up.", @@ -49623,7 +49623,7 @@ "amaretto almond liqueur" ], "title": "Nuts 'n Holly recipe", - "url": "http://www.drinksmixer.com/drink5645.html" + "url": "https://www.drinksmixer.com/drink5645.html" }, { "directions": "Shake and strain over ice in a highball glass.", @@ -49636,7 +49636,7 @@ "ice" ], "title": "Nutty Banana recipe", - "url": "http://www.drinksmixer.com/drink5646.html" + "url": "https://www.drinksmixer.com/drink5646.html" }, { "directions": "Serve over ice in an old-fashioned glass.", @@ -49646,7 +49646,7 @@ "vodka" ], "title": "Nutty Belgian recipe", - "url": "http://www.drinksmixer.com/drink5647.html" + "url": "https://www.drinksmixer.com/drink5647.html" }, { "directions": "Add the amaretto and frangelico to a cocktail glass. Fill with ginger ale, and add ice cubes. Garnish with a lemon twist.", @@ -49656,7 +49656,7 @@ "ginger ale" ], "title": "Nutty Ginger recipe", - "url": "http://www.drinksmixer.com/drink5648.html" + "url": "https://www.drinksmixer.com/drink5648.html" }, { "directions": "Fill a coffee mug two-thirds full with coffee. Add liquors, chocolate syrup, and stir. Top with a mound of whipped cream sprinkled with cinnamon or nutmeg.", @@ -49668,7 +49668,7 @@ "coffee" ], "title": "Nutty Irish Coffee recipe", - "url": "http://www.drinksmixer.com/drink5649.html" + "url": "https://www.drinksmixer.com/drink5649.html" }, { "directions": "Mix well over ice and serve.", @@ -49678,7 +49678,7 @@ "coffee liqueur" ], "title": "Nutty Russian recipe", - "url": "http://www.drinksmixer.com/drink5650.html" + "url": "https://www.drinksmixer.com/drink5650.html" }, { "directions": "Mix and chill in a mixing tin. Strain into a shot glass and serve.", @@ -49688,7 +49688,7 @@ "cranberry juice" ], "title": "Nuts 'n Berries recipe", - "url": "http://www.drinksmixer.com/drink5651.html" + "url": "https://www.drinksmixer.com/drink5651.html" }, { "directions": "Add vodka and jagermeister to a shot glass. Add a few drops of green food coloring, mix, and serve.", @@ -49698,7 +49698,7 @@ "food coloring" ], "title": "NyQuil recipe", - "url": "http://www.drinksmixer.com/drink5652.html" + "url": "https://www.drinksmixer.com/drink5652.html" }, { "directions": "Pour kahlua into an irish coffee cup. Add jagermeister, fill with coffee and serve with cream on top.", @@ -49708,7 +49708,7 @@ "coffee" ], "title": "Nagermeister recipe", - "url": "http://www.drinksmixer.com/drink5653.html" + "url": "https://www.drinksmixer.com/drink5653.html" }, { "directions": "Shake and serve over ice.", @@ -49720,7 +49720,7 @@ "cream" ], "title": "Oasis recipe", - "url": "http://www.drinksmixer.com/drink5654.html" + "url": "https://www.drinksmixer.com/drink5654.html" }, { "directions": "Combine ingredients in equal parts in a shot glass.", @@ -49732,7 +49732,7 @@ "Bailey's\u00ae Irish cream" ], "title": "Oatmeal Raisin Cookie recipe", - "url": "http://www.drinksmixer.com/drink5655.html" + "url": "https://www.drinksmixer.com/drink5655.html" }, { "directions": "Combine the gin, orange juice, grapefruit juice and bitters in a shaker half-filled with ice cubes. Shake well and strain into an old-fashioned glass almost filled with ice cubes. Garnish with a lemon twist and a cherry.", @@ -49743,7 +49743,7 @@ "bitters" ], "title": "Oaxaca Jim recipe", - "url": "http://www.drinksmixer.com/drink5656.html" + "url": "https://www.drinksmixer.com/drink5656.html" }, { "directions": "Heat the milk, and add it to the salt and cocoa powder in a tall glass. Place some whipped cream on top and serve.", @@ -49754,7 +49754,7 @@ "salt" ], "title": "Obadoba recipe", - "url": "http://www.drinksmixer.com/drink5657.html" + "url": "https://www.drinksmixer.com/drink5657.html" }, { "directions": "Combine ingredients in a mixing glass. Mix, pour into a cocktail glass, and garnish with a lemon twist.", @@ -49766,7 +49766,7 @@ "Blue Curacao liqueur" ], "title": "Occhi Blu recipe", - "url": "http://www.drinksmixer.com/drink5658.html" + "url": "https://www.drinksmixer.com/drink5658.html" }, { "directions": "Pour all ingredients over ice cubes in a cocktail glass.", @@ -49779,7 +49779,7 @@ "sweet and sour mix" ], "title": "Octapussy recipe", - "url": "http://www.drinksmixer.com/drink5659.html" + "url": "https://www.drinksmixer.com/drink5659.html" }, { "directions": "Mix tequila, vodka and southern comfort in a highball glass. Add a few rocks of ice and top up with fresh orange juice. Add just a dash of galliano and stir. Serve with a large slice of lemon.", @@ -49791,7 +49791,7 @@ "orange juice" ], "title": "Odwits recipe", - "url": "http://www.drinksmixer.com/drink5660.html" + "url": "https://www.drinksmixer.com/drink5660.html" }, { "directions": "Place all ingredients in a blender and blend until smooth. Serve in a beer mug.", @@ -49801,7 +49801,7 @@ "Coca-Cola\u00ae" ], "title": "Ogre Drink recipe", - "url": "http://www.drinksmixer.com/drink5661.html" + "url": "https://www.drinksmixer.com/drink5661.html" }, { "directions": "Pour the creme de menthe into a shot glass. Using a teaspoon, carefully float the black sambuca on top. Shoot.", @@ -49810,7 +49810,7 @@ "white creme de menthe" ], "title": "Oil Slick #2 recipe", - "url": "http://www.drinksmixer.com/drink5662.html" + "url": "https://www.drinksmixer.com/drink5662.html" }, { "directions": "Mix both ingredients together in a shaker and serve in a chilled shot glass.", @@ -49819,7 +49819,7 @@ "Rumple Minze\u00ae peppermint liqueur" ], "title": "Oil Slick recipe", - "url": "http://www.drinksmixer.com/drink5663.html" + "url": "https://www.drinksmixer.com/drink5663.html" }, { "directions": "Carefully layer jagermeister on top of the goldschlager in a shot glass.", @@ -49828,7 +49828,7 @@ "Jagermeister\u00ae herbal liqueur" ], "title": "Oil Spill recipe", - "url": "http://www.drinksmixer.com/drink5664.html" + "url": "https://www.drinksmixer.com/drink5664.html" }, { "directions": "1. Place both cans of cream of coconut (unopened) in hot water for 10 minutes. \r", @@ -49840,7 +49840,7 @@ "Captain Morgan\u00ae Original spiced rum" ], "title": "Oklahoma Tropical Twister recipe", - "url": "http://www.drinksmixer.com/drink5665.html" + "url": "https://www.drinksmixer.com/drink5665.html" }, { "directions": "Pour bourbon over ice cubes in an old-fashioned glass. Add the bitters, soda and juice. Garnish with a maraschino cherry and a lemon twist.", @@ -49851,7 +49851,7 @@ "lemon juice" ], "title": "Old Fashioned (Sweet) recipe", - "url": "http://www.drinksmixer.com/drink5666.html" + "url": "https://www.drinksmixer.com/drink5666.html" }, { "directions": "1. Combine sugar, brown sugar and butter in a 2-quart saucepan. Cook over low heat, stirring occasionally, until butter is melted (6-8 min). \r\n", @@ -49865,7 +49865,7 @@ "nutmeg" ], "title": "Old Fashioned Hot Buttered Rum recipe", - "url": "http://www.drinksmixer.com/drink5667.html" + "url": "https://www.drinksmixer.com/drink5667.html" }, { "directions": "Stir all ingredients with ice, strain into a cocktail glass, and serve.", @@ -49875,7 +49875,7 @@ "grenadine syrup" ], "title": "Old Pal Cocktail recipe", - "url": "http://www.drinksmixer.com/drink5668.html" + "url": "https://www.drinksmixer.com/drink5668.html" }, { "directions": "Serve in an old-fashioned glass.", @@ -49884,7 +49884,7 @@ "Coca-Cola\u00ae" ], "title": "Old-Fashioned Rum and Coke recipe", - "url": "http://www.drinksmixer.com/drink5669.html" + "url": "https://www.drinksmixer.com/drink5669.html" }, { "directions": "Pour equal parts tequila and sweet vermouth into a cocktail shaker with ice. Add the curacao, and shake. Strain into a cocktail glass and drop in an olive.", @@ -49895,7 +49895,7 @@ "olive" ], "title": "Olive in an Olive recipe", - "url": "http://www.drinksmixer.com/drink5670.html" + "url": "https://www.drinksmixer.com/drink5670.html" }, { "directions": "Pour vodka into a highball glass, and add a few drops of lime juice. Add schweppes russian, to taste, and serve.", @@ -49905,7 +49905,7 @@ "Schweppes\u00ae Russian tonic water" ], "title": "Olle Goop recipe", - "url": "http://www.drinksmixer.com/drink5671.html" + "url": "https://www.drinksmixer.com/drink5671.html" }, { "directions": "Mix with ice in a highball glass.", @@ -49917,7 +49917,7 @@ "Farris\u00ae soda water" ], "title": "Olsen Driver recipe", - "url": "http://www.drinksmixer.com/drink5672.html" + "url": "https://www.drinksmixer.com/drink5672.html" }, { "directions": "Pour ingredients into a shaker with ice, shake well, and pour into a cocktail glass. Garnish with fine cracked almonds.", @@ -49928,7 +49928,7 @@ "egg" ], "title": "Olympia-Flip recipe", - "url": "http://www.drinksmixer.com/drink5673.html" + "url": "https://www.drinksmixer.com/drink5673.html" }, { "directions": "Combine all of the ingredients in a shaker half-filled with ice cubes. Shake well, and strain into a cocktail glass.", @@ -49938,7 +49938,7 @@ "lime juice" ], "title": "Olympia recipe", - "url": "http://www.drinksmixer.com/drink5674.html" + "url": "https://www.drinksmixer.com/drink5674.html" }, { "directions": "Pour liquors in equal parts into a shot glass. Stir once and top with a cherry.", @@ -49949,7 +49949,7 @@ "151 proof rum" ], "title": "On My Ass recipe", - "url": "http://www.drinksmixer.com/drink5675.html" + "url": "https://www.drinksmixer.com/drink5675.html" }, { "directions": "Combine ingredients in a mixing glass half-filled with crushed ice. Stir well, and strain into a cocktail glass.", @@ -49959,7 +49959,7 @@ "Lillet\u00ae Blanc wine" ], "title": "Once-Upon-A-Time recipe", - "url": "http://www.drinksmixer.com/drink5676.html" + "url": "https://www.drinksmixer.com/drink5676.html" }, { "directions": "Serve over ice in a hurricane glass.", @@ -49969,7 +49969,7 @@ "orange vodka" ], "title": "Ooo recipe", - "url": "http://www.drinksmixer.com/drink5677.html" + "url": "https://www.drinksmixer.com/drink5677.html" }, { "directions": "Combine ingredients in a shaker half-filled with ice cubes. Shake well, and strain into a cocktail glass.", @@ -49980,7 +49980,7 @@ "orange bitters" ], "title": "Opal Cocktail recipe", - "url": "http://www.drinksmixer.com/drink5678.html" + "url": "https://www.drinksmixer.com/drink5678.html" }, { "directions": "Stir all ingredients with ice, strain into a cocktail glass, and serve.", @@ -49990,7 +49990,7 @@ "grenadine syrup" ], "title": "Opening Cocktail recipe", - "url": "http://www.drinksmixer.com/drink5679.html" + "url": "https://www.drinksmixer.com/drink5679.html" }, { "directions": "Stir all ingredients with ice, strain into a cocktail glass, and serve.", @@ -50000,7 +50000,7 @@ "maraschino liqueur" ], "title": "Opera Cocktail recipe", - "url": "http://www.drinksmixer.com/drink5680.html" + "url": "https://www.drinksmixer.com/drink5680.html" }, { "directions": "Pour orancio into a champagne flute and fill with brut champagne. Garnish with a slice of orange.", @@ -50009,7 +50009,7 @@ "Brut\u00ae Champagne" ], "title": "Orancio Royal recipe", - "url": "http://www.drinksmixer.com/drink5681.html" + "url": "https://www.drinksmixer.com/drink5681.html" }, { "directions": "Place all ingredients in a blender jar, cover, and whiz on medium speed until well blended. Pour into a collins glass, and serve.", @@ -50018,7 +50018,7 @@ "cranberry juice" ], "title": "Orangatang recipe", - "url": "http://www.drinksmixer.com/drink5682.html" + "url": "https://www.drinksmixer.com/drink5682.html" }, { "directions": "Pour over ice and stir to mix.", @@ -50027,7 +50027,7 @@ "orange juice" ], "title": "Orange 43 recipe", - "url": "http://www.drinksmixer.com/drink5683.html" + "url": "https://www.drinksmixer.com/drink5683.html" }, { "directions": "1. Chop the orange peel finely and mix it with the herbs and alcohol. Let it stand for 15-20 days in a sealed jar, agitating it every day. \r", @@ -50041,7 +50041,7 @@ "food coloring" ], "title": "Orange Bitters recipe", - "url": "http://www.drinksmixer.com/drink5684.html" + "url": "https://www.drinksmixer.com/drink5684.html" }, { "directions": "Shake with ice and strain into an old-fashioned glass.", @@ -50051,7 +50051,7 @@ "orange juice" ], "title": "Orange Bliss recipe", - "url": "http://www.drinksmixer.com/drink5685.html" + "url": "https://www.drinksmixer.com/drink5685.html" }, { "directions": "Combine the gin, orange juice, and sugar in a shaker half-filled with ice cubes. Shake well, and strain into a cocktail glass. Garnish with the orange slice.", @@ -50061,7 +50061,7 @@ "superfine sugar" ], "title": "Orange Blossom recipe", - "url": "http://www.drinksmixer.com/drink5686.html" + "url": "https://www.drinksmixer.com/drink5686.html" }, { "directions": "Shake gin, orange juice, and lime juice with ice and strain into a highball glass over ice cubes. Fill with ginger ale, stir, and serve.", @@ -50072,7 +50072,7 @@ "ginger ale" ], "title": "Orange Buck recipe", - "url": "http://www.drinksmixer.com/drink5687.html" + "url": "https://www.drinksmixer.com/drink5687.html" }, { "directions": "Mix one after the other, shake, and top with whipped cream.", @@ -50083,7 +50083,7 @@ "Jack Daniel's\u00ae Tennessee whiskey" ], "title": "Orange Climax recipe", - "url": "http://www.drinksmixer.com/drink5688.html" + "url": "https://www.drinksmixer.com/drink5688.html" }, { "directions": "Shake all ingredients in a shaker with ice and pour into shot glasses.", @@ -50096,7 +50096,7 @@ "grenadine syrup" ], "title": "Orange Crisis recipe", - "url": "http://www.drinksmixer.com/drink5689.html" + "url": "https://www.drinksmixer.com/drink5689.html" }, { "directions": "Add all ingredients to tumbler, and pour as a shot.", @@ -50106,7 +50106,7 @@ "orange juice" ], "title": "Orange Crush recipe", - "url": "http://www.drinksmixer.com/drink5690.html" + "url": "https://www.drinksmixer.com/drink5690.html" }, { "directions": "Pour the orange juice into a cocktail glass. Mix in the everclear and the cointreau, and serve.", @@ -50116,7 +50116,7 @@ "Cointreau\u00ae orange liqueur" ], "title": "Orange Demon recipe", - "url": "http://www.drinksmixer.com/drink5691.html" + "url": "https://www.drinksmixer.com/drink5691.html" }, { "directions": "Fill a highball glass four-fifths with orange soda. Add grenadine, and top with whipped cream.", @@ -50126,7 +50126,7 @@ "grenadine syrup" ], "title": "Orange Flamingo recipe", - "url": "http://www.drinksmixer.com/drink5692.html" + "url": "https://www.drinksmixer.com/drink5692.html" }, { "directions": "Blend all ingredients in a blender with ten ice cubes for 30 seconds. Serve immediately.", @@ -50138,7 +50138,7 @@ "vanilla" ], "title": "Orange Julius recipe", - "url": "http://www.drinksmixer.com/drink5693.html" + "url": "https://www.drinksmixer.com/drink5693.html" }, { "directions": "Mix vodka, orancio, and sprite in a highball glass. Garnish with a slice of orange.", @@ -50148,7 +50148,7 @@ "Sprite\u00ae soda" ], "title": "Orange Kiss recipe", - "url": "http://www.drinksmixer.com/drink5694.html" + "url": "https://www.drinksmixer.com/drink5694.html" }, { "directions": "Stir ingredients with ice and strain into a cocktail glass.", @@ -50158,7 +50158,7 @@ "orange juice" ], "title": "Orange Lion recipe", - "url": "http://www.drinksmixer.com/drink5695.html" + "url": "https://www.drinksmixer.com/drink5695.html" }, { "directions": "Pour vodka and cointreau into a highball glass over ice. Fill with ginger ale, and mix well. Garnish with a slice of lemon.", @@ -50168,7 +50168,7 @@ "ginger ale" ], "title": "Orange Mule recipe", - "url": "http://www.drinksmixer.com/drink5696.html" + "url": "https://www.drinksmixer.com/drink5696.html" }, { "directions": "Shake brandy, gin, and orange juice with ice and strain into a highball glass over ice cubes. Fill with ginger ale, stir, and serve.", @@ -50179,7 +50179,7 @@ "ginger ale" ], "title": "Orange Oasis recipe", - "url": "http://www.drinksmixer.com/drink5697.html" + "url": "https://www.drinksmixer.com/drink5697.html" }, { "directions": "Combine liquors in a blender. Add a half scoop of ice and blend. Serve in a hurricane glass, and garnish with an orange and cherry flag.", @@ -50190,7 +50190,7 @@ "sweet and sour mix" ], "title": "Orange Push-Up recipe", - "url": "http://www.drinksmixer.com/drink5698.html" + "url": "https://www.drinksmixer.com/drink5698.html" }, { "directions": "Build over ice in highball glass. Stir.", @@ -50199,7 +50199,7 @@ "orange juice" ], "title": "Orange Safari recipe", - "url": "http://www.drinksmixer.com/drink5699.html" + "url": "https://www.drinksmixer.com/drink5699.html" }, { "directions": "1. Combine milk, chocolate (chopped bittersweet or semi-sweet ), orange peel, espresso (instant coffee), and nutmeg in a heavy medium saucepan. Stir over low heat until chocolate melts, increase heat and bring just to a boil, stirring often. Remove from heat and whisk until frothy.\r", @@ -50211,7 +50211,7 @@ "nutmeg" ], "title": "Orange Scented Hot Chocolate recipe", - "url": "http://www.drinksmixer.com/drink5700.html" + "url": "https://www.drinksmixer.com/drink5700.html" }, { "directions": "Pour lemon juice and orange juice into a large tumbler over one ice cube. Stir well. Serve with sugar and cold water on the side, a drinking straw, and a spoon.", @@ -50220,7 +50220,7 @@ "orange juice" ], "title": "Orange Squash recipe", - "url": "http://www.drinksmixer.com/drink5701.html" + "url": "https://www.drinksmixer.com/drink5701.html" }, { "directions": "Combine liquors in a tall glass with ice cubes. Fill with orange juice and add a splash of cranberry juice. Shake to mix and serve.", @@ -50232,7 +50232,7 @@ "cranberry juice" ], "title": "Orange Surfboard recipe", - "url": "http://www.drinksmixer.com/drink5702.html" + "url": "https://www.drinksmixer.com/drink5702.html" }, { "directions": "Shake the peachtree schnapps, vodka and sour mix in a shaker. Pour into a highball glass filled with ice cubes, and fill with orange fanta. Garnish with a slice of orange.", @@ -50243,7 +50243,7 @@ "Fanta\u00ae orange soda" ], "title": "Orange Surprise recipe", - "url": "http://www.drinksmixer.com/drink5703.html" + "url": "https://www.drinksmixer.com/drink5703.html" }, { "directions": "Shake cream, pineapple juice and orange juice with some ice. Strain into a large cocktail glass.", @@ -50253,7 +50253,7 @@ "orange juice" ], "title": "Orange Velvet recipe", - "url": "http://www.drinksmixer.com/drink5704.html" + "url": "https://www.drinksmixer.com/drink5704.html" }, { "directions": "Add kool-aid powder (sweetened), southern comfort and coke to an ice-filled hurricane glass. Stir well, and serve.", @@ -50263,7 +50263,7 @@ "Coca-Cola\u00ae" ], "title": "Orange Warthog recipe", - "url": "http://www.drinksmixer.com/drink5705.html" + "url": "https://www.drinksmixer.com/drink5705.html" }, { "directions": "Pour lemon juice, orange juice, and sugar syrup into a large tumbler or highball glass over ice cubes. Stir well, and top up with cold soda water. Serve with a drinking straw.", @@ -50274,7 +50274,7 @@ "soda water" ], "title": "Orangeade recipe", - "url": "http://www.drinksmixer.com/drink5706.html" + "url": "https://www.drinksmixer.com/drink5706.html" }, { "directions": "Pour dry gin into an old-fashioned glass and fill with apple cider or apple juice. Add grenadine (optional) to taste.", @@ -50284,7 +50284,7 @@ "apple cider" ], "title": "Orchard Downs recipe", - "url": "http://www.drinksmixer.com/drink5707.html" + "url": "https://www.drinksmixer.com/drink5707.html" }, { "directions": "Carefully layer the kahlua, creme de cacao, and bailey's into a shot glass. Top with a splash of vodka.", @@ -50295,7 +50295,7 @@ "vodka" ], "title": "Oreo Cookie recipe", - "url": "http://www.drinksmixer.com/drink5708.html" + "url": "https://www.drinksmixer.com/drink5708.html" }, { "directions": "Blend and pour over crushed ice in an old-fashioned glass. Sprinkle with coconut shavings and serve.", @@ -50307,7 +50307,7 @@ "cream of coconut" ], "title": "Organ Grinder recipe", - "url": "http://www.drinksmixer.com/drink5709.html" + "url": "https://www.drinksmixer.com/drink5709.html" }, { "directions": "Pour the two evenly into a 1-ounce shot glass, and serve.", @@ -50316,7 +50316,7 @@ "Bailey's\u00ae Irish cream" ], "title": "Orgasm #2 recipe", - "url": "http://www.drinksmixer.com/drink5710.html" + "url": "https://www.drinksmixer.com/drink5710.html" }, { "directions": "Build over ice, garnish with a strawberry or maraschino cherry, and serve.", @@ -50325,7 +50325,7 @@ "Bailey's\u00ae Irish cream" ], "title": "Orgasm #3 recipe", - "url": "http://www.drinksmixer.com/drink5711.html" + "url": "https://www.drinksmixer.com/drink5711.html" }, { "directions": "Stir together until it masks the vodka and looks like bailey's.", @@ -50334,7 +50334,7 @@ "vodka" ], "title": "Orgasm a la Denmark recipe", - "url": "http://www.drinksmixer.com/drink5712.html" + "url": "https://www.drinksmixer.com/drink5712.html" }, { "directions": "Pour vodka into a cocktail glass over crushed ice. Add the bailey's, kahlua, and vanilla extract. Stir, and serve.", @@ -50345,7 +50345,7 @@ "vanilla extract" ], "title": "Orgasmic Fantasy recipe", - "url": "http://www.drinksmixer.com/drink5713.html" + "url": "https://www.drinksmixer.com/drink5713.html" }, { "directions": "Mix together the lemon juice and orgeat syrup in a tumbler with 2 or 3 small ice cubes. Fill with soda water, stir, and serve.", @@ -50355,7 +50355,7 @@ "soda water" ], "title": "Orgeat Lemonade recipe", - "url": "http://www.drinksmixer.com/drink5714.html" + "url": "https://www.drinksmixer.com/drink5714.html" }, { "directions": "Shake all ingredients with ice, strain into a cocktail glass, and serve.", @@ -50366,7 +50366,7 @@ "limes" ], "title": "Oriental Cocktail recipe", - "url": "http://www.drinksmixer.com/drink5715.html" + "url": "https://www.drinksmixer.com/drink5715.html" }, { "directions": "Mix in a shaker with ice. Strain into a salt-rimmed cocktail glass, and garnish with a lime or lemon slice.", @@ -50376,7 +50376,7 @@ "tequila" ], "title": "The Original Margarita recipe", - "url": "http://www.drinksmixer.com/drink5716.html" + "url": "https://www.drinksmixer.com/drink5716.html" }, { "directions": "In a mixing glass half-filled with ice cubes, combine the gin, benedictine, and cherry brandy. Stir well, and strain into a collins glass almost filled with ice cubes. Top with the club soda and stir again.", @@ -50387,7 +50387,7 @@ "club soda" ], "title": "The Original Singapore Sling recipe", - "url": "http://www.drinksmixer.com/drink5717.html" + "url": "https://www.drinksmixer.com/drink5717.html" }, { "directions": "Half-fill a chilled shot glass with rumple minze, and top with black sambuca.", @@ -50396,7 +50396,7 @@ "black sambuca" ], "title": "Original Terminator recipe", - "url": "http://www.drinksmixer.com/drink5719.html" + "url": "https://www.drinksmixer.com/drink5719.html" }, { "directions": "Stir the gin and chambord raspberry liqueur together in a cocktail shaker. Add the pineapple juice and shake well. Serve over ice in an old-fashioned glass.", @@ -50406,7 +50406,7 @@ "pineapple juice" ], "title": "Orlando Amethyst recipe", - "url": "http://www.drinksmixer.com/drink5720.html" + "url": "https://www.drinksmixer.com/drink5720.html" }, { "directions": "Shake all ingredients with ice and strain into cocktail glass.", @@ -50416,7 +50416,7 @@ "Scotch whisky" ], "title": "Ortensia recipe", - "url": "http://www.drinksmixer.com/drink5721.html" + "url": "https://www.drinksmixer.com/drink5721.html" }, { "directions": "Carefully layer the triple sec, amaretto, and rum into a shot glass. Turn off the lights, ignite the rum (use caution) to warm rim of glass, and carefully blow out the flame. Serve immediately.", @@ -50426,7 +50426,7 @@ "Bacardi\u00ae 151 rum" ], "title": "The Other Half recipe", - "url": "http://www.drinksmixer.com/drink5722.html" + "url": "https://www.drinksmixer.com/drink5722.html" }, { "directions": "Add liquors and sweet and sour mix to a cocktail shaker. Fill with 7-up or sprite, and top with grenadine. Shake, and strain into a pint glass over ice.", @@ -50441,7 +50441,7 @@ "grenadine syrup" ], "title": "Otter Pop #2 recipe", - "url": "http://www.drinksmixer.com/drink5723.html" + "url": "https://www.drinksmixer.com/drink5723.html" }, { "directions": "Combine all ingredients in an ice-filled shaker, and strain into a shot glass.", @@ -50452,7 +50452,7 @@ "7-Up\u00ae soda" ], "title": "Otter Pop recipe", - "url": "http://www.drinksmixer.com/drink5724.html" + "url": "https://www.drinksmixer.com/drink5724.html" }, { "directions": "Shake all ingredients with ice, strain into an old-fashioned glass over ice cubes, and serve.", @@ -50462,7 +50462,7 @@ "pineapple juice" ], "title": "Outrigger recipe", - "url": "http://www.drinksmixer.com/drink5725.html" + "url": "https://www.drinksmixer.com/drink5725.html" }, { "directions": "Combine the rum, creme de cacao, and heavy cream in a shaker half-filled with ice cubes. Shake well, and strain into a cocktail glass. Drop the curacao into the center of the drink and serve.", @@ -50473,7 +50473,7 @@ "Blue Curacao liqueur" ], "title": "Owen Moore recipe", - "url": "http://www.drinksmixer.com/drink5726.html" + "url": "https://www.drinksmixer.com/drink5726.html" }, { "directions": "Maintain the vodka and juice at room temperature. Mix in an old-fashioned glass, and add the honey. The honey will sink to the bottom. Swirl the drink more or less to vary the amount of honey dissolved.", @@ -50483,7 +50483,7 @@ "honey" ], "title": "Oxymoron recipe", - "url": "http://www.drinksmixer.com/drink5727.html" + "url": "https://www.drinksmixer.com/drink5727.html" }, { "directions": "Add amaretto, a splash of beer and sweet and sour mix to an ice-filled old-fashioned glass. Top with sprite, stir lightly, and serve.", @@ -50494,7 +50494,7 @@ "Sprite\u00ae soda" ], "title": "Ozone recipe", - "url": "http://www.drinksmixer.com/drink5728.html" + "url": "https://www.drinksmixer.com/drink5728.html" }, { "directions": "Mix all ingredients together in a blender. Pour contents into a beer mug filled with cracked ice. \r", @@ -50508,7 +50508,7 @@ "powdered sugar" ], "title": "P.S.U. Victory Dance recipe", - "url": "http://www.drinksmixer.com/drink5729.html" + "url": "https://www.drinksmixer.com/drink5729.html" }, { "directions": "Mix with cracked ice and pour, with ice, into a chilled parfait or hurricane glass with a salted rim. Garnish with a lemon wheel.", @@ -50519,7 +50519,7 @@ "bitters" ], "title": "Pacific Sunshine recipe", - "url": "http://www.drinksmixer.com/drink5730.html" + "url": "https://www.drinksmixer.com/drink5730.html" }, { "directions": "Add the tia maria first (before the guinness has settled and before you \"head\" it), as otherwise you will mess-up a perfectly well-settled pint.", @@ -50528,7 +50528,7 @@ "Guinness\u00ae stout" ], "title": "Paddy's Caffeine recipe", - "url": "http://www.drinksmixer.com/drink5731.html" + "url": "https://www.drinksmixer.com/drink5731.html" }, { "directions": "Pour tabasco sauce into a large container, add whiskey, cream, and mix well. Pour into appropriate glasses, drink and chase with ginger ale and lemon peel. (Drink the mixture, take a swig of ginger ale, and bite the lemon peel.)", @@ -50539,7 +50539,7 @@ "Bailey's\u00ae Irish cream" ], "title": "Pain, Pain, Go Away recipe", - "url": "http://www.drinksmixer.com/drink5732.html" + "url": "https://www.drinksmixer.com/drink5732.html" }, { "directions": "Pour gin, curacao, pernod and lemon juice into a highball glass over ice cubes. Fill with soda water, stir, and serve.", @@ -50551,7 +50551,7 @@ "soda water" ], "title": "Painter's Delight recipe", - "url": "http://www.drinksmixer.com/drink5733.html" + "url": "https://www.drinksmixer.com/drink5733.html" }, { "directions": "Pour vodka and frangelico into an ice-filled highball glass. Fill with milk, and shake.", @@ -50561,7 +50561,7 @@ "milk" ], "title": "Paisano recipe", - "url": "http://www.drinksmixer.com/drink5734.html" + "url": "https://www.drinksmixer.com/drink5734.html" }, { "directions": "Stir all ingredients (except lemon peel) over ice cubes in an old-fashioned glass. Add a twist of lemon peel and serve.", @@ -50572,7 +50572,7 @@ "lemon" ], "title": "Paisley Martini recipe", - "url": "http://www.drinksmixer.com/drink5735.html" + "url": "https://www.drinksmixer.com/drink5735.html" }, { "directions": "Fill a glass with vodka and place a slice of sausage on the edge.", @@ -50581,7 +50581,7 @@ "sausage" ], "title": "Pajala Sunrise recipe", - "url": "http://www.drinksmixer.com/drink5736.html" + "url": "https://www.drinksmixer.com/drink5736.html" }, { "directions": "Shake all ingredients with ice, strain into a cocktail glass, and serve.", @@ -50591,7 +50591,7 @@ "grapefruit juice" ], "title": "Palm Beach Cocktail recipe", - "url": "http://www.drinksmixer.com/drink5737.html" + "url": "https://www.drinksmixer.com/drink5737.html" }, { "directions": "Stir all ingredients with ice, strain into a cocktail glass, and serve.", @@ -50601,7 +50601,7 @@ "bitters" ], "title": "Palmer Cocktail recipe", - "url": "http://www.drinksmixer.com/drink5738.html" + "url": "https://www.drinksmixer.com/drink5738.html" }, { "directions": "Stir all ingredients with ice, strain into a cocktail glass, and serve.", @@ -50611,7 +50611,7 @@ "bitters" ], "title": "Palmetto Cocktail recipe", - "url": "http://www.drinksmixer.com/drink5739.html" + "url": "https://www.drinksmixer.com/drink5739.html" }, { "directions": "Shake and strain into an ice-filled hurricane glass. Float myer's rum on top and garnish with a pineapple spear.", @@ -50623,7 +50623,7 @@ "pineapple juice" ], "title": "Palmetto recipe", - "url": "http://www.drinksmixer.com/drink5740.html" + "url": "https://www.drinksmixer.com/drink5740.html" }, { "directions": "Combine equal parts of gin, sprite, and grape juice in a large container. Mix well and cool. Serve in shot glasses.", @@ -50633,7 +50633,7 @@ "grape juice" ], "title": "Pamoyo recipe", - "url": "http://www.drinksmixer.com/drink5741.html" + "url": "https://www.drinksmixer.com/drink5741.html" }, { "directions": "Pour the tia maria, vodka and cherry brandy together into a pint glass. Add a dash of lime juice. Fill with equal amounts of dry cider and 7-up, and add ice cubes.", @@ -50646,7 +50646,7 @@ "dry cider" ], "title": "Pan Galactic Gargle Blaster #2 recipe", - "url": "http://www.drinksmixer.com/drink5742.html" + "url": "https://www.drinksmixer.com/drink5742.html" }, { "directions": "Shake all ingredients together, and serve in a tumbler over ice.", @@ -50657,7 +50657,7 @@ "cream" ], "title": "Panama Deluxe recipe", - "url": "http://www.drinksmixer.com/drink5743.html" + "url": "https://www.drinksmixer.com/drink5743.html" }, { "directions": "Shake the ingredients together with crushed ice, and strain into a whiskey-sour glass. Add crushed salt to the rim of the glass if desired.", @@ -50668,7 +50668,7 @@ "grapefruit juice" ], "title": "Panther Sweat recipe", - "url": "http://www.drinksmixer.com/drink5744.html" + "url": "https://www.drinksmixer.com/drink5744.html" }, { "directions": "Pour ingredients into an old-fashioned glass over several ice cubes. Stir well and serve.", @@ -50677,7 +50677,7 @@ "sweet and sour mix" ], "title": "Panther recipe", - "url": "http://www.drinksmixer.com/drink5745.html" + "url": "https://www.drinksmixer.com/drink5745.html" }, { "directions": "Pour kahlua and sloe gin into a tall, ice-filled glass. Fill with half and half, and serve.", @@ -50687,7 +50687,7 @@ "half-and-half" ], "title": "Panty Dropper recipe", - "url": "http://www.drinksmixer.com/drink5746.html" + "url": "https://www.drinksmixer.com/drink5746.html" }, { "directions": "Shake rum, grapefruit juice and sweetened lime juice with ice and pour or strain into a glass. Add a splash of grenadine and serve.", @@ -50698,7 +50698,7 @@ "grenadine syrup" ], "title": "Papa Doble recipe", - "url": "http://www.drinksmixer.com/drink5747.html" + "url": "https://www.drinksmixer.com/drink5747.html" }, { "directions": "Pour rum into a collins glass. Add papaya juice, and serve.", @@ -50707,7 +50707,7 @@ "papaya juice" ], "title": "Papaya Driver recipe", - "url": "http://www.drinksmixer.com/drink5748.html" + "url": "https://www.drinksmixer.com/drink5748.html" }, { "directions": "Clean out the seeds and deskin the papaya. Add to a blender with the milk, sugar and ice, and blend at medium to high speed for one or two minutes. Serve immediately.", @@ -50717,7 +50717,7 @@ "sugar" ], "title": "Papaya Milk Splash recipe", - "url": "http://www.drinksmixer.com/drink5749.html" + "url": "https://www.drinksmixer.com/drink5749.html" }, { "directions": "Shake all ingredients (except carbonated water and pineapple stick) with ice and strain into a collins glass over ice cubes. Fill with carbonated water and stir. Add the pineapple stick and serve.", @@ -50730,7 +50730,7 @@ "pineapple" ], "title": "Papaya Sling recipe", - "url": "http://www.drinksmixer.com/drink5750.html" + "url": "https://www.drinksmixer.com/drink5750.html" }, { "directions": "Pour shots over ice, add coke and strain into a collins glass.", @@ -50741,7 +50741,7 @@ "cherry cola" ], "title": "Parappa the Drunk Rappa recipe", - "url": "http://www.drinksmixer.com/drink5751.html" + "url": "https://www.drinksmixer.com/drink5751.html" }, { "directions": "Pour ingredients into a blender, mix together, and serve in a beer pilsner.", @@ -50751,7 +50751,7 @@ "Bailey's\u00ae Irish cream" ], "title": "Paris Paradise recipe", - "url": "http://www.drinksmixer.com/drink5752.html" + "url": "https://www.drinksmixer.com/drink5752.html" }, { "directions": "Pour grenadine syrup over ice cubes in a large tumbler. Stir, fill with cold milk, and stir again. Serve with a drinking straw.", @@ -50760,7 +50760,7 @@ "milk" ], "title": "Parisette recipe", - "url": "http://www.drinksmixer.com/drink5753.html" + "url": "https://www.drinksmixer.com/drink5753.html" }, { "directions": "Shake all ingredients with ice, strain into a cocktail glass, and serve.", @@ -50770,7 +50770,7 @@ "creme de cassis" ], "title": "Parisian Cocktail recipe", - "url": "http://www.drinksmixer.com/drink5754.html" + "url": "https://www.drinksmixer.com/drink5754.html" }, { "directions": "Stir all ingredients with ice, strain into a cocktail glass, and serve.", @@ -50780,7 +50780,7 @@ "pineapple juice" ], "title": "Park Avenue recipe", - "url": "http://www.drinksmixer.com/drink5755.html" + "url": "https://www.drinksmixer.com/drink5755.html" }, { "directions": "Pour liquor, juice and syrup into a blender. Add a sliced banana and ice. Blend for 45 seconds or until smooth. Serve in a hurricane glass.", @@ -50792,7 +50792,7 @@ "banana syrup" ], "title": "Parrot Perch recipe", - "url": "http://www.drinksmixer.com/drink5756.html" + "url": "https://www.drinksmixer.com/drink5756.html" }, { "directions": "Add chilled soda's to a collins glass, and add chilled lemon vodka.", @@ -50802,7 +50802,7 @@ "Schweppes\u00ae lemon soda" ], "title": "Party Death recipe", - "url": "http://www.drinksmixer.com/drink5757.html" + "url": "https://www.drinksmixer.com/drink5757.html" }, { "directions": "Mix all ingredients in a shaker. Serve over ice, and garnish with a lime wedge.", @@ -50812,7 +50812,7 @@ "Absolut\u00ae Kurant vodka" ], "title": "Party Girl recipe", - "url": "http://www.drinksmixer.com/drink5758.html" + "url": "https://www.drinksmixer.com/drink5758.html" }, { "directions": "Mix all ingredients together and freeze. Serve when slushy; add 7-up if desired.", @@ -50826,7 +50826,7 @@ "light rum" ], "title": "Party Slush Punch recipe", - "url": "http://www.drinksmixer.com/drink5759.html" + "url": "https://www.drinksmixer.com/drink5759.html" }, { "directions": "Pour gin into a collins glass. Add malibu rum, and top with rose's lime juice (to taste). Fill with lemonade, add ice and serve with a straw.", @@ -50837,7 +50837,7 @@ "lemonade" ], "title": "Partymeister recipe", - "url": "http://www.drinksmixer.com/drink5760.html" + "url": "https://www.drinksmixer.com/drink5760.html" }, { "directions": "Pour licor 43 and midori into a cocktail glass. Fill with milk, add ice, and serve.", @@ -50847,7 +50847,7 @@ "milk" ], "title": "Pascal recipe", - "url": "http://www.drinksmixer.com/drink5761.html" + "url": "https://www.drinksmixer.com/drink5761.html" }, { "directions": "Pour all ingredients into an iced shaker and shake well. Strain into a highball glass, and serve.", @@ -50858,7 +50858,7 @@ "cream" ], "title": "Passcack Valley Orgasm recipe", - "url": "http://www.drinksmixer.com/drink5762.html" + "url": "https://www.drinksmixer.com/drink5762.html" }, { "directions": "Shake all ingredients with ice, strain into an ice-filled highball glass, and serve with fresh fruit on the rim of the glass.", @@ -50870,7 +50870,7 @@ "orange juice" ], "title": "Passion Beach recipe", - "url": "http://www.drinksmixer.com/drink5763.html" + "url": "https://www.drinksmixer.com/drink5763.html" }, { "directions": "Shake all ingredients with ice, strain into a cocktail glass, and serve.", @@ -50881,7 +50881,7 @@ "powdered sugar" ], "title": "Passion Daiquiri recipe", - "url": "http://www.drinksmixer.com/drink5764.html" + "url": "https://www.drinksmixer.com/drink5764.html" }, { "directions": "Pour passion fruit juice into a champagne flute. Fill with chilled champagne, decorate with a strawberry, and serve.", @@ -50891,7 +50891,7 @@ "strawberries" ], "title": "Passion Mimosa recipe", - "url": "http://www.drinksmixer.com/drink5765.html" + "url": "https://www.drinksmixer.com/drink5765.html" }, { "directions": "Shake and serve in a hurricane glass.", @@ -50903,7 +50903,7 @@ "grenadine syrup" ], "title": "Passoa Sweet Dreams recipe", - "url": "http://www.drinksmixer.com/drink5766.html" + "url": "https://www.drinksmixer.com/drink5766.html" }, { "directions": "Pour the orange pop into a highball glass. Add the scotch whiskey, stir, and serve.", @@ -50912,7 +50912,7 @@ "orange soda" ], "title": "Pat Quinn recipe", - "url": "http://www.drinksmixer.com/drink5767.html" + "url": "https://www.drinksmixer.com/drink5767.html" }, { "directions": "Pour genever into a shot glass. Add fernet branca, and a dash of sour mix.", @@ -50922,7 +50922,7 @@ "sweet and sour mix" ], "title": "Patagonian Black Bush recipe", - "url": "http://www.drinksmixer.com/drink5768.html" + "url": "https://www.drinksmixer.com/drink5768.html" }, { "directions": "Blend amaretto, rum and curacao. Pour into a glass with ice, add orange juice, and splash with grenadine.", @@ -50934,7 +50934,7 @@ "grenadine syrup" ], "title": "Patat\ufffds recipe", - "url": "http://www.drinksmixer.com/drink5769.html" + "url": "https://www.drinksmixer.com/drink5769.html" }, { "directions": "Pour shots into a cocktail glass. Add cranberry and pineapple juice, two squirts of lemon and fill the rest of the glass with ice.", @@ -50946,7 +50946,7 @@ "lemon juice" ], "title": "Patel's Special recipe", - "url": "http://www.drinksmixer.com/drink5770.html" + "url": "https://www.drinksmixer.com/drink5770.html" }, { "directions": "Layer the blue curacao and whipped cream over gin in a shot glass.", @@ -50956,7 +50956,7 @@ "whipped cream" ], "title": "Patriotic Blow recipe", - "url": "http://www.drinksmixer.com/drink5771.html" + "url": "https://www.drinksmixer.com/drink5771.html" }, { "directions": "Pour brandy into a glass over ice. Add babycham pear cider, and serve.", @@ -50965,7 +50965,7 @@ "pear cider" ], "title": "Patsy Mix recipe", - "url": "http://www.drinksmixer.com/drink5772.html" + "url": "https://www.drinksmixer.com/drink5772.html" }, { "directions": "Carefully layer, in order, into a shot glass. Shoot, without hands.", @@ -50975,7 +50975,7 @@ "whipped cream" ], "title": "Patti's Blow Job recipe", - "url": "http://www.drinksmixer.com/drink5773.html" + "url": "https://www.drinksmixer.com/drink5773.html" }, { "directions": "Rim a coffee mug with celery salt, and pour bailey's over ice into it. Fill with bloody mary mix, garnish with a pickle spear and filberts, and serve.", @@ -50984,7 +50984,7 @@ "bloody mary mix" ], "title": "Patti's Irish Bloody Mary recipe", - "url": "http://www.drinksmixer.com/drink5774.html" + "url": "https://www.drinksmixer.com/drink5774.html" }, { "directions": "Fill a glass with ice. Pour equal parts of each ingredient into the glass, and serve with a straw.", @@ -50997,7 +50997,7 @@ "grenadine syrup" ], "title": "Pat Cocktail recipe", - "url": "http://www.drinksmixer.com/drink5775.html" + "url": "https://www.drinksmixer.com/drink5775.html" }, { "directions": "Pour vodka into a shot glass, ice optional. Add milk, and a drop or two of grenadine.", @@ -51007,7 +51007,7 @@ "grenadine syrup" ], "title": "Paul Raspberry recipe", - "url": "http://www.drinksmixer.com/drink5776.html" + "url": "https://www.drinksmixer.com/drink5776.html" }, { "directions": "Pour koskenkorva peach vodka into a glass, and fill with coca-cola. Stir, and serve cold.", @@ -51016,7 +51016,7 @@ "Coca-Cola\u00ae" ], "title": "Peach 200 recipe", - "url": "http://www.drinksmixer.com/drink5777.html" + "url": "https://www.drinksmixer.com/drink5777.html" }, { "directions": "Shake all ingredients (except carbonated water) with ice and strain into a highball glass over ice cubes. Fill with carbonated water, stir, and serve.", @@ -51029,7 +51029,7 @@ "carbonated water" ], "title": "Peach Blow Fizz recipe", - "url": "http://www.drinksmixer.com/drink5778.html" + "url": "https://www.drinksmixer.com/drink5778.html" }, { "directions": "Mix in a highball glass with ice cubes. Garnish with a slice of orange.", @@ -51038,7 +51038,7 @@ "orange juice" ], "title": "Peach Bowl recipe", - "url": "http://www.drinksmixer.com/drink5779.html" + "url": "https://www.drinksmixer.com/drink5779.html" }, { "directions": "Shake all ingredients with ice, strain into a cocktail glass, and serve.", @@ -51048,7 +51048,7 @@ "light cream" ], "title": "Peach Bunny recipe", - "url": "http://www.drinksmixer.com/drink5780.html" + "url": "https://www.drinksmixer.com/drink5780.html" }, { "directions": "Serve on the rocks.", @@ -51058,7 +51058,7 @@ "amaretto almond liqueur" ], "title": "Peach Death recipe", - "url": "http://www.drinksmixer.com/drink5781.html" + "url": "https://www.drinksmixer.com/drink5781.html" }, { "directions": "Add limeade to a blender half-filled with ice cubes. Pit and slice to medium ripe peaches, and add, with the vodka, to the blender. Blend, pour into a margarita glass, and serve.", @@ -51068,7 +51068,7 @@ "peaches" ], "title": "Peach Fuzz recipe", - "url": "http://www.drinksmixer.com/drink5782.html" + "url": "https://www.drinksmixer.com/drink5782.html" }, { "directions": "Stir together in an ice-filled collins glass.", @@ -51081,7 +51081,7 @@ "grenadine syrup" ], "title": "Peach Harpoon recipe", - "url": "http://www.drinksmixer.com/drink5783.html" + "url": "https://www.drinksmixer.com/drink5783.html" }, { "directions": "Mix together in a hurricane glass.", @@ -51093,7 +51093,7 @@ "7-Up\u00ae soda" ], "title": "Peach May Cocktail recipe", - "url": "http://www.drinksmixer.com/drink5784.html" + "url": "https://www.drinksmixer.com/drink5784.html" }, { "directions": "Shake ingredients and pour into a chilled cocktail glass. Add a twist of orange.", @@ -51105,7 +51105,7 @@ "grenadine syrup" ], "title": "Peach Me Tender recipe", - "url": "http://www.drinksmixer.com/drink5785.html" + "url": "https://www.drinksmixer.com/drink5785.html" }, { "directions": "Shake and strain over ice in a double-shot glass.", @@ -51118,7 +51118,7 @@ "7-Up\u00ae soda" ], "title": "Peach Nehi recipe", - "url": "http://www.drinksmixer.com/drink5786.html" + "url": "https://www.drinksmixer.com/drink5786.html" }, { "directions": "Pour vodka into a mixer/glass half-filled with ice cubes. Add the triple sec, schnapps and pink lemonade. Stir and pour into a highball glass.", @@ -51129,7 +51129,7 @@ "pink lemonade" ], "title": "Peach Passion recipe", - "url": "http://www.drinksmixer.com/drink5787.html" + "url": "https://www.drinksmixer.com/drink5787.html" }, { "directions": "Add wine, liqueur, brandy, sugar, cloves and chopped fruit to a large, 40-litre bowl. Mix until the sugar dissolves, and let rest for 12 hours. Serve with added sugar or brandy if desired.", @@ -51143,7 +51143,7 @@ "cloves" ], "title": "Peach Punch recipe", - "url": "http://www.drinksmixer.com/drink5788.html" + "url": "https://www.drinksmixer.com/drink5788.html" }, { "directions": "Layer in a shot glass, in order; yukon jack, jack daniels, and peachtree schnapps.", @@ -51153,7 +51153,7 @@ "DeKuyper\u00ae Peachtree schnapps" ], "title": "Peach Smoothie recipe", - "url": "http://www.drinksmixer.com/drink5789.html" + "url": "https://www.drinksmixer.com/drink5789.html" }, { "directions": "Shake and serve in a shot glass.", @@ -51162,7 +51162,7 @@ "lime juice" ], "title": "Peach Tart recipe", - "url": "http://www.drinksmixer.com/drink5790.html" + "url": "https://www.drinksmixer.com/drink5790.html" }, { "directions": "Mix and serve on the rocks.", @@ -51171,7 +51171,7 @@ "peach schnapps" ], "title": "Peach Tea Cooler recipe", - "url": "http://www.drinksmixer.com/drink5791.html" + "url": "https://www.drinksmixer.com/drink5791.html" }, { "directions": "Pour ingredients into an ice-filled collins glass. Add lime juice, stir and drop lime slice into drink.", @@ -51181,7 +51181,7 @@ "pineapple juice" ], "title": "Peach Tequila recipe", - "url": "http://www.drinksmixer.com/drink5792.html" + "url": "https://www.drinksmixer.com/drink5792.html" }, { "directions": "Shake brandy and orange juice with ice and strain into a collins glass over several ice cubes. Top with chilled champagne, add the peach slice, and serve.", @@ -51192,7 +51192,7 @@ "peach" ], "title": "Peach Treat recipe", - "url": "http://www.drinksmixer.com/drink5793.html" + "url": "https://www.drinksmixer.com/drink5793.html" }, { "directions": "Pour kahlua and schnapps into a highball glass. Fill with milk, shake, and serve.", @@ -51202,7 +51202,7 @@ "milk" ], "title": "Peaches and Cream recipe", - "url": "http://www.drinksmixer.com/drink5794.html" + "url": "https://www.drinksmixer.com/drink5794.html" }, { "directions": "Pour southern comfort and peach schnapps into a collins glass half-filled with ice. Fill with ginger ale, stir, and serve.", @@ -51212,7 +51212,7 @@ "ginger ale" ], "title": "Peachy Comfort recipe", - "url": "http://www.drinksmixer.com/drink5795.html" + "url": "https://www.drinksmixer.com/drink5795.html" }, { "directions": "Garnish with a slice of pear, and serve in a cocktail glass.", @@ -51221,7 +51221,7 @@ "pear liqueur" ], "title": "Pear Martini recipe", - "url": "http://www.drinksmixer.com/drink5796.html" + "url": "https://www.drinksmixer.com/drink5796.html" }, { "directions": "Mix all ingredients together, shake, and strain over ice in a highball glass.", @@ -51232,7 +51232,7 @@ "sweet and sour mix" ], "title": "Pearl Diver recipe", - "url": "http://www.drinksmixer.com/drink5797.html" + "url": "https://www.drinksmixer.com/drink5797.html" }, { "directions": "Add a splash of vanilla essence to an otherwise standard scotch and coke.", @@ -51242,7 +51242,7 @@ "vanilla extract" ], "title": "Pearl Harbour Revisited recipe", - "url": "http://www.drinksmixer.com/drink5798.html" + "url": "https://www.drinksmixer.com/drink5798.html" }, { "directions": "Pour over ice in a highball glass. Garnish with a pineapple chunk and maraschino cherry on a stick. Serve with a stirrer and a straw.", @@ -51252,7 +51252,7 @@ "pineapple juice" ], "title": "Pearl Harbour recipe", - "url": "http://www.drinksmixer.com/drink5799.html" + "url": "https://www.drinksmixer.com/drink5799.html" }, { "directions": "Pour butterscotch schnapps into a shot glass and add kahlua. Use a dropper to add rum cream drop by drop on the outside edge of the shot to form a ring or \"Pearl Necklace.\"", @@ -51262,7 +51262,7 @@ "Tortuga rum cream" ], "title": "Pearl Necklace #2 recipe", - "url": "http://www.drinksmixer.com/drink5800.html" + "url": "https://www.drinksmixer.com/drink5800.html" }, { "directions": "Mix equal parts tequila rose and bailey's irish cream in a shot glass, and shoot.", @@ -51271,7 +51271,7 @@ "Bailey's\u00ae Irish cream" ], "title": "Pearl Necklace recipe", - "url": "http://www.drinksmixer.com/drink5801.html" + "url": "https://www.drinksmixer.com/drink5801.html" }, { "directions": "Add the following to a shot glass, in equal parts, in order; tequila, vodka, black rum, bailey's irish cream, grenadine syrup. Mix until pink, and slowly pour absinthe over the back of a spoon. Ignite (use caution), extinguish, and drink.", @@ -51284,7 +51284,7 @@ "absinthe herbal liqueur" ], "title": "Pedra (Stone) recipe", - "url": "http://www.drinksmixer.com/drink5802.html" + "url": "https://www.drinksmixer.com/drink5802.html" }, { "directions": "Pour bacardi limon into an ice-filled collins glass. Add sweet and sour mix, and fill with equal parts of club soda and 7-up.", @@ -51295,7 +51295,7 @@ "club soda" ], "title": "Pedro Collins recipe", - "url": "http://www.drinksmixer.com/drink5803.html" + "url": "https://www.drinksmixer.com/drink5803.html" }, { "directions": "Extract juice from three lemon wedges and add to a highball glass over three ice cubes. Pour in the iced tea and dark rum, and mix well. Pour into a cocktail glass, and garnish with cherries.", @@ -51306,7 +51306,7 @@ "maraschino cherries" ], "title": "Peejon's Kiss recipe", - "url": "http://www.drinksmixer.com/drink5804.html" + "url": "https://www.drinksmixer.com/drink5804.html" }, { "directions": "Pour absolut kurant into a cocktail glass, and fill with orange juice.", @@ -51315,7 +51315,7 @@ "orange juice" ], "title": "Peekaboo recipe", - "url": "http://www.drinksmixer.com/drink5805.html" + "url": "https://www.drinksmixer.com/drink5805.html" }, { "directions": "Stir all ingredients with ice, strain into a cocktail glass, and serve.", @@ -51326,7 +51326,7 @@ "Dubonnet\u00ae French vermouth" ], "title": "Peggy Cocktail recipe", - "url": "http://www.drinksmixer.com/drink5806.html" + "url": "https://www.drinksmixer.com/drink5806.html" }, { "directions": "Stir with cracked ice and strain into a chilled cocktail glass. Garnish with a lime twist.", @@ -51337,7 +51337,7 @@ "Angostura\u00ae bitters" ], "title": "Pegu recipe", - "url": "http://www.drinksmixer.com/drink5807.html" + "url": "https://www.drinksmixer.com/drink5807.html" }, { "directions": "Add bourbon to a highball glass over ice cubes. Fill with coke and add lime juice. Garnish with a slice of lime.", @@ -51347,7 +51347,7 @@ "lime juice" ], "title": "Peg recipe", - "url": "http://www.drinksmixer.com/drink5808.html" + "url": "https://www.drinksmixer.com/drink5808.html" }, { "directions": "Squeeze juice from a fresh lemon. Mix with koskenkorva vodka.", @@ -51356,7 +51356,7 @@ "lemon juice" ], "title": "Peltikatto recipe", - "url": "http://www.drinksmixer.com/drink5809.html" + "url": "https://www.drinksmixer.com/drink5809.html" }, { "directions": "Pour ingredients into a shot glass and mix.", @@ -51366,7 +51366,7 @@ "triple sec" ], "title": "Penalty Shot recipe", - "url": "http://www.drinksmixer.com/drink5810.html" + "url": "https://www.drinksmixer.com/drink5810.html" }, { "directions": "Dissolve the sugar in a few drops of water, in an old-fashioned glass. Almost fill the glass with crushed ice, add the bourbon and stir well. Garnish with a twist of lemon.", @@ -51375,7 +51375,7 @@ "bourbon whiskey" ], "title": "Pendennis recipe", - "url": "http://www.drinksmixer.com/drink5811.html" + "url": "https://www.drinksmixer.com/drink5811.html" }, { "directions": "Add light rum and cointreau to an ice-filled collins glass. Fill with tonic water, and serve with a cherry.", @@ -51385,7 +51385,7 @@ "tonic water" ], "title": "Penguino recipe", - "url": "http://www.drinksmixer.com/drink5812.html" + "url": "https://www.drinksmixer.com/drink5812.html" }, { "directions": "Pour the vodka, blue curacao and lemon-lime mix into an ice-filled highball glass. Fill almost with sprite, floating the banana liqueur on top.", @@ -51397,7 +51397,7 @@ "banana liqueur" ], "title": "Penguin recipe", - "url": "http://www.drinksmixer.com/drink5813.html" + "url": "https://www.drinksmixer.com/drink5813.html" }, { "directions": "Pour all ingredients into a blender (ice cream optional) with two cups of ice, and blend until mixed. Serve in a hurricane glass.", @@ -51410,7 +51410,7 @@ "vanilla ice cream" ], "title": "Pensacola Bushwacker recipe", - "url": "http://www.drinksmixer.com/drink5814.html" + "url": "https://www.drinksmixer.com/drink5814.html" }, { "directions": "Pour the bourbon into a whiskey sour glass. Add vodka and 7-up, stir, and serve.", @@ -51420,7 +51420,7 @@ "7-Up\u00ae soda" ], "title": "Pentecostal recipe", - "url": "http://www.drinksmixer.com/drink5815.html" + "url": "https://www.drinksmixer.com/drink5815.html" }, { "directions": "Pour ingredients into a shot glass, and shoot. Chase with a lime wedge.", @@ -51430,7 +51430,7 @@ "lime juice" ], "title": "Penthouse recipe", - "url": "http://www.drinksmixer.com/drink5816.html" + "url": "https://www.drinksmixer.com/drink5816.html" }, { "directions": "Add southern comfort to an old-fashioned glass with ice. Fill with dr pepper and serve.", @@ -51439,7 +51439,7 @@ "Dr. Pepper\u00ae soda" ], "title": "Pepper Slammer recipe", - "url": "http://www.drinksmixer.com/drink5817.html" + "url": "https://www.drinksmixer.com/drink5817.html" }, { "directions": "Pour milk and liquors into a coffee mug, and add a peppermint stick or candy cane.", @@ -51449,7 +51449,7 @@ "peppermint schnapps" ], "title": "Peppermint Aztec recipe", - "url": "http://www.drinksmixer.com/drink5818.html" + "url": "https://www.drinksmixer.com/drink5818.html" }, { "directions": "Mix with ice. Serve cold.", @@ -51458,7 +51458,7 @@ "Malibu\u00ae coconut rum" ], "title": "Peppermint Beach recipe", - "url": "http://www.drinksmixer.com/drink5819.html" + "url": "https://www.drinksmixer.com/drink5819.html" }, { "directions": "Blend the creme de menthe and kahlua together. Fill with ice cold milk, add a few ice cubes, and serve.", @@ -51468,7 +51468,7 @@ "milk" ], "title": "Peppermint Crisp recipe", - "url": "http://www.drinksmixer.com/drink5820.html" + "url": "https://www.drinksmixer.com/drink5820.html" }, { "directions": "Pour creme de cacao and the creme de menthe into an ice-filled old-fashioned glass. Stir and serve.", @@ -51477,7 +51477,7 @@ "white creme de menthe" ], "title": "Peppermint Pattie recipe", - "url": "http://www.drinksmixer.com/drink5821.html" + "url": "https://www.drinksmixer.com/drink5821.html" }, { "directions": "Served chilled. Pour equally into a shot glass.", @@ -51486,7 +51486,7 @@ "mint schnapps" ], "title": "Peppermint Patty (Northern Style) recipe", - "url": "http://www.drinksmixer.com/drink5822.html" + "url": "https://www.drinksmixer.com/drink5822.html" }, { "directions": "Keep a shot of peppermint schnapps in your mouth, and squirt chocolate syrup in. Shake head vigorously and swallow.", @@ -51495,7 +51495,7 @@ "chocolate syrup" ], "title": "Peppermint Patty recipe", - "url": "http://www.drinksmixer.com/drink5823.html" + "url": "https://www.drinksmixer.com/drink5823.html" }, { "directions": "Shake all ingredients with ice, strain into a champagne flute, and serve.", @@ -51505,7 +51505,7 @@ "light cream" ], "title": "Peppermint Stick recipe", - "url": "http://www.drinksmixer.com/drink5824.html" + "url": "https://www.drinksmixer.com/drink5824.html" }, { "directions": "combine ingredients in a shaker half-filled with ice cubes. Shake well, and strain into a cocktail glass.", @@ -51517,7 +51517,7 @@ "lemon juice" ], "title": "Peregrine's Peril recipe", - "url": "http://www.drinksmixer.com/drink5825.html" + "url": "https://www.drinksmixer.com/drink5825.html" }, { "directions": "Shake all ingredients with ice, strain into a cocktail glass, and serve.", @@ -51528,7 +51528,7 @@ "bitters" ], "title": "Perfect Cocktail recipe", - "url": "http://www.drinksmixer.com/drink5826.html" + "url": "https://www.drinksmixer.com/drink5826.html" }, { "directions": "1. Pour amaretto, kahlua, and root beer schnapps into a shot glass. Float rum on top. \r", @@ -51540,7 +51540,7 @@ "beer" ], "title": "Perfect Flaming Dr. Pepper recipe", - "url": "http://www.drinksmixer.com/drink5827.html" + "url": "https://www.drinksmixer.com/drink5827.html" }, { "directions": "Swirl with ice to chill, pour into a cocktail glass, and garnish with a maraschino cherry.", @@ -51551,7 +51551,7 @@ "bitters" ], "title": "Perfect Manhattan recipe", - "url": "http://www.drinksmixer.com/drink5828.html" + "url": "https://www.drinksmixer.com/drink5828.html" }, { "directions": "1. Pour ingredients into a shaker with crushed ice. Squeeze in the juice of two lime wedges, and shake well. \r", @@ -51563,7 +51563,7 @@ "Bols\u00ae Orange Curacao liqueur" ], "title": "Perfect Margarita recipe", - "url": "http://www.drinksmixer.com/drink5829.html" + "url": "https://www.drinksmixer.com/drink5829.html" }, { "directions": "Rim a large, chilled margarita cocktail glass with lime and salt. Place ingredients in a shaker glass with about six ice cubes. Shake vigorously, and pour into the cocktail glass. Garnish with a slice of lime.", @@ -51576,7 +51576,7 @@ "sweet and sour mix" ], "title": "The Perfect Margarita #2 recipe", - "url": "http://www.drinksmixer.com/drink5830.html" + "url": "https://www.drinksmixer.com/drink5830.html" }, { "directions": "Combine the scotch, sweet vermouth and dry vermouth in a mixing glass half-filled with ice cubes. Stir well, strain into a cocktail glass, and garnish with a maraschino cherry or a lemon twist.", @@ -51586,7 +51586,7 @@ "dry vermouth" ], "title": "Perfect Rob Roy recipe", - "url": "http://www.drinksmixer.com/drink5831.html" + "url": "https://www.drinksmixer.com/drink5831.html" }, { "directions": "Pour the liquors into an old-fashioned glass. Fill with equal parts of lemon juice and sprite.", @@ -51597,7 +51597,7 @@ "Sprite\u00ae soda" ], "title": "The Perfect Ten recipe", - "url": "http://www.drinksmixer.com/drink5832.html" + "url": "https://www.drinksmixer.com/drink5832.html" }, { "directions": "Coat the lemon wedge with sugar, and douse with tabasco sauce. Suck the lemon, and shoot the pernod.", @@ -51608,7 +51608,7 @@ "lemon" ], "title": "The Pernod Demon recipe", - "url": "http://www.drinksmixer.com/drink5833.html" + "url": "https://www.drinksmixer.com/drink5833.html" }, { "directions": "Shake all ingredients with ice, strain into a cocktail glass, and serve.", @@ -51619,7 +51619,7 @@ "bitters" ], "title": "Peter Pan Cocktail recipe", - "url": "http://www.drinksmixer.com/drink5835.html" + "url": "https://www.drinksmixer.com/drink5835.html" }, { "directions": "Shake with cracked ice and strain into a chilled cocktail glass. Garnish with a cherry or orange slice.", @@ -51631,7 +51631,7 @@ "maraschino cherry" ], "title": "Petit Zinc recipe", - "url": "http://www.drinksmixer.com/drink5836.html" + "url": "https://www.drinksmixer.com/drink5836.html" }, { "directions": "Shake and strain into a cocktail glass.", @@ -51641,7 +51641,7 @@ "Cointreau\u00ae orange liqueur" ], "title": "Petite Fleur recipe", - "url": "http://www.drinksmixer.com/drink5837.html" + "url": "https://www.drinksmixer.com/drink5837.html" }, { "directions": "Combine the gin, vermouth and campari in a mixing glass half-filled with ice cubes. Stir well, and strain into a cocktail glass. Garnish with a lemon twist.", @@ -51652,7 +51652,7 @@ "lemon" ], "title": "Petticoat Lane recipe", - "url": "http://www.drinksmixer.com/drink5838.html" + "url": "https://www.drinksmixer.com/drink5838.html" }, { "directions": "Mix ingredients together over ice in a tumbler. Shake well, and strain into a whiskey sour glass. Adjust sour mix ratio to taste.", @@ -51662,7 +51662,7 @@ "sweet and sour mix" ], "title": "PEZ recipe", - "url": "http://www.drinksmixer.com/drink5839.html" + "url": "https://www.drinksmixer.com/drink5839.html" }, { "directions": "Pour licor 43 into a highball glass filled with ice cubes. Add absolut vodka, fill with milk, and mix.", @@ -51672,7 +51672,7 @@ "milk" ], "title": "Phantom recipe", - "url": "http://www.drinksmixer.com/drink5840.html" + "url": "https://www.drinksmixer.com/drink5840.html" }, { "directions": "Mix in a large punch bowl.", @@ -51682,7 +51682,7 @@ "Sunny Delight\u00ae orange juice" ], "title": "Phi Psycho Psycho recipe", - "url": "http://www.drinksmixer.com/drink5841.html" + "url": "https://www.drinksmixer.com/drink5841.html" }, { "directions": "Place 2 - 3 ice cubes into a glass. Add vodka and sunny delight (more or less to taste), stir and serve.", @@ -51691,7 +51691,7 @@ "Sunny Delight\u00ae orange juice" ], "title": "Phillips Screwdriver recipe", - "url": "http://www.drinksmixer.com/drink5842.html" + "url": "https://www.drinksmixer.com/drink5842.html" }, { "directions": "Mix the aftershock with vodka in a shot glass.", @@ -51700,7 +51700,7 @@ "Absolut\u00ae vodka" ], "title": "Photon Torpedo recipe", - "url": "http://www.drinksmixer.com/drink5844.html" + "url": "https://www.drinksmixer.com/drink5844.html" }, { "directions": "Fill a fifth of a bottle with equal parts of vodka and water. Add the egg white. Shake well until egg is thoroughly mixed, and pour into a punch bowl with the triple sec, juice, and sugar.", @@ -51714,7 +51714,7 @@ "egg" ], "title": "Phreaker Cocktail recipe", - "url": "http://www.drinksmixer.com/drink5845.html" + "url": "https://www.drinksmixer.com/drink5845.html" }, { "directions": "Swirl all ingredients together in a blender, pour into a cocktail glass, and serve.", @@ -51726,7 +51726,7 @@ "lime juice" ], "title": "Pic-Walsh recipe", - "url": "http://www.drinksmixer.com/drink5846.html" + "url": "https://www.drinksmixer.com/drink5846.html" }, { "directions": "Combine ingredients, in order, in a shaker half-filled with ice cubes and shake well. Strain into a collins glass with ice cubes. Top with schweppes russian. Garnish with a slice of lime, a mint leaf and a straw.", @@ -51737,7 +51737,7 @@ "Schweppes\u00ae Russian tonic water" ], "title": "Picasso 1 recipe", - "url": "http://www.drinksmixer.com/drink5847.html" + "url": "https://www.drinksmixer.com/drink5847.html" }, { "directions": "Stir all ingredients with ice, strain into a cocktail glass, and serve.", @@ -51748,7 +51748,7 @@ "grenadine syrup" ], "title": "Piccadilly Cocktail recipe", - "url": "http://www.drinksmixer.com/drink5848.html" + "url": "https://www.drinksmixer.com/drink5848.html" }, { "directions": "Lay a shot glass in a clean ash tray right side up, and start to pour the drinks into the glass until they overflow into the ash tray. Ignite the liquor, blow it out, take the shot from the shot glass, then drink out of the ash tray.", @@ -51757,7 +51757,7 @@ "Jose Cuervo\u00ae Especial gold tequila" ], "title": "Pick Me Up Jose recipe", - "url": "http://www.drinksmixer.com/drink5849.html" + "url": "https://www.drinksmixer.com/drink5849.html" }, { "directions": "Mix amer picon and beer in a pilsner.", @@ -51766,7 +51766,7 @@ "beer" ], "title": "Picon Biere recipe", - "url": "http://www.drinksmixer.com/drink5850.html" + "url": "https://www.drinksmixer.com/drink5850.html" }, { "directions": "Shake with cracked ice and strain into a chilled cocktail glass. Garnish with a lemon or orange twist.", @@ -51776,7 +51776,7 @@ "sugar syrup" ], "title": "Picon Whiskey recipe", - "url": "http://www.drinksmixer.com/drink5852.html" + "url": "https://www.drinksmixer.com/drink5852.html" }, { "directions": "Mix all ingredients in a cordial glass and serve. \r", @@ -51786,7 +51786,7 @@ "anisette" ], "title": "Piedra Putamadre recipe", - "url": "http://www.drinksmixer.com/drink5853.html" + "url": "https://www.drinksmixer.com/drink5853.html" }, { "directions": "Shake with ice, strain into shot glass.", @@ -51795,7 +51795,7 @@ "Bailey's\u00ae Irish cream" ], "title": "Pierced Nipple recipe", - "url": "http://www.drinksmixer.com/drink5854.html" + "url": "https://www.drinksmixer.com/drink5854.html" }, { "directions": "Mix in a glass one-quarter filled with ice.", @@ -51804,7 +51804,7 @@ "Midori\u00ae melon liqueur" ], "title": "Piggelin recipe", - "url": "http://www.drinksmixer.com/drink5855.html" + "url": "https://www.drinksmixer.com/drink5855.html" }, { "directions": "Mix in a glass one-quarter filled with ice.", @@ -51814,7 +51814,7 @@ "7-Up\u00ae soda" ], "title": "Piggelin #2 recipe", - "url": "http://www.drinksmixer.com/drink5856.html" + "url": "https://www.drinksmixer.com/drink5856.html" }, { "directions": "Add rum and vodka to a beer mug. Top with coca-cola and orange juice, and add ice if possible.", @@ -51825,7 +51825,7 @@ "orange juice" ], "title": "Piledriver recipe", - "url": "http://www.drinksmixer.com/drink5857.html" + "url": "https://www.drinksmixer.com/drink5857.html" }, { "directions": "Pour pimm's no.1 into a highball glass. Add a twist of lemon and fill with 7-up. Garnish with a slice of cucumber.", @@ -51836,7 +51836,7 @@ "lemon" ], "title": "Pimm's Cup recipe", - "url": "http://www.drinksmixer.com/drink5858.html" + "url": "https://www.drinksmixer.com/drink5858.html" }, { "directions": "Pour pimm's no.1 over ice in a large highball glass. Fill with ginger ale and garnish with a lemon and cucumber peel.", @@ -51847,7 +51847,7 @@ "cucumber" ], "title": "Pimm's Rangoon recipe", - "url": "http://www.drinksmixer.com/drink5859.html" + "url": "https://www.drinksmixer.com/drink5859.html" }, { "directions": "Pour pimm's over ice in a large highball glass. Fill with champagne, garnish with lemon and cucumber peel.", @@ -51858,7 +51858,7 @@ "cucumber" ], "title": "Pimm's Royal recipe", - "url": "http://www.drinksmixer.com/drink5860.html" + "url": "https://www.drinksmixer.com/drink5860.html" }, { "directions": "Pour the liquor into a cocktail glass. Add the orange and lemon juice, stir briefly, and serve.", @@ -51869,7 +51869,7 @@ "lemon juice" ], "title": "Pimp & Hoe recipe", - "url": "http://www.drinksmixer.com/drink5861.html" + "url": "https://www.drinksmixer.com/drink5861.html" }, { "directions": "Mix and pour over ice.", @@ -51879,7 +51879,7 @@ "Sprite\u00ae soda" ], "title": "Pimp Punch recipe", - "url": "http://www.drinksmixer.com/drink5862.html" + "url": "https://www.drinksmixer.com/drink5862.html" }, { "directions": "Add jagermeister to a highball glass half-filled with ice. Fill with battery, and serve.", @@ -51888,7 +51888,7 @@ "Battery\u00ae energy drink" ], "title": "Pimp Cocktail #2 recipe", - "url": "http://www.drinksmixer.com/drink5863.html" + "url": "https://www.drinksmixer.com/drink5863.html" }, { "directions": "1. Blend pineapple juice, coconut syrup, coconut cream and cinnamon in a blender until creamy. Place in refridgerator if desired or continue immediately to next step.\r", @@ -51901,7 +51901,7 @@ "vanilla ice cream" ], "title": "Pina Colada Punch recipe", - "url": "http://www.drinksmixer.com/drink5864.html" + "url": "https://www.drinksmixer.com/drink5864.html" }, { "directions": "Pour southern comfort on the rocks in a tall glass. Add amaretto, fill with pineapple juice, and stir.", @@ -51911,7 +51911,7 @@ "pineapple juice" ], "title": "Pine Cone recipe", - "url": "http://www.drinksmixer.com/drink5865.html" + "url": "https://www.drinksmixer.com/drink5865.html" }, { "directions": "Pour ingredients, in the order listed, into an ice-filled highball glass. Vary to taste.", @@ -51923,7 +51923,7 @@ "7-Up\u00ae soda" ], "title": "Pine Needle recipe", - "url": "http://www.drinksmixer.com/drink5866.html" + "url": "https://www.drinksmixer.com/drink5866.html" }, { "directions": "Combine ingredients in a mixing glass almost-filled with ice. Stir, and strain into a shot glass.", @@ -51932,7 +51932,7 @@ "Frangelico\u00ae hazelnut liqueur" ], "title": "Pine-Sol Shooter recipe", - "url": "http://www.drinksmixer.com/drink5867.html" + "url": "https://www.drinksmixer.com/drink5867.html" }, { "directions": "Combine ingredients in a shaker with ice. Add a splash of 7-up or sprite if desired. Shake until condensated and strain into shot glasses.", @@ -51942,7 +51942,7 @@ "pineapple juice" ], "title": "Pineapple Bomb recipe", - "url": "http://www.drinksmixer.com/drink5868.html" + "url": "https://www.drinksmixer.com/drink5868.html" }, { "directions": "Pour rum, pineapple juice, grenadine and lemon juice into a collins glass. Fill with club soda, or to taste. Serve with ice.", @@ -51954,7 +51954,7 @@ "club soda" ], "title": "Pineapple Cocktail recipe", - "url": "http://www.drinksmixer.com/drink5869.html" + "url": "https://www.drinksmixer.com/drink5869.html" }, { "directions": "Pour white wine, pineapple juice, powdered sugar and two-ounces of carbonated water into a collins glass and stir. Add ice cubes, fill with carbonated water, and stir again. Garnish with a twist of lemon peel and an orange spiral over the rim.", @@ -51965,7 +51965,7 @@ "powdered sugar" ], "title": "Pineapple Cooler recipe", - "url": "http://www.drinksmixer.com/drink5870.html" + "url": "https://www.drinksmixer.com/drink5870.html" }, { "directions": "Pour rum over pineapple chunks in a tall glass. Add pineapple juice and sweet and sour. Top with sprite, stir, and serve.", @@ -51977,7 +51977,7 @@ "Sprite\u00ae soda" ], "title": "Pineapple Drink recipe", - "url": "http://www.drinksmixer.com/drink5871.html" + "url": "https://www.drinksmixer.com/drink5871.html" }, { "directions": "Add to a blender and liquify.", @@ -51986,7 +51986,7 @@ "pineapples" ], "title": "Pineapple Gingerale Smoothie recipe", - "url": "http://www.drinksmixer.com/drink5872.html" + "url": "https://www.drinksmixer.com/drink5872.html" }, { "directions": "Mix juice and sugar syrup in a large tumbler with several ice cubes. Stir well and top up with cold soda water. Serve with a drinking straw.", @@ -51997,7 +51997,7 @@ "soda water" ], "title": "Pineapple Lemonade recipe", - "url": "http://www.drinksmixer.com/drink5873.html" + "url": "https://www.drinksmixer.com/drink5873.html" }, { "directions": "1. Crush pineapple pieces very finely and add, with the sugar, to pineapple juice in a pan. Leave to stand overnight. \r", @@ -52010,7 +52010,7 @@ "pineapple juice" ], "title": "Pineapple Liqueur recipe", - "url": "http://www.drinksmixer.com/drink5874.html" + "url": "https://www.drinksmixer.com/drink5874.html" }, { "directions": "Pour pineapple juice, triple sec and schnapps into a collins glass. Stir briefly, and serve.", @@ -52021,7 +52021,7 @@ "Sprite\u00ae soda" ], "title": "Pineapple Monyca recipe", - "url": "http://www.drinksmixer.com/drink5875.html" + "url": "https://www.drinksmixer.com/drink5875.html" }, { "directions": "Place the can of sliced pineapple, with juice, into a blender jar. Add the water, honey and ginger, and blend on medium speed until well mixed. Pour into one tall, two medium, or three small glass.", @@ -52032,7 +52032,7 @@ "ginger" ], "title": "Pineapple Power recipe", - "url": "http://www.drinksmixer.com/drink5876.html" + "url": "https://www.drinksmixer.com/drink5876.html" }, { "directions": "Place the pineapple pieces in a punch bowl and pour the sherry over them. Chill for 2 hours. Place tea and sugar in a pot, add red wine, lemon juice and rum. Heat but do not boil the mixture. Pour over the pineapple pieces and sherry.", @@ -52047,7 +52047,7 @@ "sherry" ], "title": "Pineapple Punch recipe", - "url": "http://www.drinksmixer.com/drink5877.html" + "url": "https://www.drinksmixer.com/drink5877.html" }, { "directions": "Add liquors and sour mix to an ice-filled collins glass. Top with pineapple juice (to taste) and serve.", @@ -52061,7 +52061,7 @@ "pineapple juice" ], "title": "Pineapple Tea recipe", - "url": "http://www.drinksmixer.com/drink5878.html" + "url": "https://www.drinksmixer.com/drink5878.html" }, { "directions": "Pour southern comfort to the first line of a 16 oz. solo brand plastic cup. Add bacardi 151 rum, 7-up, orange juice, and coca-cola. Swirl briefly around in the cup and serve.", @@ -52073,7 +52073,7 @@ "Coca-Cola\u00ae" ], "title": "Pineappleless Pineapple Juice recipe", - "url": "http://www.drinksmixer.com/drink5879.html" + "url": "https://www.drinksmixer.com/drink5879.html" }, { "directions": "Mix vodkas in a cocktail shaker over ice. Strain into two seperate shot glasses. Squeeze juice from the lemon wedge into each glass.", @@ -52083,7 +52083,7 @@ "lemon" ], "title": "Pineberry recipe", - "url": "http://www.drinksmixer.com/drink5880.html" + "url": "https://www.drinksmixer.com/drink5880.html" }, { "directions": "Shake all ingredients with ice, strain into a cocktail glass, and serve.", @@ -52093,7 +52093,7 @@ "egg" ], "title": "Ping-Pong Cocktail recipe", - "url": "http://www.drinksmixer.com/drink5881.html" + "url": "https://www.drinksmixer.com/drink5881.html" }, { "directions": "Shake milk, irish cream and pisang ambon. Pour into a cocktail glass filled with crushed ice, and serve.", @@ -52103,7 +52103,7 @@ "milk" ], "title": "Pinglan recipe", - "url": "http://www.drinksmixer.com/drink5882.html" + "url": "https://www.drinksmixer.com/drink5882.html" }, { "directions": "Pour creme de banane into a collins glass half-filled with ice. Add the pink lemonade, and serve.", @@ -52112,7 +52112,7 @@ "pink lemonade" ], "title": "Pink Banana recipe", - "url": "http://www.drinksmixer.com/drink5883.html" + "url": "https://www.drinksmixer.com/drink5883.html" }, { "directions": "Add tequila, pineapple-coconut juice and grenadine to a beer mug three-quartes filled with crushed ice. Stir until pink in color.", @@ -52122,7 +52122,7 @@ "grenadine syrup" ], "title": "Pink Beaner recipe", - "url": "http://www.drinksmixer.com/drink5884.html" + "url": "https://www.drinksmixer.com/drink5884.html" }, { "directions": "Pour the champagne into a cocktail glass. Add the orange juice and creme de cassis.", @@ -52132,7 +52132,7 @@ "creme de cassis" ], "title": "Pink California Sunshine recipe", - "url": "http://www.drinksmixer.com/drink5885.html" + "url": "https://www.drinksmixer.com/drink5885.html" }, { "directions": "Shake in a cocktail shaker with ice cubes. Pour into an old-fashioned glass, garnish with a cherry, and serve.", @@ -52145,7 +52145,7 @@ "pineapple juice" ], "title": "Pink Clyt recipe", - "url": "http://www.drinksmixer.com/drink5886.html" + "url": "https://www.drinksmixer.com/drink5886.html" }, { "directions": "Pour all ingredients over ice in a collins glass, stir, and serve.", @@ -52155,7 +52155,7 @@ "pink lemonade" ], "title": "Pink Cotton Candy recipe", - "url": "http://www.drinksmixer.com/drink5887.html" + "url": "https://www.drinksmixer.com/drink5887.html" }, { "directions": "Combine the gin, lemon juice, sugar, cream, and grenadine in a shaker half-filled with ice cubes. Shake well, and strain into a collins glass almost filled with ice cubes. Add the club soda, and stir well.", @@ -52168,7 +52168,7 @@ "club soda" ], "title": "Pink Cream Fizz recipe", - "url": "http://www.drinksmixer.com/drink5888.html" + "url": "https://www.drinksmixer.com/drink5888.html" }, { "directions": "Pour vodka, galliano, cointreau, grenadine and milk into a cocktail shaker, shake and pour into a cocktail glass. Add a squirt of cream on top, and serve.", @@ -52181,7 +52181,7 @@ "cream" ], "title": "Pink Drink recipe", - "url": "http://www.drinksmixer.com/drink5889.html" + "url": "https://www.drinksmixer.com/drink5889.html" }, { "directions": "Mix pink lemonade per instructions on can. Add vodka, slices of lime, and lots of ice. Mix well.", @@ -52191,7 +52191,7 @@ "lime" ], "title": "Pink Elephant Ears recipe", - "url": "http://www.drinksmixer.com/drink5890.html" + "url": "https://www.drinksmixer.com/drink5890.html" }, { "directions": "Mix and serve.", @@ -52202,7 +52202,7 @@ "Midori\u00ae melon liqueur" ], "title": "Pink Elephants On Parade recipe", - "url": "http://www.drinksmixer.com/drink5891.html" + "url": "https://www.drinksmixer.com/drink5891.html" }, { "directions": "Pour grenadine into a brandy snifter, and swirl so that it coats most of the surface of the glass. Pour out the grenadine briskly, and add gin.", @@ -52211,7 +52211,7 @@ "gin" ], "title": "Pink Elephant recipe", - "url": "http://www.drinksmixer.com/drink5892.html" + "url": "https://www.drinksmixer.com/drink5892.html" }, { "directions": "Pour ingredients into a shaker half-filled with ice. Shake vigorously, and pour into a lowball glass. Garnish to taste.", @@ -52221,7 +52221,7 @@ "grenadine syrup" ], "title": "Pink Fix recipe", - "url": "http://www.drinksmixer.com/drink5893.html" + "url": "https://www.drinksmixer.com/drink5893.html" }, { "directions": "Pour watermelon schnapps into an ice-filled highball glass until half-full. Fill with sprite or 7-up, stir, and serve.", @@ -52230,7 +52230,7 @@ "Sprite\u00ae soda" ], "title": "Pink Fizzy recipe", - "url": "http://www.drinksmixer.com/drink5894.html" + "url": "https://www.drinksmixer.com/drink5894.html" }, { "directions": "Add crushed ice, vanilla schnapps, and grenadine to a hurricane glass. Add a few splashes of orange juice and fill with cream. Garnish with two maraschino cherries.", @@ -52241,7 +52241,7 @@ "cream" ], "title": "Pink Flamingo #2 recipe", - "url": "http://www.drinksmixer.com/drink5895.html" + "url": "https://www.drinksmixer.com/drink5895.html" }, { "directions": "Mix all ingredients, shake and serve in a tall glass.", @@ -52252,7 +52252,7 @@ "sloe gin" ], "title": "Pink Flamingo recipe", - "url": "http://www.drinksmixer.com/drink5896.html" + "url": "https://www.drinksmixer.com/drink5896.html" }, { "directions": "Pour amaretto and southern comfort into a shaker glass over ice. Top with equal parts orange and pinapple juice, and a splash of grenadine. Shake and strain into a shot glass.", @@ -52264,7 +52264,7 @@ "grenadine syrup" ], "title": "Pink Floyd recipe", - "url": "http://www.drinksmixer.com/drink5897.html" + "url": "https://www.drinksmixer.com/drink5897.html" }, { "directions": "Add cranberry juice to gin and pour into a shot glass.", @@ -52273,7 +52273,7 @@ "cranberry juice" ], "title": "Pink Gin #2 recipe", - "url": "http://www.drinksmixer.com/drink5898.html" + "url": "https://www.drinksmixer.com/drink5898.html" }, { "directions": "Pour the gin and the tonic water into a highball glass almost filled with ice cubes. Stir well, top with campari (to add more colour and taste), and garnish with a lime wedge.", @@ -52284,7 +52284,7 @@ "lime" ], "title": "Pink Gin Tonic recipe", - "url": "http://www.drinksmixer.com/drink5899.html" + "url": "https://www.drinksmixer.com/drink5899.html" }, { "directions": "Pour the bitters into a wine glass. Swirl the glass to coat the inside with the bitters, shake out the excess. Pour the gin into the glass. Do not add ice.", @@ -52293,7 +52293,7 @@ "Plymouth\u00ae gin" ], "title": "Pink Gin recipe", - "url": "http://www.drinksmixer.com/drink5900.html" + "url": "https://www.drinksmixer.com/drink5900.html" }, { "directions": "Pour the chambord and creme de cacao into a rocks or old-fashioned glass filled with ice. Fill with cream or milk.", @@ -52303,7 +52303,7 @@ "milk" ], "title": "Pink Heart recipe", - "url": "http://www.drinksmixer.com/drink5901.html" + "url": "https://www.drinksmixer.com/drink5901.html" }, { "directions": "Shake ingredients with ice, strain into a cocktail glass, and serve.", @@ -52314,7 +52314,7 @@ "egg" ], "title": "Pink Lady recipe", - "url": "http://www.drinksmixer.com/drink5902.html" + "url": "https://www.drinksmixer.com/drink5902.html" }, { "directions": "Add ice, vodka, sour mix, cranberry and lime juice to a shaker. Shake and strain into a highball glass with a garnish of lemon.", @@ -52325,7 +52325,7 @@ "lime juice" ], "title": "Pink Lemonade #2 recipe", - "url": "http://www.drinksmixer.com/drink5903.html" + "url": "https://www.drinksmixer.com/drink5903.html" }, { "directions": "Shake and serve on the rocks.", @@ -52335,7 +52335,7 @@ "sweet and sour mix" ], "title": "Pink Lemonade recipe", - "url": "http://www.drinksmixer.com/drink5904.html" + "url": "https://www.drinksmixer.com/drink5904.html" }, { "directions": "Shake and strain into a chilled, sugar-rimmed cocktail glass. Garnish with a lemon wheel.", @@ -52345,7 +52345,7 @@ "cranberry juice" ], "title": "Pink Limon recipe", - "url": "http://www.drinksmixer.com/drink5905.html" + "url": "https://www.drinksmixer.com/drink5905.html" }, { "directions": "Mix vodka, cranberry juice and sugar syrup, and pour into a champagne coupe or flute. Fill with champagne or a dry sparkling wine.", @@ -52356,7 +52356,7 @@ "Champagne" ], "title": "Pink Millenium recipe", - "url": "http://www.drinksmixer.com/drink5906.html" + "url": "https://www.drinksmixer.com/drink5906.html" }, { "directions": "Shake with ice and strain into a cocktail glass, or stir well in an old-fashioned glass half-filled with ice.", @@ -52367,7 +52367,7 @@ "grenadine syrup" ], "title": "Pink n' Tart recipe", - "url": "http://www.drinksmixer.com/drink5907.html" + "url": "https://www.drinksmixer.com/drink5907.html" }, { "directions": "Mix strawberry-kiwi crystal light, add your favorite brand of vodka, and serve over ice.", @@ -52376,7 +52376,7 @@ "Crystal Light\u00ae lemonade mix" ], "title": "Pink Panther recipe", - "url": "http://www.drinksmixer.com/drink5908.html" + "url": "https://www.drinksmixer.com/drink5908.html" }, { "directions": "Place all ingredients in a blender and mix until smooth. Garnish with fresh or frozen berries.", @@ -52386,7 +52386,7 @@ "vanilla ice cream" ], "title": "Pink Panther Shake recipe", - "url": "http://www.drinksmixer.com/drink5909.html" + "url": "https://www.drinksmixer.com/drink5909.html" }, { "directions": "Pour maraschino cherries and their juice into a two-gallon jug. Add vodka, and let soak for a few minutes. Add the lemon juice and fill with sprite. Pour mixture into a serving container and strain out cherries. Serve over ice, with cherries dropped in.", @@ -52397,7 +52397,7 @@ "Sprite\u00ae soda" ], "title": "Pink Panty Pulldowns recipe", - "url": "http://www.drinksmixer.com/drink5910.html" + "url": "https://www.drinksmixer.com/drink5910.html" }, { "directions": "Build in a highball glass, in order, with ice cubes. Garnish with lime wedges.", @@ -52407,7 +52407,7 @@ "Sprite\u00ae soda" ], "title": "Pink Passion recipe", - "url": "http://www.drinksmixer.com/drink5911.html" + "url": "https://www.drinksmixer.com/drink5911.html" }, { "directions": "Mix all ingredients in a punch bowl. Keep chilled, and stir frequently.", @@ -52419,7 +52419,7 @@ "cranberry juice" ], "title": "Pink Penocha recipe", - "url": "http://www.drinksmixer.com/drink5912.html" + "url": "https://www.drinksmixer.com/drink5912.html" }, { "directions": "Pour the vodka into a beer mug, and add grenadine until pink. Add equal parts of sour mix and ginger ale until full.", @@ -52430,7 +52430,7 @@ "ginger ale" ], "title": "Pink Pillow recipe", - "url": "http://www.drinksmixer.com/drink5913.html" + "url": "https://www.drinksmixer.com/drink5913.html" }, { "directions": "Mix in a blender on low speed and serve in a chilled glass. Garnish with a cherry.", @@ -52441,7 +52441,7 @@ "grenadine syrup" ], "title": "Pink Pitch recipe", - "url": "http://www.drinksmixer.com/drink5914.html" + "url": "https://www.drinksmixer.com/drink5914.html" }, { "directions": "Pour one can of beer into a pitcher. Add one can of frozen pink lemonade. Add vodka (in place of the water), stir and serve.", @@ -52451,7 +52451,7 @@ "vodka" ], "title": "Pink Police recipe", - "url": "http://www.drinksmixer.com/drink5915.html" + "url": "https://www.drinksmixer.com/drink5915.html" }, { "directions": "Shake all ingredients with ice in a mixing tin, and strain into a large shot glass.", @@ -52463,7 +52463,7 @@ "sweet and sour mix" ], "title": "Pink Poontang recipe", - "url": "http://www.drinksmixer.com/drink5916.html" + "url": "https://www.drinksmixer.com/drink5916.html" }, { "directions": "Mix all ingredients in a shaker, chill, and strain into a shot glass.", @@ -52475,7 +52475,7 @@ "pineapple juice" ], "title": "Pink Ranger recipe", - "url": "http://www.drinksmixer.com/drink5917.html" + "url": "https://www.drinksmixer.com/drink5917.html" }, { "directions": "Pour liquor into a highball glass with ice. Fill with milk or cream, and shake.", @@ -52486,7 +52486,7 @@ "milk" ], "title": "Pink Russian recipe", - "url": "http://www.drinksmixer.com/drink5918.html" + "url": "https://www.drinksmixer.com/drink5918.html" }, { "directions": "Pour ingredients into an ice-filled mixing glass, and shake or stir. Strain into a cocktail glass.", @@ -52496,7 +52496,7 @@ "milk" ], "title": "Pink Squirrel #2 recipe", - "url": "http://www.drinksmixer.com/drink5919.html" + "url": "https://www.drinksmixer.com/drink5919.html" }, { "directions": "Shake all ingredients with ice, strain into a cocktail glass, and serve.", @@ -52506,7 +52506,7 @@ "light cream" ], "title": "Pink Squirrel recipe", - "url": "http://www.drinksmixer.com/drink5920.html" + "url": "https://www.drinksmixer.com/drink5920.html" }, { "directions": "Pour rumple minze into a shot glass, add firewater, and serve.", @@ -52515,7 +52515,7 @@ "Firewater\u00ae cinnamon schnapps" ], "title": "Pinky recipe", - "url": "http://www.drinksmixer.com/drink5921.html" + "url": "https://www.drinksmixer.com/drink5921.html" }, { "directions": "Add ingredients to a shot glass, in order; jack daniel's, pineapple juice, and orange juice. Shoot.", @@ -52525,7 +52525,7 @@ "orange juice" ], "title": "Pio's Beating Stick recipe", - "url": "http://www.drinksmixer.com/drink5922.html" + "url": "https://www.drinksmixer.com/drink5922.html" }, { "directions": "Combine the scotch and vermouth in a mixing glass half-filled with ice cubes. Stir well, and strain into a cocktail glass. Garnish with a lemon twist.", @@ -52534,7 +52534,7 @@ "dry vermouth" ], "title": "Piper At Arms recipe", - "url": "http://www.drinksmixer.com/drink5923.html" + "url": "https://www.drinksmixer.com/drink5923.html" }, { "directions": "Combine the scotch, kahlua, and maraschino liqueur in a mixing glass half-filled with ice cubes. Stir well, and strain into an old-fashioned glass almost filled with ice cubes. Pour the cream over the back of a teaspoon so that it floats on top of the drink.", @@ -52545,7 +52545,7 @@ "heavy cream" ], "title": "Piper At The Gates Of Dawn recipe", - "url": "http://www.drinksmixer.com/drink5924.html" + "url": "https://www.drinksmixer.com/drink5924.html" }, { "directions": "Add all ingredients, in order, into a highball glass. Stir if desired.", @@ -52556,7 +52556,7 @@ "cream" ], "title": "Pirate Float recipe", - "url": "http://www.drinksmixer.com/drink5925.html" + "url": "https://www.drinksmixer.com/drink5925.html" }, { "directions": "Mix all ingredients in a glass with ice. Add cola, to taste, and serve on the rocks.", @@ -52566,7 +52566,7 @@ "Coca-Cola\u00ae" ], "title": "Pirate's Float recipe", - "url": "http://www.drinksmixer.com/drink5926.html" + "url": "https://www.drinksmixer.com/drink5926.html" }, { "directions": "Pour spiced rum into an ice-filled mason jar. Add coca-cola to the ridge of the jar, and fill with orange juice. Garnish with a lemon wedge, and serve.", @@ -52576,7 +52576,7 @@ "orange juice" ], "title": "Pirate's Tea recipe", - "url": "http://www.drinksmixer.com/drink5927.html" + "url": "https://www.drinksmixer.com/drink5927.html" }, { "directions": "Combine in a highball glass with two to three ice cubes, shake, and serve.", @@ -52585,7 +52585,7 @@ "milk" ], "title": "Pisang Cold recipe", - "url": "http://www.drinksmixer.com/drink5928.html" + "url": "https://www.drinksmixer.com/drink5928.html" }, { "directions": "Add pisang ambon and rum to a margarita glass with ice cubes. Fill with bitter lemon. Garnish with an orange slice, and serve with two straws.", @@ -52595,7 +52595,7 @@ "bitter lemon soda" ], "title": "Pisang Garuda recipe", - "url": "http://www.drinksmixer.com/drink5929.html" + "url": "https://www.drinksmixer.com/drink5929.html" }, { "directions": "Shake well with five or six ice cubes and serve in a cocktail glass with two ice cubes.", @@ -52605,7 +52605,7 @@ "Pisang Ambon\u00ae liqueur" ], "title": "Pisang Pistace recipe", - "url": "http://www.drinksmixer.com/drink5930.html" + "url": "https://www.drinksmixer.com/drink5930.html" }, { "directions": "Add all ingredients to a mixer with ice. Shake well (until ice is melted), and serve in a cocktail glass.", @@ -52615,7 +52615,7 @@ "sugar" ], "title": "Pisco Sour recipe", - "url": "http://www.drinksmixer.com/drink5931.html" + "url": "https://www.drinksmixer.com/drink5931.html" }, { "directions": "Add frozen limeade concentrate, pisco, and triple sec to a blender. Fill with ice, and blend on high speed (keep topping with water until full). When done, serve in a margarita glass rimmed with salt.", @@ -52625,7 +52625,7 @@ "triple sec" ], "title": "Pisco-Rita recipe", - "url": "http://www.drinksmixer.com/drink5932.html" + "url": "https://www.drinksmixer.com/drink5932.html" }, { "directions": "Pour pisco over ice cubes in a highball glass. Fill with coca-cola or other soft drink, stir, and serve.", @@ -52634,7 +52634,7 @@ "Coca-Cola\u00ae" ], "title": "Piscola recipe", - "url": "http://www.drinksmixer.com/drink5933.html" + "url": "https://www.drinksmixer.com/drink5933.html" }, { "directions": "Pour mountain dew into a large glass with ice cubes. Add vodka and avalanche schnapps, both pre-chilled. Stir and serve.", @@ -52644,7 +52644,7 @@ "Mountain Dew\u00ae citrus soda" ], "title": "Piss in the Snow recipe", - "url": "http://www.drinksmixer.com/drink5934.html" + "url": "https://www.drinksmixer.com/drink5934.html" }, { "directions": "Blend ingredients briefly at low speed. Pour into a chilled champagne flute and serve.", @@ -52654,7 +52654,7 @@ "vanilla ice cream" ], "title": "Pistachio Cream recipe", - "url": "http://www.drinksmixer.com/drink5935.html" + "url": "https://www.drinksmixer.com/drink5935.html" }, { "directions": "Mix all three ingredients in a mixing tin with ice. Serve in a shot glass.", @@ -52664,7 +52664,7 @@ "Jose Cuervo\u00ae Especial gold tequila" ], "title": "Pit Bull On Crack #2 recipe", - "url": "http://www.drinksmixer.com/drink5936.html" + "url": "https://www.drinksmixer.com/drink5936.html" }, { "directions": "Combine ingredients, all pre-chilled, in a shot glass. Serve.", @@ -52675,7 +52675,7 @@ "Bacardi\u00ae 151 rum" ], "title": "Pit Bull On Crack recipe", - "url": "http://www.drinksmixer.com/drink5937.html" + "url": "https://www.drinksmixer.com/drink5937.html" }, { "directions": "Pour southern comfort and amaretto over ice in a highball glass. Fill with sweet and sour mix, top with sprite, and float grenadine on top. Garnish with maraschino cherries.", @@ -52687,7 +52687,7 @@ "sweet and sour mix" ], "title": "Pixie Stix recipe", - "url": "http://www.drinksmixer.com/drink5938.html" + "url": "https://www.drinksmixer.com/drink5938.html" }, { "directions": "Shake ingredients over ice, and strain into a sugar-rimmed margarita glass with shaved ice. Garnish with a cherry and a pineapple slice.", @@ -52697,7 +52697,7 @@ "pineapple juice" ], "title": "Pina Rita recipe", - "url": "http://www.drinksmixer.com/drink5939.html" + "url": "https://www.drinksmixer.com/drink5939.html" }, { "directions": "Combine all ingredients and serve over ice in a collins glass. Garnish with a lime wedge and a maraschino cherry.", @@ -52708,7 +52708,7 @@ "pineapple juice" ], "title": "Planter's Punch recipe", - "url": "http://www.drinksmixer.com/drink5940.html" + "url": "https://www.drinksmixer.com/drink5940.html" }, { "directions": "Pour tequila into a cocktail glass, fill with cream, and stir.", @@ -52717,7 +52717,7 @@ "heavy cream" ], "title": "Platina Blonde recipe", - "url": "http://www.drinksmixer.com/drink5941.html" + "url": "https://www.drinksmixer.com/drink5941.html" }, { "directions": "Salt the rim of a margarita glass and pour in freshly squeezed lime juice. \r", @@ -52731,7 +52731,7 @@ "lime juice" ], "title": "Platinum Grand Margarita recipe", - "url": "http://www.drinksmixer.com/drink5942.html" + "url": "https://www.drinksmixer.com/drink5942.html" }, { "directions": "Shake all ingredients (except pineapple stick) with ice and strain into a cocktail glass. Add the stick of pineapple and serve.", @@ -52742,7 +52742,7 @@ "pineapple" ], "title": "Plaza Cocktail recipe", - "url": "http://www.drinksmixer.com/drink5943.html" + "url": "https://www.drinksmixer.com/drink5943.html" }, { "directions": "Mix all ingredients over ice cubes in a shot glass. Shake, strain and serve.", @@ -52752,7 +52752,7 @@ "Kahlua\u00ae coffee liqueur" ], "title": "Plead The 5th recipe", - "url": "http://www.drinksmixer.com/drink5944.html" + "url": "https://www.drinksmixer.com/drink5944.html" }, { "directions": "1. Wash plums and pat dry, cut in half or smaller, and pit. Place in an aging container, pour sugar over, and stir. Add vodka and brandy, stirring to partly dissolve sugar. Cap container and place in a cool, dark place for 2 months, stir occasionally.\r", @@ -52763,7 +52763,7 @@ "brandy" ], "title": "Plum Liqueur recipe", - "url": "http://www.drinksmixer.com/drink5945.html" + "url": "https://www.drinksmixer.com/drink5945.html" }, { "directions": "Shake with ice and strain over ice in a cocktail glass.", @@ -52772,7 +52772,7 @@ "grapefruit juice" ], "title": "PMS Special recipe", - "url": "http://www.drinksmixer.com/drink5946.html" + "url": "https://www.drinksmixer.com/drink5946.html" }, { "directions": "Pour beer into a punch bowl. Add vodka, orange juice and plenty of ice cubes. Stir, and serve cold.", @@ -52782,7 +52782,7 @@ "orange juice" ], "title": "Pocima recipe", - "url": "http://www.drinksmixer.com/drink5947.html" + "url": "https://www.drinksmixer.com/drink5947.html" }, { "directions": "Pour poire au cognac pear liqueur into a highball glass. Add sprite, and ice if desired.", @@ -52791,7 +52791,7 @@ "Sprite\u00ae soda" ], "title": "Poire Fantastic recipe", - "url": "http://www.drinksmixer.com/drink5948.html" + "url": "https://www.drinksmixer.com/drink5948.html" }, { "directions": "Pour ingredients over ice in a shaker. Shake and strain into a shot glass.", @@ -52800,7 +52800,7 @@ "Absolut\u00ae vodka" ], "title": "Poison Apple recipe", - "url": "http://www.drinksmixer.com/drink5949.html" + "url": "https://www.drinksmixer.com/drink5949.html" }, { "directions": "Pour chilled ingredients into a shot glass, either layered in order, or mixed together.", @@ -52809,7 +52809,7 @@ "Kahlua\u00ae coffee liqueur" ], "title": "Poison Ivy recipe", - "url": "http://www.drinksmixer.com/drink5950.html" + "url": "https://www.drinksmixer.com/drink5950.html" }, { "directions": "Mix in a shot glass. Shoot.", @@ -52818,7 +52818,7 @@ "Bailey's\u00ae Irish cream" ], "title": "Poison Milk recipe", - "url": "http://www.drinksmixer.com/drink5951.html" + "url": "https://www.drinksmixer.com/drink5951.html" }, { "directions": "Mix vodka and parfait d'amour in a highball glass. Fill with bitter lemon, and serve.", @@ -52828,7 +52828,7 @@ "bitter lemon soda" ], "title": "Poison recipe", - "url": "http://www.drinksmixer.com/drink5952.html" + "url": "https://www.drinksmixer.com/drink5952.html" }, { "directions": "Mix absolut vodka and blue curacao in a glass with ice cubes. Fill with sprite, and serve.", @@ -52838,7 +52838,7 @@ "Sprite\u00ae soda" ], "title": "Swedish Polar Bear recipe", - "url": "http://www.drinksmixer.com/drink5953.html" + "url": "https://www.drinksmixer.com/drink5953.html" }, { "directions": "Pour vodka and pineapple juice into an ice-filled old-fashioned glass. Add 7-up, stir, and serve.", @@ -52848,7 +52848,7 @@ "7-Up\u00ae soda" ], "title": "Polish Professor recipe", - "url": "http://www.drinksmixer.com/drink5954.html" + "url": "https://www.drinksmixer.com/drink5954.html" }, { "directions": "Mix ingredients in a highball glass. Add one or two ice cubes and cherries. Serve with a thick, red and white striped straw.", @@ -52859,7 +52859,7 @@ "Sprite\u00ae soda" ], "title": "Polkagris recipe", - "url": "http://www.drinksmixer.com/drink5955.html" + "url": "https://www.drinksmixer.com/drink5955.html" }, { "directions": "Shake all ingredients with ice, strain into a cocktail glass, and serve.", @@ -52869,7 +52869,7 @@ "orange juice" ], "title": "Polo Cocktail recipe", - "url": "http://www.drinksmixer.com/drink5956.html" + "url": "https://www.drinksmixer.com/drink5956.html" }, { "directions": "Shake all ingredients with ice, strain into an old-fashioned glass over ice cubes, and serve.", @@ -52880,7 +52880,7 @@ "lemon juice" ], "title": "Polonaise recipe", - "url": "http://www.drinksmixer.com/drink5957.html" + "url": "https://www.drinksmixer.com/drink5957.html" }, { "directions": "Rub the rim of a cocktail glass with lime and dip into powdered sugar. Shake vodka, cherry brandy, and juice of lime with ice, strain into the sugar-rimmed glass, and serve.", @@ -52891,7 +52891,7 @@ "powdered sugar" ], "title": "Polynesian Cocktail recipe", - "url": "http://www.drinksmixer.com/drink5958.html" + "url": "https://www.drinksmixer.com/drink5958.html" }, { "directions": "1. Peel pineapples, chop and shread. Add water and let stand overnight.\r\n", @@ -52906,7 +52906,7 @@ "light rum" ], "title": "Ponche de Pina recipe", - "url": "http://www.drinksmixer.com/drink5959.html" + "url": "https://www.drinksmixer.com/drink5959.html" }, { "directions": "Pour beer into a beer mug. Top with coke, and serve.", @@ -52915,7 +52915,7 @@ "Coca-Cola\u00ae" ], "title": "Pond Water recipe", - "url": "http://www.drinksmixer.com/drink5960.html" + "url": "https://www.drinksmixer.com/drink5960.html" }, { "directions": "Shake with ice, and pour into a cocktail glass without ice.", @@ -52926,7 +52926,7 @@ "milk" ], "title": "Pooky and Chooky recipe", - "url": "http://www.drinksmixer.com/drink5961.html" + "url": "https://www.drinksmixer.com/drink5961.html" }, { "directions": "Mix vodka and triple sec in a hurricane glass. Add tang, to taste, and serve.", @@ -52936,7 +52936,7 @@ "Tang\u00ae powdered soft drink" ], "title": "Poontang recipe", - "url": "http://www.drinksmixer.com/drink5962.html" + "url": "https://www.drinksmixer.com/drink5962.html" }, { "directions": "Pour beer into a highball glass. Add orange juice, to taste, and serve.", @@ -52945,7 +52945,7 @@ "orange juice" ], "title": "Poor Man's Mommosa recipe", - "url": "http://www.drinksmixer.com/drink5963.html" + "url": "https://www.drinksmixer.com/drink5963.html" }, { "directions": "Serve over ice in a tall glass with a popped cherry.", @@ -52956,7 +52956,7 @@ "orange juice" ], "title": "Popped Cherry recipe", - "url": "http://www.drinksmixer.com/drink5964.html" + "url": "https://www.drinksmixer.com/drink5964.html" }, { "directions": "Pour tequila into a shot glass, and fill with 7-up. Slam on hard surface, and serve immediately.", @@ -52965,7 +52965,7 @@ "7-Up\u00ae soda" ], "title": "Popper recipe", - "url": "http://www.drinksmixer.com/drink5965.html" + "url": "https://www.drinksmixer.com/drink5965.html" }, { "directions": "Shake ingredients with ice, strain into a cocktail glass, and serve.", @@ -52974,7 +52974,7 @@ "white creme de cacao" ], "title": "Poppy Cocktail recipe", - "url": "http://www.drinksmixer.com/drink5966.html" + "url": "https://www.drinksmixer.com/drink5966.html" }, { "directions": "Pour over ice in a large cooler.", @@ -52985,7 +52985,7 @@ "Canadian Club\u00ae whisky" ], "title": "Porch Climber recipe", - "url": "http://www.drinksmixer.com/drink5967.html" + "url": "https://www.drinksmixer.com/drink5967.html" }, { "directions": "Combine all ingredients in a punch bowl.", @@ -52996,7 +52996,7 @@ "vodka" ], "title": "Porch Crawlers recipe", - "url": "http://www.drinksmixer.com/drink5968.html" + "url": "https://www.drinksmixer.com/drink5968.html" }, { "directions": "Let maple syrup collect at the bottom of a highball glass, and lightly mix the other ingredients, with a few ice cubes, over the top. ", @@ -53007,7 +53007,7 @@ "Kahlua\u00ae coffee liqueur" ], "title": "Porky Bone recipe", - "url": "http://www.drinksmixer.com/drink5970.html" + "url": "https://www.drinksmixer.com/drink5970.html" }, { "directions": "Pour carefully into a pousse cafe glass, so that the creme de menthe floats on top of the grenadine. Serve without mixing.", @@ -53016,7 +53016,7 @@ "green creme de menthe" ], "title": "Port And Starboard recipe", - "url": "http://www.drinksmixer.com/drink5971.html" + "url": "https://www.drinksmixer.com/drink5971.html" }, { "directions": "Stir ingredients with ice, strain into a cocktail glass, and serve.", @@ -53025,7 +53025,7 @@ "brandy" ], "title": "Port Wine Cocktail recipe", - "url": "http://www.drinksmixer.com/drink5972.html" + "url": "https://www.drinksmixer.com/drink5972.html" }, { "directions": "Shake all ingredients (except nutmeg) with ice and strain into a whiskey sour glass. Sprinkle nutmeg on top and serve.", @@ -53037,7 +53037,7 @@ "nutmeg" ], "title": "Port Wine Flip recipe", - "url": "http://www.drinksmixer.com/drink5973.html" + "url": "https://www.drinksmixer.com/drink5973.html" }, { "directions": "Dip the rim of an irish coffee cup into a puddle of triple sec, then a plate of sugar. Pour in the rum, kahlua, and one splash of triple sec. Light with a match to crystalize the sugar-rim. Add cinnamon and nutmeg, and pour in the coffee (and extinguish flame) until three-quarters full. Top with whipped cream, and serve.", @@ -53052,7 +53052,7 @@ "coffee" ], "title": "Portland Coffee recipe", - "url": "http://www.drinksmixer.com/drink5974.html" + "url": "https://www.drinksmixer.com/drink5974.html" }, { "directions": "Chill, shake, and pour over ice cubes in a shot glass.", @@ -53064,7 +53064,7 @@ "grenadine syrup" ], "title": "Postman recipe", - "url": "http://www.drinksmixer.com/drink5975.html" + "url": "https://www.drinksmixer.com/drink5975.html" }, { "directions": "Pour in order into a shot glass.", @@ -53074,7 +53074,7 @@ "white creme de menthe" ], "title": "Pouce Coupe Puddle recipe", - "url": "http://www.drinksmixer.com/drink5976.html" + "url": "https://www.drinksmixer.com/drink5976.html" }, { "directions": "Almost fill a shot glass with equal parts of orange juice and vodka. Add a splash of beer, and serve.", @@ -53084,7 +53084,7 @@ "beer" ], "title": "Power Drill recipe", - "url": "http://www.drinksmixer.com/drink5977.html" + "url": "https://www.drinksmixer.com/drink5977.html" }, { "directions": "Stir sugar and vodka together in a cordial glass. Add milk, and serve cold with a straw.", @@ -53094,7 +53094,7 @@ "milk" ], "title": "The Power Of Milk recipe", - "url": "http://www.drinksmixer.com/drink5978.html" + "url": "https://www.drinksmixer.com/drink5978.html" }, { "directions": "Pour vodka into a highball glass with three or four ice cubes. Add orange juice, and coca-cola to taste.", @@ -53104,7 +53104,7 @@ "Coca-Cola\u00ae" ], "title": "Power Screwdriver recipe", - "url": "http://www.drinksmixer.com/drink5979.html" + "url": "https://www.drinksmixer.com/drink5979.html" }, { "directions": "Open an egg without breaking the yolk and pour into a red wine glass. Pour gin on top, add salt and pepper to taste, and serve.", @@ -53115,7 +53115,7 @@ "pepper" ], "title": "Prairie Chicken recipe", - "url": "http://www.drinksmixer.com/drink5980.html" + "url": "https://www.drinksmixer.com/drink5980.html" }, { "directions": "Build ingredients in a shot glass, and serve.", @@ -53124,7 +53124,7 @@ "Tabasco\u00ae sauce" ], "title": "Prairie Dog recipe", - "url": "http://www.drinksmixer.com/drink5981.html" + "url": "https://www.drinksmixer.com/drink5981.html" }, { "directions": "Pour blended whiskey into a highball glass filled with ice cubes. Fill with equal parts of cola and ginger ale and stir well. Garnish with a slice of lemon and serve.", @@ -53134,7 +53134,7 @@ "ginger ale" ], "title": "Presbyterian recipe", - "url": "http://www.drinksmixer.com/drink5982.html" + "url": "https://www.drinksmixer.com/drink5982.html" }, { "directions": "Pour each ingredent into a large glass and add ice. Rim a margarita glass with lime and salt, fill with ice and garnish with a lime slice. Carefully pour contents of large glass into the salted margarita glass, leaving salt undisturbed.", @@ -53145,7 +53145,7 @@ "limes" ], "title": "Presidential Margarita recipe", - "url": "http://www.drinksmixer.com/drink5983.html" + "url": "https://www.drinksmixer.com/drink5983.html" }, { "directions": "Add all four ingredients to a small cup over ice.", @@ -53156,7 +53156,7 @@ "Phillips\u00ae peppermint schnapps" ], "title": "Presticles Spectacles Wallet and Watch recipe", - "url": "http://www.drinksmixer.com/drink5984.html" + "url": "https://www.drinksmixer.com/drink5984.html" }, { "directions": "Pour chilled cactus juice schnapps into a chilled shot glass. Float cuervo tequila on top, and serve.", @@ -53165,7 +53165,7 @@ "Jose Cuervo\u00ae Especial gold tequila" ], "title": "Prickly Pear recipe", - "url": "http://www.drinksmixer.com/drink5985.html" + "url": "https://www.drinksmixer.com/drink5985.html" }, { "directions": "Pour vodka, brandy and lime juice into a highball glass filled with ice cubes. Fill with sprite, garnish with an orange slice, and serve.", @@ -53176,7 +53176,7 @@ "Sprite\u00ae soda" ], "title": "Prince of Norway recipe", - "url": "http://www.drinksmixer.com/drink5986.html" + "url": "https://www.drinksmixer.com/drink5986.html" }, { "directions": "Shake all ingredients with ice, strain into a cocktail glass, and serve.", @@ -53187,7 +53187,7 @@ "lemon juice" ], "title": "Prince's Smile recipe", - "url": "http://www.drinksmixer.com/drink5987.html" + "url": "https://www.drinksmixer.com/drink5987.html" }, { "directions": "Combine ingredients in a shaker half-filled with ice cubes. Shake well, strain into a cocktail glass, and serve.", @@ -53197,7 +53197,7 @@ "lime juice" ], "title": "Princeton Cocktail recipe", - "url": "http://www.drinksmixer.com/drink5988.html" + "url": "https://www.drinksmixer.com/drink5988.html" }, { "directions": "Shake vigorously and strain into a shot glass. Shoot.", @@ -53207,7 +53207,7 @@ "clamato juice" ], "title": "Protein Smoothie recipe", - "url": "http://www.drinksmixer.com/drink5989.html" + "url": "https://www.drinksmixer.com/drink5989.html" }, { "directions": "Pour ingredients into a mixing glass, shake, and pour into a coffee mug. Add sugar and cream if desired, and serve.", @@ -53217,7 +53217,7 @@ "coffee" ], "title": "Psycho Joe recipe", - "url": "http://www.drinksmixer.com/drink5990.html" + "url": "https://www.drinksmixer.com/drink5990.html" }, { "directions": "Shake all ingredients with ice, and strain into a cocktail glass. Garnish with an orange slice, pineapple chunk and maraschino cherry.", @@ -53229,7 +53229,7 @@ "grenadine syrup" ], "title": "Psycho recipe", - "url": "http://www.drinksmixer.com/drink5991.html" + "url": "https://www.drinksmixer.com/drink5991.html" }, { "directions": "Combine ingredients in a shot glass, and serve.", @@ -53239,7 +53239,7 @@ "orange juice" ], "title": "Pucker Sucker recipe", - "url": "http://www.drinksmixer.com/drink5992.html" + "url": "https://www.drinksmixer.com/drink5992.html" }, { "directions": "Combine ingredients and shake well in a tall glass with ice.", @@ -53249,7 +53249,7 @@ "lime juice" ], "title": "Puckerita recipe", - "url": "http://www.drinksmixer.com/drink5993.html" + "url": "https://www.drinksmixer.com/drink5993.html" }, { "directions": "Pour whiskey generously over ice in a whiskey sour glass. Add unsweetened grapefruit juice, 7-up (optional), and serve.", @@ -53258,7 +53258,7 @@ "grapefruit juice" ], "title": "Pucker recipe", - "url": "http://www.drinksmixer.com/drink5994.html" + "url": "https://www.drinksmixer.com/drink5994.html" }, { "directions": "Shake all ingredients with ice and strain into an old-fashioned glass over ice cubes. Garnish with a slice of lime and serve.", @@ -53269,7 +53269,7 @@ "lime juice" ], "title": "Puerto Apple recipe", - "url": "http://www.drinksmixer.com/drink5995.html" + "url": "https://www.drinksmixer.com/drink5995.html" }, { "directions": "Serve straight up in a hurricane glass. Float the grenadine on top.", @@ -53283,7 +53283,7 @@ "grenadine syrup" ], "title": "Puerto Rican Punch recipe", - "url": "http://www.drinksmixer.com/drink5996.html" + "url": "https://www.drinksmixer.com/drink5996.html" }, { "directions": "Pour the rum, orange juice, and grapefruit juice into a highball glass almost fillled with ice cubes. Stir well. Drop the grenadine into the center of the drink, and serve.", @@ -53294,7 +53294,7 @@ "grenadine syrup" ], "title": "Puffer recipe", - "url": "http://www.drinksmixer.com/drink5997.html" + "url": "https://www.drinksmixer.com/drink5997.html" }, { "directions": "Crush the cherries in a whiskey sour glass. Mix with vodka, tropicana, crystal light and margarita mix. Serve.", @@ -53306,7 +53306,7 @@ "strawberry margarita mix" ], "title": "Pulp Vega recipe", - "url": "http://www.drinksmixer.com/drink5998.html" + "url": "https://www.drinksmixer.com/drink5998.html" }, { "directions": "Combine ingredients with ice in a blender and blend well. Serve in a house glass and garnish with a orange wedge and cherry.", @@ -53318,7 +53318,7 @@ "cream" ], "title": "Pumpkin Eater recipe", - "url": "http://www.drinksmixer.com/drink5999.html" + "url": "https://www.drinksmixer.com/drink5999.html" }, { "directions": "Pour bailey's and kahlua into a blender until, at most, one-third full. Add enough ice to fill the blender. Blend on a low speed, continually adding ice until a milkshake-consistancy. Mix in the vodka. Strain into wine glasses, and serve.", @@ -53328,7 +53328,7 @@ "vodka" ], "title": "Pure Ecstacy recipe", - "url": "http://www.drinksmixer.com/drink6000.html" + "url": "https://www.drinksmixer.com/drink6000.html" }, { "directions": "Shake ingredients with lots of ice cubes. Stir into a hurricane glass, and serve.", @@ -53339,7 +53339,7 @@ "cranberry juice" ], "title": "Pure Pleasure recipe", - "url": "http://www.drinksmixer.com/drink6001.html" + "url": "https://www.drinksmixer.com/drink6001.html" }, { "directions": "Mix ingredients together in a pitcher.", @@ -53351,7 +53351,7 @@ "lemon juice" ], "title": "Pure White Evil recipe", - "url": "http://www.drinksmixer.com/drink6002.html" + "url": "https://www.drinksmixer.com/drink6002.html" }, { "directions": "Pour chambord and vodka over ice in a highball glass. Fill with pineapple juice, and garnish with a purple grape and pineapple slice.", @@ -53361,7 +53361,7 @@ "pineapple juice" ], "title": "Purple Crayon recipe", - "url": "http://www.drinksmixer.com/drink6003.html" + "url": "https://www.drinksmixer.com/drink6003.html" }, { "directions": "Shake liquors with ice. Strain or pour over ice in a highball glass. Almost fill with cranberry juice, and add a splash of 7-up.", @@ -53373,7 +53373,7 @@ "7-Up\u00ae soda" ], "title": "Purple Devil recipe", - "url": "http://www.drinksmixer.com/drink6004.html" + "url": "https://www.drinksmixer.com/drink6004.html" }, { "directions": "Chill, shake, and strain into a large shot glass.", @@ -53387,7 +53387,7 @@ "cranberry juice" ], "title": "Purple Elastic Thunder Fuck recipe", - "url": "http://www.drinksmixer.com/drink6005.html" + "url": "https://www.drinksmixer.com/drink6005.html" }, { "directions": "Pour vodka and rum over ice in a highball glass. Top with grape soda and a splash of 7-up.", @@ -53398,7 +53398,7 @@ "7-Up\u00ae soda" ], "title": "Purple Fantasy recipe", - "url": "http://www.drinksmixer.com/drink6006.html" + "url": "https://www.drinksmixer.com/drink6006.html" }, { "directions": "Shake with ice and pour into a salt-rimmed cocktail or margarita glass. Garnish with a lime wedge.", @@ -53411,7 +53411,7 @@ "lime juice" ], "title": "Purple Gecko recipe", - "url": "http://www.drinksmixer.com/drink6007.html" + "url": "https://www.drinksmixer.com/drink6007.html" }, { "directions": "Stir with ice in a mixing glass and strain into shot glass.", @@ -53421,7 +53421,7 @@ "7-Up\u00ae soda" ], "title": "Purple Haze #2 recipe", - "url": "http://www.drinksmixer.com/drink6008.html" + "url": "https://www.drinksmixer.com/drink6008.html" }, { "directions": "Add liquors to an ice-filled margarita glass. Add sour mix, top with 7-up, and serve.", @@ -53435,7 +53435,7 @@ "7-Up\u00ae soda" ], "title": "Purple Haze #3 recipe", - "url": "http://www.drinksmixer.com/drink6009.html" + "url": "https://www.drinksmixer.com/drink6009.html" }, { "directions": "Mix vodka and orange juice togeher in an old-fashioned glass. Add blackberry schnapps, ice cubes, and serve.", @@ -53445,7 +53445,7 @@ "blackberry schnapps" ], "title": "Purple Haze #4 recipe", - "url": "http://www.drinksmixer.com/drink6010.html" + "url": "https://www.drinksmixer.com/drink6010.html" }, { "directions": "Pour both shots into a cordial glass. Add ice, stir, and serve.", @@ -53454,7 +53454,7 @@ "Maui\u00ae tropical schnapps" ], "title": "Purple Heart recipe", - "url": "http://www.drinksmixer.com/drink6011.html" + "url": "https://www.drinksmixer.com/drink6011.html" }, { "directions": "Mix liquors together with the lime juice in a highball glass. Add 7-up (to taste), and grenadine.", @@ -53468,7 +53468,7 @@ "grenadine syrup" ], "title": "Purple Helmeted Warrior recipe", - "url": "http://www.drinksmixer.com/drink6012.html" + "url": "https://www.drinksmixer.com/drink6012.html" }, { "directions": "Pour ingredients into a shot glass, and serve.", @@ -53478,7 +53478,7 @@ "Chambord\u00ae raspberry liqueur" ], "title": "Purple Hooter Shooter recipe", - "url": "http://www.drinksmixer.com/drink6013.html" + "url": "https://www.drinksmixer.com/drink6013.html" }, { "directions": "Combine all ingredients in a punch bowl.", @@ -53489,7 +53489,7 @@ "alcohol" ], "title": "Purple Jesus recipe", - "url": "http://www.drinksmixer.com/drink6014.html" + "url": "https://www.drinksmixer.com/drink6014.html" }, { "directions": "Pour all ingredients over ice in a shaker. Shake, and strain into a chilled shot glass.", @@ -53499,7 +53499,7 @@ "pineapple juice" ], "title": "Purple Lei recipe", - "url": "http://www.drinksmixer.com/drink6015.html" + "url": "https://www.drinksmixer.com/drink6015.html" }, { "directions": "Pour ingredients into an ice-filled shaker. Strain into a rocks/shot glass, and serve.", @@ -53510,7 +53510,7 @@ "7-Up\u00ae soda" ], "title": "Purple Lobster recipe", - "url": "http://www.drinksmixer.com/drink6016.html" + "url": "https://www.drinksmixer.com/drink6016.html" }, { "directions": "Combine ingredients with ice in a cocktail shaker. Shake well, for about 25 seconds, and strain into a highball glass. Garnish with chocolate flakes.", @@ -53525,7 +53525,7 @@ "grenadine syrup" ], "title": "Purple Love recipe", - "url": "http://www.drinksmixer.com/drink6017.html" + "url": "https://www.drinksmixer.com/drink6017.html" }, { "directions": "Serve on the rocks in a margarita glass. Add salt to taste.", @@ -53537,7 +53537,7 @@ "cranberry juice" ], "title": "Purple Margarita recipe", - "url": "http://www.drinksmixer.com/drink6018.html" + "url": "https://www.drinksmixer.com/drink6018.html" }, { "directions": "Shake all ingredients with ice, strain into a cocktail glass, and serve.", @@ -53547,7 +53547,7 @@ "grape juice" ], "title": "Purple Mask recipe", - "url": "http://www.drinksmixer.com/drink6019.html" + "url": "https://www.drinksmixer.com/drink6019.html" }, { "directions": "Pour ingredients into a mixing glass with ice. Shake and strain into highball glass. Shoot.", @@ -53557,7 +53557,7 @@ "Grand Marnier\u00ae orange liqueur" ], "title": "Purple Mexican recipe", - "url": "http://www.drinksmixer.com/drink6020.html" + "url": "https://www.drinksmixer.com/drink6020.html" }, { "directions": "Combine vodka, southern comfort, amaretto, razzmatazz and sour mix in a mixing glass half-filled with ice. Shake, and pour into a collins glass. Top with 7-up, and serve.", @@ -53570,7 +53570,7 @@ "7-Up\u00ae soda" ], "title": "Purple Motherfucker recipe", - "url": "http://www.drinksmixer.com/drink6021.html" + "url": "https://www.drinksmixer.com/drink6021.html" }, { "directions": "Pour ingredients into a mixing cup one-quarter filled ice. Stir, and pour into a shot glass.", @@ -53581,7 +53581,7 @@ "cranberry juice" ], "title": "Purple Motherfucker #2 recipe", - "url": "http://www.drinksmixer.com/drink6022.html" + "url": "https://www.drinksmixer.com/drink6022.html" }, { "directions": "Mix vodka, blue curacao, and blueberry schnapps in a mixing glass. Add cranberry juice until purple. Pour into shot glass, and serve.", @@ -53592,7 +53592,7 @@ "cranberry juice" ], "title": "Purple Motherfucker #3 recipe", - "url": "http://www.drinksmixer.com/drink6023.html" + "url": "https://www.drinksmixer.com/drink6023.html" }, { "directions": "Pour a couple of centimetres of blackcurrant squash (undiluted) into a pint glass. Add strongbow cider until two-thirds full, and fill completely with carling lager.", @@ -53602,7 +53602,7 @@ "blackcurrant squash" ], "title": "Purple Nasty recipe", - "url": "http://www.drinksmixer.com/drink6024.html" + "url": "https://www.drinksmixer.com/drink6024.html" }, { "directions": "Pour ingredients over ice and shake well. Strain into a shot glass, and serve.", @@ -53613,7 +53613,7 @@ "orange juice" ], "title": "Purple Nipple recipe", - "url": "http://www.drinksmixer.com/drink6025.html" + "url": "https://www.drinksmixer.com/drink6025.html" }, { "directions": "Shake with ice and pour into a salt-rimmed cocktail or margarita glass. Garnish with a lime wheel.", @@ -53625,7 +53625,7 @@ "sweet and sour mix" ], "title": "Purple Pancho recipe", - "url": "http://www.drinksmixer.com/drink6026.html" + "url": "https://www.drinksmixer.com/drink6026.html" }, { "directions": "Shake and strain into a shot glass.", @@ -53636,7 +53636,7 @@ "cranberry juice" ], "title": "Purple Passion recipe", - "url": "http://www.drinksmixer.com/drink6027.html" + "url": "https://www.drinksmixer.com/drink6027.html" }, { "directions": "Pour ingredients over ice and shake vigorously.", @@ -53651,7 +53651,7 @@ "grapefruit juice" ], "title": "Purple People Eater recipe", - "url": "http://www.drinksmixer.com/drink6028.html" + "url": "https://www.drinksmixer.com/drink6028.html" }, { "directions": "Pour vodka and pernod into a tall, ice-filled glass. Add blackcurrant cordial, top with lemonade, and serve.", @@ -53662,7 +53662,7 @@ "lemonade" ], "title": "Purple Peril recipe", - "url": "http://www.drinksmixer.com/drink6029.html" + "url": "https://www.drinksmixer.com/drink6029.html" }, { "directions": "Mix zinfandel with chambord and add 7-up. Serve on ice.", @@ -53672,7 +53672,7 @@ "7-Up\u00ae soda" ], "title": "Purple Plague recipe", - "url": "http://www.drinksmixer.com/drink6030.html" + "url": "https://www.drinksmixer.com/drink6030.html" }, { "directions": "Add vodka, rum, midori, curacao, schnapps, and sweet and sour to an ice-filled hurricane glass. Fill with pineapple juice, add grenadine until purple, and serve.", @@ -53688,7 +53688,7 @@ "pineapple juice" ], "title": "Purple Problem Solver recipe", - "url": "http://www.drinksmixer.com/drink6031.html" + "url": "https://www.drinksmixer.com/drink6031.html" }, { "directions": "Shake with ice and strain into chilled shot glass.", @@ -53698,7 +53698,7 @@ "cranberry juice" ], "title": "Purple Rain Shot recipe", - "url": "http://www.drinksmixer.com/drink6032.html" + "url": "https://www.drinksmixer.com/drink6032.html" }, { "directions": "Pour ingredients into a shaker with ice cubes. Shake until chilled, strain into a cocktail glass, and serve.", @@ -53709,7 +53709,7 @@ "grenadine syrup" ], "title": "Purple Russian Gonzo recipe", - "url": "http://www.drinksmixer.com/drink6033.html" + "url": "https://www.drinksmixer.com/drink6033.html" }, { "directions": "Pour all ingredients over ice in a mixing glass, and shake. Add more sloe gin or blue curacao if desired. Strain into an old-fashioned glass, and serve.", @@ -53719,7 +53719,7 @@ "Blue Curacao liqueur" ], "title": "Purple Shroud recipe", - "url": "http://www.drinksmixer.com/drink6034.html" + "url": "https://www.drinksmixer.com/drink6034.html" }, { "directions": "Pour absolut kurant into a large soft drink tumbler. Add grape soda.", @@ -53728,7 +53728,7 @@ "grape soda" ], "title": "Purple Stealth recipe", - "url": "http://www.drinksmixer.com/drink6035.html" + "url": "https://www.drinksmixer.com/drink6035.html" }, { "directions": "Fill two-thirds of a shot glass with blue curacao. Fill completely with grenadine, stir, and serve. Drink slowly.", @@ -53737,7 +53737,7 @@ "grenadine syrup" ], "title": "Purple VW recipe", - "url": "http://www.drinksmixer.com/drink6036.html" + "url": "https://www.drinksmixer.com/drink6036.html" }, { "directions": "Pour chambord into a shot glass. Warm sake on stove, pour into the shot glass, and serve.", @@ -53746,7 +53746,7 @@ "sake rice wine" ], "title": "Purple Wind recipe", - "url": "http://www.drinksmixer.com/drink6037.html" + "url": "https://www.drinksmixer.com/drink6037.html" }, { "directions": "Mix ingredients until chilled in a cocktail shaker with ice cubes. Strain into a cocktail glass, garnish with cherries, and serve.", @@ -53759,7 +53759,7 @@ "Sprite\u00ae soda" ], "title": "Purple Yummy recipe", - "url": "http://www.drinksmixer.com/drink6038.html" + "url": "https://www.drinksmixer.com/drink6038.html" }, { "directions": "Stir cranberry juice, amaretto, and sour mix in a mixing glass. Pour into a frosted highball glass over ice cubes. Fill with club soda, add twist of lime, and garnish with a wedge of lime.", @@ -53771,7 +53771,7 @@ "sweet and sour mix" ], "title": "Pussy Paws recipe", - "url": "http://www.drinksmixer.com/drink6039.html" + "url": "https://www.drinksmixer.com/drink6039.html" }, { "directions": "Mix and pour into a shot glass. Ignite, extinguish, and serve.", @@ -53781,7 +53781,7 @@ "Everclear\u00ae alcohol" ], "title": "Pyro recipe", - "url": "http://www.drinksmixer.com/drink6040.html" + "url": "https://www.drinksmixer.com/drink6040.html" }, { "directions": "Pour into an ice-filled wine goblet, and garnish with a lemon wedge.", @@ -53792,7 +53792,7 @@ "bitter lemon soda" ], "title": "Naked Waiter recipe", - "url": "http://www.drinksmixer.com/drink6041.html" + "url": "https://www.drinksmixer.com/drink6041.html" }, { "directions": "Shake liquors and lemon juice, and strain into an ice-filled wine goblet. Add lemonade, and serve.", @@ -53805,7 +53805,7 @@ "lemonade" ], "title": "Nathalie recipe", - "url": "http://www.drinksmixer.com/drink6042.html" + "url": "https://www.drinksmixer.com/drink6042.html" }, { "directions": "Heat ingredients (with lemon thinly sliced into rings, and a heaped teaspoon of sugar). Strain into a heat-proof goblet when hot.", @@ -53820,7 +53820,7 @@ "sugar" ], "title": "Negus recipe", - "url": "http://www.drinksmixer.com/drink6043.html" + "url": "https://www.drinksmixer.com/drink6043.html" }, { "directions": "Pour into an ice-filled wine goblet.", @@ -53833,7 +53833,7 @@ "lemonade" ], "title": "Nelson's Nightcap recipe", - "url": "http://www.drinksmixer.com/drink6044.html" + "url": "https://www.drinksmixer.com/drink6044.html" }, { "directions": "Shake and strain into an ice-filled collins glass, and add slice. Garnish with a slice of lemon, and serve with straws.", @@ -53846,7 +53846,7 @@ "Pepsi\u00ae Slice soda" ], "title": "Neon Tower recipe", - "url": "http://www.drinksmixer.com/drink6045.html" + "url": "https://www.drinksmixer.com/drink6045.html" }, { "directions": "Shake and strain into an old-fashioned glass three-quarters filled with broken ice. Garnish with a twist of orange.", @@ -53857,7 +53857,7 @@ "grenadine syrup" ], "title": "New York Cocktail recipe", - "url": "http://www.drinksmixer.com/drink6046.html" + "url": "https://www.drinksmixer.com/drink6046.html" }, { "directions": "Serve in an old-fashioned glass half-filled with broken ice.", @@ -53869,7 +53869,7 @@ "lemonade" ], "title": "Night Skies Over London recipe", - "url": "http://www.drinksmixer.com/drink6047.html" + "url": "https://www.drinksmixer.com/drink6047.html" }, { "directions": "Shake with a glassful of broken ice, pour unstrained into an old-fashioned glass, and serve.", @@ -53879,7 +53879,7 @@ "peach schnapps" ], "title": "Nightie Lifter recipe", - "url": "http://www.drinksmixer.com/drink6048.html" + "url": "https://www.drinksmixer.com/drink6048.html" }, { "directions": "Shake and strain into an old-fashioned glass filled with broken ice. Garnish with a seedless grape, and serve.", @@ -53890,7 +53890,7 @@ "Yellow Chartreuse\u00ae" ], "title": "Noblesse recipe", - "url": "http://www.drinksmixer.com/drink6049.html" + "url": "https://www.drinksmixer.com/drink6049.html" }, { "directions": "Shake pisang, gin, and chartreuse with half a glassful of broken ice, and pour unstrained into an old-fashioned glass. Add the bitter lemon, and serve.", @@ -53901,7 +53901,7 @@ "bitter lemon soda" ], "title": "Novocaine recipe", - "url": "http://www.drinksmixer.com/drink6050.html" + "url": "https://www.drinksmixer.com/drink6050.html" }, { "directions": "Add to a wine goblet half-filled with crushed ice, and serve", @@ -53912,7 +53912,7 @@ "Campari\u00ae bitters" ], "title": "Night and Day recipe", - "url": "http://www.drinksmixer.com/drink6051.html" + "url": "https://www.drinksmixer.com/drink6051.html" }, { "directions": "Pour into a collins glass with ice. Add a spiral of lemon, and serve.", @@ -53924,7 +53924,7 @@ "soda water" ], "title": "Normandy Cooler recipe", - "url": "http://www.drinksmixer.com/drink6052.html" + "url": "https://www.drinksmixer.com/drink6052.html" }, { "directions": "Shake well and strain into a wine goblet filled with broken ice. Sprinkle with grated nutmeg, and serve.", @@ -53935,7 +53935,7 @@ "caster sugar" ], "title": "Norman Porto Flip recipe", - "url": "http://www.drinksmixer.com/drink6053.html" + "url": "https://www.drinksmixer.com/drink6053.html" }, { "directions": "Add all ingredients (except soda) to a collins glass. Dissolve sugar, filled with crushed ice, and add soda. Garnish with a cherry, slices of lemon and orange, and serve with straws.", @@ -53947,7 +53947,7 @@ "soda water" ], "title": "Northside Special recipe", - "url": "http://www.drinksmixer.com/drink6054.html" + "url": "https://www.drinksmixer.com/drink6054.html" }, { "directions": "Blend with half a glassful of crushed ice until smooth. Serve in a collins glass, and garnish with a banana slice and cherry.", @@ -53959,7 +53959,7 @@ "banana" ], "title": "Nuts Banane recipe", - "url": "http://www.drinksmixer.com/drink6055.html" + "url": "https://www.drinksmixer.com/drink6055.html" }, { "directions": "Blend briefly with half a glassful of crushed ice in a wine goblet. Sprinkle with chopped hazelnuts, and serve.", @@ -53969,7 +53969,7 @@ "vanilla ice cream" ], "title": "Nut Crusher recipe", - "url": "http://www.drinksmixer.com/drink6056.html" + "url": "https://www.drinksmixer.com/drink6056.html" }, { "directions": "Shake and strain into an ice-filled double-cocktail glass filled with broken ice. Garnish with an orange twist, and serve.", @@ -53981,7 +53981,7 @@ "grenadine syrup" ], "title": "O.D. recipe", - "url": "http://www.drinksmixer.com/drink6057.html" + "url": "https://www.drinksmixer.com/drink6057.html" }, { "directions": "Shake and strain into a double-cocktail glass filled with broken ice. Garnish with a twist of orange, and serve.", @@ -53993,7 +53993,7 @@ "grenadine syrup" ], "title": "One Exciting Night recipe", - "url": "http://www.drinksmixer.com/drink6058.html" + "url": "https://www.drinksmixer.com/drink6058.html" }, { "directions": "Shake and strain into an old-fashioned glass three-quarters filled with broken ice. Garnish with in-season fruit, and serve with a short straw.", @@ -54004,7 +54004,7 @@ "grenadine syrup" ], "title": "Operation Recoverer recipe", - "url": "http://www.drinksmixer.com/drink6059.html" + "url": "https://www.drinksmixer.com/drink6059.html" }, { "directions": "Pour ingredients into an ice-filled old-fashioned glass. Add half a slice of lime.", @@ -54014,7 +54014,7 @@ "lime juice" ], "title": "Operator recipe", - "url": "http://www.drinksmixer.com/drink6060.html" + "url": "https://www.drinksmixer.com/drink6060.html" }, { "directions": "Shake and strain into an old-fashioned glass half-filled with broken ice.", @@ -54024,7 +54024,7 @@ "lemon juice" ], "title": "Orange Comfort recipe", - "url": "http://www.drinksmixer.com/drink6061.html" + "url": "https://www.drinksmixer.com/drink6061.html" }, { "directions": "Pour into an old-fashioned glass filled with broken ice. Add an orange slice, and serve.", @@ -54036,7 +54036,7 @@ "lemonade" ], "title": "Orange Tree recipe", - "url": "http://www.drinksmixer.com/drink6062.html" + "url": "https://www.drinksmixer.com/drink6062.html" }, { "directions": "Shake with a glassful of broken ice and pour unstrained into an old-fashioned glass.", @@ -54049,7 +54049,7 @@ "grenadine syrup" ], "title": "Ozone #2 recipe", - "url": "http://www.drinksmixer.com/drink6063.html" + "url": "https://www.drinksmixer.com/drink6063.html" }, { "directions": "Shake and strain over one large ice cube in a wine glass.", @@ -54061,7 +54061,7 @@ "lime juice" ], "title": "Palmera recipe", - "url": "http://www.drinksmixer.com/drink6064.html" + "url": "https://www.drinksmixer.com/drink6064.html" }, { "directions": "Shake with a glassful of broken ice and pour unstrained into an old-fashioned glass. Garnish with a small slice of grapefruit and a cherry.", @@ -54072,7 +54072,7 @@ "pineapple syrup" ], "title": "Pamplemousse recipe", - "url": "http://www.drinksmixer.com/drink6065.html" + "url": "https://www.drinksmixer.com/drink6065.html" }, { "directions": "Shake and strain into a champagne saucer. Garnish with the blossom of a white orchid and a cherry on a stick.", @@ -54082,7 +54082,7 @@ "orange juice" ], "title": "Paradise recipe", - "url": "http://www.drinksmixer.com/drink6066.html" + "url": "https://www.drinksmixer.com/drink6066.html" }, { "directions": "Stir and strain into a wine glass filled with broken ice. Garnish with red, green and yellow cherries on a stick.", @@ -54093,7 +54093,7 @@ "anisette" ], "title": "Parrot Cocktail recipe", - "url": "http://www.drinksmixer.com/drink6067.html" + "url": "https://www.drinksmixer.com/drink6067.html" }, { "directions": "Shake with a glassful of broken ice and pour unstrained into an old-fashioned glass.", @@ -54104,7 +54104,7 @@ "pineapple syrup" ], "title": "Passion Punch recipe", - "url": "http://www.drinksmixer.com/drink6068.html" + "url": "https://www.drinksmixer.com/drink6068.html" }, { "directions": "Pour into a shot glass.", @@ -54113,7 +54113,7 @@ "apple schnapps" ], "title": "Peach Picnic recipe", - "url": "http://www.drinksmixer.com/drink6069.html" + "url": "https://www.drinksmixer.com/drink6069.html" }, { "directions": "Pour chartreuse into a frosted champagne flute. Fill half-way with crushed ice, and slightly damp down with the flat end of a barspoon. Add semi-frozen grenadine to form a layer, and fill with lemon sherbet. Sprinkle strega on top, garnish with a mint leaf and cherry, and serve with a straw.", @@ -54124,7 +54124,7 @@ "lemon sherbet" ], "title": "Peacock's Tail recipe", - "url": "http://www.drinksmixer.com/drink6070.html" + "url": "https://www.drinksmixer.com/drink6070.html" }, { "directions": "Shake and strain into an old-fashioned glass three-quarters filled with broken ice. Garnish with red pepper.", @@ -54136,7 +54136,7 @@ "cranberry juice" ], "title": "Pepper Eater recipe", - "url": "http://www.drinksmixer.com/drink6071.html" + "url": "https://www.drinksmixer.com/drink6071.html" }, { "directions": "Blend briefly with a glassful of crushed ice in a double-cocktail glass. Garnish with a slice of peach.", @@ -54147,7 +54147,7 @@ "egg" ], "title": "Perfect Lady recipe", - "url": "http://www.drinksmixer.com/drink6072.html" + "url": "https://www.drinksmixer.com/drink6072.html" }, { "directions": "Shake and strain into a double-cocktail glass filled with crushed ice.", @@ -54159,7 +54159,7 @@ "Bailey's\u00ae Irish cream" ], "title": "Pineapple Hornblower recipe", - "url": "http://www.drinksmixer.com/drink6073.html" + "url": "https://www.drinksmixer.com/drink6073.html" }, { "directions": "Rim a wine glass with orange juice and caster sugar, and fill with broken ice. Pour in the ingredients, garnish with a slice of orange, and serve.", @@ -54169,7 +54169,7 @@ "triple sec" ], "title": "Pineau-cchio recipe", - "url": "http://www.drinksmixer.com/drink6074.html" + "url": "https://www.drinksmixer.com/drink6074.html" }, { "directions": "Shake and strain into a cocktail glass filled with crushed ice. Garnish with fruit, and serve", @@ -54182,7 +54182,7 @@ "grenadine syrup" ], "title": "Pink Almond recipe", - "url": "http://www.drinksmixer.com/drink6075.html" + "url": "https://www.drinksmixer.com/drink6075.html" }, { "directions": "Shake and strain into a cocktail glass filled with broken ice. Garnish with a maraschino cherry.", @@ -54193,7 +54193,7 @@ "grenadine syrup" ], "title": "Pinko recipe", - "url": "http://www.drinksmixer.com/drink6076.html" + "url": "https://www.drinksmixer.com/drink6076.html" }, { "directions": "Pour white rum, two heaped tablespoons of pineapple chunks, and sugar into an old-fashioned glass. Blend until smooth, add three-quarters of a glassful of crushed ice and blend again briefly.", @@ -54203,7 +54203,7 @@ "caster sugar" ], "title": "Pino Frio recipe", - "url": "http://www.drinksmixer.com/drink6077.html" + "url": "https://www.drinksmixer.com/drink6077.html" }, { "directions": "Pour into an old-fashioned glass half-filled with broken ice, and serve.", @@ -54214,7 +54214,7 @@ "lemonade" ], "title": "Pit Stop recipe", - "url": "http://www.drinksmixer.com/drink6078.html" + "url": "https://www.drinksmixer.com/drink6078.html" }, { "directions": "Pour ingredients into a rocks glass three-quarters filled with broken ice.", @@ -54224,7 +54224,7 @@ "Yellow Chartreuse\u00ae" ], "title": "Plank Walker recipe", - "url": "http://www.drinksmixer.com/drink6079.html" + "url": "https://www.drinksmixer.com/drink6079.html" }, { "directions": "Shake and strain into an old-fashioned glass three-quarters filled with broken ice.", @@ -54236,7 +54236,7 @@ "caster sugar" ], "title": "Pomegranate Polecat recipe", - "url": "http://www.drinksmixer.com/drink6080.html" + "url": "https://www.drinksmixer.com/drink6080.html" }, { "directions": "Shake with a glassful of broken ice and pour unstrained into an old-fashioned glass. Garnish with a slice of orange and serve with a short straw.", @@ -54247,7 +54247,7 @@ "grapefruit juice" ], "title": "Pompanski recipe", - "url": "http://www.drinksmixer.com/drink6081.html" + "url": "https://www.drinksmixer.com/drink6081.html" }, { "directions": "Shake russian and cherry vodka and strain into a glass half-filled with broken ice. Add tonic water, garnish with a maraschino cherry, and serve.", @@ -54257,7 +54257,7 @@ "tonic water" ], "title": "Pork Chop on Toast recipe", - "url": "http://www.drinksmixer.com/drink6082.html" + "url": "https://www.drinksmixer.com/drink6082.html" }, { "directions": "Stir and strain into a brandy snifter.", @@ -54267,7 +54267,7 @@ "blackberry brandy" ], "title": "Port Side recipe", - "url": "http://www.drinksmixer.com/drink6083.html" + "url": "https://www.drinksmixer.com/drink6083.html" }, { "directions": "Shake and strain into an ice-filled rocks glass. Garnish with a slice of lemon and a cherry.", @@ -54277,7 +54277,7 @@ "blueberry syrup" ], "title": "Porterhouse Blue recipe", - "url": "http://www.drinksmixer.com/drink6084.html" + "url": "https://www.drinksmixer.com/drink6084.html" }, { "directions": "Stir and strain into an old-fashioned glass filled with crushed ice. Garnish with an orange slice and a cherry.", @@ -54288,7 +54288,7 @@ "grenadine syrup" ], "title": "Presidente recipe", - "url": "http://www.drinksmixer.com/drink6085.html" + "url": "https://www.drinksmixer.com/drink6085.html" }, { "directions": "Stir and strain into a frosted cocktail glass, add an orange twist, and serve.", @@ -54298,7 +54298,7 @@ "grenadine syrup" ], "title": "Presidente Seco recipe", - "url": "http://www.drinksmixer.com/drink6086.html" + "url": "https://www.drinksmixer.com/drink6086.html" }, { "directions": "Shake and strain into a cocktail glass. Squeeze in a twist of lemon and discard.", @@ -54309,7 +54309,7 @@ "orange juice" ], "title": "Prohibition Cocktail recipe", - "url": "http://www.drinksmixer.com/drink6087.html" + "url": "https://www.drinksmixer.com/drink6087.html" }, { "directions": "Shake and strain into an old-fashioned glass three-quarters filled with broken ice. Garnish with a maraschino cherry.", @@ -54320,7 +54320,7 @@ "grenadine syrup" ], "title": "Purple Cactus recipe", - "url": "http://www.drinksmixer.com/drink6088.html" + "url": "https://www.drinksmixer.com/drink6088.html" }, { "directions": "Dissolve sugar and shake briefly with a glassful of crushed ice in a wine goblet. Serve with straws and garnish with twists of orange and lime.", @@ -54332,7 +54332,7 @@ "caster sugar" ], "title": "Olaffson's Punch recipe", - "url": "http://www.drinksmixer.com/drink6089.html" + "url": "https://www.drinksmixer.com/drink6089.html" }, { "directions": "Shake briefly with a glassful of crushed ice. Garnish with a slice of lemon and a cherry, and serve with straws.", @@ -54347,7 +54347,7 @@ "almond syrup" ], "title": "Old Moorhen's Shredded Sporran recipe", - "url": "http://www.drinksmixer.com/drink6090.html" + "url": "https://www.drinksmixer.com/drink6090.html" }, { "directions": "Shake and strain into an ice-filled highball glass. Garnish with fruit and serve with straws.", @@ -54359,7 +54359,7 @@ "lime juice" ], "title": "Orchard Orange recipe", - "url": "http://www.drinksmixer.com/drink6091.html" + "url": "https://www.drinksmixer.com/drink6091.html" }, { "directions": "Shake and strain into an ice-filled highball glass. Garnish with fruit and serve with straws.", @@ -54374,7 +54374,7 @@ "sugar syrup" ], "title": "Oyster Bay recipe", - "url": "http://www.drinksmixer.com/drink6092.html" + "url": "https://www.drinksmixer.com/drink6092.html" }, { "directions": "Pour into a pilsner three-quarters filled with broken ice.", @@ -54384,7 +54384,7 @@ "lemonade" ], "title": "Paris Opera recipe", - "url": "http://www.drinksmixer.com/drink6093.html" + "url": "https://www.drinksmixer.com/drink6093.html" }, { "directions": "Pour into an ice-filled highball glass.", @@ -54395,7 +54395,7 @@ "7-Up\u00ae soda" ], "title": "Peach Up recipe", - "url": "http://www.drinksmixer.com/drink6094.html" + "url": "https://www.drinksmixer.com/drink6094.html" }, { "directions": "Pour schnapps over beer in a beer pilsner.", @@ -54404,7 +54404,7 @@ "beer" ], "title": "Peppermint Depth Charge recipe", - "url": "http://www.drinksmixer.com/drink6095.html" + "url": "https://www.drinksmixer.com/drink6095.html" }, { "directions": "Blend in a blender until smooth. Add a glassful of crushed ice and blend again briefly. Pour into a collins glass and garnish with a wedge-like slice of peach, speared with a cherry. Serve with straws.", @@ -54419,7 +54419,7 @@ "Pecher Mignon\u00ae peach liqueur" ], "title": "Picker's Peach recipe", - "url": "http://www.drinksmixer.com/drink6096.html" + "url": "https://www.drinksmixer.com/drink6096.html" }, { "directions": "Pour into an ice-filled wine goblet. Garnish with a slice of lemon and a cherry.", @@ -54429,7 +54429,7 @@ "lemonade" ], "title": "Pimm's Turbo recipe", - "url": "http://www.drinksmixer.com/drink6097.html" + "url": "https://www.drinksmixer.com/drink6097.html" }, { "directions": "Blend with a glassful of crushed ice in a blender until smooth. Pour into a goblet, and garnish with a pineapple chunk and a slice of lemon.", @@ -54439,7 +54439,7 @@ "pineapple" ], "title": "Pina Vina recipe", - "url": "http://www.drinksmixer.com/drink6098.html" + "url": "https://www.drinksmixer.com/drink6098.html" }, { "directions": "Shake and strain all ingredients (except soda) into an ice-filled pina colada glass. Add the soda. Garnish with fruit and a mint sprig. Sprinkle with nutmeg, and serve with straws.", @@ -54455,7 +54455,7 @@ "soda water" ], "title": "Planter's Punch (Americanised) recipe", - "url": "http://www.drinksmixer.com/drink6099.html" + "url": "https://www.drinksmixer.com/drink6099.html" }, { "directions": "Funnel the punt e mes, campari, vermouth and lemon juice into one small cola bottle (185-200ml), roughly half-filled with cola. Briefly invert the bottle to mix the ingredients. Place in the center of a large glass (tankard, stein or british pint), and fill glass with broken ice. Add a straw to the bottle, and serve.", @@ -54467,7 +54467,7 @@ "cola" ], "title": "Poca-Hola recipe", - "url": "http://www.drinksmixer.com/drink6100.html" + "url": "https://www.drinksmixer.com/drink6100.html" }, { "directions": "Funnel the cointreau, armagnac and lemon juice into one small cola bottle (185-200ml), roughly half-filled with cola. Briefly invert the bottle to mix the ingredients. Place in the center of a large glass (tankard, stein or british pint), and fill glass with broken ice. Add a straw to the bottle, and serve.", @@ -54478,7 +54478,7 @@ "cola" ], "title": "Polar-Roller recipe", - "url": "http://www.drinksmixer.com/drink6101.html" + "url": "https://www.drinksmixer.com/drink6101.html" }, { "directions": "Pour into an ice-filled highball glass. Garnish with fruit and serve with straws.", @@ -54490,7 +54490,7 @@ "lemonade" ], "title": "Prawn Salad recipe", - "url": "http://www.drinksmixer.com/drink6102.html" + "url": "https://www.drinksmixer.com/drink6102.html" }, { "directions": "Shake and strain into an ice-filled highball glass. Add the soda, and serve.", @@ -54501,7 +54501,7 @@ "whipping cream" ], "title": "One Ball Left recipe", - "url": "http://www.drinksmixer.com/drink6103.html" + "url": "https://www.drinksmixer.com/drink6103.html" }, { "directions": "Blend briefly with half a glassful of crushed ice in a pina colada glass. Add the 7-up, and serve.", @@ -54513,7 +54513,7 @@ "7-Up\u00ae soda" ], "title": "Peanut Coffee Frenzy recipe", - "url": "http://www.drinksmixer.com/drink6104.html" + "url": "https://www.drinksmixer.com/drink6104.html" }, { "directions": "Blend briefly in a wine goblet half-filled with crushed ice. Garnish with a slice of lime and a cherry. Serve with short straws.", @@ -54522,7 +54522,7 @@ "pistachio ice cream" ], "title": "Pistachio Rumba recipe", - "url": "http://www.drinksmixer.com/drink6105.html" + "url": "https://www.drinksmixer.com/drink6105.html" }, { "directions": "Shake and strain into a goblet filled with crushed ice. Sprinkle with grated chocolate, add short straws, and serve.", @@ -54534,7 +54534,7 @@ "double cream" ], "title": "Plantation Coffee recipe", - "url": "http://www.drinksmixer.com/drink6106.html" + "url": "https://www.drinksmixer.com/drink6106.html" }, { "directions": "Dissolve sugar, shake and strain into a frosted champagne saucer. Garnish with a slice of orange, and serve.", @@ -54545,7 +54545,7 @@ "caster sugar" ], "title": "Orange Daiquiri recipe", - "url": "http://www.drinksmixer.com/drink6107.html" + "url": "https://www.drinksmixer.com/drink6107.html" }, { "directions": "Pour ingredients into a wine glass half-filled with crushed ice. Garnish with a half-slice of lemon and a maraschino cherry.", @@ -54556,7 +54556,7 @@ "lemon juice" ], "title": "Palais Royal recipe", - "url": "http://www.drinksmixer.com/drink6108.html" + "url": "https://www.drinksmixer.com/drink6108.html" }, { "directions": "Pour into a champagne saucer. Garnish with a cherry and a lemon slice.", @@ -54568,7 +54568,7 @@ "orange juice" ], "title": "Passat recipe", - "url": "http://www.drinksmixer.com/drink6109.html" + "url": "https://www.drinksmixer.com/drink6109.html" }, { "directions": "Pour into a wine glass three-quarters filled with broken ice. Garnish with a cherry and orange slice, and serve.", @@ -54578,7 +54578,7 @@ "mandarin juice" ], "title": "Pernod Fizz recipe", - "url": "http://www.drinksmixer.com/drink6110.html" + "url": "https://www.drinksmixer.com/drink6110.html" }, { "directions": "Rim a wine glass with strawberry liqueur and caster sugar. Blend all ingredients (except champagne) briefly with three-quarters of a glassful of crushed ice. Pour into the glass and add champagne. Garnish with a strawberry-half, and serve with short straws.", @@ -54590,7 +54590,7 @@ "caster sugar" ], "title": "Pink Planet recipe", - "url": "http://www.drinksmixer.com/drink6111.html" + "url": "https://www.drinksmixer.com/drink6111.html" }, { "directions": "Dissolve sugar in juices, and add to a champagne saucer with champagne and syrup.", @@ -54602,7 +54602,7 @@ "caster sugar" ], "title": "Pompey Royale recipe", - "url": "http://www.drinksmixer.com/drink6112.html" + "url": "https://www.drinksmixer.com/drink6112.html" }, { "directions": "Pour into a champagne flute. Garnish with a lemon twist.", @@ -54613,7 +54613,7 @@ "lemon juice" ], "title": "Pyrenees Greeting recipe", - "url": "http://www.drinksmixer.com/drink6113.html" + "url": "https://www.drinksmixer.com/drink6113.html" }, { "directions": "Pour into a collins glass filled with broken ice and add a spiral of lemon. Garnish with an orange wedge and cherry. Serve with straws.", @@ -54625,7 +54625,7 @@ "7-Up\u00ae soda" ], "title": "Polar Bear Cooler recipe", - "url": "http://www.drinksmixer.com/drink6114.html" + "url": "https://www.drinksmixer.com/drink6114.html" }, { "directions": "Shake and strain into a champagne flute. Garnish with a slice of orange.", @@ -54636,7 +54636,7 @@ "sugar syrup" ], "title": "Parisian Blonde recipe", - "url": "http://www.drinksmixer.com/drink6115.html" + "url": "https://www.drinksmixer.com/drink6115.html" }, { "directions": "Shake and strain into a frosted cocktail glass. Garnish with a slice of banana and a maraschino cherry.", @@ -54647,7 +54647,7 @@ "double cream" ], "title": "Pink Fingers recipe", - "url": "http://www.drinksmixer.com/drink6116.html" + "url": "https://www.drinksmixer.com/drink6116.html" }, { "directions": "Shake and strain into a champagne saucer.", @@ -54658,7 +54658,7 @@ "double cream" ], "title": "Pink Forest recipe", - "url": "http://www.drinksmixer.com/drink6117.html" + "url": "https://www.drinksmixer.com/drink6117.html" }, { "directions": "Shake and strain into a brandy snifter, and serve.", @@ -54668,7 +54668,7 @@ "double cream" ], "title": "Platinum Blonde recipe", - "url": "http://www.drinksmixer.com/drink6118.html" + "url": "https://www.drinksmixer.com/drink6118.html" }, { "directions": "Shake and strain into an old-fashioned glass three-quarters filled with broken ice.", @@ -54678,7 +54678,7 @@ "Frangelico\u00ae hazelnut liqueur" ], "title": "Plenty O'Toole recipe", - "url": "http://www.drinksmixer.com/drink6119.html" + "url": "https://www.drinksmixer.com/drink6119.html" }, { "directions": "Shake and strain into a cocktail saucer. Sprinkle with almond flakes, and serve.", @@ -54689,7 +54689,7 @@ "double cream" ], "title": "Pompeii recipe", - "url": "http://www.drinksmixer.com/drink6120.html" + "url": "https://www.drinksmixer.com/drink6120.html" }, { "directions": "Add madeira, cognac, sugar and lemons (washed and halved) to a large jug. Mix until sugar dissolves, and chill for 2 - 3 hours. Add the champagne, and serve in wine glasses.", @@ -54701,7 +54701,7 @@ "lemons" ], "title": "Parisiana Punch recipe", - "url": "http://www.drinksmixer.com/drink6121.html" + "url": "https://www.drinksmixer.com/drink6121.html" }, { "directions": "Blend briefly with half a glassful of crushed ice. Garnish with a spiral of orange peel and a slice of banana.", @@ -54713,7 +54713,7 @@ "banana" ], "title": "Passion Cooler recipe", - "url": "http://www.drinksmixer.com/drink6122.html" + "url": "https://www.drinksmixer.com/drink6122.html" }, { "directions": "Pour ingredients into an ice-filled wine glass. Garnish with fruit, and serve.", @@ -54723,7 +54723,7 @@ "dry ginger ale" ], "title": "Peach Magnifico recipe", - "url": "http://www.drinksmixer.com/drink6123.html" + "url": "https://www.drinksmixer.com/drink6123.html" }, { "directions": "Blend with half a glassful of crushed ice until smooth. Pour into a collins glass garnished with a slice of pineapple. Serve with straws.", @@ -54732,7 +54732,7 @@ "coconut ice cream" ], "title": "Pineapple Island recipe", - "url": "http://www.drinksmixer.com/drink6124.html" + "url": "https://www.drinksmixer.com/drink6124.html" }, { "directions": "Pour into an ice-filled highball glass. Garnish with a slice of lime.", @@ -54742,7 +54742,7 @@ "grenadine syrup" ], "title": "Pomola recipe", - "url": "http://www.drinksmixer.com/drink6125.html" + "url": "https://www.drinksmixer.com/drink6125.html" }, { "directions": "Pour ingredients into a wine glass filled with broken ice. Mix, garnish with fruit, and serve with straws.", @@ -54753,7 +54753,7 @@ "sugar syrup" ], "title": "Port Cobbler recipe", - "url": "http://www.drinksmixer.com/drink6126.html" + "url": "https://www.drinksmixer.com/drink6126.html" }, { "directions": "Pour drambuie and coffee into an irish coffee cup and sweeten to taste. Gently float the cream on top, and sprinkle with chocolate.", @@ -54764,7 +54764,7 @@ "sugar" ], "title": "Prince Charles Coffee recipe", - "url": "http://www.drinksmixer.com/drink6127.html" + "url": "https://www.drinksmixer.com/drink6127.html" }, { "directions": "Pour rum and coffee into an irish coffee cup, and sweeten to taste. Gently float the cream, and top with kahlua.", @@ -54776,7 +54776,7 @@ "sugar" ], "title": "Puerto Rican Coffee recipe", - "url": "http://www.drinksmixer.com/drink6128.html" + "url": "https://www.drinksmixer.com/drink6128.html" }, { "directions": "Stir ingredients and strain into a frosted cocktail glass. Garnish with a twist of lemon, and serve.", @@ -54786,7 +54786,7 @@ "rosso vermouth" ], "title": "Perfect Martini recipe", - "url": "http://www.drinksmixer.com/drink6129.html" + "url": "https://www.drinksmixer.com/drink6129.html" }, { "directions": "Pour ingredients into an ice-filled highball glass, and serve.", @@ -54796,7 +54796,7 @@ "7-Up\u00ae soda" ], "title": "C60 recipe", - "url": "http://www.drinksmixer.com/drink6130.html" + "url": "https://www.drinksmixer.com/drink6130.html" }, { "directions": "Pour rum and juice into a highball glass filled with broken ice. Sprinkle the campari and galliano on top. Serve unstirred, with straws, and garnish with a cherry and orange slice.", @@ -54807,7 +54807,7 @@ "mandarin juice" ], "title": "Camp Lawless recipe", - "url": "http://www.drinksmixer.com/drink6131.html" + "url": "https://www.drinksmixer.com/drink6131.html" }, { "directions": "Pour into an ice-filled highball glass. Garnish with a slice of lime.", @@ -54817,7 +54817,7 @@ "cola" ], "title": "Campola recipe", - "url": "http://www.drinksmixer.com/drink6132.html" + "url": "https://www.drinksmixer.com/drink6132.html" }, { "directions": "Shake briefly with a glassful of crushed ice and pour into a wine glass. Add lemonade, and garnish with a slice of orange.", @@ -54828,7 +54828,7 @@ "lemonade" ], "title": "Carla recipe", - "url": "http://www.drinksmixer.com/drink6133.html" + "url": "https://www.drinksmixer.com/drink6133.html" }, { "directions": "Blend briefly with a glassful of crushed ice in a collins glass. Add grenadine, garnish with a slice of pineapple, and serve unstirred.", @@ -54840,7 +54840,7 @@ "grenadine syrup" ], "title": "Casablanca recipe", - "url": "http://www.drinksmixer.com/drink6134.html" + "url": "https://www.drinksmixer.com/drink6134.html" }, { "directions": "Pour ingredients into an ice-filled collins glass.", @@ -54852,7 +54852,7 @@ "cola" ], "title": "Cherry Tuesday recipe", - "url": "http://www.drinksmixer.com/drink6135.html" + "url": "https://www.drinksmixer.com/drink6135.html" }, { "directions": "Shake and strain into an ice-filled wine glass. Add the cola, and garnish with an orange slice and a cherry.", @@ -54862,7 +54862,7 @@ "cola" ], "title": "Chocolate Sailor recipe", - "url": "http://www.drinksmixer.com/drink6136.html" + "url": "https://www.drinksmixer.com/drink6136.html" }, { "directions": "Pour into a highball glass filled with broken ice. Garnish with a slice of lime, and serve.", @@ -54872,7 +54872,7 @@ "ginger ale" ], "title": "Cloudy Sky recipe", - "url": "http://www.drinksmixer.com/drink6137.html" + "url": "https://www.drinksmixer.com/drink6137.html" }, { "directions": "Pour into a double-cocktail glass filled with crushed ice. Garnish with a slice of lemon, a cherry and a mint sprig. Serve with a short straw.", @@ -54884,7 +54884,7 @@ "creme de cassis" ], "title": "Cherry Cobbler recipe", - "url": "http://www.drinksmixer.com/drink6138.html" + "url": "https://www.drinksmixer.com/drink6138.html" }, { "directions": "Shake and strain into an ice-filled collins glass. Garnish with slices of pineapple and lemon.", @@ -54896,7 +54896,7 @@ "lemon juice" ], "title": "Coconut Grove recipe", - "url": "http://www.drinksmixer.com/drink6139.html" + "url": "https://www.drinksmixer.com/drink6139.html" }, { "directions": "Pour ingredients into an ice-filled highball glass, and serve.", @@ -54908,7 +54908,7 @@ "lemonade" ], "title": "Codswallop recipe", - "url": "http://www.drinksmixer.com/drink6140.html" + "url": "https://www.drinksmixer.com/drink6140.html" }, { "directions": "Shake and strain into a wine glass filled with crushed ice. Sweeten to taste.", @@ -54919,7 +54919,7 @@ "coffee" ], "title": "Cold Comfort Coffee recipe", - "url": "http://www.drinksmixer.com/drink6141.html" + "url": "https://www.drinksmixer.com/drink6141.html" }, { "directions": "Pour into an old-fashioned glass three-quarters filled with broken ice, and serve.", @@ -54928,7 +54928,7 @@ "tomato juice" ], "title": "Cooch Behar recipe", - "url": "http://www.drinksmixer.com/drink6142.html" + "url": "https://www.drinksmixer.com/drink6142.html" }, { "directions": "Pour ingredients into a collins glass filled with crushed ice. Drop in a spiral of lime. Garnish with a slice of orange, and serve with a straw.", @@ -54940,7 +54940,7 @@ "lemon juice" ], "title": "Castro Cooler recipe", - "url": "http://www.drinksmixer.com/drink6143.html" + "url": "https://www.drinksmixer.com/drink6143.html" }, { "directions": "Pour into a collins glass filled with ice. Drop in an orange spiral, and serve.", @@ -54951,7 +54951,7 @@ "bitter lemon soda" ], "title": "Chartreuse Cooler recipe", - "url": "http://www.drinksmixer.com/drink6144.html" + "url": "https://www.drinksmixer.com/drink6144.html" }, { "directions": "Pour into a collins glass filled with ice. Add a spiral of lime, and serve.", @@ -54966,7 +54966,7 @@ "lemonade" ], "title": "Curacao Cooler recipe", - "url": "http://www.drinksmixer.com/drink6145.html" + "url": "https://www.drinksmixer.com/drink6145.html" }, { "directions": "Pour into a highball glass three-quarters filled with broken ice. Garnish with a slice of lime. Serve with a straw.", @@ -54976,7 +54976,7 @@ "7-Up\u00ae soda" ], "title": "Corsican recipe", - "url": "http://www.drinksmixer.com/drink6146.html" + "url": "https://www.drinksmixer.com/drink6146.html" }, { "directions": "Pour into an ice-filled highball glass.", @@ -54987,7 +54987,7 @@ "lemonade" ], "title": "Corvette recipe", - "url": "http://www.drinksmixer.com/drink6147.html" + "url": "https://www.drinksmixer.com/drink6147.html" }, { "directions": "Pour into an ice-filled highball glass. Garnish with a slice of orange, paper parasol and a cherry.", @@ -54999,7 +54999,7 @@ "soda water" ], "title": "Costa del Sol recipe", - "url": "http://www.drinksmixer.com/drink6148.html" + "url": "https://www.drinksmixer.com/drink6148.html" }, { "directions": "Shake and strain into an ice-filled collins glass. Serve with straws.", @@ -55011,7 +55011,7 @@ "pineapple juice" ], "title": "Count Blythe recipe", - "url": "http://www.drinksmixer.com/drink6149.html" + "url": "https://www.drinksmixer.com/drink6149.html" }, { "directions": "Squeeze lime juice directly into a collins glass and add shell. Fill with ice and pour in the sherry, rums and cola. Serve with straws.", @@ -55023,7 +55023,7 @@ "Coca-Cola\u00ae" ], "title": "Cuba Libre Espana recipe", - "url": "http://www.drinksmixer.com/drink6150.html" + "url": "https://www.drinksmixer.com/drink6150.html" }, { "directions": "Blend thoroughly, add a glassful of crushed ice and blend again briefly. Pour into a goblet, and garnish with a slice of lemon and a cherry.", @@ -55037,7 +55037,7 @@ "maraschino cherries" ], "title": "Cherry Daiquiri recipe", - "url": "http://www.drinksmixer.com/drink6151.html" + "url": "https://www.drinksmixer.com/drink6151.html" }, { "directions": "Rim glass with lime and grated coconut. Shake all ingredients (except dark rum) and strain into a wine goblet filled with crushed ice. Garnish with a slice of lime, and sprinkle dark rum on top using a barspoon. Serve with short straws.", @@ -55051,7 +55051,7 @@ "dark rum" ], "title": "Coconut Daiquiri recipe", - "url": "http://www.drinksmixer.com/drink6152.html" + "url": "https://www.drinksmixer.com/drink6152.html" }, { "directions": "Shake and strain into a cordial glass.", @@ -55062,7 +55062,7 @@ "double cream" ], "title": "Cadiz recipe", - "url": "http://www.drinksmixer.com/drink6153.html" + "url": "https://www.drinksmixer.com/drink6153.html" }, { "directions": "Shake and strain into a cocktail glass, and serve.", @@ -55073,7 +55073,7 @@ "double cream" ], "title": "Cafe Trinidad recipe", - "url": "http://www.drinksmixer.com/drink6154.html" + "url": "https://www.drinksmixer.com/drink6154.html" }, { "directions": "Shake and strain into a cocktail glass.", @@ -55085,7 +55085,7 @@ "pineapple syrup" ], "title": "Calvados Cream recipe", - "url": "http://www.drinksmixer.com/drink6155.html" + "url": "https://www.drinksmixer.com/drink6155.html" }, { "directions": "Shake well and strain into a champagne saucer filled with crushed ice.", @@ -55096,7 +55096,7 @@ "egg" ], "title": "Candida recipe", - "url": "http://www.drinksmixer.com/drink6156.html" + "url": "https://www.drinksmixer.com/drink6156.html" }, { "directions": "Blend briefly in a blender. Pour into a wine goblet, garnish with a slice of orange, and serve.", @@ -55106,7 +55106,7 @@ "vanilla ice cream" ], "title": "Cape Snow recipe", - "url": "http://www.drinksmixer.com/drink6157.html" + "url": "https://www.drinksmixer.com/drink6157.html" }, { "directions": "Rim a double-cocktail glass with lemon and sugar. Blend orange curacao, kahlua and cream with a glassful of crushed ice. Garnish with a slice of orange.", @@ -55116,7 +55116,7 @@ "whipping cream" ], "title": "Cara Sposa recipe", - "url": "http://www.drinksmixer.com/drink6158.html" + "url": "https://www.drinksmixer.com/drink6158.html" }, { "directions": "Shake and strain into a cocktail glass.", @@ -55127,7 +55127,7 @@ "whipping cream" ], "title": "Cavalier recipe", - "url": "http://www.drinksmixer.com/drink6159.html" + "url": "https://www.drinksmixer.com/drink6159.html" }, { "directions": "Pour rum and vodka into a shot glass. Top with cream, and serve.", @@ -55137,7 +55137,7 @@ "whipping cream" ], "title": "Cherry Rum Shooter recipe", - "url": "http://www.drinksmixer.com/drink6160.html" + "url": "https://www.drinksmixer.com/drink6160.html" }, { "directions": "Blend briefly with half a glassful of crushed ice. Pour into a double-cocktail glass.", @@ -55148,7 +55148,7 @@ "vanilla ice cream" ], "title": "Cherry Tree Climber recipe", - "url": "http://www.drinksmixer.com/drink6161.html" + "url": "https://www.drinksmixer.com/drink6161.html" }, { "directions": "Shake and strain into a champagne saucer. Sprinkle with grated nutmeg, and serve.", @@ -55160,7 +55160,7 @@ "whipping cream" ], "title": "Chocolate Gatail recipe", - "url": "http://www.drinksmixer.com/drink6162.html" + "url": "https://www.drinksmixer.com/drink6162.html" }, { "directions": "Rim a cocktail glass with pineapple juice and sugar. Shake ingredients and strain into the glass. Garnish with a cherry and an orange slice.", @@ -55173,7 +55173,7 @@ "lime juice" ], "title": "Cloudberry Cocktail recipe", - "url": "http://www.drinksmixer.com/drink6163.html" + "url": "https://www.drinksmixer.com/drink6163.html" }, { "directions": "Shake and strain into a wine goblet filled with broken ice. Sprinkle with grated coconut, and serve with short straws.", @@ -55184,7 +55184,7 @@ "coffee" ], "title": "Coffee Cream recipe", - "url": "http://www.drinksmixer.com/drink6164.html" + "url": "https://www.drinksmixer.com/drink6164.html" }, { "directions": "Shake and strain into an old-fashioned glass three-quarters filled with broken ice.", @@ -55194,7 +55194,7 @@ "honey" ], "title": "Cold Porridge recipe", - "url": "http://www.drinksmixer.com/drink6165.html" + "url": "https://www.drinksmixer.com/drink6165.html" }, { "directions": "Shake and strain into an old-fashioned glass half-filled with broken ice. Add the cola, and serve.", @@ -55205,7 +55205,7 @@ "cola" ], "title": "Colditz recipe", - "url": "http://www.drinksmixer.com/drink6166.html" + "url": "https://www.drinksmixer.com/drink6166.html" }, { "directions": "Shake and strain into a cocktail glass. Garnish with a cherry on a stick, and serve.", @@ -55216,7 +55216,7 @@ "double cream" ], "title": "Conca de Fuego recipe", - "url": "http://www.drinksmixer.com/drink6167.html" + "url": "https://www.drinksmixer.com/drink6167.html" }, { "directions": "Shake and strain into a cocktail glass. Garnish with a cherry, sprinkle with grated chocolate, and serve.", @@ -55228,7 +55228,7 @@ "double cream" ], "title": "Cuban Cherry recipe", - "url": "http://www.drinksmixer.com/drink6168.html" + "url": "https://www.drinksmixer.com/drink6168.html" }, { "directions": "Rim a coffee cup with lemon juice and sugar. Simmer coffee, zest of half a lemon, cinnamon stick and sugar (to taste) in a small saucepan. Heat and ignite cognac in a soup ladle, add to coffee, and extinguish. Strain into the cup, and serve.", @@ -55240,7 +55240,7 @@ "sugar" ], "title": "Cafe D'Amour recipe", - "url": "http://www.drinksmixer.com/drink6169.html" + "url": "https://www.drinksmixer.com/drink6169.html" }, { "directions": "Rim an irish coffee cup with lemon juice and sugar. Pour coffee and liquors into the cup and sweeten to taste. Float the cream\r", @@ -55252,7 +55252,7 @@ "sugar" ], "title": "Cafe Don Juan recipe", - "url": "http://www.drinksmixer.com/drink6170.html" + "url": "https://www.drinksmixer.com/drink6170.html" }, { "directions": "Pour coffee and liquors into an irish coffee cup and sweeten to taste. Float the cream on top, add a cherry, and serve.", @@ -55264,7 +55264,7 @@ "whipped cream" ], "title": "Cafe Grande recipe", - "url": "http://www.drinksmixer.com/drink6171.html" + "url": "https://www.drinksmixer.com/drink6171.html" }, { "directions": "Pour coffee and liquor into an irish coffee cup and sweeten to taste. Float the cream on top, and serve.", @@ -55275,7 +55275,7 @@ "sugar" ], "title": "Cafe Imperial recipe", - "url": "http://www.drinksmixer.com/drink6172.html" + "url": "https://www.drinksmixer.com/drink6172.html" }, { "directions": "Pour coffee and liquors into an irish coffee cup and sweeten to taste. Float the cream on top, sprinkle with chopped hazelnuts, and serve.", @@ -55287,7 +55287,7 @@ "sugar" ], "title": "Cafe Nelson recipe", - "url": "http://www.drinksmixer.com/drink6173.html" + "url": "https://www.drinksmixer.com/drink6173.html" }, { "directions": "Pour coffee and liquor into an irish coffee cup and sweeten to taste. Float the cream on top, sprinkle with grated chocolate, and serve.", @@ -55298,7 +55298,7 @@ "sugar" ], "title": "Calypso Coffee recipe", - "url": "http://www.drinksmixer.com/drink6174.html" + "url": "https://www.drinksmixer.com/drink6174.html" }, { "directions": "Pour coffee, rum and cacao into an irish coffee cup and sweeten to taste. Float the cream on top, add amaretto, and serve.", @@ -55311,7 +55311,7 @@ "sugar" ], "title": "Calypso Coffee recipe", - "url": "http://www.drinksmixer.com/drink6175.html" + "url": "https://www.drinksmixer.com/drink6175.html" }, { "directions": "Pour coffee and liquor into an irish coffee cup and sweeten to taste. Float the cream on top, sprinkle with grated chocolate, and serve.", @@ -55322,7 +55322,7 @@ "sugar" ], "title": "Caribbean Coffee recipe", - "url": "http://www.drinksmixer.com/drink6176.html" + "url": "https://www.drinksmixer.com/drink6176.html" }, { "directions": "Pour coffee and liquors into an irish coffee cup and sweeten to taste. Float the cream on top, sprinkle with grated chocolate, and serve.", @@ -55335,7 +55335,7 @@ "sugar" ], "title": "Casino Coffee recipe", - "url": "http://www.drinksmixer.com/drink6177.html" + "url": "https://www.drinksmixer.com/drink6177.html" }, { "directions": "Pour coffee and liquor into an irish coffee cup and sweeten to taste. Float the cream on top, garnish with a fresh raspberry, and serve.", @@ -55346,7 +55346,7 @@ "sugar" ], "title": "Chambord Coffee recipe", - "url": "http://www.drinksmixer.com/drink6178.html" + "url": "https://www.drinksmixer.com/drink6178.html" }, { "directions": "Pour coffee and liquors into an irish coffee cup and sweeten to taste. Float the cream on top, add a maraschino cherry, and serve.", @@ -55358,7 +55358,7 @@ "sugar" ], "title": "Coffee Break recipe", - "url": "http://www.drinksmixer.com/drink6179.html" + "url": "https://www.drinksmixer.com/drink6179.html" }, { "directions": "Pour coffee and liquor into an irish coffee cup and sweeten to taste. Float the cream, and place three coffee beans on top.", @@ -55369,7 +55369,7 @@ "sugar" ], "title": "Cafe Disaronno recipe", - "url": "http://www.drinksmixer.com/drink6180.html" + "url": "https://www.drinksmixer.com/drink6180.html" }, { "directions": "Rim a cup with sugar syrup and cinnamon sugar. Pour coffee and liquors and sweeten to taste. Float cream on top, and serve.", @@ -55383,7 +55383,7 @@ "sugar" ], "title": "Cafe Henry The Third recipe", - "url": "http://www.drinksmixer.com/drink6181.html" + "url": "https://www.drinksmixer.com/drink6181.html" }, { "directions": "Pour liquors and coffee into a coffee mug over the chocolate syrup. Sweeten to taste, and top with cream.", @@ -55396,7 +55396,7 @@ "sugar" ], "title": "Cafe Toledo recipe", - "url": "http://www.drinksmixer.com/drink6182.html" + "url": "https://www.drinksmixer.com/drink6182.html" }, { "directions": "Shake well and strain into a cocktail glass.", @@ -55407,7 +55407,7 @@ "egg" ], "title": "Cafe Kirsch recipe", - "url": "http://www.drinksmixer.com/drink6183.html" + "url": "https://www.drinksmixer.com/drink6183.html" }, { "directions": "Pour into an old-fashioned glass half-filled with broken ice. Add a twist of lemon, and serve.", @@ -55418,7 +55418,7 @@ "lemonade" ], "title": "Calvarniac recipe", - "url": "http://www.drinksmixer.com/drink6184.html" + "url": "https://www.drinksmixer.com/drink6184.html" }, { "directions": "Shake and strain into an ice-filled old-fashioned glass.", @@ -55430,7 +55430,7 @@ "coffee" ], "title": "Camel's Coffee recipe", - "url": "http://www.drinksmixer.com/drink6185.html" + "url": "https://www.drinksmixer.com/drink6185.html" }, { "directions": "Pour into an old-fashioned glass half-filled with broken ice, and serve.", @@ -55442,7 +55442,7 @@ "lemonade" ], "title": "Camshaft recipe", - "url": "http://www.drinksmixer.com/drink6186.html" + "url": "https://www.drinksmixer.com/drink6186.html" }, { "directions": "Pour into an old-fashioned glass filled with broken ice and a sprig of mint.", @@ -55452,7 +55452,7 @@ "Angostura\u00ae bitters" ], "title": "Canada Cocktail recipe", - "url": "http://www.drinksmixer.com/drink6187.html" + "url": "https://www.drinksmixer.com/drink6187.html" }, { "directions": "Shake and strain into a glass filled with crushed ice.", @@ -55462,7 +55462,7 @@ "lemon juice" ], "title": "Canadian Black recipe", - "url": "http://www.drinksmixer.com/drink6188.html" + "url": "https://www.drinksmixer.com/drink6188.html" }, { "directions": "Dissolve sugar, shake and strain into a double-cocktail glass filled with crushed ice. Garnish with a twist of lime, and serve.", @@ -55474,7 +55474,7 @@ "caster sugar" ], "title": "Canario recipe", - "url": "http://www.drinksmixer.com/drink6189.html" + "url": "https://www.drinksmixer.com/drink6189.html" }, { "directions": "Shake and strain into an old-fashioned glass three-quarters filled with broken ice. Add an orange twist, a cherry, and serve.", @@ -55485,7 +55485,7 @@ "grenadine syrup" ], "title": "Canton recipe", - "url": "http://www.drinksmixer.com/drink6190.html" + "url": "https://www.drinksmixer.com/drink6190.html" }, { "directions": "Shake rums, juice and sugar together in a shaker. Strain into a champagne saucer filled with crushed ice, and sprinkle the port over one half of the surface. Drink from the port side.", @@ -55497,7 +55497,7 @@ "LBV port" ], "title": "Captain's Cocktail recipe", - "url": "http://www.drinksmixer.com/drink6191.html" + "url": "https://www.drinksmixer.com/drink6191.html" }, { "directions": "Shake and strain into a cocktail glass.", @@ -55510,7 +55510,7 @@ "grenadine syrup" ], "title": "Caribbean Harvest recipe", - "url": "http://www.drinksmixer.com/drink6192.html" + "url": "https://www.drinksmixer.com/drink6192.html" }, { "directions": "Stir ingredients and strain into an old-fashioned glass filled with broken ice. Garnish with a sprig of mint and fruit.", @@ -55523,7 +55523,7 @@ "lime juice" ], "title": "Centenario recipe", - "url": "http://www.drinksmixer.com/drink6193.html" + "url": "https://www.drinksmixer.com/drink6193.html" }, { "directions": "Stir and strain into a cocktail glass. Garnish with a red cherry, soaked in eau de vie.", @@ -55534,7 +55534,7 @@ "Kirschwasser\u00ae cherry brandy" ], "title": "Cesar Ritz recipe", - "url": "http://www.drinksmixer.com/drink6194.html" + "url": "https://www.drinksmixer.com/drink6194.html" }, { "directions": "Pour into an old-fashioned glass three-quarters filled with broken ice.", @@ -55544,7 +55544,7 @@ "bitter lemon soda" ], "title": "Chandos Club recipe", - "url": "http://www.drinksmixer.com/drink6195.html" + "url": "https://www.drinksmixer.com/drink6195.html" }, { "directions": "Shake with a glassful of broken ice and pour unstrained into a goblet. Garnish with fruit and serve.", @@ -55556,7 +55556,7 @@ "grenadine syrup" ], "title": "Chaos Calmer recipe", - "url": "http://www.drinksmixer.com/drink6196.html" + "url": "https://www.drinksmixer.com/drink6196.html" }, { "directions": "Stir and strain into a brandy snifter.", @@ -55565,7 +55565,7 @@ "pear liqueur" ], "title": "Charles's Nightcap recipe", - "url": "http://www.drinksmixer.com/drink6197.html" + "url": "https://www.drinksmixer.com/drink6197.html" }, { "directions": "Stir and strain into a cordial glass. Garnish with a maraschino cherry.", @@ -55575,7 +55575,7 @@ "dry vermouth" ], "title": "Chartreuse Cocktail recipe", - "url": "http://www.drinksmixer.com/drink6198.html" + "url": "https://www.drinksmixer.com/drink6198.html" }, { "directions": "Pour ingredients into an old-fashioned glass three-quarters filled with broken ice.", @@ -55587,7 +55587,7 @@ "lemonade" ], "title": "Cheese Sandwich recipe", - "url": "http://www.drinksmixer.com/drink6199.html" + "url": "https://www.drinksmixer.com/drink6199.html" }, { "directions": "Blend until smooth. Add a glassful of crushed ice and blend again briefly. Serve with straws in a rocks or old-fashioned glass.", @@ -55599,7 +55599,7 @@ "lychee" ], "title": "Chinatown recipe", - "url": "http://www.drinksmixer.com/drink6200.html" + "url": "https://www.drinksmixer.com/drink6200.html" }, { "directions": "Shake well and strain into a double-cocktail glass filled with broken ice.", @@ -55612,7 +55612,7 @@ "egg" ], "title": "Chop Nut recipe", - "url": "http://www.drinksmixer.com/drink6201.html" + "url": "https://www.drinksmixer.com/drink6201.html" }, { "directions": "Shake and strain into a double-cocktail glass filled with crushed ice.", @@ -55626,7 +55626,7 @@ "grenadine syrup" ], "title": "Citrus Cactus recipe", - "url": "http://www.drinksmixer.com/drink6202.html" + "url": "https://www.drinksmixer.com/drink6202.html" }, { "directions": "Pour into an old-fashioned glass filled with broken ice. Add a lime slice, and serve.", @@ -55637,7 +55637,7 @@ "lemonade" ], "title": "Cloud Walker recipe", - "url": "http://www.drinksmixer.com/drink6203.html" + "url": "https://www.drinksmixer.com/drink6203.html" }, { "directions": "Shake well and strain into a double-cocktail glass filled with crushed ice. Garnish with a slice of lemon, and serve.", @@ -55648,7 +55648,7 @@ "egg" ], "title": "Clover Club Royal recipe", - "url": "http://www.drinksmixer.com/drink6204.html" + "url": "https://www.drinksmixer.com/drink6204.html" }, { "directions": "Shake with a glassful of broken ice and pour unstrained into an old-fashioned glass. Add a twist of lemon, and serve.", @@ -55658,7 +55658,7 @@ "Campari\u00ae bitters" ], "title": "Cock-A-Bendy recipe", - "url": "http://www.drinksmixer.com/drink6205.html" + "url": "https://www.drinksmixer.com/drink6205.html" }, { "directions": "Shake and strain into a champagne saucer filled with crushed ice.", @@ -55668,7 +55668,7 @@ "coconut cream" ], "title": "Coconut Gin recipe", - "url": "http://www.drinksmixer.com/drink6206.html" + "url": "https://www.drinksmixer.com/drink6206.html" }, { "directions": "Shake and strain into a double-cocktail glass filled with crushed ice.", @@ -55679,7 +55679,7 @@ "pineapple juice" ], "title": "Coconut Monkey recipe", - "url": "http://www.drinksmixer.com/drink6207.html" + "url": "https://www.drinksmixer.com/drink6207.html" }, { "directions": "Shake briefly with a glassful of crushed ice, and strain into a double-cocktail glass. Add a slice of lime and serve.", @@ -55689,7 +55689,7 @@ "lime juice" ], "title": "Columbus Cocktail recipe", - "url": "http://www.drinksmixer.com/drink6208.html" + "url": "https://www.drinksmixer.com/drink6208.html" }, { "directions": "Stir and strain into a brandy snifter.", @@ -55699,7 +55699,7 @@ "lemon juice" ], "title": "Commonwealth recipe", - "url": "http://www.drinksmixer.com/drink6209.html" + "url": "https://www.drinksmixer.com/drink6209.html" }, { "directions": "Shake and strain into a champagne saucer filled with crushed ice.", @@ -55710,7 +55710,7 @@ "lemon juice" ], "title": "Connecticut Bulldog recipe", - "url": "http://www.drinksmixer.com/drink6210.html" + "url": "https://www.drinksmixer.com/drink6210.html" }, { "directions": "Stir and strain into a brandy snifter.", @@ -55720,7 +55720,7 @@ "Grand Marnier\u00ae orange liqueur" ], "title": "Connoisseur's Treat recipe", - "url": "http://www.drinksmixer.com/drink6211.html" + "url": "https://www.drinksmixer.com/drink6211.html" }, { "directions": "Pour ingredients into a cocktail glass and fill with crushed ice. Garnish with a slice of lime and a cherry. Serve with short straws.", @@ -55731,7 +55731,7 @@ "lemonade" ], "title": "Corcovado recipe", - "url": "http://www.drinksmixer.com/drink6212.html" + "url": "https://www.drinksmixer.com/drink6212.html" }, { "directions": "Shake and strain into an old-fashioned glass three-quarters filled with broken ice. Garnish with a sugar dipped strawberry.", @@ -55741,7 +55741,7 @@ "caster sugar" ], "title": "Corniche recipe", - "url": "http://www.drinksmixer.com/drink6213.html" + "url": "https://www.drinksmixer.com/drink6213.html" }, { "directions": "Stir and strain into a cordial glass.", @@ -55752,7 +55752,7 @@ "lemon syrup" ], "title": "Coterie recipe", - "url": "http://www.drinksmixer.com/drink6214.html" + "url": "https://www.drinksmixer.com/drink6214.html" }, { "directions": "Shake ingredients and strain into a cocktail glass. Garnish with a cherry on a stick, and serve.", @@ -55764,7 +55764,7 @@ "lime juice" ], "title": "Cracklin' Rosie recipe", - "url": "http://www.drinksmixer.com/drink6215.html" + "url": "https://www.drinksmixer.com/drink6215.html" }, { "directions": "Pour ingredients into an old-fashioned glass three-quarters filled with broken ice, and serve.", @@ -55775,7 +55775,7 @@ "grenadine syrup" ], "title": "Crater Face recipe", - "url": "http://www.drinksmixer.com/drink6216.html" + "url": "https://www.drinksmixer.com/drink6216.html" }, { "directions": "Stir and strain into a cocktail glass. Add the soda, garnish with two cherries on a stick, and serve.", @@ -55786,7 +55786,7 @@ "soda water" ], "title": "Crimean Cocktail recipe", - "url": "http://www.drinksmixer.com/drink6217.html" + "url": "https://www.drinksmixer.com/drink6217.html" }, { "directions": "Stir and strain into an old-fashioned glass three-quarters filled with broken ice. Garnish with a cherry and a slice of orange.", @@ -55796,7 +55796,7 @@ "white creme de cacao" ], "title": "Crooked Sister recipe", - "url": "http://www.drinksmixer.com/drink6218.html" + "url": "https://www.drinksmixer.com/drink6218.html" }, { "directions": "Pour into an ice-filled rocks glass and garnish with a lemon twist.", @@ -55805,7 +55805,7 @@ "sweet sherry" ], "title": "Crow's Nest recipe", - "url": "http://www.drinksmixer.com/drink6219.html" + "url": "https://www.drinksmixer.com/drink6219.html" }, { "directions": "Pour into a champagne flute, and serve.", @@ -55814,7 +55814,7 @@ "Pisang Ambon\u00ae liqueur" ], "title": "Champagne Ambon recipe", - "url": "http://www.drinksmixer.com/drink6220.html" + "url": "https://www.drinksmixer.com/drink6220.html" }, { "directions": "Pour into a wine glass half-filled with broken ice. Garnish with a half-slice of orange.", @@ -55823,7 +55823,7 @@ "apricot brandy" ], "title": "Champagne Charlie recipe", - "url": "http://www.drinksmixer.com/drink6221.html" + "url": "https://www.drinksmixer.com/drink6221.html" }, { "directions": "Pour into a wine glass.", @@ -55833,7 +55833,7 @@ "cola" ], "title": "Champagne de Mars recipe", - "url": "http://www.drinksmixer.com/drink6222.html" + "url": "https://www.drinksmixer.com/drink6222.html" }, { "directions": "Pour into a chilled champagne flute, and serve.", @@ -55842,7 +55842,7 @@ "Irish Mist\u00ae herbal liqueur" ], "title": "Champagne Irish Mist recipe", - "url": "http://www.drinksmixer.com/drink6223.html" + "url": "https://www.drinksmixer.com/drink6223.html" }, { "directions": "Pour into a champagne saucer, and serve.", @@ -55852,7 +55852,7 @@ "bitter lemon soda" ], "title": "Champagne Lemon recipe", - "url": "http://www.drinksmixer.com/drink6224.html" + "url": "https://www.drinksmixer.com/drink6224.html" }, { "directions": "Stir the mandarine napoleon with orange juice and ice, briefly, and strain into a frosted champagne flute. Add the champagne, and serve.", @@ -55862,7 +55862,7 @@ "Champagne" ], "title": "Champagne Napoleon recipe", - "url": "http://www.drinksmixer.com/drink6225.html" + "url": "https://www.drinksmixer.com/drink6225.html" }, { "directions": "Serve in a champagne flute.", @@ -55872,7 +55872,7 @@ "Old Krupnik\u00ae honey liqueur" ], "title": "Champagne Polonaise recipe", - "url": "http://www.drinksmixer.com/drink6226.html" + "url": "https://www.drinksmixer.com/drink6226.html" }, { "directions": "Soak one sugar cube in a champagne flute with angostura bitters. Add champagne and cognac. Squeeze in a twist of lemon and discard. Garnish with half a slice of orange.", @@ -55883,7 +55883,7 @@ "sugar" ], "title": "Classic Champagne Cocktail recipe", - "url": "http://www.drinksmixer.com/drink6227.html" + "url": "https://www.drinksmixer.com/drink6227.html" }, { "directions": "Mix and pour into a double-cocktail glass filled with crushed ice. Garnish with a cherry and serve with short straws.", @@ -55892,7 +55892,7 @@ "coffee" ], "title": "Cafe Royal Frappe recipe", - "url": "http://www.drinksmixer.com/drink6228.html" + "url": "https://www.drinksmixer.com/drink6228.html" }, { "directions": "Mix and pour into a champagne saucer filled with crushed ice. Serve with a short straw.", @@ -55902,7 +55902,7 @@ "orange juice" ], "title": "Chocolate Orange Frappe recipe", - "url": "http://www.drinksmixer.com/drink6229.html" + "url": "https://www.drinksmixer.com/drink6229.html" }, { "directions": "Mix and pour into a champagne saucer filled with crushed ice. Garnish with a sprig of mint, and serve with a short straw.", @@ -55911,7 +55911,7 @@ "white creme de menthe" ], "title": "Cognac Mint Frappe recipe", - "url": "http://www.drinksmixer.com/drink6230.html" + "url": "https://www.drinksmixer.com/drink6230.html" }, { "directions": "Shake and strain into an ice-filled collins glass. Add the 7-up, garnish with fruit, and serve.", @@ -55923,7 +55923,7 @@ "7-Up\u00ae soda" ], "title": "Camp Grenada recipe", - "url": "http://www.drinksmixer.com/drink6231.html" + "url": "https://www.drinksmixer.com/drink6231.html" }, { "directions": "Pour ingredients into an ice-filled highball glass. Garnish with a lemon slice, a cherry, and serve with straws.", @@ -55934,7 +55934,7 @@ "lemonade" ], "title": "Ceasefire recipe", - "url": "http://www.drinksmixer.com/drink6232.html" + "url": "https://www.drinksmixer.com/drink6232.html" }, { "directions": "Heat milk in a small saucepan. When simmering, add remaining ingredients. Allow syrup to dissolve, and pour into a heat-proof glass.", @@ -55946,7 +55946,7 @@ "maple syrup" ], "title": "Canadian Cocoa recipe", - "url": "http://www.drinksmixer.com/drink6233.html" + "url": "https://www.drinksmixer.com/drink6233.html" }, { "directions": "Heat in a small saucepan and strain into a heat-proof glass when hot. Add half a slice of lemon, and serve.", @@ -55956,7 +55956,7 @@ "cinnamon" ], "title": "Ciderific recipe", - "url": "http://www.drinksmixer.com/drink6234.html" + "url": "https://www.drinksmixer.com/drink6234.html" }, { "directions": "Pour coffee and liquor into an irish coffee cup and sweeten to taste. Gently float the cream on top, and sprinkle with grated chocolate.", @@ -55968,7 +55968,7 @@ "sugar" ], "title": "Coffee Chaser recipe", - "url": "http://www.drinksmixer.com/drink6235.html" + "url": "https://www.drinksmixer.com/drink6235.html" }, { "directions": "Pour whiskey, bitters and tea into a heat-proof cup. Sweeten to taste, and serve.", @@ -55979,7 +55979,7 @@ "sugar" ], "title": "Colonial Boy recipe", - "url": "http://www.drinksmixer.com/drink6236.html" + "url": "https://www.drinksmixer.com/drink6236.html" }, { "directions": "Stir and strain into an old-fashioned glass three-quarters filled with broken ice. Add the twist of lemon, and serve.", @@ -55988,7 +55988,7 @@ "Chambord\u00ae raspberry liqueur" ], "title": "Chamtini recipe", - "url": "http://www.drinksmixer.com/drink6237.html" + "url": "https://www.drinksmixer.com/drink6237.html" }, { "directions": "Shake and strain into a collins glass three-quarters filled with broken ice. Add the ginger ale, and garnish with a slice of grapefruit.", @@ -55998,7 +55998,7 @@ "dry ginger ale" ], "title": "Canadian Pride recipe", - "url": "http://www.drinksmixer.com/drink6238.html" + "url": "https://www.drinksmixer.com/drink6238.html" }, { "directions": "Shake and strain into an ice-filled highball glass, and add soda. Garnish with a slice of lemon, add a straw, and serve.", @@ -56010,7 +56010,7 @@ "soda water" ], "title": "Cinderella recipe", - "url": "http://www.drinksmixer.com/drink6239.html" + "url": "https://www.drinksmixer.com/drink6239.html" }, { "directions": "Funnel the rum, armagnac and lemon juice into one small cola bottle (185-200ml), roughly half-filled with cola. Briefly invert the bottle to mix the ingredients. Place in the center of a large glass (tankard, stein or british pint), and fill glass with broken ice. Add a straw to the bottle, and serve.", @@ -56021,7 +56021,7 @@ "cola" ], "title": "Captain Cola recipe", - "url": "http://www.drinksmixer.com/drink6240.html" + "url": "https://www.drinksmixer.com/drink6240.html" }, { "directions": "Pour ingredients into an ice-filled highball glass. Add a twist of orange, and serve.", @@ -56030,7 +56030,7 @@ "lemonade" ], "title": "Carpano Highball recipe", - "url": "http://www.drinksmixer.com/drink6241.html" + "url": "https://www.drinksmixer.com/drink6241.html" }, { "directions": "Pour all ingredients (except champagne) into a large jug and mix until sugar dissolves. Chill for at least 2 hours, and pour into wine glasses until two-thirds full. Top each glass with champagne, garnish with pineapple chunks, and serve.", @@ -56043,7 +56043,7 @@ "Champagne" ], "title": "Champagne Pineapple Punch recipe", - "url": "http://www.drinksmixer.com/drink6242.html" + "url": "https://www.drinksmixer.com/drink6242.html" }, { "directions": "Dissolve honey in lime and cranberry juice in a punch bowl. Add remaining ingredients, and mix. Add sufficient ice to chill, and garnish with three or four lime slices. Serve in wine glasses.", @@ -56056,7 +56056,7 @@ "soda water" ], "title": "Champagne Spray Punch recipe", - "url": "http://www.drinksmixer.com/drink6243.html" + "url": "https://www.drinksmixer.com/drink6243.html" }, { "directions": "Chill ingredients seperately for a minimum of two hours. Combine in a large punch bowl, with a small amount of ice, and serve into wine glasses.", @@ -56069,7 +56069,7 @@ "strawberries" ], "title": "Confetti Punch recipe", - "url": "http://www.drinksmixer.com/drink6244.html" + "url": "https://www.drinksmixer.com/drink6244.html" }, { "directions": "Pour into a wine glass.", @@ -56078,7 +56078,7 @@ "Pernod\u00ae licorice liqueur" ], "title": "Champerno recipe", - "url": "http://www.drinksmixer.com/drink6245.html" + "url": "https://www.drinksmixer.com/drink6245.html" }, { "directions": "Pour into a champagne flute, and serve.", @@ -56087,7 +56087,7 @@ "cherry brandy" ], "title": "Cherry Champagne recipe", - "url": "http://www.drinksmixer.com/drink6246.html" + "url": "https://www.drinksmixer.com/drink6246.html" }, { "directions": "Pour into a champagne flute, and serve.", @@ -56098,7 +56098,7 @@ "sugar syrup" ], "title": "Cockney Champagne recipe", - "url": "http://www.drinksmixer.com/drink6247.html" + "url": "https://www.drinksmixer.com/drink6247.html" }, { "directions": "Blend briefly with half a glassful of crushed ice in a wine glass. Garnish with a sprig of mint and a cherry. Sprinkle with grated chocolate, add straws, and serve.", @@ -56109,7 +56109,7 @@ "vanilla ice cream" ], "title": "Cherry Chocolate Freeze recipe", - "url": "http://www.drinksmixer.com/drink6248.html" + "url": "https://www.drinksmixer.com/drink6248.html" }, { "directions": "Blend all ingredients (except cream) briefly with a tablespoon of crushed ice. Float the cream on top and serve with straws.", @@ -56124,7 +56124,7 @@ "whipped cream" ], "title": "Chocolate XS recipe", - "url": "http://www.drinksmixer.com/drink6249.html" + "url": "https://www.drinksmixer.com/drink6249.html" }, { "directions": "Blend briefly with half a glassful of crushed ice in a pina colada glass. Garnish with fruit and add straws.", @@ -56139,7 +56139,7 @@ "vanilla ice cream" ], "title": "Cocobanana recipe", - "url": "http://www.drinksmixer.com/drink6250.html" + "url": "https://www.drinksmixer.com/drink6250.html" }, { "directions": "Blend briefly with half a glassful of crushed ice in a wine glass. Add straws, and serve.", @@ -56151,7 +56151,7 @@ "vanilla ice cream" ], "title": "Country Cream recipe", - "url": "http://www.drinksmixer.com/drink6251.html" + "url": "https://www.drinksmixer.com/drink6251.html" }, { "directions": "Beat or blend briefly. Pour into a wine glass and add soda. Garnish with a slice of orange and a cherry.", @@ -56163,7 +56163,7 @@ "cream soda" ], "title": "Crime of Passion recipe", - "url": "http://www.drinksmixer.com/drink6252.html" + "url": "https://www.drinksmixer.com/drink6252.html" }, { "directions": "Funnel the curacao, cognac, vodka and lemon juice into one small cola bottle (185-200ml), roughly half-filled with cola. Briefly invert the bottle to mix the ingredients. Place in the center of a large glass (tankard, stein or british pint), and fill glass with broken ice. Add a straw to the bottle, and serve.", @@ -56175,7 +56175,7 @@ "cola" ], "title": "Cola-Rolla recipe", - "url": "http://www.drinksmixer.com/drink6253.html" + "url": "https://www.drinksmixer.com/drink6253.html" }, { "directions": "Pour ingredients into a wine goblet filled with broken or crushed ice. Mix with a barspoon, garnish with fruit, and add straws. Serve.", @@ -56186,7 +56186,7 @@ "sugar syrup" ], "title": "Claret Cobbler recipe", - "url": "http://www.drinksmixer.com/drink6254.html" + "url": "https://www.drinksmixer.com/drink6254.html" }, { "directions": "Blend briefly with a glassful of crushed ice in a pina colada glass. Garnish with a slice of pineapple and a cherry. Add straws, and serve.", @@ -56198,7 +56198,7 @@ "whipping cream" ], "title": "Coffee Colada recipe", - "url": "http://www.drinksmixer.com/drink6255.html" + "url": "https://www.drinksmixer.com/drink6255.html" }, { "directions": "Shake and strain into a champagne saucer. Sprinkle with grated chocolate, and serve.", @@ -56208,7 +56208,7 @@ "cream" ], "title": "Coffee Alexander recipe", - "url": "http://www.drinksmixer.com/drink6257.html" + "url": "https://www.drinksmixer.com/drink6257.html" }, { "directions": "Dissolve honey in water and allow to cool. Shake with cognac and cream and strain into a cocktail glass.", @@ -56219,7 +56219,7 @@ "water" ], "title": "Cognac Zoom recipe", - "url": "http://www.drinksmixer.com/drink6258.html" + "url": "https://www.drinksmixer.com/drink6258.html" }, { "directions": "Shake all ingredients with ice, strain into a cocktail glass, and serve.", @@ -56230,7 +56230,7 @@ "raspberry syrup" ], "title": "Quaker's Cocktail recipe", - "url": "http://www.drinksmixer.com/drink6259.html" + "url": "https://www.drinksmixer.com/drink6259.html" }, { "directions": "Pour vodka and curacao into a highball glass. Add ice, fill with 7-up, and serve.", @@ -56240,7 +56240,7 @@ "7-Up\u00ae soda" ], "title": "The Quan recipe", - "url": "http://www.drinksmixer.com/drink6260.html" + "url": "https://www.drinksmixer.com/drink6260.html" }, { "directions": "Stir all ingredients with ice, strain into a cocktail glass, and serve.", @@ -56250,7 +56250,7 @@ "limes" ], "title": "Quarter Deck Cocktail recipe", - "url": "http://www.drinksmixer.com/drink6261.html" + "url": "https://www.drinksmixer.com/drink6261.html" }, { "directions": "Shake all ingredients with ice, strain into a cocktail glass, and serve.", @@ -56260,7 +56260,7 @@ "cream sherry" ], "title": "Queen Bee recipe", - "url": "http://www.drinksmixer.com/drink6262.html" + "url": "https://www.drinksmixer.com/drink6262.html" }, { "directions": "Pour red wine and grenadine into a collins glass over ice cubes. Fill with lemon-lime soda, stir, and serve.", @@ -56270,7 +56270,7 @@ "lemon-lime soda" ], "title": "Queen Charlotte recipe", - "url": "http://www.drinksmixer.com/drink6263.html" + "url": "https://www.drinksmixer.com/drink6263.html" }, { "directions": "Stir all ingredients with ice, strain into a cocktail glass, and serve.", @@ -56280,7 +56280,7 @@ "benedictine herbal liqueur" ], "title": "Queen Elizabeth recipe", - "url": "http://www.drinksmixer.com/drink6264.html" + "url": "https://www.drinksmixer.com/drink6264.html" }, { "directions": "Stir and serve in a highball glass with three or four ice cubes.", @@ -56289,7 +56289,7 @@ "cream soda" ], "title": "Queen Soda recipe", - "url": "http://www.drinksmixer.com/drink6265.html" + "url": "https://www.drinksmixer.com/drink6265.html" }, { "directions": "Combine the rum, kahlua and cream in a shaker half-filled with ice cubes. Shake well, strain into a cocktail glass, and sprinkle with nutmeg.", @@ -56300,7 +56300,7 @@ "nutmeg" ], "title": "Quentin recipe", - "url": "http://www.drinksmixer.com/drink6266.html" + "url": "https://www.drinksmixer.com/drink6266.html" }, { "directions": "Pour into a shot glass; baileys first, midori last. Shoot slowly.", @@ -56310,7 +56310,7 @@ "Midori\u00ae melon liqueur" ], "title": "Quick Fuck recipe", - "url": "http://www.drinksmixer.com/drink6267.html" + "url": "https://www.drinksmixer.com/drink6267.html" }, { "directions": "Pour the orange juice (with the fruit pulp) over the sambuca in a highball glass.", @@ -56319,7 +56319,7 @@ "orange juice" ], "title": "Quick-Sand recipe", - "url": "http://www.drinksmixer.com/drink6268.html" + "url": "https://www.drinksmixer.com/drink6268.html" }, { "directions": "Pour rum into an ice-filled hurricane glass. Fill with equal parts orange juice and pineapple juice. Top with grenadine, and serve.", @@ -56330,7 +56330,7 @@ "grenadine syrup" ], "title": "Quikster's Delight recipe", - "url": "http://www.drinksmixer.com/drink6269.html" + "url": "https://www.drinksmixer.com/drink6269.html" }, { "directions": "Pour into an ice-filled highball glass. Garnish with fruit, and serve with a straw.", @@ -56340,7 +56340,7 @@ "lemonade" ], "title": "Queen Charlie recipe", - "url": "http://www.drinksmixer.com/drink6270.html" + "url": "https://www.drinksmixer.com/drink6270.html" }, { "directions": "Squeeze lime juice into a highball glass. Add the shell, fill with crushed ice and add the mint. Pour in the rum, angostura bitters and sugar syrup. Swizzle until glass frosts. Add the soda, garnish with a sprig of mint, and serve with a straw.", @@ -56353,7 +56353,7 @@ "soda water" ], "title": "Queen's Park Swizzle recipe", - "url": "http://www.drinksmixer.com/drink6271.html" + "url": "https://www.drinksmixer.com/drink6271.html" }, { "directions": "Shake and strain into an old-fashioned glass filled with broken ice. Sprinkle with grated chocolate, and serve.", @@ -56365,7 +56365,7 @@ "whipping cream" ], "title": "Quick Decision recipe", - "url": "http://www.drinksmixer.com/drink6272.html" + "url": "https://www.drinksmixer.com/drink6272.html" }, { "directions": "Pour into an ice-filled wine goblet.", @@ -56375,7 +56375,7 @@ "cola" ], "title": "Quick Thrill recipe", - "url": "http://www.drinksmixer.com/drink6273.html" + "url": "https://www.drinksmixer.com/drink6273.html" }, { "directions": "Shake briefly with a glassful of crushed ice in a double-cocktail glass. Garnish with fruit, and serve.", @@ -56388,7 +56388,7 @@ "passion-fruit juice" ], "title": "Quilt Lifter recipe", - "url": "http://www.drinksmixer.com/drink6274.html" + "url": "https://www.drinksmixer.com/drink6274.html" }, { "directions": "Pour ingredients into a frosted beer mug over ice. Stir, and serve.", @@ -56399,7 +56399,7 @@ "Coca-Cola\u00ae" ], "title": "R-Float recipe", - "url": "http://www.drinksmixer.com/drink6275.html" + "url": "https://www.drinksmixer.com/drink6275.html" }, { "directions": "Pour southern comfort and amaretto into an ice-filled highball glass. Fill with apple juice, and shake briefly. Add a splash of lime juice, and serve.", @@ -56410,7 +56410,7 @@ "lime juice" ], "title": "R.B. Winter recipe", - "url": "http://www.drinksmixer.com/drink6276.html" + "url": "https://www.drinksmixer.com/drink6276.html" }, { "directions": "Pour into a shaker and shake well. Serve in a cocktail glass frosted with tangerine.", @@ -56422,7 +56422,7 @@ "lemon juice" ], "title": "The Race recipe", - "url": "http://www.drinksmixer.com/drink6277.html" + "url": "https://www.drinksmixer.com/drink6277.html" }, { "directions": "Pour all ingredients over ice in a very tall glass.", @@ -56437,7 +56437,7 @@ "Malibu\u00ae coconut rum" ], "title": "Radioactive Long Island Iced Tea recipe", - "url": "http://www.drinksmixer.com/drink6278.html" + "url": "https://www.drinksmixer.com/drink6278.html" }, { "directions": "Pour beer into a large mug. Slowly add 7-up or sprite, and serve.", @@ -56446,7 +56446,7 @@ "7-Up\u00ae soda" ], "title": "Radler recipe", - "url": "http://www.drinksmixer.com/drink6279.html" + "url": "https://www.drinksmixer.com/drink6279.html" }, { "directions": "Pour vodka and pisang ambon into a glass. Fill with equal parts of orange juice and sprite. Squeeze in a twist or two of lemon, and serve.", @@ -56458,7 +56458,7 @@ "lemon juice" ], "title": "Rafu Eighteen recipe", - "url": "http://www.drinksmixer.com/drink6280.html" + "url": "https://www.drinksmixer.com/drink6280.html" }, { "directions": "Pour gin and pineapple juice into a shaker and shake well. Pour into a glass over ice, and add the strawberry syrup. Add a small amount of food coloring to the froth, and serve.", @@ -56469,7 +56469,7 @@ "food coloring" ], "title": "Raggae Sunsplash recipe", - "url": "http://www.drinksmixer.com/drink6281.html" + "url": "https://www.drinksmixer.com/drink6281.html" }, { "directions": "Combine bourbon, vermouth, benedictine, and bitters in a mixing glass half-filled with ice cubes. Stir well, and strain into a cocktail glass. Garnish with a twist of lemon, and serve.", @@ -56481,7 +56481,7 @@ "lemon" ], "title": "Ragged Company recipe", - "url": "http://www.drinksmixer.com/drink6282.html" + "url": "https://www.drinksmixer.com/drink6282.html" }, { "directions": "Pour vodka and tequila into a highball glass half-filled with ice cubes. Fill with red bull. Add a splash of lime juice, and serve.", @@ -56492,7 +56492,7 @@ "lime juice" ], "title": "Raging Bull #2 recipe", - "url": "http://www.drinksmixer.com/drink6283.html" + "url": "https://www.drinksmixer.com/drink6283.html" }, { "directions": "Layer in a shot glass; in order.", @@ -56502,7 +56502,7 @@ "tequila" ], "title": "Raging Bull recipe", - "url": "http://www.drinksmixer.com/drink6284.html" + "url": "https://www.drinksmixer.com/drink6284.html" }, { "directions": "Mix ingredients together in a shaker. Strain into a shot glass, and serve.", @@ -56513,7 +56513,7 @@ "mango juice" ], "title": "Raging Indian recipe", - "url": "http://www.drinksmixer.com/drink6285.html" + "url": "https://www.drinksmixer.com/drink6285.html" }, { "directions": "Pour absolut kurant into a tall, highball glass. Add a few drops of lime juice, and fill with 7-up.", @@ -56523,7 +56523,7 @@ "7-Up\u00ae soda" ], "title": "Ragnar recipe", - "url": "http://www.drinksmixer.com/drink6286.html" + "url": "https://www.drinksmixer.com/drink6286.html" }, { "directions": "Pour absolut kurant into a tall, or highball glass filled with ice. Add rose's lime (to taste), fill with sprite, and serve.", @@ -56533,7 +56533,7 @@ "Sprite\u00ae soda" ], "title": "Ragnar #2 recipe", - "url": "http://www.drinksmixer.com/drink6287.html" + "url": "https://www.drinksmixer.com/drink6287.html" }, { "directions": "Pour the vodka into a highball glass. Fill with ice cubes, and add sprite.", @@ -56542,7 +56542,7 @@ "Sprite\u00ae soda" ], "title": "Ragnar #3 recipe", - "url": "http://www.drinksmixer.com/drink6288.html" + "url": "https://www.drinksmixer.com/drink6288.html" }, { "directions": "Shake all ingredients together, pour into a hurricane glass filled with ice, and serve.", @@ -56552,7 +56552,7 @@ "orange juice" ], "title": "Rain Man recipe", - "url": "http://www.drinksmixer.com/drink6289.html" + "url": "https://www.drinksmixer.com/drink6289.html" }, { "directions": "Pour slowly into a hurricane glass, in order.", @@ -56566,7 +56566,7 @@ "peach schnapps" ], "title": "Rainbow Brew recipe", - "url": "http://www.drinksmixer.com/drink6290.html" + "url": "https://www.drinksmixer.com/drink6290.html" }, { "directions": "Chill both liquors and serve in a chilled shot glass.", @@ -56575,7 +56575,7 @@ "Rumple Minze\u00ae peppermint liqueur" ], "title": "Rambo Shot recipe", - "url": "http://www.drinksmixer.com/drink6291.html" + "url": "https://www.drinksmixer.com/drink6291.html" }, { "directions": "Pour all ingredients into a 10 oz old-fashioned glass, fill with crushed ice and shake. Garnish with a red cherry and a slice of lime.", @@ -56585,7 +56585,7 @@ "lime juice" ], "title": "Ramcooler recipe", - "url": "http://www.drinksmixer.com/drink6292.html" + "url": "https://www.drinksmixer.com/drink6292.html" }, { "directions": "Pour ingredients into mason jar. Stir, and serve.", @@ -56596,7 +56596,7 @@ "water" ], "title": "Rangers Rocker recipe", - "url": "http://www.drinksmixer.com/drink6293.html" + "url": "https://www.drinksmixer.com/drink6293.html" }, { "directions": "Pour the raspberry vodka and soda into a highball glass almost filled with ice cubes. Stir well, and serve.", @@ -56605,7 +56605,7 @@ "lemon-lime soda" ], "title": "Raspberry Cooler recipe", - "url": "http://www.drinksmixer.com/drink6294.html" + "url": "https://www.drinksmixer.com/drink6294.html" }, { "directions": "Combine all ingredients and stir until sugar is dissolved. Store in large bottles for 22 days. Pour into gift bottles and seal.", @@ -56615,7 +56615,7 @@ "sugar" ], "title": "Raspberry Cordial recipe", - "url": "http://www.drinksmixer.com/drink6295.html" + "url": "https://www.drinksmixer.com/drink6295.html" }, { "directions": "Blend all ingredients in an electric blender at low speed. Pour into a champagne flute and serve.", @@ -56627,7 +56627,7 @@ "heavy cream" ], "title": "Raspberry Cream recipe", - "url": "http://www.drinksmixer.com/drink6296.html" + "url": "https://www.drinksmixer.com/drink6296.html" }, { "directions": "Mix all ingredients in a glass. Add ice and serve.", @@ -56637,7 +56637,7 @@ "raspberry liqueur" ], "title": "Raspberry Kamikaze recipe", - "url": "http://www.drinksmixer.com/drink6297.html" + "url": "https://www.drinksmixer.com/drink6297.html" }, { "directions": "Pour all ingredients over ice in a shaker, and shake three to four times. Pour into a collins glass and garnish with a lemon wedge.", @@ -56651,7 +56651,7 @@ "Chambord\u00ae raspberry liqueur" ], "title": "Raspberry Long Island Ice Tea recipe", - "url": "http://www.drinksmixer.com/drink6298.html" + "url": "https://www.drinksmixer.com/drink6298.html" }, { "directions": "Pour pink grapefruit juice and ginger ale into a punch bowl. Add raspberry juice or 12 oz frozen raspberries (stir to un-thaw). Add sherbet and stir until melted.", @@ -56662,7 +56662,7 @@ "ginger ale" ], "title": "Raspberry Punch recipe", - "url": "http://www.drinksmixer.com/drink6299.html" + "url": "https://www.drinksmixer.com/drink6299.html" }, { "directions": "Pour ingredients into a brandy snifter. Stir, and serve.", @@ -56671,7 +56671,7 @@ "Chambord\u00ae raspberry liqueur" ], "title": "Raspberry Release recipe", - "url": "http://www.drinksmixer.com/drink6300.html" + "url": "https://www.drinksmixer.com/drink6300.html" }, { "directions": "Pour equal parts raspberry vodka and kahlua into a glass over ice cubes. Fill with milk, shake until frothy, and serve.", @@ -56681,7 +56681,7 @@ "milk" ], "title": "Raspberry Russian recipe", - "url": "http://www.drinksmixer.com/drink6301.html" + "url": "https://www.drinksmixer.com/drink6301.html" }, { "directions": "Combine vodka and cranberry juice over ice in a shaker. Shake well and strain into a shot glass. Top with a splash of 7-Up and serve.", @@ -56691,7 +56691,7 @@ "7-Up\u00ae soda" ], "title": "Raspberry Sex recipe", - "url": "http://www.drinksmixer.com/drink6302.html" + "url": "https://www.drinksmixer.com/drink6302.html" }, { "directions": "Combine ingredients in a large punch bowl and serve.", @@ -56701,7 +56701,7 @@ "pineapple juice" ], "title": "Raspberry Sherbet Punch recipe", - "url": "http://www.drinksmixer.com/drink6303.html" + "url": "https://www.drinksmixer.com/drink6303.html" }, { "directions": "Mix well in a highball glass, and serve.", @@ -56710,7 +56710,7 @@ "raspberry schnapps" ], "title": "Raspberry Stupid recipe", - "url": "http://www.drinksmixer.com/drink6304.html" + "url": "https://www.drinksmixer.com/drink6304.html" }, { "directions": "Shake all ingredients with ice, strain into a cocktail glass, and serve.", @@ -56722,7 +56722,7 @@ "egg" ], "title": "Rattlesnake Cocktail recipe", - "url": "http://www.drinksmixer.com/drink6305.html" + "url": "https://www.drinksmixer.com/drink6305.html" }, { "directions": "Carefully layer into a shot glass, test tube or tumbler.", @@ -56732,7 +56732,7 @@ "creme de cacao" ], "title": "Rattlesnake recipe", - "url": "http://www.drinksmixer.com/drink6306.html" + "url": "https://www.drinksmixer.com/drink6306.html" }, { "directions": "Shake ingredients with ice, and pour into a glass.", @@ -56745,7 +56745,7 @@ "grenadine syrup" ], "title": "Raw Sewage #2 recipe", - "url": "http://www.drinksmixer.com/drink6307.html" + "url": "https://www.drinksmixer.com/drink6307.html" }, { "directions": "Mix ingredients together in a cocktail shaker. Shake, strain into a highball glass, and serve.", @@ -56756,7 +56756,7 @@ "pineapple juice" ], "title": "Raw Sewage recipe", - "url": "http://www.drinksmixer.com/drink6308.html" + "url": "https://www.drinksmixer.com/drink6308.html" }, { "directions": "Add stolichnaya razberi vodka, cranberry juice and sprite to an ice-filled highball glass. Garnish with a lime wedge, and serve.", @@ -56766,7 +56766,7 @@ "Sprite\u00ae soda" ], "title": "Razberi Kicker recipe", - "url": "http://www.drinksmixer.com/drink6309.html" + "url": "https://www.drinksmixer.com/drink6309.html" }, { "directions": "Pour liquors into a hurricane glass. Add juice and grenadine, and shake well. Garnish with a flag, and serve.", @@ -56779,7 +56779,7 @@ "pineapple juice" ], "title": "Razberi Sunsplash recipe", - "url": "http://www.drinksmixer.com/drink6310.html" + "url": "https://www.drinksmixer.com/drink6310.html" }, { "directions": "Mix ingredients in a shaker with ice. Pour into a chilled cocktail glass, and serve.", @@ -56790,7 +56790,7 @@ "grenadine syrup" ], "title": "Razzberi Kazi recipe", - "url": "http://www.drinksmixer.com/drink6311.html" + "url": "https://www.drinksmixer.com/drink6311.html" }, { "directions": "Pour all ingredients over ice and serve in a collins glass.", @@ -56800,7 +56800,7 @@ "7-Up\u00ae soda" ], "title": "Razzleberry recipe", - "url": "http://www.drinksmixer.com/drink6312.html" + "url": "https://www.drinksmixer.com/drink6312.html" }, { "directions": "Combine ingredients in a (just over) one-liter bottle. Chill in freezer for two hours. Serve in shot glasses.", @@ -56810,7 +56810,7 @@ "Blue Curacao liqueur" ], "title": "Real Romulan Ale recipe", - "url": "http://www.drinksmixer.com/drink6313.html" + "url": "https://www.drinksmixer.com/drink6313.html" }, { "directions": "Shake vodka and liqueur with ice, and strain into a chilled cocktail glass. Garnish with orange peel, and serve.", @@ -56820,7 +56820,7 @@ "orange" ], "title": "The Real Windex recipe", - "url": "http://www.drinksmixer.com/drink6314.html" + "url": "https://www.drinksmixer.com/drink6314.html" }, { "directions": "Almost fill a shot glass with amaretto. Carefully pour the blue curacao into the middle to create a blue \"twist\".", @@ -56829,7 +56829,7 @@ "Blue Curacao liqueur" ], "title": "Reality Twist recipe", - "url": "http://www.drinksmixer.com/drink6315.html" + "url": "https://www.drinksmixer.com/drink6315.html" }, { "directions": "Mix ingredients well and pour over ice cubes.", @@ -56839,7 +56839,7 @@ "half-and-half" ], "title": "Rebel Russian recipe", - "url": "http://www.drinksmixer.com/drink6316.html" + "url": "https://www.drinksmixer.com/drink6316.html" }, { "directions": "Combine bourbon, cointreau, lemon juice, and egg white in a shaker half-filled with ice cubes. Shake well, and pour into an old-fashioned glass. Garnish with an orange slice, and serve.", @@ -56850,7 +56850,7 @@ "egg" ], "title": "Rebel Yell Cocktail recipe", - "url": "http://www.drinksmixer.com/drink6317.html" + "url": "https://www.drinksmixer.com/drink6317.html" }, { "directions": "Shake all ingredients together, pour into a highball glass, and serve.", @@ -56861,7 +56861,7 @@ "sweet and sour mix" ], "title": "Red Alert recipe", - "url": "http://www.drinksmixer.com/drink6318.html" + "url": "https://www.drinksmixer.com/drink6318.html" }, { "directions": "Pour the kahlua into a shot glass. Carefully layer the grenadine on top, and serve.", @@ -56870,7 +56870,7 @@ "grenadine syrup" ], "title": "The Red and Black recipe", - "url": "http://www.drinksmixer.com/drink6319.html" + "url": "https://www.drinksmixer.com/drink6319.html" }, { "directions": "Shake all ingredients with ice, strain into a cocktail glass, and serve.", @@ -56881,7 +56881,7 @@ "grenadine syrup" ], "title": "Red Apple recipe", - "url": "http://www.drinksmixer.com/drink6320.html" + "url": "https://www.drinksmixer.com/drink6320.html" }, { "directions": "Shake over ice, pour into a shot glass, and serve.", @@ -56891,7 +56891,7 @@ "cranberry juice" ], "title": "Red Baron #2 recipe", - "url": "http://www.drinksmixer.com/drink6321.html" + "url": "https://www.drinksmixer.com/drink6321.html" }, { "directions": "Carefully layer or float schnapps on top of rumple minze in a shot glass.", @@ -56900,7 +56900,7 @@ "cinnamon schnapps" ], "title": "Red Baron recipe", - "url": "http://www.drinksmixer.com/drink6322.html" + "url": "https://www.drinksmixer.com/drink6322.html" }, { "directions": "Shake all ingredients with ice, strain into a cocktail glass, and serve.", @@ -56911,7 +56911,7 @@ "grenadine syrup" ], "title": "Red Cloud recipe", - "url": "http://www.drinksmixer.com/drink6323.html" + "url": "https://www.drinksmixer.com/drink6323.html" }, { "directions": "Mix in a shot glass, and serve.", @@ -56920,7 +56920,7 @@ "whiskey" ], "title": "Red Dragons Breath recipe", - "url": "http://www.drinksmixer.com/drink6324.html" + "url": "https://www.drinksmixer.com/drink6324.html" }, { "directions": "Thaw strawberries. Add to a blender with bananas, rum and banana liqueur. Top with ice. Blend until smooth, and pour into hurricane glasses.", @@ -56931,7 +56931,7 @@ "banana liqueur" ], "title": "Red Drink recipe", - "url": "http://www.drinksmixer.com/drink6325.html" + "url": "https://www.drinksmixer.com/drink6325.html" }, { "directions": "Pour liquors over ice in a collins glass, and almost fill with surge soda. Top off with cherry juice, and shake. Garnish with a cherry, and serve.", @@ -56944,7 +56944,7 @@ "cherry juice" ], "title": "Red Eisentrout recipe", - "url": "http://www.drinksmixer.com/drink6326.html" + "url": "https://www.drinksmixer.com/drink6326.html" }, { "directions": "Pour refrigerated tomato juice into a large frosted mug. Over tomato juice, pour cold beer. Do not stir. Crack egg, drop contents into mug. Do not stir. Discard eggshell, and serve.", @@ -56954,7 +56954,7 @@ "egg" ], "title": "Red Eye a la Cocktail recipe", - "url": "http://www.drinksmixer.com/drink6327.html" + "url": "https://www.drinksmixer.com/drink6327.html" }, { "directions": "Mix together in a shot glass and serve.", @@ -56965,7 +56965,7 @@ "151 proof rum" ], "title": "Red Eyed Hell recipe", - "url": "http://www.drinksmixer.com/drink6328.html" + "url": "https://www.drinksmixer.com/drink6328.html" }, { "directions": "Pour vodka into a beer glass one half to three-quarters filled with beer. Top with tomato juice, and serve.", @@ -56975,7 +56975,7 @@ "tomato juice" ], "title": "Red Eye recipe", - "url": "http://www.drinksmixer.com/drink6329.html" + "url": "https://www.drinksmixer.com/drink6329.html" }, { "directions": "Shake with ice and strain into a highball glass with ice.", @@ -56986,7 +56986,7 @@ "cranberry juice" ], "title": "Red Frog recipe", - "url": "http://www.drinksmixer.com/drink6330.html" + "url": "https://www.drinksmixer.com/drink6330.html" }, { "directions": "Combine the gin and cherry heering in a mixing glass half-filled with crushed ice. Stir well, and strain into a cocktail glass. Garnish with a maraschino cherry, and serve.", @@ -56995,7 +56995,7 @@ "Heering\u00ae cherry liqueur" ], "title": "Red Gin recipe", - "url": "http://www.drinksmixer.com/drink6331.html" + "url": "https://www.drinksmixer.com/drink6331.html" }, { "directions": "Blend, pour into a collins glass half-filled with crushed ice, and serve.", @@ -57007,7 +57007,7 @@ "Monin\u00ae strawberry syrup" ], "title": "Red Hope recipe", - "url": "http://www.drinksmixer.com/drink6332.html" + "url": "https://www.drinksmixer.com/drink6332.html" }, { "directions": "Mix together or float redrum on top. Serve cold in a beer pilsner.", @@ -57016,7 +57016,7 @@ "Hornsby's Draft\u00ae cider" ], "title": "Red Horn recipe", - "url": "http://www.drinksmixer.com/drink6333.html" + "url": "https://www.drinksmixer.com/drink6333.html" }, { "directions": "Shake briefly, pour into an ice-filled hurricane glass, and serve.", @@ -57028,7 +57028,7 @@ "orange juice" ], "title": "Red Hot Lover recipe", - "url": "http://www.drinksmixer.com/drink6334.html" + "url": "https://www.drinksmixer.com/drink6334.html" }, { "directions": "Mix, and serve in a whiskey sour glass.", @@ -57037,7 +57037,7 @@ "Jagermeister\u00ae herbal liqueur" ], "title": "Red Hot recipe", - "url": "http://www.drinksmixer.com/drink6335.html" + "url": "https://www.drinksmixer.com/drink6335.html" }, { "directions": "Pour over ice in a highball glass. Stir, and serve.", @@ -57047,7 +57047,7 @@ "cranberry juice" ], "title": "Red Hurricane recipe", - "url": "http://www.drinksmixer.com/drink6336.html" + "url": "https://www.drinksmixer.com/drink6336.html" }, { "directions": "Shake with ice, and strain into a shot glass.", @@ -57057,7 +57057,7 @@ "cranberry juice" ], "title": "Red Lobster recipe", - "url": "http://www.drinksmixer.com/drink6337.html" + "url": "https://www.drinksmixer.com/drink6337.html" }, { "directions": "Pour vodka, watermelon and peach schnapps over ice in a highball glass. Top with sprite, stir well, add grenadine and serve. Garnish with a slice of lemon (or lime), or a piece of melon.", @@ -57069,7 +57069,7 @@ "grenadine syrup" ], "title": "Red Melon recipe", - "url": "http://www.drinksmixer.com/drink6338.html" + "url": "https://www.drinksmixer.com/drink6338.html" }, { "directions": "Combine vodka and hot damn in a shot glass, stir and serve.", @@ -57078,7 +57078,7 @@ "DeKuyper\u00ae Hot Damn cinnamon schnapps" ], "title": "Red Mosquito recipe", - "url": "http://www.drinksmixer.com/drink6339.html" + "url": "https://www.drinksmixer.com/drink6339.html" }, { "directions": "Mix the vodka and the campari in a cocktail glass, and add four ice cubes. Rest for seven minutes, and serve.", @@ -57087,7 +57087,7 @@ "Campari\u00ae bitters" ], "title": "Red Nail recipe", - "url": "http://www.drinksmixer.com/drink6340.html" + "url": "https://www.drinksmixer.com/drink6340.html" }, { "directions": "Shake vodka, cinzano orancio and orange zest in a jigger with ice. Pour into a martini / cocktail glass, and serve.", @@ -57097,7 +57097,7 @@ "oranges" ], "title": "Red Orange recipe", - "url": "http://www.drinksmixer.com/drink6341.html" + "url": "https://www.drinksmixer.com/drink6341.html" }, { "directions": "Pour rums and juices into a pint glass one-quarter filled with ice. Almost fill with sweet and sour, top with grenadine, and mix.", @@ -57110,7 +57110,7 @@ "grenadine syrup" ], "title": "Red Ox recipe", - "url": "http://www.drinksmixer.com/drink6342.html" + "url": "https://www.drinksmixer.com/drink6342.html" }, { "directions": "Shake all ingredients with ice, strain into a cocktail glass, and serve.", @@ -57121,7 +57121,7 @@ "grenadine syrup" ], "title": "Red Raider recipe", - "url": "http://www.drinksmixer.com/drink6343.html" + "url": "https://www.drinksmixer.com/drink6343.html" }, { "directions": "Stir, add ice, and serve.", @@ -57131,7 +57131,7 @@ "Pepsi\u00ae cola" ], "title": "Red Rasputin recipe", - "url": "http://www.drinksmixer.com/drink6344.html" + "url": "https://www.drinksmixer.com/drink6344.html" }, { "directions": "Build drink in a collins glass.", @@ -57142,7 +57142,7 @@ "grenadine syrup" ], "title": "Red Rooster recipe", - "url": "http://www.drinksmixer.com/drink6345.html" + "url": "https://www.drinksmixer.com/drink6345.html" }, { "directions": "Pour crown royal into a shot glass, add amaretto, and serve.", @@ -57151,7 +57151,7 @@ "amaretto almond liqueur" ], "title": "Red Royal Shot recipe", - "url": "http://www.drinksmixer.com/drink6346.html" + "url": "https://www.drinksmixer.com/drink6346.html" }, { "directions": "Combine ingredients in a mixing glass half-filled with ice cubes. Stir well, strain into a cocktail glass, and serve.", @@ -57161,7 +57161,7 @@ "dry vermouth" ], "title": "Red Ruby recipe", - "url": "http://www.drinksmixer.com/drink6347.html" + "url": "https://www.drinksmixer.com/drink6347.html" }, { "directions": "Heat and pour into an irish coffee cup. Top with whipped cream, garnish with a tall cinnamon stick, and serve.", @@ -57172,7 +57172,7 @@ "cranberry juice" ], "title": "Red Rudolph recipe", - "url": "http://www.drinksmixer.com/drink6348.html" + "url": "https://www.drinksmixer.com/drink6348.html" }, { "directions": "Mix over ice, strain into a shot glass, and serve.", @@ -57182,7 +57182,7 @@ "cranberry juice" ], "title": "Red Snapper #2 recipe", - "url": "http://www.drinksmixer.com/drink6349.html" + "url": "https://www.drinksmixer.com/drink6349.html" }, { "directions": "Shake, pour into an old-fashioned glass, and serve.", @@ -57192,7 +57192,7 @@ "cranberry juice" ], "title": "Red Snapper recipe", - "url": "http://www.drinksmixer.com/drink6350.html" + "url": "https://www.drinksmixer.com/drink6350.html" }, { "directions": "Mix vodka, sambuca and a few drops of tabasco sauce in a shot glass.", @@ -57202,7 +57202,7 @@ "Tabasco\u00ae sauce" ], "title": "Red Square recipe", - "url": "http://www.drinksmixer.com/drink6351.html" + "url": "https://www.drinksmixer.com/drink6351.html" }, { "directions": "Pour tequila into a shot glass. Add tabasco sauce until a strong red color. Serve with a half-slice of lemon on the rim.", @@ -57211,7 +57211,7 @@ "Tabasco\u00ae sauce" ], "title": "Red Tequila recipe", - "url": "http://www.drinksmixer.com/drink6352.html" + "url": "https://www.drinksmixer.com/drink6352.html" }, { "directions": "Build gin, pisang ambon, sprite and lime juice in a highball glass. Top with grenadine, garnish with a lime boat, and serve.", @@ -57223,7 +57223,7 @@ "grenadine syrup" ], "title": "Red Velvet recipe", - "url": "http://www.drinksmixer.com/drink6353.html" + "url": "https://www.drinksmixer.com/drink6353.html" }, { "directions": "Mix vodka, vermouth and creme de cassis and pour over a scoop of crushed ice in a cocktail glass. Garnish with a slice of orange, and serve.", @@ -57233,7 +57233,7 @@ "creme de cassis" ], "title": "Red Vodkatini recipe", - "url": "http://www.drinksmixer.com/drink6354.html" + "url": "https://www.drinksmixer.com/drink6354.html" }, { "directions": "Mix large parts of icing sugar with red wine in a punch bowl, and stir well. Add the soda, plenty of ice, and drop in a few orange (or lemon) slices. Serve immediately.", @@ -57244,7 +57244,7 @@ "oranges" ], "title": "Red Wine Punch recipe", - "url": "http://www.drinksmixer.com/drink6355.html" + "url": "https://www.drinksmixer.com/drink6355.html" }, { "directions": "Pour pisang ambon, lemon squash and ice cubes into a blender and mix. Pour into a tall glass, add sprite and strawberry syrup, and serve.", @@ -57255,7 +57255,7 @@ "strawberry syrup" ], "title": "Red Zalo recipe", - "url": "http://www.drinksmixer.com/drink6356.html" + "url": "https://www.drinksmixer.com/drink6356.html" }, { "directions": "Carefully layer, in order, into a shot glass; aftershock, goldschlager, then schnapps.", @@ -57265,7 +57265,7 @@ "peppermint schnapps" ], "title": "Red, White and Blue recipe", - "url": "http://www.drinksmixer.com/drink6357.html" + "url": "https://www.drinksmixer.com/drink6357.html" }, { "directions": "Combine ingredients in a shaker half-filled with ice cubes. Shake well, and strain into a cocktail glass.", @@ -57277,7 +57277,7 @@ "grenadine syrup" ], "title": "Redcoat recipe", - "url": "http://www.drinksmixer.com/drink6358.html" + "url": "https://www.drinksmixer.com/drink6358.html" }, { "directions": "Pour the vanilla schnapps into a shot glass. Carefully layer the irish cream on top, and serve.", @@ -57286,7 +57286,7 @@ "Irish cream" ], "title": "Redhead's Nipple recipe", - "url": "http://www.drinksmixer.com/drink6359.html" + "url": "https://www.drinksmixer.com/drink6359.html" }, { "directions": "Stir all ingredients (except cherry) with ice and strain into a cocktail glass. Top with the cherry and serve.", @@ -57297,7 +57297,7 @@ "cherry" ], "title": "Reform Cocktail recipe", - "url": "http://www.drinksmixer.com/drink6360.html" + "url": "https://www.drinksmixer.com/drink6360.html" }, { "directions": "Fill one-quarter of a blender (half-filled with ice) with vodka. Almost fill completely with pine-orange-banana fruit juice. Add fresh strawberries and sugar, blend, and pour into glasses. Serve with an orange slice.", @@ -57308,7 +57308,7 @@ "strawberries" ], "title": "Reggae Ambassador recipe", - "url": "http://www.drinksmixer.com/drink6361.html" + "url": "https://www.drinksmixer.com/drink6361.html" }, { "directions": "Pour two ounces of carbonated water into a collins glass, add sugar and stir. Add ice cubes, gin, and fill with carbonated water. Stir again, and garnish with a twist of lemon and a spiral of orange on the rim.", @@ -57318,7 +57318,7 @@ "powdered sugar" ], "title": "Remsen Cooler recipe", - "url": "http://www.drinksmixer.com/drink6362.html" + "url": "https://www.drinksmixer.com/drink6362.html" }, { "directions": "Mix liquors with the coffee in an irish coffee cup, and serve.", @@ -57329,7 +57329,7 @@ "rum" ], "title": "Rensselaer Slam recipe", - "url": "http://www.drinksmixer.com/drink6363.html" + "url": "https://www.drinksmixer.com/drink6363.html" }, { "directions": "Add ingredients, chilled, to a glass in order: whiskey, orange juice, and mountain dew. Stir lightly, and serve.", @@ -57339,7 +57339,7 @@ "orange juice" ], "title": "Reptile recipe", - "url": "http://www.drinksmixer.com/drink6364.html" + "url": "https://www.drinksmixer.com/drink6364.html" }, { "directions": "Mix jagermeister and irish cream over ice cubes, strain into a cordial glass, and serve.", @@ -57348,7 +57348,7 @@ "Bailey's\u00ae Irish cream" ], "title": "Reservoir Dog recipe", - "url": "http://www.drinksmixer.com/drink6365.html" + "url": "https://www.drinksmixer.com/drink6365.html" }, { "directions": "Shake all ingredients with ice, strain into a cocktail glass, and serve.", @@ -57358,7 +57358,7 @@ "lemons" ], "title": "Resolute Cocktail recipe", - "url": "http://www.drinksmixer.com/drink6366.html" + "url": "https://www.drinksmixer.com/drink6366.html" }, { "directions": "Pour gin and grapefruit juice into a highball glass. Add four or five ice cubes, and fill with tonic water. Garnish with a lime twist and serve.", @@ -57368,7 +57368,7 @@ "tonic water" ], "title": "Reynolds Special recipe", - "url": "http://www.drinksmixer.com/drink6367.html" + "url": "https://www.drinksmixer.com/drink6367.html" }, { "directions": "Stir together in a mixing glass. Garnish with a twist of orange, and serve.", @@ -57379,7 +57379,7 @@ "Campari\u00ae bitters" ], "title": "Rheingold recipe", - "url": "http://www.drinksmixer.com/drink6368.html" + "url": "https://www.drinksmixer.com/drink6368.html" }, { "directions": "Layer ingredients, in order, into a shot glass. Ignite, burn for a few seconds, and extinguish. Serve.", @@ -57389,7 +57389,7 @@ "Cointreau\u00ae orange liqueur" ], "title": "Rhino recipe", - "url": "http://www.drinksmixer.com/drink6369.html" + "url": "https://www.drinksmixer.com/drink6369.html" }, { "directions": "1. Remove strings from rhubarb, wash, and cut into 1/2\" pieces. Wrap rhubarb in cheesecloth and tie shut. \r", @@ -57400,7 +57400,7 @@ "rosewater" ], "title": "Rhubarb Syrup recipe", - "url": "http://www.drinksmixer.com/drink6370.html" + "url": "https://www.drinksmixer.com/drink6370.html" }, { "directions": "Pour orange juice into a 16-ounce glass half-filled with vodka. Stir, add a cherry, and serve.", @@ -57410,7 +57410,7 @@ "cherry" ], "title": "Richie 50 recipe", - "url": "http://www.drinksmixer.com/drink6371.html" + "url": "https://www.drinksmixer.com/drink6371.html" }, { "directions": "Mix vodka, whiskey and bailey's irish cream together in a beer pilsner. Add coffee and sugar, blend, and serve.", @@ -57422,7 +57422,7 @@ "brown sugar" ], "title": "Richie Family recipe", - "url": "http://www.drinksmixer.com/drink6372.html" + "url": "https://www.drinksmixer.com/drink6372.html" }, { "directions": "Shake with ice until frothy. Pour into a cocktail glass, and garnish with a jalepeno stuffed olive.", @@ -57434,7 +57434,7 @@ "Rose's\u00ae lime juice" ], "title": "Ricky Martini recipe", - "url": "http://www.drinksmixer.com/drink6373.html" + "url": "https://www.drinksmixer.com/drink6373.html" }, { "directions": "Pour sambuca into a shot glass and slowly add orange juice. Serve.", @@ -57443,7 +57443,7 @@ "orange juice" ], "title": "Rick recipe", - "url": "http://www.drinksmixer.com/drink6374.html" + "url": "https://www.drinksmixer.com/drink6374.html" }, { "directions": "Pour tequila into a shot glass, add tabasco sauce, and serve.", @@ -57452,7 +57452,7 @@ "Tabasco\u00ae sauce" ], "title": "Riddler's Shot recipe", - "url": "http://www.drinksmixer.com/drink6375.html" + "url": "https://www.drinksmixer.com/drink6375.html" }, { "directions": "Add strawberry margarita mix, tequila, and triple sec to a blender with crushed ice. Blend, and serve with a straw in a chilled glass or mug.", @@ -57462,7 +57462,7 @@ "strawberry margarita mix" ], "title": "Rieber Red Margarita recipe", - "url": "http://www.drinksmixer.com/drink6376.html" + "url": "https://www.drinksmixer.com/drink6376.html" }, { "directions": "Mix rum, midori, and lime juice in a highball glass with crushed ice. Fill with cola, garnish with a maraschino cherry, and serve.", @@ -57473,7 +57473,7 @@ "cola" ], "title": "Riedinger recipe", - "url": "http://www.drinksmixer.com/drink6377.html" + "url": "https://www.drinksmixer.com/drink6377.html" }, { "directions": "Combine all of the ingredients in a mixing glass half-filled with ice cubes. Stir well, strain into a cocktail glass, and serve.", @@ -57483,7 +57483,7 @@ "bitters" ], "title": "Riley's Sparrow recipe", - "url": "http://www.drinksmixer.com/drink6378.html" + "url": "https://www.drinksmixer.com/drink6378.html" }, { "directions": "Shake first six ingredients with cracked ice and strain into a chilled cocktail glass. Add a dash of raspberry syrup, garnish with a lime slice, and serve.", @@ -57497,7 +57497,7 @@ "raspberry syrup" ], "title": "Riley recipe", - "url": "http://www.drinksmixer.com/drink6379.html" + "url": "https://www.drinksmixer.com/drink6379.html" }, { "directions": "Pour ingredients, in order, into a hurricane glass with four ice cubes. ", @@ -57509,7 +57509,7 @@ "grenadine syrup" ], "title": "Ringo recipe", - "url": "http://www.drinksmixer.com/drink6380.html" + "url": "https://www.drinksmixer.com/drink6380.html" }, { "directions": "Add all ingredients to a shaker and shake well. Pour into a whiskey sour glass with ice and top with an orange slice.", @@ -57524,7 +57524,7 @@ "pineapple juice" ], "title": "Rising Skirt recipe", - "url": "http://www.drinksmixer.com/drink6381.html" + "url": "https://www.drinksmixer.com/drink6381.html" }, { "directions": "Pour blue curacao, amaretto and lemon juice into a champagne flute filled with champagne. Stir, add a twist of lemon, and serve.", @@ -57535,7 +57535,7 @@ "Champagne" ], "title": "Ritz Fizz recipe", - "url": "http://www.drinksmixer.com/drink6382.html" + "url": "https://www.drinksmixer.com/drink6382.html" }, { "directions": "Pour ingredients into a highball glass, and serve.", @@ -57545,7 +57545,7 @@ "Crown Royal\u00ae Canadian whisky" ], "title": "Roadkill recipe", - "url": "http://www.drinksmixer.com/drink6383.html" + "url": "https://www.drinksmixer.com/drink6383.html" }, { "directions": "Mix equal parts of each liquor in a tall glass. Top with fruit punch (berry flavored recommended), and serve with ice.", @@ -57556,7 +57556,7 @@ "fruit punch" ], "title": "Roadrunner Punch recipe", - "url": "http://www.drinksmixer.com/drink6384.html" + "url": "https://www.drinksmixer.com/drink6384.html" }, { "directions": "Pour the vodka, curacao and vermouth over ice cubes in a glass. Add desired amount of lemon juice, and half as much in sprite. Add a few drops of syrup, stir, and serve.", @@ -57569,7 +57569,7 @@ "strawberry syrup" ], "title": "Rob Love recipe", - "url": "http://www.drinksmixer.com/drink6385.html" + "url": "https://www.drinksmixer.com/drink6385.html" }, { "directions": "Pour bourbon, lime and cherry juice into a highball glass filled with crushed ice. Fill with cola, stir gently and garnish with a cherry. Serve.", @@ -57580,7 +57580,7 @@ "cola" ], "title": "Robicheaux recipe", - "url": "http://www.drinksmixer.com/drink6386.html" + "url": "https://www.drinksmixer.com/drink6386.html" }, { "directions": "Shake all ingredients with ice, strain into a cocktail glass, and serve.", @@ -57590,7 +57590,7 @@ "cranberry juice" ], "title": "Robin's Nest recipe", - "url": "http://www.drinksmixer.com/drink6387.html" + "url": "https://www.drinksmixer.com/drink6387.html" }, { "directions": "Stir, without ice, and serve.", @@ -57599,7 +57599,7 @@ "root beer schnapps" ], "title": "Robitussin recipe", - "url": "http://www.drinksmixer.com/drink6388.html" + "url": "https://www.drinksmixer.com/drink6388.html" }, { "directions": "Combine jack daniel's, vodka and grenadine in a highball glass. Mix well, add ice, and serve.", @@ -57609,7 +57609,7 @@ "grenadine syrup" ], "title": "Robot Cocktail recipe", - "url": "http://www.drinksmixer.com/drink6389.html" + "url": "https://www.drinksmixer.com/drink6389.html" }, { "directions": "Shake all ingredients with ice, strain into a cocktail glass, and serve.", @@ -57620,7 +57620,7 @@ "orange juice" ], "title": "Robson Cocktail recipe", - "url": "http://www.drinksmixer.com/drink6390.html" + "url": "https://www.drinksmixer.com/drink6390.html" }, { "directions": "Pour vodka into a highball glass. Add schweppes until half-filled, and fill with fruit soda. Top with lime juice, and serve.", @@ -57631,7 +57631,7 @@ "fruit soda" ], "title": "Robyn recipe", - "url": "http://www.drinksmixer.com/drink6391.html" + "url": "https://www.drinksmixer.com/drink6391.html" }, { "directions": "Pour ingredients into a shot glass, and serve.", @@ -57641,7 +57641,7 @@ "brandy" ], "title": "Rocha-Gil recipe", - "url": "http://www.drinksmixer.com/drink6392.html" + "url": "https://www.drinksmixer.com/drink6392.html" }, { "directions": "Stir all ingredients with ice, strain into a cocktail glass, and serve.", @@ -57651,7 +57651,7 @@ "dry vermouth" ], "title": "Rock and Rye Cocktail recipe", - "url": "http://www.drinksmixer.com/drink6393.html" + "url": "https://www.drinksmixer.com/drink6393.html" }, { "directions": "Shake vodka, rock and rye, and lime juice with ice. Strain into a ice filled collins glass, top with lemon soda and stir gently. Garnish with a slice of lime, and serve.", @@ -57662,7 +57662,7 @@ "lemon soda" ], "title": "Rock and Rye Cooler recipe", - "url": "http://www.drinksmixer.com/drink6394.html" + "url": "https://www.drinksmixer.com/drink6394.html" }, { "directions": "Pour razzmatazz and crown royal into an ice-filled glass. Fill with cranberry juice, and serve.", @@ -57672,7 +57672,7 @@ "cranberry juice" ], "title": "Rock Lobster recipe", - "url": "http://www.drinksmixer.com/drink6395.html" + "url": "https://www.drinksmixer.com/drink6395.html" }, { "directions": "Pour rock and rye and bitters into a coffee mug. Add lemon slice, boiling water and cinnamon stick. Stir, sprinkle with grated nutmeg, and serve.", @@ -57685,7 +57685,7 @@ "nutmeg" ], "title": "Rock-and-Rye Toddy recipe", - "url": "http://www.drinksmixer.com/drink6396.html" + "url": "https://www.drinksmixer.com/drink6396.html" }, { "directions": "Mix champagne, non-sparkling white wine, vodka, gin, and juice in a 10 liter punch bowl.", @@ -57698,7 +57698,7 @@ "orange juice" ], "title": "Rocket Fuel #2 recipe", - "url": "http://www.drinksmixer.com/drink6397.html" + "url": "https://www.drinksmixer.com/drink6397.html" }, { "directions": "Pour ingredients, in order, into a shot glass. Serve.", @@ -57708,7 +57708,7 @@ "Blue Curacao liqueur" ], "title": "Rocket Fuel #3 recipe", - "url": "http://www.drinksmixer.com/drink6398.html" + "url": "https://www.drinksmixer.com/drink6398.html" }, { "directions": "Combine in a whiskey sour glass, and serve.", @@ -57718,7 +57718,7 @@ "white rum" ], "title": "Rocket Fuel recipe", - "url": "http://www.drinksmixer.com/drink6399.html" + "url": "https://www.drinksmixer.com/drink6399.html" }, { "directions": "Add all liquors to a shaker with ice, and shake. Pour into a hurricane glass over grenadine (to taste). Add orange juice, pineapple juice and sprite (to taste). Garnish with a candied cherry, and serve.", @@ -57733,7 +57733,7 @@ "grenadine syrup" ], "title": "Rockin' Killer Koolaid recipe", - "url": "http://www.drinksmixer.com/drink6400.html" + "url": "https://www.drinksmixer.com/drink6400.html" }, { "directions": "Shake all ingredients with ice, strain into a cocktail glass, and serve.", @@ -57743,7 +57743,7 @@ "orange juice" ], "title": "Rococo recipe", - "url": "http://www.drinksmixer.com/drink6401.html" + "url": "https://www.drinksmixer.com/drink6401.html" }, { "directions": "Combine ingredients in a shaker over ice and chill. Strain, pour into a shot glass, and serve.", @@ -57753,7 +57753,7 @@ "Rose's\u00ae lime juice" ], "title": "Rocky Mountain Mother Fucker recipe", - "url": "http://www.drinksmixer.com/drink6402.html" + "url": "https://www.drinksmixer.com/drink6402.html" }, { "directions": "Pour peach schnapps over ice in a whiskey sour glass. Fill with apple cider, stir lightly, and serve.\r", @@ -57762,7 +57762,7 @@ "apple cider" ], "title": "Rod on the Rocks recipe", - "url": "http://www.drinksmixer.com/drink6403.html" + "url": "https://www.drinksmixer.com/drink6403.html" }, { "directions": "Pour passoa, vodka, lime juice and pear soda into a collins glass half-filled with ice cubes. Stir, top with cream, and serve.", @@ -57774,7 +57774,7 @@ "whipped cream" ], "title": "Roffsing recipe", - "url": "http://www.drinksmixer.com/drink6404.html" + "url": "https://www.drinksmixer.com/drink6404.html" }, { "directions": "Pour ingredients, in order, into a cocktail glass with ice. Serve.", @@ -57785,7 +57785,7 @@ "lime juice" ], "title": "Roll Me Over recipe", - "url": "http://www.drinksmixer.com/drink6405.html" + "url": "https://www.drinksmixer.com/drink6405.html" }, { "directions": "Pour into a cocktail glass glass with ice, shake vigourously, and serve.", @@ -57794,7 +57794,7 @@ "grapefruit juice" ], "title": "Rollercoaster recipe", - "url": "http://www.drinksmixer.com/drink6406.html" + "url": "https://www.drinksmixer.com/drink6406.html" }, { "directions": "Combine ingredients in a shaker, strain into a hurricane glass over ice cubes, and serve.", @@ -57805,7 +57805,7 @@ "cranberry juice" ], "title": "Rolling Green Elixer recipe", - "url": "http://www.drinksmixer.com/drink6407.html" + "url": "https://www.drinksmixer.com/drink6407.html" }, { "directions": "Combine ingredients in a mixing glass half-filled with ice cubes. Stir well, strain into a cocktail glass, and serve.", @@ -57816,7 +57816,7 @@ "benedictine herbal liqueur" ], "title": "Rolls-Royce recipe", - "url": "http://www.drinksmixer.com/drink6408.html" + "url": "https://www.drinksmixer.com/drink6408.html" }, { "directions": "Shake ingredients, strain into a shot glass, and serve.", @@ -57826,7 +57826,7 @@ "peppermint schnapps" ], "title": "Romona Banana recipe", - "url": "http://www.drinksmixer.com/drink6409.html" + "url": "https://www.drinksmixer.com/drink6409.html" }, { "directions": "Pour rum and curacao into a tall, narrow glass. Fill (almost) with sprite, and add tabasco sauce. Add a grain of salt, and serve.", @@ -57837,7 +57837,7 @@ "Tabasco\u00ae sauce" ], "title": "Romulan Ale recipe", - "url": "http://www.drinksmixer.com/drink6410.html" + "url": "https://www.drinksmixer.com/drink6410.html" }, { "directions": "Mix ingredients in a beer mug, and serve.", @@ -57847,7 +57847,7 @@ "Southern Comfort\u00ae peach liqueur" ], "title": "Roni recipe", - "url": "http://www.drinksmixer.com/drink6411.html" + "url": "https://www.drinksmixer.com/drink6411.html" }, { "directions": "Pour together over ice in a glass, and serve.", @@ -57856,7 +57856,7 @@ "vodka" ], "title": "Rontini recipe", - "url": "http://www.drinksmixer.com/drink6412.html" + "url": "https://www.drinksmixer.com/drink6412.html" }, { "directions": "Pour both ingredients into a shot glass and serve.", @@ -57865,7 +57865,7 @@ "cinnamon schnapps" ], "title": "Rooster Piss recipe", - "url": "http://www.drinksmixer.com/drink6413.html" + "url": "https://www.drinksmixer.com/drink6413.html" }, { "directions": "Lick hand, add salt, and lick salt. Consume quickly as shots, in order; jose cuervo, orange juice, and tomate juice.", @@ -57876,7 +57876,7 @@ "salt" ], "title": "Rooster Tail recipe", - "url": "http://www.drinksmixer.com/drink6414.html" + "url": "https://www.drinksmixer.com/drink6414.html" }, { "directions": "1. Place a shot glass filled with root beer schnapps into a tumbler three-quarters filled with beer. (Beer should be just short of shot glass rim.)\r", @@ -57885,7 +57885,7 @@ "beer" ], "title": "Root Beer Barrel recipe", - "url": "http://www.drinksmixer.com/drink6415.html" + "url": "https://www.drinksmixer.com/drink6415.html" }, { "directions": "Combine the gin, lemon juice, and sugar in a shaker half-filled with ice cubes. Shake well, and strain into a collins glass almost filled with ice cubes. Add the root beer, stir well, and garnish with a maraschino cherry.", @@ -57896,7 +57896,7 @@ "root beer" ], "title": "Root Beer Fizz recipe", - "url": "http://www.drinksmixer.com/drink6416.html" + "url": "https://www.drinksmixer.com/drink6416.html" }, { "directions": "Pour vodka, galliano, and light cream into a collins glass filled with ice cubes and stir well. Fill with cola, stir lightly, top with whipped cream, and serve.", @@ -57908,7 +57908,7 @@ "whipped cream" ], "title": "Root Beer Float recipe", - "url": "http://www.drinksmixer.com/drink6417.html" + "url": "https://www.drinksmixer.com/drink6417.html" }, { "directions": "Pour vodka into a large, ice-filled glass. Fill with pepsi (do not substitute coke), swirl a splash of galliano on top, and serve.", @@ -57918,7 +57918,7 @@ "Galliano\u00ae herbal liqueur" ], "title": "Root Beer recipe", - "url": "http://www.drinksmixer.com/drink6418.html" + "url": "https://www.drinksmixer.com/drink6418.html" }, { "directions": "Combine peppermint and root beer schnapps in a hurricane glass with ice. Fill with dr pepper, or root beer, and stir. Garnish with a cherry, and serve.", @@ -57928,7 +57928,7 @@ "Dr. Pepper\u00ae soda" ], "title": "Root Canal recipe", - "url": "http://www.drinksmixer.com/drink6419.html" + "url": "https://www.drinksmixer.com/drink6419.html" }, { "directions": "Float cream on top rootbeer schnapps in a shot glass, and serve.", @@ -57937,7 +57937,7 @@ "light cream" ], "title": "Rootbeer Floatie recipe", - "url": "http://www.drinksmixer.com/drink6420.html" + "url": "https://www.drinksmixer.com/drink6420.html" }, { "directions": "Stir all ingredients with ice, strain into a cocktail glass, and serve.", @@ -57947,7 +57947,7 @@ "orange bitters" ], "title": "Rory O'More recipe", - "url": "http://www.drinksmixer.com/drink6421.html" + "url": "https://www.drinksmixer.com/drink6421.html" }, { "directions": "Rub rim of a cocktail glass with lemon juice and dip into powdered sugar. Shake vermouth, gin, brandy, lemon juice, and grenadine with ice, strain into the sugar-rimmed glass, and serve.", @@ -57960,7 +57960,7 @@ "powdered sugar" ], "title": "Rose Cocktail recipe", - "url": "http://www.drinksmixer.com/drink6422.html" + "url": "https://www.drinksmixer.com/drink6422.html" }, { "directions": "Stir all ingredients with ice, strain into a cocktail glass, and serve.", @@ -57970,7 +57970,7 @@ "cherry brandy" ], "title": "French Rose Cocktail recipe", - "url": "http://www.drinksmixer.com/drink6423.html" + "url": "https://www.drinksmixer.com/drink6423.html" }, { "directions": "Combine pineapple juice, raspberry fruit-syrup and cream with ice cubes in a shaker. Shake well, strain into a large cocktail glass, and serve.", @@ -57980,7 +57980,7 @@ "cream" ], "title": "Rose de Mai Cocktail recipe", - "url": "http://www.drinksmixer.com/drink6424.html" + "url": "https://www.drinksmixer.com/drink6424.html" }, { "directions": "Shake vodka, lime juice and triple in a shaker half-filled with ice, and strain over grapefruit juice in an ice-filled collins glass.", @@ -57991,7 +57991,7 @@ "grapefruit juice" ], "title": "Rosebud recipe", - "url": "http://www.drinksmixer.com/drink6425.html" + "url": "https://www.drinksmixer.com/drink6425.html" }, { "directions": "Stir all ingredients (except lemon peel) with ice and strain into a cocktail glass. Add the twist of lemon peel and serve.", @@ -58002,7 +58002,7 @@ "lemon" ], "title": "Roselyn Cocktail recipe", - "url": "http://www.drinksmixer.com/drink6426.html" + "url": "https://www.drinksmixer.com/drink6426.html" }, { "directions": "Stir ingredients in an old-fashioned glass with cracked ice. Add a twist of lemon peel and serve with short straws.", @@ -58013,7 +58013,7 @@ "Campari\u00ae bitters" ], "title": "Rosita recipe", - "url": "http://www.drinksmixer.com/drink6427.html" + "url": "https://www.drinksmixer.com/drink6427.html" }, { "directions": "Shake all ingredients and serve as a shot.", @@ -58026,7 +58026,7 @@ "pineapple juice" ], "title": "Rotten Pussy recipe", - "url": "http://www.drinksmixer.com/drink6428.html" + "url": "https://www.drinksmixer.com/drink6428.html" }, { "directions": "Combine the gin and chambord in a mixing glass half-filled with ice cubes. Stir well, and strain into a cocktail glass.", @@ -58035,7 +58035,7 @@ "Chambord\u00ae raspberry liqueur" ], "title": "Rouge Martini recipe", - "url": "http://www.drinksmixer.com/drink6429.html" + "url": "https://www.drinksmixer.com/drink6429.html" }, { "directions": "Pour vodka's, sour mix and lime juice into a shaker, and fill with sprite. Shake briskly, and strain into a highball glass over ice. Add a lemon slice and a cherry, and serve.", @@ -58047,7 +58047,7 @@ "Sprite\u00ae soda" ], "title": "Roxy Special recipe", - "url": "http://www.drinksmixer.com/drink6430.html" + "url": "https://www.drinksmixer.com/drink6430.html" }, { "directions": "Pour frangelico into a shot glass, carefully layer the crown royal on top, and serve.", @@ -58056,7 +58056,7 @@ "Crown Royal\u00ae Canadian whisky" ], "title": "Royal Bitch recipe", - "url": "http://www.drinksmixer.com/drink6431.html" + "url": "https://www.drinksmixer.com/drink6431.html" }, { "directions": "Shake with ice and strain into a shot glass.", @@ -58065,7 +58065,7 @@ "DeKuyper\u00ae Buttershots liqueur" ], "title": "Royal Butt recipe", - "url": "http://www.drinksmixer.com/drink6432.html" + "url": "https://www.drinksmixer.com/drink6432.html" }, { "directions": "Pour ingredients into a shaker over, shake well, and strain into a highball glass.", @@ -58077,7 +58077,7 @@ "pineapple juice" ], "title": "Royal Caribbean Fuck recipe", - "url": "http://www.drinksmixer.com/drink6433.html" + "url": "https://www.drinksmixer.com/drink6433.html" }, { "directions": "Shake all ingredients with ice, strain into a whiskey sour glass, and serve.", @@ -58088,7 +58088,7 @@ "egg" ], "title": "Royal Clover Club Cocktail recipe", - "url": "http://www.drinksmixer.com/drink6434.html" + "url": "https://www.drinksmixer.com/drink6434.html" }, { "directions": "Shake all ingredients with ice, strain into a whiskey sour glass, and serve.", @@ -58099,7 +58099,7 @@ "egg" ], "title": "Royal Cocktail recipe", - "url": "http://www.drinksmixer.com/drink6435.html" + "url": "https://www.drinksmixer.com/drink6435.html" }, { "directions": "Pour whiskey into a highball glass half-filled with ice cubes. Add cola, stir, and serve.", @@ -58108,7 +58108,7 @@ "Royal Crown\u00ae cola" ], "title": "Royal Crown Royal recipe", - "url": "http://www.drinksmixer.com/drink6436.html" + "url": "https://www.drinksmixer.com/drink6436.html" }, { "directions": "Shake all ingredients (except cola) with ice and strain into a chilled collins glass. Fill with cola and serve.", @@ -58119,7 +58119,7 @@ "Coca-Cola\u00ae" ], "title": "Royal Fizz recipe", - "url": "http://www.drinksmixer.com/drink6437.html" + "url": "https://www.drinksmixer.com/drink6437.html" }, { "directions": "Mix crown and peachtree schnapps together in a shot glass, and add juices. Mix again, and serve.", @@ -58130,7 +58130,7 @@ "pineapple juice" ], "title": "Royal Flush #2 recipe", - "url": "http://www.drinksmixer.com/drink6438.html" + "url": "https://www.drinksmixer.com/drink6438.html" }, { "directions": "Pour ingredients into a tumbler over ice, strain into a glass, and serve.", @@ -58141,7 +58141,7 @@ "cranberry juice" ], "title": "Royal Flush recipe", - "url": "http://www.drinksmixer.com/drink6439.html" + "url": "https://www.drinksmixer.com/drink6439.html" }, { "directions": "Shake all ingredients (except carbonated water) with ice and strain into a highball glass over two ice cubes. Fill with carbonated water, stir, and serve.", @@ -58153,7 +58153,7 @@ "carbonated water" ], "title": "Royal Gin Fizz recipe", - "url": "http://www.drinksmixer.com/drink6440.html" + "url": "https://www.drinksmixer.com/drink6440.html" }, { "directions": "Mix ingredients in an ice-filled cocktail shaker, and rest until ice cold. Serve in a martini glass.", @@ -58163,7 +58163,7 @@ "Blue Curacao liqueur" ], "title": "Royal Laundry recipe", - "url": "http://www.drinksmixer.com/drink6441.html" + "url": "https://www.drinksmixer.com/drink6441.html" }, { "directions": "Combine all ingredients in a blender. Blend until smooth and no chunks of ice are present. Pour into a mason jar and garnish with a fresh slice of peach, if desired.", @@ -58175,7 +58175,7 @@ "vanilla ice cream" ], "title": "Royal Peaches and Cream recipe", - "url": "http://www.drinksmixer.com/drink6442.html" + "url": "https://www.drinksmixer.com/drink6442.html" }, { "directions": "Shake well with ice and pour into a shot glass.", @@ -58184,7 +58184,7 @@ "peach schnapps" ], "title": "Royal Peach recipe", - "url": "http://www.drinksmixer.com/drink6443.html" + "url": "https://www.drinksmixer.com/drink6443.html" }, { "directions": "Add liquors and mixers into a shaker with a few ice cubes. Shake and strain into a shot glass over ice, and serve.", @@ -58196,7 +58196,7 @@ "pineapple juice" ], "title": "Royal Scandal recipe", - "url": "http://www.drinksmixer.com/drink6444.html" + "url": "https://www.drinksmixer.com/drink6444.html" }, { "directions": "Stir ingredients with ice, strain into a cocktail glass, and serve.", @@ -58207,7 +58207,7 @@ "grenadine syrup" ], "title": "Royal Smile Cocktail recipe", - "url": "http://www.drinksmixer.com/drink6445.html" + "url": "https://www.drinksmixer.com/drink6445.html" }, { "directions": "Blend ingredients in a cocktail glass rimmed with white and brown chocolate flakes. Serve.", @@ -58218,7 +58218,7 @@ "double cream" ], "title": "Royal Temptation recipe", - "url": "http://www.drinksmixer.com/drink6446.html" + "url": "https://www.drinksmixer.com/drink6446.html" }, { "directions": "Combine the gin, lemon juice, Curacao, sugar, and egg in a shaker half-filled with ice cubes. Shake well, and strain into a collins glass almost filled with ice cubes. Add the club soda, stir well, and serve.\r", @@ -58231,7 +58231,7 @@ "club soda" ], "title": "Royalty Fizz recipe", - "url": "http://www.drinksmixer.com/drink6447.html" + "url": "https://www.drinksmixer.com/drink6447.html" }, { "directions": "Place pop rocks candy into the bottom of a shot glass. Add cinnamon schnapps, stir, and serve immediately.", @@ -58240,7 +58240,7 @@ "candies" ], "title": "Ru's Snap Shot recipe", - "url": "http://www.drinksmixer.com/drink6448.html" + "url": "https://www.drinksmixer.com/drink6448.html" }, { "directions": "Pour coke into a highball glass, add jagermeister, and serve.", @@ -58249,7 +58249,7 @@ "Jagermeister\u00ae herbal liqueur" ], "title": "Rubbermeister recipe", - "url": "http://www.drinksmixer.com/drink6449.html" + "url": "https://www.drinksmixer.com/drink6449.html" }, { "directions": "Shake all ingredients (except carbonated water) with ice and strain into a highball glass over two ice cubes. Fill with carbonated water, stir, and serve.", @@ -58262,7 +58262,7 @@ "carbonated water" ], "title": "Ruby Fizz recipe", - "url": "http://www.drinksmixer.com/drink6450.html" + "url": "https://www.drinksmixer.com/drink6450.html" }, { "directions": "Combine ingredients in a mixing glass half-filled with ice cubes. Stir well, strain into a cocktail glass, and serve.", @@ -58272,7 +58272,7 @@ "sweet vermouth" ], "title": "Ruby in the Rough recipe", - "url": "http://www.drinksmixer.com/drink6451.html" + "url": "https://www.drinksmixer.com/drink6451.html" }, { "directions": "Combine peach schnapps, vodka and malibu rum in a cocktail glass. Almost fill with pineapple juice, add a splash of cranberry juice, and serve.", @@ -58284,7 +58284,7 @@ "cranberry juice" ], "title": "Ruby Relaxer recipe", - "url": "http://www.drinksmixer.com/drink6452.html" + "url": "https://www.drinksmixer.com/drink6452.html" }, { "directions": "Fill a shot glass three-quarters full with whiskey, and with grenadine. Fill any large glass with 7-up. Drop the shot glass into the 7-up and drink everything.", @@ -58294,7 +58294,7 @@ "7-Up\u00ae soda" ], "title": "Ruby Slipper recipe", - "url": "http://www.drinksmixer.com/drink6453.html" + "url": "https://www.drinksmixer.com/drink6453.html" }, { "directions": "Pour gin and cranberry juice into a highball glass filled with ice cubes. Add grenadine, stir and serve.", @@ -58304,7 +58304,7 @@ "grenadine syrup" ], "title": "Ruby Tuesday recipe", - "url": "http://www.drinksmixer.com/drink6454.html" + "url": "https://www.drinksmixer.com/drink6454.html" }, { "directions": "Stir and shake ingredients together in an old-fashioned glass, and serve.", @@ -58314,7 +58314,7 @@ "Irish whiskey" ], "title": "Rugburn recipe", - "url": "http://www.drinksmixer.com/drink6455.html" + "url": "https://www.drinksmixer.com/drink6455.html" }, { "directions": "Pour rum and lemon juice into mixing glass, and mix. Add cocoa powder and coffee, and mix again. Pour into a shot glass, top with cream, and serve.", @@ -58326,7 +58326,7 @@ "cocoa powder" ], "title": "Rum a'la Olof recipe", - "url": "http://www.drinksmixer.com/drink6456.html" + "url": "https://www.drinksmixer.com/drink6456.html" }, { "directions": "Shake and strain over ice in a margarita glass. Add a twist of lemon, and serve.", @@ -58339,7 +58339,7 @@ "ginger ale" ], "title": "Rum Aid recipe", - "url": "http://www.drinksmixer.com/drink6457.html" + "url": "https://www.drinksmixer.com/drink6457.html" }, { "directions": "Dissolve the sugar in club soda in an old-fashioned glass. Fill almost completely with crushed ice, and add the rum. Stir well. Garnish with a maraschino cherry, an orange and a lemon slice. Serve.", @@ -58349,7 +58349,7 @@ "sugar" ], "title": "Rum Cobbler recipe", - "url": "http://www.drinksmixer.com/drink6458.html" + "url": "https://www.drinksmixer.com/drink6458.html" }, { "directions": "Place two scoops of rum flavored ice-cream into a hurricane glass, add rum and fill with coke. Garnish with a cherry and serve with a straw.", @@ -58359,7 +58359,7 @@ "Coca-Cola\u00ae" ], "title": "Rum Coke Float recipe", - "url": "http://www.drinksmixer.com/drink6459.html" + "url": "https://www.drinksmixer.com/drink6459.html" }, { "directions": "Shake rum, juice of lime, and powdered sugar with ice and strain into a collins glass over ice cubes. Fill with carbonated water and stir. Add the slice of lemon, top with the cherry, and serve.", @@ -58372,7 +58372,7 @@ "cherry" ], "title": "Rum Collins recipe", - "url": "http://www.drinksmixer.com/drink6460.html" + "url": "https://www.drinksmixer.com/drink6460.html" }, { "directions": "Pour rum and soda into a collins glass almost-filled with ice cubes. Stir well, garnish with a lemon wedge, and serve.", @@ -58381,7 +58381,7 @@ "lemon-lime soda" ], "title": "Rum Cooler recipe", - "url": "http://www.drinksmixer.com/drink6461.html" + "url": "https://www.drinksmixer.com/drink6461.html" }, { "directions": "Combine the rum, lemon juice, sugar, and grenadine in a shaker half-filled with ice cubes. Shake well, and pour into an old-fashioned glass. Garnish with a maraschino cherry and an orange slice, and serve.", @@ -58392,7 +58392,7 @@ "grenadine syrup" ], "title": "Rum Daisy recipe", - "url": "http://www.drinksmixer.com/drink6462.html" + "url": "https://www.drinksmixer.com/drink6462.html" }, { "directions": "Shake all ingredients with ice, strain into a cocktail glass, and serve.", @@ -58402,7 +58402,7 @@ "lemon juice" ], "title": "Rum Dubonnet recipe", - "url": "http://www.drinksmixer.com/drink6463.html" + "url": "https://www.drinksmixer.com/drink6463.html" }, { "directions": "Stir juice of lemon, powdered sugar, and water in a highball glass. Fill glass with ice, add rum, and stir. Add the slice of lemon and serve with a straw.", @@ -58414,7 +58414,7 @@ "lemon" ], "title": "Rum Fix recipe", - "url": "http://www.drinksmixer.com/drink6464.html" + "url": "https://www.drinksmixer.com/drink6464.html" }, { "directions": "Pour the rum and rose's lime juice into a mixing glass half-filled with ice cubes. Stir well, and strain into a cocktail glass. Garnish with a lime wedge, and serve.", @@ -58424,7 +58424,7 @@ "lime" ], "title": "Rum Gimlet recipe", - "url": "http://www.drinksmixer.com/drink6465.html" + "url": "https://www.drinksmixer.com/drink6465.html" }, { "directions": "Pour rum into a highball glass over ice cubes, fill with carbonated water and stir. Add a twist of lemon peel, and serve.", @@ -58433,7 +58433,7 @@ "carbonated water" ], "title": "Rum Highball recipe", - "url": "http://www.drinksmixer.com/drink6466.html" + "url": "https://www.drinksmixer.com/drink6466.html" }, { "directions": "Combine rum and vermouth in a mixing glass half-filled with ice cubes. Stir well, and strain into a cocktail glass. Garnish with a lemon twist or an olive, and serve.", @@ -58442,7 +58442,7 @@ "dry vermouth" ], "title": "Rum Martini recipe", - "url": "http://www.drinksmixer.com/drink6467.html" + "url": "https://www.drinksmixer.com/drink6467.html" }, { "directions": "Shake all ingredients (except nutmeg) with ice and strain into a collins glass. Sprinkle nutmeg on top and serve.", @@ -58453,7 +58453,7 @@ "nutmeg" ], "title": "Rum Milk Punch recipe", - "url": "http://www.drinksmixer.com/drink6468.html" + "url": "https://www.drinksmixer.com/drink6468.html" }, { "directions": "Stir powdered sugar, water, and bitters in an old-fashioned glass. When sugar has dissolved, add ice cubes and light rum. Add the twist of lime peel, float 151 proof rum on top, and serve.", @@ -58466,7 +58466,7 @@ "lime" ], "title": "Rum Old-Fashioned recipe", - "url": "http://www.drinksmixer.com/drink6469.html" + "url": "https://www.drinksmixer.com/drink6469.html" }, { "directions": "Pour light rum, lime juice and sugar syrup into an ice-filled mixing glass. Shake, strain into an ice-filled collins glass, and fill with club soda. Garnish with a wedge of lime, and serve.", @@ -58477,7 +58477,7 @@ "club soda" ], "title": "Rum Rickey recipe", - "url": "http://www.drinksmixer.com/drink6470.html" + "url": "https://www.drinksmixer.com/drink6470.html" }, { "directions": "Pour liquors into a blender with one and a half cups of ice, and mix until thick-consistency. Pour into a hurricane glass, add a cherry on top, and serve.", @@ -58490,7 +58490,7 @@ "Rose's\u00ae lime juice" ], "title": "Rum Runner Island Style recipe", - "url": "http://www.drinksmixer.com/drink6471.html" + "url": "https://www.drinksmixer.com/drink6471.html" }, { "directions": "Blend with crushed ice, pour into a highball glass, and serve.", @@ -58503,7 +58503,7 @@ "lime juice" ], "title": "Rum Runner #2 recipe", - "url": "http://www.drinksmixer.com/drink6472.html" + "url": "https://www.drinksmixer.com/drink6472.html" }, { "directions": "Soak one sugar cube in angostura bitters - in an old-fashioned glass, and crush with a pestle. Add ice cubes, pour in rum, add a few dashed of pernod and fill with water. Serve.", @@ -58514,7 +58514,7 @@ "sugar" ], "title": "Rum Sazerac recipe", - "url": "http://www.drinksmixer.com/drink6473.html" + "url": "https://www.drinksmixer.com/drink6473.html" }, { "directions": "Pour rum into a highball glass over ice cubes. Add orange juice, stir, and serve.", @@ -58523,7 +58523,7 @@ "orange juice" ], "title": "Rum Screwdriver recipe", - "url": "http://www.drinksmixer.com/drink6474.html" + "url": "https://www.drinksmixer.com/drink6474.html" }, { "directions": "1. Pare oranges very thinly and place the rinds into a gallon jar. Add their juice, one pint of cold water, and close the jar. Stand for three days, stirring occasionally.\r", @@ -58535,7 +58535,7 @@ "rum" ], "title": "Rum Shrub recipe", - "url": "http://www.drinksmixer.com/drink6475.html" + "url": "https://www.drinksmixer.com/drink6475.html" }, { "directions": "Combine the rum, lemon juice, and sugar in a shaker half-filled with ice cubes. Shake well, and strain into a sour glass. Garnish with an orange slice and a maraschino cherry.", @@ -58545,7 +58545,7 @@ "superfine sugar" ], "title": "Rum Sour recipe", - "url": "http://www.drinksmixer.com/drink6476.html" + "url": "https://www.drinksmixer.com/drink6476.html" }, { "directions": "Dissolve powdered sugar in a mixture of carbonated water and juice of lime in a collins glass. Fill with ice, stir, and add bitters and rum. Fill with carbonated water, stir, and serve with a swizzle stick.", @@ -58557,7 +58557,7 @@ "bitters" ], "title": "Rum Swizzle recipe", - "url": "http://www.drinksmixer.com/drink6477.html" + "url": "https://www.drinksmixer.com/drink6477.html" }, { "directions": "Dissolve powdered sugar in water in an old-fashioned glass. Add rum, one ice cube, and stir. Add a twist of lemon peel and serve.", @@ -58568,7 +58568,7 @@ "water" ], "title": "Rum Toddy recipe", - "url": "http://www.drinksmixer.com/drink6478.html" + "url": "https://www.drinksmixer.com/drink6478.html" }, { "directions": "Combine liquors over ice in a collins glass, and stir. Add club soda, stir again gently, and serve.", @@ -58579,7 +58579,7 @@ "club soda" ], "title": "Rum Bubble recipe", - "url": "http://www.drinksmixer.com/drink6479.html" + "url": "https://www.drinksmixer.com/drink6479.html" }, { "directions": "Mix equal parts of vodka and rum, pour over ice in a shot glass, and serve.", @@ -58588,7 +58588,7 @@ "Captain Morgan\u00ae Original spiced rum" ], "title": "Rumka recipe", - "url": "http://www.drinksmixer.com/drink6480.html" + "url": "https://www.drinksmixer.com/drink6480.html" }, { "directions": "Mix all ingredients with ice, pour into a highball glass, and serve.", @@ -58599,7 +58599,7 @@ "Bacardi\u00ae Limon rum" ], "title": "Rummple recipe", - "url": "http://www.drinksmixer.com/drink6481.html" + "url": "https://www.drinksmixer.com/drink6481.html" }, { "directions": "Pour aftershock into a shot glass. Add rumple minze, and serve.", @@ -58608,7 +58608,7 @@ "Aftershock\u00ae Hot & Cool cinnamon schnapps" ], "title": "Rumple Shock recipe", - "url": "http://www.drinksmixer.com/drink6482.html" + "url": "https://www.drinksmixer.com/drink6482.html" }, { "directions": "Whisk all ingredients in a pitcher, and serve over ice in margarita glasses.\r", @@ -58621,7 +58621,7 @@ "lime juice" ], "title": "RumRunner's Easy Margarita recipe", - "url": "http://www.drinksmixer.com/drink6483.html" + "url": "https://www.drinksmixer.com/drink6483.html" }, { "directions": "Pour vodka and ruby red grapefruit juice into a large, ice-filled glass. Top with tonic water, pour into a seperate glass (to mix), and serve.", @@ -58631,7 +58631,7 @@ "tonic water" ], "title": "RumRunner's RubyRed recipe", - "url": "http://www.drinksmixer.com/drink6484.html" + "url": "https://www.drinksmixer.com/drink6484.html" }, { "directions": "Pour southern comfort in an old-fashioned glass with ice, and fill with schweppes. Add a splash of lime juice, and serve.", @@ -58641,7 +58641,7 @@ "lime juice" ], "title": "Russian Comfort recipe", - "url": "http://www.drinksmixer.com/drink6485.html" + "url": "https://www.drinksmixer.com/drink6485.html" }, { "directions": "Mix all three ingredients with ice, shake, and strain into a shot glass.", @@ -58651,7 +58651,7 @@ "pineapple juice" ], "title": "Russian Apple recipe", - "url": "http://www.drinksmixer.com/drink6486.html" + "url": "https://www.drinksmixer.com/drink6486.html" }, { "directions": "Pour chilled vodka into a shot glass, and carefully add chilled tomato juice so that it falls to the bottom of the glass. Add tabasco sauce, and serve.", @@ -58661,7 +58661,7 @@ "Tabasco\u00ae sauce" ], "title": "Russian Bloody Mary recipe", - "url": "http://www.drinksmixer.com/drink6487.html" + "url": "https://www.drinksmixer.com/drink6487.html" }, { "directions": "Pour cold beer into a large glass, and drop a whole shot glass full of vodka into the beer. Down immediately.", @@ -58670,7 +58670,7 @@ "vodka" ], "title": "Russian Boilermaker recipe", - "url": "http://www.drinksmixer.com/drink6488.html" + "url": "https://www.drinksmixer.com/drink6488.html" }, { "directions": "Mix vodka and orange juice in a blender with ice, and pour into a large container. Add champagne, stir, and serve.", @@ -58680,7 +58680,7 @@ "Champagne" ], "title": "Russian Brunch recipe", - "url": "http://www.drinksmixer.com/drink6489.html" + "url": "https://www.drinksmixer.com/drink6489.html" }, { "directions": "Fill a shot glass with vodka and peach schnapps. Add a dash of grenadine (do not stir). Allow grenadine to settle at the bottom of the glass, and serve.", @@ -58690,7 +58690,7 @@ "grenadine syrup" ], "title": "Russian Candy recipe", - "url": "http://www.drinksmixer.com/drink6490.html" + "url": "https://www.drinksmixer.com/drink6490.html" }, { "directions": "Shake all ingredients with ice, strain into a cocktail glass, and serve.", @@ -58700,7 +58700,7 @@ "white creme de cacao" ], "title": "Russian Cocktail recipe", - "url": "http://www.drinksmixer.com/drink6491.html" + "url": "https://www.drinksmixer.com/drink6491.html" }, { "directions": "Pour vodka and kahlua into an old-fashioned glass over ice. Stir, add irish cream, light cream, and serve.", @@ -58711,7 +58711,7 @@ "light cream" ], "title": "Russian Cream recipe", - "url": "http://www.drinksmixer.com/drink6492.html" + "url": "https://www.drinksmixer.com/drink6492.html" }, { "directions": "Blend vodka, lime and sugar in a highball glass. Fill with soda water, and serve.", @@ -58722,7 +58722,7 @@ "soda water" ], "title": "Russian Funk recipe", - "url": "http://www.drinksmixer.com/drink6493.html" + "url": "https://www.drinksmixer.com/drink6493.html" }, { "directions": "Lean an ice-filled tumbler to a 45 degree angle and pour creme de menthe down the side of the glass to fill bottom. Repeat with rumple minze and vodka, as to layer the liquors like an iceberg. Do not stir. Place a straw through the middle of the drink and serve immediately.", @@ -58732,7 +58732,7 @@ "vodka" ], "title": "Russian Iceberg recipe", - "url": "http://www.drinksmixer.com/drink6494.html" + "url": "https://www.drinksmixer.com/drink6494.html" }, { "directions": "Mix vodka and sour mix (to taste) over ice in a glass. Add grenadine (to taste), and serve.", @@ -58742,7 +58742,7 @@ "grenadine syrup" ], "title": "Russian Monster Tom Collins recipe", - "url": "http://www.drinksmixer.com/drink6495.html" + "url": "https://www.drinksmixer.com/drink6495.html" }, { "directions": "Pour liquors over ice in a highball glass. Top with cream or milk, stir, and serve.", @@ -58754,7 +58754,7 @@ "cream" ], "title": "Russian Qualude recipe", - "url": "http://www.drinksmixer.com/drink6496.html" + "url": "https://www.drinksmixer.com/drink6496.html" }, { "directions": "Pour over ice, shake vigorously, and strain into a martini style cocktail glass. Garnish with one filbert, and serve.", @@ -58765,7 +58765,7 @@ "amaretto almond liqueur" ], "title": "Russian Qualude #2 recipe", - "url": "http://www.drinksmixer.com/drink6497.html" + "url": "https://www.drinksmixer.com/drink6497.html" }, { "directions": "1. Fill two or more shot glasses with the kahlua and vodka and place a slice of orange on the top of each glass. \r", @@ -58775,7 +58775,7 @@ "sambuca" ], "title": "Russian Roulette recipe", - "url": "http://www.drinksmixer.com/drink6498.html" + "url": "https://www.drinksmixer.com/drink6498.html" }, { "directions": "Pour vodka and liqueur into a highball glass over one or two ice cubes. Fill with schweppes russian, and serve.", @@ -58785,7 +58785,7 @@ "Schweppes\u00ae Russian tonic water" ], "title": "Russian Sarin recipe", - "url": "http://www.drinksmixer.com/drink6499.html" + "url": "https://www.drinksmixer.com/drink6499.html" }, { "directions": "Pour vodka into a shot glass and add the creme de menthe on top. Swirl lightly with a swizzle stick, and serve.", @@ -58794,7 +58794,7 @@ "green creme de menthe" ], "title": "Russian Shamrock recipe", - "url": "http://www.drinksmixer.com/drink6500.html" + "url": "https://www.drinksmixer.com/drink6500.html" }, { "directions": "Mix vodka, triple sec, and sour mix in a shaker with ice. Strain into a chilled collins glass, add a dash of grenadine to the top, and swirl slightly. Garnish with a cherry and an orange slice if desired, and serve.", @@ -58805,7 +58805,7 @@ "grenadine syrup" ], "title": "Russian Sunset recipe", - "url": "http://www.drinksmixer.com/drink6501.html" + "url": "https://www.drinksmixer.com/drink6501.html" }, { "directions": "Make tea in the water, and add rest of ingredients. Simmer for at least half an hour, and serve.", @@ -58819,7 +58819,7 @@ "cloves" ], "title": "Russian Tea recipe", - "url": "http://www.drinksmixer.com/drink6502.html" + "url": "https://www.drinksmixer.com/drink6502.html" }, { "directions": "Pour drambuie over two ice cubes in an old-fashioned glass. Add irish mist, and serve.", @@ -58828,7 +58828,7 @@ "Irish Mist\u00ae herbal liqueur" ], "title": "Rusty Mist recipe", - "url": "http://www.drinksmixer.com/drink6503.html" + "url": "https://www.drinksmixer.com/drink6503.html" }, { "directions": "Combine scotch and grand marnier in a brandy snifter. Add a twist of lemon peel, and serve.", @@ -58838,7 +58838,7 @@ "lemon" ], "title": "Rusty Screw recipe", - "url": "http://www.drinksmixer.com/drink6504.html" + "url": "https://www.drinksmixer.com/drink6504.html" }, { "directions": "Mix in an old-fashioned glass, and serve.", @@ -58847,7 +58847,7 @@ "ginger ale" ], "title": "Rye and Ginger recipe", - "url": "http://www.drinksmixer.com/drink6505.html" + "url": "https://www.drinksmixer.com/drink6505.html" }, { "directions": "Pour whiskey into a glass with ice. Add dr. pepper, stir, and serve.", @@ -58856,7 +58856,7 @@ "Dr. Pepper\u00ae soda" ], "title": "Rye and Pepper recipe", - "url": "http://www.drinksmixer.com/drink6506.html" + "url": "https://www.drinksmixer.com/drink6506.html" }, { "directions": "Shake all ingredients (except cherry) with ice and strain into a cocktail glass. Top with the cherry and serve.", @@ -58867,7 +58867,7 @@ "cherry" ], "title": "Rye Whiskey Cocktail recipe", - "url": "http://www.drinksmixer.com/drink6507.html" + "url": "https://www.drinksmixer.com/drink6507.html" }, { "directions": "Layer ingredients, in order, into a cocktail glass, and serve.", @@ -58879,7 +58879,7 @@ "cinnamon" ], "title": "Rock Lobster #2 recipe", - "url": "http://www.drinksmixer.com/drink6508.html" + "url": "https://www.drinksmixer.com/drink6508.html" }, { "directions": "Pour ingredients into a cocktail shaker with ice and shake well. Serve in a red wine glass and sprinkle powdered cinnamon on top.", @@ -58891,7 +58891,7 @@ "egg" ], "title": "Vaina recipe", - "url": "http://www.drinksmixer.com/drink6509.html" + "url": "https://www.drinksmixer.com/drink6509.html" }, { "directions": "Shake ingredients, pour into a cocktail glass, and serve.", @@ -58900,7 +58900,7 @@ "peach schnapps" ], "title": "Vaitkus recipe", - "url": "http://www.drinksmixer.com/drink6510.html" + "url": "https://www.drinksmixer.com/drink6510.html" }, { "directions": "Shake ingredients with ice, strain into a cocktail glass, and serve.", @@ -58910,7 +58910,7 @@ "orange bitters" ], "title": "Valencia Cocktail recipe", - "url": "http://www.drinksmixer.com/drink6511.html" + "url": "https://www.drinksmixer.com/drink6511.html" }, { "directions": "Shake banana liqueur, vodka, and cranberry juice with ice cubes and strain into a red wine glass.", @@ -58920,7 +58920,7 @@ "cranberry juice" ], "title": "Valentine recipe", - "url": "http://www.drinksmixer.com/drink6512.html" + "url": "https://www.drinksmixer.com/drink6512.html" }, { "directions": "Mix ingredients in a collins glass, stir, and serve.", @@ -58931,7 +58931,7 @@ "Kahlua\u00ae coffee liqueur" ], "title": "The Valentine recipe", - "url": "http://www.drinksmixer.com/drink6513.html" + "url": "https://www.drinksmixer.com/drink6513.html" }, { "directions": "Pour coconut rum, curacao and bacardi into a shaker with three or four ice cubes. Strain into a collins glass, fill with orange juice, and serve.", @@ -58942,7 +58942,7 @@ "orange juice" ], "title": "Vampire Juice recipe", - "url": "http://www.drinksmixer.com/drink6514.html" + "url": "https://www.drinksmixer.com/drink6514.html" }, { "directions": "Shake ingredients with ice, strain into an old-fashioned glass over ice cubes, and serve.", @@ -58952,7 +58952,7 @@ "lemon juice" ], "title": "Van Vleet recipe", - "url": "http://www.drinksmixer.com/drink6515.html" + "url": "https://www.drinksmixer.com/drink6515.html" }, { "directions": "Pour southern comfort and vanilla liqueur over ice in a collins glass. Fill with coke, and serve.", @@ -58962,7 +58962,7 @@ "Coca-Cola\u00ae" ], "title": "Vanilla Coke recipe", - "url": "http://www.drinksmixer.com/drink6516.html" + "url": "https://www.drinksmixer.com/drink6516.html" }, { "directions": "Pour liquors into a hurricane glass. Add cold milk, stir, and serve immediately.", @@ -58973,7 +58973,7 @@ "milk" ], "title": "Vanilla Creamsicle recipe", - "url": "http://www.drinksmixer.com/drink6517.html" + "url": "https://www.drinksmixer.com/drink6517.html" }, { "directions": "Pour liquors, in order, into a highball glass half-filled with crushed ice. Top with pepsi, stir well with a barspoon, and serve.", @@ -58984,7 +58984,7 @@ "Pepsi\u00ae cola" ], "title": "Vanilla Vargas recipe", - "url": "http://www.drinksmixer.com/drink6518.html" + "url": "https://www.drinksmixer.com/drink6518.html" }, { "directions": "Pour vodka into a highball glass, and add razzmatazz. Fill with cranberry juice, mix, and serve.", @@ -58994,7 +58994,7 @@ "cranberry juice" ], "title": "Vaughn Purple Haze recipe", - "url": "http://www.drinksmixer.com/drink6519.html" + "url": "https://www.drinksmixer.com/drink6519.html" }, { "directions": "Pour gin into a glass with ice. Add flavored kool aid (to taste), and serve.", @@ -59003,7 +59003,7 @@ "Kool-Aid\u00ae" ], "title": "Velvet Crush recipe", - "url": "http://www.drinksmixer.com/drink6520.html" + "url": "https://www.drinksmixer.com/drink6520.html" }, { "directions": "Shake ingredients with ice, strain into a cocktail glass, and serve.", @@ -59013,7 +59013,7 @@ "cream" ], "title": "Velvet Hammer recipe", - "url": "http://www.drinksmixer.com/drink6521.html" + "url": "https://www.drinksmixer.com/drink6521.html" }, { "directions": "Pour creme de cacao, vodka and cream into a blender. Add ice, half a sliced banana, and sugar to taste. Blend until smooth and pureed, and pour into a glass. Serve.", @@ -59025,7 +59025,7 @@ "sugar" ], "title": "Velvet Hammer #2 recipe", - "url": "http://www.drinksmixer.com/drink6522.html" + "url": "https://www.drinksmixer.com/drink6522.html" }, { "directions": "Shake ingredients with ice until chilled, and strain into a frosted cocktail glass. Garnish with a maraschino cherry or small butterscotch candy.", @@ -59034,7 +59034,7 @@ "butterscotch schnapps" ], "title": "Velvet Kilt recipe", - "url": "http://www.drinksmixer.com/drink6523.html" + "url": "https://www.drinksmixer.com/drink6523.html" }, { "directions": "Pour bourbon over ice, add chocolate milk until creamy, and serve.", @@ -59043,7 +59043,7 @@ "chocolate milk" ], "title": "Velvet Presley recipe", - "url": "http://www.drinksmixer.com/drink6524.html" + "url": "https://www.drinksmixer.com/drink6524.html" }, { "directions": "Pour southern comfort and canadian club whisky over ice in a highball glass. Fill with ginger ale, and serve.", @@ -59053,7 +59053,7 @@ "ginger ale" ], "title": "Velvet Tongue recipe", - "url": "http://www.drinksmixer.com/drink6525.html" + "url": "https://www.drinksmixer.com/drink6525.html" }, { "directions": "Mix, and pour into a chilled cocktail glass. Garnish with orange zest, and serve.", @@ -59064,7 +59064,7 @@ "Blue Curacao liqueur" ], "title": "Venezia recipe", - "url": "http://www.drinksmixer.com/drink6526.html" + "url": "https://www.drinksmixer.com/drink6526.html" }, { "directions": "Pour gin into a malt shaker or similar. Stir in the cocoa and sugar, mix together and shake. Pour into a champagne flute glass, and serve.", @@ -59074,7 +59074,7 @@ "sugar" ], "title": "Venom recipe", - "url": "http://www.drinksmixer.com/drink6527.html" + "url": "https://www.drinksmixer.com/drink6527.html" }, { "directions": "Pour into an old-fashioned glass with five ice cubes. Garnish with a twist of lime, and serve.", @@ -59084,7 +59084,7 @@ "club soda" ], "title": "Venus on the Rocks recipe", - "url": "http://www.drinksmixer.com/drink6528.html" + "url": "https://www.drinksmixer.com/drink6528.html" }, { "directions": "Shake all ingredients (except cherry) with ice and strain into a cocktail glass. Top with a cherry, and serve.", @@ -59096,7 +59096,7 @@ "cherry" ], "title": "Verboten recipe", - "url": "http://www.drinksmixer.com/drink6529.html" + "url": "https://www.drinksmixer.com/drink6529.html" }, { "directions": "Pour vodka into an ice-filled collins glass, add vodka and syrup, and serve.", @@ -59106,7 +59106,7 @@ "water" ], "title": "Vermont Maple Blaster recipe", - "url": "http://www.drinksmixer.com/drink6530.html" + "url": "https://www.drinksmixer.com/drink6530.html" }, { "directions": "Pour vermouth and creme de cassis into an old-fashioned glass. Add three or four ice cubes, fill with soda, and serve.", @@ -59116,7 +59116,7 @@ "club soda" ], "title": "Vermouth Cassis #2 recipe", - "url": "http://www.drinksmixer.com/drink6531.html" + "url": "https://www.drinksmixer.com/drink6531.html" }, { "directions": "Stir vermouth and creme de cassis in a highball glass with ice cubes. Fill with carbonated water, stir again, and serve.", @@ -59126,7 +59126,7 @@ "carbonated water" ], "title": "Vermouth Cassis recipe", - "url": "http://www.drinksmixer.com/drink6532.html" + "url": "https://www.drinksmixer.com/drink6532.html" }, { "directions": "Pour ingredients into an ice-filled old-fashioned glass. Stir, and serve.", @@ -59136,7 +59136,7 @@ "triple sec" ], "title": "Vernal Equinox recipe", - "url": "http://www.drinksmixer.com/drink6533.html" + "url": "https://www.drinksmixer.com/drink6533.html" }, { "directions": "Pour into a beer pilsner, and serve.", @@ -59145,7 +59145,7 @@ "spiced rum" ], "title": "Verno recipe", - "url": "http://www.drinksmixer.com/drink6534.html" + "url": "https://www.drinksmixer.com/drink6534.html" }, { "directions": "Pour vodka and chambord into an ice-filled collins glass. Fill with tonic water, garnish with two fresh raspberries, and serve.", @@ -59155,7 +59155,7 @@ "tonic water" ], "title": "Very Berry Tonic recipe", - "url": "http://www.drinksmixer.com/drink6535.html" + "url": "https://www.drinksmixer.com/drink6535.html" }, { "directions": "Shake all ingredients with ice, strain into an old-fashioned glass over ice cubes, and serve.", @@ -59167,7 +59167,7 @@ "egg" ], "title": "Vesuvio recipe", - "url": "http://www.drinksmixer.com/drink6536.html" + "url": "https://www.drinksmixer.com/drink6536.html" }, { "directions": "Pour rum and cherry brandy into an old-fashioned glass almost filled with ice cubes. Stir well, and serve.", @@ -59176,7 +59176,7 @@ "cherry brandy" ], "title": "Veteran recipe", - "url": "http://www.drinksmixer.com/drink6537.html" + "url": "https://www.drinksmixer.com/drink6537.html" }, { "directions": "Pour alcohol over ice cubes in a tall glass. Add lime juice and sprite or 7-up. Stir well.", @@ -59186,7 +59186,7 @@ "Sprite\u00ae soda" ], "title": "Veterinary recipe", - "url": "http://www.drinksmixer.com/drink6538.html" + "url": "https://www.drinksmixer.com/drink6538.html" }, { "directions": "Blend, add ice and strain into a cordial glass.", @@ -59197,7 +59197,7 @@ "amaretto almond liqueur" ], "title": "Viagra Shot recipe", - "url": "http://www.drinksmixer.com/drink6539.html" + "url": "https://www.drinksmixer.com/drink6539.html" }, { "directions": "Layer in order in a pousse-cafe glass.", @@ -59206,7 +59206,7 @@ "Bailey's\u00ae Irish cream" ], "title": "Vibrator #2 recipe", - "url": "http://www.drinksmixer.com/drink6540.html" + "url": "https://www.drinksmixer.com/drink6540.html" }, { "directions": "Pour liquors into an ice-filled hurricane glass. Fill with equal parts of orange and cranberru juice. Shake, garnish with two cherries, and serve.", @@ -59218,7 +59218,7 @@ "cranberry juice" ], "title": "Vibrator recipe", - "url": "http://www.drinksmixer.com/drink6541.html" + "url": "https://www.drinksmixer.com/drink6541.html" }, { "directions": "Pour into a cordial glass, stir gently, and serve.", @@ -59228,7 +59228,7 @@ "lime juice" ], "title": "Vicious Kiss recipe", - "url": "http://www.drinksmixer.com/drink6542.html" + "url": "https://www.drinksmixer.com/drink6542.html" }, { "directions": "Combine all of the ingredients in a shaker half-filled with ice cubes. Shake well, and strain into an old-fashioned glass almost filled with ice cubes.", @@ -59240,7 +59240,7 @@ "bitters" ], "title": "Vicious Sid recipe", - "url": "http://www.drinksmixer.com/drink6543.html" + "url": "https://www.drinksmixer.com/drink6543.html" }, { "directions": "Shake all ingredients (except orange slice) with ice and strain into a collins glass over ice cubes. Add the slice of orange and serve.", @@ -59252,7 +59252,7 @@ "orange" ], "title": "Victory Collins recipe", - "url": "http://www.drinksmixer.com/drink6544.html" + "url": "https://www.drinksmixer.com/drink6544.html" }, { "directions": "Shake all ingredients with ice, strain into a cocktail glass, and serve.", @@ -59262,7 +59262,7 @@ "brandy" ], "title": "Victor recipe", - "url": "http://www.drinksmixer.com/drink6545.html" + "url": "https://www.drinksmixer.com/drink6545.html" }, { "directions": "Pour rum over ice in an old-fashioned glass. Add neatea lemon-flavored iced tea, stir well, and serve", @@ -59271,7 +59271,7 @@ "Malibu\u00ae coconut rum" ], "title": "Vik n' Rum recipe", - "url": "http://www.drinksmixer.com/drink6546.html" + "url": "https://www.drinksmixer.com/drink6546.html" }, { "directions": "Pour aquavit and tia maria over ice cubes in a highball glass. Fill with sprite or 7-up, stir, and serve.", @@ -59281,7 +59281,7 @@ "Sprite\u00ae soda" ], "title": "Viking Blood recipe", - "url": "http://www.drinksmixer.com/drink6547.html" + "url": "https://www.drinksmixer.com/drink6547.html" }, { "directions": "Combine bourbon, orange juice and pineapple juice in a shaker, and shake well. Pour into a highball glass with ice, and serve.", @@ -59291,7 +59291,7 @@ "orange juice" ], "title": "Villa Park recipe", - "url": "http://www.drinksmixer.com/drink6548.html" + "url": "https://www.drinksmixer.com/drink6548.html" }, { "directions": "Pour curacao and sloe gin into an ice-filled highball glass. Fill with equal parts of sour mix and orange juice, and blend briefly. Garnish with a maraschino cherry, and serve.", @@ -59302,7 +59302,7 @@ "orange juice" ], "title": "Violent Fuck recipe", - "url": "http://www.drinksmixer.com/drink6549.html" + "url": "https://www.drinksmixer.com/drink6549.html" }, { "directions": "Add anis, parfait d'amour, juice and grenadine to a cocktail shaker. Fill with soda water, and shake. Pour into a collins glass, and garnish with a slice of orange, mint sprig and a cherry. Serve with straws.", @@ -59314,7 +59314,7 @@ "soda water" ], "title": "Violetta recipe", - "url": "http://www.drinksmixer.com/drink6550.html" + "url": "https://www.drinksmixer.com/drink6550.html" }, { "directions": "Shake ingredients with ice, and strain; either into a chilled cocktail glass, or on the rocks in an old-fashioned glass. Garnish with a maraschino cherry, and serve.", @@ -59326,7 +59326,7 @@ "orange bitters" ], "title": "Virgin Manhattan recipe", - "url": "http://www.drinksmixer.com/drink6551.html" + "url": "https://www.drinksmixer.com/drink6551.html" }, { "directions": "Pour both watermelon and cinnamon schnapps into a shot glass. Add sugar, and serve.", @@ -59336,7 +59336,7 @@ "sugar" ], "title": "Virgin Pussy recipe", - "url": "http://www.drinksmixer.com/drink6552.html" + "url": "https://www.drinksmixer.com/drink6552.html" }, { "directions": "Mix equal parts of orange juice and cranberry juice, add nectar, and pour over ice. Sink the grenadine, garnish with a pineapple wedge, and serve.", @@ -59347,7 +59347,7 @@ "grenadine syrup" ], "title": "Virgin Sex On The Beach recipe", - "url": "http://www.drinksmixer.com/drink6553.html" + "url": "https://www.drinksmixer.com/drink6553.html" }, { "directions": "Mix vodka, lime juice, kool-aid, coloring and cranberry juice in a shot glass. Slowly add apple juice around the side, add tequila, and serve.", @@ -59362,7 +59362,7 @@ "Kool-Aid\u00ae Lime mix" ], "title": "Virgin Whore recipe", - "url": "http://www.drinksmixer.com/drink6554.html" + "url": "https://www.drinksmixer.com/drink6554.html" }, { "directions": "Combine ingredients in a shot glass, and stir.", @@ -59372,7 +59372,7 @@ "Galliano\u00ae herbal liqueur" ], "title": "Virulent Death recipe", - "url": "http://www.drinksmixer.com/drink6555.html" + "url": "https://www.drinksmixer.com/drink6555.html" }, { "directions": "Pour bitters over ice cubes in an old-fashioned glass, and swirl in a dash of southern comfort. Garnish with a twist of lemon peel, an umbrella, and serve.", @@ -59381,7 +59381,7 @@ "Southern Comfort\u00ae peach liqueur" ], "title": "Viscous Robert recipe", - "url": "http://www.drinksmixer.com/drink6556.html" + "url": "https://www.drinksmixer.com/drink6556.html" }, { "directions": "Combine all ingredients in a highball glass, add ice, and mix.", @@ -59391,7 +59391,7 @@ "milk" ], "title": "Vit Ryss recipe", - "url": "http://www.drinksmixer.com/drink6557.html" + "url": "https://www.drinksmixer.com/drink6557.html" }, { "directions": "Rub the rim of an old-fashioned glass with lemon juice and dip into salt. Shake all ingredients with ice, strain into the salt-rimmed glass over ice cubes, and serve.", @@ -59401,7 +59401,7 @@ "sugar" ], "title": "Viva Villa recipe", - "url": "http://www.drinksmixer.com/drink6558.html" + "url": "https://www.drinksmixer.com/drink6558.html" }, { "directions": "Pour grenadine and frangelico into an ice-filled cocktail shaker, and shake until frothy. Strain into a chilled martini glass, and slowly add the kahlua. Garnish with a cherry or hershey's kiss, and serve.", @@ -59411,7 +59411,7 @@ "Kahlua\u00ae coffee liqueur" ], "title": "Vixen recipe", - "url": "http://www.drinksmixer.com/drink6559.html" + "url": "https://www.drinksmixer.com/drink6559.html" }, { "directions": "Pour vodka and lime juice over ice cubes in a collins glass. Drop the lime wedge in and fill with lemon-lime soda. Stir well, and serve.", @@ -59422,7 +59422,7 @@ "lime" ], "title": "Vodka \"7\" recipe", - "url": "http://www.drinksmixer.com/drink6560.html" + "url": "https://www.drinksmixer.com/drink6560.html" }, { "directions": "Pour ingredients over ice cubes in a highball glass, stir, and serve.", @@ -59431,7 +59431,7 @@ "Schweppes\u00ae bitter lemon soda" ], "title": "Vodka and Schweppes recipe", - "url": "http://www.drinksmixer.com/drink6561.html" + "url": "https://www.drinksmixer.com/drink6561.html" }, { "directions": "Pour vodka into a highball glass over three or four ice cubes. Fill with apple juice, stir, and serve.", @@ -59440,7 +59440,7 @@ "apple juice" ], "title": "Vodka and Apple Juice recipe", - "url": "http://www.drinksmixer.com/drink6562.html" + "url": "https://www.drinksmixer.com/drink6562.html" }, { "directions": "Pour vodka into a highball glass over ice cubes, and fill with tonic water. Stir, and serve.", @@ -59449,7 +59449,7 @@ "tonic water" ], "title": "Vodka and Tonic recipe", - "url": "http://www.drinksmixer.com/drink6563.html" + "url": "https://www.drinksmixer.com/drink6563.html" }, { "directions": "Pour vodka into a highball glass, add bitter lemon to taste, and serve.", @@ -59458,7 +59458,7 @@ "bitter lemon soda" ], "title": "Vodka Bitter Lemon recipe", - "url": "http://www.drinksmixer.com/drink6564.html" + "url": "https://www.drinksmixer.com/drink6564.html" }, { "directions": "Shake vodka, lemon juice and powdered sugar with ice and strain into a collins glass. Add several ice cubes, fill with carbonated water, and stir. Garnish with slices of orange and lemon, and top with a cherry. Serve with a straw.", @@ -59469,7 +59469,7 @@ "carbonated water" ], "title": "Vodka Collins recipe", - "url": "http://www.drinksmixer.com/drink6565.html" + "url": "https://www.drinksmixer.com/drink6565.html" }, { "directions": "Blend all ingredients (except nutmeg), and pour into a large white wine glass. Sprinkle with nutmeg, and serve.", @@ -59480,7 +59480,7 @@ "nutmeg" ], "title": "Vodka Fizz recipe", - "url": "http://www.drinksmixer.com/drink6566.html" + "url": "https://www.drinksmixer.com/drink6566.html" }, { "directions": "Stir all ingredients with ice, strain into a cocktail glass, and serve.", @@ -59490,7 +59490,7 @@ "powdered sugar" ], "title": "Vodka Gimlet recipe", - "url": "http://www.drinksmixer.com/drink6567.html" + "url": "https://www.drinksmixer.com/drink6567.html" }, { "directions": "Shake all ingredients with ice, strain into a cocktail glass, and serve.", @@ -59500,7 +59500,7 @@ "vodka" ], "title": "Vodka Grasshopper recipe", - "url": "http://www.drinksmixer.com/drink6568.html" + "url": "https://www.drinksmixer.com/drink6568.html" }, { "directions": "Shake vodka and vermouth together with several ice cubes in a shaker. Strain into a cocktail glass, garnish with an olive and serve.", @@ -59509,7 +59509,7 @@ "dry vermouth" ], "title": "Vodka Martini recipe", - "url": "http://www.drinksmixer.com/drink6569.html" + "url": "https://www.drinksmixer.com/drink6569.html" }, { "directions": "Pour vodka over three or four ice cubes in a highball glass, and add fresh orange juice.", @@ -59518,7 +59518,7 @@ "orange juice" ], "title": "Vodka Orange recipe", - "url": "http://www.drinksmixer.com/drink6570.html" + "url": "https://www.drinksmixer.com/drink6570.html" }, { "directions": "Pour vodka into a tall, ice-filled glass. Add sprite, and squeeze in the lime wedges.", @@ -59528,7 +59528,7 @@ "limes" ], "title": "Vodka Ricki recipe", - "url": "http://www.drinksmixer.com/drink6571.html" + "url": "https://www.drinksmixer.com/drink6571.html" }, { "directions": "Combine ingredients in a tall glass with ice cubes and serve.", @@ -59537,7 +59537,7 @@ "Schweppes\u00ae Russian tonic water" ], "title": "Vodka Russian recipe", - "url": "http://www.drinksmixer.com/drink6572.html" + "url": "https://www.drinksmixer.com/drink6572.html" }, { "directions": "Pour ingredients into a highball glass over ice cubes, stir well, and serve.", @@ -59547,7 +59547,7 @@ "salt" ], "title": "Vodka Salty Dog recipe", - "url": "http://www.drinksmixer.com/drink6573.html" + "url": "https://www.drinksmixer.com/drink6573.html" }, { "directions": "Dissolve powdered sugar in water and lemon juice. Add vodka, pour into an old-fashioned glass over ice cubes, and stir. Garnish with a twist of orange peel and serve.", @@ -59558,7 +59558,7 @@ "water" ], "title": "Vodka Sling recipe", - "url": "http://www.drinksmixer.com/drink6574.html" + "url": "https://www.drinksmixer.com/drink6574.html" }, { "directions": "Pour vodka over ice in a highball glass. Add equal parts of soda and tonic, to taste, and garnish with a wedge of lime. Serve.", @@ -59568,7 +59568,7 @@ "tonic water" ], "title": "Vodka Sonic recipe", - "url": "http://www.drinksmixer.com/drink6575.html" + "url": "https://www.drinksmixer.com/drink6575.html" }, { "directions": "Shake ingredients with ice, strain into a cocktail glass, and serve.", @@ -59577,7 +59577,7 @@ "vodka" ], "title": "Vodka Stinger recipe", - "url": "http://www.drinksmixer.com/drink6576.html" + "url": "https://www.drinksmixer.com/drink6576.html" }, { "directions": "Mix vodka and orange juice in a highball glass. Top with grenadine, and serve.", @@ -59587,7 +59587,7 @@ "grenadine syrup" ], "title": "Vodka Sunrise recipe", - "url": "http://www.drinksmixer.com/drink6577.html" + "url": "https://www.drinksmixer.com/drink6577.html" }, { "directions": "Stir pre-chilled ingredients with ice cubes in a grog-like glass. Add a straw if desired, and serve.", @@ -59598,7 +59598,7 @@ "lingonberry jam" ], "title": "Vodkalenius recipe", - "url": "http://www.drinksmixer.com/drink6578.html" + "url": "https://www.drinksmixer.com/drink6578.html" }, { "directions": "Pour liquors into a champagne flute, and fill with ice-cold champagne. Add a twist of orange peel, and serve.", @@ -59608,7 +59608,7 @@ "Champagne" ], "title": "Volcano recipe", - "url": "http://www.drinksmixer.com/drink6579.html" + "url": "https://www.drinksmixer.com/drink6579.html" }, { "directions": "Combine the orange juice, vodka and kirsch in a mixing glass add ice cubes. Shake vigorously and strain into a cocktail glass.", @@ -59618,7 +59618,7 @@ "oranges" ], "title": "Volga Boatman recipe", - "url": "http://www.drinksmixer.com/drink6580.html" + "url": "https://www.drinksmixer.com/drink6580.html" }, { "directions": "Pour ingredients, in order, into a shot glass. Mix, and serve.", @@ -59630,7 +59630,7 @@ "apricot brandy" ], "title": "Volvo recipe", - "url": "http://www.drinksmixer.com/drink6581.html" + "url": "https://www.drinksmixer.com/drink6581.html" }, { "directions": "Pour shots into a mason jar or large glass. Add mountain dew, mix well, and serve.", @@ -59639,7 +59639,7 @@ "Mountain Dew\u00ae citrus soda" ], "title": "Voodoo Dew recipe", - "url": "http://www.drinksmixer.com/drink6582.html" + "url": "https://www.drinksmixer.com/drink6582.html" }, { "directions": "Add vodka and chambord to a shaker. Add orange juice and cranberry juice until desired taste. Shake and serve with ice in a cocktail glass.", @@ -59650,7 +59650,7 @@ "cranberry juice" ], "title": "Voodoo Doll recipe", - "url": "http://www.drinksmixer.com/drink6583.html" + "url": "https://www.drinksmixer.com/drink6583.html" }, { "directions": "Pour triple sec, cognac, and lemon juice over ice. Shake, strain into a cocktail glass, and serve.", @@ -59660,7 +59660,7 @@ "lemon juice" ], "title": "Voodoo Lady recipe", - "url": "http://www.drinksmixer.com/drink6584.html" + "url": "https://www.drinksmixer.com/drink6584.html" }, { "directions": "Pour rum and vodka into a collins glass. Tilt the glass, and pour the grenadine down the inside. Fill with chilled orange juice, and serve.", @@ -59671,7 +59671,7 @@ "orange juice" ], "title": "Voodoo Sunrise recipe", - "url": "http://www.drinksmixer.com/drink6585.html" + "url": "https://www.drinksmixer.com/drink6585.html" }, { "directions": "Pour rum and curacao into a highball glass. Fill with sweetened tea until black, and serve.", @@ -59681,7 +59681,7 @@ "tea" ], "title": "Voodoo Tea recipe", - "url": "http://www.drinksmixer.com/drink6586.html" + "url": "https://www.drinksmixer.com/drink6586.html" }, { "directions": "Pour ingredients over ice in an old-fashioned glass. Stir, and serve.", @@ -59692,7 +59692,7 @@ "milk" ], "title": "Voodoo recipe", - "url": "http://www.drinksmixer.com/drink6587.html" + "url": "https://www.drinksmixer.com/drink6587.html" }, { "directions": "Mix and serve straight up in a shot glass.", @@ -59701,7 +59701,7 @@ "151 proof rum" ], "title": "Vulcan Mind-Probe recipe", - "url": "http://www.drinksmixer.com/drink6588.html" + "url": "https://www.drinksmixer.com/drink6588.html" }, { "directions": "Pour wink soda over gin in a glass, add ice if desired, and serve.", @@ -59710,7 +59710,7 @@ "Wink\u00ae grapefruit-lemon soda" ], "title": "Winky recipe", - "url": "http://www.drinksmixer.com/drink6589.html" + "url": "https://www.drinksmixer.com/drink6589.html" }, { "directions": "Pour liquors into a beer mug, and fill with milk. Stir, and serve.", @@ -59721,7 +59721,7 @@ "milk" ], "title": "Winter Breeze recipe", - "url": "http://www.drinksmixer.com/drink6590.html" + "url": "https://www.drinksmixer.com/drink6590.html" }, { "directions": "Pour ingredients into a shaker with ice cubes, shake and strain into an old-fashioned glass. Garnish with a lime wedge, and serve.", @@ -59735,7 +59735,7 @@ "lime" ], "title": "Winter Parker recipe", - "url": "http://www.drinksmixer.com/drink6591.html" + "url": "https://www.drinksmixer.com/drink6591.html" }, { "directions": "Pour vodka into a hurricane glass. Add cranberry juice and margarita mix simultaneously, and serve.", @@ -59745,7 +59745,7 @@ "strawberry margarita mix" ], "title": "Winter Tropic recipe", - "url": "http://www.drinksmixer.com/drink6592.html" + "url": "https://www.drinksmixer.com/drink6592.html" }, { "directions": "Combine the beer and orange juice in a large beer mug. Drop in a shot of amaretto, with shot glass, and slam.", @@ -59755,7 +59755,7 @@ "amaretto almond liqueur" ], "title": "Wisconsin Lunchbucket recipe", - "url": "http://www.drinksmixer.com/drink6593.html" + "url": "https://www.drinksmixer.com/drink6593.html" }, { "directions": "Pour vodka into a glass one-quarter filled with ice. Fill until two-thirds full with grape juice, and fill completely with russian water. Add a touch of grenadine, and serve.", @@ -59766,7 +59766,7 @@ "grenadine syrup" ], "title": "Wobbler recipe", - "url": "http://www.drinksmixer.com/drink6594.html" + "url": "https://www.drinksmixer.com/drink6594.html" }, { "directions": "Rub the inside of a highball glass with lemon juice, and sprinkle with sugar. Frost in a freezer. Shake ingredients, pour into the frosted glass, and serve.", @@ -59779,7 +59779,7 @@ "sugar" ], "title": "Wolfsbane recipe", - "url": "http://www.drinksmixer.com/drink6595.html" + "url": "https://www.drinksmixer.com/drink6595.html" }, { "directions": "Carefully layer ingredients, in order, into an ice-filled hurricane glass. Serve unstirred, garnished with a cherry.", @@ -59791,7 +59791,7 @@ "cranberry juice" ], "title": "Wonder Woman recipe", - "url": "http://www.drinksmixer.com/drink6596.html" + "url": "https://www.drinksmixer.com/drink6596.html" }, { "directions": "Pour liquids into a strainer with 4 - 6 ice cubes, and strain into a cocktail glass. Garnish with cherries, and serve.", @@ -59803,7 +59803,7 @@ "maraschino cherries" ], "title": "Wong Tong Cocktail recipe", - "url": "http://www.drinksmixer.com/drink6597.html" + "url": "https://www.drinksmixer.com/drink6597.html" }, { "directions": "Pour vodka over 4 ice cubes in an old-fashioned glass. Add peychaud bitters, and stir.", @@ -59812,7 +59812,7 @@ "Peychaud\u00ae bitters" ], "title": "Woodpecker recipe", - "url": "http://www.drinksmixer.com/drink6598.html" + "url": "https://www.drinksmixer.com/drink6598.html" }, { "directions": "Shake all ingredients with ice, strain into a cocktail glass, and serve.", @@ -59822,7 +59822,7 @@ "grapefruit juice" ], "title": "Woodward Cocktail recipe", - "url": "http://www.drinksmixer.com/drink6599.html" + "url": "https://www.drinksmixer.com/drink6599.html" }, { "directions": "Shake cachaca and juice with ice, and pour into a collins glass. Add galliano, and serve.", @@ -59832,7 +59832,7 @@ "Galliano\u00ae herbal liqueur" ], "title": "Woody Woodpecker recipe", - "url": "http://www.drinksmixer.com/drink6600.html" + "url": "https://www.drinksmixer.com/drink6600.html" }, { "directions": "Mix schnapps and amaretto in a shot glass. Float cream on top, and serve.", @@ -59842,7 +59842,7 @@ "heavy cream" ], "title": "Wookie recipe", - "url": "http://www.drinksmixer.com/drink6601.html" + "url": "https://www.drinksmixer.com/drink6601.html" }, { "directions": "Place cocoa powder into a mug, half-fill with hot water, and stir. Pour in the southern comfort, peppermint schnapps, and bailey's. Stir, add more hot water, and top with whipped cream.", @@ -59855,7 +59855,7 @@ "whipped cream" ], "title": "Wooly Mitten recipe", - "url": "http://www.drinksmixer.com/drink6602.html" + "url": "https://www.drinksmixer.com/drink6602.html" }, { "directions": "Combine rum, cream of coconut and pineapple juice in a regular sized blender. Blend on low speed, and fill with ice. Blend on high speed until ice is grainy. Pour into a hurricane glass, garnish with a pineapple wedge, and serve.", @@ -59866,7 +59866,7 @@ "pineapple" ], "title": "The World's Best Pina Colada recipe", - "url": "http://www.drinksmixer.com/drink6603.html" + "url": "https://www.drinksmixer.com/drink6603.html" }, { "directions": "Pour ingredients into a shaker with ice. Shake, and strain into a large white wine glass half-filled with crushed ice.", @@ -59879,7 +59879,7 @@ "bitters" ], "title": "Wrightsville Sunset recipe", - "url": "http://www.drinksmixer.com/drink6604.html" + "url": "https://www.drinksmixer.com/drink6604.html" }, { "directions": "Pour vodka over ice in a highball glass. Add equal parts of orange and cranberry juice, and serve.", @@ -59889,7 +59889,7 @@ "cranberry juice" ], "title": "Wu Wu recipe", - "url": "http://www.drinksmixer.com/drink6605.html" + "url": "https://www.drinksmixer.com/drink6605.html" }, { "directions": "Pour peach schnapps into a shot glass, and add vodka. Add amaretto until vodka turns to a light brown, and serve.", @@ -59899,7 +59899,7 @@ "amaretto almond liqueur" ], "title": "Zool recipe", - "url": "http://www.drinksmixer.com/drink6606.html" + "url": "https://www.drinksmixer.com/drink6606.html" }, { "directions": "Pour gin and 7-up over ice cubes in a glass, and float the jack daniel's on top. Garnish with a lemon wedge, and serve.", @@ -59909,7 +59909,7 @@ "Jack Daniel's\u00ae Tennessee whiskey" ], "title": "Zoot recipe", - "url": "http://www.drinksmixer.com/drink6607.html" + "url": "https://www.drinksmixer.com/drink6607.html" }, { "directions": "Serve in a cocktail glass, and garnish with a green olive.", @@ -59918,7 +59918,7 @@ "ouzo anise liqueur" ], "title": "Zorbatini recipe", - "url": "http://www.drinksmixer.com/drink6608.html" + "url": "https://www.drinksmixer.com/drink6608.html" }, { "directions": "Pour all ingredients into an irish coffee cup. Add hot black coffee, top with whipped cream, and serve.", @@ -59930,7 +59930,7 @@ "whipped cream" ], "title": "Zorro recipe", - "url": "http://www.drinksmixer.com/drink6609.html" + "url": "https://www.drinksmixer.com/drink6609.html" }, { "directions": "Pour into a heat-proof cup and serve immediately.", @@ -59942,7 +59942,7 @@ "lemon" ], "title": "Danish Toddy recipe", - "url": "http://www.drinksmixer.com/drink6610.html" + "url": "https://www.drinksmixer.com/drink6610.html" }, { "directions": "Shake all ingredients (except cola) and strain into an ice-filled highball glass. Add cola, garnish with a slice of lemon and a cherry, and serve.", @@ -59955,7 +59955,7 @@ "cola" ], "title": "Davenport recipe", - "url": "http://www.drinksmixer.com/drink6611.html" + "url": "https://www.drinksmixer.com/drink6611.html" }, { "directions": "Pour into an ice-filled highball glass, and serve.", @@ -59967,7 +59967,7 @@ "lemonade" ], "title": "Dickel Tickle recipe", - "url": "http://www.drinksmixer.com/drink6612.html" + "url": "https://www.drinksmixer.com/drink6612.html" }, { "directions": "Pour into an ice-filled pina colada glass filled with broken ice. Garnish with a slice of orange, and serve with straws.", @@ -59978,7 +59978,7 @@ "lemonade" ], "title": "Diplomatic Answer recipe", - "url": "http://www.drinksmixer.com/drink6613.html" + "url": "https://www.drinksmixer.com/drink6613.html" }, { "directions": "Shake with a glassful of ice and pour unstrained into a highball glass. Garnish with an orange slice, and serve.", @@ -59988,7 +59988,7 @@ "orange juice" ], "title": "Di Saronno Driver recipe", - "url": "http://www.drinksmixer.com/drink6614.html" + "url": "https://www.drinksmixer.com/drink6614.html" }, { "directions": "Pour into a wine glass three-quarters filled with broken ice. Garnish with a slice of lemon, and serve.", @@ -59999,7 +59999,7 @@ "lemonade" ], "title": "Dizzy Blonde recipe", - "url": "http://www.drinksmixer.com/drink6615.html" + "url": "https://www.drinksmixer.com/drink6615.html" }, { "directions": "Shake with a glassful of broken ice and pour unstrained into a highball glass. Add the ginger ale, garnish with a cherry and orange slice, and serve.", @@ -60011,7 +60011,7 @@ "dry ginger ale" ], "title": "Dundee Dream recipe", - "url": "http://www.drinksmixer.com/drink6616.html" + "url": "https://www.drinksmixer.com/drink6616.html" }, { "directions": "Blend all ingredients (except grenadine) briefly with half a glassful of crushed ice. Sprinkle grenadine on top, garnish with fruit, and serve.", @@ -60025,7 +60025,7 @@ "grenadine syrup" ], "title": "Easy Money recipe", - "url": "http://www.drinksmixer.com/drink6617.html" + "url": "https://www.drinksmixer.com/drink6617.html" }, { "directions": "Pour ingredients into an ice-filled highball glass. Garnish with a sprig of mint, and serve.", @@ -60036,7 +60036,7 @@ "lemonade" ], "title": "Escape Route recipe", - "url": "http://www.drinksmixer.com/drink6618.html" + "url": "https://www.drinksmixer.com/drink6618.html" }, { "directions": "Shake and strain into an ice-filled highball glass. Add tonic water, and serve.", @@ -60047,7 +60047,7 @@ "tonic water" ], "title": "Even Pair recipe", - "url": "http://www.drinksmixer.com/drink6619.html" + "url": "https://www.drinksmixer.com/drink6619.html" }, { "directions": "Shake all ingredients (except dark rum) and strain into an ice-filled highball glass. Sprinkle dark rum on top, and garnish with an orange slice. Serve with straws.", @@ -60061,7 +60061,7 @@ "dark rum" ], "title": "Eye of the Tiger recipe", - "url": "http://www.drinksmixer.com/drink6620.html" + "url": "https://www.drinksmixer.com/drink6620.html" }, { "directions": "Shake and strain into a pilsner filled with broken ice. Garnish with a cherry, and serve.", @@ -60077,7 +60077,7 @@ "grenadine syrup" ], "title": "Five Hundred Proof recipe", - "url": "http://www.drinksmixer.com/drink6621.html" + "url": "https://www.drinksmixer.com/drink6621.html" }, { "directions": "Shake and strain into an old-fashioned glass three-quarters filled with broken ice. Add cola, and serve.", @@ -60090,7 +60090,7 @@ "cola" ], "title": "Dawn Chorus recipe", - "url": "http://www.drinksmixer.com/drink6622.html" + "url": "https://www.drinksmixer.com/drink6622.html" }, { "directions": "Stir gin and peach bitters (or peach brandy) in a cordial glass. Add an olive and a mint leaf, and serve.", @@ -60099,7 +60099,7 @@ "peach bitters" ], "title": "Derby Cocktail recipe", - "url": "http://www.drinksmixer.com/drink6623.html" + "url": "https://www.drinksmixer.com/drink6623.html" }, { "directions": "Pour ingredients into an old-fashioned glass half-filled with broken ice. Garnish with a cherry, and serve.", @@ -60110,7 +60110,7 @@ "grenadine syrup" ], "title": "Devon Air recipe", - "url": "http://www.drinksmixer.com/drink6624.html" + "url": "https://www.drinksmixer.com/drink6624.html" }, { "directions": "Pour into an old-fashioned glass half-filled with ice, and serve.", @@ -60120,7 +60120,7 @@ "triple sec" ], "title": "Devon Gin recipe", - "url": "http://www.drinksmixer.com/drink6625.html" + "url": "https://www.drinksmixer.com/drink6625.html" }, { "directions": "Stir ingredients and strain into an old-fashioned glass filled with broken ice. Garnish with a slice of orange and a cherry, add straws, and serve.", @@ -60132,7 +60132,7 @@ "cognac" ], "title": "Downhill Cocktail recipe", - "url": "http://www.drinksmixer.com/drink6626.html" + "url": "https://www.drinksmixer.com/drink6626.html" }, { "directions": "Shake and strain into an old-fashioned glass three-quarters filled with broken ice.", @@ -60144,7 +60144,7 @@ "caster sugar" ], "title": "Duck Soup recipe", - "url": "http://www.drinksmixer.com/drink6627.html" + "url": "https://www.drinksmixer.com/drink6627.html" }, { "directions": "Pour ingredients into an old-fashioned glass half-filled with broken ice.", @@ -60154,7 +60154,7 @@ "apple juice" ], "title": "Duke of Cornwall recipe", - "url": "http://www.drinksmixer.com/drink6628.html" + "url": "https://www.drinksmixer.com/drink6628.html" }, { "directions": "Shake all ingredients (except lemonade) and strain into an old-fashioned glass half-filled with broken ice. Add lemonade, and garnish with a cherry and an orange slice. Serve with short straws.", @@ -60166,7 +60166,7 @@ "lemonade" ], "title": "Earls Court recipe", - "url": "http://www.drinksmixer.com/drink6629.html" + "url": "https://www.drinksmixer.com/drink6629.html" }, { "directions": "Shake and strain over two ice cubes in an old-fashioned glass.", @@ -60177,7 +60177,7 @@ "lemon juice" ], "title": "East West Cocktail recipe", - "url": "http://www.drinksmixer.com/drink6630.html" + "url": "https://www.drinksmixer.com/drink6630.html" }, { "directions": "Shake with a glassful of broken ice, and pour unstrained into an old-fashioned glass. Garnish with a slice of lemon, and serve.", @@ -60188,7 +60188,7 @@ "lemon juice" ], "title": "Easy Action recipe", - "url": "http://www.drinksmixer.com/drink6631.html" + "url": "https://www.drinksmixer.com/drink6631.html" }, { "directions": "Shake and strain the sloe gin and gin into a cordial glass containing the cherry. Gently sink the grenadine until just covering the cherry. Garnish with half a slice of orange, and serve.", @@ -60199,7 +60199,7 @@ "cherry" ], "title": "Eclipse recipe", - "url": "http://www.drinksmixer.com/drink6632.html" + "url": "https://www.drinksmixer.com/drink6632.html" }, { "directions": "Shake and strain into a double-cocktail glass filled with crushed ice. Add a short straw, and serve.", @@ -60210,7 +60210,7 @@ "lime juice" ], "title": "Eden Cocktail recipe", - "url": "http://www.drinksmixer.com/drink6633.html" + "url": "https://www.drinksmixer.com/drink6633.html" }, { "directions": "Cut a lime into eight seperate segments and place into an old-fashioned glass. Add sugar and crush until the juice is released. Add remaining ingredients, ensure sugar has dissolved, and fill with broken ice. Garnish with a slice of lime and a cherry. Add a short straw, and serve.", @@ -60223,7 +60223,7 @@ "sugar" ], "title": "Egril recipe", - "url": "http://www.drinksmixer.com/drink6634.html" + "url": "https://www.drinksmixer.com/drink6634.html" }, { "directions": "Shake ingredients, strain into a cocktail glass, and serve.", @@ -60235,7 +60235,7 @@ "passion-fruit juice" ], "title": "Emerald Star recipe", - "url": "http://www.drinksmixer.com/drink6635.html" + "url": "https://www.drinksmixer.com/drink6635.html" }, { "directions": "Shake and strain into a cocktail glass. Garnish with a cherry, and serve.", @@ -60247,7 +60247,7 @@ "grape juice" ], "title": "Evergreen recipe", - "url": "http://www.drinksmixer.com/drink6636.html" + "url": "https://www.drinksmixer.com/drink6636.html" }, { "directions": "Pour into an old-fashioned glass filled with broken ice. Garnish with a green cherry, and serve.", @@ -60256,7 +60256,7 @@ "white rum" ], "title": "Exterminator recipe", - "url": "http://www.drinksmixer.com/drink6637.html" + "url": "https://www.drinksmixer.com/drink6637.html" }, { "directions": "Shake and strain into a double-cocktail glass filled with crushed ice. Garnish with a speared cherry, and serve.", @@ -60269,7 +60269,7 @@ "caster sugar" ], "title": "Federal Punch recipe", - "url": "http://www.drinksmixer.com/drink6638.html" + "url": "https://www.drinksmixer.com/drink6638.html" }, { "directions": "Pour into an old-fashioned glass three-quarters filled with broken ice, and serve.", @@ -60280,7 +60280,7 @@ "lemonade" ], "title": "Firebird recipe", - "url": "http://www.drinksmixer.com/drink6639.html" + "url": "https://www.drinksmixer.com/drink6639.html" }, { "directions": "Pour into a frosted wine glass, and serve.", @@ -60289,7 +60289,7 @@ "apricot brandy" ], "title": "Fantaisie recipe", - "url": "http://www.drinksmixer.com/drink6640.html" + "url": "https://www.drinksmixer.com/drink6640.html" }, { "directions": "Shake and strain into an ice-filled old-fashioned glass.", @@ -60300,7 +60300,7 @@ "double cream" ], "title": "Dead Man's Handle recipe", - "url": "http://www.drinksmixer.com/drink6641.html" + "url": "https://www.drinksmixer.com/drink6641.html" }, { "directions": "Shake and strain into an old-fashioned glass filled with broken ice. Garnish with a speared cherry, add short straws, and serve.", @@ -60311,7 +60311,7 @@ "whipping cream" ], "title": "Dizzy Dame recipe", - "url": "http://www.drinksmixer.com/drink6642.html" + "url": "https://www.drinksmixer.com/drink6642.html" }, { "directions": "Shake and strain into a champagne saucer. Garnish with a cherry, and serve.", @@ -60322,7 +60322,7 @@ "whipping cream" ], "title": "Explorer's Reward recipe", - "url": "http://www.drinksmixer.com/drink6643.html" + "url": "https://www.drinksmixer.com/drink6643.html" }, { "directions": "Shake and strain into a champagne saucer. Garnish with a sprig of mint and a cherry, and serve.", @@ -60333,7 +60333,7 @@ "double cream" ], "title": "Failure recipe", - "url": "http://www.drinksmixer.com/drink6644.html" + "url": "https://www.drinksmixer.com/drink6644.html" }, { "directions": "Shake and strain into a cordial glass, and serve.", @@ -60343,7 +60343,7 @@ "whipping cream" ], "title": "Flapjack Shooter recipe", - "url": "http://www.drinksmixer.com/drink6645.html" + "url": "https://www.drinksmixer.com/drink6645.html" }, { "directions": "Shake and strain into a cocktail glass. Garnish with a cherry, and serve.", @@ -60354,7 +60354,7 @@ "whipping cream" ], "title": "Fluffy F recipe", - "url": "http://www.drinksmixer.com/drink6646.html" + "url": "https://www.drinksmixer.com/drink6646.html" }, { "directions": "Shake and strain into a champagne flute. Garnish with a speared cherry or raspberry, and serve.", @@ -60365,7 +60365,7 @@ "whipping cream" ], "title": "French Kiss recipe", - "url": "http://www.drinksmixer.com/drink6647.html" + "url": "https://www.drinksmixer.com/drink6647.html" }, { "directions": "Shake and strain into a saucer. Garnish with a pineapple chunk and a sprig of mint, and serve.", @@ -60376,7 +60376,7 @@ "grenadine syrup" ], "title": "Gardenia recipe", - "url": "http://www.drinksmixer.com/drink6648.html" + "url": "https://www.drinksmixer.com/drink6648.html" }, { "directions": "Shake and strain into a small glass, and garnish with a cherry.", @@ -60388,7 +60388,7 @@ "whipping cream" ], "title": "Girl Scout recipe", - "url": "http://www.drinksmixer.com/drink6649.html" + "url": "https://www.drinksmixer.com/drink6649.html" }, { "directions": "Shake and strain into an ice-filled old-fashioned glass. Add a cherry, and serve.", @@ -60400,7 +60400,7 @@ "double cream" ], "title": "Goat Herder recipe", - "url": "http://www.drinksmixer.com/drink6650.html" + "url": "https://www.drinksmixer.com/drink6650.html" }, { "directions": "Shake and strain into a cocktail glass. Garnish with a half-slice of orange and a cherry, and serve.", @@ -60412,7 +60412,7 @@ "Galliano\u00ae herbal liqueur" ], "title": "Golden Sunset recipe", - "url": "http://www.drinksmixer.com/drink6651.html" + "url": "https://www.drinksmixer.com/drink6651.html" }, { "directions": "Rim a champagne saucer with egg white and sweet grated coconut. Shake ingredients and strain into the saucer. Garnish with a slice of lime and a cherry, and serve.", @@ -60425,7 +60425,7 @@ "whipping cream" ], "title": "Hairy Coconut recipe", - "url": "http://www.drinksmixer.com/drink6652.html" + "url": "https://www.drinksmixer.com/drink6652.html" }, { "directions": "Make pousse-cafe in a shot glass, and serve.", @@ -60435,7 +60435,7 @@ "dark rum" ], "title": "Heart Throb recipe", - "url": "http://www.drinksmixer.com/drink6653.html" + "url": "https://www.drinksmixer.com/drink6653.html" }, { "directions": "Shake and strain into an ice-filled old-fashioned glass, and serve.", @@ -60448,7 +60448,7 @@ "whipping cream" ], "title": "Highland Cream recipe", - "url": "http://www.drinksmixer.com/drink6654.html" + "url": "https://www.drinksmixer.com/drink6654.html" }, { "directions": "Pour into a champagne flute. Garnish with a half-slice of orange, and serve.", @@ -60458,7 +60458,7 @@ "orange juice" ], "title": "Di Saronno Mimosa recipe", - "url": "http://www.drinksmixer.com/drink6655.html" + "url": "https://www.drinksmixer.com/drink6655.html" }, { "directions": "Pour champagne, grand marnier and juices into a wine goblet three-quarters filled with broken ice. Add a slice of orange, and float a curacao-soaked sugar cube on top. Serve with short straws.", @@ -60471,7 +60471,7 @@ "sugar" ], "title": "Fiddlers Toast recipe", - "url": "http://www.drinksmixer.com/drink6656.html" + "url": "https://www.drinksmixer.com/drink6656.html" }, { "directions": "Pour into a champagne flute, garnish with a twist of orange, and serve.", @@ -60481,7 +60481,7 @@ "tangerine schnapps" ], "title": "Fireworks recipe", - "url": "http://www.drinksmixer.com/drink6657.html" + "url": "https://www.drinksmixer.com/drink6657.html" }, { "directions": "Pour into a champagne saucer, and serve.", @@ -60491,7 +60491,7 @@ "cognac" ], "title": "Fraise de Champagne recipe", - "url": "http://www.drinksmixer.com/drink6658.html" + "url": "https://www.drinksmixer.com/drink6658.html" }, { "directions": "Stir all ingredients (except babycham) and strain into a cocktail glass. Add babycham, garnish with a cherry, and serve.", @@ -60503,7 +60503,7 @@ "lime juice" ], "title": "Gagarin recipe", - "url": "http://www.drinksmixer.com/drink6659.html" + "url": "https://www.drinksmixer.com/drink6659.html" }, { "directions": "Half-fill a beer pilsner with lager. Add pineapple juice, and gently top with champagne.", @@ -60513,7 +60513,7 @@ "Champagne" ], "title": "Gold Velvet recipe", - "url": "http://www.drinksmixer.com/drink6660.html" + "url": "https://www.drinksmixer.com/drink6660.html" }, { "directions": "Pour into a champagne flute, add a cherry, and serve.", @@ -60522,7 +60522,7 @@ "Old Krupnik\u00ae honey liqueur" ], "title": "Good Old Days recipe", - "url": "http://www.drinksmixer.com/drink6661.html" + "url": "https://www.drinksmixer.com/drink6661.html" }, { "directions": "Dissolve syrup in juices, add champagne, and serve.", @@ -60533,7 +60533,7 @@ "maple syrup" ], "title": "Great Idea recipe", - "url": "http://www.drinksmixer.com/drink6662.html" + "url": "https://www.drinksmixer.com/drink6662.html" }, { "directions": "Pour into a champagne flute, garnish with a green maraschino cherry, and serve.", @@ -60542,7 +60542,7 @@ "Midori\u00ae melon liqueur" ], "title": "Green Dragon Cocktail recipe", - "url": "http://www.drinksmixer.com/drink6663.html" + "url": "https://www.drinksmixer.com/drink6663.html" }, { "directions": "Pour into a wine glass half-filled with broken ice. Garnish with a slice of lemon, and serve.", @@ -60554,7 +60554,7 @@ "lemon juice" ], "title": "Happy Hollander recipe", - "url": "http://www.drinksmixer.com/drink6664.html" + "url": "https://www.drinksmixer.com/drink6664.html" }, { "directions": "Shake briefly with a glassful of broken ice, in a double-cocktail glass. Add champagne, and serve.", @@ -60566,7 +60566,7 @@ "lemon juice" ], "title": "Henry's Special recipe", - "url": "http://www.drinksmixer.com/drink6665.html" + "url": "https://www.drinksmixer.com/drink6665.html" }, { "directions": "Pour into a champagne flute, and garnish with a half-slice of orange and a cherry.", @@ -60577,7 +60577,7 @@ "grenadine syrup" ], "title": "Horn of Plenty recipe", - "url": "http://www.drinksmixer.com/drink6666.html" + "url": "https://www.drinksmixer.com/drink6666.html" }, { "directions": "Shake and strain into an ice-filled pina colada glass. Add champagne, straws, and serve.", @@ -60588,7 +60588,7 @@ "pineapple juice" ], "title": "Hotel California recipe", - "url": "http://www.drinksmixer.com/drink6667.html" + "url": "https://www.drinksmixer.com/drink6667.html" }, { "directions": "Pour into a champagne flute. Garnish with a sugar-dipped strawberry, and serve.", @@ -60598,7 +60598,7 @@ "pineapple juice" ], "title": "June Sparkle recipe", - "url": "http://www.drinksmixer.com/drink6668.html" + "url": "https://www.drinksmixer.com/drink6668.html" }, { "directions": "Pour champagne, cognac and orange juice into a champagne flute. Add one sugar cube, saturated in angostura bitters, and a twist of orange. Serve with a muddler.", @@ -60610,7 +60610,7 @@ "sugar" ], "title": "Keep it Up recipe", - "url": "http://www.drinksmixer.com/drink6669.html" + "url": "https://www.drinksmixer.com/drink6669.html" }, { "directions": "Pour into a champagne flute, and serve.", @@ -60620,7 +60620,7 @@ "kiwi juice" ], "title": "Kiwi Sparkle recipe", - "url": "http://www.drinksmixer.com/drink6670.html" + "url": "https://www.drinksmixer.com/drink6670.html" }, { "directions": "Serve in a champagne flute.", @@ -60630,7 +60630,7 @@ "Pineau des Charentes\u00ae white wine" ], "title": "L'Aunisien recipe", - "url": "http://www.drinksmixer.com/drink6671.html" + "url": "https://www.drinksmixer.com/drink6671.html" }, { "directions": "Shake and strain into a wine goblet three-quarters filled with broken ice. Add champagne, garnish with a sprig of mint, and serve.", @@ -60642,7 +60642,7 @@ "orange juice" ], "title": "La Panthere Rose recipe", - "url": "http://www.drinksmixer.com/drink6672.html" + "url": "https://www.drinksmixer.com/drink6672.html" }, { "directions": "Pour into a champagne flute, add a cherry, and serve.", @@ -60653,7 +60653,7 @@ "passion-fruit syrup" ], "title": "London Bus recipe", - "url": "http://www.drinksmixer.com/drink6673.html" + "url": "https://www.drinksmixer.com/drink6673.html" }, { "directions": "Heat gently in a small saucepan, strain into a heat-proof cup, and serve.", @@ -60665,7 +60665,7 @@ "lemon" ], "title": "Dot's Hot Spot recipe", - "url": "http://www.drinksmixer.com/drink6674.html" + "url": "https://www.drinksmixer.com/drink6674.html" }, { "directions": "Simmer gently for 30 seconds and strain into a heat-proof goblet.", @@ -60679,7 +60679,7 @@ "cloves" ], "title": "Gluhwein recipe", - "url": "http://www.drinksmixer.com/drink6675.html" + "url": "https://www.drinksmixer.com/drink6675.html" }, { "directions": "Blend all ingredients (except milk) until smooth and pour into a heat-proof goblet. Add boiling milk, sprinkle with nutmeg and serve.", @@ -60691,7 +60691,7 @@ "milk" ], "title": "Hot Egg Nogg recipe", - "url": "http://www.drinksmixer.com/drink6676.html" + "url": "https://www.drinksmixer.com/drink6676.html" }, { "directions": "Pour into a heat-proof goblet, and serve.", @@ -60703,7 +60703,7 @@ "cinnamon" ], "title": "Hot Gin recipe", - "url": "http://www.drinksmixer.com/drink6677.html" + "url": "https://www.drinksmixer.com/drink6677.html" }, { "directions": "Pour into a heat-proof goblet, sweeten with brown sugar (to taste), and serve.\n\n", @@ -60714,7 +60714,7 @@ "cinnamon" ], "title": "Hot Irish recipe", - "url": "http://www.drinksmixer.com/drink6678.html" + "url": "https://www.drinksmixer.com/drink6678.html" }, { "directions": "Heat gently in a saucepan, pour unstrained into a heat-proof goblet, and serve.", @@ -60728,7 +60728,7 @@ "lime" ], "title": "Hot Jamaican recipe", - "url": "http://www.drinksmixer.com/drink6679.html" + "url": "https://www.drinksmixer.com/drink6679.html" }, { "directions": "Pour juice and water into a heat-proof cup, dissolve sugar, and serve.", @@ -60738,7 +60738,7 @@ "water" ], "title": "Hot Lemon recipe", - "url": "http://www.drinksmixer.com/drink6680.html" + "url": "https://www.drinksmixer.com/drink6680.html" }, { "directions": "Pour into a heat-proof cup, and serve.", @@ -60749,7 +60749,7 @@ "milk" ], "title": "Hot Scotch Nightcap recipe", - "url": "http://www.drinksmixer.com/drink6681.html" + "url": "https://www.drinksmixer.com/drink6681.html" }, { "directions": "Add bailey's to a standard cappuccino, and serve.", @@ -60758,7 +60758,7 @@ "cappuccino" ], "title": "Irish Cappuccino recipe", - "url": "http://www.drinksmixer.com/drink6682.html" + "url": "https://www.drinksmixer.com/drink6682.html" }, { "directions": "Pour ingredients into a heat-proof cup, sprinkle with grated chocolate, and serve.", @@ -60768,7 +60768,7 @@ "milk" ], "title": "Irish Milk Punch recipe", - "url": "http://www.drinksmixer.com/drink6683.html" + "url": "https://www.drinksmixer.com/drink6683.html" }, { "directions": "Add bailey's and creme de cacao to a normal cup of cappuccino, and serve.", @@ -60778,7 +60778,7 @@ "dark creme de cacao" ], "title": "Kerry Cappuccino recipe", - "url": "http://www.drinksmixer.com/drink6684.html" + "url": "https://www.drinksmixer.com/drink6684.html" }, { "directions": "Mix ale, spices and sugar with 6 roasted apples (cored, peeled and mashed) in a large warm jug. Serve in heat-proof goblets.", @@ -60790,7 +60790,7 @@ "sugar" ], "title": "Lamb's Wool recipe", - "url": "http://www.drinksmixer.com/drink6685.html" + "url": "https://www.drinksmixer.com/drink6685.html" }, { "directions": "Pour coffee and liquor into an irish coffee cup and sweeten to taste. Gently float the cream on top, and sprinkle with nutmeg.", @@ -60801,7 +60801,7 @@ "sugar" ], "title": "Dutch Coffee recipe", - "url": "http://www.drinksmixer.com/drink6686.html" + "url": "https://www.drinksmixer.com/drink6686.html" }, { "directions": "Pour coffee, vandermint and kahlua into an irish coffee cup and sweeten to taste. Gently float the cream on top, add amaretto, and serve.", @@ -60814,7 +60814,7 @@ "sugar" ], "title": "Dutch Coffee (USA) recipe", - "url": "http://www.drinksmixer.com/drink6687.html" + "url": "https://www.drinksmixer.com/drink6687.html" }, { "directions": "Pour coffee, gin, triple sec and kahlua into an irish coffee cup and sweeten to taste. Gently float the cream on top, add a teaspoon of triple sec, and serve.", @@ -60827,7 +60827,7 @@ "triple sec" ], "title": "English Coffee recipe", - "url": "http://www.drinksmixer.com/drink6688.html" + "url": "https://www.drinksmixer.com/drink6688.html" }, { "directions": "Pour coffee, cointreau and kahlua into an irish coffee cup and sweeten to taste. Gently float the cream on top, add a teaspoon of cointreau, and serve.", @@ -60840,7 +60840,7 @@ "Cointreau\u00ae orange liqueur" ], "title": "French Coffee recipe", - "url": "http://www.drinksmixer.com/drink6689.html" + "url": "https://www.drinksmixer.com/drink6689.html" }, { "directions": "Pour coffee and liquor into an irish coffee cup and sweeten to taste. Gently float the cream on top, garnish with a black cherry, and serve.", @@ -60851,7 +60851,7 @@ "sugar" ], "title": "German Coffee recipe", - "url": "http://www.drinksmixer.com/drink6690.html" + "url": "https://www.drinksmixer.com/drink6690.html" }, { "directions": "Pour coffee and liquor into an irish coffee cup and sweeten to taste. Gently float the cream on top, garnish with a cherry, and serve.", @@ -60863,7 +60863,7 @@ "sugar" ], "title": "Irish Mist Coffee recipe", - "url": "http://www.drinksmixer.com/drink6691.html" + "url": "https://www.drinksmixer.com/drink6691.html" }, { "directions": "Pour coffee and liquor into an irish coffee cup and sweeten to taste. Gently float the cream on top, and sprinkle with nutmeg.", @@ -60874,7 +60874,7 @@ "sugar" ], "title": "Italian Coffee recipe", - "url": "http://www.drinksmixer.com/drink6692.html" + "url": "https://www.drinksmixer.com/drink6692.html" }, { "directions": "Pour coffee, amaretto and kahlua into an irish coffee cup and sweeten to taste. Gently float the cream on top, add a teaspoon of amaretto, and serve.", @@ -60887,7 +60887,7 @@ "amaretto almond liqueur" ], "title": "Italian Coffee (USA) recipe", - "url": "http://www.drinksmixer.com/drink6693.html" + "url": "https://www.drinksmixer.com/drink6693.html" }, { "directions": "Pour coffee and liquor into an irish coffee cup and sweeten to taste. Gently float the cream on top, add amaretto, and serve.", @@ -60900,7 +60900,7 @@ "amaretto almond liqueur" ], "title": "Lagos Coffee recipe", - "url": "http://www.drinksmixer.com/drink6694.html" + "url": "https://www.drinksmixer.com/drink6694.html" }, { "directions": "Add to a heat-proof cup, sweeten to taste, and serve.", @@ -60912,7 +60912,7 @@ "sugar" ], "title": "Irish 49 recipe", - "url": "http://www.drinksmixer.com/drink6695.html" + "url": "https://www.drinksmixer.com/drink6695.html" }, { "directions": "Blend briefly with a glassful of crushed ice in an old-fashioned glass. Garnish with a lemon spiral, and serve.", @@ -60924,7 +60924,7 @@ "egg" ], "title": "Egg Sour recipe", - "url": "http://www.drinksmixer.com/drink6696.html" + "url": "https://www.drinksmixer.com/drink6696.html" }, { "directions": "Add ingredients to a punch bowl with sufficient crushed ice to slush. Serve in wine glasses.", @@ -60935,7 +60935,7 @@ "strawberries" ], "title": "El Grito recipe", - "url": "http://www.drinksmixer.com/drink6697.html" + "url": "https://www.drinksmixer.com/drink6697.html" }, { "directions": "Add all ingredients, with slices of orange and lemon, to a punch bowl. Add sufficient ice to chill, and serve in wine glasses. Add white rum if desired.", @@ -60949,7 +60949,7 @@ "ginger ale" ], "title": "Fruit Juice Cup recipe", - "url": "http://www.drinksmixer.com/drink6698.html" + "url": "https://www.drinksmixer.com/drink6698.html" }, { "directions": "Combine all ingredients (except ginger ale) in a large jug and chill for two hours. Add ginger ale, and serve into wine glasses.", @@ -60961,7 +60961,7 @@ "dry ginger ale" ], "title": "Ginger Punch recipe", - "url": "http://www.drinksmixer.com/drink6699.html" + "url": "https://www.drinksmixer.com/drink6699.html" }, { "directions": "Pour into an ice-filled highball glass. Add lemon-quarter shell, and serve.", @@ -60971,7 +60971,7 @@ "ginger ale" ], "title": "Fast Buck recipe", - "url": "http://www.drinksmixer.com/drink6700.html" + "url": "https://www.drinksmixer.com/drink6700.html" }, { "directions": "Pour into an ice-filled collins glass, add a slice of orange, and serve.", @@ -60981,7 +60981,7 @@ "lemonade" ], "title": "Ferandina recipe", - "url": "http://www.drinksmixer.com/drink6701.html" + "url": "https://www.drinksmixer.com/drink6701.html" }, { "directions": "Pour ingredients into an old-fashioned glass three-quarters filled with broken ice. Garnish with a slice of lime speared with a cherry, and serve.", @@ -60991,7 +60991,7 @@ "lime juice" ], "title": "Key Punch recipe", - "url": "http://www.drinksmixer.com/drink6702.html" + "url": "https://www.drinksmixer.com/drink6702.html" }, { "directions": "Pour tea into a heat-proof goblet, and sweeten to taste. Add rum, wedge-shaped slice of lemon, and a cinnamon stick. Serve.", @@ -61003,7 +61003,7 @@ "sugar" ], "title": "Fireside Tea recipe", - "url": "http://www.drinksmixer.com/drink6703.html" + "url": "https://www.drinksmixer.com/drink6703.html" }, { "directions": "Combine in a heat-proof cup, and sweeten to taste. Add a slice of orange, and serve.", @@ -61013,7 +61013,7 @@ "sugar" ], "title": "Hot-T recipe", - "url": "http://www.drinksmixer.com/drink6704.html" + "url": "https://www.drinksmixer.com/drink6704.html" }, { "directions": "Gently simmer tea and peel in a small saucepan for 1 - 2 minutes. Add liquors and pour, with peel, into a cup. Serve.", @@ -61024,7 +61024,7 @@ "sugar" ], "title": "Indian Tea recipe", - "url": "http://www.drinksmixer.com/drink6705.html" + "url": "https://www.drinksmixer.com/drink6705.html" }, { "directions": "Pour into a hot cup, sprinkle with grated nutmeg, and serve.", @@ -61036,7 +61036,7 @@ "water" ], "title": "Galliano Toddy recipe", - "url": "http://www.drinksmixer.com/drink6706.html" + "url": "https://www.drinksmixer.com/drink6706.html" }, { "directions": "Pour into an old-fashioned glass filled with broken ice, and serve.", @@ -61047,7 +61047,7 @@ "Campari\u00ae bitters" ], "title": "First Avenue recipe", - "url": "http://www.drinksmixer.com/drink6707.html" + "url": "https://www.drinksmixer.com/drink6707.html" }, { "directions": "Pour grappa and southern comfort into a shot glass. Heat and ignite rum in a spoon, and add to the glass. Extinguish flame, and serve.", @@ -61057,7 +61057,7 @@ "white rum" ], "title": "Flame Thrower recipe", - "url": "http://www.drinksmixer.com/drink6708.html" + "url": "https://www.drinksmixer.com/drink6708.html" }, { "directions": "Pour ingredients into an old-fashioned glass half-filled with broken ice, and serve.", @@ -61069,7 +61069,7 @@ "bitter lemon soda" ], "title": "Flamenco recipe", - "url": "http://www.drinksmixer.com/drink6709.html" + "url": "https://www.drinksmixer.com/drink6709.html" }, { "directions": "Pour into a pina colada glass filled with broken ice. Add a sprig of mint, straws, and serve.", @@ -61081,7 +61081,7 @@ "pineapple juice" ], "title": "Fly Swatter recipe", - "url": "http://www.drinksmixer.com/drink6710.html" + "url": "https://www.drinksmixer.com/drink6710.html" }, { "directions": "Pour ingredients into a collins glass filled with broken ice. Garnish with a slice of lime, a sprig of mint, and serve.", @@ -61093,7 +61093,7 @@ "tonic water" ], "title": "Formula 1 recipe", - "url": "http://www.drinksmixer.com/drink6711.html" + "url": "https://www.drinksmixer.com/drink6711.html" }, { "directions": "Rim a collins glass with lemon and caster sugar, and fill with ice. Shake ingredients, strain into the glass, and add 7-up. Garnish with a slice of orange and a green maraschino cherry, and serve.", @@ -61106,7 +61106,7 @@ "7-Up\u00ae soda" ], "title": "Frosty Amour recipe", - "url": "http://www.drinksmixer.com/drink6712.html" + "url": "https://www.drinksmixer.com/drink6712.html" }, { "directions": "Pour ingredients into a highball glass. Garnish with fruit, add straws, and serve.", @@ -61118,7 +61118,7 @@ "7-Up\u00ae soda" ], "title": "Gang Up recipe", - "url": "http://www.drinksmixer.com/drink6713.html" + "url": "https://www.drinksmixer.com/drink6713.html" }, { "directions": "Shake and strain into an ice-filled collins glass, and add water. Garnish with a slice of orange and a cherry, and serve.", @@ -61129,7 +61129,7 @@ "mineral water" ], "title": "Gin Lollipop recipe", - "url": "http://www.drinksmixer.com/drink6714.html" + "url": "https://www.drinksmixer.com/drink6714.html" }, { "directions": "Shake and strain into a pina colada glass filled with broken ice. Garnish with a slice of pineapple, and serve.", @@ -61140,7 +61140,7 @@ "orange juice" ], "title": "Goldilocks recipe", - "url": "http://www.drinksmixer.com/drink6715.html" + "url": "https://www.drinksmixer.com/drink6715.html" }, { "directions": "Pour into an ice-filled glass, garnish with a seedless grape, and serve.", @@ -61150,7 +61150,7 @@ "cherryade" ], "title": "Graffiti recipe", - "url": "http://www.drinksmixer.com/drink6716.html" + "url": "https://www.drinksmixer.com/drink6716.html" }, { "directions": "Shake and strain into a highball glass filled with crushed ice. Garnish with a mint sprig, and serve.", @@ -61162,7 +61162,7 @@ "pineapple juice" ], "title": "Gremlin Fixer recipe", - "url": "http://www.drinksmixer.com/drink6717.html" + "url": "https://www.drinksmixer.com/drink6717.html" }, { "directions": "Pour into an ice-filled highball glass, garnish with fruit, and serve.", @@ -61173,7 +61173,7 @@ "bitter lemon soda" ], "title": "Grocery Boy recipe", - "url": "http://www.drinksmixer.com/drink6718.html" + "url": "https://www.drinksmixer.com/drink6718.html" }, { "directions": "Blend briefly with a glassful of crushed ice. Garnish with fruit, add straws, and serve.", @@ -61188,7 +61188,7 @@ "strawberry syrup" ], "title": "Haitian Gold recipe", - "url": "http://www.drinksmixer.com/drink6719.html" + "url": "https://www.drinksmixer.com/drink6719.html" }, { "directions": "Shake and strain into a collins glass filled \r", @@ -61201,7 +61201,7 @@ "grenadine syrup" ], "title": "Half-Man Half-Wit recipe", - "url": "http://www.drinksmixer.com/drink6720.html" + "url": "https://www.drinksmixer.com/drink6720.html" }, { "directions": "Pour ingredients into an ice-filled collins glass, and serve.", @@ -61213,7 +61213,7 @@ "bitter lemon soda" ], "title": "Hell Bender recipe", - "url": "http://www.drinksmixer.com/drink6721.html" + "url": "https://www.drinksmixer.com/drink6721.html" }, { "directions": "Pour into an ice-filled collins glass, and serve.", @@ -61225,7 +61225,7 @@ "bitter lemon soda" ], "title": "Hell Hole recipe", - "url": "http://www.drinksmixer.com/drink6722.html" + "url": "https://www.drinksmixer.com/drink6722.html" }, { "directions": "Pour into an ice-filled wine goblet, add a half-slice of lemon, and serve.", @@ -61239,7 +61239,7 @@ "lemonade" ], "title": "Henry's Last Hurrah recipe", - "url": "http://www.drinksmixer.com/drink6723.html" + "url": "https://www.drinksmixer.com/drink6723.html" }, { "directions": "Pour into an ice-filled collins glass. Garnish with a cherry and a half-slice of lemon, and serve.", @@ -61251,7 +61251,7 @@ "bitter lemon soda" ], "title": "High Moon recipe", - "url": "http://www.drinksmixer.com/drink6724.html" + "url": "https://www.drinksmixer.com/drink6724.html" }, { "directions": "Shake and strain into an ice-filled highball glass. Add straws, and serve.", @@ -61264,7 +61264,7 @@ "grape juice" ], "title": "Hobart recipe", - "url": "http://www.drinksmixer.com/drink6725.html" + "url": "https://www.drinksmixer.com/drink6725.html" }, { "directions": "Pour ingredients into an ice-filled highball glass. Garnish with a slice of lemon and a cherry. Serve.", @@ -61275,7 +61275,7 @@ "bitter lemon soda" ], "title": "Hyatt Club recipe", - "url": "http://www.drinksmixer.com/drink6726.html" + "url": "https://www.drinksmixer.com/drink6726.html" }, { "directions": "Pour into an ice-filled highball glass, and serve.", @@ -61287,7 +61287,7 @@ "7-Up\u00ae soda" ], "title": "Indycar recipe", - "url": "http://www.drinksmixer.com/drink6727.html" + "url": "https://www.drinksmixer.com/drink6727.html" }, { "directions": "Pour into an ice-filled highball glass, and serve.", @@ -61299,7 +61299,7 @@ "lemonade" ], "title": "Jagger's Satisfaction recipe", - "url": "http://www.drinksmixer.com/drink6728.html" + "url": "https://www.drinksmixer.com/drink6728.html" }, { "directions": "Serve in an ice-filled highball glass.", @@ -61311,7 +61311,7 @@ "7-Up\u00ae soda" ], "title": "Jug Wobbler recipe", - "url": "http://www.drinksmixer.com/drink6729.html" + "url": "https://www.drinksmixer.com/drink6729.html" }, { "directions": "Shake all ingredients (except lemonade) and strain into a pina colada glass filled with broken ice. Add lemonade, and garnish with fruit. Serve with straws.", @@ -61325,7 +61325,7 @@ "lemonade" ], "title": "Jungle Wild recipe", - "url": "http://www.drinksmixer.com/drink6730.html" + "url": "https://www.drinksmixer.com/drink6730.html" }, { "directions": "Blend ingredients briefly with a glassful of crushed ice. Serve in a wine goblet, garnish with a cherry and orange slice, and serve.", @@ -61338,7 +61338,7 @@ "grenadine syrup" ], "title": "Kismet Hardy recipe", - "url": "http://www.drinksmixer.com/drink6731.html" + "url": "https://www.drinksmixer.com/drink6731.html" }, { "directions": "Shake all ingredients (except sprite) and strain into an ice-filled collins glass. Add sprite. Garnish with a cherry, slices of orange and lemon, and serve.", @@ -61352,7 +61352,7 @@ "Sprite\u00ae soda" ], "title": "Kitten Cuddler recipe", - "url": "http://www.drinksmixer.com/drink6732.html" + "url": "https://www.drinksmixer.com/drink6732.html" }, { "directions": "Pour ingredients into an ice-filled highball glass. Garnish with a sprig of mint and a cherry, and serve.", @@ -61363,7 +61363,7 @@ "cherryade" ], "title": "Krook's Quencher recipe", - "url": "http://www.drinksmixer.com/drink6733.html" + "url": "https://www.drinksmixer.com/drink6733.html" }, { "directions": "Shake, strain into an ice-filled highball glass, and serve.", @@ -61374,7 +61374,7 @@ "orange juice" ], "title": "Lady in Green recipe", - "url": "http://www.drinksmixer.com/drink6734.html" + "url": "https://www.drinksmixer.com/drink6734.html" }, { "directions": "Pour ingredients into an ice-filled wine goblet. Garnish with a cherry, slices of orange and lemon, and serve.", @@ -61386,7 +61386,7 @@ "orangeade" ], "title": "Lark recipe", - "url": "http://www.drinksmixer.com/drink6735.html" + "url": "https://www.drinksmixer.com/drink6735.html" }, { "directions": "Shake and strain into an ice-filled collins glass. Add lemonade, garnish with an orange slice and cherry, and serve.", @@ -61400,7 +61400,7 @@ "lemonade" ], "title": "Larney recipe", - "url": "http://www.drinksmixer.com/drink6736.html" + "url": "https://www.drinksmixer.com/drink6736.html" }, { "directions": "Blend briefly with a tablespoon of crushed ice in a highball glass. Add straws, and serve.", @@ -61412,7 +61412,7 @@ "lemon sherbet" ], "title": "Lemon Tree recipe", - "url": "http://www.drinksmixer.com/drink6737.html" + "url": "https://www.drinksmixer.com/drink6737.html" }, { "directions": "Pour into an ice-filled glass. Garnish with a cherry and orange slice, and serve with straws.", @@ -61424,7 +61424,7 @@ "lemonade" ], "title": "Lesbian Joy recipe", - "url": "http://www.drinksmixer.com/drink6738.html" + "url": "https://www.drinksmixer.com/drink6738.html" }, { "directions": "Pour into a collins glass three-quarters filled with broken ice. Garnish with a slice of orange and a cherry, add straws, and serve.", @@ -61435,7 +61435,7 @@ "bitter lemon soda" ], "title": "Lutteur recipe", - "url": "http://www.drinksmixer.com/drink6739.html" + "url": "https://www.drinksmixer.com/drink6739.html" }, { "directions": "Squeeze lime juice into a shaker, add remaining ingredients and shake briefly with a glassful of crushed ice. Serve in a frosted cocktail glass.", @@ -61446,7 +61446,7 @@ "grapefruit juice" ], "title": "Hemingway Special recipe", - "url": "http://www.drinksmixer.com/drink6740.html" + "url": "https://www.drinksmixer.com/drink6740.html" }, { "directions": "Shake briefly with a glassful of crushed ice, and pour unstrained into a frosted cocktail glass. Serve.", @@ -61457,7 +61457,7 @@ "sugar syrup" ], "title": "La Floridita Daiquiri recipe", - "url": "http://www.drinksmixer.com/drink6741.html" + "url": "https://www.drinksmixer.com/drink6741.html" }, { "directions": "Shake briefly with three-quarters of a glassful of crushed ice. Serve with a short straw in an old-fashioned glass.", @@ -61467,7 +61467,7 @@ "green creme de menthe" ], "title": "Flying Grasshopper recipe", - "url": "http://www.drinksmixer.com/drink6742.html" + "url": "https://www.drinksmixer.com/drink6742.html" }, { "directions": "Shake and strain into an old-fashioned glass three-quarters filled with broken ice.", @@ -61478,7 +61478,7 @@ "lemon juice" ], "title": "Fondaudege recipe", - "url": "http://www.drinksmixer.com/drink6743.html" + "url": "https://www.drinksmixer.com/drink6743.html" }, { "directions": "Pour into an old-fashioned glass filled with broken ice. Garnish with a twist of lime, and serve.", @@ -61488,7 +61488,7 @@ "Kirschwasser\u00ae cherry brandy" ], "title": "Forget-Me-Not recipe", - "url": "http://www.drinksmixer.com/drink6744.html" + "url": "https://www.drinksmixer.com/drink6744.html" }, { "directions": "Shake and strain into an old-fashioned glass half-filled with broken ice. Add lemonade. Garnish with a lemon slice and sugar-dipped raspberry, and serve.", @@ -61499,7 +61499,7 @@ "lemonade" ], "title": "Francine recipe", - "url": "http://www.drinksmixer.com/drink6745.html" + "url": "https://www.drinksmixer.com/drink6745.html" }, { "directions": "Combine ingredients in a mixing glass, and pour into a champagne saucer filled with crushed ice. Serve with a short straw.", @@ -61510,7 +61510,7 @@ "mandarin juice" ], "title": "Fruit Frappe recipe", - "url": "http://www.drinksmixer.com/drink6746.html" + "url": "https://www.drinksmixer.com/drink6746.html" }, { "directions": "Pour into an ice-filled old-fashioned glass, and serve.", @@ -61520,7 +61520,7 @@ "apple juice" ], "title": "French Bite recipe", - "url": "http://www.drinksmixer.com/drink6747.html" + "url": "https://www.drinksmixer.com/drink6747.html" }, { "directions": "Stir and strain into a cordial glass. Garnish with a speared cherry, and serve.", @@ -61530,7 +61530,7 @@ "lemon juice" ], "title": "French Horn recipe", - "url": "http://www.drinksmixer.com/drink6748.html" + "url": "https://www.drinksmixer.com/drink6748.html" }, { "directions": "Shake well and strain into a champagne saucer heaped with crushed ice.", @@ -61542,7 +61542,7 @@ "sugar syrup" ], "title": "Frozen Aquavit recipe", - "url": "http://www.drinksmixer.com/drink6749.html" + "url": "https://www.drinksmixer.com/drink6749.html" }, { "directions": "Shake and strain into a cocktail glass filled with crushed ice. Garnish with a speared melon ball and lime slice, and serve with a short straw.", @@ -61553,7 +61553,7 @@ "lime juice" ], "title": "Frozen Melon Ball recipe", - "url": "http://www.drinksmixer.com/drink6750.html" + "url": "https://www.drinksmixer.com/drink6750.html" }, { "directions": "Blend briefly with a glassful of crushed ice. Serve in a double-cocktail glass.", @@ -61564,7 +61564,7 @@ "sugar" ], "title": "Frozen Southern Comfort recipe", - "url": "http://www.drinksmixer.com/drink6751.html" + "url": "https://www.drinksmixer.com/drink6751.html" }, { "directions": "Shake and strain into an old-fashioned glass half-filled with broken ice. Garnish with a cherry, and serve.", @@ -61575,7 +61575,7 @@ "caster sugar" ], "title": "Fruits of the Desert recipe", - "url": "http://www.drinksmixer.com/drink6752.html" + "url": "https://www.drinksmixer.com/drink6752.html" }, { "directions": "Shake and strain into a cocktail glass. Garnish with a maraschino cherry, and serve.", @@ -61588,7 +61588,7 @@ "kiwi syrup" ], "title": "Garden Fresh recipe", - "url": "http://www.drinksmixer.com/drink6753.html" + "url": "https://www.drinksmixer.com/drink6753.html" }, { "directions": "Pour ingredients into an old-fashioned glass three-quarters filled with broken ice. Garnish with a twist of orange, and serve.", @@ -61599,7 +61599,7 @@ "lemonade" ], "title": "Gemini recipe", - "url": "http://www.drinksmixer.com/drink6754.html" + "url": "https://www.drinksmixer.com/drink6754.html" }, { "directions": "Shake, strain into a cocktail glass, and serve.", @@ -61611,7 +61611,7 @@ "pineapple juice" ], "title": "German Bight recipe", - "url": "http://www.drinksmixer.com/drink6755.html" + "url": "https://www.drinksmixer.com/drink6755.html" }, { "directions": "Shake all ingredients (except apple juice) and strain into an old-fashioned glass half-filled with broken ice. Add apple juice, and serve.", @@ -61623,7 +61623,7 @@ "apple juice" ], "title": "Goin' Home recipe", - "url": "http://www.drinksmixer.com/drink6756.html" + "url": "https://www.drinksmixer.com/drink6756.html" }, { "directions": "Shake all ingredients (except lemonade) well. Strain into an old-fashioned glass three-quarters filled with broken ice, and add lemonade. Garnish with an orange slice and a cherry, and serve.", @@ -61636,7 +61636,7 @@ "lemonade" ], "title": "Gold Mine recipe", - "url": "http://www.drinksmixer.com/drink6757.html" + "url": "https://www.drinksmixer.com/drink6757.html" }, { "directions": "Pour into an old-fashioned glass three-quarters filled with broken ice. Garnish with a slice of lime, and serve.", @@ -61646,7 +61646,7 @@ "lime juice" ], "title": "Golden Russian recipe", - "url": "http://www.drinksmixer.com/drink6758.html" + "url": "https://www.drinksmixer.com/drink6758.html" }, { "directions": "Shake and strain into a champagne saucer filled with crushed ice. Add a cherry, and serve.", @@ -61656,7 +61656,7 @@ "cognac" ], "title": "Goodbye Sigh recipe", - "url": "http://www.drinksmixer.com/drink6759.html" + "url": "https://www.drinksmixer.com/drink6759.html" }, { "directions": "Shake well and strain into an old-fashioned glass three-quarters filled with broken ice.", @@ -61667,7 +61667,7 @@ "egg" ], "title": "Goodness Gracious recipe", - "url": "http://www.drinksmixer.com/drink6760.html" + "url": "https://www.drinksmixer.com/drink6760.html" }, { "directions": "Shake and strain into an old-fashioned glass half-filled with broken ice.", @@ -61679,7 +61679,7 @@ "pear juice" ], "title": "Grand Pear recipe", - "url": "http://www.drinksmixer.com/drink6761.html" + "url": "https://www.drinksmixer.com/drink6761.html" }, { "directions": "Shake and strain into a double-cocktail glass filled with broken ice. Garnish with a sprig of mint, and serve with a short straw.", @@ -61690,7 +61690,7 @@ "grape juice" ], "title": "Grapevine recipe", - "url": "http://www.drinksmixer.com/drink6762.html" + "url": "https://www.drinksmixer.com/drink6762.html" }, { "directions": "Stir and strain into a cocktail glass three-quarters filled with broken ice. Garnish with an orange slice and a cherry, and serve.", @@ -61699,7 +61699,7 @@ "red Greek wine" ], "title": "Greek Manhatten recipe", - "url": "http://www.drinksmixer.com/drink6763.html" + "url": "https://www.drinksmixer.com/drink6763.html" }, { "directions": "Shake and strain into a cocktail glass. Garnish with a cherry, and serve.", @@ -61710,7 +61710,7 @@ "pineapple juice" ], "title": "Grimaldi recipe", - "url": "http://www.drinksmixer.com/drink6764.html" + "url": "https://www.drinksmixer.com/drink6764.html" }, { "directions": "Shake, strain into a frosted cocktail glass, and serve.", @@ -61723,7 +61723,7 @@ "lime juice" ], "title": "Guesswork Cocktail recipe", - "url": "http://www.drinksmixer.com/drink6765.html" + "url": "https://www.drinksmixer.com/drink6765.html" }, { "directions": "Pour into an old-fashioned glass half-filled with broken ice. Garnish with a slice of kiwi and a cherry, and servev.", @@ -61734,7 +61734,7 @@ "lemonade" ], "title": "Hara Kiwi recipe", - "url": "http://www.drinksmixer.com/drink6766.html" + "url": "https://www.drinksmixer.com/drink6766.html" }, { "directions": "Make kahlua, triple sec and cognac pousse-cafe style in a cordial glass. Ignite rum in a teaspoon and float on top. Extinguish, and serve.", @@ -61745,7 +61745,7 @@ "white rum" ], "title": "Harbor Light recipe", - "url": "http://www.drinksmixer.com/drink6767.html" + "url": "https://www.drinksmixer.com/drink6767.html" }, { "directions": "Stir, strain into a brandy snifter, and serve.", @@ -61755,7 +61755,7 @@ "lemon juice" ], "title": "Hard Case recipe", - "url": "http://www.drinksmixer.com/drink6768.html" + "url": "https://www.drinksmixer.com/drink6768.html" }, { "directions": "Shake, strain into a shot glass, and serve.", @@ -61767,7 +61767,7 @@ "grenadine syrup" ], "title": "Hayfever Remedy recipe", - "url": "http://www.drinksmixer.com/drink6769.html" + "url": "https://www.drinksmixer.com/drink6769.html" }, { "directions": "Shake, strain into an old-fashioned glass three-quarters filled with broken ice, and serve.", @@ -61778,7 +61778,7 @@ "lime juice" ], "title": "Haymaker recipe", - "url": "http://www.drinksmixer.com/drink6770.html" + "url": "https://www.drinksmixer.com/drink6770.html" }, { "directions": "Shake and strain into a champagne saucer filled with crushed ice. Garnish with a speared cherry, and serve.", @@ -61789,7 +61789,7 @@ "Mandarine Napoleon\u00ae orange liqueur" ], "title": "Hell Frozen Over recipe", - "url": "http://www.drinksmixer.com/drink6771.html" + "url": "https://www.drinksmixer.com/drink6771.html" }, { "directions": "Shake and strain into a cocktail glass. Garnish with a slice of lime and a cherry, and serve.", @@ -61801,7 +61801,7 @@ "grenadine syrup" ], "title": "Hen Night Zipper-Ripper recipe", - "url": "http://www.drinksmixer.com/drink6772.html" + "url": "https://www.drinksmixer.com/drink6772.html" }, { "directions": "Shake with a glassful of broken ice and pour unstrained into an old-fashioned glass. Garnish with a lemon twist, and serve.", @@ -61812,7 +61812,7 @@ "lemon juice" ], "title": "High Road recipe", - "url": "http://www.drinksmixer.com/drink6773.html" + "url": "https://www.drinksmixer.com/drink6773.html" }, { "directions": "Shake and strain into an ice-filled old-fashioned glass. Add 7-up, and serve.", @@ -61825,7 +61825,7 @@ "7-Up\u00ae soda" ], "title": "Hollywood Nuts recipe", - "url": "http://www.drinksmixer.com/drink6774.html" + "url": "https://www.drinksmixer.com/drink6774.html" }, { "directions": "Shake, strain into a shot glass, and serve.", @@ -61838,7 +61838,7 @@ "Angostura\u00ae bitters" ], "title": "Honolulu Shooter recipe", - "url": "http://www.drinksmixer.com/drink6775.html" + "url": "https://www.drinksmixer.com/drink6775.html" }, { "directions": "Pour into an ice-filled old-fashioned glass. Garnish with a slice of lime, and serve.", @@ -61848,7 +61848,7 @@ "cola" ], "title": "Hopeless Case recipe", - "url": "http://www.drinksmixer.com/drink6776.html" + "url": "https://www.drinksmixer.com/drink6776.html" }, { "directions": "Shake and strain into an old-fashioned glass filled with broken ice. Garnish with a sprig of mint, and serve.", @@ -61860,7 +61860,7 @@ "caster sugar" ], "title": "Hustler recipe", - "url": "http://www.drinksmixer.com/drink6777.html" + "url": "https://www.drinksmixer.com/drink6777.html" }, { "directions": "Stir, strain into a brandy snifter, and serve.", @@ -61870,7 +61870,7 @@ "cherry brandy" ], "title": "Incredible Cocktail recipe", - "url": "http://www.drinksmixer.com/drink6778.html" + "url": "https://www.drinksmixer.com/drink6778.html" }, { "directions": "Shake with a glassful of broken ice, and pour unstrained into an old-fashioned glass.", @@ -61880,7 +61880,7 @@ "Punt e Mes red vermouth" ], "title": "Inedible Cocktail recipe", - "url": "http://www.drinksmixer.com/drink6779.html" + "url": "https://www.drinksmixer.com/drink6779.html" }, { "directions": "Shake with a glassful of broken ice. Pour unstrained into an old-fashioned glass, and serve.", @@ -61893,7 +61893,7 @@ "sugar syrup" ], "title": "Irish Shillelagh recipe", - "url": "http://www.drinksmixer.com/drink6780.html" + "url": "https://www.drinksmixer.com/drink6780.html" }, { "directions": "Mix ingredients in pairs; grenadine with cherry brandy, anisette with creme de cacao, and chartreuse with curacao. Make pousse-cafe in a cordial glass. Colors should resemble that of the italian flag.", @@ -61906,7 +61906,7 @@ "Blue Curacao liqueur" ], "title": "Italia recipe", - "url": "http://www.drinksmixer.com/drink6781.html" + "url": "https://www.drinksmixer.com/drink6781.html" }, { "directions": "Dissolve honey in rum, and pour into an old-fashioned glass half-filled with broken ice.", @@ -61917,7 +61917,7 @@ "lemonade" ], "title": "Jamaica Sunday recipe", - "url": "http://www.drinksmixer.com/drink6782.html" + "url": "https://www.drinksmixer.com/drink6782.html" }, { "directions": "Pour into an old-fashioned glass half-filled with broken ice, and serve.", @@ -61927,7 +61927,7 @@ "triple sec" ], "title": "Jerez Cocktail recipe", - "url": "http://www.drinksmixer.com/drink6783.html" + "url": "https://www.drinksmixer.com/drink6783.html" }, { "directions": "Shake, strain into an old-fashioned glass filled with broken ice, and serve.", @@ -61939,7 +61939,7 @@ "lemon juice" ], "title": "Jockey Club recipe", - "url": "http://www.drinksmixer.com/drink6784.html" + "url": "https://www.drinksmixer.com/drink6784.html" }, { "directions": "Serve in a brandy snifter.", @@ -61948,7 +61948,7 @@ "Irish Mist\u00ae herbal liqueur" ], "title": "Josephine recipe", - "url": "http://www.drinksmixer.com/drink6785.html" + "url": "https://www.drinksmixer.com/drink6785.html" }, { "directions": "Shake and strain into a cocktail glass. Garnish with a slice of pineapple and a cherry. Serve.", @@ -61959,7 +61959,7 @@ "grenadine syrup" ], "title": "Juliet recipe", - "url": "http://www.drinksmixer.com/drink6786.html" + "url": "https://www.drinksmixer.com/drink6786.html" }, { "directions": "Shake and strain into an old-fashioned glass three-quarters filled with broken ice. Add lemonade, garnish with a sugar-dipped strawberry, and serve.", @@ -61970,7 +61970,7 @@ "lemonade" ], "title": "July Passion recipe", - "url": "http://www.drinksmixer.com/drink6787.html" + "url": "https://www.drinksmixer.com/drink6787.html" }, { "directions": "Shake, strain into a champagne saucer filled with crushed ice, and serve.", @@ -61982,7 +61982,7 @@ "caster sugar" ], "title": "Jungle Frost recipe", - "url": "http://www.drinksmixer.com/drink6788.html" + "url": "https://www.drinksmixer.com/drink6788.html" }, { "directions": "Shake and strain into a double-cocktail glass filled with crushed ice. Sprinkle with grated nutmeg, and serve.", @@ -61993,7 +61993,7 @@ "lime juice" ], "title": "Jungle Spice recipe", - "url": "http://www.drinksmixer.com/drink6789.html" + "url": "https://www.drinksmixer.com/drink6789.html" }, { "directions": "Serve in a brandy snifter.", @@ -62002,7 +62002,7 @@ "cognac" ], "title": "Kahlua Cognac recipe", - "url": "http://www.drinksmixer.com/drink6790.html" + "url": "https://www.drinksmixer.com/drink6790.html" }, { "directions": "Shake and strain into a cocktail glass filled with crushed ice. Garnish with a sprig of mint, and serve.", @@ -62012,7 +62012,7 @@ "lime juice" ], "title": "Katinka recipe", - "url": "http://www.drinksmixer.com/drink6791.html" + "url": "https://www.drinksmixer.com/drink6791.html" }, { "directions": "Shake with a glassful of broken ice, and pour unstrained into an old-fashioned glass. Serve.", @@ -62023,7 +62023,7 @@ "grenadine syrup" ], "title": "Kentucky Kernel recipe", - "url": "http://www.drinksmixer.com/drink6792.html" + "url": "https://www.drinksmixer.com/drink6792.html" }, { "directions": "Shake with a glassful of broken ice, and pour unstrained into an old-fashioned glass. Add a slice of lemon, and serve.", @@ -62034,7 +62034,7 @@ "rosso vermouth" ], "title": "Killarney recipe", - "url": "http://www.drinksmixer.com/drink6793.html" + "url": "https://www.drinksmixer.com/drink6793.html" }, { "directions": "Shake with three-quarters of a glassful of broken ice. Pour unstrained into an old-fashioned glass. Garnish with a cherry and orange slice, and serve.", @@ -62047,7 +62047,7 @@ "passion-fruit juice" ], "title": "Kiss and Tell recipe", - "url": "http://www.drinksmixer.com/drink6794.html" + "url": "https://www.drinksmixer.com/drink6794.html" }, { "directions": "Pour into an ice-filled old-fashioned glass, and garnish with a speared cherry.", @@ -62057,7 +62057,7 @@ "lemonade" ], "title": "Kiss Class recipe", - "url": "http://www.drinksmixer.com/drink6795.html" + "url": "https://www.drinksmixer.com/drink6795.html" }, { "directions": "Shake, strain into a cocktail glass, and serve.", @@ -62068,7 +62068,7 @@ "grenadine syrup" ], "title": "Lady's Mango recipe", - "url": "http://www.drinksmixer.com/drink6796.html" + "url": "https://www.drinksmixer.com/drink6796.html" }, { "directions": "Shake with a glassful of broken ice, and pour unstrained into an old-fashioned glass. Garnish with a wedge of lime, and serve.", @@ -62079,7 +62079,7 @@ "honey" ], "title": "Last Chance recipe", - "url": "http://www.drinksmixer.com/drink6797.html" + "url": "https://www.drinksmixer.com/drink6797.html" }, { "directions": "Pour into an old-fashioned glass half-filled with broken ice, and serve.", @@ -62091,7 +62091,7 @@ "grenadine syrup" ], "title": "Last Goodbye recipe", - "url": "http://www.drinksmixer.com/drink6798.html" + "url": "https://www.drinksmixer.com/drink6798.html" }, { "directions": "Shake and strain into an old-fashioned glass half-filled with broken ice. Add lemonade, and serve.", @@ -62102,7 +62102,7 @@ "lemonade" ], "title": "Laugh a Minute recipe", - "url": "http://www.drinksmixer.com/drink6799.html" + "url": "https://www.drinksmixer.com/drink6799.html" }, { "directions": "Pour into an old-fashioned glass filled with broken ice, and serve.", @@ -62112,7 +62112,7 @@ "lemonade" ], "title": "Lawnmower recipe", - "url": "http://www.drinksmixer.com/drink6800.html" + "url": "https://www.drinksmixer.com/drink6800.html" }, { "directions": "Shake and strain into a cocktail glass. Garnish with a speared cherry, and serve.", @@ -62124,7 +62124,7 @@ "passion-fruit syrup" ], "title": "Lazy Lover recipe", - "url": "http://www.drinksmixer.com/drink6801.html" + "url": "https://www.drinksmixer.com/drink6801.html" }, { "directions": "Shake and strain into a champagne flute three-quarters filled with crushed ice. Garnish with a slice of lemon, a cherry, and a mint sprig. Serve with a straw.", @@ -62134,7 +62134,7 @@ "grapefruit juice" ], "title": "Le 333 recipe", - "url": "http://www.drinksmixer.com/drink6802.html" + "url": "https://www.drinksmixer.com/drink6802.html" }, { "directions": "Shake and strain into an old-fashioned glass filled with broken ice. Garnish with a lemon twist, and serve.", @@ -62144,7 +62144,7 @@ "Angostura\u00ae bitters" ], "title": "Le Saintongeais recipe", - "url": "http://www.drinksmixer.com/drink6803.html" + "url": "https://www.drinksmixer.com/drink6803.html" }, { "directions": "Shake without ice and pour into a frosted champagne saucer. Garnish with a cherry and lemon slice, and serve.", @@ -62154,7 +62154,7 @@ "lemon sherbet" ], "title": "Lemon Lady recipe", - "url": "http://www.drinksmixer.com/drink6804.html" + "url": "https://www.drinksmixer.com/drink6804.html" }, { "directions": "Shake and strain into a cocktail glass. Garnish with a slice of lime, and serve.", @@ -62165,7 +62165,7 @@ "lime juice" ], "title": "Liberator recipe", - "url": "http://www.drinksmixer.com/drink6805.html" + "url": "https://www.drinksmixer.com/drink6805.html" }, { "directions": "Shake and strain into a cocktail glass. Add soda, garnish with a slice of lime, and serve.", @@ -62177,7 +62177,7 @@ "soda water" ], "title": "Lime Passion recipe", - "url": "http://www.drinksmixer.com/drink6806.html" + "url": "https://www.drinksmixer.com/drink6806.html" }, { "directions": "Shake and strain into a double-cocktail glass filled with crushed ice. Garnish with berries, a short straw, and serve.", @@ -62188,7 +62188,7 @@ "orange juice" ], "title": "Little Red Riding Hood recipe", - "url": "http://www.drinksmixer.com/drink6807.html" + "url": "https://www.drinksmixer.com/drink6807.html" }, { "directions": "Shake and strain into a double-cocktail glass filled with crushed ice. Serve with a short straw.", @@ -62199,7 +62199,7 @@ "passion-fruit juice" ], "title": "Little White Lie recipe", - "url": "http://www.drinksmixer.com/drink6808.html" + "url": "https://www.drinksmixer.com/drink6808.html" }, { "directions": "Shake and strain into a cocktail glass. Garnish with two maraschino cherries.", @@ -62211,7 +62211,7 @@ "mandarin juice" ], "title": "Lost Bikini recipe", - "url": "http://www.drinksmixer.com/drink6809.html" + "url": "https://www.drinksmixer.com/drink6809.html" }, { "directions": "Shake and strain into a cocktail glass. Garnish with a cherry, and serve.", @@ -62223,7 +62223,7 @@ "mandarin juice" ], "title": "Luigi recipe", - "url": "http://www.drinksmixer.com/drink6810.html" + "url": "https://www.drinksmixer.com/drink6810.html" }, { "directions": "Shake, strain into a cocktail glass, and serve.", @@ -62236,7 +62236,7 @@ "Angostura\u00ae bitters" ], "title": "Luxury recipe", - "url": "http://www.drinksmixer.com/drink6811.html" + "url": "https://www.drinksmixer.com/drink6811.html" }, { "directions": "Pour into an old-fashioned glass half-filled with broken ice. Garnish with a twist of lime, and serve.", @@ -62248,7 +62248,7 @@ "cola" ], "title": "La Paz recipe", - "url": "http://www.drinksmixer.com/drink6812.html" + "url": "https://www.drinksmixer.com/drink6812.html" }, { "directions": "Blend briefly with half a glassful of crushed ice. Serve in a collins glass, and garnish with a cherry.", @@ -62259,7 +62259,7 @@ "chocolate syrup" ], "title": "Friesian recipe", - "url": "http://www.drinksmixer.com/drink6813.html" + "url": "https://www.drinksmixer.com/drink6813.html" }, { "directions": "Blend briefly with half a glassful of crushed ice. Pour into a double-cocktail glass, garnish with a sprig of mint, and serve.", @@ -62270,7 +62270,7 @@ "vanilla ice cream" ], "title": "Frozen Black Irish recipe", - "url": "http://www.drinksmixer.com/drink6814.html" + "url": "https://www.drinksmixer.com/drink6814.html" }, { "directions": "Blend briefly with half a glassful of crushed ice. Garnish with a sprig of mint, add straws, and serve.", @@ -62280,7 +62280,7 @@ "coconut ice cream" ], "title": "Frozen Coconut recipe", - "url": "http://www.drinksmixer.com/drink6815.html" + "url": "https://www.drinksmixer.com/drink6815.html" }, { "directions": "Blend briefly in a double-cocktail glass with a tablespoon of crushed ice. Garnish with an orange slice, and serve.", @@ -62290,7 +62290,7 @@ "vanilla ice cream" ], "title": "Frozen Gael recipe", - "url": "http://www.drinksmixer.com/drink6816.html" + "url": "https://www.drinksmixer.com/drink6816.html" }, { "directions": "Shake briefly in a highball glass with three-quarters of a glassful of crushed ice. Top with ice cream, and sprinkle with grated chocolate. Serve with straws.", @@ -62301,7 +62301,7 @@ "sugar" ], "title": "Frozen Irish Coffee recipe", - "url": "http://www.drinksmixer.com/drink6817.html" + "url": "https://www.drinksmixer.com/drink6817.html" }, { "directions": "Blend briefly with half a glassful of crushed ice in a wine goblet. Garnish with a slice of lime and a cherry, and serve.", @@ -62312,7 +62312,7 @@ "vanilla ice cream" ], "title": "Frozen Key Lime recipe", - "url": "http://www.drinksmixer.com/drink6818.html" + "url": "https://www.drinksmixer.com/drink6818.html" }, { "directions": "Blend briefly with half a glassful of crushed ice. Serve in a wine goblet.", @@ -62324,7 +62324,7 @@ "vanilla ice cream" ], "title": "Gamble recipe", - "url": "http://www.drinksmixer.com/drink6819.html" + "url": "https://www.drinksmixer.com/drink6819.html" }, { "directions": "Blend briefly in a highball glass and sprinkle with grated chocolate. Serve with straws.", @@ -62334,7 +62334,7 @@ "vanilla ice cream" ], "title": "Hammer Horror recipe", - "url": "http://www.drinksmixer.com/drink6820.html" + "url": "https://www.drinksmixer.com/drink6820.html" }, { "directions": "Shake melon liqueur, cointreau and juices and strain into a pina colada glass three-quarters filled with broken ice. Add curacao, and float cream on top. Garnish with fruit, and serve with straws.", @@ -62347,7 +62347,7 @@ "whipped cream" ], "title": "Island Affair recipe", - "url": "http://www.drinksmixer.com/drink6821.html" + "url": "https://www.drinksmixer.com/drink6821.html" }, { "directions": "Blend vodka, rums and ice cream briefly with half a glassful of crushed ice in a wine goblet. Top with whipped cream, sprinkle grenadine on top, and serve.", @@ -62360,7 +62360,7 @@ "grenadine syrup" ], "title": "Island Delight recipe", - "url": "http://www.drinksmixer.com/drink6822.html" + "url": "https://www.drinksmixer.com/drink6822.html" }, { "directions": "Shake and strain into a wine goblet filled with crushed ice. Add short straws, a sprig of mint, and serve.", @@ -62371,7 +62371,7 @@ "coffee" ], "title": "Jamaican Iced Coffee recipe", - "url": "http://www.drinksmixer.com/drink6823.html" + "url": "https://www.drinksmixer.com/drink6823.html" }, { "directions": "Shake kahlua and cream, and strain into a highball glass. Add soda, and serve with a straw.", @@ -62381,7 +62381,7 @@ "soda water" ], "title": "Kahlua Cream Soda recipe", - "url": "http://www.drinksmixer.com/drink6824.html" + "url": "https://www.drinksmixer.com/drink6824.html" }, { "directions": "Blend briefly with half a glassful of crushed ice. Add straws, and serve.", @@ -62391,7 +62391,7 @@ "vanilla ice cream" ], "title": "Kaiser's Jest recipe", - "url": "http://www.drinksmixer.com/drink6825.html" + "url": "https://www.drinksmixer.com/drink6825.html" }, { "directions": "Blend briefly with half a glassful of crushed ice in a pina colada glass. Garnish with a slice of pineapple, and serve, with straws.", @@ -62403,7 +62403,7 @@ "whipping cream" ], "title": "Las Vegas recipe", - "url": "http://www.drinksmixer.com/drink6826.html" + "url": "https://www.drinksmixer.com/drink6826.html" }, { "directions": "Shake and strain into an ice-filled highball glass. Add lemonade and float cream on top. Garnish with a cherry and mint sprig, and serve.", @@ -62416,7 +62416,7 @@ "lemonade" ], "title": "Lazy Daze recipe", - "url": "http://www.drinksmixer.com/drink6827.html" + "url": "https://www.drinksmixer.com/drink6827.html" }, { "directions": "Shake, strain into a highball glass three-quarters filled with broken ice, and serve", @@ -62426,7 +62426,7 @@ "coffee" ], "title": "Leprechaun's Coffee recipe", - "url": "http://www.drinksmixer.com/drink6828.html" + "url": "https://www.drinksmixer.com/drink6828.html" }, { "directions": "Blend ingredients in a pina colada glass until smooth. Add half a glassful of crushed ice and blend again briefly. Garnish with a strawberry, add straws, and serve.", @@ -62440,7 +62440,7 @@ "strawberries" ], "title": "Love in the Afternoon recipe", - "url": "http://www.drinksmixer.com/drink6829.html" + "url": "https://www.drinksmixer.com/drink6829.html" }, { "directions": "Shake with a glassful of broken ice and pour unstrained into a wine goblet. Garnish with fruit, add straws, and serve.", @@ -62454,7 +62454,7 @@ "kiwi syrup" ], "title": "Fruit Cocktail recipe", - "url": "http://www.drinksmixer.com/drink6830.html" + "url": "https://www.drinksmixer.com/drink6830.html" }, { "directions": "Blend briefly in a wine goblet. Garnish with a slice of banana and a cherry.", @@ -62465,7 +62465,7 @@ "vanilla ice cream" ], "title": "Fruit Fairy recipe", - "url": "http://www.drinksmixer.com/drink6831.html" + "url": "https://www.drinksmixer.com/drink6831.html" }, { "directions": "Blend until smooth. Add half a glassful of crushed ice, and blend again briefly. Pour into a pina colada glass, and garnish with fruit. Serve with straws.", @@ -62477,7 +62477,7 @@ "melons" ], "title": "Fruit Fantasy recipe", - "url": "http://www.drinksmixer.com/drink6832.html" + "url": "https://www.drinksmixer.com/drink6832.html" }, { "directions": "Shake briefly with a glassful of crushed ice, and pour into a frosted cocktail glass. Garnish with a slice of lime, and serve.", @@ -62488,7 +62488,7 @@ "sugar syrup" ], "title": "Galliano Daiquiri recipe", - "url": "http://www.drinksmixer.com/drink6833.html" + "url": "https://www.drinksmixer.com/drink6833.html" }, { "directions": "Rim a champagne saucer with lemon and sugar. Shake and strain ingredients into the glass, sprinkle with nutmeg, and serve.", @@ -62498,7 +62498,7 @@ "double cream" ], "title": "Gin Alexander recipe", - "url": "http://www.drinksmixer.com/drink6834.html" + "url": "https://www.drinksmixer.com/drink6834.html" }, { "directions": "Shake all ingredients (except water) and strain into an ice-filled collins glass. Add water, garnish with an orange slice and a cherry, and serve.", @@ -62509,7 +62509,7 @@ "mineral water" ], "title": "Gin Lollipop recipe", - "url": "http://www.drinksmixer.com/drink6835.html" + "url": "https://www.drinksmixer.com/drink6835.html" }, { "directions": "Dissolve sugar, shake and strain into a highball glass half-filled with ice. Add soda, straws and a muddler, and serve.", @@ -62524,7 +62524,7 @@ "caster sugar" ], "title": "Hong Kong Fizz recipe", - "url": "http://www.drinksmixer.com/drink6836.html" + "url": "https://www.drinksmixer.com/drink6836.html" }, { "directions": "Warm ingredients in a small saucepan. Pour into a cup when hot, and serve.", @@ -62535,7 +62535,7 @@ "sugar" ], "title": "Grandfather's Coffee recipe", - "url": "http://www.drinksmixer.com/drink6837.html" + "url": "https://www.drinksmixer.com/drink6837.html" }, { "directions": "Pour into a highball glass filled with broken ice.", @@ -62545,7 +62545,7 @@ "soda water" ], "title": "Grape Juice Rickey recipe", - "url": "http://www.drinksmixer.com/drink6838.html" + "url": "https://www.drinksmixer.com/drink6838.html" }, { "directions": "Pour into an ice-filled collins glass. Garnish with a sprig of mint, and serve with a straw.", @@ -62554,7 +62554,7 @@ "lemonade" ], "title": "Grapefruit Crush recipe", - "url": "http://www.drinksmixer.com/drink6839.html" + "url": "https://www.drinksmixer.com/drink6839.html" }, { "directions": "Blend briefly with half a glassful of crushed ice in a wine goblet. Garnish with fruit, and serve with straws.", @@ -62564,7 +62564,7 @@ "coconut cream" ], "title": "Hawaiian Island Surfer recipe", - "url": "http://www.drinksmixer.com/drink6840.html" + "url": "https://www.drinksmixer.com/drink6840.html" }, { "directions": "Blend briefly with half a glassful of crushed ice in a pina colada glass. Add soda and mix gently. Add straws, and serve.", @@ -62575,7 +62575,7 @@ "vanilla ice cream" ], "title": "Lemon Ice-Cream Soda recipe", - "url": "http://www.drinksmixer.com/drink6841.html" + "url": "https://www.drinksmixer.com/drink6841.html" }, { "directions": "Mix ingredients in a punch bowl until sugar dissolves. Chill for five hours, mix, and sprinkle with grated nutmeg. Serve.", @@ -62589,7 +62589,7 @@ "milk" ], "title": "Holiday Egg Nogg recipe", - "url": "http://www.drinksmixer.com/drink6842.html" + "url": "https://www.drinksmixer.com/drink6842.html" }, { "directions": "Combine schnapps and cocoa in an irish coffee cup. Sweeten, to taste. Top with cream, sprinkle with grated chocolate, and serve.\r", @@ -62600,7 +62600,7 @@ "sugar" ], "title": "Hot Chocolate Mint recipe", - "url": "http://www.drinksmixer.com/drink6843.html" + "url": "https://www.drinksmixer.com/drink6843.html" }, { "directions": "Combine rum and cocoa in an irish coffee cup, and sweeten to taste. Top with cream, sprinkle with grated chocolate, and serve.", @@ -62611,7 +62611,7 @@ "sugar" ], "title": "Hot Rum Chocolate recipe", - "url": "http://www.drinksmixer.com/drink6844.html" + "url": "https://www.drinksmixer.com/drink6844.html" }, { "directions": "Combine kahlua and cocoa in an irish coffee cup, and sweeten to taste. Top with cream, sprinkle with grated chocolate, and serve.", @@ -62622,7 +62622,7 @@ "sugar" ], "title": "Kahlua Hot Chocolate recipe", - "url": "http://www.drinksmixer.com/drink6845.html" + "url": "https://www.drinksmixer.com/drink6845.html" }, { "directions": "Shake, strain into an ice-filled highball glass, and serve.", @@ -62636,7 +62636,7 @@ "grenadine syrup" ], "title": "Iron Bar Sling recipe", - "url": "http://www.drinksmixer.com/drink6846.html" + "url": "https://www.drinksmixer.com/drink6846.html" }, { "directions": "Blend briefly in a cocktail glass with half a glassful of crushed ice. Garnish with a sugar-dipped strawberry, and serve.", @@ -62648,7 +62648,7 @@ "strawberry syrup" ], "title": "Julia recipe", - "url": "http://www.drinksmixer.com/drink6847.html" + "url": "https://www.drinksmixer.com/drink6847.html" }, { "directions": "Shake, strain into a cocktail glass, and serve.", @@ -62660,7 +62660,7 @@ "single cream" ], "title": "Justine recipe", - "url": "http://www.drinksmixer.com/drink6848.html" + "url": "https://www.drinksmixer.com/drink6848.html" }, { "directions": "Shake and strain into a cocktail glass. Garnish with melon balls, and serve.", @@ -62672,7 +62672,7 @@ "double cream" ], "title": "Kick in the Balls recipe", - "url": "http://www.drinksmixer.com/drink6849.html" + "url": "https://www.drinksmixer.com/drink6849.html" }, { "directions": "Shake ingredients together and strain into a cordial glass. Garnish with a cherry, and serve.", @@ -62683,7 +62683,7 @@ "double cream" ], "title": "Kika recipe", - "url": "http://www.drinksmixer.com/drink6850.html" + "url": "https://www.drinksmixer.com/drink6850.html" }, { "directions": "Shake ingredients and strain into a champagne saucer. Float cream on top, garnish with a twist of orange peel, and serve.", @@ -62696,7 +62696,7 @@ "sugar" ], "title": "Kis-Kesay recipe", - "url": "http://www.drinksmixer.com/drink6851.html" + "url": "https://www.drinksmixer.com/drink6851.html" }, { "directions": "Shake and strain into a cocktail glass. Garnish with a cherry and a slice of orange, and serve.", @@ -62708,7 +62708,7 @@ "double cream" ], "title": "Lost Cherry recipe", - "url": "http://www.drinksmixer.com/drink6852.html" + "url": "https://www.drinksmixer.com/drink6852.html" }, { "directions": "Squeeze lime juice directly into a collins glass. Add spent shell, fill with ice and add remaining ingredients. Add straws, and serve.", @@ -62718,7 +62718,7 @@ "limes" ], "title": "Kirsch Cuba Libre recipe", - "url": "http://www.drinksmixer.com/drink6853.html" + "url": "https://www.drinksmixer.com/drink6853.html" }, { "directions": "Shake well in a shaker filled with ice cubes. Strain into a cocktail glass, and serve.", @@ -62729,7 +62729,7 @@ "grenadine syrup" ], "title": "Angel's Delight recipe", - "url": "http://www.drinksmixer.com/drink6854.html" + "url": "https://www.drinksmixer.com/drink6854.html" }, { "directions": "Shake well over ice in a shaker. Strain into a sour glass, and serve.", @@ -62740,7 +62740,7 @@ "orange bitters" ], "title": "Aperol Sour recipe", - "url": "http://www.drinksmixer.com/drink6855.html" + "url": "https://www.drinksmixer.com/drink6855.html" }, { "directions": "Stir in a mixing glass filled with ice cubes. Strain into a chilled cocktail glass, and serve.", @@ -62750,7 +62750,7 @@ "green creme de menthe" ], "title": "Apothecary recipe", - "url": "http://www.drinksmixer.com/drink6856.html" + "url": "https://www.drinksmixer.com/drink6856.html" }, { "directions": "Shake well over ice in a shaker. Strain into a sour glass, garnish with a cherry, and serve.", @@ -62760,7 +62760,7 @@ "lemon juice" ], "title": "Apple Car recipe", - "url": "http://www.drinksmixer.com/drink6857.html" + "url": "https://www.drinksmixer.com/drink6857.html" }, { "directions": "Pour each ingredient, in order, into a collins glass. Stir gently, and serve.", @@ -62771,7 +62771,7 @@ "orange juice" ], "title": "Apple Sunrise recipe", - "url": "http://www.drinksmixer.com/drink6858.html" + "url": "https://www.drinksmixer.com/drink6858.html" }, { "directions": "Pour calvados, grenadine and orange juice over ice in a collins glass. Stir, fill with ginger ale, and serve.", @@ -62782,7 +62782,7 @@ "ginger ale" ], "title": "Applejack Highball recipe", - "url": "http://www.drinksmixer.com/drink6859.html" + "url": "https://www.drinksmixer.com/drink6859.html" }, { "directions": "Shake over ice in a shaker. Strain into a chilled cocktail glass, and serve.", @@ -62792,7 +62792,7 @@ "orange juice" ], "title": "April Shower recipe", - "url": "http://www.drinksmixer.com/drink6860.html" + "url": "https://www.drinksmixer.com/drink6860.html" }, { "directions": "Stir well in a mixing glass filled with ice cubes. Strain into a chilled cocktail glass, garnish with a twist of lemon, and serve.", @@ -62802,7 +62802,7 @@ "grenadine syrup" ], "title": "Attaboy recipe", - "url": "http://www.drinksmixer.com/drink6861.html" + "url": "https://www.drinksmixer.com/drink6861.html" }, { "directions": "Stir over ice cubes in an old-fashioned glass, and serve.", @@ -62812,7 +62812,7 @@ "cream" ], "title": "Brandy Benedictine Cream recipe", - "url": "http://www.drinksmixer.com/drink6862.html" + "url": "https://www.drinksmixer.com/drink6862.html" }, { "directions": "Stir over ice cubes in an old-fashioned glass, and serve.", @@ -62821,7 +62821,7 @@ "brandy" ], "title": "B & P recipe", - "url": "http://www.drinksmixer.com/drink6863.html" + "url": "https://www.drinksmixer.com/drink6863.html" }, { "directions": "Shake well over crushed ice in a shaker. Strain into a collins glass and fill with crushed ice. Top with banana slices, and serve.", @@ -62833,7 +62833,7 @@ "banana" ], "title": "Babylove recipe", - "url": "http://www.drinksmixer.com/drink6864.html" + "url": "https://www.drinksmixer.com/drink6864.html" }, { "directions": "Pour pineapple juice, coconut cream and white rum into a shaker. Add a barspoon of cream. Shake well and strain into a large highball glass half-filled with crushed ice. Garnish with a pineapple chunk and amarelle cherry, and serve.", @@ -62844,7 +62844,7 @@ "cream" ], "title": "Bahia recipe", - "url": "http://www.drinksmixer.com/drink6865.html" + "url": "https://www.drinksmixer.com/drink6865.html" }, { "directions": "Combine ingredients in a blender. Strain into a large highball glass over crushed ice, and serve.", @@ -62856,7 +62856,7 @@ "banana" ], "title": "Batida de Banana recipe", - "url": "http://www.drinksmixer.com/drink6866.html" + "url": "https://www.drinksmixer.com/drink6866.html" }, { "directions": "Combine ingredients in a blender. Strain into a large highball glass over crushed ice, and serve.", @@ -62868,7 +62868,7 @@ "passion-fruit" ], "title": "Batida de Maracuja recipe", - "url": "http://www.drinksmixer.com/drink6867.html" + "url": "https://www.drinksmixer.com/drink6867.html" }, { "directions": "Pour over crushed ice in a large highball glass. Stir, and serve.", @@ -62878,7 +62878,7 @@ "Sagatiba Pura" ], "title": "Batida de Brazil recipe", - "url": "http://www.drinksmixer.com/drink6868.html" + "url": "https://www.drinksmixer.com/drink6868.html" }, { "directions": "Pour over crushed ice in a large highball glass. Stir, and serve.", @@ -62888,7 +62888,7 @@ "Sagatiba Pura" ], "title": "Batida de Carneval recipe", - "url": "http://www.drinksmixer.com/drink6869.html" + "url": "https://www.drinksmixer.com/drink6869.html" }, { "directions": "Shake well over crushed ice in a shaker. Strain into a cocktail glass, and serve.", @@ -62899,7 +62899,7 @@ "honey" ], "title": "Bee's Kiss recipe", - "url": "http://www.drinksmixer.com/drink6870.html" + "url": "https://www.drinksmixer.com/drink6870.html" }, { "directions": "Shake over ice cubes in a shaker. Strain into a large highball glass over crushed ice, and serve.", @@ -62911,7 +62911,7 @@ "limes" ], "title": "Bellevue recipe", - "url": "http://www.drinksmixer.com/drink6871.html" + "url": "https://www.drinksmixer.com/drink6871.html" }, { "directions": "Stir in a mixing glass filled with ice cubes. Strain into a chilled cocktail glass, add a twist of orange, and serve.", @@ -62921,7 +62921,7 @@ "orange bitters" ], "title": "Bitter Sweet recipe", - "url": "http://www.drinksmixer.com/drink6872.html" + "url": "https://www.drinksmixer.com/drink6872.html" }, { "directions": "Sprinkle dashes of angostura bitters over ice cubes in a highball glass. Fill with ginger ale, garnish with a twist of lemon, and serve.", @@ -62930,7 +62930,7 @@ "ginger ale" ], "title": "Bitters Highball recipe", - "url": "http://www.drinksmixer.com/drink6873.html" + "url": "https://www.drinksmixer.com/drink6873.html" }, { "directions": "Stir together in a mixing glass filled with ice cubes. Strain into a chilled cocktail glass, and serve.", @@ -62941,7 +62941,7 @@ "Pernod\u00ae licorice liqueur" ], "title": "Black and Fall recipe", - "url": "http://www.drinksmixer.com/drink6874.html" + "url": "https://www.drinksmixer.com/drink6874.html" }, { "directions": "Stir over ice cubes in a small highball glass, and serve.", @@ -62952,7 +62952,7 @@ "sugar" ], "title": "Black Jack recipe", - "url": "http://www.drinksmixer.com/drink6875.html" + "url": "https://www.drinksmixer.com/drink6875.html" }, { "directions": "Shake well with crushed ice in a shaker. Strain into a large highball glass, and serve.", @@ -62964,7 +62964,7 @@ "brown sugar" ], "title": "Black Marie recipe", - "url": "http://www.drinksmixer.com/drink6876.html" + "url": "https://www.drinksmixer.com/drink6876.html" }, { "directions": "Shake over crushed ice in a shaker. Strain into a chilled cocktail glass, and serve.", @@ -62974,7 +62974,7 @@ "lemon juice" ], "title": "Blanche recipe", - "url": "http://www.drinksmixer.com/drink6877.html" + "url": "https://www.drinksmixer.com/drink6877.html" }, { "directions": "Shake over ice cubes, strain into a chilled cocktail glass, and serve.", @@ -62985,7 +62985,7 @@ "orange juice" ], "title": "Blood and Sand Cocktail recipe", - "url": "http://www.drinksmixer.com/drink6878.html" + "url": "https://www.drinksmixer.com/drink6878.html" }, { "directions": "Pour tomato juice, bouillon and lemon juice over ice cubes in a collins glass. Add sauces, salt, and pepper to taste. Serve.", @@ -62999,7 +62999,7 @@ "pepper" ], "title": "Bloody Virgin Bull recipe", - "url": "http://www.drinksmixer.com/drink6879.html" + "url": "https://www.drinksmixer.com/drink6879.html" }, { "directions": "Pour all ingredients (except champagne) over ice cubes in a shaker. Strain into a champagne flute, fill with champagne, and serve.", @@ -63011,7 +63011,7 @@ "Champagne" ], "title": "Blue Champagne recipe", - "url": "http://www.drinksmixer.com/drink6880.html" + "url": "https://www.drinksmixer.com/drink6880.html" }, { "directions": "Pour rums, sugar and grenadine over crushed ice in a small highball glass, and stir well. Add lime juice, garnish with a mint sprig and a cherry, and serve.", @@ -63023,7 +63023,7 @@ "limes" ], "title": "Boina Roja recipe", - "url": "http://www.drinksmixer.com/drink6881.html" + "url": "https://www.drinksmixer.com/drink6881.html" }, { "directions": "Combine ingredients with crushed ice in a blender. Strain into a large highball glass, and serve.", @@ -63035,7 +63035,7 @@ "banana" ], "title": "Boris's Good Night Cup recipe", - "url": "http://www.drinksmixer.com/drink6882.html" + "url": "https://www.drinksmixer.com/drink6882.html" }, { "directions": "Shake well over ice cubes in a shaker. Strain into a large highball glass over ice cubes, sprinkle with nutmeg, and serve.", @@ -63049,7 +63049,7 @@ "nutmeg" ], "title": "Brandy Eggnog recipe", - "url": "http://www.drinksmixer.com/drink6883.html" + "url": "https://www.drinksmixer.com/drink6883.html" }, { "directions": "Stir over ice cubes in an old-fashioned glass, and serve.", @@ -63058,7 +63058,7 @@ "white creme de menthe" ], "title": "Brandy Stinger recipe", - "url": "http://www.drinksmixer.com/drink6884.html" + "url": "https://www.drinksmixer.com/drink6884.html" }, { "directions": "Shake well over ice cubes in a shaker. Strain into a cocktail glass, sprinkle with nutmeg, and serve.", @@ -63072,7 +63072,7 @@ "nutmeg" ], "title": "Breakfast Eggnog recipe", - "url": "http://www.drinksmixer.com/drink6885.html" + "url": "https://www.drinksmixer.com/drink6885.html" }, { "directions": "Shake over ice cubes in a shaker. Strain into a collins glass over ice cubes, and serve.", @@ -63085,7 +63085,7 @@ "powdered sugar" ], "title": "Brighton Punch recipe", - "url": "http://www.drinksmixer.com/drink6886.html" + "url": "https://www.drinksmixer.com/drink6886.html" }, { "directions": "Combine ingredients with cracked ice in a blender. Blend for a few seconds until smooth. Pour into a chilled cocktail glass, garnish with mint leaves, and serve.", @@ -63096,7 +63096,7 @@ "triple sec" ], "title": "Michael Moros Detroit Boy recipe", - "url": "http://www.drinksmixer.com/drink6887.html" + "url": "https://www.drinksmixer.com/drink6887.html" }, { "directions": "Shake well with no less than 6 ice cubes and strain into a cocktail glass. Garnish with a cocktail cherry, and serve.", @@ -63105,7 +63105,7 @@ "vodka" ], "title": "Mozart Chocolate Liqueur recipe", - "url": "http://www.drinksmixer.com/drink6888.html" + "url": "https://www.drinksmixer.com/drink6888.html" }, { "directions": "Shake, strain into a cocktail glass, and serve.", @@ -63116,7 +63116,7 @@ "lemon juice" ], "title": "Western Rose recipe", - "url": "http://www.drinksmixer.com/drink6889.html" + "url": "https://www.drinksmixer.com/drink6889.html" }, { "directions": "Pour vodka and cointreau into a shaker. Squeeze in the juice of one wedge of lime. Add peach puree, a splash of cranberry juice, and shake. Strain into a cocktail glass, top with prosecco and serve.", @@ -63129,7 +63129,7 @@ "Prosecco\u00ae sparkling wine" ], "title": "Cosmobellini recipe", - "url": "http://www.drinksmixer.com/drink6890.html" + "url": "https://www.drinksmixer.com/drink6890.html" }, { "directions": "Shake over ice cubes in a shaker. Strain into a cocktail glass, and serve.", @@ -63141,7 +63141,7 @@ "cream" ], "title": "Brigitte Bardot recipe", - "url": "http://www.drinksmixer.com/drink6892.html" + "url": "https://www.drinksmixer.com/drink6892.html" }, { "directions": "Stir well in a mixing glass filled with ice cubes. Strain into a chilled cocktail glass, and serve.", @@ -63151,7 +63151,7 @@ "maraschino liqueur" ], "title": "Brooklyn recipe", - "url": "http://www.drinksmixer.com/drink6893.html" + "url": "https://www.drinksmixer.com/drink6893.html" }, { "directions": "Stir ingredients over ice in an old-fashioned glass, and serve.", @@ -63160,7 +63160,7 @@ "benedictine herbal liqueur" ], "title": "Brown Fox recipe", - "url": "http://www.drinksmixer.com/drink6894.html" + "url": "https://www.drinksmixer.com/drink6894.html" }, { "directions": "Stir ingredients over ice cubes in a highball glass. Twist both lemon and orange peels over the glass and drop in. Serve.", @@ -63172,7 +63172,7 @@ "orange" ], "title": "Bunueloni recipe", - "url": "http://www.drinksmixer.com/drink6895.html" + "url": "https://www.drinksmixer.com/drink6895.html" }, { "directions": "Pour campari into a champagne flute, and fill with champagne. Twist the lemon peel over the drink, and serve.", @@ -63182,7 +63182,7 @@ "lemon" ], "title": "Campari Champagne recipe", - "url": "http://www.drinksmixer.com/drink6896.html" + "url": "https://www.drinksmixer.com/drink6896.html" }, { "directions": "Warm cognac in a heat-resistant glass. Pour in the hot coffee, and add dashes of triple sec. Add twists of lemon and orange peel, a clove, and sprinkle with cinnamon. Sweeten to taste, and serve.", @@ -63197,7 +63197,7 @@ "sugar" ], "title": "Cafe Brulot recipe", - "url": "http://www.drinksmixer.com/drink6897.html" + "url": "https://www.drinksmixer.com/drink6897.html" }, { "directions": "Heat liquors in a heat-resistant glass. Pour in the hot coffee, stir, and top with cream. Add sugar, and serve.", @@ -63209,7 +63209,7 @@ "sugar" ], "title": "Cafe Caen recipe", - "url": "http://www.drinksmixer.com/drink6898.html" + "url": "https://www.drinksmixer.com/drink6898.html" }, { "directions": "Shake ingredients over ice cubes in a shaker. Strain into a cocktail glass, and serve.", @@ -63221,7 +63221,7 @@ "cream" ], "title": "Cafe de Paris recipe", - "url": "http://www.drinksmixer.com/drink6899.html" + "url": "https://www.drinksmixer.com/drink6899.html" }, { "directions": "Warm liquors in a heat-proof cup, stir in sugar, and add espresso. Stir again, top with cream, and serve.", @@ -63233,7 +63233,7 @@ "whipped cream" ], "title": "Cafe Pucci recipe", - "url": "http://www.drinksmixer.com/drink6900.html" + "url": "https://www.drinksmixer.com/drink6900.html" }, { "directions": "Pour rum over ice cubes in a small highball glass. Fill with coffee, and stir. Add a twist of lemon, sugar, and serve.", @@ -63244,7 +63244,7 @@ "sugar" ], "title": "Cafe San Juan recipe", - "url": "http://www.drinksmixer.com/drink6901.html" + "url": "https://www.drinksmixer.com/drink6901.html" }, { "directions": "Shake well over ice cubes in a shaker. Strain into a cocktail glass, and serve.", @@ -63256,7 +63256,7 @@ "milk" ], "title": "Caledonia recipe", - "url": "http://www.drinksmixer.com/drink6902.html" + "url": "https://www.drinksmixer.com/drink6902.html" }, { "directions": "Shake well over ice in a shaker, and strain into a chilled cocktail glass. Add a twist of lemon peel, and serve.", @@ -63267,7 +63267,7 @@ "lemon" ], "title": "Campari Cocktail recipe", - "url": "http://www.drinksmixer.com/drink6903.html" + "url": "https://www.drinksmixer.com/drink6903.html" }, { "directions": "Shake well over crushed ice in a shaker. Strain into a chilled cocktail glass, add a twist of lemon peel, and serve.", @@ -63277,7 +63277,7 @@ "lemon" ], "title": "Campari Shakerato recipe", - "url": "http://www.drinksmixer.com/drink6904.html" + "url": "https://www.drinksmixer.com/drink6904.html" }, { "directions": "Stir kirschwasser and cherry liqueur together in a mixing glass filled with ice cubes. Strain into a champagne flute, fill with champagne, and serve.", @@ -63287,7 +63287,7 @@ "Champagne" ], "title": "Carl Josef recipe", - "url": "http://www.drinksmixer.com/drink6905.html" + "url": "https://www.drinksmixer.com/drink6905.html" }, { "directions": "Shake brandy, cointreau, cream, sugar syrup and egg yolk over ice cubes in a shaker. Strain into a champagne flute, and carefully fill with champagne. Sprinkle with nutmeg, and serve.", @@ -63301,7 +63301,7 @@ "nutmeg" ], "title": "Champagne Flip recipe", - "url": "http://www.drinksmixer.com/drink6906.html" + "url": "https://www.drinksmixer.com/drink6906.html" }, { "directions": "Shake well over crushed ice in a shaker, and strain into a collins glass over ice. Garnish with pineapple chunks and a stemmed cherry, and serve.", @@ -63315,7 +63315,7 @@ "lemon juice" ], "title": "Charles's Caribbean recipe", - "url": "http://www.drinksmixer.com/drink6907.html" + "url": "https://www.drinksmixer.com/drink6907.html" }, { "directions": "Shake well over ice cubes in a shaker, strain into a chilled cocktail glass, and serve.", @@ -63328,7 +63328,7 @@ "Cointreau\u00ae orange liqueur" ], "title": "Charles's Daiquiri recipe", - "url": "http://www.drinksmixer.com/drink6908.html" + "url": "https://www.drinksmixer.com/drink6908.html" }, { "directions": "Shake liquids well over crushed ice in a shaker. Strain into a large highball glass over crushed ice, sprinkle with grated chocolate, and serve.", @@ -63343,7 +63343,7 @@ "chocolate" ], "title": "Choco Colada recipe", - "url": "http://www.drinksmixer.com/drink6909.html" + "url": "https://www.drinksmixer.com/drink6909.html" }, { "directions": "Shake liquids well over ice cubes in a shaker, and strain into a large highball glass over crushed ice. Sprinkle with grated chocolate, and serve.", @@ -63355,7 +63355,7 @@ "chocolate" ], "title": "Coco Choco recipe", - "url": "http://www.drinksmixer.com/drink6910.html" + "url": "https://www.drinksmixer.com/drink6910.html" }, { "directions": "Shake well over ice cubes in a shaker, strain into a large highball glass over crushed ice, and serve.", @@ -63366,7 +63366,7 @@ "banana syrup" ], "title": "Coconut Banana recipe", - "url": "http://www.drinksmixer.com/drink6911.html" + "url": "https://www.drinksmixer.com/drink6911.html" }, { "directions": "Shake well over ice cubes in a shaker, strain into a cocktail glass, and serve.", @@ -63377,7 +63377,7 @@ "cream" ], "title": "Coconut Dream recipe", - "url": "http://www.drinksmixer.com/drink6912.html" + "url": "https://www.drinksmixer.com/drink6912.html" }, { "directions": "Shake over ice cubes in a shaker. Strain into a large highball glass over crushed ice, garnish with an amarelle cherry, and serve.", @@ -63389,7 +63389,7 @@ "pineapple juice" ], "title": "Coconut Kiss recipe", - "url": "http://www.drinksmixer.com/drink6913.html" + "url": "https://www.drinksmixer.com/drink6913.html" }, { "directions": "Shake well over ice cubes in a shaker. Strain into a large highball glass over crushed ice, add a pineapple chunk and an amarelle cherry, and serve.", @@ -63400,7 +63400,7 @@ "raspberry syrup" ], "title": "Coconut Lips recipe", - "url": "http://www.drinksmixer.com/drink6914.html" + "url": "https://www.drinksmixer.com/drink6914.html" }, { "directions": "Blend ingredients together with crushed ice in a shaker or blender. Pour into a large highball glass over crushed ice, and serve.", @@ -63412,7 +63412,7 @@ "cream" ], "title": "Colada Brazil recipe", - "url": "http://www.drinksmixer.com/drink6915.html" + "url": "https://www.drinksmixer.com/drink6915.html" }, { "directions": "Shake well over ice cubes in a shaker, and strain into a large highball glass. Fill with crushed ice, and serve.", @@ -63424,7 +63424,7 @@ "cream" ], "title": "Copacabana recipe", - "url": "http://www.drinksmixer.com/drink6916.html" + "url": "https://www.drinksmixer.com/drink6916.html" }, { "directions": "Pour pernod into a champagne flute, fill with champagne, and sprinkle with a few drops of lemon juice. Serve.", @@ -63434,7 +63434,7 @@ "lemon juice" ], "title": "Corpse Reviver #2 recipe", - "url": "http://www.drinksmixer.com/drink6917.html" + "url": "https://www.drinksmixer.com/drink6917.html" }, { "directions": "Stir over ice cubes in a mixing glass, and strain into a chilled cocktail glass. Serve with a glass of ice water.", @@ -63444,7 +63444,7 @@ "white creme de menthe" ], "title": "Corpse Reviver #3 recipe", - "url": "http://www.drinksmixer.com/drink6918.html" + "url": "https://www.drinksmixer.com/drink6918.html" }, { "directions": "Heat liquors in a heat-resistant glass, add sugar, and fill with coffee. Stir, and serve.", @@ -63455,7 +63455,7 @@ "coffee" ], "title": "Cuban Hot Coffee recipe", - "url": "http://www.drinksmixer.com/drink6919.html" + "url": "https://www.drinksmixer.com/drink6919.html" }, { "directions": "Shake well over ice cubes in a shaker, strain into a chilled cocktail glass, and serve.", @@ -63466,7 +63466,7 @@ "lemon juice" ], "title": "Cuban Island recipe", - "url": "http://www.drinksmixer.com/drink6920.html" + "url": "https://www.drinksmixer.com/drink6920.html" }, { "directions": "Stir well over ice cubes in a mixing glass, and strain into a chilled cocktail glass. Add a stemmed cherry, and serve.", @@ -63477,7 +63477,7 @@ "Angostura\u00ae bitters" ], "title": "Cuban Manhattan recipe", - "url": "http://www.drinksmixer.com/drink6921.html" + "url": "https://www.drinksmixer.com/drink6921.html" }, { "directions": "Shake well over ice cubes in a shaker, strain into a chilled cocktail glass, and serve.", @@ -63488,7 +63488,7 @@ "lime juice" ], "title": "Cuban Special recipe", - "url": "http://www.drinksmixer.com/drink6922.html" + "url": "https://www.drinksmixer.com/drink6922.html" }, { "directions": "Stir over ice cubes in an aperitif or cordial glass, and squeeze in an orange wedge. Serve.", @@ -63498,7 +63498,7 @@ "orange" ], "title": "Cynar Cocktail recipe", - "url": "http://www.drinksmixer.com/drink6923.html" + "url": "https://www.drinksmixer.com/drink6923.html" }, { "directions": "Shake well over ice cubes in a shaker, strain into a chilled cocktail glass, and serve.", @@ -63508,7 +63508,7 @@ "lime juice" ], "title": "Daiquiri Natural recipe", - "url": "http://www.drinksmixer.com/drink6924.html" + "url": "https://www.drinksmixer.com/drink6924.html" }, { "directions": "Shake well over crushed ice in a shaker, and strain into a large highball glass over crushed ice.", @@ -63522,7 +63522,7 @@ "lime juice" ], "title": "Deep-Sea Diver recipe", - "url": "http://www.drinksmixer.com/drink6925.html" + "url": "https://www.drinksmixer.com/drink6925.html" }, { "directions": "Stir well over ice cubes in a mixing glass. Strain into a chilled cocktail glass, add a twist of lemon peel, and serve.", @@ -63533,7 +63533,7 @@ "lemon" ], "title": "Devil Cocktail recipe", - "url": "http://www.drinksmixer.com/drink6926.html" + "url": "https://www.drinksmixer.com/drink6926.html" }, { "directions": "Stir dubonnet and creme de cassis over ice cubes in an aperitif glass. Fill with soda, add a twist of lemon peel, and serve.", @@ -63544,7 +63544,7 @@ "lemon" ], "title": "Dubonnet Cassis recipe", - "url": "http://www.drinksmixer.com/drink6927.html" + "url": "https://www.drinksmixer.com/drink6927.html" }, { "directions": "Pour dubonnet over ice cubes in a collins glass, and fill with ginger ale. Add a spiral of lemon peel, and serve.", @@ -63554,7 +63554,7 @@ "lemon" ], "title": "Dubonnet Highball recipe", - "url": "http://www.drinksmixer.com/drink6928.html" + "url": "https://www.drinksmixer.com/drink6928.html" }, { "directions": "Shake lemon juice and campari well over ice cubes in a shaker. Strain into a champagne flute, fill with prosecco, and serve.", @@ -63564,7 +63564,7 @@ "lemon juice" ], "title": "Due Campari recipe", - "url": "http://www.drinksmixer.com/drink6929.html" + "url": "https://www.drinksmixer.com/drink6929.html" }, { "directions": "Stir well over ice cubes in a mixing glass. Strain into a chilled cocktail glass, add a twist of orange peel, and serve.", @@ -63575,7 +63575,7 @@ "orange" ], "title": "Duke of Marlboro recipe", - "url": "http://www.drinksmixer.com/drink6930.html" + "url": "https://www.drinksmixer.com/drink6930.html" }, { "directions": "Stir in a mixing glass filled with ice cubes. Strain into a chilled cocktail glass, and serve.", @@ -63586,7 +63586,7 @@ "orange bitters" ], "title": "East Indian recipe", - "url": "http://www.drinksmixer.com/drink6931.html" + "url": "https://www.drinksmixer.com/drink6931.html" }, { "directions": "Stir over ice cubes in aperitif glass. Add a slice of orange and lemon, and serve.", @@ -63598,7 +63598,7 @@ "lemon" ], "title": "Eastwind recipe", - "url": "http://www.drinksmixer.com/drink6932.html" + "url": "https://www.drinksmixer.com/drink6932.html" }, { "directions": "Stir together in a mixing glass filled with ice cubes. Strain into a chilled cocktail glass, add a twist of lemon peel, and serve.", @@ -63610,7 +63610,7 @@ "lemon" ], "title": "Fallen Leaves recipe", - "url": "http://www.drinksmixer.com/drink6933.html" + "url": "https://www.drinksmixer.com/drink6933.html" }, { "directions": "Shake well over crushed ice in a shaker. Strain into a large highball glass over crushed ice, and serve.", @@ -63623,7 +63623,7 @@ "lime juice" ], "title": "Fat Sailor recipe", - "url": "http://www.drinksmixer.com/drink6934.html" + "url": "https://www.drinksmixer.com/drink6934.html" }, { "directions": "Stir over ice cubes in a small highball glass, and serve.", @@ -63632,7 +63632,7 @@ "amaretto almond liqueur" ], "title": "Ferrari recipe", - "url": "http://www.drinksmixer.com/drink6935.html" + "url": "https://www.drinksmixer.com/drink6935.html" }, { "directions": "Stir over ice cubes in a mixing glass, strain into a chilled cocktail glass, and serve.", @@ -63644,7 +63644,7 @@ "lime juice" ], "title": "Fiesta recipe", - "url": "http://www.drinksmixer.com/drink6936.html" + "url": "https://www.drinksmixer.com/drink6936.html" }, { "directions": "Heat water. Stir in sugar, tea, and honey, and allow to boil. Add liquors, stir well, and simmer. Stir in lime juice and peels. Serve hot in heat-resistant cups or glasses, or cool, seal and bottle.", @@ -63659,7 +63659,7 @@ "lime" ], "title": "Fish House Punch #2 recipe", - "url": "http://www.drinksmixer.com/drink6937.html" + "url": "https://www.drinksmixer.com/drink6937.html" }, { "directions": "Shake over crushed ice in a shaker, and strain into a chilled cocktail glass.", @@ -63671,7 +63671,7 @@ "lime juice" ], "title": "Florida Daiquiri recipe", - "url": "http://www.drinksmixer.com/drink6938.html" + "url": "https://www.drinksmixer.com/drink6938.html" }, { "directions": "Shake well over ice cubes in a shaker, and strain into a collins glass half-filled with crushed ice. Garnish with a stemmed cherry, and serve.", @@ -63684,7 +63684,7 @@ "lemon juice" ], "title": "Florida Sling recipe", - "url": "http://www.drinksmixer.com/drink6939.html" + "url": "https://www.drinksmixer.com/drink6939.html" }, { "directions": "Shake over crushed ice in a shaker, strain into a chilled cocktail glass, and serve.", @@ -63695,7 +63695,7 @@ "orange juice" ], "title": "Florida Special recipe", - "url": "http://www.drinksmixer.com/drink6940.html" + "url": "https://www.drinksmixer.com/drink6940.html" }, { "directions": "Shake well over ice cubes in a shaker, and strain into a large highball glass with crushed ice. Add pineapple chunks, and serve.", @@ -63709,7 +63709,7 @@ "cream" ], "title": "Flying Kangaroo recipe", - "url": "http://www.drinksmixer.com/drink6941.html" + "url": "https://www.drinksmixer.com/drink6941.html" }, { "directions": "Pour gin and pernod into an aperitif glass, fill with cold water, add a twist of lemon peel, and serve.", @@ -63720,7 +63720,7 @@ "lemon" ], "title": "Foggy Day recipe", - "url": "http://www.drinksmixer.com/drink6942.html" + "url": "https://www.drinksmixer.com/drink6942.html" }, { "directions": "Shake over ice cubes in a shaker, and strain into a large highball glass over crushed ice. Add pineapple chunks, and serve.", @@ -63733,7 +63733,7 @@ "cream" ], "title": "French Colada recipe", - "url": "http://www.drinksmixer.com/drink6943.html" + "url": "https://www.drinksmixer.com/drink6943.html" }, { "directions": "Shake well over ice cubes in a shaker, and strain into a chilled cocktail glass.", @@ -63744,7 +63744,7 @@ "lime juice" ], "title": "French Daiquiri recipe", - "url": "http://www.drinksmixer.com/drink6944.html" + "url": "https://www.drinksmixer.com/drink6944.html" }, { "directions": "Shake all ingredients (except champagne) well over ice cubes in a shaker. Strain into a champagne flute, slowly fill with champagne, and serve.", @@ -63757,7 +63757,7 @@ "Champagne" ], "title": "French 68 recipe", - "url": "http://www.drinksmixer.com/drink6945.html" + "url": "https://www.drinksmixer.com/drink6945.html" }, { "directions": "Shake all ingredients (except champagne) well over ice cubes in a shaker. Strain into a champagne flute, fill with champagne, and serve.", @@ -63769,7 +63769,7 @@ "Champagne" ], "title": "French 76 recipe", - "url": "http://www.drinksmixer.com/drink6946.html" + "url": "https://www.drinksmixer.com/drink6946.html" }, { "directions": "Prepare mango fruit with rum and syrup in a blender with crushed ice. Strain into a large highball glass, and fill with crushed ice. Squeeze in a lime wedge, and serve.", @@ -63780,7 +63780,7 @@ "lime juice" ], "title": "Friday recipe", - "url": "http://www.drinksmixer.com/drink6947.html" + "url": "https://www.drinksmixer.com/drink6947.html" }, { "directions": "Shake well over ice cubes in a shaker, and strain into an old-fashioned glass over ice cubes. Squeeze in an orange wedge, garnish with a stemmed cherry, and serve.", @@ -63792,7 +63792,7 @@ "orange" ], "title": "Frisco Sour recipe", - "url": "http://www.drinksmixer.com/drink6948.html" + "url": "https://www.drinksmixer.com/drink6948.html" }, { "directions": "Add pieces of a chosen fruit, syrup (of that chosen fruit), rums, sugar, lime juice and crushed ice to a blender, and blend. Pour into a cocktail glass, and serve.\r", @@ -63805,7 +63805,7 @@ "lime juice" ], "title": "Frozen Fruit Daiquiri recipe", - "url": "http://www.drinksmixer.com/drink6949.html" + "url": "https://www.drinksmixer.com/drink6949.html" }, { "directions": "Shake well over ice cubes in a shaker, and strain into a chilled cocktail glass.", @@ -63816,7 +63816,7 @@ "orange juice" ], "title": "Gene Tunney recipe", - "url": "http://www.drinksmixer.com/drink6950.html" + "url": "https://www.drinksmixer.com/drink6950.html" }, { "directions": "Shake well over ice cubes in a shaker, and strain into a cocktail glass.", @@ -63827,7 +63827,7 @@ "cream" ], "title": "God's Child recipe", - "url": "http://www.drinksmixer.com/drink6951.html" + "url": "https://www.drinksmixer.com/drink6951.html" }, { "directions": "Shake over crushed ice in a shaker, and strain into a large highball glass over crushed ice. Garnish with a pineapple chunk and a stemmed cherry, and serve.", @@ -63841,7 +63841,7 @@ "cream" ], "title": "Golden Colada recipe", - "url": "http://www.drinksmixer.com/drink6952.html" + "url": "https://www.drinksmixer.com/drink6952.html" }, { "directions": "Stir over ice cubes in a small highball glass, and serve.", @@ -63850,7 +63850,7 @@ "Southern Comfort\u00ae peach liqueur" ], "title": "Golden Nail recipe", - "url": "http://www.drinksmixer.com/drink6953.html" + "url": "https://www.drinksmixer.com/drink6953.html" }, { "directions": "Shake all ingredients (except soda) well over ice cubes in a shaker, and strain into a collins glass over ice cubes. Fill with soda, add a cocktail cherry, and serve.", @@ -63863,7 +63863,7 @@ "soda" ], "title": "Golden Rye Fizz recipe", - "url": "http://www.drinksmixer.com/drink6954.html" + "url": "https://www.drinksmixer.com/drink6954.html" }, { "directions": "Heat in a heat-resistant glass, add orange peel, and serve.", @@ -63877,7 +63877,7 @@ "orange" ], "title": "Goldie recipe", - "url": "http://www.drinksmixer.com/drink6955.html" + "url": "https://www.drinksmixer.com/drink6955.html" }, { "directions": "Shake well over ice cubes in a shaker, and strain into a large highball glass over ice cubes. Sprinkle with nutmeg, and serve.", @@ -63891,7 +63891,7 @@ "nutmeg" ], "title": "Good Morning Eggnog recipe", - "url": "http://www.drinksmixer.com/drink6956.html" + "url": "https://www.drinksmixer.com/drink6956.html" }, { "directions": "Place mint leaves into a large highball glass, and pour in peppermint syrup. Press with a barspoon. Add a scoop of crushed ice, fill with tonic water, and stir. Serve.", @@ -63901,7 +63901,7 @@ "tonic water" ], "title": "Green Leaves recipe", - "url": "http://www.drinksmixer.com/drink6957.html" + "url": "https://www.drinksmixer.com/drink6957.html" }, { "directions": "Stir over crushed ice in a small highball glass. Add a small amount of soda if desired, and serve.", @@ -63910,7 +63910,7 @@ "green creme de menthe" ], "title": "Green Russian #2 recipe", - "url": "http://www.drinksmixer.com/drink6958.html" + "url": "https://www.drinksmixer.com/drink6958.html" }, { "directions": "Squeeze a lime wedge in a collins glass, and drop into the glass. Add grenadine and rums, fill with crushed ice, and stir well.", @@ -63921,7 +63921,7 @@ "lime" ], "title": "Habana Libre recipe", - "url": "http://www.drinksmixer.com/drink6959.html" + "url": "https://www.drinksmixer.com/drink6959.html" }, { "directions": "Shake brandy, port and orange juice well over ice cubes in a shaker. Strain into a champagne flute, fill with champagne, and serve.", @@ -63932,7 +63932,7 @@ "Champagne" ], "title": "Happy New Year recipe", - "url": "http://www.drinksmixer.com/drink6960.html" + "url": "https://www.drinksmixer.com/drink6960.html" }, { "directions": "Stir in a mixing glass filled with ice cubes. Strain into a chilled cocktail glass, and serve.", @@ -63942,7 +63942,7 @@ "Angostura\u00ae bitters" ], "title": "Harvard recipe", - "url": "http://www.drinksmixer.com/drink6961.html" + "url": "https://www.drinksmixer.com/drink6961.html" }, { "directions": "Shake well over ice cubes in a shaker, and strain into a chilled cocktail glass.", @@ -63952,7 +63952,7 @@ "lemon juice" ], "title": "Havana Sidecar recipe", - "url": "http://www.drinksmixer.com/drink6962.html" + "url": "https://www.drinksmixer.com/drink6962.html" }, { "directions": "Shake over crushed ice in a shaker, strain into a large highball glass over crushed ice, and serve.", @@ -63962,7 +63962,7 @@ "pineapple juice" ], "title": "Havana Special recipe", - "url": "http://www.drinksmixer.com/drink6963.html" + "url": "https://www.drinksmixer.com/drink6963.html" }, { "directions": "Pour pernod into a champagne flute, fill with champagne, and serve.", @@ -63971,7 +63971,7 @@ "Champagne" ], "title": "Hemingway recipe", - "url": "http://www.drinksmixer.com/drink6964.html" + "url": "https://www.drinksmixer.com/drink6964.html" }, { "directions": "Shake well over ice cubes in a shaker, and strain into a large highball glass over crushed ice. Add a pineapple chunk, and serve.", @@ -63984,7 +63984,7 @@ "lemon juice" ], "title": "Honolulu Juicer recipe", - "url": "http://www.drinksmixer.com/drink6965.html" + "url": "https://www.drinksmixer.com/drink6965.html" }, { "directions": "Heat well in a heat-resistant glass or cup. Stir, add twists of lemon and orange peel, and serve.", @@ -63998,7 +63998,7 @@ "lemon" ], "title": "Hot Frenchman recipe", - "url": "http://www.drinksmixer.com/drink6966.html" + "url": "https://www.drinksmixer.com/drink6966.html" }, { "directions": "Heat in a heat-resistant glass or cup. Add twists of orange and lemon peel, and serve.", @@ -64011,7 +64011,7 @@ "lemon" ], "title": "Hot M.M.M. recipe", - "url": "http://www.drinksmixer.com/drink6967.html" + "url": "https://www.drinksmixer.com/drink6967.html" }, { "directions": "Heat liquors in a heat-resistant glass or cup, and fill with coffee. Add sugar, to taste, and serve.", @@ -64023,7 +64023,7 @@ "sugar" ], "title": "Hot Marie recipe", - "url": "http://www.drinksmixer.com/drink6968.html" + "url": "https://www.drinksmixer.com/drink6968.html" }, { "directions": "Place a single ice cube into a champagne flute. Add liquors, fill with champagne, and serve.", @@ -64034,7 +64034,7 @@ "Champagne" ], "title": "International Bar Fly recipe", - "url": "http://www.drinksmixer.com/drink6969.html" + "url": "https://www.drinksmixer.com/drink6969.html" }, { "directions": "Shake all ingredients (except champagne) over ice cubes in a shaker, and strain into a champagne flute. Fill with champagne, and serve.", @@ -64045,7 +64045,7 @@ "Champagne" ], "title": "I.B.U. recipe", - "url": "http://www.drinksmixer.com/drink6970.html" + "url": "https://www.drinksmixer.com/drink6970.html" }, { "directions": "Pour over crushed ice in a large highball glass, stir well, and serve.", @@ -64059,7 +64059,7 @@ "tea" ], "title": "Iced Tea Cocktail recipe", - "url": "http://www.drinksmixer.com/drink6971.html" + "url": "https://www.drinksmixer.com/drink6971.html" }, { "directions": "Shake well over ice cubes in a shaker, strain into a chilled cocktail glass, and serve.", @@ -64071,7 +64071,7 @@ "Angostura\u00ae bitters" ], "title": "Income Tax Cocktail recipe", - "url": "http://www.drinksmixer.com/drink6972.html" + "url": "https://www.drinksmixer.com/drink6972.html" }, { "directions": "Pour over ice cubes in a large highball glass, stir, and serve.", @@ -64080,7 +64080,7 @@ "grapefruit juice" ], "title": "Isle of Pines recipe", - "url": "http://www.drinksmixer.com/drink6973.html" + "url": "https://www.drinksmixer.com/drink6973.html" }, { "directions": "Shake well over ice cubes in a shaker, and strain into a large highball glass over crushed ice. Garnish with an amarelle cherry, and serve.", @@ -64093,7 +64093,7 @@ "cream" ], "title": "Italian Colada recipe", - "url": "http://www.drinksmixer.com/drink6974.html" + "url": "https://www.drinksmixer.com/drink6974.html" }, { "directions": "Shake over ice cubes in a shaker, and strain into a chilled cocktail glass.", @@ -64104,7 +64104,7 @@ "lemon juice" ], "title": "Jack Rose recipe", - "url": "http://www.drinksmixer.com/drink6975.html" + "url": "https://www.drinksmixer.com/drink6975.html" }, { "directions": "Shake well over crushed ice in a shaker, and pour into a large highball glass over crushed ice. Add a pineapple chunk and a stemmed cherry, and serve.", @@ -64116,7 +64116,7 @@ "lemon juice" ], "title": "Jamaica Fever recipe", - "url": "http://www.drinksmixer.com/drink6976.html" + "url": "https://www.drinksmixer.com/drink6976.html" }, { "directions": "Saturate a sugar cube or teaspoon of sugar in a champagne flute with angostura bitters. Add vodka, fill with champagne, and serve.", @@ -64127,7 +64127,7 @@ "Champagne" ], "title": "James Bond recipe", - "url": "http://www.drinksmixer.com/drink6977.html" + "url": "https://www.drinksmixer.com/drink6977.html" }, { "directions": "Heat rum, calvados and syrup in a heat-resistant glass or cup. Fill with hot milk, sprinkle with nutmeg, and serve.", @@ -64139,7 +64139,7 @@ "nutmeg" ], "title": "Jean Gabin recipe", - "url": "http://www.drinksmixer.com/drink6978.html" + "url": "https://www.drinksmixer.com/drink6978.html" }, { "directions": "Shake over ice cubes in a shaker, and strain into a cocktail glass.", @@ -64152,7 +64152,7 @@ "anisette" ], "title": "Jean Lafitte recipe", - "url": "http://www.drinksmixer.com/drink6979.html" + "url": "https://www.drinksmixer.com/drink6979.html" }, { "directions": "Shake well over ice cubes in a shaker, strain into a chilled cocktail glass, and serve.", @@ -64164,7 +64164,7 @@ "lime juice" ], "title": "La Floridita Cocktail recipe", - "url": "http://www.drinksmixer.com/drink6980.html" + "url": "https://www.drinksmixer.com/drink6980.html" }, { "directions": "Pour into an aperitif glass over ice cubes, and fill with cold water. Stir, add a twist of lemon peel, and serve.", @@ -64175,7 +64175,7 @@ "lemon" ], "title": "Late Mistral recipe", - "url": "http://www.drinksmixer.com/drink6981.html" + "url": "https://www.drinksmixer.com/drink6981.html" }, { "directions": "Shake well over crushed ice in a shaker. Strain into a large highball glass over crushed ice, add a pineapple chunk, and serve.", @@ -64187,7 +64187,7 @@ "lemon juice" ], "title": "Latin Lover recipe", - "url": "http://www.drinksmixer.com/drink6982.html" + "url": "https://www.drinksmixer.com/drink6982.html" }, { "directions": "Stir lemon juice and sugar well in a large highball glass. Add ice cubes, fill with soda, and stir again. Serve.", @@ -64197,7 +64197,7 @@ "soda" ], "title": "Lemonade recipe", - "url": "http://www.drinksmixer.com/drink6983.html" + "url": "https://www.drinksmixer.com/drink6983.html" }, { "directions": "Shake lemon juice, egg yolk and sugar syrup over ice cubes in a shaker. Strain into a large highball glass over ice cubes, and carefully fill with water or soda.", @@ -64208,7 +64208,7 @@ "soda" ], "title": "Lemonade Golden recipe", - "url": "http://www.drinksmixer.com/drink6984.html" + "url": "https://www.drinksmixer.com/drink6984.html" }, { "directions": "Press a sugar cube onto a lime wedge in a small highball glass. Add calvados and rum, stir well, and add ice cubes. Stir again, and serve.", @@ -64219,7 +64219,7 @@ "lime" ], "title": "Liberty Cocktail recipe", - "url": "http://www.drinksmixer.com/drink6985.html" + "url": "https://www.drinksmixer.com/drink6985.html" }, { "directions": "Shake all ingredients (except lime juice) well over crushed ice in a shaker. Strain into a large highball glass over crushed ice, add lime juice, and serve.", @@ -64234,7 +64234,7 @@ "lime juice" ], "title": "Loftus Special recipe", - "url": "http://www.drinksmixer.com/drink6986.html" + "url": "https://www.drinksmixer.com/drink6986.html" }, { "directions": "Prepare in a blender with crushed ice. Strain into a large highball glass, fill with crushed ice, and serve.", @@ -64245,7 +64245,7 @@ "pineapple" ], "title": "Long Distance Runner recipe", - "url": "http://www.drinksmixer.com/drink6987.html" + "url": "https://www.drinksmixer.com/drink6987.html" }, { "directions": "Stir over ice cubes in an aperitif glass. Fill with water, and serve.", @@ -64255,7 +64255,7 @@ "water" ], "title": "Macaroni recipe", - "url": "http://www.drinksmixer.com/drink6988.html" + "url": "https://www.drinksmixer.com/drink6988.html" }, { "directions": "Shake well over ice cubes in a shaker, and strain into a chilled (salt-rimmed if desired) cocktail glass.", @@ -64266,7 +64266,7 @@ "lemon juice" ], "title": "Malcolm Lowry recipe", - "url": "http://www.drinksmixer.com/drink6989.html" + "url": "https://www.drinksmixer.com/drink6989.html" }, { "directions": "Stir well in a mixing glass filled with ice cubes. Strain into a chilled cocktail glass, garnish with a cherry, and serve.", @@ -64277,7 +64277,7 @@ "Angostura\u00ae bitters" ], "title": "Manhattan Perfect recipe", - "url": "http://www.drinksmixer.com/drink6990.html" + "url": "https://www.drinksmixer.com/drink6990.html" }, { "directions": "Shake well over ice cubes in a shaker. Strain into a large highball glass over crushed ice, and serve.", @@ -64287,7 +64287,7 @@ "passion-fruit syrup" ], "title": "Maradona recipe", - "url": "http://www.drinksmixer.com/drink6991.html" + "url": "https://www.drinksmixer.com/drink6991.html" }, { "directions": "Heat well in a heat-resistant glass or cup. Add twists of orange and lemon peel, and drop into glass. Serve.", @@ -64302,7 +64302,7 @@ "lemon juice" ], "title": "Martin's Rum-Orange Punch recipe", - "url": "http://www.drinksmixer.com/drink6992.html" + "url": "https://www.drinksmixer.com/drink6992.html" }, { "directions": "Shake well over ice cubes in a shaker. Strain into a chilled cocktail glass, and serve.", @@ -64314,7 +64314,7 @@ "orange juice" ], "title": "Maurice Chevalier recipe", - "url": "http://www.drinksmixer.com/drink6993.html" + "url": "https://www.drinksmixer.com/drink6993.html" }, { "directions": "Stir well in a mixing glass filled with ice cubes. Strain into a chilled cocktail glass, add a twist of lemon and drop into glass. Serve.", @@ -64326,7 +64326,7 @@ "lemon" ], "title": "Merry Widow #2 recipe", - "url": "http://www.drinksmixer.com/drink6994.html" + "url": "https://www.drinksmixer.com/drink6994.html" }, { "directions": "Shake over crushed ice in a shaker, strain into a large highball glass over crushed ice, and serve.", @@ -64338,7 +64338,7 @@ "cream" ], "title": "Mexican Colada recipe", - "url": "http://www.drinksmixer.com/drink6995.html" + "url": "https://www.drinksmixer.com/drink6995.html" }, { "directions": "Prepare in a blender with crushed ice. Strain into a cocktail glass, and serve.", @@ -64350,7 +64350,7 @@ "mint" ], "title": "Mint Daiquiri recipe", - "url": "http://www.drinksmixer.com/drink6996.html" + "url": "https://www.drinksmixer.com/drink6996.html" }, { "directions": "Shake gin, creme de menthe and lemon juice well over ice cubes in a shaker. Strain into a champagne flute, fill with champagne, and serve.", @@ -64361,7 +64361,7 @@ "Champagne" ], "title": "Monte Carlo Imperial recipe", - "url": "http://www.drinksmixer.com/drink6997.html" + "url": "https://www.drinksmixer.com/drink6997.html" }, { "directions": "Shake all ingredients (except soda) well over ice cubes in a shaker. Strain into a collins glass filled with ice cubes, fill with soda, and serve.", @@ -64375,7 +64375,7 @@ "lemon juice" ], "title": "New Orleans Fizz recipe", - "url": "http://www.drinksmixer.com/drink6998.html" + "url": "https://www.drinksmixer.com/drink6998.html" }, { "directions": "Place a sugar cube into an old-fashioned glass, and saturate with angostura bitters. Add ice cubes, pour in liquors, and add a twist of lemon peel. Fill with water, stir well, and serve.", @@ -64387,7 +64387,7 @@ "lemon" ], "title": "New Orleans Sazerac recipe", - "url": "http://www.drinksmixer.com/drink6999.html" + "url": "https://www.drinksmixer.com/drink6999.html" }, { "directions": "Shake well over ice cubes in a shaker. Strain into a cocktail glass, sprinkle with nutmeg, and serve.", @@ -64400,7 +64400,7 @@ "nutmeg" ], "title": "New York Flip recipe", - "url": "http://www.drinksmixer.com/drink7000.html" + "url": "https://www.drinksmixer.com/drink7000.html" }, { "directions": "Pour bourbon over ice cubes in an old-fashioned glass. Squeeze a lime wedge into the drink, and drop into glass. Add grenadine, stir well, and serve.", @@ -64410,7 +64410,7 @@ "grenadine syrup" ], "title": "New Yorker recipe", - "url": "http://www.drinksmixer.com/drink7001.html" + "url": "https://www.drinksmixer.com/drink7001.html" }, { "directions": "Stir all ingredients (except champagne) in a mixing glass filled with ice cubes. Strain into a champagne flute, fill with champagne, and serve.", @@ -64422,7 +64422,7 @@ "Champagne" ], "title": "Ohio recipe", - "url": "http://www.drinksmixer.com/drink7002.html" + "url": "https://www.drinksmixer.com/drink7002.html" }, { "directions": "Shake well over ice cubes in a shaker. Strain into a chilled cocktail glass, and serve.", @@ -64433,7 +64433,7 @@ "lemon juice" ], "title": "Olympic recipe", - "url": "http://www.drinksmixer.com/drink7003.html" + "url": "https://www.drinksmixer.com/drink7003.html" }, { "directions": "Shake all ingredients (except lime) well over crushed ice in a shaker. Strain into a small highball glass over crushed ice, squeeze in the lime wedge, and serve.", @@ -64446,7 +64446,7 @@ "lime" ], "title": "Ordinary Seaman recipe", - "url": "http://www.drinksmixer.com/drink7004.html" + "url": "https://www.drinksmixer.com/drink7004.html" }, { "directions": "Stir well over ice cubes in a mixing glass. Strain into a chilled cocktail glass over a single ice cube, and serve.", @@ -64456,7 +64456,7 @@ "creme de cassis" ], "title": "Parisienne recipe", - "url": "http://www.drinksmixer.com/drink7005.html" + "url": "https://www.drinksmixer.com/drink7005.html" }, { "directions": "Shake well over ice cubes in a shaker, and strain into a chilled cocktail glass.", @@ -64468,7 +64468,7 @@ "lemon juice" ], "title": "Park Lane recipe", - "url": "http://www.drinksmixer.com/drink7006.html" + "url": "https://www.drinksmixer.com/drink7006.html" }, { "directions": "Shake well over ice cubes in a shaker, strain into a large highball glass over ice cubes, and serve.", @@ -64479,7 +64479,7 @@ "lemon juice" ], "title": "Pelican recipe", - "url": "http://www.drinksmixer.com/drink7007.html" + "url": "https://www.drinksmixer.com/drink7007.html" }, { "directions": "Shake well over ice cubes in a shaker, and strain into a large highball glass over crushed ice.", @@ -64492,7 +64492,7 @@ "lemon juice" ], "title": "Pepe recipe", - "url": "http://www.drinksmixer.com/drink7008.html" + "url": "https://www.drinksmixer.com/drink7008.html" }, { "directions": "Heat tequila and kahlua in a heat-resistant glass or cup, and stir in sugar. Fill with coffee, stir again, and top with cream.", @@ -64504,7 +64504,7 @@ "whipped cream" ], "title": "Pepinos Cafe recipe", - "url": "http://www.drinksmixer.com/drink7009.html" + "url": "https://www.drinksmixer.com/drink7009.html" }, { "directions": "Shake well over ice cubes in a shaker. Strain into a cocktail glass, add a twist of lime peel, and serve.", @@ -64517,7 +64517,7 @@ "lime" ], "title": "Periodista recipe", - "url": "http://www.drinksmixer.com/drink7010.html" + "url": "https://www.drinksmixer.com/drink7010.html" }, { "directions": "Shake all ingredients (except champagne) well over ice cubes in a shaker. Strain into a champagne flute, fill with champagne, and serve.", @@ -64530,7 +64530,7 @@ "Champagne" ], "title": "Pick-Me-Up recipe", - "url": "http://www.drinksmixer.com/drink7011.html" + "url": "https://www.drinksmixer.com/drink7011.html" }, { "directions": "Pour Pimm's over ice cubes in a large highball glass. Fill with 7-up, add twists of lemon and cucumber peel, and serve.", @@ -64541,7 +64541,7 @@ "cucumber" ], "title": "Pimm's No. 1 recipe", - "url": "http://www.drinksmixer.com/drink7012.html" + "url": "https://www.drinksmixer.com/drink7012.html" }, { "directions": "Prepare in a blender with crushed ice. Pour into a chilled cocktail glass, and serve.", @@ -64553,7 +64553,7 @@ "pineapple" ], "title": "Pineapple Daiquiri recipe", - "url": "http://www.drinksmixer.com/drink7013.html" + "url": "https://www.drinksmixer.com/drink7013.html" }, { "directions": "Shake well over ice cubes in a shaker, and strain into a large highball glass over crushed ice.", @@ -64565,7 +64565,7 @@ "lime juice" ], "title": "Pinerito recipe", - "url": "http://www.drinksmixer.com/drink7014.html" + "url": "https://www.drinksmixer.com/drink7014.html" }, { "directions": "Shake well over ice cubes in a shaker, and strain into a cocktail glass.", @@ -64576,7 +64576,7 @@ "lemon juice" ], "title": "Pink Creole recipe", - "url": "http://www.drinksmixer.com/drink7015.html" + "url": "https://www.drinksmixer.com/drink7015.html" }, { "directions": "Shake well over ice cubes in a shaker, and strain into a chilled cocktail glass.", @@ -64587,7 +64587,7 @@ "lime juice" ], "title": "Pink Daiquiri recipe", - "url": "http://www.drinksmixer.com/drink7016.html" + "url": "https://www.drinksmixer.com/drink7016.html" }, { "directions": "Shake well over ice cubes in a shaker, and strain into a large highball glass over crushed ice. Garnish with an amarelle cherry, and serve.", @@ -64600,7 +64600,7 @@ "pineapple juice" ], "title": "Pinky Colada recipe", - "url": "http://www.drinksmixer.com/drink7017.html" + "url": "https://www.drinksmixer.com/drink7017.html" }, { "directions": "Shake well over ice cubes in a shaker. Strain into a chilled cocktail glass, and serve.", @@ -64611,7 +64611,7 @@ "lemon juice" ], "title": "Pipeline recipe", - "url": "http://www.drinksmixer.com/drink7018.html" + "url": "https://www.drinksmixer.com/drink7018.html" }, { "directions": "Shake well over ice cubes in a shaker, and strain into a cocktail glass. Sprinkle with nutmeg, and serve.", @@ -64624,7 +64624,7 @@ "nutmeg" ], "title": "Porto Flip recipe", - "url": "http://www.drinksmixer.com/drink7019.html" + "url": "https://www.drinksmixer.com/drink7019.html" }, { "directions": "Place a sugar cube into a small highball glass, and saturate with angostura bitters. Add a single ice cube, pour in cognac, and add an orange wedge and stemmed cherry. Fill with champagne, and gradually pour in the benedictine.", @@ -64638,7 +64638,7 @@ "cherry" ], "title": "Prince of Wales recipe", - "url": "http://www.drinksmixer.com/drink7020.html" + "url": "https://www.drinksmixer.com/drink7020.html" }, { "directions": "Shake well over ice cubes in a shaker, and strain into a large highball glass over crushed ice.", @@ -64650,7 +64650,7 @@ "lime juice" ], "title": "Punch a la Washington Hotel recipe", - "url": "http://www.drinksmixer.com/drink7021.html" + "url": "https://www.drinksmixer.com/drink7021.html" }, { "directions": "Heat in a heat-resistant glass or cup.", @@ -64661,7 +64661,7 @@ "milk" ], "title": "Red Mouth recipe", - "url": "http://www.drinksmixer.com/drink7022.html" + "url": "https://www.drinksmixer.com/drink7022.html" }, { "directions": "Stir over ice cubes in a mixing glass, strain into an aperitif glass, and serve.", @@ -64670,7 +64670,7 @@ "Heering\u00ae cherry liqueur" ], "title": "Red Russian recipe", - "url": "http://www.drinksmixer.com/drink7023.html" + "url": "https://www.drinksmixer.com/drink7023.html" }, { "directions": "Shake cognac, cointreau and orange juice over ice cubes in a shaker. Strain into a champagne flute, carefully fill with champagne, and serve.", @@ -64681,7 +64681,7 @@ "Champagne" ], "title": "Ritz Cocktail recipe", - "url": "http://www.drinksmixer.com/drink7024.html" + "url": "https://www.drinksmixer.com/drink7024.html" }, { "directions": "Prepare in a blender with crushed ice, and pour into a large highball glass. Serve.", @@ -64693,7 +64693,7 @@ "limes" ], "title": "Robinson recipe", - "url": "http://www.drinksmixer.com/drink7025.html" + "url": "https://www.drinksmixer.com/drink7025.html" }, { "directions": "Shake well over ice cubes in a shaker, and strain into a cocktail glass. Sprinkle with nutmeg, and serve.", @@ -64704,7 +64704,7 @@ "nutmeg" ], "title": "Rum Alexander recipe", - "url": "http://www.drinksmixer.com/drink7026.html" + "url": "https://www.drinksmixer.com/drink7026.html" }, { "directions": "Shake well over ice in a shaker, and strain into a collins glass over ice cubes. Fill with soda, and serve.", @@ -64715,7 +64715,7 @@ "soda" ], "title": "Rum Fizz recipe", - "url": "http://www.drinksmixer.com/drink7027.html" + "url": "https://www.drinksmixer.com/drink7027.html" }, { "directions": "Pour over ice in a small highball glass, stir, and serve.", @@ -64724,7 +64724,7 @@ "white creme de menthe" ], "title": "Rum Stinger recipe", - "url": "http://www.drinksmixer.com/drink7028.html" + "url": "https://www.drinksmixer.com/drink7028.html" }, { "directions": "Shake over ice cubes in a shaker, strain into a cocktail glass, and serve.", @@ -64735,7 +64735,7 @@ "cream" ], "title": "Russian Bear recipe", - "url": "http://www.drinksmixer.com/drink7029.html" + "url": "https://www.drinksmixer.com/drink7029.html" }, { "directions": "Shake over ice cubes in a shaker, and strain into a cocktail glass.", @@ -64746,7 +64746,7 @@ "cream" ], "title": "Russian Cadillac recipe", - "url": "http://www.drinksmixer.com/drink7030.html" + "url": "https://www.drinksmixer.com/drink7030.html" }, { "directions": "Shake rye whiskey, cherry heering, sugar syrup and lemon juice well over ice cubes in a shaker. Strain into a collins glass over ice cubes, fill with soda, garnish with a cocktail cherry, and serve.", @@ -64758,7 +64758,7 @@ "soda" ], "title": "Rye Sling recipe", - "url": "http://www.drinksmixer.com/drink7031.html" + "url": "https://www.drinksmixer.com/drink7031.html" }, { "directions": "Shake well over ice cubes in a shaker. Strain into a whiskey sour glass, add a cherry, and serve.", @@ -64768,7 +64768,7 @@ "lemon juice" ], "title": "Rye Sour recipe", - "url": "http://www.drinksmixer.com/drink7032.html" + "url": "https://www.drinksmixer.com/drink7032.html" }, { "directions": "Pour over crushed ice in a collins glass, stir, and serve.", @@ -64777,7 +64777,7 @@ "coconut milk" ], "title": "Saoco recipe", - "url": "http://www.drinksmixer.com/drink7033.html" + "url": "https://www.drinksmixer.com/drink7033.html" }, { "directions": "Shake well over ice cubes in a shaker, and strain into a chilled cocktail glass.", @@ -64787,7 +64787,7 @@ "lemon juice" ], "title": "Schumann's Gimlet recipe", - "url": "http://www.drinksmixer.com/drink7034.html" + "url": "https://www.drinksmixer.com/drink7034.html" }, { "directions": "Stir well over ice cubes in a mixing glass. Strain into a chilled cocktail glass, and serve.", @@ -64799,7 +64799,7 @@ "lemon juice" ], "title": "Scofflaw recipe", - "url": "http://www.drinksmixer.com/drink7035.html" + "url": "https://www.drinksmixer.com/drink7035.html" }, { "directions": "Shake well over ice cubes in a shaker, and strain into a cocktail glass.", @@ -64811,7 +64811,7 @@ "lime juice" ], "title": "September Morn recipe", - "url": "http://www.drinksmixer.com/drink7036.html" + "url": "https://www.drinksmixer.com/drink7036.html" }, { "directions": "Shake well over ice cubes in a shaker, strain into a cocktail glass, and serve.", @@ -64821,7 +64821,7 @@ "cream" ], "title": "Silver Jubilee recipe", - "url": "http://www.drinksmixer.com/drink7037.html" + "url": "https://www.drinksmixer.com/drink7037.html" }, { "directions": "Shake well over ice cubes in a shaker, and strain into a chilled cocktail glass.", @@ -64833,7 +64833,7 @@ "lime juice" ], "title": "Sloppy Joe recipe", - "url": "http://www.drinksmixer.com/drink7038.html" + "url": "https://www.drinksmixer.com/drink7038.html" }, { "directions": "Shake well over ice cubes in a shaker, and strain into a collins glass half-filled with crushed ice.", @@ -64844,7 +64844,7 @@ "orange juice" ], "title": "Spring Fever recipe", - "url": "http://www.drinksmixer.com/drink7039.html" + "url": "https://www.drinksmixer.com/drink7039.html" }, { "directions": "Pour wine in a balloon wine glass, add soda, and serve.", @@ -64853,7 +64853,7 @@ "soda" ], "title": "Spritzer recipe", - "url": "http://www.drinksmixer.com/drink7040.html" + "url": "https://www.drinksmixer.com/drink7040.html" }, { "directions": "Pour over ice cubes in a small highball glass, stir, and serve.", @@ -64863,7 +64863,7 @@ "white creme de menthe" ], "title": "Stormy Weather recipe", - "url": "http://www.drinksmixer.com/drink7041.html" + "url": "https://www.drinksmixer.com/drink7041.html" }, { "directions": "Pour orange juice over ice in a collins glass, and add angostura bitters. Fill with 7-up, stir, and serve.", @@ -64873,7 +64873,7 @@ "7-Up\u00ae soda" ], "title": "Summer Cooler recipe", - "url": "http://www.drinksmixer.com/drink7042.html" + "url": "https://www.drinksmixer.com/drink7042.html" }, { "directions": "Heat in a heat-resistant glass, add a twist of lemon peel and a clove, and serve.", @@ -64886,7 +64886,7 @@ "clove" ], "title": "Sweet and Hot recipe", - "url": "http://www.drinksmixer.com/drink7043.html" + "url": "https://www.drinksmixer.com/drink7043.html" }, { "directions": "Shake well over ice cubes in a shaker, strain into a cocktail glass, and serve.", @@ -64896,7 +64896,7 @@ "orange juice" ], "title": "Sweet Science recipe", - "url": "http://www.drinksmixer.com/drink7044.html" + "url": "https://www.drinksmixer.com/drink7044.html" }, { "directions": "Pour ricard over ice cubes in an aperitif glass. Add grenadine, fill with water, and stir.", @@ -64906,7 +64906,7 @@ "water" ], "title": "Tomate recipe", - "url": "http://www.drinksmixer.com/drink7045.html" + "url": "https://www.drinksmixer.com/drink7045.html" }, { "directions": "Slowly pour ingredients pousse-cafe (layered) in order; rum, liqueur, syrup into a champagne flute filled with crushed ice.", @@ -64916,7 +64916,7 @@ "grenadine syrup" ], "title": "Tricontinental recipe", - "url": "http://www.drinksmixer.com/drink7046.html" + "url": "https://www.drinksmixer.com/drink7046.html" }, { "directions": "Shake all ingredients (except champagne) well over ice cubes in a shaker. Strain into a champagne flute, carefully fill with champagne, and serve.", @@ -64928,7 +64928,7 @@ "Champagne" ], "title": "Tropical Champagne recipe", - "url": "http://www.drinksmixer.com/drink7047.html" + "url": "https://www.drinksmixer.com/drink7047.html" }, { "directions": "Stir well over ice cubes in a mixing glass. Strain into a chilled cocktail glass, and serve.", @@ -64938,7 +64938,7 @@ "orange bitters" ], "title": "Vermouth Cocktail recipe", - "url": "http://www.drinksmixer.com/drink7048.html" + "url": "https://www.drinksmixer.com/drink7048.html" }, { "directions": "Pour tomato juice over ice cubes in a large highball glass. Season to taste, stir, and garnish with celery.", @@ -64952,7 +64952,7 @@ "celery" ], "title": "Virgin Mary recipe", - "url": "http://www.drinksmixer.com/drink7049.html" + "url": "https://www.drinksmixer.com/drink7049.html" }, { "directions": "Shake well over ice cubes in a shaker, and strain into a whiskey sour glass. Garnish with a stemmed cherry, and serve.", @@ -64962,7 +64962,7 @@ "lemon juice" ], "title": "Vodka Sour recipe", - "url": "http://www.drinksmixer.com/drink7050.html" + "url": "https://www.drinksmixer.com/drink7050.html" }, { "directions": "Stir liquors over crushed ice in a small highball glass. Fill with tonic water, and serve.", @@ -64972,7 +64972,7 @@ "tonic water" ], "title": "Volga Volga recipe", - "url": "http://www.drinksmixer.com/drink7051.html" + "url": "https://www.drinksmixer.com/drink7051.html" }, { "directions": "Shake well over ice cubes in a shaker, strain into a chilled cocktail glass, and serve.", @@ -64983,7 +64983,7 @@ "orange juice" ], "title": "Wedding Bells Cocktail recipe", - "url": "http://www.drinksmixer.com/drink7052.html" + "url": "https://www.drinksmixer.com/drink7052.html" }, { "directions": "Shake over crushed ice in a shaker, and strain into a collins glass. Fill with crushed ice, sprinkle with nutmeg, and serve.", @@ -64996,7 +64996,7 @@ "nutmeg" ], "title": "West Indian Punch recipe", - "url": "http://www.drinksmixer.com/drink7053.html" + "url": "https://www.drinksmixer.com/drink7053.html" }, { "directions": "Heat in a heat-resistant glass, and fill with hot water. Add a lemon slice speared with a clove, and serve.", @@ -65009,7 +65009,7 @@ "water" ], "title": "Whiskey Hot Toddy recipe", - "url": "http://www.drinksmixer.com/drink7054.html" + "url": "https://www.drinksmixer.com/drink7054.html" }, { "directions": "Shake well over ice cubes in a shaker, and strain into a large highball glass over crushed ice.", @@ -65020,7 +65020,7 @@ "cream" ], "title": "White Cloud recipe", - "url": "http://www.drinksmixer.com/drink7055.html" + "url": "https://www.drinksmixer.com/drink7055.html" }, { "directions": "Shake over crushed ice in a shaker, and strain into a collins glass half-filled with crushed ice. Garnish with a mint sprig and a stemmed cherry, and serve.", @@ -65032,7 +65032,7 @@ "lime juice" ], "title": "Yellow Bird #2 recipe", - "url": "http://www.drinksmixer.com/drink7056.html" + "url": "https://www.drinksmixer.com/drink7056.html" }, { "directions": "Shake well over ice cubes in a shaker, and strain into a chilled cocktail glass. Serve.", @@ -65044,7 +65044,7 @@ "lemon juice" ], "title": "Yellow Boxer recipe", - "url": "http://www.drinksmixer.com/drink7057.html" + "url": "https://www.drinksmixer.com/drink7057.html" }, { "directions": "Shake well over ice cubes in a shaker, and strain into a large highball glass over crushed ice. Serve.", @@ -65055,7 +65055,7 @@ "pineapple juice" ], "title": "Yellow Fever recipe", - "url": "http://www.drinksmixer.com/drink7058.html" + "url": "https://www.drinksmixer.com/drink7058.html" }, { "directions": "Shake well over crushed ice in a shaker, and strain into a large highball glass over crushed ice. Serve.", @@ -65067,7 +65067,7 @@ "lime juice" ], "title": "Zico recipe", - "url": "http://www.drinksmixer.com/drink7059.html" + "url": "https://www.drinksmixer.com/drink7059.html" }, { "directions": "Stir and strain into a cocktail glass. Add a speared cherry, and a twist of orange peel.", @@ -65079,7 +65079,7 @@ "grenadine syrup" ], "title": "RAC Cocktail recipe", - "url": "http://www.drinksmixer.com/drink7060.html" + "url": "https://www.drinksmixer.com/drink7060.html" }, { "directions": "Shake and strain into a cocktail glass. Garnish with a lime wedge, and serve.", @@ -65092,7 +65092,7 @@ "passion-fruit syrup" ], "title": "Randy Andy recipe", - "url": "http://www.drinksmixer.com/drink7061.html" + "url": "https://www.drinksmixer.com/drink7061.html" }, { "directions": "Pour into an old-fashioned glass half-filled with broken ice. Add a speared cherry, and serve.", @@ -65103,7 +65103,7 @@ "lemonade" ], "title": "Rare Beef recipe", - "url": "http://www.drinksmixer.com/drink7062.html" + "url": "https://www.drinksmixer.com/drink7062.html" }, { "directions": "Pour into an old-fashioned glass filled with broken ice, and serve.", @@ -65113,7 +65113,7 @@ "Campari\u00ae bitters" ], "title": "Rebel Rouser recipe", - "url": "http://www.drinksmixer.com/drink7063.html" + "url": "https://www.drinksmixer.com/drink7063.html" }, { "directions": "Shake and strain into an old-fashioned glass three-quarters filled with broken ice. Garnish with a cherry, and serve.", @@ -65125,7 +65125,7 @@ "caster sugar" ], "title": "Red Finnish recipe", - "url": "http://www.drinksmixer.com/drink7064.html" + "url": "https://www.drinksmixer.com/drink7064.html" }, { "directions": "Stir tequila and gin, and strain into a champagne saucer filled with crushed ice. Sprinkle galliano on top. Garnish with a slice of orange and a cherry, and serve.", @@ -65135,7 +65135,7 @@ "Galliano\u00ae herbal liqueur" ], "title": "Ridley recipe", - "url": "http://www.drinksmixer.com/drink7065.html" + "url": "https://www.drinksmixer.com/drink7065.html" }, { "directions": "Shake and strain into an old-fashioned glass filled with crushed ice. Garnish with fruit, add straws, and serve.", @@ -65147,7 +65147,7 @@ "lemon juice" ], "title": "Roman Candle recipe", - "url": "http://www.drinksmixer.com/drink7066.html" + "url": "https://www.drinksmixer.com/drink7066.html" }, { "directions": "Stir and strain into a cocktail glass. Add a twist of lemon, and serve.", @@ -65157,7 +65157,7 @@ "lemon" ], "title": "Rosalind Russell recipe", - "url": "http://www.drinksmixer.com/drink7067.html" + "url": "https://www.drinksmixer.com/drink7067.html" }, { "directions": "Shake all ingredients (except 7-up) and strain into a cocktail glass. Fill with 7-up, and serve.", @@ -65169,7 +65169,7 @@ "7-Up\u00ae soda" ], "title": "Round-Up recipe", - "url": "http://www.drinksmixer.com/drink7068.html" + "url": "https://www.drinksmixer.com/drink7068.html" }, { "directions": "Shake, strain into an old-fashioned glass filled with broken ice, and serve.", @@ -65179,7 +65179,7 @@ "passion-fruit juice" ], "title": "Royal Passion recipe", - "url": "http://www.drinksmixer.com/drink7069.html" + "url": "https://www.drinksmixer.com/drink7069.html" }, { "directions": "Squeeze lime juice directly in a mixing glass and add spent shell. Add remaining ingredients, stir and strain into an old-fashioned glass filled with broken ice.", @@ -65191,7 +65191,7 @@ "Peychaud\u00ae bitters" ], "title": "Rum Ramsay recipe", - "url": "http://www.drinksmixer.com/drink7070.html" + "url": "https://www.drinksmixer.com/drink7070.html" }, { "directions": "Shake and strain into a wine goblet filled with broken ice. Add ginger ale, and garnish with a slice of lemon and a blue cherry. Serve with a short straw.", @@ -65203,7 +65203,7 @@ "ginger ale" ], "title": "Sailing By recipe", - "url": "http://www.drinksmixer.com/drink7071.html" + "url": "https://www.drinksmixer.com/drink7071.html" }, { "directions": "Shake and strain into an old-fashioned glass filled with broken ice. Add a speared cherry, and serve.", @@ -65215,7 +65215,7 @@ "sugar syrup" ], "title": "Santiago recipe", - "url": "http://www.drinksmixer.com/drink7072.html" + "url": "https://www.drinksmixer.com/drink7072.html" }, { "directions": "Pour ingredients into an old-fashioned glass filled with broken ice, and serve.", @@ -65225,7 +65225,7 @@ "soda water" ], "title": "Saronno Rose recipe", - "url": "http://www.drinksmixer.com/drink7073.html" + "url": "https://www.drinksmixer.com/drink7073.html" }, { "directions": "Shake, strain into a cocktail glass, and garnish with a slice of orange.", @@ -65238,7 +65238,7 @@ "orange juice" ], "title": "Satan's Whiskers recipe", - "url": "http://www.drinksmixer.com/drink7074.html" + "url": "https://www.drinksmixer.com/drink7074.html" }, { "directions": "Shake and strain into an old-fashioned glass filled with broken ice. Add a speared cherry, and serve.", @@ -65249,7 +65249,7 @@ "amaretto almond liqueur" ], "title": "She's Paying recipe", - "url": "http://www.drinksmixer.com/drink7075.html" + "url": "https://www.drinksmixer.com/drink7075.html" }, { "directions": "Shake with a glassful of broken ice and pour unstrained into an old-fashioned glass. Garnish with a slice of orange and a cherry, and serve.", @@ -65258,7 +65258,7 @@ "orange juice" ], "title": "Shindig recipe", - "url": "http://www.drinksmixer.com/drink7076.html" + "url": "https://www.drinksmixer.com/drink7076.html" }, { "directions": "Pour ingredients into a shot glass over one small lump of ice, and serve.", @@ -65267,7 +65267,7 @@ "creme de cassis" ], "title": "Ship's Cat recipe", - "url": "http://www.drinksmixer.com/drink7077.html" + "url": "https://www.drinksmixer.com/drink7077.html" }, { "directions": "Pour ingredients into an ice-filled old-fashioned glass, and serve.", @@ -65280,7 +65280,7 @@ "orange juice" ], "title": "Slaber recipe", - "url": "http://www.drinksmixer.com/drink7078.html" + "url": "https://www.drinksmixer.com/drink7078.html" }, { "directions": "Shake ingredients with a glassful of broken ice, and pour unstrained into an old-fashioned glass.", @@ -65291,7 +65291,7 @@ "grenadine syrup" ], "title": "Slippery Dickel recipe", - "url": "http://www.drinksmixer.com/drink7079.html" + "url": "https://www.drinksmixer.com/drink7079.html" }, { "directions": "Pour into an old-fashioned glass three-quarters filled with broken ice, and serve.", @@ -65302,7 +65302,7 @@ "cola" ], "title": "Slow Finnish recipe", - "url": "http://www.drinksmixer.com/drink7080.html" + "url": "https://www.drinksmixer.com/drink7080.html" }, { "directions": "Pour ingredients into a wine goblet three-quarters filled with broken ice. Garnish with a slice of orange and a cherry, add a straw, and serve.", @@ -65314,7 +65314,7 @@ "cherryade" ], "title": "Solitaire recipe", - "url": "http://www.drinksmixer.com/drink7081.html" + "url": "https://www.drinksmixer.com/drink7081.html" }, { "directions": "Shake with a glassful of broken ice and pour unstrained into an old-fashioned glass. Add a slice of lemon, and serve.", @@ -65325,7 +65325,7 @@ "Rum Tree\u00ae liqueur" ], "title": "Sore Throat recipe", - "url": "http://www.drinksmixer.com/drink7082.html" + "url": "https://www.drinksmixer.com/drink7082.html" }, { "directions": "Shake with a glassful of broken ice and pour unstrained into an old-fashioned glass.", @@ -65336,7 +65336,7 @@ "pineapple syrup" ], "title": "Southern Delta recipe", - "url": "http://www.drinksmixer.com/drink7083.html" + "url": "https://www.drinksmixer.com/drink7083.html" }, { "directions": "Shake, strain into an old-fashioned glass three-quarters filled with broken ice, and serve.", @@ -65346,7 +65346,7 @@ "lemon juice" ], "title": "Space recipe", - "url": "http://www.drinksmixer.com/drink7084.html" + "url": "https://www.drinksmixer.com/drink7084.html" }, { "directions": "Shake with a glassful of broken ice and pour unstrained into an old-fashioned glass. Add a speared cherry, and serve.", @@ -65356,7 +65356,7 @@ "cherry vodka" ], "title": "Spanish Guitar recipe", - "url": "http://www.drinksmixer.com/drink7085.html" + "url": "https://www.drinksmixer.com/drink7085.html" }, { "directions": "Shake briefly with a glassful of crushed ice in a double-cocktail glass, add a twist of lemon, and serve.", @@ -65368,7 +65368,7 @@ "white rum" ], "title": "Stem-Winder recipe", - "url": "http://www.drinksmixer.com/drink7086.html" + "url": "https://www.drinksmixer.com/drink7086.html" }, { "directions": "Pour into an old-fashioned glass half-filled with broken ice. Garnish with a cherry, and serve.", @@ -65379,7 +65379,7 @@ "cherryade" ], "title": "Strangelove recipe", - "url": "http://www.drinksmixer.com/drink7087.html" + "url": "https://www.drinksmixer.com/drink7087.html" }, { "directions": "Pour into a wine goblet filled with broken ice. Garnish with a slice of lemon and a cherry, add a short straw, and serve.", @@ -65391,7 +65391,7 @@ "soda water" ], "title": "Stratocaster recipe", - "url": "http://www.drinksmixer.com/drink7088.html" + "url": "https://www.drinksmixer.com/drink7088.html" }, { "directions": "Shake all ingredients (except sparkling apple) and strain into an old-fashioned glass filled with broken ice. Add sparkling apple juice, a slice of lemon, and serve.", @@ -65402,7 +65402,7 @@ "sparkling apple juice" ], "title": "Strike's On recipe", - "url": "http://www.drinksmixer.com/drink7089.html" + "url": "https://www.drinksmixer.com/drink7089.html" }, { "directions": "Shake with a glassful of broken ice and pour unstrained into an old-fashioned glass. Add a speared cherry, and serve.", @@ -65414,7 +65414,7 @@ "grenadine syrup" ], "title": "Superman recipe", - "url": "http://www.drinksmixer.com/drink7090.html" + "url": "https://www.drinksmixer.com/drink7090.html" }, { "directions": "Shake with a glassful of broken ice and pour unstrained into an old-fashioned glass. Garnish with a slice of orange and a blue cherry, and serve.", @@ -65426,7 +65426,7 @@ "lime juice" ], "title": "Swedish Blue recipe", - "url": "http://www.drinksmixer.com/drink7091.html" + "url": "https://www.drinksmixer.com/drink7091.html" }, { "directions": "Shake, strain into an old-fashioned glass filled with broken ice, and serve.", @@ -65437,7 +65437,7 @@ "watermelon schnapps" ], "title": "Tailor Made recipe", - "url": "http://www.drinksmixer.com/drink7092.html" + "url": "https://www.drinksmixer.com/drink7092.html" }, { "directions": "Shake and strain into a champagne saucer filled with crushed ice. Garnish with a slice of orange and a cherry, add a short straw, and serve.", @@ -65450,7 +65450,7 @@ "grenadine syrup" ], "title": "Tangerine Cocktail recipe", - "url": "http://www.drinksmixer.com/drink7093.html" + "url": "https://www.drinksmixer.com/drink7093.html" }, { "directions": "Shake, strain into a liqueur or cordial glass, and garnish with a speared cherry. Serve.", @@ -65462,7 +65462,7 @@ "lemon juice" ], "title": "Tempo Setter recipe", - "url": "http://www.drinksmixer.com/drink7094.html" + "url": "https://www.drinksmixer.com/drink7094.html" }, { "directions": "Shake and strain into a cocktail glass. Add a squeeze of a lime peel strip, and discard. Garnish with slices of orange and lime, and serve.", @@ -65475,7 +65475,7 @@ "sugar syrup" ], "title": "Ten Pin Gin recipe", - "url": "http://www.drinksmixer.com/drink7095.html" + "url": "https://www.drinksmixer.com/drink7095.html" }, { "directions": "Shake and strain into an old-fashioned glass three-quarters filled with broken ice. Garnish with fruit, add a straw, and serve.", @@ -65488,7 +65488,7 @@ "lime juice" ], "title": "Tequila Exotica recipe", - "url": "http://www.drinksmixer.com/drink7096.html" + "url": "https://www.drinksmixer.com/drink7096.html" }, { "directions": "Hold lime between finger and thumb, and place salt at base of thumb on same hand. Quickly lick the salt, down the tequila, and bite the lime.", @@ -65498,7 +65498,7 @@ "lime" ], "title": "Tequila Shot recipe", - "url": "http://www.drinksmixer.com/drink7097.html" + "url": "https://www.drinksmixer.com/drink7097.html" }, { "directions": "Blend briefly with a glassful of crushed ice in a cocktail glass. Add a twist of lime, and serve.", @@ -65509,7 +65509,7 @@ "guava syrup" ], "title": "Tobago recipe", - "url": "http://www.drinksmixer.com/drink7098.html" + "url": "https://www.drinksmixer.com/drink7098.html" }, { "directions": "Shake with a glassful of broken ice and pour unstrained into an old-fashioned glass.", @@ -65519,7 +65519,7 @@ "passion-fruit syrup" ], "title": "Tonight's the Night recipe", - "url": "http://www.drinksmixer.com/drink7099.html" + "url": "https://www.drinksmixer.com/drink7099.html" }, { "directions": "Shake and strain into a champagne saucer filled with crushed ice. Add a slice of orange, and serve.", @@ -65532,7 +65532,7 @@ "lemon juice" ], "title": "Touch of Zam recipe", - "url": "http://www.drinksmixer.com/drink7100.html" + "url": "https://www.drinksmixer.com/drink7100.html" }, { "directions": "Shake and strain into a double-cocktail glass filled with crushed ice. Add short straws, and serve.", @@ -65543,7 +65543,7 @@ "pineapple juice" ], "title": "Tree Shaker recipe", - "url": "http://www.drinksmixer.com/drink7101.html" + "url": "https://www.drinksmixer.com/drink7101.html" }, { "directions": "Shake and strain gin and orange juice into a double-cocktail glass filled with crushed ice. Sprinkle campari bitters on top, add a short straw, and serve.", @@ -65553,7 +65553,7 @@ "orange juice" ], "title": "Tropical Dawn recipe", - "url": "http://www.drinksmixer.com/drink7102.html" + "url": "https://www.drinksmixer.com/drink7102.html" }, { "directions": "Pour into an old-fashioned glass half-filled with broken ice, and serve.", @@ -65563,7 +65563,7 @@ "ginger ale" ], "title": "Tuna on Rye recipe", - "url": "http://www.drinksmixer.com/drink7103.html" + "url": "https://www.drinksmixer.com/drink7103.html" }, { "directions": "Stir and strain into an old-fashioned glass three-quarters filled with broken ice. Add a slice of orange, and serve.", @@ -65573,7 +65573,7 @@ "Amaretto Di Saronno\u00ae liqueur" ], "title": "Turkey Feather recipe", - "url": "http://www.drinksmixer.com/drink7104.html" + "url": "https://www.drinksmixer.com/drink7104.html" }, { "directions": "Shake, strain into a cocktail glass, and serve.", @@ -65583,7 +65583,7 @@ "raspberry liqueur" ], "title": "Urbinos recipe", - "url": "http://www.drinksmixer.com/drink7105.html" + "url": "https://www.drinksmixer.com/drink7105.html" }, { "directions": "Pour into an old-fashioned glass filled with broken ice. Add a twist of lemon, and serve.", @@ -65594,7 +65594,7 @@ "Angostura\u00ae bitters" ], "title": "Vanderbilt recipe", - "url": "http://www.drinksmixer.com/drink7106.html" + "url": "https://www.drinksmixer.com/drink7106.html" }, { "directions": "Shake all ingredients (except soda water) and strain into an old-fashioned glass filled with broken ice. Add soda, add straws, garnish with a slice of starfruit, and serve.", @@ -65606,7 +65606,7 @@ "soda water" ], "title": "Venus Rum recipe", - "url": "http://www.drinksmixer.com/drink7107.html" + "url": "https://www.drinksmixer.com/drink7107.html" }, { "directions": "Stir, and strain into a cocktail glass. Garnish with a slice of peach and a mint sprig, and serve.", @@ -65618,7 +65618,7 @@ "Bols\u00ae Blue Curacao liqueur" ], "title": "Verdi recipe", - "url": "http://www.drinksmixer.com/drink7108.html" + "url": "https://www.drinksmixer.com/drink7108.html" }, { "directions": "Pour into an old-fashioned glass three-quarters filled with broken ice. Garnish with a speared cherry, and serve.", @@ -65630,7 +65630,7 @@ "lemonade" ], "title": "Viking Warmer recipe", - "url": "http://www.drinksmixer.com/drink7109.html" + "url": "https://www.drinksmixer.com/drink7109.html" }, { "directions": "Shake well, strain into a cocktail glass, and serve.", @@ -65642,7 +65642,7 @@ "egg" ], "title": "Visitor's Treat recipe", - "url": "http://www.drinksmixer.com/drink7110.html" + "url": "https://www.drinksmixer.com/drink7110.html" }, { "directions": "Shake, strain into a cordial or liqueur glass, and serve.", @@ -65653,7 +65653,7 @@ "Bailey's\u00ae Irish cream" ], "title": "War Cloud recipe", - "url": "http://www.drinksmixer.com/drink7111.html" + "url": "https://www.drinksmixer.com/drink7111.html" }, { "directions": "Shake, strain into a cocktail glass, and serve.", @@ -65664,7 +65664,7 @@ "pineapple juice" ], "title": "Waste of Time Cocktail recipe", - "url": "http://www.drinksmixer.com/drink7112.html" + "url": "https://www.drinksmixer.com/drink7112.html" }, { "directions": "Gently float bailey's irish cream on top of frangelico in a shot glass. Shoot.", @@ -65673,7 +65673,7 @@ "Bailey's\u00ae Irish cream" ], "title": "White Flag recipe", - "url": "http://www.drinksmixer.com/drink7113.html" + "url": "https://www.drinksmixer.com/drink7113.html" }, { "directions": "Shake and strain into a frosted cocktail glass. Garnish with a slice of pineapple and a cherry, and serve.", @@ -65685,7 +65685,7 @@ "pineapple juice" ], "title": "White Sands recipe", - "url": "http://www.drinksmixer.com/drink7114.html" + "url": "https://www.drinksmixer.com/drink7114.html" }, { "directions": "Pour into a frosted wine glass, and serve.", @@ -65695,7 +65695,7 @@ "ginger ale" ], "title": "Wicked Willy recipe", - "url": "http://www.drinksmixer.com/drink7115.html" + "url": "https://www.drinksmixer.com/drink7115.html" }, { "directions": "Serve in an old-fashioned glass three-quarters filled with broken ice.", @@ -65706,7 +65706,7 @@ "soda water" ], "title": "Wild Irish Rose recipe", - "url": "http://www.drinksmixer.com/drink7116.html" + "url": "https://www.drinksmixer.com/drink7116.html" }, { "directions": "Shake and strain into a champagne saucer filled with crushed ice. Garnish with an orange wedge and serve.", @@ -65716,7 +65716,7 @@ "mandarin juice" ], "title": "Wild Island recipe", - "url": "http://www.drinksmixer.com/drink7117.html" + "url": "https://www.drinksmixer.com/drink7117.html" }, { "directions": "Shake, strain into a glass filled with crushed ice, and serve.", @@ -65726,7 +65726,7 @@ "sweet sherry" ], "title": "Winter Garden recipe", - "url": "http://www.drinksmixer.com/drink7118.html" + "url": "https://www.drinksmixer.com/drink7118.html" }, { "directions": "Pour into an old-fashioned glass three-quarters filled with broken ice, and serve.", @@ -65737,7 +65737,7 @@ "lemonade" ], "title": "Witch Hunt recipe", - "url": "http://www.drinksmixer.com/drink7119.html" + "url": "https://www.drinksmixer.com/drink7119.html" }, { "directions": "Shake, strain into an old-fashioned glass three-quarters filled with broken ice, and serve.", @@ -65750,7 +65750,7 @@ "orgeat syrup" ], "title": "Worried Monk recipe", - "url": "http://www.drinksmixer.com/drink7120.html" + "url": "https://www.drinksmixer.com/drink7120.html" }, { "directions": "Shake and strain into a cocktail glass. Garnish with slices of lime and lemon, and serve.", @@ -65762,7 +65762,7 @@ "egg" ], "title": "Yeoman's Passion recipe", - "url": "http://www.drinksmixer.com/drink7121.html" + "url": "https://www.drinksmixer.com/drink7121.html" }, { "directions": "Shake and strain into a double-cocktail glass filled with crushed ice. Garnish with a slice of lime, and serve.", @@ -65774,7 +65774,7 @@ "lime juice" ], "title": "Yum-Yum recipe", - "url": "http://www.drinksmixer.com/drink7122.html" + "url": "https://www.drinksmixer.com/drink7122.html" }, { "directions": "Rim an old-fashioned glass with sugar and cinnamon. Add hot cider and rum, and serve.", @@ -65783,7 +65783,7 @@ "apple cider" ], "title": "Cinnamon Toast recipe", - "url": "http://www.drinksmixer.com/drink7123.html" + "url": "https://www.drinksmixer.com/drink7123.html" }, { "directions": "Pour ingredients over ice cubes in a tall wine glass, and serve.", @@ -65794,7 +65794,7 @@ "ginger ale" ], "title": "Sienna recipe", - "url": "http://www.drinksmixer.com/drink7124.html" + "url": "https://www.drinksmixer.com/drink7124.html" }, { "directions": "Combine all ingredients over ice in a highball glass. Stir, garnish with a lemon wedge, and serve.", @@ -65804,7 +65804,7 @@ "lemon juice" ], "title": "Tropical Spiced Tea recipe", - "url": "http://www.drinksmixer.com/drink7125.html" + "url": "https://www.drinksmixer.com/drink7125.html" }, { "directions": "Combine ingredients in a small highball glass filled with ice cubes. Garnish with a slice of lime, and serve.", @@ -65815,7 +65815,7 @@ "cranberry juice" ], "title": "Cranberry Kiss recipe", - "url": "http://www.drinksmixer.com/drink7126.html" + "url": "https://www.drinksmixer.com/drink7126.html" }, { "directions": "Blend all ingredients in a blender with a scoop of crushed ice, and pour into a highball glass.", @@ -65825,7 +65825,7 @@ "orange juice" ], "title": "Key West Song recipe", - "url": "http://www.drinksmixer.com/drink7127.html" + "url": "https://www.drinksmixer.com/drink7127.html" }, { "directions": "Combine ingredients in a highball glass over crushed ice. Stir well, and serve.", @@ -65835,7 +65835,7 @@ "cranberry juice" ], "title": "Parrot Bay Breeze recipe", - "url": "http://www.drinksmixer.com/drink7128.html" + "url": "https://www.drinksmixer.com/drink7128.html" }, { "directions": "Combine in a tall glass over ice, and stir well.", @@ -65844,7 +65844,7 @@ "pineapple juice" ], "title": "Parrot Bay Pinada recipe", - "url": "http://www.drinksmixer.com/drink7129.html" + "url": "https://www.drinksmixer.com/drink7129.html" }, { "directions": "Combine in a tall glass over ice, stir well, and serve.", @@ -65854,7 +65854,7 @@ "cranberry juice" ], "title": "Parrot Bay Sunset recipe", - "url": "http://www.drinksmixer.com/drink7130.html" + "url": "https://www.drinksmixer.com/drink7130.html" }, { "directions": "Combine all ingredients in a blender until smooth. Pour into a pina colada glass and serve.", @@ -65866,7 +65866,7 @@ "ice" ], "title": "Strawberry Tropicolada recipe", - "url": "http://www.drinksmixer.com/drink7131.html" + "url": "https://www.drinksmixer.com/drink7131.html" }, { "directions": "Shake, strain into an ice-filled old-fashioned glass, and serve.", @@ -65877,7 +65877,7 @@ "double cream" ], "title": "Ready Steady recipe", - "url": "http://www.drinksmixer.com/drink7132.html" + "url": "https://www.drinksmixer.com/drink7132.html" }, { "directions": "Shake, strain into a cordial or liqueur glass, and serve.", @@ -65887,7 +65887,7 @@ "double cream" ], "title": "Reve Satin recipe", - "url": "http://www.drinksmixer.com/drink7133.html" + "url": "https://www.drinksmixer.com/drink7133.html" }, { "directions": "Shake brandy, creme de cacao, punt e mes and kahlua together in a shaker, and strain into a champagne flute. Float cream on top, sprinkle with grated chocolate, and serve.", @@ -65899,7 +65899,7 @@ "whipping cream" ], "title": "Riviera recipe", - "url": "http://www.drinksmixer.com/drink7134.html" + "url": "https://www.drinksmixer.com/drink7134.html" }, { "directions": "Shake, strain into an old-fashioned glass filled with broken ice, and serve.", @@ -65910,7 +65910,7 @@ "whipping cream" ], "title": "Roadster recipe", - "url": "http://www.drinksmixer.com/drink7135.html" + "url": "https://www.drinksmixer.com/drink7135.html" }, { "directions": "Shake and strain all but dark rum into a brandy snifter filled with broken ice. Float the dark rum on top, sprinkle with nutmeg, and serve.", @@ -65923,7 +65923,7 @@ "nutmeg" ], "title": "Russian Satellite recipe", - "url": "http://www.drinksmixer.com/drink7136.html" + "url": "https://www.drinksmixer.com/drink7136.html" }, { "directions": "Blend briefly with half a glassful of crushed ice. Garnish with a slice of peach and a cherry, and serve.", @@ -65933,7 +65933,7 @@ "vanilla ice cream" ], "title": "Saronno Peach Fuzz recipe", - "url": "http://www.drinksmixer.com/drink7137.html" + "url": "https://www.drinksmixer.com/drink7137.html" }, { "directions": "Shake well, strain into an old-fashioned glass half-filled with broken ice, and serve.", @@ -65945,7 +65945,7 @@ "egg" ], "title": "Seven Dials Cocktail recipe", - "url": "http://www.drinksmixer.com/drink7138.html" + "url": "https://www.drinksmixer.com/drink7138.html" }, { "directions": "Shake, strain into a cordial or liqueur glass, and serve.", @@ -65957,7 +65957,7 @@ "lime juice" ], "title": "Slick Rick recipe", - "url": "http://www.drinksmixer.com/drink7139.html" + "url": "https://www.drinksmixer.com/drink7139.html" }, { "directions": "Shake, strain into a cordial or liqueur glass, and serve.", @@ -65968,7 +65968,7 @@ "grenadine syrup" ], "title": "Soft Love recipe", - "url": "http://www.drinksmixer.com/drink7140.html" + "url": "https://www.drinksmixer.com/drink7140.html" }, { "directions": "Shake and strain into a cocktail glass. Garnish with a slice of peach speared with a cherry, and serve.", @@ -65979,7 +65979,7 @@ "Angostura\u00ae bitters" ], "title": "Southern Peach recipe", - "url": "http://www.drinksmixer.com/drink7141.html" + "url": "https://www.drinksmixer.com/drink7141.html" }, { "directions": "Make pousse-cafe (layered) in a cordial or liqueur glass, and serve.", @@ -65989,7 +65989,7 @@ "Blue Curacao liqueur" ], "title": "Stars and Stripes recipe", - "url": "http://www.drinksmixer.com/drink7142.html" + "url": "https://www.drinksmixer.com/drink7142.html" }, { "directions": "Shake and strain into an old-fashioned glass three-quarters filled with broken ice. Garnish with two halves of a strawberry placed back to back. Add a short straw, and serve.", @@ -66000,7 +66000,7 @@ "double cream" ], "title": "Strawberry Dream recipe", - "url": "http://www.drinksmixer.com/drink7143.html" + "url": "https://www.drinksmixer.com/drink7143.html" }, { "directions": "Shake and strain into a champagne saucer. Garnish with a sugar-dipped strawberry, and serve.", @@ -66013,7 +66013,7 @@ "whipping cream" ], "title": "Strawberry Patch recipe", - "url": "http://www.drinksmixer.com/drink7144.html" + "url": "https://www.drinksmixer.com/drink7144.html" }, { "directions": "Shake and strain into a cocktail glass. Garnish with a slice of orange, and serve.", @@ -66024,7 +66024,7 @@ "orange juice" ], "title": "Strega Sun Witch recipe", - "url": "http://www.drinksmixer.com/drink7145.html" + "url": "https://www.drinksmixer.com/drink7145.html" }, { "directions": "Shake all ingredients (except curacao) and strain into a cocktail glass. Add curacao, garnish with a cherry, and serve unstirred.", @@ -66036,7 +66036,7 @@ "Blue Curacao liqueur" ], "title": "Tete d'Armee recipe", - "url": "http://www.drinksmixer.com/drink7146.html" + "url": "https://www.drinksmixer.com/drink7146.html" }, { "directions": "Blend briefly with a tablespoon of crushed ice in a champagne saucer, and serve.", @@ -66047,7 +66047,7 @@ "vanilla ice cream" ], "title": "Urban Jungle recipe", - "url": "http://www.drinksmixer.com/drink7147.html" + "url": "https://www.drinksmixer.com/drink7147.html" }, { "directions": "Shake, strain into a cocktail glass, and sprinkle with grated chocolate.", @@ -66058,7 +66058,7 @@ "double cream" ], "title": "White Christmas recipe", - "url": "http://www.drinksmixer.com/drink7148.html" + "url": "https://www.drinksmixer.com/drink7148.html" }, { "directions": "Shake, strain into a champagne saucer, and serve.", @@ -66070,7 +66070,7 @@ "double cream" ], "title": "Wimbledon Cup recipe", - "url": "http://www.drinksmixer.com/drink7149.html" + "url": "https://www.drinksmixer.com/drink7149.html" }, { "directions": "Blend briefly with a glassful of crushed ice, and strain into a double-cocktail glass. Sprinkle with grated chocolate, and serve.", @@ -66082,7 +66082,7 @@ "double cream" ], "title": "Wobbly Knee recipe", - "url": "http://www.drinksmixer.com/drink7150.html" + "url": "https://www.drinksmixer.com/drink7150.html" }, { "directions": "Shake, strain into a champagne flute, and serve.", @@ -66093,7 +66093,7 @@ "whipping cream" ], "title": "Wolf's Lair recipe", - "url": "http://www.drinksmixer.com/drink7151.html" + "url": "https://www.drinksmixer.com/drink7151.html" }, { "directions": "Shake briefly with a glassful of crushed ice in a double-cocktail glass. Garnish with a slice of orange and a cherry, add short straws, and serve.", @@ -66104,7 +66104,7 @@ "whipping cream" ], "title": "Xaviera recipe", - "url": "http://www.drinksmixer.com/drink7152.html" + "url": "https://www.drinksmixer.com/drink7152.html" }, { "directions": "Shake all ingredients (except lemonade) and strain into an ice-filled collins glass. Add lemonade, and serve.", @@ -66116,7 +66116,7 @@ "lemonade" ], "title": "Rebel Raider recipe", - "url": "http://www.drinksmixer.com/drink7153.html" + "url": "https://www.drinksmixer.com/drink7153.html" }, { "directions": "Shake all ingredients (except 7-up) and strain into an ice-filled pina colada glass. Add 7-up, garnish with fruit slices, add straws and serve.", @@ -66128,7 +66128,7 @@ "7-Up\u00ae soda" ], "title": "Royal Turkey recipe", - "url": "http://www.drinksmixer.com/drink7154.html" + "url": "https://www.drinksmixer.com/drink7154.html" }, { "directions": "Pour ingredients into an ice-filled highball glass, and serve.", @@ -66140,7 +66140,7 @@ "7-Up\u00ae soda" ], "title": "Sixteen and a Half recipe", - "url": "http://www.drinksmixer.com/drink7155.html" + "url": "https://www.drinksmixer.com/drink7155.html" }, { "directions": "Shake and strain into an ice-filled collins glass. Garnish with a sprig of mint, slices of lime, lemon, orange and a cherry speared with an umbrella. Add straws, and serve.", @@ -66155,7 +66155,7 @@ "Angostura\u00ae bitters" ], "title": "Sydney Sling recipe", - "url": "http://www.drinksmixer.com/drink7156.html" + "url": "https://www.drinksmixer.com/drink7156.html" }, { "directions": "Shake and strain into an ice-filled collins glass. Garnish with a cherry and slice of orange, add a twist of lemon, add straws, and serve.", @@ -66168,7 +66168,7 @@ "pineapple juice" ], "title": "Western Sling recipe", - "url": "http://www.drinksmixer.com/drink7157.html" + "url": "https://www.drinksmixer.com/drink7157.html" }, { "directions": "Shake with three-quarters of a glassful of broken ice and pour unstrained into a wine goblet. Garnish with a slice of fruit, add straws, and serve.", @@ -66180,7 +66180,7 @@ "passion-fruit juice" ], "title": "Slippery Surprise recipe", - "url": "http://www.drinksmixer.com/drink7158.html" + "url": "https://www.drinksmixer.com/drink7158.html" }, { "directions": "Pour into an ice-filled collins glass. Add a half-slice of lemon, and serve.", @@ -66191,7 +66191,7 @@ "tonic water" ], "title": "Slow Gin and Tonic recipe", - "url": "http://www.drinksmixer.com/drink7159.html" + "url": "https://www.drinksmixer.com/drink7159.html" }, { "directions": "Pour into an ice-filled wine goblet, add a spiral of lemon, short straws, and serve.", @@ -66204,7 +66204,7 @@ "ginger ale" ], "title": "Soho Twist recipe", - "url": "http://www.drinksmixer.com/drink7160.html" + "url": "https://www.drinksmixer.com/drink7160.html" }, { "directions": "Shake all ingredients (except lemonade) and strain into an ice-filled collins glass. Add lemonade, add straws, and serve.", @@ -66217,7 +66217,7 @@ "lemonade" ], "title": "Strangeways to Oldham recipe", - "url": "http://www.drinksmixer.com/drink7161.html" + "url": "https://www.drinksmixer.com/drink7161.html" }, { "directions": "Pour into an ice-filled highball glass, add a spiral of lemon, and serve.", @@ -66228,7 +66228,7 @@ "bitter lemon soda" ], "title": "Strip and Yell recipe", - "url": "http://www.drinksmixer.com/drink7162.html" + "url": "https://www.drinksmixer.com/drink7162.html" }, { "directions": "Add tequila to a beer pilsner filled with mexican beer, and serve.", @@ -66237,7 +66237,7 @@ "Mexican beer" ], "title": "Submarino recipe", - "url": "http://www.drinksmixer.com/drink7163.html" + "url": "https://www.drinksmixer.com/drink7163.html" }, { "directions": "Shake all ingredients (except grenadine) and strain into an ice-filled highball glass. Add grenadine, and serve unstirred.", @@ -66250,7 +66250,7 @@ "grenadine syrup" ], "title": "Sunbeam recipe", - "url": "http://www.drinksmixer.com/drink7164.html" + "url": "https://www.drinksmixer.com/drink7164.html" }, { "directions": "Shake liquors and juices and strain into an ice-filled pina colada glass. Add spent shell of a lime quarter; lemonade, straws, and serve.", @@ -66264,7 +66264,7 @@ "lemonade" ], "title": "Sun City recipe", - "url": "http://www.drinksmixer.com/drink7165.html" + "url": "https://www.drinksmixer.com/drink7165.html" }, { "directions": "Shake all but the grenadine and strain into an ice-filled collins glass. Sprinkle grenadine on top. Serve unstirred with straws, a muddler, and garnished with a cherry.", @@ -66275,7 +66275,7 @@ "grenadine syrup" ], "title": "Surprise Browst recipe", - "url": "http://www.drinksmixer.com/drink7166.html" + "url": "https://www.drinksmixer.com/drink7166.html" }, { "directions": "Pour into an ice-filled wine goblet. Garnish with a seedless grape, a sprig of mint, and serve.", @@ -66288,7 +66288,7 @@ "lemonade" ], "title": "Syracuse Special recipe", - "url": "http://www.drinksmixer.com/drink7167.html" + "url": "https://www.drinksmixer.com/drink7167.html" }, { "directions": "Shake all ingredients (except grenadine) briefly with three-quarters of a glassful of broken ice. Pour unstrained into a collins glass, sprinkle grenadine on top, and serve unstirred.", @@ -66303,7 +66303,7 @@ "grenadine syrup" ], "title": "Texas Sunset recipe", - "url": "http://www.drinksmixer.com/drink7168.html" + "url": "https://www.drinksmixer.com/drink7168.html" }, { "directions": "Shake and strain into a collins glass three-quarters filled with broken ice. Garnish with three melon balls, add a straw, and serve.", @@ -66313,7 +66313,7 @@ "orange juice" ], "title": "Titanic Uplift recipe", - "url": "http://www.drinksmixer.com/drink7169.html" + "url": "https://www.drinksmixer.com/drink7169.html" }, { "directions": "Pour into an ice-filled pina colada glass. Garnish with a mint sprig and a cherry, add straws, and serve.", @@ -66325,7 +66325,7 @@ "bitter lemon soda" ], "title": "Tree House recipe", - "url": "http://www.drinksmixer.com/drink7170.html" + "url": "https://www.drinksmixer.com/drink7170.html" }, { "directions": "Shake and strain into a collins glass three-quarters filled with broken ice. Garnish with a sprig of mint and a cherry, and serve.", @@ -66338,7 +66338,7 @@ "egg" ], "title": "Trouser Rouser recipe", - "url": "http://www.drinksmixer.com/drink7171.html" + "url": "https://www.drinksmixer.com/drink7171.html" }, { "directions": "Shake with a glassful of broken ice and pour unstrained into a collins glass. Garnish with a slice of pineapple, two cherries and a sprig of mint, and serve.", @@ -66349,7 +66349,7 @@ "grapefruit juice" ], "title": "Troya recipe", - "url": "http://www.drinksmixer.com/drink7172.html" + "url": "https://www.drinksmixer.com/drink7172.html" }, { "directions": "Pour into an ice-filled highball glass, add a twist of lime, and serve.", @@ -66361,7 +66361,7 @@ "ginger ale" ], "title": "Viking's Helmet recipe", - "url": "http://www.drinksmixer.com/drink7173.html" + "url": "https://www.drinksmixer.com/drink7173.html" }, { "directions": "Pour into an ice-filled highball glass. Garnish with a cherry and a sprig of mint, and serve.", @@ -66372,7 +66372,7 @@ "cherryade" ], "title": "Wild Cherry recipe", - "url": "http://www.drinksmixer.com/drink7174.html" + "url": "https://www.drinksmixer.com/drink7174.html" }, { "directions": "Pour into an ice-filled wine goblet, and garnish with a slice of orange and a cherry.", @@ -66383,7 +66383,7 @@ "cola" ], "title": "Winning Horse recipe", - "url": "http://www.drinksmixer.com/drink7175.html" + "url": "https://www.drinksmixer.com/drink7175.html" }, { "directions": "Shake all but the curacao and lemonade very well and strain into a double-cocktail glass. Add lemonade, and garnish with a slice of orange and a cherry. Using a thin straw, place drops of blue curacao in neat rows across the frothy white surface, and serve immediately.", @@ -66397,7 +66397,7 @@ "Blue Curacao liqueur" ], "title": "Yellow Fingers recipe", - "url": "http://www.drinksmixer.com/drink7176.html" + "url": "https://www.drinksmixer.com/drink7176.html" }, { "directions": "Blend briefly all ingredient (except overproof rum) with half a glassful of crushed ice. Pour into a collins glass, float overproof rum on top, and sprinkle with grated chocolate.", @@ -66409,7 +66409,7 @@ "overproof rum" ], "title": "Rum Sunday recipe", - "url": "http://www.drinksmixer.com/drink7177.html" + "url": "https://www.drinksmixer.com/drink7177.html" }, { "directions": "Blend all ingredients (except soda) with half a glassful of crushed ice. Add the soda, and garnish with a slice of banana between two halves of a strawberry. Add straws, and serve.", @@ -66423,7 +66423,7 @@ "strawberry puree" ], "title": "Strawberry and Coffee Cream Soda recipe", - "url": "http://www.drinksmixer.com/drink7178.html" + "url": "https://www.drinksmixer.com/drink7178.html" }, { "directions": "Blend all but the kahlua briefly with half a glassful of crushed ice. Sprinkle the kahlua on top, and garnish with a sugar-dipped strawberry half. Add straws, and serve.", @@ -66435,7 +66435,7 @@ "whipping cream" ], "title": "Strawberry Cascade recipe", - "url": "http://www.drinksmixer.com/drink7179.html" + "url": "https://www.drinksmixer.com/drink7179.html" }, { "directions": "Blend briefly with half a glassful of crushed ice in a wine goblet. Garnish with a sugar-dipped strawberry half, add straws, and serve.", @@ -66447,7 +66447,7 @@ "strawberry ice cream" ], "title": "Strawberry Cream recipe", - "url": "http://www.drinksmixer.com/drink7180.html" + "url": "https://www.drinksmixer.com/drink7180.html" }, { "directions": "Shake all ingredients (except lemonade and soda) and strain into a collins glass filled with broken ice. Add lemonade and soda, garnish with a strawberry, and serve.", @@ -66460,7 +66460,7 @@ "soda water" ], "title": "Strawberry Fetish recipe", - "url": "http://www.drinksmixer.com/drink7181.html" + "url": "https://www.drinksmixer.com/drink7181.html" }, { "directions": "Blend all ingredients (except whipped cream) briefly with half a glassful of crushed ice in a pina colada glass. Top with whipped cream, garnish with a strawberry, add straws and serve.", @@ -66473,7 +66473,7 @@ "whipped cream" ], "title": "Strawberry Knockout recipe", - "url": "http://www.drinksmixer.com/drink7182.html" + "url": "https://www.drinksmixer.com/drink7182.html" }, { "directions": "Rim a wine goblet with egg white and sweet grated coconut. Shake ingredients, strain into the glass, and serve.", @@ -66486,7 +66486,7 @@ "passion-fruit juice" ], "title": "Waikiki Beach recipe", - "url": "http://www.drinksmixer.com/drink7183.html" + "url": "https://www.drinksmixer.com/drink7183.html" }, { "directions": "Blend briefly with half a glassful of crushed ice in a highball glass. Garnish with a slice of orange and a cherry, add straws, and serve.", @@ -66497,7 +66497,7 @@ "vanilla ice cream" ], "title": "Will to Live recipe", - "url": "http://www.drinksmixer.com/drink7184.html" + "url": "https://www.drinksmixer.com/drink7184.html" }, { "directions": "Pour into a champagne flute, and serve.", @@ -66509,7 +66509,7 @@ "lemon juice" ], "title": "Regatta recipe", - "url": "http://www.drinksmixer.com/drink7185.html" + "url": "https://www.drinksmixer.com/drink7185.html" }, { "directions": "Pour into a champagne saucer. Garnish with a sprig of mint and a cherry, and serve.", @@ -66520,7 +66520,7 @@ "grenadine syrup" ], "title": "Ritz Bar Fizz recipe", - "url": "http://www.drinksmixer.com/drink7186.html" + "url": "https://www.drinksmixer.com/drink7186.html" }, { "directions": "Blend all ingredients (except champagne) well in a blender and pour into a wine glass. Add champagne, and serve.", @@ -66532,7 +66532,7 @@ "raspberries" ], "title": "Rose of the Ritz recipe", - "url": "http://www.drinksmixer.com/drink7187.html" + "url": "https://www.drinksmixer.com/drink7187.html" }, { "directions": "Rim a wine glass with grenadine and caster sugar. Shake all ingredients (except champagne) and strain into the glass. Add champagne, and serve.", @@ -66543,7 +66543,7 @@ "grapefruit juice" ], "title": "Royal Silver recipe", - "url": "http://www.drinksmixer.com/drink7188.html" + "url": "https://www.drinksmixer.com/drink7188.html" }, { "directions": "Pour into a champagne saucer, and serve.", @@ -66553,7 +66553,7 @@ "cognac" ], "title": "Rue Royale recipe", - "url": "http://www.drinksmixer.com/drink7189.html" + "url": "https://www.drinksmixer.com/drink7189.html" }, { "directions": "Pour into a wine glass, garnish with slices of grapefruit and mandarin, and serve.", @@ -66564,7 +66564,7 @@ "grapefruit juice" ], "title": "San Remo recipe", - "url": "http://www.drinksmixer.com/drink7190.html" + "url": "https://www.drinksmixer.com/drink7190.html" }, { "directions": "Pour into a champagne flute, add a twist of lemon peel, and serve.", @@ -66573,7 +66573,7 @@ "Amaretto Di Saronno\u00ae liqueur" ], "title": "Saronno Kir Imperial recipe", - "url": "http://www.drinksmixer.com/drink7191.html" + "url": "https://www.drinksmixer.com/drink7191.html" }, { "directions": "Rim a double-cocktail glass with lime and caster sugar. Pour ingredients into the sugar-rimmed glass, garnish with a sugar-dipped strawberry, and serve.", @@ -66585,7 +66585,7 @@ "lime juice" ], "title": "Savoy Affair recipe", - "url": "http://www.drinksmixer.com/drink7192.html" + "url": "https://www.drinksmixer.com/drink7192.html" }, { "directions": "Pour into a wine glass half-filled with broken ice. Garnish with two halves of a strawberry, and serve.", @@ -66595,7 +66595,7 @@ "strawberry brandy" ], "title": "Strawberry Champagne recipe", - "url": "http://www.drinksmixer.com/drink7193.html" + "url": "https://www.drinksmixer.com/drink7193.html" }, { "directions": "Blend all ingredients (except champagne) briefly with a glassful of crushed ice in a double-cocktail glass. Add champagne, garnish with a sugar-dipped strawberry, and serve.", @@ -66607,7 +66607,7 @@ "strawberry puree" ], "title": "Strawberry Bandit recipe", - "url": "http://www.drinksmixer.com/drink7194.html" + "url": "https://www.drinksmixer.com/drink7194.html" }, { "directions": "Shake gin, orange juice and grenadine and strain into a highball glass three-quarters filled with broken ice. Add champagne, garnish with a slice of orange, and serve.", @@ -66618,7 +66618,7 @@ "grenadine syrup" ], "title": "Texas Fizz recipe", - "url": "http://www.drinksmixer.com/drink7195.html" + "url": "https://www.drinksmixer.com/drink7195.html" }, { "directions": "Pour into a double-cocktail glass half-filled with broken ice, and serve.", @@ -66628,7 +66628,7 @@ "mandarin juice" ], "title": "This is the Night recipe", - "url": "http://www.drinksmixer.com/drink7196.html" + "url": "https://www.drinksmixer.com/drink7196.html" }, { "directions": "Pour into a champagne flute, add a twist of orange peel, and serve.", @@ -66639,7 +66639,7 @@ "triple sec" ], "title": "Tomorrow We Sail recipe", - "url": "http://www.drinksmixer.com/drink7197.html" + "url": "https://www.drinksmixer.com/drink7197.html" }, { "directions": "Pour into a champagne saucer, and serve.", @@ -66648,7 +66648,7 @@ "Burgundy wine" ], "title": "Turk's Blood recipe", - "url": "http://www.drinksmixer.com/drink7198.html" + "url": "https://www.drinksmixer.com/drink7198.html" }, { "directions": "Pour into an old-fashioned glass three-quarters filled with broken ice, and serve.", @@ -66659,7 +66659,7 @@ "7-Up\u00ae soda" ], "title": "Radio City recipe", - "url": "http://www.drinksmixer.com/drink7199.html" + "url": "https://www.drinksmixer.com/drink7199.html" }, { "directions": "Pour into an ice-filled highball glass, and serve.", @@ -66669,7 +66669,7 @@ "lemonade" ], "title": "Rose Water recipe", - "url": "http://www.drinksmixer.com/drink7200.html" + "url": "https://www.drinksmixer.com/drink7200.html" }, { "directions": "Shake and strain into an old-fashioned glass filled with broken ice. Garnish with a slice of orange and a cherry, add a twist of lemon, and serve.", @@ -66680,7 +66680,7 @@ "sugar syrup" ], "title": "Scotch Melon Sour recipe", - "url": "http://www.drinksmixer.com/drink7201.html" + "url": "https://www.drinksmixer.com/drink7201.html" }, { "directions": "Pour into a highball glass three-quarters filled with broken ice. Add a twist of lemon peel, and serve.", @@ -66690,7 +66690,7 @@ "lemonade" ], "title": "Southern Tango recipe", - "url": "http://www.drinksmixer.com/drink7202.html" + "url": "https://www.drinksmixer.com/drink7202.html" }, { "directions": "Wash a lime, remove top and bottom, and thinly slice into half rings. Add lime pieces to glass and crush with the flat end of a barspoon. Add rum and sugar syrup, top with broken ice, and muddle together. Add a short straw, and serve.", @@ -66700,7 +66700,7 @@ "lime" ], "title": "Ti-Punch recipe", - "url": "http://www.drinksmixer.com/drink7203.html" + "url": "https://www.drinksmixer.com/drink7203.html" }, { "directions": "Blend briefly with a glassful of crushed ice in a pina colada glass. Garnish with a slice of pineapple and a cherry, add straws, and serve.", @@ -66712,7 +66712,7 @@ "whipping cream" ], "title": "Raspberry Colada recipe", - "url": "http://www.drinksmixer.com/drink7204.html" + "url": "https://www.drinksmixer.com/drink7204.html" }, { "directions": "Blend briefly with a glassful of crushed ice in a pina colada glass. Garnish with a slice of pineapple and a cherry, add straws, and serve.", @@ -66725,7 +66725,7 @@ "whipping cream" ], "title": "Strawberry Colada recipe", - "url": "http://www.drinksmixer.com/drink7205.html" + "url": "https://www.drinksmixer.com/drink7205.html" }, { "directions": "Blend briefly with a glassful of crushed ice in a pina colada glass. Garnish with a slice of pineapple and a cherry, add straws, and serve.", @@ -66738,7 +66738,7 @@ "whipping cream" ], "title": "Tropicolada recipe", - "url": "http://www.drinksmixer.com/drink7206.html" + "url": "https://www.drinksmixer.com/drink7206.html" }, { "directions": "Rim an old-fashioned glass with lemon juice and caster sugar. Place a teaspoon-sized sugar cube into the glass, and saturate with angostura bitters. Fill the glass three-quarters of the way with broken ice, shake other ingredients (except soda) and strain into the glass. Top with a small amount of soda water if desired. Add two cherries on a stick, garnish with half slices of orange and lemon, and serve.", @@ -66753,7 +66753,7 @@ "soda water" ], "title": "Ritz Old-Fashioned recipe", - "url": "http://www.drinksmixer.com/drink7207.html" + "url": "https://www.drinksmixer.com/drink7207.html" }, { "directions": "Pour into an ice-filled collins glass with a spiral of lemon peel, and serve.", @@ -66763,7 +66763,7 @@ "soda water" ], "title": "Remmsen Cooler recipe", - "url": "http://www.drinksmixer.com/drink7208.html" + "url": "https://www.drinksmixer.com/drink7208.html" }, { "directions": "Pour into an ice-filled collins glass with a spiral of lemon peel, and serve.", @@ -66775,7 +66775,7 @@ "soda water" ], "title": "Sporran Cooler recipe", - "url": "http://www.drinksmixer.com/drink7209.html" + "url": "https://www.drinksmixer.com/drink7209.html" }, { "directions": "Pour into an ice-filled collins glass. Add a spiral of lemon peel, and serve.", @@ -66786,7 +66786,7 @@ "soda water" ], "title": "Tod's Cooler recipe", - "url": "http://www.drinksmixer.com/drink7210.html" + "url": "https://www.drinksmixer.com/drink7210.html" }, { "directions": "Combine and mix all ingredients except champagne and rum in a punch bowl with ample ice. Add orange slices and the grated zest of one orange. Add champagne and rum prior to serving.", @@ -66800,7 +66800,7 @@ "lemon juice" ], "title": "Roman Punch recipe", - "url": "http://www.drinksmixer.com/drink7211.html" + "url": "https://www.drinksmixer.com/drink7211.html" }, { "directions": "Dissolve sugar in wine and combine all ingredients in a large jug with ample ice to cool. Add in-season fruit slices or pieces.", @@ -66812,7 +66812,7 @@ "sugar" ], "title": "Sauternes House Punch recipe", - "url": "http://www.drinksmixer.com/drink7212.html" + "url": "https://www.drinksmixer.com/drink7212.html" }, { "directions": "Combine and mix ingredients in a large ice-filled jug. Add slices of orange and a sprig of mint, and serve.", @@ -66825,7 +66825,7 @@ "orange juice" ], "title": "Scorpion Punch recipe", - "url": "http://www.drinksmixer.com/drink7213.html" + "url": "https://www.drinksmixer.com/drink7213.html" }, { "directions": "Combine and mix ingredients in a punch bowl with a large block of ice. Add sliced strawberries, and serve in wine glasses.", @@ -66839,7 +66839,7 @@ "ginger ale" ], "title": "Somerset Punch recipe", - "url": "http://www.drinksmixer.com/drink7214.html" + "url": "https://www.drinksmixer.com/drink7214.html" }, { "directions": "Combine and mix in a punch bowl with a large block of ice. Add slices strawberries, and serve into wine glasses.", @@ -66853,7 +66853,7 @@ "lemonade" ], "title": "Strawberry Punch recipe", - "url": "http://www.drinksmixer.com/drink7215.html" + "url": "https://www.drinksmixer.com/drink7215.html" }, { "directions": "Pour the soda, lemon juice, cognac, mint and fruits into a large punch bowl. Slowly dissolve in the sugar, to taste. Add the champagne, brandy, claret and wine, and top with 3 liters of water. Add a block of ice. Serve in wine glasses.", @@ -66873,7 +66873,7 @@ "white rhine wine" ], "title": "Toledo Punch recipe", - "url": "http://www.drinksmixer.com/drink7216.html" + "url": "https://www.drinksmixer.com/drink7216.html" }, { "directions": "Boil water and dissolve the sugar. Add remaining ingredients. Serve hot and sprinkle with nutmeg.", @@ -66885,7 +66885,7 @@ "Angostura\u00ae bitters" ], "title": "Trinidad Rum Punch recipe", - "url": "http://www.drinksmixer.com/drink7217.html" + "url": "https://www.drinksmixer.com/drink7217.html" }, { "directions": "Combine and mix in a punch bowl. Add fruits and sufficient ice to chill. Serve in wine glasses.", @@ -66901,7 +66901,7 @@ "lemon juice" ], "title": "Tropical Punch recipe", - "url": "http://www.drinksmixer.com/drink7218.html" + "url": "https://www.drinksmixer.com/drink7218.html" }, { "directions": "Heat in a small saucepan and pour into heat-proof cups just before boiling. Add a slice of lemon to each cup, and serve.", @@ -66913,7 +66913,7 @@ "water" ], "title": "Winter Wine recipe", - "url": "http://www.drinksmixer.com/drink7219.html" + "url": "https://www.drinksmixer.com/drink7219.html" }, { "directions": "Shake all ingredients (except lemonade) and strain into a highball glass three-quarters filled with crushed ice. Add lemonade, garnish with a slice of lime and a strawberry, add straws and serve.", @@ -66926,7 +66926,7 @@ "lemonade" ], "title": "Rosemary recipe", - "url": "http://www.drinksmixer.com/drink7220.html" + "url": "https://www.drinksmixer.com/drink7220.html" }, { "directions": "Pour lemonade and grenadine into a highball glass half-filled with broken ice. Fill with strawberry ice cream and top with chocolate syrup. Garnish with a strawberry, add straws, and serve.", @@ -66937,7 +66937,7 @@ "chocolate syrup" ], "title": "Shirley's Sister recipe", - "url": "http://www.drinksmixer.com/drink7221.html" + "url": "https://www.drinksmixer.com/drink7221.html" }, { "directions": "Crush the mint gently in a highball glass. Fill with broken ice, add remaining ingredients and mix gently. Add straws, and serve.", @@ -66948,7 +66948,7 @@ "lemon juice" ], "title": "Southern Ginger recipe", - "url": "http://www.drinksmixer.com/drink7222.html" + "url": "https://www.drinksmixer.com/drink7222.html" }, { "directions": "Blend briefly with half a glassful of crushed ice in a wine goblet. Garnish with half a caster sugar-coated strawberry, and serve.", @@ -66960,7 +66960,7 @@ "caster sugar" ], "title": "Strawberry Kiss recipe", - "url": "http://www.drinksmixer.com/drink7223.html" + "url": "https://www.drinksmixer.com/drink7223.html" }, { "directions": "Shake all ingredients (except soda water) and strain into a pina colada glass filled with broken ice. Add the soda, garnish with fruit, add straws and serve.", @@ -66972,7 +66972,7 @@ "soda water" ], "title": "Strawberry Salad recipe", - "url": "http://www.drinksmixer.com/drink7224.html" + "url": "https://www.drinksmixer.com/drink7224.html" }, { "directions": "Blend all ingredients (except lemonade) briefly with half a glassful of crushed ice in a pina colada glass. Add lemonade, garnish with a strawberry, add straws and serve.", @@ -66985,7 +66985,7 @@ "lemonade" ], "title": "Strawberry Split recipe", - "url": "http://www.drinksmixer.com/drink7225.html" + "url": "https://www.drinksmixer.com/drink7225.html" }, { "directions": "Dissolve sugar in juices in a highball glass three-quarters filled with ice. Add soda, top with ice cream, and garnish with fruit. Add straws, and serve.", @@ -66998,7 +66998,7 @@ "vanilla ice cream" ], "title": "Summertime Soda recipe", - "url": "http://www.drinksmixer.com/drink7226.html" + "url": "https://www.drinksmixer.com/drink7226.html" }, { "directions": "Blend briefly with half a glassful of crushed ice and pour into a highball glass. Garnish with a slice of orange speared with a cherry, add straws, and serve.", @@ -67011,7 +67011,7 @@ "honey" ], "title": "Tarzan's Juicy Cooler recipe", - "url": "http://www.drinksmixer.com/drink7227.html" + "url": "https://www.drinksmixer.com/drink7227.html" }, { "directions": "Blend briefly with three-quarters of a glassful of crushed ice. Add the ginger ale, garnish with a strawberry, and serve.", @@ -67023,7 +67023,7 @@ "caster sugar" ], "title": "Tenderberry recipe", - "url": "http://www.drinksmixer.com/drink7228.html" + "url": "https://www.drinksmixer.com/drink7228.html" }, { "directions": "Shake juices and strain into an ice-filled highball glass. Add lemonade, garnish with a slice of Ugli fruit, add straws and serve.", @@ -67033,7 +67033,7 @@ "lemonade" ], "title": "Ugly Virgin recipe", - "url": "http://www.drinksmixer.com/drink7229.html" + "url": "https://www.drinksmixer.com/drink7229.html" }, { "directions": "Pour into a wine glass, and serve.", @@ -67043,7 +67043,7 @@ "soda water" ], "title": "Virgin Bellini recipe", - "url": "http://www.drinksmixer.com/drink7230.html" + "url": "https://www.drinksmixer.com/drink7230.html" }, { "directions": "Shake and strain into a wine goblet filled with crushed ice. Garnish with a slice of pineapple and a cherry, add a straw, and serve.", @@ -67054,7 +67054,7 @@ "lime juice" ], "title": "Virgin Colada recipe", - "url": "http://www.drinksmixer.com/drink7231.html" + "url": "https://www.drinksmixer.com/drink7231.html" }, { "directions": "Blend briefly with half a glassful of crushed ice in a wine goblet. Garnish with raspberries, and serve.", @@ -67066,7 +67066,7 @@ "raspberry syrup" ], "title": "Virgin Raspberry Daiquiri recipe", - "url": "http://www.drinksmixer.com/drink7232.html" + "url": "https://www.drinksmixer.com/drink7232.html" }, { "directions": "Shake, strain into a cocktail glass, and serve.", @@ -67078,7 +67078,7 @@ "7-Up\u00ae soda" ], "title": "Round-Up recipe", - "url": "http://www.drinksmixer.com/drink7233.html" + "url": "https://www.drinksmixer.com/drink7233.html" }, { "directions": "Pour into a champagne saucer, and serve.", @@ -67087,7 +67087,7 @@ "Creme de Fraise des Bois" ], "title": "Royal Wild Strawberry recipe", - "url": "http://www.drinksmixer.com/drink7234.html" + "url": "https://www.drinksmixer.com/drink7234.html" }, { "directions": "Add coffee and cognac to an irish coffee cup and sweeten to taste. Gently float whipped cream on top, sprinkle with grated chocolate, and serve.", @@ -67098,7 +67098,7 @@ "sugar" ], "title": "Royale Coffee recipe", - "url": "http://www.drinksmixer.com/drink7235.html" + "url": "https://www.drinksmixer.com/drink7235.html" }, { "directions": "Add coffee, vodka and kahlua to irish coffee cup and sweeten to taste. Gently float cream on top, add amaretto, and garnish with a cherry.", @@ -67111,7 +67111,7 @@ "sugar" ], "title": "Russian Coffee recipe", - "url": "http://www.drinksmixer.com/drink7236.html" + "url": "https://www.drinksmixer.com/drink7236.html" }, { "directions": "Add coffee and aquavit to an irish coffee cup and sweeten to taste. Gently float cream on top, sprinkle with nutmeg, and serve.", @@ -67122,7 +67122,7 @@ "sugar" ], "title": "Scandinavian Coffee recipe", - "url": "http://www.drinksmixer.com/drink7237.html" + "url": "https://www.drinksmixer.com/drink7237.html" }, { "directions": "Pour irish mist and coffee into an irish coffee cup and sweeten to taste. Gently float cream on top, sprinkle wth chocolate, and serve.", @@ -67133,7 +67133,7 @@ "sugar" ], "title": "Shamrock Coffee recipe", - "url": "http://www.drinksmixer.com/drink7238.html" + "url": "https://www.drinksmixer.com/drink7238.html" }, { "directions": "Pour gold rum and coffee into an irish coffee cup and sweeten to taste. Gently float cream on top, sprinkle wth cinnamon, and serve.", @@ -67144,7 +67144,7 @@ "sugar" ], "title": "Tropical Coffee recipe", - "url": "http://www.drinksmixer.com/drink7239.html" + "url": "https://www.drinksmixer.com/drink7239.html" }, { "directions": "Pour into a cocktail glass, and serve.", @@ -67154,7 +67154,7 @@ "Angostura\u00ae bitters" ], "title": "Rum Scaffa recipe", - "url": "http://www.drinksmixer.com/drink7240.html" + "url": "https://www.drinksmixer.com/drink7240.html" }, { "directions": "Pour liquors into an irish coffee cup and sweeten to taste. Gently float cream on top, and serve.", @@ -67166,7 +67166,7 @@ "sugar" ], "title": "Rumba recipe", - "url": "http://www.drinksmixer.com/drink7241.html" + "url": "https://www.drinksmixer.com/drink7241.html" }, { "directions": "Add the a heat-proof goblet and sweeten to taste. Mix briskly, allowing foam to form and sprinkle with ground cinnamon.", @@ -67177,7 +67177,7 @@ "sugar" ], "title": "Tijuana Coffee recipe", - "url": "http://www.drinksmixer.com/drink7242.html" + "url": "https://www.drinksmixer.com/drink7242.html" }, { "directions": "Heat in a small saucepan, dissolving sugar. Serve in a heat-proof cup when hot.", @@ -67187,7 +67187,7 @@ "water" ], "title": "Vruica Rakia recipe", - "url": "http://www.drinksmixer.com/drink7243.html" + "url": "https://www.drinksmixer.com/drink7243.html" }, { "directions": "Pour into an old-fashioned glass filled with crushed ice. Garnish with in-season fruit, add short straws and a twist of lemon, and serve.", @@ -67198,7 +67198,7 @@ "sugar syrup" ], "title": "Santa Cruz Fix recipe", - "url": "http://www.drinksmixer.com/drink7244.html" + "url": "https://www.drinksmixer.com/drink7244.html" }, { "directions": "Combine mandarin napoleon and cocoa in a heat-proof irish coffee cup, and sweeten to taste. Gently float the cream on top, sprinkle with grated chocolate, and serve.", @@ -67209,7 +67209,7 @@ "sugar" ], "title": "Seville Chocolate recipe", - "url": "http://www.drinksmixer.com/drink7245.html" + "url": "https://www.drinksmixer.com/drink7245.html" }, { "directions": "Pour into an ice-filled highball glass. Add a twist of orange peel, and serve.", @@ -67219,7 +67219,7 @@ "bitter lemon soda" ], "title": "Seville Highball recipe", - "url": "http://www.drinksmixer.com/drink7246.html" + "url": "https://www.drinksmixer.com/drink7246.html" }, { "directions": "Pour scotch whisky and pineapple juice into a highball glass three-quarters filled with ice. Sprinkle curacao on top, add a twist of lemon peel, and serve.", @@ -67229,7 +67229,7 @@ "pineapple juice" ], "title": "Sky Highball recipe", - "url": "http://www.drinksmixer.com/drink7247.html" + "url": "https://www.drinksmixer.com/drink7247.html" }, { "directions": "Pour into a wine goblet filled with broken ice and mix. Garnish with in-season fruit, add straws, and serve.", @@ -67240,7 +67240,7 @@ "sugar syrup" ], "title": "Sherry Cobbler recipe", - "url": "http://www.drinksmixer.com/drink7248.html" + "url": "https://www.drinksmixer.com/drink7248.html" }, { "directions": "Pour peppermint schnapps and cocoa into an irish coffee cup, and sweeten to taste. Gently float cream on top, sprinkle with grated chocolate, and serve.", @@ -67251,7 +67251,7 @@ "sugar" ], "title": "Snuggler recipe", - "url": "http://www.drinksmixer.com/drink7249.html" + "url": "https://www.drinksmixer.com/drink7249.html" }, { "directions": "Pour into a collins glass and fill with crushed ice. Mix gently and serve.", @@ -67262,7 +67262,7 @@ "sugar syrup" ], "title": "Southern Mint Julep recipe", - "url": "http://www.drinksmixer.com/drink7250.html" + "url": "https://www.drinksmixer.com/drink7250.html" }, { "directions": "Blend all ingredients (except lemonade) briefly with half a glassful of crushed ice and pour into a highball glass. Add lemonade, garnish with fruit, add straws and serve.", @@ -67274,7 +67274,7 @@ "lemonade" ], "title": "Summer Rain recipe", - "url": "http://www.drinksmixer.com/drink7251.html" + "url": "https://www.drinksmixer.com/drink7251.html" }, { "directions": "Shake, strain into a champagne saucer filled with crushed ice, and serve.", @@ -67286,7 +67286,7 @@ "Angostura\u00ae bitters" ], "title": "Supreme recipe", - "url": "http://www.drinksmixer.com/drink7252.html" + "url": "https://www.drinksmixer.com/drink7252.html" }, { "directions": "Add ingredients to a shaker and swirl until sugar is dissolved. Sweeten further if needed. Shake briefly with a glassful of crushed ice, and strain into a pina colada glass. Garnish with a slice of pineapple and a cherry, add straws, and serve.", @@ -67298,7 +67298,7 @@ "caster sugar" ], "title": "Vodka Pina Colada recipe", - "url": "http://www.drinksmixer.com/drink7253.html" + "url": "https://www.drinksmixer.com/drink7253.html" }, { "directions": "Shake all ingredients (except cola) and strain into an ice-filled collins glass. Add cola, garnish with a slice of lime and a cherry, and serve.", @@ -67312,7 +67312,7 @@ "cola" ], "title": "Zulu recipe", - "url": "http://www.drinksmixer.com/drink7254.html" + "url": "https://www.drinksmixer.com/drink7254.html" }, { "directions": "Pour into a pousse-cafe or cordial glass, in order; amaretto, bailey's irish cream, and cointreau.", @@ -67322,7 +67322,7 @@ "Cointreau\u00ae orange liqueur" ], "title": "ABC Pousse Cafe recipe", - "url": "http://www.drinksmixer.com/drink7255.html" + "url": "https://www.drinksmixer.com/drink7255.html" }, { "directions": "Add absinthe and one large cube of ice to an old-fashioned glass. Place an absinthe spoon across the top of the glass with the sugar on it, and pour drops of water onto the spoon. The water will drop through the holes in the absinthe spoon.", @@ -67331,7 +67331,7 @@ "sugar" ], "title": "Absinthe Drip recipe", - "url": "http://www.drinksmixer.com/drink7256.html" + "url": "https://www.drinksmixer.com/drink7256.html" }, { "directions": "Shake well with ice, strain into a chilled cocktail glass, and serve.", @@ -67341,7 +67341,7 @@ "pineapple juice" ], "title": "Absolutely Bananas recipe", - "url": "http://www.drinksmixer.com/drink7257.html" + "url": "https://www.drinksmixer.com/drink7257.html" }, { "directions": "Shake all ingredients (except soda) with ice and strain into a highball glass with ice. Top with soda, stir, and serve.", @@ -67354,7 +67354,7 @@ "soda water" ], "title": "Alabazam recipe", - "url": "http://www.drinksmixer.com/drink7258.html" + "url": "https://www.drinksmixer.com/drink7258.html" }, { "directions": "Shake ingredients with ice and strain into a chilled cocktail glass. Garnish with a cherry, and serve.", @@ -67364,7 +67364,7 @@ "lemon juice" ], "title": "Alize Cocktail recipe", - "url": "http://www.drinksmixer.com/drink7259.html" + "url": "https://www.drinksmixer.com/drink7259.html" }, { "directions": "Pour into an old-fashioned glass with ice and stir. Garnish with flamed orange peel, and serve.", @@ -67375,7 +67375,7 @@ "orange bitters" ], "title": "Amber Dream recipe", - "url": "http://www.drinksmixer.com/drink7260.html" + "url": "https://www.drinksmixer.com/drink7260.html" }, { "directions": "Muddle the fresh mango in the bottom of a mixing glass and add all other ingredients. Shake well with ice and strain into a chilled martini glass. Garnish with a twist of lemon peel, and serve.", @@ -67387,7 +67387,7 @@ "lemon juice" ], "title": "Apricot-Mango Martini recipe", - "url": "http://www.drinksmixer.com/drink7262.html" + "url": "https://www.drinksmixer.com/drink7262.html" }, { "directions": "Layer in a cordial glass, cream on top.", @@ -67396,7 +67396,7 @@ "heavy cream" ], "title": "Angel's Tip recipe", - "url": "http://www.drinksmixer.com/drink7263.html" + "url": "https://www.drinksmixer.com/drink7263.html" }, { "directions": "Layer in a cordial glass, cream on top. Spear a cherry with a cocktail pick, rest across the top of the glass, and serve.", @@ -67405,7 +67405,7 @@ "heavy cream" ], "title": "Angel's Tip #2 recipe", - "url": "http://www.drinksmixer.com/drink7264.html" + "url": "https://www.drinksmixer.com/drink7264.html" }, { "directions": "Build, in order, in a highball glass over ice. Garnish with a wedge of lime, and serve.", @@ -67415,7 +67415,7 @@ "cranberry juice" ], "title": "Bahia Breeze recipe", - "url": "http://www.drinksmixer.com/drink7265.html" + "url": "https://www.drinksmixer.com/drink7265.html" }, { "directions": "Combine ingredients in a shaker, and shake well. Pour into a small highball glass over crushed ice, and serve.", @@ -67427,7 +67427,7 @@ "grenadine syrup" ], "title": "Bakunin recipe", - "url": "http://www.drinksmixer.com/drink7266.html" + "url": "https://www.drinksmixer.com/drink7266.html" }, { "directions": "Mix all ingredients with the orange slices and shake well with ice. Strain into a chilled martini glass, garnish with flamed orange peel, and serve.", @@ -67439,7 +67439,7 @@ "oranges" ], "title": "Balm Cocktail recipe", - "url": "http://www.drinksmixer.com/drink7267.html" + "url": "https://www.drinksmixer.com/drink7267.html" }, { "directions": "Combine ingredients in a blender with three-quarters of a cup of crushed ice. Pour into a london dock or sherry glass, garnish with a light dusting of cinnamon, and serve.", @@ -67452,7 +67452,7 @@ "simple syrup" ], "title": "Frozen Barcelona recipe", - "url": "http://www.drinksmixer.com/drink7268.html" + "url": "https://www.drinksmixer.com/drink7268.html" }, { "directions": "Shake all ingredients with ice and strain into an old-fashioned glass. Garnish with a lime wheel, and serve.", @@ -67463,7 +67463,7 @@ "simple syrup" ], "title": "Batidas Frozen recipe", - "url": "http://www.drinksmixer.com/drink7269.html" + "url": "https://www.drinksmixer.com/drink7269.html" }, { "directions": "Shake with ice, strain into a chilled cocktail glass, and serve.", @@ -67473,7 +67473,7 @@ "lemon juice" ], "title": "Bee's Knees recipe", - "url": "http://www.drinksmixer.com/drink7270.html" + "url": "https://www.drinksmixer.com/drink7270.html" }, { "directions": "Shake blackberry liqueur, lemon juice and simple syrup with ice, and strain into a highball glass filled with crushed ice. Stir until the glass begins to frost. Garnish with the berry marinade, and serve.", @@ -67485,7 +67485,7 @@ "water" ], "title": "Blackberry Julep recipe", - "url": "http://www.drinksmixer.com/drink7271.html" + "url": "https://www.drinksmixer.com/drink7271.html" }, { "directions": "Pour grenadine, bitters and whiskey into an old-fashioned glass three-quarters filled with ice. Stir, garnish with flamed lemon peel, and serve.", @@ -67495,7 +67495,7 @@ "bourbon whiskey" ], "title": "Black Rose recipe", - "url": "http://www.drinksmixer.com/drink7272.html" + "url": "https://www.drinksmixer.com/drink7272.html" }, { "directions": "Shake well with ice and strain into a chilled martini glass. Garnish with a slice of orange, and serve.", @@ -67507,7 +67507,7 @@ "cranberry juice" ], "title": "Blood Orange Cosmo recipe", - "url": "http://www.drinksmixer.com/drink7273.html" + "url": "https://www.drinksmixer.com/drink7273.html" }, { "directions": "Shake well with ice and strain into a chilled cocktail glass. Garnish with flamed orange peel on the glass, and serve.", @@ -67517,7 +67517,7 @@ "Blue Curacao liqueur" ], "title": "Blue Monday recipe", - "url": "http://www.drinksmixer.com/drink7274.html" + "url": "https://www.drinksmixer.com/drink7274.html" }, { "directions": "Shake well with ice and strain into a chilled martini glass. Garnish with flamed orange peel, and serve.", @@ -67528,7 +67528,7 @@ "Blue Curacao liqueur" ], "title": "Blue Train recipe", - "url": "http://www.drinksmixer.com/drink7275.html" + "url": "https://www.drinksmixer.com/drink7275.html" }, { "directions": "Combine ingredients in a mixing glass and shake well. Strain into a pint glass over ice, garnish with a twist of orange peel, and serve.", @@ -67540,7 +67540,7 @@ "beef bouillon" ], "title": "Bull Shot recipe", - "url": "http://www.drinksmixer.com/drink7276.html" + "url": "https://www.drinksmixer.com/drink7276.html" }, { "directions": "Roll all ingredients in a mixing glass with ice. Strain into a pint glass over ice, and serve.", @@ -67555,7 +67555,7 @@ "lime" ], "title": "Bloody Butrum recipe", - "url": "http://www.drinksmixer.com/drink7277.html" + "url": "https://www.drinksmixer.com/drink7277.html" }, { "directions": "Stir with ice and strain into a chilled cocktail glass. Garnish with flamed orange peel, and serve.", @@ -67565,7 +67565,7 @@ "dry vermouth" ], "title": "Boulevard recipe", - "url": "http://www.drinksmixer.com/drink7278.html" + "url": "https://www.drinksmixer.com/drink7278.html" }, { "directions": "Shake ingredients with ice and strain into an old-fashioned glass filled with ice. Garnish with a slice of orange and a maraschino cherry, and serve.", @@ -67576,7 +67576,7 @@ "orange juice" ], "title": "Bourbon Stone Sour recipe", - "url": "http://www.drinksmixer.com/drink7279.html" + "url": "https://www.drinksmixer.com/drink7279.html" }, { "directions": "Shake the gin, lime juice and syrup well with ice, and strain into a highball glass filled with crushed ice. Dribble the creme de mure down through the ice, and garnish with a lime wheel and raspberries.", @@ -67587,7 +67587,7 @@ "creme de mure" ], "title": "Bramble recipe", - "url": "http://www.drinksmixer.com/drink7280.html" + "url": "https://www.drinksmixer.com/drink7280.html" }, { "directions": "Shake well with ice and strain into a chilled wine glass. Dust with freshly grated nutmeg, and serve.", @@ -67598,7 +67598,7 @@ "milk" ], "title": "Brandy Plush recipe", - "url": "http://www.drinksmixer.com/drink7281.html" + "url": "https://www.drinksmixer.com/drink7281.html" }, { "directions": "Shake well, strain into a chilled cocktail glass, and serve.", @@ -67608,7 +67608,7 @@ "Cointreau\u00ae orange liqueur" ], "title": "Brassy Blond recipe", - "url": "http://www.drinksmixer.com/drink7282.html" + "url": "https://www.drinksmixer.com/drink7282.html" }, { "directions": "Shake ingredients with ice and strain into a chilled martini glass. Garnish with a piece of a slice of toast.", @@ -67619,7 +67619,7 @@ "marmalade" ], "title": "Breakfast Martini recipe", - "url": "http://www.drinksmixer.com/drink7283.html" + "url": "https://www.drinksmixer.com/drink7283.html" }, { "directions": "Build in a highball glass, and serve.", @@ -67628,7 +67628,7 @@ "club soda" ], "title": "Bud Herrmann Brandy recipe", - "url": "http://www.drinksmixer.com/drink7284.html" + "url": "https://www.drinksmixer.com/drink7284.html" }, { "directions": "Shake all ingredients with ice and strain into a cocktail glass. Garnish with flamed orange peel, and serve.", @@ -67639,7 +67639,7 @@ "orange juice" ], "title": "Bull's Blood recipe", - "url": "http://www.drinksmixer.com/drink7285.html" + "url": "https://www.drinksmixer.com/drink7285.html" }, { "directions": "Combine in a highball glass with ice. Garnish with a wedge of lime, and serve.\n\n", @@ -67648,7 +67648,7 @@ "cranberry juice" ], "title": "Cape Cod recipe", - "url": "http://www.drinksmixer.com/drink7286.html" + "url": "https://www.drinksmixer.com/drink7286.html" }, { "directions": "Build the kahlua, caribbean cream and milk (or half-and-half) over ice in a tall highball glass. Add coca-cola and stir gently. Add straws, and serve.", @@ -67659,7 +67659,7 @@ "Coca-Cola\u00ae" ], "title": "Caribbean Bulldog recipe", - "url": "http://www.drinksmixer.com/drink7287.html" + "url": "https://www.drinksmixer.com/drink7287.html" }, { "directions": "Shake all ingredients with ice and strain into a chilled martini glass. Garnish with flamed orange peel, and serve.", @@ -67670,7 +67670,7 @@ "lime juice" ], "title": "Caribe Cosmopolitan recipe", - "url": "http://www.drinksmixer.com/drink7288.html" + "url": "https://www.drinksmixer.com/drink7288.html" }, { "directions": "Shake all ingredients over ice and strain into a large chilled cocktail glass. Garnish with flamed orange peel, and serve.", @@ -67682,7 +67682,7 @@ "simple syrup" ], "title": "Caricature Cocktail recipe", - "url": "http://www.drinksmixer.com/drink7289.html" + "url": "https://www.drinksmixer.com/drink7289.html" }, { "directions": "Stir all ingredients in a mug and serve steaming hot. Garnish with a peppermint stick.", @@ -67693,7 +67693,7 @@ "tea" ], "title": "Chai Toddy recipe", - "url": "http://www.drinksmixer.com/drink7290.html" + "url": "https://www.drinksmixer.com/drink7290.html" }, { "directions": "Pour passion fruit puree into a champagne saucer and stir in the simple syrup (to taste). Slowly add the champagne whilst stirring gently. Float the alize on top, and serve.", @@ -67704,7 +67704,7 @@ "Alize\u00ae liqueur" ], "title": "Champagne Passion recipe", - "url": "http://www.drinksmixer.com/drink7291.html" + "url": "https://www.drinksmixer.com/drink7291.html" }, { "directions": "Pour the mango puree into a mixing glass, then slowly add the champagne whilst stirring gently. Float the maraschino on top, and serve.", @@ -67714,7 +67714,7 @@ "maraschino liqueur" ], "title": "Champagne Tropicale recipe", - "url": "http://www.drinksmixer.com/drink7292.html" + "url": "https://www.drinksmixer.com/drink7292.html" }, { "directions": "Muddle four of the cherries with the lemon juice and maraschino in a mixing glass. Add gin, shake well with ice, and strain into a chilled cocktail glass. Garnish with remaining cherry, and serve.", @@ -67725,7 +67725,7 @@ "gin" ], "title": "Cherry Crush recipe", - "url": "http://www.drinksmixer.com/drink7293.html" + "url": "https://www.drinksmixer.com/drink7293.html" }, { "directions": "Shake all ingredients well and strain into a chilled martini or cocktail glass. Dust with grated nutmeg, and serve.", @@ -67736,7 +67736,7 @@ "grenadine syrup" ], "title": "Cherry Kiss recipe", - "url": "http://www.drinksmixer.com/drink7294.html" + "url": "https://www.drinksmixer.com/drink7294.html" }, { "directions": "Shake all ingredients well with ice and strain into a chilled cocktail glass. Dust with grated nutmeg, and serve.", @@ -67748,7 +67748,7 @@ "heavy cream" ], "title": "Chocolate Punch recipe", - "url": "http://www.drinksmixer.com/drink7295.html" + "url": "https://www.drinksmixer.com/drink7295.html" }, { "directions": "Combine ingredients with ice in a mixing glass and stir to chill. Strain into a chilled martini glass, garnish with flamed orange peel, and serve.", @@ -67757,7 +67757,7 @@ "tawny port" ], "title": "Cigar Lover's Martini recipe", - "url": "http://www.drinksmixer.com/drink7296.html" + "url": "https://www.drinksmixer.com/drink7296.html" }, { "directions": "Shake all ingredients with ice and strain into a goblet or london dock glass. Serve.", @@ -67769,7 +67769,7 @@ "heavy cream" ], "title": "Citrus Cream recipe", - "url": "http://www.drinksmixer.com/drink7297.html" + "url": "https://www.drinksmixer.com/drink7297.html" }, { "directions": "Muddle an orange slice and a cherry with bitters and curacao in the bottom of an old-fashioned glass. Remove the orange rind, and add bourbon, ice, and soda. Garnish with the remaining orange slice and cherry, and serve.", @@ -67782,7 +67782,7 @@ "soda water" ], "title": "Claremont recipe", - "url": "http://www.drinksmixer.com/drink7298.html" + "url": "https://www.drinksmixer.com/drink7298.html" }, { "directions": "Shake all ingredients with ice and strain into a wine goblet over ice. Garnish with a lemon wheel, and serve.", @@ -67792,7 +67792,7 @@ "lemon juice" ], "title": "Claret Lemonade recipe", - "url": "http://www.drinksmixer.com/drink7299.html" + "url": "https://www.drinksmixer.com/drink7299.html" }, { "directions": "Shake all ingredients well with ice and strain into a martini or cocktail glass. Garnish with a twist of lemon peel and a strawberry, and serve.", @@ -67803,7 +67803,7 @@ "Peychaud\u00ae bitters" ], "title": "Club Cocktail recipe", - "url": "http://www.drinksmixer.com/drink7300.html" + "url": "https://www.drinksmixer.com/drink7300.html" }, { "directions": "Muddle the raspberries and chambord in a mixing glass. Add ice, rum, and creme de cacao. Stir to chill, strain into a chilled cocktail glass, and serve.", @@ -67814,7 +67814,7 @@ "white creme de cacao" ], "title": "Coco Berry recipe", - "url": "http://www.drinksmixer.com/drink7301.html" + "url": "https://www.drinksmixer.com/drink7301.html" }, { "directions": "Shake all ingredients well with ice and strain into a small wine or port glass. Dust with nutmeg, and serve.", @@ -67825,7 +67825,7 @@ "sugar" ], "title": "Coffee Cocktail recipe", - "url": "http://www.drinksmixer.com/drink7302.html" + "url": "https://www.drinksmixer.com/drink7302.html" }, { "directions": "Pour cognac over ice in a highball glass, fill with club soda, and serve.", @@ -67834,7 +67834,7 @@ "club soda" ], "title": "Cognac and Soda recipe", - "url": "http://www.drinksmixer.com/drink7303.html" + "url": "https://www.drinksmixer.com/drink7303.html" }, { "directions": "Shake all ingredients with ice and strain into a chilled martini glass. Garnish with flamed orange peel, and serve.", @@ -67845,7 +67845,7 @@ "orange juice" ], "title": "Coctel Algeria recipe", - "url": "http://www.drinksmixer.com/drink7304.html" + "url": "https://www.drinksmixer.com/drink7304.html" }, { "directions": "Place a dash of ricard into a cocktail glass and swill to coat the inside. Pour out the excess. Chill the gin, vermouth and bitters by stirring with ice, and strain into the prepared glass. Serve.", @@ -67856,7 +67856,7 @@ "Angostura\u00ae bitters" ], "title": "Colony Room Cocktail recipe", - "url": "http://www.drinksmixer.com/drink7305.html" + "url": "https://www.drinksmixer.com/drink7305.html" }, { "directions": "Shake with ice, strain into a chilled cocktail glass, and serve.", @@ -67867,7 +67867,7 @@ "lemon juice" ], "title": "Cosmalize recipe", - "url": "http://www.drinksmixer.com/drink7306.html" + "url": "https://www.drinksmixer.com/drink7306.html" }, { "directions": "Pour vodka and lemonade into a highball glass. Top with the soda, garnish with a slice of lemon, and serve.", @@ -67877,7 +67877,7 @@ "soda water" ], "title": "Crawdaddy recipe", - "url": "http://www.drinksmixer.com/drink7307.html" + "url": "https://www.drinksmixer.com/drink7307.html" }, { "directions": "Shake ingredients and strain into a chilled highball glass. Garnish a slice of orange and a cherry.", @@ -67887,7 +67887,7 @@ "orange juice" ], "title": "Cupid's Cocktail recipe", - "url": "http://www.drinksmixer.com/drink7308.html" + "url": "https://www.drinksmixer.com/drink7308.html" }, { "directions": "Muddle the fruit and maraschino in the bottom of a bar glass. Add ice and champagne, stir gently and strain into a champagne flute. Garnish with flamed orange peel, and serve.", @@ -67899,7 +67899,7 @@ "Champagne" ], "title": "Champagne Cobbler recipe", - "url": "http://www.drinksmixer.com/drink7309.html" + "url": "https://www.drinksmixer.com/drink7309.html" }, { "directions": "Muddle a skinless pineapple wedge, one piece of orange and one piece of lemon with maraschino liqueur in the bottom of a bar glass. Add the sake and shake with ice. Strain into a double old-fashioned glass filled with crushed ice and top with a splash of soda. Garnish with a sprig of mint, the remaining fruit wedges, and serve.", @@ -67912,7 +67912,7 @@ "soda" ], "title": "Japanese Cobbler recipe", - "url": "http://www.drinksmixer.com/drink7310.html" + "url": "https://www.drinksmixer.com/drink7310.html" }, { "directions": "Muddle a skinless pineapple wedge, one slice of orange and one wedge of lemon with orange curacao and water in the bottom of a bar glass. Add whiskey and ice, and shake well. Strain into a double old-fashioned glass filled with crushed ice. Garnish with remaining fruit, and serve.", @@ -67925,7 +67925,7 @@ "water" ], "title": "Whiskey Cobbler recipe", - "url": "http://www.drinksmixer.com/drink7311.html" + "url": "https://www.drinksmixer.com/drink7311.html" }, { "directions": "Shake all ingredients with ice and serve over ice in an old-fashioned glass. Top with a splash of red wine. Garnish with fresh fruit, and serve.", @@ -67938,7 +67938,7 @@ "red wine" ], "title": "Cosmopolitan Delight recipe", - "url": "http://www.drinksmixer.com/drink7312.html" + "url": "https://www.drinksmixer.com/drink7312.html" }, { "directions": "Muddle the cointreau and lime juice with all but one half of the strawberries in the bottom of a mixing glass. Add vodka and ice, shake well, and strain into a martini glass. Garnish with the reserved strawberry half, and serve.", @@ -67949,7 +67949,7 @@ "citrus vodka" ], "title": "Strawberry Cosmopolitan recipe", - "url": "http://www.drinksmixer.com/drink7313.html" + "url": "https://www.drinksmixer.com/drink7313.html" }, { "directions": "Chill the teaspoon amounts of liquor in a mixing glass and strain into a champagne flute. Top with champagne, add strips of orange peel, and serve.", @@ -67961,7 +67961,7 @@ "Champagne" ], "title": "D'Artagnan recipe", - "url": "http://www.drinksmixer.com/drink7314.html" + "url": "https://www.drinksmixer.com/drink7314.html" }, { "directions": "Stir ingredients together to chill, strain into a chilled martini glass, and serve.", @@ -67970,7 +67970,7 @@ "Canton\u00ae ginger liqueur" ], "title": "Debonaire Cocktail recipe", - "url": "http://www.drinksmixer.com/drink7315.html" + "url": "https://www.drinksmixer.com/drink7315.html" }, { "directions": "Build ingredients (except ginger ale) in a highball glass over ice, and fill with ginger ale. Garnish with orange peel and a cherry, and serve.", @@ -67981,7 +67981,7 @@ "ginger ale" ], "title": "Desert Healer recipe", - "url": "http://www.drinksmixer.com/drink7316.html" + "url": "https://www.drinksmixer.com/drink7316.html" }, { "directions": "Shake and strain into a cocktail glass. Garnish with orange peel, and serve.", @@ -67992,7 +67992,7 @@ "Angostura\u00ae bitters" ], "title": "Deshler Cocktail recipe", - "url": "http://www.drinksmixer.com/drink7317.html" + "url": "https://www.drinksmixer.com/drink7317.html" }, { "directions": "Shake with ice and strain into a chilled cocktail glass. Garnish with lemon peel, and serve.", @@ -68002,7 +68002,7 @@ "grenadine syrup" ], "title": "Devil's Torch recipe", - "url": "http://www.drinksmixer.com/drink7318.html" + "url": "https://www.drinksmixer.com/drink7318.html" }, { "directions": "Shake amaretto, curacao, juices and bitters with ice and strain into a collins glass. Top with a splash of club soda. Garnish with a slice of orange and a cherry, and serve.", @@ -68016,7 +68016,7 @@ "club soda" ], "title": "Di Saronno Punch recipe", - "url": "http://www.drinksmixer.com/drink7319.html" + "url": "https://www.drinksmixer.com/drink7319.html" }, { "directions": "Shake ingredients with ice and strain into a chilled cocktail glass. Garnish with flamed orange peel, and serve.", @@ -68026,7 +68026,7 @@ "benedictine herbal liqueur" ], "title": "D.O.M. Cocktail recipe", - "url": "http://www.drinksmixer.com/drink7320.html" + "url": "https://www.drinksmixer.com/drink7320.html" }, { "directions": "Shake ingredients with ice and strain into a chilled cocktail glass. Garnish with flamed orange peel, and serve.", @@ -68037,7 +68037,7 @@ "Marie Brizard\u00ae Apry apricot brandy" ], "title": "The Dorothy recipe", - "url": "http://www.drinksmixer.com/drink7321.html" + "url": "https://www.drinksmixer.com/drink7321.html" }, { "directions": "Shake ingredients extremely well, strain into a chilled cocktail glass, and serve.", @@ -68048,7 +68048,7 @@ "egg" ], "title": "Douglas Fairbanks recipe", - "url": "http://www.drinksmixer.com/drink7322.html" + "url": "https://www.drinksmixer.com/drink7322.html" }, { "directions": "Pour liquor into a mixing glass with ice and stir to chill. Strain into a goblet, top with cream, and serve.", @@ -68058,7 +68058,7 @@ "whipped cream" ], "title": "Dubliner recipe", - "url": "http://www.drinksmixer.com/drink7323.html" + "url": "https://www.drinksmixer.com/drink7323.html" }, { "directions": "Shake ingredients, pour into a small cocktail glass, and serve.", @@ -68068,7 +68068,7 @@ "heavy cream" ], "title": "Dusty Rose recipe", - "url": "http://www.drinksmixer.com/drink7324.html" + "url": "https://www.drinksmixer.com/drink7324.html" }, { "directions": "Mix ingredients together in a highball glass, and serve.", @@ -68079,7 +68079,7 @@ "soda water" ], "title": "Edith's Fizz recipe", - "url": "http://www.drinksmixer.com/drink7325.html" + "url": "https://www.drinksmixer.com/drink7325.html" }, { "directions": "Shake well with ice and strain into a chilled cocktail glass. Garnish with a lime wedge, and serve.", @@ -68091,7 +68091,7 @@ "Angostura\u00ae bitters" ], "title": "Embassy Cocktail recipe", - "url": "http://www.drinksmixer.com/drink7326.html" + "url": "https://www.drinksmixer.com/drink7326.html" }, { "directions": "Prepare a martini glass with a brown-sugared rim. Shake all ingredients with ice, strain into the prepared glass, and serve.", @@ -68101,7 +68101,7 @@ "espresso" ], "title": "Espresso Cocktail recipe", - "url": "http://www.drinksmixer.com/drink7327.html" + "url": "https://www.drinksmixer.com/drink7327.html" }, { "directions": "Shake well and strain into a chilled martini glass. Garnish with flamed orange peel, and serve.", @@ -68113,7 +68113,7 @@ "orange juice" ], "title": "Fancy Nancy recipe", - "url": "http://www.drinksmixer.com/drink7328.html" + "url": "https://www.drinksmixer.com/drink7328.html" }, { "directions": "Shake all ingredients with ice and strain into a chilled martini glass. Garnish with flamed orange peel, and serve.", @@ -68124,7 +68124,7 @@ "lime juice" ], "title": "Fancy Tequila Cocktail recipe", - "url": "http://www.drinksmixer.com/drink7329.html" + "url": "https://www.drinksmixer.com/drink7329.html" }, { "directions": "Shake ingredients well with ice, and strain over crushed ice in a goblet. Dust with nutmeg, and serve.", @@ -68135,7 +68135,7 @@ "Angostura\u00ae bitters" ], "title": "Faux Nog recipe", - "url": "http://www.drinksmixer.com/drink7330.html" + "url": "https://www.drinksmixer.com/drink7330.html" }, { "directions": "Stir with ice to chill and strain into a chilled cocktail glass. Garnish with flamed orange peel, and serve.", @@ -68145,7 +68145,7 @@ "sweet vermouth" ], "title": "Fernet Branca Cocktail recipe", - "url": "http://www.drinksmixer.com/drink7331.html" + "url": "https://www.drinksmixer.com/drink7331.html" }, { "directions": "Shake all ingredients with ice and strain into an old-fashioned glass. Garnish with a lemon wedge, and serve.", @@ -68156,7 +68156,7 @@ "Angostura\u00ae bitters" ], "title": "Fitzgerald recipe", - "url": "http://www.drinksmixer.com/drink7332.html" + "url": "https://www.drinksmixer.com/drink7332.html" }, { "directions": "Muddle the pineapple pieces and cointreau in the bottom of a mixing glass. Add vodka and pineapple juice and stir. Strain into a chilled cocktail glass and top with champagne. Garnish with a cherry, and serve.", @@ -68168,7 +68168,7 @@ "Champagne" ], "title": "Flirtini recipe", - "url": "http://www.drinksmixer.com/drink7333.html" + "url": "https://www.drinksmixer.com/drink7333.html" }, { "directions": "Shake whiskey, juice and syrup and strain into a highball glass filled with ice. Fill with lemon-lime soda, and serve.", @@ -68179,7 +68179,7 @@ "lemon-lime soda" ], "title": "Whiskey Fizz recipe", - "url": "http://www.drinksmixer.com/drink7334.html" + "url": "https://www.drinksmixer.com/drink7334.html" }, { "directions": "Build the gin, lime juice and raspberry liqueur in a highball glass filled with ice. Top with ginger ale, garnish with a wedge of lime and an edible flower, and serve.", @@ -68190,7 +68190,7 @@ "ginger ale" ], "title": "Floradora recipe", - "url": "http://www.drinksmixer.com/drink7335.html" + "url": "https://www.drinksmixer.com/drink7335.html" }, { "directions": "Shake ingredients well with ice and strain into a chilled cocktail glass. Garnish with a twist of lime peel, and serve.", @@ -68201,7 +68201,7 @@ "pomegranate juice" ], "title": "French Flamingo recipe", - "url": "http://www.drinksmixer.com/drink7336.html" + "url": "https://www.drinksmixer.com/drink7336.html" }, { "directions": "Shake all ingredients (except champagne) with ice and strain into an ice-filled goblet. Top with champagne, and serve.", @@ -68213,7 +68213,7 @@ "Champagne" ], "title": "French 95 recipe", - "url": "http://www.drinksmixer.com/drink7337.html" + "url": "https://www.drinksmixer.com/drink7337.html" }, { "directions": "Build ingredients in a highball glass over ice. Stir, garnish with a twist of lemon peel, and serve.", @@ -68223,7 +68223,7 @@ "Angostura\u00ae bitters" ], "title": "Gin Gin Highball recipe", - "url": "http://www.drinksmixer.com/drink7338.html" + "url": "https://www.drinksmixer.com/drink7338.html" }, { "directions": "Muddle the lime juice, syrup and mint sprigs at the bottom of a mixing glass. Add gin and ginger beer and shake well. Pour over ice in a highball glass, top with soda and garnish with a wedge of lime.", @@ -68236,7 +68236,7 @@ "soda water" ], "title": "Gin Gin Mule recipe", - "url": "http://www.drinksmixer.com/drink7339.html" + "url": "https://www.drinksmixer.com/drink7339.html" }, { "directions": "SHake all ingredients well with ice and strain into a chilled martini glass. Garnish with grated orange zest, and serve.", @@ -68248,7 +68248,7 @@ "egg" ], "title": "Golden Girl recipe", - "url": "http://www.drinksmixer.com/drink7340.html" + "url": "https://www.drinksmixer.com/drink7340.html" }, { "directions": "Shake all ingredients with ice and strain into a small martini glass.", @@ -68258,7 +68258,7 @@ "honey syrup" ], "title": "Happy Honey Cocktail recipe", - "url": "http://www.drinksmixer.com/drink7341.html" + "url": "https://www.drinksmixer.com/drink7341.html" }, { "directions": "Muddle two mint sprigs with vermouth and absinthe in a mixing glass. Add gin, shake with ice and strain into a chilled cocktail glass. Garnish with a stuffed olive and remaining mint sprig, and serve.", @@ -68269,7 +68269,7 @@ "gin" ], "title": "Harry's Cocktail recipe", - "url": "http://www.drinksmixer.com/drink7342.html" + "url": "https://www.drinksmixer.com/drink7342.html" }, { "directions": "Shake ingredients with ice and strain into a large goblet. Garnish with a mint sprig and orange slice, and serve.", @@ -68281,7 +68281,7 @@ "Angostura\u00ae bitters" ], "title": "Harry's Harveys Punch recipe", - "url": "http://www.drinksmixer.com/drink7343.html" + "url": "https://www.drinksmixer.com/drink7343.html" }, { "directions": "Shake all ingredients with ice and strain into an old-fashioned glass. Garnish with a cherry and pineapple slice, and serve.", @@ -68292,7 +68292,7 @@ "pineapple juice" ], "title": "Hawaiian Stone Sour recipe", - "url": "http://www.drinksmixer.com/drink7344.html" + "url": "https://www.drinksmixer.com/drink7344.html" }, { "directions": "Shake all ingredients well with ice and strain into a chilled cocktail glass. Garnish with a twist of lemon peel, and serve.", @@ -68302,7 +68302,7 @@ "orange bitters" ], "title": "Hi Ho Cocktail recipe", - "url": "http://www.drinksmixer.com/drink7345.html" + "url": "https://www.drinksmixer.com/drink7345.html" }, { "directions": "Shake all ingredients well with ice and strain into a sugar-rimmed cocktail glass. Garnish with a twist of lemon peel, and serve.", @@ -68315,7 +68315,7 @@ "Angostura\u00ae bitters" ], "title": "Honolulu Cocktail recipe", - "url": "http://www.drinksmixer.com/drink7346.html" + "url": "https://www.drinksmixer.com/drink7346.html" }, { "directions": "Build the vodka and lemonade in a large pint glass filled with ice, and top with a dash of creme de menthe. Garnish with an edible orchid flower.", @@ -68325,7 +68325,7 @@ "white creme de menthe" ], "title": "Ice House Highball recipe", - "url": "http://www.drinksmixer.com/drink7347.html" + "url": "https://www.drinksmixer.com/drink7347.html" }, { "directions": "Shake well with ice and pour over ice cubes (on the rocks) in an old-fashioned glass.", @@ -68334,7 +68334,7 @@ "Galliano\u00ae herbal liqueur" ], "title": "International Stinger recipe", - "url": "http://www.drinksmixer.com/drink7348.html" + "url": "https://www.drinksmixer.com/drink7348.html" }, { "directions": "Shake all ingredients well with ice. Strain into an iced highball glass, top with soda, stir, and serve.", @@ -68346,7 +68346,7 @@ "soda water" ], "title": "Irish Coconut recipe", - "url": "http://www.drinksmixer.com/drink7349.html" + "url": "https://www.drinksmixer.com/drink7349.html" }, { "directions": "Combine the whiskey, coffee and syrup in an irish coffee cup. Gently ladle the cream on top, and serve.", @@ -68357,7 +68357,7 @@ "whipped cream" ], "title": "Irish Coffee #4 recipe", - "url": "http://www.drinksmixer.com/drink7350.html" + "url": "https://www.drinksmixer.com/drink7350.html" }, { "directions": "Build over ice in a highball glass. Garnish with a wedge of lime, and serve.", @@ -68368,7 +68368,7 @@ "Angostura\u00ae bitters" ], "title": "Island Breeze recipe", - "url": "http://www.drinksmixer.com/drink7351.html" + "url": "https://www.drinksmixer.com/drink7351.html" }, { "directions": "Shake well with ice and serve straight up or over ice in an old-fashioned glass. Float a rose petal on the surface, and serve.", @@ -68379,7 +68379,7 @@ "heavy cream" ], "title": "Island Rose recipe", - "url": "http://www.drinksmixer.com/drink7352.html" + "url": "https://www.drinksmixer.com/drink7352.html" }, { "directions": "Shake all ingredients with ice and strain into a chilled cocktail glass.", @@ -68391,7 +68391,7 @@ "grapefruit juice" ], "title": "Jacana recipe", - "url": "http://www.drinksmixer.com/drink7353.html" + "url": "https://www.drinksmixer.com/drink7353.html" }, { "directions": "Strip the leaves from one sprig of mint and muddle them together with the peach liqueur and wedges. Add cognac (or bourbon) and shake. Strain into a highball glass filled with crushed ice and stir until the outside of the glass frosts. Add more crushed ice, if needed. Garnish with a second mint sprig, and serve.", @@ -68402,7 +68402,7 @@ "cognac" ], "title": "Peach Brandy Julep recipe", - "url": "http://www.drinksmixer.com/drink7354.html" + "url": "https://www.drinksmixer.com/drink7354.html" }, { "directions": "Muddle the leaves from two sprigs of mint, with the pineapple wedges and simply syrup, in a mixing glass. Add bourbon and ice, and shake well. Strain into a highball glass filled with crushed ice, and stir well until frosted. Garnish with two further mint sprigs, and serve.", @@ -68413,7 +68413,7 @@ "bourbon whiskey" ], "title": "Pineapple Julep recipe", - "url": "http://www.drinksmixer.com/drink7355.html" + "url": "https://www.drinksmixer.com/drink7355.html" }, { "directions": "Muddle one of the mint sprigs with apricot brandy in the bottom of a mixing glass. Add bourbon and strain into a highball glass filled with crushed ice. Swirl with a barspoon until the outer glass frosts. Garnish with a mint sprig, and serve.", @@ -68423,7 +68423,7 @@ "bourbon whiskey" ], "title": "Rainbow Julep recipe", - "url": "http://www.drinksmixer.com/drink7356.html" + "url": "https://www.drinksmixer.com/drink7356.html" }, { "directions": "Shake all ingredients well with ice, and strain into four seperate one-ounce shot glasses.", @@ -68434,7 +68434,7 @@ "Angostura\u00ae bitters" ], "title": "Jump Shot recipe", - "url": "http://www.drinksmixer.com/drink7357.html" + "url": "https://www.drinksmixer.com/drink7357.html" }, { "directions": "Serve pousse cafe in a cordial glass.", @@ -68443,7 +68443,7 @@ "heavy cream" ], "title": "King Alfonse recipe", - "url": "http://www.drinksmixer.com/drink7358.html" + "url": "https://www.drinksmixer.com/drink7358.html" }, { "directions": "Pour ingredients into a cocktail shaker with ice and shake extremely well. Serve in a frosted glass and dust with freshly grated nutmeg and orange zest.", @@ -68454,7 +68454,7 @@ "eggs" ], "title": "Knickerbein Cocktail recipe", - "url": "http://www.drinksmixer.com/drink7359.html" + "url": "https://www.drinksmixer.com/drink7359.html" }, { "directions": "Combine all ingredients in a blender until smooth consistency. Rim a hurricane glass with grenadine and coconut shavings, and pour in the mixture. Serve.", @@ -68468,7 +68468,7 @@ "ice" ], "title": "Latin Love recipe", - "url": "http://www.drinksmixer.com/drink7360.html" + "url": "https://www.drinksmixer.com/drink7360.html" }, { "directions": "Stir the lemon juice, grenadine and simple syrup together in a white wine glass. Add ice, top with equal parts 7-up and soda water, and serve.", @@ -68480,7 +68480,7 @@ "soda water" ], "title": "Lemon Daisy recipe", - "url": "http://www.drinksmixer.com/drink7361.html" + "url": "https://www.drinksmixer.com/drink7361.html" }, { "directions": "Shake well with ice, strain into a chilled martini glass, and serve.", @@ -68490,7 +68490,7 @@ "white creme de cacao" ], "title": "Lemon Meringue recipe", - "url": "http://www.drinksmixer.com/drink7362.html" + "url": "https://www.drinksmixer.com/drink7362.html" }, { "directions": "Stir ingredients and strain into a cocktail glass. Garnish with a green maraschino cherry, and serve.", @@ -68500,7 +68500,7 @@ "green creme de menthe" ], "title": "Leprechaun's Delight recipe", - "url": "http://www.drinksmixer.com/drink7363.html" + "url": "https://www.drinksmixer.com/drink7363.html" }, { "directions": "Pour campari, gin and orange juice into a champagne flute. Top with champagne, garnish with a twist of lemon and orange peel, and serve.", @@ -68511,7 +68511,7 @@ "Champagne" ], "title": "Le Perroquet recipe", - "url": "http://www.drinksmixer.com/drink7364.html" + "url": "https://www.drinksmixer.com/drink7364.html" }, { "directions": "Build over ice in a highball glass. Squeeze in lemon wedges, stir, and serve.", @@ -68524,7 +68524,7 @@ "lemon" ], "title": "Electric Iced Tea recipe", - "url": "http://www.drinksmixer.com/drink7365.html" + "url": "https://www.drinksmixer.com/drink7365.html" }, { "directions": "Shake all ingredients (except cola) with ice and strain into a collins glass three-quarters filled with ice. Top with coca-cola and stir. Garnish a wedge of lemon, and serve.", @@ -68537,7 +68537,7 @@ "Coca-Cola\u00ae" ], "title": "London Iced Tea recipe", - "url": "http://www.drinksmixer.com/drink7366.html" + "url": "https://www.drinksmixer.com/drink7366.html" }, { "directions": "Build over ice in a highball glass. Fill with 7-up, garnish with a lemon wedge, and serve.", @@ -68550,7 +68550,7 @@ "7-Up\u00ae soda" ], "title": "Miami Iced Tea recipe", - "url": "http://www.drinksmixer.com/drink7367.html" + "url": "https://www.drinksmixer.com/drink7367.html" }, { "directions": "Shake well with ice, strain into a chilled cocktail glass, and serve.", @@ -68562,7 +68562,7 @@ "green creme de menthe" ], "title": "Leo Special recipe", - "url": "http://www.drinksmixer.com/drink7368.html" + "url": "https://www.drinksmixer.com/drink7368.html" }, { "directions": "Shake well with ice and strain into a martini or cocktail glass. Garnish with a lemon wheel, and serve.", @@ -68572,7 +68572,7 @@ "lemon juice" ], "title": "Lizzy Sour recipe", - "url": "http://www.drinksmixer.com/drink7369.html" + "url": "https://www.drinksmixer.com/drink7369.html" }, { "directions": "Slice the lemon half further into four quarters, and drop into to a mixing glass. Add triple sec and muddle well. Add absolut mandrin and ice, shake well, and pour out into an old-fashioned glass. Serve.", @@ -68582,7 +68582,7 @@ "Absolut\u00ae Mandrin vodka" ], "title": "Lucky Double recipe", - "url": "http://www.drinksmixer.com/drink7370.html" + "url": "https://www.drinksmixer.com/drink7370.html" }, { "directions": "Shake all ingredients with ice and strain into a chilled cocktail glass. Dust with nutmeg, and serve.", @@ -68593,7 +68593,7 @@ "heavy cream" ], "title": "Lust for Life recipe", - "url": "http://www.drinksmixer.com/drink7371.html" + "url": "https://www.drinksmixer.com/drink7371.html" }, { "directions": "Shake all ingredients with ice, strain into an old-fashioned glass over crushed ice, and serve.", @@ -68604,7 +68604,7 @@ "heavy cream" ], "title": "Macarena Mist recipe", - "url": "http://www.drinksmixer.com/drink7372.html" + "url": "https://www.drinksmixer.com/drink7372.html" }, { "directions": "Shake all ingredients with ice and strain into an old-fashioned glass filled with ice. Garnish with a mint sprig and a slice of lime, and serve.", @@ -68616,7 +68616,7 @@ "mint" ], "title": "Madison Avenue Cocktail recipe", - "url": "http://www.drinksmixer.com/drink7373.html" + "url": "https://www.drinksmixer.com/drink7373.html" }, { "directions": "Cut the lemon half into four quarters. Muddle with the cherry brandy in the bottom of a mixing glass. Add vodka and ice, and shake well. Pour into an old-fashioned glass, and serve.", @@ -68626,7 +68626,7 @@ "Absolut\u00ae Mandrin vodka" ], "title": "Mandrin Cherry Smash recipe", - "url": "http://www.drinksmixer.com/drink7374.html" + "url": "https://www.drinksmixer.com/drink7374.html" }, { "directions": "Shake all ingredients with ice, strain into a chilled cocktail glass, and serve.", @@ -68637,7 +68637,7 @@ "Angostura\u00ae bitters" ], "title": "Mark Twain Cocktail recipe", - "url": "http://www.drinksmixer.com/drink7375.html" + "url": "https://www.drinksmixer.com/drink7375.html" }, { "directions": "Shake ingredients well with ice and strain into an old-fashioned glass filled with ice. Squeeze in a piece of lemon and orange, and serve.", @@ -68647,7 +68647,7 @@ "Angostura\u00ae bitters" ], "title": "Marlene Dietrich recipe", - "url": "http://www.drinksmixer.com/drink7376.html" + "url": "https://www.drinksmixer.com/drink7376.html" }, { "directions": "Stir the whiskey and liqueur in a mixing glass with ice and strain into a chilled cocktail glass. Garnish with a slice of apple, and serve.", @@ -68656,7 +68656,7 @@ "Berentzen's\u00ae apple liqueur" ], "title": "Apple Manhattan recipe", - "url": "http://www.drinksmixer.com/drink7377.html" + "url": "https://www.drinksmixer.com/drink7377.html" }, { "directions": "Stir with ice to chill and strain into a chilled cocktail glass. Garnish with a cherry, and serve.", @@ -68666,7 +68666,7 @@ "sweet vermouth" ], "title": "Eastern Manhattan recipe", - "url": "http://www.drinksmixer.com/drink7378.html" + "url": "https://www.drinksmixer.com/drink7378.html" }, { "directions": "Stir with ice to chill and strain into a chilled cocktail glass. Garnish with a cherry, and serve.", @@ -68676,7 +68676,7 @@ "Angostura\u00ae bitters" ], "title": "Red Manhattan recipe", - "url": "http://www.drinksmixer.com/drink7379.html" + "url": "https://www.drinksmixer.com/drink7379.html" }, { "directions": "Shake all ingredients well with ice and pour on the rocks in an old-fashioned glass. Garnish with a slice of orange and a cherry, and serve.", @@ -68687,7 +68687,7 @@ "orange juice" ], "title": "Man o' War recipe", - "url": "http://www.drinksmixer.com/drink7380.html" + "url": "https://www.drinksmixer.com/drink7380.html" }, { "directions": "Shake all ingredients well with ice and strain into a chilled cocktail glass. Garnish with flamed orange peel, and serve.", @@ -68700,7 +68700,7 @@ "maraschino liqueur" ], "title": "Maragato recipe", - "url": "http://www.drinksmixer.com/drink7381.html" + "url": "https://www.drinksmixer.com/drink7381.html" }, { "directions": "Mix ingredients together in a blender and pour into a martini glass. Float a small amount of whipped cream over the back of the spoon into the middle of the drink, garnish with a mint leaf, and serve.", @@ -68711,7 +68711,7 @@ "whipped cream" ], "title": "Black Banana recipe", - "url": "http://www.drinksmixer.com/drink7382.html" + "url": "https://www.drinksmixer.com/drink7382.html" }, { "directions": "Shake ingredients and pour into a champagne tulip. Top with dry sparkling wine, and serve.", @@ -68723,7 +68723,7 @@ "dry sparkling wine" ], "title": "Black Tequila recipe", - "url": "http://www.drinksmixer.com/drink7383.html" + "url": "https://www.drinksmixer.com/drink7383.html" }, { "directions": "Mix ingredients in a blender and pour into a cocktail glass. Garnish with redcurrants, chocolate flakes and a mint leaf.", @@ -68734,7 +68734,7 @@ "vodka" ], "title": "Excalibur recipe", - "url": "http://www.drinksmixer.com/drink7384.html" + "url": "https://www.drinksmixer.com/drink7384.html" }, { "directions": "Mix ingredients together in a shaker or blender and pour into a cocktail glass. Gently beat some cream and pour on top.", @@ -68746,7 +68746,7 @@ "whipped cream" ], "title": "Sweet Temptation recipe", - "url": "http://www.drinksmixer.com/drink7385.html" + "url": "https://www.drinksmixer.com/drink7385.html" }, { "directions": "Shake ingredients in a shaker and pour into a champagne tulip. Top with dry red sparkling wine. Garnish with a red cherry on a cocktail stick, and serve.", @@ -68758,7 +68758,7 @@ "red sparkling wine" ], "title": "Black Mozart Sparkler recipe", - "url": "http://www.drinksmixer.com/drink7386.html" + "url": "https://www.drinksmixer.com/drink7386.html" }, { "directions": "Pour mozart and coffee into an irish coffee cup, and stir. Top with cream, and serve.", @@ -68768,7 +68768,7 @@ "whipped cream" ], "title": "Mozart Kaffee recipe", - "url": "http://www.drinksmixer.com/drink7387.html" + "url": "https://www.drinksmixer.com/drink7387.html" }, { "directions": "Pour sprite over three or four ice cubes in a highball glass. Add black mozart chocolate liqueur and garnish with a slice of lemon. Add a straw, and serve.", @@ -68777,7 +68777,7 @@ "Mozart\u00ae Black chocolate liqueur" ], "title": "Mozart Esprit recipe", - "url": "http://www.drinksmixer.com/drink7388.html" + "url": "https://www.drinksmixer.com/drink7388.html" }, { "directions": "Pour ingredients into a chilled shot glass, stir, and serve.", @@ -68786,7 +68786,7 @@ "Fernet Branca\u00ae Menta" ], "title": "Black Menta recipe", - "url": "http://www.drinksmixer.com/drink7389.html" + "url": "https://www.drinksmixer.com/drink7389.html" }, { "directions": "Pour ingredients over two or three ice cubes in a chilled cocktail glass. Stir, and serve.", @@ -68795,7 +68795,7 @@ "limoncello lemon liqueur" ], "title": "Black Lemon recipe", - "url": "http://www.drinksmixer.com/drink7390.html" + "url": "https://www.drinksmixer.com/drink7390.html" }, { "directions": "Shake with ice and strain into a chilled cocktail glass with a salted rim. Garnish with a slice of green apple, and serve.", @@ -68805,7 +68805,7 @@ "lemon juice" ], "title": "Big Apple Margarita recipe", - "url": "http://www.drinksmixer.com/drink7391.html" + "url": "https://www.drinksmixer.com/drink7391.html" }, { "directions": "Shake with ice, strain into a chilled cocktail glass, and serve.", @@ -68816,7 +68816,7 @@ "Cointreau\u00ae orange liqueur" ], "title": "Bloody Margarita recipe", - "url": "http://www.drinksmixer.com/drink7392.html" + "url": "https://www.drinksmixer.com/drink7392.html" }, { "directions": "Shake 100% blue agava tequila with grand marnier and lime juice, and strain into a chilled salt-rimmed cocktail glass. Serve.", @@ -68826,7 +68826,7 @@ "lime juice" ], "title": "Cadillac Margarita recipe", - "url": "http://www.drinksmixer.com/drink7393.html" + "url": "https://www.drinksmixer.com/drink7393.html" }, { "directions": "Pour all ingredients into a blender and blend. Strain into a margarita glass rimmed with coarse salt, garnish with a wheel of lime, and serve.", @@ -68839,7 +68839,7 @@ "cracked ice" ], "title": "Frozen Passion Margarita recipe", - "url": "http://www.drinksmixer.com/drink7394.html" + "url": "https://www.drinksmixer.com/drink7394.html" }, { "directions": "Shake all ingredients well with ice and strain into a chilled cocktail glass rimmed with coarse salt. Garnish with a lime wheel, and serve.", @@ -68850,7 +68850,7 @@ "lime juice" ], "title": "Passion Margarita recipe", - "url": "http://www.drinksmixer.com/drink7395.html" + "url": "https://www.drinksmixer.com/drink7395.html" }, { "directions": "Shake all ingredients with ice and strain into a chilled cocktail glass with a salted rim. Serve.", @@ -68861,7 +68861,7 @@ "tangerine juice" ], "title": "Tangerine Margarita recipe", - "url": "http://www.drinksmixer.com/drink7396.html" + "url": "https://www.drinksmixer.com/drink7396.html" }, { "directions": "Pour gin and vermouth into a mixing glass filled with ice, and stir well. Strain into a chilled martini glass, garnish with an olive, and serve.", @@ -68870,7 +68870,7 @@ "dry vermouth" ], "title": "Nick and Nora Martini recipe", - "url": "http://www.drinksmixer.com/drink7397.html" + "url": "https://www.drinksmixer.com/drink7397.html" }, { "directions": "Pour into a mixing glass filled with ice, and stir well. Strain into a chilled martini glass, add a twist of lemon peel, and serve.", @@ -68881,7 +68881,7 @@ "gin" ], "title": "Knickerbocker Martini recipe", - "url": "http://www.drinksmixer.com/drink7398.html" + "url": "https://www.drinksmixer.com/drink7398.html" }, { "directions": "Stir the vodka with ice in a mixing glass. Strain into a chilled cocktail glass, garnish with a pitted cocktail olive, and serve in front with an open bottle of vermouth situated in front of a fan across the room.", @@ -68889,7 +68889,7 @@ "vodka" ], "title": "Vodkatini recipe", - "url": "http://www.drinksmixer.com/drink7399.html" + "url": "https://www.drinksmixer.com/drink7399.html" }, { "directions": "Assemble all ingredients in a cocktail shaker and shake well with ice. Strain into a chilled cocktail glass, garnish with a slice of apple, and serve.", @@ -68900,7 +68900,7 @@ "lemon juice" ], "title": "Sour Apple Martini recipe", - "url": "http://www.drinksmixer.com/drink7400.html" + "url": "https://www.drinksmixer.com/drink7400.html" }, { "directions": "Mix all ingredients together in a large pitcher with ice. Stir 50 times to properly dilute the drink and remove ice. Cover and refrigerate until ready to use. Pour into a chilled martini glasses. Garnish each with a twist of orange peel and an apple slice, and serve.", @@ -68910,7 +68910,7 @@ "Stoli\u00ae Ohranj vodka" ], "title": "Apples and Oranges Martini recipe", - "url": "http://www.drinksmixer.com/drink7401.html" + "url": "https://www.drinksmixer.com/drink7401.html" }, { "directions": "Combine the sugar and cocoa powder in a saucer. Dampen the outside rim of a chilled cocktail glass by rubbing the orange piece around it, and rim with cocoa powder. Stir together the absolut kurant and godiva with ice in a mixing glass, and strain into the prepared glass. Serve.", @@ -68922,7 +68922,7 @@ "sugar" ], "title": "Broken Heart Martini recipe", - "url": "http://www.drinksmixer.com/drink7402.html" + "url": "https://www.drinksmixer.com/drink7402.html" }, { "directions": "Muddle the melon, honey syrup, maraschino liqueur and lime juice together in a large mixing glass. Add vodka and ice. Shake and strain into a chilled cocktail glass, garnish with a sprig of mint, and serve.", @@ -68934,7 +68934,7 @@ "Absolut\u00ae Citron vodka" ], "title": "Melon Martini recipe", - "url": "http://www.drinksmixer.com/drink7403.html" + "url": "https://www.drinksmixer.com/drink7403.html" }, { "directions": "Stir ingredients together in a mixing glass with ice. Strain into a chilled cocktail glass, garnish with flamed orange peel, and serve.", @@ -68943,7 +68943,7 @@ "gin" ], "title": "Pineau Martini recipe", - "url": "http://www.drinksmixer.com/drink7404.html" + "url": "https://www.drinksmixer.com/drink7404.html" }, { "directions": "Shake all ingredients well with ice and strain into a chilled martini glass. Add a dash of rose water if available. Garnish with flamed orange peel, and serve. Our fan Murray W. on Facebook recommends trying the recipe with Grand Mariner [or Cointreau] instead of simple syrup. ", @@ -68954,7 +68954,7 @@ "simple syrup" ], "title": "Pomegranate Martini recipe", - "url": "http://www.drinksmixer.com/drink7405.html" + "url": "https://www.drinksmixer.com/drink7405.html" }, { "directions": "Stir ingredients with ice and strain into a chilled cocktail glass. Garnish with flamed orange peel, and serve.", @@ -68964,7 +68964,7 @@ "Dubonnet\u00ae Rouge vermouth" ], "title": "Rosy Martini recipe", - "url": "http://www.drinksmixer.com/drink7406.html" + "url": "https://www.drinksmixer.com/drink7406.html" }, { "directions": "Stir both ingredients together with ice to chill. Garnish with a twist of lemon peel, and serve.", @@ -68973,7 +68973,7 @@ "Scotch whisky" ], "title": "Smoky Martini recipe", - "url": "http://www.drinksmixer.com/drink7407.html" + "url": "https://www.drinksmixer.com/drink7407.html" }, { "directions": "Shake ingredients with ice and strain into a chilled cocktail glass. Garnish with flamed orange peel, and serve.", @@ -68984,7 +68984,7 @@ "orange bitters" ], "title": "Soho Martini recipe", - "url": "http://www.drinksmixer.com/drink7408.html" + "url": "https://www.drinksmixer.com/drink7408.html" }, { "directions": "Stir together in a mixing glass filled with ice. Strain into a chilled cocktail glass, garnish with a twist of lemon peel, and serve.", @@ -68993,7 +68993,7 @@ "gin" ], "title": "Upside-Down Martini recipe", - "url": "http://www.drinksmixer.com/drink7409.html" + "url": "https://www.drinksmixer.com/drink7409.html" }, { "directions": "Shake ingredients with ice and strain into a chilled cocktail glass. Garnish with a sprig of mint, and serve.", @@ -69004,7 +69004,7 @@ "watermelon juice" ], "title": "Watermelon Martini recipe", - "url": "http://www.drinksmixer.com/drink7410.html" + "url": "https://www.drinksmixer.com/drink7410.html" }, { "directions": "Add a dash of frangelico to a mixing glass, swill to coat, and discard the excess. Add the rum, gin and lime juice, stir, and strain into a cocktail glass. Garnish with a twist of lemon peel, and serve.", @@ -69015,7 +69015,7 @@ "Rose's\u00ae lime juice" ], "title": "Winston Martini recipe", - "url": "http://www.drinksmixer.com/drink7411.html" + "url": "https://www.drinksmixer.com/drink7411.html" }, { "directions": "Stir to chill in a mixing glass with ice. Strain into a chilled cocktail glass, and garnish with oriental fruit or litchi nut.", @@ -69024,7 +69024,7 @@ "gin" ], "title": "Yin Martini recipe", - "url": "http://www.drinksmixer.com/drink7412.html" + "url": "https://www.drinksmixer.com/drink7412.html" }, { "directions": "Pour into a mixing glass with ice and stir. Strain into a chilled cocktail glass, garnish with olives, and serve.", @@ -69033,7 +69033,7 @@ "sake rice wine" ], "title": "Yang Martini recipe", - "url": "http://www.drinksmixer.com/drink7413.html" + "url": "https://www.drinksmixer.com/drink7413.html" }, { "directions": "Blend all ingredients with crushed ice and pour into a collins glass. Garnish with flamed orange peel, and serve.", @@ -69045,7 +69045,7 @@ "water" ], "title": "Meloncholy Baby recipe", - "url": "http://www.drinksmixer.com/drink7414.html" + "url": "https://www.drinksmixer.com/drink7414.html" }, { "directions": "Blend ingredients with a handful of ice in a mixing glass. Pour into a large goblet, garnish with melon balls, and serve.", @@ -69056,7 +69056,7 @@ "lime juice" ], "title": "Melon Daiquiri recipe", - "url": "http://www.drinksmixer.com/drink7415.html" + "url": "https://www.drinksmixer.com/drink7415.html" }, { "directions": "Muddle the melon, sugar syrup, maraschino liqueur and lime juice together in a container. Add rum and ice, shake and strain into a chilled cocktail glass. Garnish with fresh sprigs of mint, and serve.", @@ -69068,7 +69068,7 @@ "white rum" ], "title": "Melon Lime Daiquiri recipe", - "url": "http://www.drinksmixer.com/drink7416.html" + "url": "https://www.drinksmixer.com/drink7416.html" }, { "directions": "Shake all ingredients with ice, strain into a chilled cocktail glass, and serve.", @@ -69079,7 +69079,7 @@ "cream" ], "title": "Mexican Blonde recipe", - "url": "http://www.drinksmixer.com/drink7417.html" + "url": "https://www.drinksmixer.com/drink7417.html" }, { "directions": "Shake with ice, strain into a large highball glass, and serve.", @@ -69092,7 +69092,7 @@ "pepper vodka" ], "title": "Mud and Blood recipe", - "url": "http://www.drinksmixer.com/drink7418.html" + "url": "https://www.drinksmixer.com/drink7418.html" }, { "directions": "Shake all ingredients with ice and pour over ice in an old-fashioned glass.", @@ -69103,7 +69103,7 @@ "cream" ], "title": "Mud Slide recipe", - "url": "http://www.drinksmixer.com/drink7419.html" + "url": "https://www.drinksmixer.com/drink7419.html" }, { "directions": "Combine ingredients in a shot glass, and serve.", @@ -69113,7 +69113,7 @@ "espresso" ], "title": "Negrita recipe", - "url": "http://www.drinksmixer.com/drink7420.html" + "url": "https://www.drinksmixer.com/drink7420.html" }, { "directions": "Stir ingredients with ice and strain into a chilled cocktail glass. Garnish with flamed orange peel, and serve.", @@ -69123,7 +69123,7 @@ "Orange Curacao liqueur" ], "title": "New Orleans Cocktail recipe", - "url": "http://www.drinksmixer.com/drink7421.html" + "url": "https://www.drinksmixer.com/drink7421.html" }, { "directions": "Shake all ingredients with ice and strain into a chilled cocktail glass. Dust with nutmeg, and serve.", @@ -69134,7 +69134,7 @@ "dark creme de cacao" ], "title": "Nutty Angel recipe", - "url": "http://www.drinksmixer.com/drink7422.html" + "url": "https://www.drinksmixer.com/drink7422.html" }, { "directions": "Shake ingredients well to chill and strain into a chilled cocktail glass. Garnish with flamed orange peel, and serve.", @@ -69146,7 +69146,7 @@ "orange juice" ], "title": "Old Flame recipe", - "url": "http://www.drinksmixer.com/drink7423.html" + "url": "https://www.drinksmixer.com/drink7423.html" }, { "directions": "Slice the lemon pieces in half and place into the bottom of a mixing glass. Add syrup and maraschino, and muddle well. Add an old-fashioned glass of ice to the mixing glass, then pour in the vodka. Shake well for 10 seconds, and pour everything out into the old-fashioned glass. Add additional cracked ice where needed, and serve.", @@ -69157,7 +69157,7 @@ "OP\u00ae flavored vodka" ], "title": "Op Smash recipe", - "url": "http://www.drinksmixer.com/drink7424.html" + "url": "https://www.drinksmixer.com/drink7424.html" }, { "directions": "Build in a large goblet with ice and stir. Garnish with a slice of orange, and serve.", @@ -69168,7 +69168,7 @@ "cranberry juice" ], "title": "Orange Breeze recipe", - "url": "http://www.drinksmixer.com/drink7425.html" + "url": "https://www.drinksmixer.com/drink7425.html" }, { "directions": "Shake ingredients well with ice and strain into a cocktail glass. Garnish with flamed lemon peel, and serve.", @@ -69178,7 +69178,7 @@ "creme de cassis" ], "title": "Paris Cocktail recipe", - "url": "http://www.drinksmixer.com/drink7426.html" + "url": "https://www.drinksmixer.com/drink7426.html" }, { "directions": "Shake all ingredients with ice and strain into a chilled cocktail glass. Add a drop or two of vanilla extract on top of the cream, and serve.", @@ -69188,7 +69188,7 @@ "heavy cream" ], "title": "Parisian Blond Cocktail recipe", - "url": "http://www.drinksmixer.com/drink7427.html" + "url": "https://www.drinksmixer.com/drink7427.html" }, { "directions": "Shake all ingredients with ice and strain into a cocktail glass. Garnish with a slice of peach, and serve.", @@ -69200,7 +69200,7 @@ "peach puree" ], "title": "Peach Melissa recipe", - "url": "http://www.drinksmixer.com/drink7428.html" + "url": "https://www.drinksmixer.com/drink7428.html" }, { "directions": "Shake the amer picon, lemon juice and grenadine well with ice and strain into a highball glass filled with ice. Top with soda, garnish with fruit, and serve.", @@ -69211,7 +69211,7 @@ "soda water" ], "title": "Picon Punch recipe", - "url": "http://www.drinksmixer.com/drink7429.html" + "url": "https://www.drinksmixer.com/drink7429.html" }, { "directions": "Shake all ingredients and strain into a cocktail glass. Serve hot, or cold.", @@ -69225,7 +69225,7 @@ "Angostura\u00ae bitters" ], "title": "Pilgrim Cocktail recipe", - "url": "http://www.drinksmixer.com/drink7430.html" + "url": "https://www.drinksmixer.com/drink7430.html" }, { "directions": "Shake all ingredients with ice and pour into a large goblet. Garnish with tropical fruit slices/pieces if available, and serve.", @@ -69239,7 +69239,7 @@ "Angostura\u00ae bitters" ], "title": "Pink Coral recipe", - "url": "http://www.drinksmixer.com/drink7431.html" + "url": "https://www.drinksmixer.com/drink7431.html" }, { "directions": "Shake all ingredients with ice and pour into an old-fashioned glass. Garnish with a cherry and an orange slice, and serve.", @@ -69250,7 +69250,7 @@ "simple syrup" ], "title": "Rainbow Sour recipe", - "url": "http://www.drinksmixer.com/drink7432.html" + "url": "https://www.drinksmixer.com/drink7432.html" }, { "directions": "Add tomato juice to a regular pint of lager, and serve.", @@ -69259,7 +69259,7 @@ "tomato juice" ], "title": "Red Beer recipe", - "url": "http://www.drinksmixer.com/drink7433.html" + "url": "https://www.drinksmixer.com/drink7433.html" }, { "directions": "Pour ricard and grenadine into a highball glass. Add water and ice, and serve.", @@ -69269,7 +69269,7 @@ "water" ], "title": "Ricard Tomate recipe", - "url": "http://www.drinksmixer.com/drink7434.html" + "url": "https://www.drinksmixer.com/drink7434.html" }, { "directions": "Pour gin, lime juice and cointreau into a highball glass three-quarters filled with ice. Fill with equal parts of cranberry juice and soda, and stir. Garnish with a slice of orange and lime, and serve.", @@ -69281,7 +69281,7 @@ "cranberry juice" ], "title": "City Rickey recipe", - "url": "http://www.drinksmixer.com/drink7435.html" + "url": "https://www.drinksmixer.com/drink7435.html" }, { "directions": "Pour gin, lime juice, orange juice and simple syrup into a highball glass three-quarters filled with ice. Fill with club soda and stir. Garnish with a slice of orange, and serve.", @@ -69293,7 +69293,7 @@ "club soda" ], "title": "Stone Rickey recipe", - "url": "http://www.drinksmixer.com/drink7436.html" + "url": "https://www.drinksmixer.com/drink7436.html" }, { "directions": "Build all ingredients in a collins glass and top with soda. Garnish with a spiral of lime peel, and serve.", @@ -69304,7 +69304,7 @@ "club soda" ], "title": "Lime Rickey recipe", - "url": "http://www.drinksmixer.com/drink7437.html" + "url": "https://www.drinksmixer.com/drink7437.html" }, { "directions": "Layer each ingredient, in turn, over the back of a spoon, in an old-fashioned glass three-quarters filled with ice. Serve.", @@ -69314,7 +69314,7 @@ "tequila" ], "title": "Rosarita recipe", - "url": "http://www.drinksmixer.com/drink7438.html" + "url": "https://www.drinksmixer.com/drink7438.html" }, { "directions": "Shake the tequila, cassis and lime juice and strain into an ice-filled highball glass. Fill with ginger ale, garnish with a slice of cucumber, and serve.", @@ -69325,7 +69325,7 @@ "ginger ale" ], "title": "Rosarita Highball recipe", - "url": "http://www.drinksmixer.com/drink7439.html" + "url": "https://www.drinksmixer.com/drink7439.html" }, { "directions": "Shake well with ice and strain into a chilled cocktail glass. Garnish with a flamed orange peel, and serve.", @@ -69336,7 +69336,7 @@ "orange juice" ], "title": "Rosetta recipe", - "url": "http://www.drinksmixer.com/drink7440.html" + "url": "https://www.drinksmixer.com/drink7440.html" }, { "directions": "Shake all ingredients with ice, strain into a small cocktail glass, and serve.", @@ -69347,7 +69347,7 @@ "orgeat syrup" ], "title": "Royal Hawaiian recipe", - "url": "http://www.drinksmixer.com/drink7441.html" + "url": "https://www.drinksmixer.com/drink7441.html" }, { "directions": "Shake all ingredients with ice and strain into a chilled cocktail glass. Garnish with flamed orange peel, and serve.", @@ -69358,7 +69358,7 @@ "grenadine syrup" ], "title": "Royal Romance recipe", - "url": "http://www.drinksmixer.com/drink7442.html" + "url": "https://www.drinksmixer.com/drink7442.html" }, { "directions": "Shake all ingredients with ice and pour over shaved ice in an old-fashioned glass.", @@ -69368,7 +69368,7 @@ "orange bitters" ], "title": "Rye Club Cocktail recipe", - "url": "http://www.drinksmixer.com/drink7443.html" + "url": "https://www.drinksmixer.com/drink7443.html" }, { "directions": "Shake all ingredients with ice and strain into a rimmed, ice-filled highball glass.", @@ -69380,7 +69380,7 @@ "Angostura\u00ae bitters" ], "title": "Salt-and-Pepper Highball recipe", - "url": "http://www.drinksmixer.com/drink7444.html" + "url": "https://www.drinksmixer.com/drink7444.html" }, { "directions": "Shake all ingredients with ice and strain into an ice-filled double old-fashioned glass. Garnish with a slice of orange and lime, and serve.", @@ -69391,7 +69391,7 @@ "orange juice" ], "title": "San Salvador recipe", - "url": "http://www.drinksmixer.com/drink7445.html" + "url": "https://www.drinksmixer.com/drink7445.html" }, { "directions": "Shake all ingredients with ice and strain into a cocktail glass. Garnish with flamed orange peel, and serve.", @@ -69404,7 +69404,7 @@ "orange juice" ], "title": "Scarlett's Torch recipe", - "url": "http://www.drinksmixer.com/drink7446.html" + "url": "https://www.drinksmixer.com/drink7446.html" }, { "directions": "Blend all ingredients in a blender, pour into a highball glass, and serve.", @@ -69415,7 +69415,7 @@ "lemon Italian ice" ], "title": "Scorpino recipe", - "url": "http://www.drinksmixer.com/drink7447.html" + "url": "https://www.drinksmixer.com/drink7447.html" }, { "directions": "Pour vodka into an iced highball glass. Fill partially with grapefruit juice and top with cranberry juice. Garnish with a lime wedge, and serve.", @@ -69425,7 +69425,7 @@ "cranberry juice" ], "title": "Sea Breeze recipe", - "url": "http://www.drinksmixer.com/drink7448.html" + "url": "https://www.drinksmixer.com/drink7448.html" }, { "directions": "Shake all ingredients well with ice and strain into a chilled cocktail glass. Garnish with flamed orange peel, and serve.", @@ -69435,7 +69435,7 @@ "maraschino liqueur" ], "title": "Sherry Cocktail recipe", - "url": "http://www.drinksmixer.com/drink7449.html" + "url": "https://www.drinksmixer.com/drink7449.html" }, { "directions": "Shake the gin, lemon juice and simple syrup with ice and strain into an ice-filled highball glass. Top with soda, garnish with a slice of orange and a cherry, and serve.", @@ -69447,7 +69447,7 @@ "soda water" ], "title": "Sloe Gin Fizz recipe", - "url": "http://www.drinksmixer.com/drink7450.html" + "url": "https://www.drinksmixer.com/drink7450.html" }, { "directions": "Build in an iced highball glass. Top with soda, and serve.", @@ -69457,7 +69457,7 @@ "club soda" ], "title": "Smith and Kearns recipe", - "url": "http://www.drinksmixer.com/drink7451.html" + "url": "https://www.drinksmixer.com/drink7451.html" }, { "directions": "Shake all ingredients with ice and strain into a cocktail glass. Garnish with flamed orange peel, and serve.", @@ -69468,7 +69468,7 @@ "simple syrup" ], "title": "South Beach recipe", - "url": "http://www.drinksmixer.com/drink7452.html" + "url": "https://www.drinksmixer.com/drink7452.html" }, { "directions": "Mix all ingredients together in a mixing glass with ice. Stir gently and strain into a chilled cocktail glass. Garnish with flamed orange peel, and serve.", @@ -69480,7 +69480,7 @@ "soda water" ], "title": "South Coast Cocktail recipe", - "url": "http://www.drinksmixer.com/drink7453.html" + "url": "https://www.drinksmixer.com/drink7453.html" }, { "directions": "Muddle one sprig of mint with the lime pieces, lime juice, and simple syrup in the bottom of a bar glass. Add gin and shake well. Pour into a goblet over crushed ice and stir until the outer-glass frosts. Top with soda water, garnish with remaining sprig of mint, and serve.", @@ -69493,7 +69493,7 @@ "limes" ], "title": "Southside recipe", - "url": "http://www.drinksmixer.com/drink7454.html" + "url": "https://www.drinksmixer.com/drink7454.html" }, { "directions": "Chill all ingredients (except champagne) and strain into a champagne flute. Top with champagne, and serve.", @@ -69505,7 +69505,7 @@ "Champagne" ], "title": "Sparkling Hunt Punch recipe", - "url": "http://www.drinksmixer.com/drink7455.html" + "url": "https://www.drinksmixer.com/drink7455.html" }, { "directions": "Muddle the mint leaves with the curacao and brandy in the bottom of a mixing glass. Add all other ingredients, shake well and strain into an old-fashioned glass. Garnish with a sprig of mint, and serve.", @@ -69518,7 +69518,7 @@ "orange juice" ], "title": "Steeplechase recipe", - "url": "http://www.drinksmixer.com/drink7456.html" + "url": "https://www.drinksmixer.com/drink7456.html" }, { "directions": "Stir all ingredients with ice and strain into a chilled cocktail glass. Garnish with flamed orange peel, and serve.", @@ -69528,7 +69528,7 @@ "Peychaud\u00ae bitters" ], "title": "Stella's Rose recipe", - "url": "http://www.drinksmixer.com/drink7457.html" + "url": "https://www.drinksmixer.com/drink7457.html" }, { "directions": "Shake all ingredients well with ice and strain into a chilled cocktail glass. Garnish with flamed orange peel, and serve.", @@ -69540,7 +69540,7 @@ "Angostura\u00ae bitters" ], "title": "Stork Club Cocktail recipe", - "url": "http://www.drinksmixer.com/drink7458.html" + "url": "https://www.drinksmixer.com/drink7458.html" }, { "directions": "Shake all ingredients well and strain into an ice-filled double old-fashioned glass. Garnish with slices of orange and lime, and serve.", @@ -69553,7 +69553,7 @@ "orange juice" ], "title": "Suffering Bastard recipe", - "url": "http://www.drinksmixer.com/drink7459.html" + "url": "https://www.drinksmixer.com/drink7459.html" }, { "directions": "Shake all ingredients and strain into a cocktail glass.", @@ -69563,7 +69563,7 @@ "Angostura\u00ae bitters" ], "title": "Sundowner recipe", - "url": "http://www.drinksmixer.com/drink7460.html" + "url": "https://www.drinksmixer.com/drink7460.html" }, { "directions": "Build over ice in a highball glass. Dust with nutmeg, and serve.", @@ -69573,7 +69573,7 @@ "orange juice" ], "title": "Sunflower Highball recipe", - "url": "http://www.drinksmixer.com/drink7461.html" + "url": "https://www.drinksmixer.com/drink7461.html" }, { "directions": "Shake all ingredients with ice and strain into a cocktail glass. Garnish with a twist of orange peel, and serve.", @@ -69586,7 +69586,7 @@ "simple syrup" ], "title": "Sunset Breeze recipe", - "url": "http://www.drinksmixer.com/drink7462.html" + "url": "https://www.drinksmixer.com/drink7462.html" }, { "directions": "Shake, strain into an iced cocktail glass, and serve.", @@ -69596,7 +69596,7 @@ "grapefruit juice" ], "title": "Suntory Cocktail recipe", - "url": "http://www.drinksmixer.com/drink7463.html" + "url": "https://www.drinksmixer.com/drink7463.html" }, { "directions": "Place the baked apple, sugar and applejack into a glass or mug. Fill the glass two-thirds full with boiling water, and grate a little nutmeg on top.", @@ -69607,7 +69607,7 @@ "nutmeg" ], "title": "Apple Toddy recipe", - "url": "http://www.drinksmixer.com/drink7464.html" + "url": "https://www.drinksmixer.com/drink7464.html" }, { "directions": "Build in a highball glass over ice, garnish with a wedge of lime, and serve.", @@ -69617,7 +69617,7 @@ "Coca-Cola\u00ae" ], "title": "Trinidad recipe", - "url": "http://www.drinksmixer.com/drink7465.html" + "url": "https://www.drinksmixer.com/drink7465.html" }, { "directions": "Build over ice in a highball glass. Garnish with a lime wedge, and serve.", @@ -69627,7 +69627,7 @@ "ginger ale" ], "title": "Tropical Highball recipe", - "url": "http://www.drinksmixer.com/drink7466.html" + "url": "https://www.drinksmixer.com/drink7466.html" }, { "directions": "Muddle all ingredients except the whiskey in a bar glass. Add whiskey, shake with ice, and strain into an old-fashioned glass. Garnish with a pineapple and lemon wedge, a cherry, and serve.", @@ -69640,7 +69640,7 @@ "Crown Royal\u00ae Canadian whisky" ], "title": "Tropical Whiskey Punch recipe", - "url": "http://www.drinksmixer.com/drink7467.html" + "url": "https://www.drinksmixer.com/drink7467.html" }, { "directions": "Shake all ingredients with ice and strain into a chilled cocktail glass. Serve.", @@ -69651,7 +69651,7 @@ "lemon juice" ], "title": "Twentieth Century recipe", - "url": "http://www.drinksmixer.com/drink7468.html" + "url": "https://www.drinksmixer.com/drink7468.html" }, { "directions": "Shake all ingredients with ice, strain into a chilled cocktail glass, and serve.", @@ -69662,7 +69662,7 @@ "lime juice" ], "title": "209 East Cocktail recipe", - "url": "http://www.drinksmixer.com/drink7469.html" + "url": "https://www.drinksmixer.com/drink7469.html" }, { "directions": "Shake the apricot brandy, orange juice and bitters with ice and strain into a chilled champagne flute. Top with champagne, garnish with flamed orange peel, and serve.", @@ -69673,7 +69673,7 @@ "Champagne" ], "title": "Valencia #2 recipe", - "url": "http://www.drinksmixer.com/drink7470.html" + "url": "https://www.drinksmixer.com/drink7470.html" }, { "directions": "Stir all ingredients with ice and strain into a chilled cocktail glass. Garnish with a twist of lemon peel, and serve.", @@ -69683,7 +69683,7 @@ "dry vermouth" ], "title": "Vendome recipe", - "url": "http://www.drinksmixer.com/drink7471.html" + "url": "https://www.drinksmixer.com/drink7471.html" }, { "directions": "Slice the lemon quarter in half, and muddle with the lime, syrup and chartreuse in a mixing glass. Add whiskey, shake well with ice, and strain into a highball glass filled with crushed ice. Garnish with a lemon and lime wedge, a cherry, and serve.", @@ -69695,7 +69695,7 @@ "American whiskey" ], "title": "Whiskey Daisy recipe", - "url": "http://www.drinksmixer.com/drink7472.html" + "url": "https://www.drinksmixer.com/drink7472.html" }, { "directions": "Muddle all ingredients except whiskey in a bar glass. Add whiskey, and shake with ice. Strain into an ice-filled old-fashioned glass, garnish with a sprig of mint and a peach slice, and serve.", @@ -69708,7 +69708,7 @@ "Canadian whisky" ], "title": "Whiskey Peach Smash recipe", - "url": "http://www.drinksmixer.com/drink7473.html" + "url": "https://www.drinksmixer.com/drink7473.html" }, { "directions": "Shake all ingredients well with ice and strain into a chilled wine glass. Garnish with grated nutmeg, and serve.", @@ -69720,7 +69720,7 @@ "Angostura\u00ae bitters" ], "title": "Whiskey Plush recipe", - "url": "http://www.drinksmixer.com/drink7474.html" + "url": "https://www.drinksmixer.com/drink7474.html" }, { "directions": "Muddle the lemon, mint, water and simply syrup in the bottom of a mixing glass. Add bourbon, shake, and strain into an old-fashioned glass filled with crushed ice. Garnish with a sprig of mint, and serve.", @@ -69732,7 +69732,7 @@ "water" ], "title": "Whiskey Smash recipe", - "url": "http://www.drinksmixer.com/drink7475.html" + "url": "https://www.drinksmixer.com/drink7475.html" }, { "directions": "Build all ingredients in a tall glass over ice. Stir, add a straw, and serve.", @@ -69743,7 +69743,7 @@ "Coca-Cola\u00ae" ], "title": "White Bat recipe", - "url": "http://www.drinksmixer.com/drink7476.html" + "url": "https://www.drinksmixer.com/drink7476.html" }, { "directions": "Combine all ingredients in a pitcher and whisk. Chill and serve dusted with freshly grated nutmeg.", @@ -69756,7 +69756,7 @@ "milk" ], "title": "White Tiger's Milk recipe", - "url": "http://www.drinksmixer.com/drink7477.html" + "url": "https://www.drinksmixer.com/drink7477.html" }, { "directions": "Shake all ingredients with ice and strain into a chilled cocktail glass. Serve.", @@ -69766,7 +69766,7 @@ "pineapple juice" ], "title": "Wonder Bra recipe", - "url": "http://www.drinksmixer.com/drink7478.html" + "url": "https://www.drinksmixer.com/drink7478.html" }, { "directions": "Pour the white mozart into a cordial glass. Slowly and carefully pour original mozart on top using the back of the spoon. Serve.", @@ -69775,7 +69775,7 @@ "Mozart\u00ae Original chocolate liqueur" ], "title": "Pousse Mozart recipe", - "url": "http://www.drinksmixer.com/drink7479.html" + "url": "https://www.drinksmixer.com/drink7479.html" }, { "directions": "Pour the chocolate liqueur over ice cubes in an old-fashioned glass. Add grand marnier, garnish with a slice of orange, and serve.", @@ -69784,7 +69784,7 @@ "Grand Marnier\u00ae orange liqueur" ], "title": "Mozart Sonatine recipe", - "url": "http://www.drinksmixer.com/drink7480.html" + "url": "https://www.drinksmixer.com/drink7480.html" }, { "directions": "Stir ingredients together in a mixing glass. Pour over ice cubes in a highball glass, add a straw, and serve.", @@ -69793,7 +69793,7 @@ "orange juice" ], "title": "Mozart Orange recipe", - "url": "http://www.drinksmixer.com/drink7481.html" + "url": "https://www.drinksmixer.com/drink7481.html" }, { "directions": "Serve on the rocks in a tall glass. Garnish with a sprig of mint.", @@ -69802,7 +69802,7 @@ "white creme de menthe" ], "title": "Mozart Mint recipe", - "url": "http://www.drinksmixer.com/drink7482.html" + "url": "https://www.drinksmixer.com/drink7482.html" }, { "directions": "Shake or blend ingredients and pour into a tall glass. Sprinkle with grated chocolate, add a straw, and serve.", @@ -69814,7 +69814,7 @@ "coffee powder" ], "title": "Mozart Milkshake recipe", - "url": "http://www.drinksmixer.com/drink7483.html" + "url": "https://www.drinksmixer.com/drink7483.html" }, { "directions": "Pour liquids into a hurricane glass, and add a scoop of ice cream on top. Sprinkle with chocolate shavings, add straws, and serve.", @@ -69824,7 +69824,7 @@ "vanilla ice cream" ], "title": "Mozart Cola recipe", - "url": "http://www.drinksmixer.com/drink7484.html" + "url": "https://www.drinksmixer.com/drink7484.html" }, { "directions": "Pour liquids into a champagne saucer. Add a dollop of whipped cream to the center, sprinkle with chocolate shavings, and serve.", @@ -69834,7 +69834,7 @@ "whipped cream" ], "title": "Don Giovanni recipe", - "url": "http://www.drinksmixer.com/drink7485.html" + "url": "https://www.drinksmixer.com/drink7485.html" }, { "directions": "Mix well in a shaker with three or four ice cubes. Strain into a cocktail glass, and serve.", @@ -69845,7 +69845,7 @@ "green creme de menthe" ], "title": "Papagena recipe", - "url": "http://www.drinksmixer.com/drink7486.html" + "url": "https://www.drinksmixer.com/drink7486.html" }, { "directions": "Mix well in a shaker with three or four ice cubes. Strain into an old-fashioned glass, garnish with a pineapple piece, and serve.", @@ -69856,7 +69856,7 @@ "orange liqueur" ], "title": "Painkiller recipe", - "url": "http://www.drinksmixer.com/drink7487.html" + "url": "https://www.drinksmixer.com/drink7487.html" }, { "directions": "Mix well in a shaker with three or four ice cubes. Pour into a cocktail glass, sprinkle with chocolate shavings, and serve.", @@ -69866,7 +69866,7 @@ "cream" ], "title": "Schoko Royal recipe", - "url": "http://www.drinksmixer.com/drink7488.html" + "url": "https://www.drinksmixer.com/drink7488.html" }, { "directions": "Shake ingredients well in a shaker. Strain into a cocktail glass glass over three or four ice cubes, and serve.", @@ -69875,7 +69875,7 @@ "amaretto almond liqueur" ], "title": "Magic Flute recipe", - "url": "http://www.drinksmixer.com/drink7489.html" + "url": "https://www.drinksmixer.com/drink7489.html" }, { "directions": "Shake well in a shaker with two ice cubes. Strain into a cocktail glass, add a short straw, and serve.", @@ -69884,7 +69884,7 @@ "Midori\u00ae melon liqueur" ], "title": "Butterfly recipe", - "url": "http://www.drinksmixer.com/drink7490.html" + "url": "https://www.drinksmixer.com/drink7490.html" }, { "directions": "Shake with three or four ice cubes in a cocktail shaker, and strain into a cocktail glass. Garnish with a maraschino cherry, and serve.", @@ -69893,7 +69893,7 @@ "Amadeus\u00ae almond liqueur" ], "title": "Amade recipe", - "url": "http://www.drinksmixer.com/drink7491.html" + "url": "https://www.drinksmixer.com/drink7491.html" }, { "directions": "Pour chambord into a wine glass filled with ice. Add sparkling water, squeeze in a slice of lemon and orange, and stir.", @@ -69904,7 +69904,7 @@ "orange" ], "title": "French Summer recipe", - "url": "http://www.drinksmixer.com/drink7492.html" + "url": "https://www.drinksmixer.com/drink7492.html" }, { "directions": "Blend with one cup of crushed ice in a shaker or blender for 30 seconds. Strain into a champagne saucer, and serve.", @@ -69915,7 +69915,7 @@ "powdered sugar" ], "title": "Chambord Daiquiri recipe", - "url": "http://www.drinksmixer.com/drink7493.html" + "url": "https://www.drinksmixer.com/drink7493.html" }, { "directions": "Combine all ingredients in a blender. Pour into a champagne saucer, and serve.", @@ -69926,7 +69926,7 @@ "crushed ice" ], "title": "Mistral recipe", - "url": "http://www.drinksmixer.com/drink7494.html" + "url": "https://www.drinksmixer.com/drink7494.html" }, { "directions": "Shake and strain into a hurricane glass filled with crushed ice. Garnish with a slice of lime, and serve.", @@ -69936,7 +69936,7 @@ "passion-fruit syrup" ], "title": "Bacardi Hurricane recipe", - "url": "http://www.drinksmixer.com/drink7495.html" + "url": "https://www.drinksmixer.com/drink7495.html" }, { "directions": "Combine all ingredients in a blender for 20 seconds. Pour into a wine glass, and serve.", @@ -69947,7 +69947,7 @@ "vanilla ice cream" ], "title": "Mont Blanc recipe", - "url": "http://www.drinksmixer.com/drink7496.html" + "url": "https://www.drinksmixer.com/drink7496.html" }, { "directions": "Shake ingredients vigorously with ice. Strain into a champagne flute, and add the bitters as an aromatic garnish.", @@ -69959,7 +69959,7 @@ "Angostura\u00ae bitters" ], "title": "Pisco Sour #2 recipe", - "url": "http://www.drinksmixer.com/drink7497.html" + "url": "https://www.drinksmixer.com/drink7497.html" }, { "directions": "Pour gin and vermouth into a cocktail glass. Squeeze a twist of lemon peel over the glass, drop into glass, and serve.", @@ -69968,7 +69968,7 @@ "vermouth" ], "title": "Holland Martini recipe", - "url": "http://www.drinksmixer.com/drink7498.html" + "url": "https://www.drinksmixer.com/drink7498.html" }, { "directions": "Combine Stoli vodka and grenadine in a shaker with ice. Add a splash of pineapple juice. Shake, strain into a shot glass, and serve.", @@ -69978,7 +69978,7 @@ "pineapple juice" ], "title": "Cherry Cheese Cake recipe", - "url": "http://www.drinksmixer.com/drink7499.html" + "url": "https://www.drinksmixer.com/drink7499.html" }, { "directions": "Combine the Hpnotiq with the cognac in a highball glass over ice. Admire the transformation, and enjoy. Chill both ingredients beforehand for best results.", @@ -69987,7 +69987,7 @@ "cognac" ], "title": "The Incredible Hulk recipe", - "url": "http://www.drinksmixer.com/drink7500.html" + "url": "https://www.drinksmixer.com/drink7500.html" }, { "directions": "Stir together the Hennessy cognac and the Hypnotic tropical-fruit liqueur to make a green incredible hulk color. Serve.", @@ -69996,7 +69996,7 @@ "Hpnotiq\u00ae liqueur" ], "title": "Incredible Hulk recipe", - "url": "http://www.drinksmixer.com/drink7501.html" + "url": "https://www.drinksmixer.com/drink7501.html" }, { "directions": "Out of a 20 oz bottle of Mountain Dew, empty enough of it so that the bottle's contents are directly below the first bump line from the top. Fill to the top with Smirnoff raspberry twist vodka. Mix lightly and enjoy.", @@ -70005,7 +70005,7 @@ "Mountain Dew\u00ae citrus soda" ], "title": "17 Twist recipe", - "url": "http://www.drinksmixer.com/drink7506.html" + "url": "https://www.drinksmixer.com/drink7506.html" }, { "directions": "Shake ingredients on ice until cold. Strain into a shot glass, and serve.", @@ -70017,7 +70017,7 @@ "lime juice" ], "title": "18 Till You Die recipe", - "url": "http://www.drinksmixer.com/drink7507.html" + "url": "https://www.drinksmixer.com/drink7507.html" }, { "directions": "Pour MD 20/20 (try any flavor) into a cup. Add Bacardi limon rum, and serve.", @@ -70026,7 +70026,7 @@ "Bacardi\u00ae Limon rum" ], "title": "20/20 Lemon recipe", - "url": "http://www.drinksmixer.com/drink7508.html" + "url": "https://www.drinksmixer.com/drink7508.html" }, { "directions": "Combine ingredients in a shot glass, and serve.", @@ -70038,7 +70038,7 @@ "Jose Cuervo\u00ae Especial gold tequila" ], "title": "5 Best Friends recipe", - "url": "http://www.drinksmixer.com/drink7510.html" + "url": "https://www.drinksmixer.com/drink7510.html" }, { "directions": "Pour coconut rum and 7-up into a highball glass. Add ice to suit, and serve.", @@ -70047,7 +70047,7 @@ "7-Up\u00ae Diet soda" ], "title": "7-Nut recipe", - "url": "http://www.drinksmixer.com/drink7511.html" + "url": "https://www.drinksmixer.com/drink7511.html" }, { "directions": "Pour the corona lager into a highball glass. Fill with V8 Splash, or vary amount to taste, and serve.", @@ -70056,7 +70056,7 @@ "Strawberry-Kiwi V8 Splash" ], "title": "A Splash of Mexico recipe", - "url": "http://www.drinksmixer.com/drink7512.html" + "url": "https://www.drinksmixer.com/drink7512.html" }, { "directions": "Thoroughly mix all ingredients in a blender to make a smoothie. Serve in a classic margarita glass. Garnish with either cherry, raspberries, strawberries, or all!", @@ -70069,7 +70069,7 @@ "black cherry ice cream" ], "title": "A Very Berry Surprise recipe", - "url": "http://www.drinksmixer.com/drink7513.html" + "url": "https://www.drinksmixer.com/drink7513.html" }, { "directions": "Combine equal parts of vodka and club soda in a highball glass. Add a splash of lime juice and cranberry juice, and serve.", @@ -70080,7 +70080,7 @@ "lime juice" ], "title": "Abelito recipe", - "url": "http://www.drinksmixer.com/drink7514.html" + "url": "https://www.drinksmixer.com/drink7514.html" }, { "directions": "Combine the peppermint schnapps, creme de menthe, and gin together in a highball glass. Add a splash of Listerine, stir, and serve.", @@ -70091,7 +70091,7 @@ "Listerine\u00ae Cool Mint mouthwash" ], "title": "After Dinner Mint #2 recipe", - "url": "http://www.drinksmixer.com/drink7516.html" + "url": "https://www.drinksmixer.com/drink7516.html" }, { "directions": "Combine all ingredients in a highball glass with several ice cubes, and serve.", @@ -70102,7 +70102,7 @@ "lemon juice" ], "title": "Aid Paradise recipe", - "url": "http://www.drinksmixer.com/drink7517.html" + "url": "https://www.drinksmixer.com/drink7517.html" }, { "directions": "Pour vodka into the bottom of a mixing glass. Add hawaiian punch, squeeze in a wedge of lime, add sprite, ice, and shake. Pour into a hurricane glass, and serve.", @@ -70113,7 +70113,7 @@ "Sprite\u00ae soda" ], "title": "Airhead recipe", - "url": "http://www.drinksmixer.com/drink7518.html" + "url": "https://www.drinksmixer.com/drink7518.html" }, { "directions": "Mix ingredients together in a mixing glass. Pour into a cocktail glass, and serve.", @@ -70124,7 +70124,7 @@ "cream" ], "title": "Almond Joy #2 recipe", - "url": "http://www.drinksmixer.com/drink7519.html" + "url": "https://www.drinksmixer.com/drink7519.html" }, { "directions": "Combine both the watermelon and grape-flavored schnapps, Bacardi limon, orange juice and pineapple juice in an old-fashioned glass. Serve.", @@ -70136,7 +70136,7 @@ "pineapple juice" ], "title": "Amnesia recipe", - "url": "http://www.drinksmixer.com/drink7522.html" + "url": "https://www.drinksmixer.com/drink7522.html" }, { "directions": "Pour blue curacao into a shot glass, followed by midori then vodka. Serve.", @@ -70146,7 +70146,7 @@ "vodka" ], "title": "Anabolic Steroid recipe", - "url": "http://www.drinksmixer.com/drink7523.html" + "url": "https://www.drinksmixer.com/drink7523.html" }, { "directions": "Pour Malibu rum over ice in a collins glass. Add Captain Morgan's spiced rum and fill with orange soda. Stir ingredients together, garnish with an orange slice, and serve.", @@ -70156,7 +70156,7 @@ "orange soda" ], "title": "Anna's Tropical Getaway recipe", - "url": "http://www.drinksmixer.com/drink7525.html" + "url": "https://www.drinksmixer.com/drink7525.html" }, { "directions": "Shake vodka and Midori with ice and strain, or pour on the rocks into a large or double-shot glass. Serve.", @@ -70165,7 +70165,7 @@ "Midori\u00ae melon liqueur" ], "title": "Anti Freeze #5 recipe", - "url": "http://www.drinksmixer.com/drink7526.html" + "url": "https://www.drinksmixer.com/drink7526.html" }, { "directions": "Pour the Smirnoff green apple twist into a cocktail glass, and add the Pimp juice energy drink.", @@ -70174,7 +70174,7 @@ "Pimp\u00ae apple juice" ], "title": "Applebottom Pimp recipe", - "url": "http://www.drinksmixer.com/drink7528.html" + "url": "https://www.drinksmixer.com/drink7528.html" }, { "directions": "Pour two shots of Jack Daniels into a whiskey sour glass. Add one shot of Apricot Brandy. Combine with apricot nectar and sweet and sour mix. Top with a lemon, cherry, or orange slice. Stir, and serve.", @@ -70185,7 +70185,7 @@ "sweet and sour mix" ], "title": "Apricot Jack recipe", - "url": "http://www.drinksmixer.com/drink7530.html" + "url": "https://www.drinksmixer.com/drink7530.html" }, { "directions": "Combine ingredients in a tall glass with ice. Garnish with a fresh lime slice and a sprig of mint, and serve.", @@ -70195,7 +70195,7 @@ "Rose's\u00ae lime juice" ], "title": "ApriJose Nectar recipe", - "url": "http://www.drinksmixer.com/drink7531.html" + "url": "https://www.drinksmixer.com/drink7531.html" }, { "directions": "Using only 100 proof liquors, ensure all schnapps are ice cold. Combine and mix all five liquors in a cocktail glass and drink like a shot.", @@ -70207,7 +70207,7 @@ "Jose Cuervo\u00ae Especial gold tequila" ], "title": "Are You Tough Enough? recipe", - "url": "http://www.drinksmixer.com/drink7532.html" + "url": "https://www.drinksmixer.com/drink7532.html" }, { "directions": "Almost-fill a shot glass with Absolut vodka. Top off with a splash of DeKuyper's sour apple pucker, and serve.", @@ -70216,7 +70216,7 @@ "DeKuyper\u00ae Sour Apple Pucker schnapps" ], "title": "Ass recipe", - "url": "http://www.drinksmixer.com/drink7535.html" + "url": "https://www.drinksmixer.com/drink7535.html" }, { "directions": "Combine and mix together the rum and root beer in a beer mug. Add ice if desired, and serve.", @@ -70225,7 +70225,7 @@ "root beer" ], "title": "Bacardi Rootbeer Float recipe", - "url": "http://www.drinksmixer.com/drink7538.html" + "url": "https://www.drinksmixer.com/drink7538.html" }, { "directions": "Mix all the ingredents together in a blender, until blended and thick. Add a slice of an apple to the top of your drink mix, some chocolate syrup to the side and a tinge of sugar to perfect the taste.", @@ -70238,7 +70238,7 @@ "ice cubes" ], "title": "Banana Apple Slushie recipe", - "url": "http://www.drinksmixer.com/drink7539.html" + "url": "https://www.drinksmixer.com/drink7539.html" }, { "directions": "Combine both ingredients in a shot glass. Make several. Then Bang em' Back.", @@ -70247,7 +70247,7 @@ "Kool-Aid\u00ae Berry Blue mix" ], "title": "Bang em' Back recipe", - "url": "http://www.drinksmixer.com/drink7542.html" + "url": "https://www.drinksmixer.com/drink7542.html" }, { "directions": "Pour the Bacardi limon into a collins glass. Add a small, 8 oz can or thereabouts of Red Bull. Stir well, and serve.", @@ -70256,7 +70256,7 @@ "Red Bull\u00ae energy drink" ], "title": "Bazooka Joe #2 recipe", - "url": "http://www.drinksmixer.com/drink7546.html" + "url": "https://www.drinksmixer.com/drink7546.html" }, { "directions": "Pour Black Haus blackberry schnapps and Captain Morgan rum into a wine globlet with ice. Top with pineapple juice, garnish with a pineapple spear and a maraschino cherry, and serve.", @@ -70266,7 +70266,7 @@ "pineapple juice" ], "title": "Beach Haus recipe", - "url": "http://www.drinksmixer.com/drink7547.html" + "url": "https://www.drinksmixer.com/drink7547.html" }, { "directions": "Chill ingredients beforehand. Pour into a large shot glass, or over ice in a cocktail glass, and serve. Drink at preferred pace.", @@ -70276,7 +70276,7 @@ "DeKuyper\u00ae Hot Damn cinnamon schnapps" ], "title": "Bee Stinger (Wildman Style) recipe", - "url": "http://www.drinksmixer.com/drink7550.html" + "url": "https://www.drinksmixer.com/drink7550.html" }, { "directions": "Pour Smirnoff vodka into a highball glass, and fill with beer or ale. Add dashes of Tabasco sauce, stir lightly, and serve.", @@ -70286,7 +70286,7 @@ "Tabasco\u00ae sauce" ], "title": "Beer Buster recipe", - "url": "http://www.drinksmixer.com/drink7551.html" + "url": "https://www.drinksmixer.com/drink7551.html" }, { "directions": "Combine Black Haus and Bailey's irish cream over ice in a rocks or old-fashioned glass. Garnish with fresh berries, and serve.", @@ -70295,7 +70295,7 @@ "Bailey's\u00ae Irish cream" ], "title": "Belgian Berry recipe", - "url": "http://www.drinksmixer.com/drink7552.html" + "url": "https://www.drinksmixer.com/drink7552.html" }, { "directions": "Combine ingredients in a collins glass. Stir, and serve.", @@ -70306,7 +70306,7 @@ "cranberry juice" ], "title": "Berry Bananza recipe", - "url": "http://www.drinksmixer.com/drink7553.html" + "url": "https://www.drinksmixer.com/drink7553.html" }, { "directions": "Pour Black Haus into a cocktail shaker with ice. Add Smirnoff raspberry twist vodka and white creme de cacao. Shake, and strain into a cocktail/martini glass. Garnish with white chocolate shavings, and serve.", @@ -70316,7 +70316,7 @@ "white creme de cacao" ], "title": "Berry Chocolate Martini recipe", - "url": "http://www.drinksmixer.com/drink7554.html" + "url": "https://www.drinksmixer.com/drink7554.html" }, { "directions": "Combine half a shot of each in a shot glass, and serve.", @@ -70325,7 +70325,7 @@ "Bacardi\u00ae 151 rum" ], "title": "Bird Feeder recipe", - "url": "http://www.drinksmixer.com/drink7558.html" + "url": "https://www.drinksmixer.com/drink7558.html" }, { "directions": "Layer ingredients into a shot glass in order; jagermeister at the bottom, then banana liqueur, followed up with half-and-half.", @@ -70335,7 +70335,7 @@ "half-and-half" ], "title": "Bitches from Hell recipe", - "url": "http://www.drinksmixer.com/drink7559.html" + "url": "https://www.drinksmixer.com/drink7559.html" }, { "directions": "Shake ingredients with ice. Strain into a double-shot glass, and serve.", @@ -70345,7 +70345,7 @@ "cranberry juice" ], "title": "Black and Blue #3 recipe", - "url": "http://www.drinksmixer.com/drink7561.html" + "url": "https://www.drinksmixer.com/drink7561.html" }, { "directions": "Pour Black Haus blackberry schnapps and Bailey's irish cream into a mug. Add hot chocolate and whipped cream, garnish with shaved dark chocolate, and serve.", @@ -70356,7 +70356,7 @@ "whipped cream" ], "title": "Black Berry Chocolate recipe", - "url": "http://www.drinksmixer.com/drink7562.html" + "url": "https://www.drinksmixer.com/drink7562.html" }, { "directions": "Pour ingredients into a shot glass as above, and serve.", @@ -70366,7 +70366,7 @@ "black sambuca" ], "title": "Black Death #2 recipe", - "url": "http://www.drinksmixer.com/drink7563.html" + "url": "https://www.drinksmixer.com/drink7563.html" }, { "directions": "Pour ingredients into a shot glass, and serve.", @@ -70375,7 +70375,7 @@ "black sambuca" ], "title": "Black Death #3 recipe", - "url": "http://www.drinksmixer.com/drink7564.html" + "url": "https://www.drinksmixer.com/drink7564.html" }, { "directions": "Pour the Kahlua into a brandy snifter, followed by the cherry brandy. Float the Bailey's irish cream on top by pouring it slowly over the back of the spoon pressed against the inside of the glass. Garnish the glass with a maraschino cherry, and serve.", @@ -70385,7 +70385,7 @@ "Bailey's\u00ae Irish cream" ], "title": "Black Forest Cake recipe", - "url": "http://www.drinksmixer.com/drink7565.html" + "url": "https://www.drinksmixer.com/drink7565.html" }, { "directions": "Pour both ingredients into a large or double-shot glass, and serve.", @@ -70394,7 +70394,7 @@ "peach schnapps" ], "title": "Black Haus Basket recipe", - "url": "http://www.drinksmixer.com/drink7566.html" + "url": "https://www.drinksmixer.com/drink7566.html" }, { "directions": "Pour the Black Haus blackberry schnapps and Captain Morgan spiced rum into a mug. Top with hot chocolate and fresh whipped cream.", @@ -70405,7 +70405,7 @@ "whipped cream" ], "title": "Black Haus Chimney recipe", - "url": "http://www.drinksmixer.com/drink7567.html" + "url": "https://www.drinksmixer.com/drink7567.html" }, { "directions": "Pour the Black Haus blackberry schnapps into a shot glass. Add Smirnoff vodka, followed by Cointreau, and serve.", @@ -70415,7 +70415,7 @@ "Cointreau\u00ae orange liqueur" ], "title": "Black Haus Icicle recipe", - "url": "http://www.drinksmixer.com/drink7568.html" + "url": "https://www.drinksmixer.com/drink7568.html" }, { "directions": "Combine Black Haus blackberry schnapps and GoldSchlager in a glass mug. Stir, top with hot coffee and whipped cream, and serve.", @@ -70426,7 +70426,7 @@ "whipped cream" ], "title": "Black Haus Mitten recipe", - "url": "http://www.drinksmixer.com/drink7569.html" + "url": "https://www.drinksmixer.com/drink7569.html" }, { "directions": "Combine Black Haus blackberry schnapps and Smirnoff orange twist vodka in a glass mug. Top with hot coffee and whipped cream, and serve.", @@ -70437,7 +70437,7 @@ "whipped cream" ], "title": "Black Haus Orange Coffee recipe", - "url": "http://www.drinksmixer.com/drink7570.html" + "url": "https://www.drinksmixer.com/drink7570.html" }, { "directions": "Pour Black Haus blackberry schnapps and Smirnoff citrus twist vodka into an old-fashioned glass with ice. Add cranberry juice, stir, and serve.", @@ -70447,7 +70447,7 @@ "cranberry juice" ], "title": "Black Haus Twist recipe", - "url": "http://www.drinksmixer.com/drink7571.html" + "url": "https://www.drinksmixer.com/drink7571.html" }, { "directions": "Pour Black Haus blackberry schnapps and Bailey's irish cream into a mug. Add coffee, and top whipped cream. Garnish with coffee beans covered with chocolate powder.", @@ -70458,7 +70458,7 @@ "whipped cream" ], "title": "Black Haus Warmer recipe", - "url": "http://www.drinksmixer.com/drink7572.html" + "url": "https://www.drinksmixer.com/drink7572.html" }, { "directions": "Add Black Haus blackberry schnapps and Smirnoff raspberry twist vodka to a cocktail shaker, with ice. Shake and strain into a cocktail/martini glass. Garnish with a blackberry, and serve.", @@ -70467,7 +70467,7 @@ "Smirnoff\u00ae Raspberry Twist vodka" ], "title": "Blackberry Martini recipe", - "url": "http://www.drinksmixer.com/drink7574.html" + "url": "https://www.drinksmixer.com/drink7574.html" }, { "directions": "Pre-chill the Black Haus blackberry schnapps. Pour into a highball glass over ice, and add orange juice. Garnish with an orange wheel, and serve.", @@ -70476,7 +70476,7 @@ "orange juice" ], "title": "Blackdriver Haus recipe", - "url": "http://www.drinksmixer.com/drink7575.html" + "url": "https://www.drinksmixer.com/drink7575.html" }, { "directions": "Shake all ingredients well with ice, and strain into a cocktail glass. Add a perfectly ripe whole blackberry and a half-slice of lime, and serve.", @@ -70486,7 +70486,7 @@ "lime juice" ], "title": "Blackhawk recipe", - "url": "http://www.drinksmixer.com/drink7576.html" + "url": "https://www.drinksmixer.com/drink7576.html" }, { "directions": "Combine ingredients together in a whiskey sour glass, stir, and serve.", @@ -70496,7 +70496,7 @@ "vodka" ], "title": "Blast Furnace recipe", - "url": "http://www.drinksmixer.com/drink7577.html" + "url": "https://www.drinksmixer.com/drink7577.html" }, { "directions": "Pour hawaiian punch into a 12 oz highball glass. Take a gulp/mouthful, and fill the rest of the glass with vodka. Alter the proportions if you prefer a stronger bite.", @@ -70505,7 +70505,7 @@ "vodka" ], "title": "Blood of the Innocent recipe", - "url": "http://www.drinksmixer.com/drink7579.html" + "url": "https://www.drinksmixer.com/drink7579.html" }, { "directions": "Pour curacao and vodka over ice in a highball glass. Add lemonade, stir, and serve.", @@ -70515,7 +70515,7 @@ "lemonade" ], "title": "Blue Bayou recipe", - "url": "http://www.drinksmixer.com/drink7582.html" + "url": "https://www.drinksmixer.com/drink7582.html" }, { "directions": "Pour blueberry flavored vodka into a highball glass over ice. Add a small can of chilled cranberry juice, and serve.", @@ -70524,7 +70524,7 @@ "cranberry juice" ], "title": "Blue Crayons recipe", - "url": "http://www.drinksmixer.com/drink7583.html" + "url": "https://www.drinksmixer.com/drink7583.html" }, { "directions": "Combine Absolut, Kool-Aid and Sprite in a shaker, and shake well. Pour over ice in a collins glass, and serve.", @@ -70534,7 +70534,7 @@ "Sprite\u00ae soda" ], "title": "Blue Grapes recipe", - "url": "http://www.drinksmixer.com/drink7585.html" + "url": "https://www.drinksmixer.com/drink7585.html" }, { "directions": "Make a liter of kool-aid mixture as standard. Add the raspberry vodka and raspberry sour puss, and stir. Pour into tall, ice-filled glasses, and serve.", @@ -70544,7 +70544,7 @@ "Sour Puss\u00ae raspberry liqueur" ], "title": "Blue Kool-Aid Punch recipe", - "url": "http://www.drinksmixer.com/drink7587.html" + "url": "https://www.drinksmixer.com/drink7587.html" }, { "directions": "Mix ingredients in a highball glass, stir, and serve.", @@ -70554,7 +70554,7 @@ "Gatorade\u00ae energy drink" ], "title": "Blue Solute recipe", - "url": "http://www.drinksmixer.com/drink7589.html" + "url": "https://www.drinksmixer.com/drink7589.html" }, { "directions": "Pour the jagermeister into a shot glass, and fill with an equal amount of goldschlager. Serve.", @@ -70563,7 +70563,7 @@ "Goldschlager\u00ae cinnamon schnapps" ], "title": "Body Bag recipe", - "url": "http://www.drinksmixer.com/drink7591.html" + "url": "https://www.drinksmixer.com/drink7591.html" }, { "directions": "Combine ingredients over ice in a small rocks glass, and serve.", @@ -70572,7 +70572,7 @@ "lemonade" ], "title": "Bomb Pop recipe", - "url": "http://www.drinksmixer.com/drink7592.html" + "url": "https://www.drinksmixer.com/drink7592.html" }, { "directions": "Add all ingredients (except 7-up) to a highball glass with ice. Shake, top with 7-up, and serve.", @@ -70587,7 +70587,7 @@ "7-Up\u00ae soda" ], "title": "Bong Water recipe", - "url": "http://www.drinksmixer.com/drink7594.html" + "url": "https://www.drinksmixer.com/drink7594.html" }, { "directions": "Pour Bacardi Limon rum into a shot glass. Add Sprite (or 7-Up). Place a towel on the table and put one hand on top of the shot glass to seal it so that no liquid or gas from the soda escapes. Quickly slam the glass on the towel so that a lot of bubbles are made and consume so that you catch the bubbles going down your throat.", @@ -70596,7 +70596,7 @@ "Sprite\u00ae soda" ], "title": "Boom Boom Shot recipe", - "url": "http://www.drinksmixer.com/drink7595.html" + "url": "https://www.drinksmixer.com/drink7595.html" }, { "directions": "Combine ingredients with ice in a margarita glass, mix, and serve.", @@ -70609,7 +70609,7 @@ "sweet and sour mix" ], "title": "Boom Shaka Laka recipe", - "url": "http://www.drinksmixer.com/drink7596.html" + "url": "https://www.drinksmixer.com/drink7596.html" }, { "directions": "Add all ingredients to a blender and blend until creamy or thick, as desired. Serve in a highball glass.", @@ -70619,7 +70619,7 @@ "Mayfield\u00ae Rocky Road ice cream" ], "title": "Brain Freeze #2 recipe", - "url": "http://www.drinksmixer.com/drink7601.html" + "url": "https://www.drinksmixer.com/drink7601.html" }, { "directions": "Fill 2/3rds of a shot glass with white sambuca, and layer Kahlua down side of glass. Allow it to settle at the bottom. Drop in small amounts of advocaat and cherry advocaat. The advocaat will seperate giving the look of a brain.\r", @@ -70630,7 +70630,7 @@ "advocaat liqueur" ], "title": "Braindead #2 recipe", - "url": "http://www.drinksmixer.com/drink7602.html" + "url": "https://www.drinksmixer.com/drink7602.html" }, { "directions": "Combine all ingredients together in a cocktail glass, stir, and serve.", @@ -70641,7 +70641,7 @@ "grenadine syrup" ], "title": "Breath of God recipe", - "url": "http://www.drinksmixer.com/drink7603.html" + "url": "https://www.drinksmixer.com/drink7603.html" }, { "directions": "Combine ingredients with ice in a highball glass. Stir and serve.", @@ -70653,7 +70653,7 @@ "Red Bull\u00ae energy drink" ], "title": "Breda Blackout recipe", - "url": "http://www.drinksmixer.com/drink7604.html" + "url": "https://www.drinksmixer.com/drink7604.html" }, { "directions": "Pour ingredients over ice in a large brandy snifter, and serve.", @@ -70663,7 +70663,7 @@ "sweet and sour mix" ], "title": "Bronsky recipe", - "url": "http://www.drinksmixer.com/drink7605.html" + "url": "https://www.drinksmixer.com/drink7605.html" }, { "directions": "Pour ingredients into an old-fashioned glass, stir, and serve.", @@ -70674,7 +70674,7 @@ "orange juice" ], "title": "Brown Town Busta recipe", - "url": "http://www.drinksmixer.com/drink7606.html" + "url": "https://www.drinksmixer.com/drink7606.html" }, { "directions": "Open sherbert and dump the entire package of it into a punch bowl. Add grape soda, southern comfort and grape pucker. Stir, and serve out.", @@ -70685,7 +70685,7 @@ "DeKuyper\u00ae Grape Pucker schnapps" ], "title": "Bubbilicous Grape recipe", - "url": "http://www.drinksmixer.com/drink7607.html" + "url": "https://www.drinksmixer.com/drink7607.html" }, { "directions": "Pour a small can of red bull into a highball glass. Add jagermeister, and serve.", @@ -70694,7 +70694,7 @@ "Red Bull\u00ae energy drink" ], "title": "Bull Blaster recipe", - "url": "http://www.drinksmixer.com/drink7609.html" + "url": "https://www.drinksmixer.com/drink7609.html" }, { "directions": "Mix all ingredients together in a hurricane glass with ice, or combine in a blender. Add juices and sprite to fill glass, and serve.", @@ -70710,7 +70710,7 @@ "Sprite\u00ae soda" ], "title": "Call a Cab recipe", - "url": "http://www.drinksmixer.com/drink7617.html" + "url": "https://www.drinksmixer.com/drink7617.html" }, { "directions": "Pour whisky and yukon jack over ice in a cocktail glass. Add cola, garnish with a cherry, and serve.", @@ -70720,7 +70720,7 @@ "cola" ], "title": "Canadian Cowgirl recipe", - "url": "http://www.drinksmixer.com/drink7622.html" + "url": "https://www.drinksmixer.com/drink7622.html" }, { "directions": "Pour ingredients into a shot glass and cover the glass with top of one's hand. Slam shot down on counter top, and shoot.", @@ -70729,7 +70729,7 @@ "tequila" ], "title": "Cancun Slammer recipe", - "url": "http://www.drinksmixer.com/drink7624.html" + "url": "https://www.drinksmixer.com/drink7624.html" }, { "directions": "Pour vodka, orange juice, and lemonade into a glass over ice. Fill the rest of the glass with sour apple mix. Stir, and serve.", @@ -70740,7 +70740,7 @@ "Rose's\u00ae sour apple mix" ], "title": "Candy Apple Sour recipe", - "url": "http://www.drinksmixer.com/drink7625.html" + "url": "https://www.drinksmixer.com/drink7625.html" }, { "directions": "Mix together the tea (plain hot), Coca-cola and Captain Morgan spiced rum in a pint mason jar, and serve.", @@ -70750,7 +70750,7 @@ "Coca-Cola\u00ae" ], "title": "Captain's Elixir recipe", - "url": "http://www.drinksmixer.com/drink7631.html" + "url": "https://www.drinksmixer.com/drink7631.html" }, { "directions": "Pour the Captain Morgan's Parrot Bay over ice in a highball glass, and add in the pineapple orange juice. Stir, and serve.", @@ -70759,7 +70759,7 @@ "Texsun Orange Pineapple Juice" ], "title": "Captain's Orange recipe", - "url": "http://www.drinksmixer.com/drink7632.html" + "url": "https://www.drinksmixer.com/drink7632.html" }, { "directions": "Pour DeKuyper Buttershots into a shot glass. Add 99 Bananas, stir, and serve.", @@ -70768,7 +70768,7 @@ "99 Bananas\u00ae banana schnapps" ], "title": "Carmel Nana recipe", - "url": "http://www.drinksmixer.com/drink7633.html" + "url": "https://www.drinksmixer.com/drink7633.html" }, { "directions": "Pour Campari into a shot glass until half-full. Fill to the top with margarita mix, and serve.", @@ -70777,7 +70777,7 @@ "Jose Cuervo\u00ae margarita mix" ], "title": "Carmine recipe", - "url": "http://www.drinksmixer.com/drink7634.html" + "url": "https://www.drinksmixer.com/drink7634.html" }, { "directions": "Combine all ingredients in a blender with crushed ice cubes, and blend well. Serve in a hurricane glass.", @@ -70788,7 +70788,7 @@ "vanilla extract" ], "title": "Caribbean Milkshake recipe", - "url": "http://www.drinksmixer.com/drink7635.html" + "url": "https://www.drinksmixer.com/drink7635.html" }, { "directions": "Shake ingredients with ice. Strain into a martini glass, and serve.", @@ -70799,7 +70799,7 @@ "lime juice" ], "title": "Chambord Royale recipe", - "url": "http://www.drinksmixer.com/drink7639.html" + "url": "https://www.drinksmixer.com/drink7639.html" }, { "directions": "Pour Captain Morgan's into a chilled mug, and mix with A&W root beer. Add ice, stir, and serve.", @@ -70808,7 +70808,7 @@ "A&W\u00ae root beer" ], "title": "Chubbie Moose recipe", - "url": "http://www.drinksmixer.com/drink7646.html" + "url": "https://www.drinksmixer.com/drink7646.html" }, { "directions": "Pour one part citrus vodka into a tall glass. Add 2 parts (twice the amount) of 7-Up, and add lots of ice. Garnish with pieces of lemon and lime, and serve.", @@ -70817,7 +70817,7 @@ "7-Up\u00ae soda" ], "title": "Citron and Seven recipe", - "url": "http://www.drinksmixer.com/drink7647.html" + "url": "https://www.drinksmixer.com/drink7647.html" }, { "directions": "Pour all ingredients over ice in a cocktail shaker. Shake and strain into a brandy snifter, and serve.", @@ -70827,7 +70827,7 @@ "triple sec" ], "title": "Clarence recipe", - "url": "http://www.drinksmixer.com/drink7648.html" + "url": "https://www.drinksmixer.com/drink7648.html" }, { "directions": "Mix one bottle Clearly Canadian flavored sparkling water with vodka in a 16 oz. collins glass.", @@ -70836,7 +70836,7 @@ "Clearly Canadian\u00ae sparkling water" ], "title": "Clearly Vodkanadian recipe", - "url": "http://www.drinksmixer.com/drink7649.html" + "url": "https://www.drinksmixer.com/drink7649.html" }, { "directions": "Pour cognac and creme de cacao into an 8 oz. pina colada glass over ice. Top with milk or cream. Garnish with a cherry and shaved chocolate/cocoa powder.", @@ -70846,7 +70846,7 @@ "milk" ], "title": "Coco-Cognac recipe", - "url": "http://www.drinksmixer.com/drink7652.html" + "url": "https://www.drinksmixer.com/drink7652.html" }, { "directions": "Pour ingredients over ice in a small highball or old-fashioned glass, and serve.", @@ -70856,7 +70856,7 @@ "cranberry juice" ], "title": "Coconut Dream #2 recipe", - "url": "http://www.drinksmixer.com/drink7653.html" + "url": "https://www.drinksmixer.com/drink7653.html" }, { "directions": "Pour Smirnoff vodka, Amaretto, Buttershots and milk into a cup and stir together. Top with cream and enjoy.", @@ -70868,7 +70868,7 @@ "cream" ], "title": "Cody Spunk recipe", - "url": "http://www.drinksmixer.com/drink7655.html" + "url": "https://www.drinksmixer.com/drink7655.html" }, { "directions": "Place desired amount of ice in a highball glass. Pour in Smirnoff raspberry twist vodka, followed by raspberry lemonade V8 splash. Add two to three splashes of grenadine, stir and serve.", @@ -70878,7 +70878,7 @@ "grenadine syrup" ], "title": "Cole's Special Douche recipe", - "url": "http://www.drinksmixer.com/drink7657.html" + "url": "https://www.drinksmixer.com/drink7657.html" }, { "directions": "Add half bowl of ice to a punch bowl. Add the Bacardi 151 and Blue Curacao, and mix with the ice. Add the sweet and sour mix.\r", @@ -70889,7 +70889,7 @@ "Tropicana\u00ae orange juice" ], "title": "College Hulk Punch recipe", - "url": "http://www.drinksmixer.com/drink7658.html" + "url": "https://www.drinksmixer.com/drink7658.html" }, { "directions": "Mix ingredients together in a large container and freeze for approximately 24 hours. Pour into cocktail glasses when ready to serve.", @@ -70899,7 +70899,7 @@ "vodka" ], "title": "Cranberry Cooler recipe", - "url": "http://www.drinksmixer.com/drink7661.html" + "url": "https://www.drinksmixer.com/drink7661.html" }, { "directions": "Add all ingredients except sprite to a collins glass, and stir well to dissolve sugar. Add sprite, stir lightly, fill glass with ice amd serve.", @@ -70911,7 +70911,7 @@ "sugar" ], "title": "Crazy Erika recipe", - "url": "http://www.drinksmixer.com/drink7662.html" + "url": "https://www.drinksmixer.com/drink7662.html" }, { "directions": "Place about 4 ice cubes in a cocktail glass. Pour in Absolut Citron and fill the glass around three-quarters of the way with orange juice. Top off with grenadine, stir and serve.", @@ -70921,7 +70921,7 @@ "grenadine syrup" ], "title": "Creamsicle #4 recipe", - "url": "http://www.drinksmixer.com/drink7663.html" + "url": "https://www.drinksmixer.com/drink7663.html" }, { "directions": "Pour milk and orange juice into an old-fashioned glass. Pour rum into a shot glass. Drop the shot into the old-fashioned glass of orange juice and milk, and shoot.", @@ -70931,7 +70931,7 @@ "milk" ], "title": "Creamsicle #5 recipe", - "url": "http://www.drinksmixer.com/drink7664.html" + "url": "https://www.drinksmixer.com/drink7664.html" }, { "directions": "Combine the Bailey's irish cream, Malibu rum, and Paul Masson chocolate hazelnut cream liqueur into a shot glass and top with a splash of half and half.", @@ -70942,7 +70942,7 @@ "half-and-half" ], "title": "Creamy Nuts recipe", - "url": "http://www.drinksmixer.com/drink7665.html" + "url": "https://www.drinksmixer.com/drink7665.html" }, { "directions": "Pour ingredients into a cocktail glass, stir, and serve.", @@ -70952,7 +70952,7 @@ "7-Up\u00ae soda" ], "title": "Chronic recipe", - "url": "http://www.drinksmixer.com/drink7667.html" + "url": "https://www.drinksmixer.com/drink7667.html" }, { "directions": "Pour the Crown Royal whisky into a shot glass. Pour the Bong Water into a seperate shot glass. Shoot the Crown, and chase with the Bong Water.", @@ -70961,7 +70961,7 @@ "Bong Water\u00ae energy drink" ], "title": "Crown and Choke recipe", - "url": "http://www.drinksmixer.com/drink7668.html" + "url": "https://www.drinksmixer.com/drink7668.html" }, { "directions": "Pour Bacardi 151 rum into a shot glass. Add chartreuse, then 5 or 6 dashes of tabasco sauce, and serve.", @@ -70971,7 +70971,7 @@ "Tabasco\u00ae sauce" ], "title": "Cuban Assassin recipe", - "url": "http://www.drinksmixer.com/drink7670.html" + "url": "https://www.drinksmixer.com/drink7670.html" }, { "directions": "Pour Bacardi 151 rum over ice in a highball glass. Add an equal amount of coca-cola. Squeeze in 2 lime slices, and serve.", @@ -70981,7 +70981,7 @@ "limes" ], "title": "Cuban Lemur recipe", - "url": "http://www.drinksmixer.com/drink7671.html" + "url": "https://www.drinksmixer.com/drink7671.html" }, { "directions": "Pour advocaat, rum and vodka into a shaker with ice. Shake well, pour over ice in a highball glass, and top with lemonade.", @@ -70992,7 +70992,7 @@ "lemonade" ], "title": "Damage recipe", - "url": "http://www.drinksmixer.com/drink7672.html" + "url": "https://www.drinksmixer.com/drink7672.html" }, { "directions": "Mix ingredients together in a shot glass, carefully ignite and allow to burn, then extinguish and shoot.", @@ -71002,7 +71002,7 @@ "grenadine syrup" ], "title": "Devil's Candy-Cane recipe", - "url": "http://www.drinksmixer.com/drink7677.html" + "url": "https://www.drinksmixer.com/drink7677.html" }, { "directions": "Combine all ingredients in a cocktail shaker and shake well. Strain over plenty of ice in a highball glass, garnish with an orange slice, and serve.", @@ -71015,7 +71015,7 @@ "grenadine syrup" ], "title": "Dingo recipe", - "url": "http://www.drinksmixer.com/drink7678.html" + "url": "https://www.drinksmixer.com/drink7678.html" }, { "directions": "Pour tequila into a shot glass. Sprinkle parmesan cheese on top, and serve.", @@ -71024,7 +71024,7 @@ "Parmesan cheese" ], "title": "Dirty Panties recipe", - "url": "http://www.drinksmixer.com/drink7679.html" + "url": "https://www.drinksmixer.com/drink7679.html" }, { "directions": "Pour irish cream and peppermint schnapps over ice in a medium rocks or old-fashioned glass. Top with milk, stir, and serve.", @@ -71034,7 +71034,7 @@ "milk" ], "title": "Dirty Snowball recipe", - "url": "http://www.drinksmixer.com/drink7680.html" + "url": "https://www.drinksmixer.com/drink7680.html" }, { "directions": "Combine the Southern Comfort and the Mountain Dew in a jug. Pour in the two packs of koolaid. Stir or shake, and pour into highball glasses.", @@ -71044,7 +71044,7 @@ "Kool-Aid\u00ae Cherry mix" ], "title": "Down Home Dew recipe", - "url": "http://www.drinksmixer.com/drink7683.html" + "url": "https://www.drinksmixer.com/drink7683.html" }, { "directions": "Add liquid ingredients to crushed ice in shaker. Cut limes in half and squeeze into shaker, dropping in the shells; add sugar. Shake well; pour the whole mess into a 12-oz chimney glass; fill rest of glass with charged water and decorate with fruit or freshly picked geranium leaf.\r", @@ -71058,7 +71058,7 @@ "soda water" ], "title": "Dr. Funk recipe", - "url": "http://www.drinksmixer.com/drink7686.html" + "url": "https://www.drinksmixer.com/drink7686.html" }, { "directions": "Mix equal parts jagermeister, Dr. Mcgillicuddy's and goldschlager in a shot glass, and serve.", @@ -71068,7 +71068,7 @@ "Goldschlager\u00ae cinnamon schnapps" ], "title": "Dr. Jagerschlager recipe", - "url": "http://www.drinksmixer.com/drink7687.html" + "url": "https://www.drinksmixer.com/drink7687.html" }, { "directions": "Mix ingredients together in a whiskey sour glass, and serve.", @@ -71078,7 +71078,7 @@ "Mountain Dew\u00ae citrus soda" ], "title": "Dragon Piss recipe", - "url": "http://www.drinksmixer.com/drink7689.html" + "url": "https://www.drinksmixer.com/drink7689.html" }, { "directions": "Follow the instructions on the package of jello (using twice the amount since there's cherry and strawberry), and add half a cup of both the vodka and the scotch to the mixture. Freeze in plastic cups, then serve and try to stand up.", @@ -71089,7 +71089,7 @@ "strawberry jell-o" ], "title": "Dragon's Fire Jello Shots recipe", - "url": "http://www.drinksmixer.com/drink7690.html" + "url": "https://www.drinksmixer.com/drink7690.html" }, { "directions": "Blend first three ingredients together in a cocktail glass. The color should turn bright turquoise. Top with whipped cream, and serve.", @@ -71100,7 +71100,7 @@ "whipped cream" ], "title": "Drunken Bunny recipe", - "url": "http://www.drinksmixer.com/drink7692.html" + "url": "https://www.drinksmixer.com/drink7692.html" }, { "directions": "Combine gin and orange juice in a small old-fashioned glass. Add a splash of both grenadine and ginger ale, stir and serve.", @@ -71111,7 +71111,7 @@ "ginger ale" ], "title": "Duck Sauce recipe", - "url": "http://www.drinksmixer.com/drink7694.html" + "url": "https://www.drinksmixer.com/drink7694.html" }, { "directions": "Pour rum into a small highball glass, and add egg nog. Stir together, top with nutmeg, and serve.", @@ -71121,7 +71121,7 @@ "nutmeg" ], "title": "Egg Nog Captain Morgan recipe", - "url": "http://www.drinksmixer.com/drink7697.html" + "url": "https://www.drinksmixer.com/drink7697.html" }, { "directions": "Pour both ingredients into a large shot glass, give a quick stir, and serve.", @@ -71130,7 +71130,7 @@ "Worcestershire sauce" ], "title": "Elsinore Elbow recipe", - "url": "http://www.drinksmixer.com/drink7698.html" + "url": "https://www.drinksmixer.com/drink7698.html" }, { "directions": "Pour all ingredients into a shaker filled with crushed ice. Shake and strain into a chilled champagne glass, and serve.", @@ -71142,7 +71142,7 @@ "cherry brandy" ], "title": "F-104 recipe", - "url": "http://www.drinksmixer.com/drink7699.html" + "url": "https://www.drinksmixer.com/drink7699.html" }, { "directions": "Pour the tropical gatorade into a jug. Add 3-4 oz of vodka, shake, and add Captain Morgans Original spiced rum. Serves about 4 in cocktail glasses.", @@ -71152,7 +71152,7 @@ "Gatorade\u00ae Tropical energy drink" ], "title": "Fade 'o Rade recipe", - "url": "http://www.drinksmixer.com/drink7700.html" + "url": "https://www.drinksmixer.com/drink7700.html" }, { "directions": "We always use equal parts beer, whiskey, and frozen lemonade. Thaw and pour the lemonade concentrate into a pitcher, then fill up the cans with the whiskey and mix into the pitcher. Gently fill the cans with the beer, avoiding too much foam, and mix into the pitcher. Add the ice and stir.", @@ -71163,7 +71163,7 @@ "ice" ], "title": "False Whiskey Sour recipe", - "url": "http://www.drinksmixer.com/drink7701.html" + "url": "https://www.drinksmixer.com/drink7701.html" }, { "directions": "Pour Drambuie into a shot glass. Add some chocolate sprinkles or shavings. Top with whipped cream and add more chocolate sprinkles or shavings.", @@ -71173,7 +71173,7 @@ "chocolate" ], "title": "Felcher recipe", - "url": "http://www.drinksmixer.com/drink7703.html" + "url": "https://www.drinksmixer.com/drink7703.html" }, { "directions": "Mix schnapps together with tequila and grenadine in a shot glass, and serve.", @@ -71184,7 +71184,7 @@ "grenadine syrup" ], "title": "Festive Fuck recipe", - "url": "http://www.drinksmixer.com/drink7705.html" + "url": "https://www.drinksmixer.com/drink7705.html" }, { "directions": "Combine ingredients together in an old-fashioned glass. Stir, ignite, and serve.", @@ -71194,7 +71194,7 @@ "absinthe herbal liqueur" ], "title": "Flaming Daniel recipe", - "url": "http://www.drinksmixer.com/drink7708.html" + "url": "https://www.drinksmixer.com/drink7708.html" }, { "directions": "Mix ingredients together in a beer mug. Ignite, and serve. ", @@ -71206,7 +71206,7 @@ "dill juice" ], "title": "Flaming Jew recipe", - "url": "http://www.drinksmixer.com/drink7709.html" + "url": "https://www.drinksmixer.com/drink7709.html" }, { "directions": "Squeeze half a lemon into a mixing glass, and add the Absolut Citron. Mix them together, and pour into a shot glass. Spoon the Everclear over the surface of the mixture, light on fire, and serve.", @@ -71216,7 +71216,7 @@ "Everclear\u00ae alcohol" ], "title": "Flaming Lemon recipe", - "url": "http://www.drinksmixer.com/drink7710.html" + "url": "https://www.drinksmixer.com/drink7710.html" }, { "directions": "Pour Stoli peach vodka and Malibu rum into a shot glass. Top with enough 151 proof rum to be able to burn. Fill a pint glass with pineapple juice (right up to the level of the shot glass). Ignite the Stoli peach vodka/Malibu/151 mixture and allow to burn for a while. Pick up the burning shot glass, drop it into the pint glass and slam it.", @@ -71227,7 +71227,7 @@ "pineapple juice" ], "title": "Flaming Mo recipe", - "url": "http://www.drinksmixer.com/drink7711.html" + "url": "https://www.drinksmixer.com/drink7711.html" }, { "directions": "Pour the green creme de menthe into a shot glass. Add blue curacao, top with Everclear, and ignite. Take care, and extinguish before consuming.", @@ -71237,7 +71237,7 @@ "Everclear\u00ae alcohol" ], "title": "Flaming Mouthwash recipe", - "url": "http://www.drinksmixer.com/drink7712.html" + "url": "https://www.drinksmixer.com/drink7712.html" }, { "directions": "Pour rum into a shot glass and the beer into a large mug. Light the rum on fire and drop into the beer. Make sure that the fire is out, then slam.", @@ -71246,7 +71246,7 @@ "Bacardi\u00ae 151 rum" ], "title": "Flaming Orgasm recipe", - "url": "http://www.drinksmixer.com/drink7713.html" + "url": "https://www.drinksmixer.com/drink7713.html" }, { "directions": "Simply shake/whisk/blend proportions of ingredients to taste and serve in a tall cordial glass. The more cherry brandy you add the pinker the slipper becomes. Whereas, the more you whisk the 'fluffier' it becomes.", @@ -71257,7 +71257,7 @@ "crushed ice" ], "title": "Fluffy Pink Slipper recipe", - "url": "http://www.drinksmixer.com/drink7714.html" + "url": "https://www.drinksmixer.com/drink7714.html" }, { "directions": "Fill an old-fashioned glass about three-quarters full of ginger ale and add about a half-inch of chilled Rose's lime juice. Garnish with a slice of lime, and serve.", @@ -71266,7 +71266,7 @@ "Rose's\u00ae lime juice" ], "title": "Freddie Bartholomew recipe", - "url": "http://www.drinksmixer.com/drink7718.html" + "url": "https://www.drinksmixer.com/drink7718.html" }, { "directions": "Pour all ingredients into a cocktail glass, and stir. Decorate with a piece of pineapple and a cherry. Serve.", @@ -71278,7 +71278,7 @@ "pineapple juice" ], "title": "Freefall recipe", - "url": "http://www.drinksmixer.com/drink7719.html" + "url": "https://www.drinksmixer.com/drink7719.html" }, { "directions": "Chill the Smirnoff bottle on ice or in a refrigerator beforehand. Keep Hot Damn! at room temperature.\r", @@ -71287,7 +71287,7 @@ "DeKuyper\u00ae Hot Damn cinnamon schnapps" ], "title": "Freezer Burn recipe", - "url": "http://www.drinksmixer.com/drink7720.html" + "url": "https://www.drinksmixer.com/drink7720.html" }, { "directions": "Pour ingredients over ice in a highball glass, and serve.", @@ -71298,7 +71298,7 @@ "DeKuyper\u00ae Buttershots liqueur" ], "title": "Fuck Me Like An Animal recipe", - "url": "http://www.drinksmixer.com/drink7722.html" + "url": "https://www.drinksmixer.com/drink7722.html" }, { "directions": "Pour triple sec, light rum and tequila into a highball glass over ice. Stir together, then add orange juice and ginger ale. Serve.", @@ -71310,7 +71310,7 @@ "orange juice" ], "title": "Fuck Me Over Again recipe", - "url": "http://www.drinksmixer.com/drink7723.html" + "url": "https://www.drinksmixer.com/drink7723.html" }, { "directions": "Pour ingredients in equal parts into a shot glass, stir, and serve.", @@ -71319,7 +71319,7 @@ "Jagermeister\u00ae herbal liqueur" ], "title": "Fucked Up Motherfucker recipe", - "url": "http://www.drinksmixer.com/drink7724.html" + "url": "https://www.drinksmixer.com/drink7724.html" }, { "directions": "Pour Arrow peach schnapps into an ice-filled highball glass. Add Bacardi white rum, fill with Sunny Delight california style, and serve.", @@ -71329,7 +71329,7 @@ "Sunny Delight\u00ae California Style orange juice" ], "title": "Fuzzy Delight recipe", - "url": "http://www.drinksmixer.com/drink7726.html" + "url": "https://www.drinksmixer.com/drink7726.html" }, { "directions": "Build over ice in a highball glass, and serve.", @@ -71340,7 +71340,7 @@ "lemonade" ], "title": "Fuzzy Peach recipe", - "url": "http://www.drinksmixer.com/drink7727.html" + "url": "https://www.drinksmixer.com/drink7727.html" }, { "directions": "Pour the vodka, 7-up, gatorade and hawaiian punch into a punch bowl, and stir. Add orange juice, stir and watch it turn green. Add ice, and serve to guests in highball glasses.", @@ -71352,7 +71352,7 @@ "7-Up\u00ae soda" ], "title": "Ganja Juice recipe", - "url": "http://www.drinksmixer.com/drink7728.html" + "url": "https://www.drinksmixer.com/drink7728.html" }, { "directions": "Pour half a pint of Killian's into a pint glass, followed by half a pint of Guinness Stout over a spoon in order to keep the two ingredients seperated in the glass. Serve.", @@ -71361,7 +71361,7 @@ "Killian's\u00ae Irish Red lager" ], "title": "Garnet and Black recipe", - "url": "http://www.drinksmixer.com/drink7729.html" + "url": "https://www.drinksmixer.com/drink7729.html" }, { "directions": "Mix ingredients together in a cocktail glass over ice, and serve. Add more Rumple Minze to make it stronger or add seltzer water to make it weaker.", @@ -71371,7 +71371,7 @@ "creme de cacao" ], "title": "German Peach recipe", - "url": "http://www.drinksmixer.com/drink7730.html" + "url": "https://www.drinksmixer.com/drink7730.html" }, { "directions": "Mix ingredients in equal parts over ice in a cocktail glass, and serve.", @@ -71382,7 +71382,7 @@ "Sprite\u00ae soda" ], "title": "Get Her Done recipe", - "url": "http://www.drinksmixer.com/drink7731.html" + "url": "https://www.drinksmixer.com/drink7731.html" }, { "directions": "Pour the Godiva liqueur over ice in a wine glass. Add Bailey's and the vanilla extract. Top with the cream, mix, and serve.", @@ -71393,7 +71393,7 @@ "vanilla extract" ], "title": "Godiva Cream recipe", - "url": "http://www.drinksmixer.com/drink7733.html" + "url": "https://www.drinksmixer.com/drink7733.html" }, { "directions": "Pour equal parts of Goldschlager and Red Bull into a shot glass, and serve.", @@ -71402,7 +71402,7 @@ "Red Bull\u00ae energy drink" ], "title": "Gold Rush recipe", - "url": "http://www.drinksmixer.com/drink7734.html" + "url": "https://www.drinksmixer.com/drink7734.html" }, { "directions": "Shake and strain into a chilled martini glass.", @@ -71412,7 +71412,7 @@ "Goldschlager\u00ae cinnamon schnapps" ], "title": "Golden Kiss Martini recipe", - "url": "http://www.drinksmixer.com/drink7735.html" + "url": "https://www.drinksmixer.com/drink7735.html" }, { "directions": "Shake and strain into a chilled martini glass.", @@ -71421,7 +71421,7 @@ "Smirnoff\u00ae vodka" ], "title": "Goldfinger Martini recipe", - "url": "http://www.drinksmixer.com/drink7736.html" + "url": "https://www.drinksmixer.com/drink7736.html" }, { "directions": "Pour Goldschl\ufffdger into a shot glass. Add Sambuca, and serve.", @@ -71430,7 +71430,7 @@ "sambuca" ], "title": "Goldschlager Stinger recipe", - "url": "http://www.drinksmixer.com/drink7737.html" + "url": "https://www.drinksmixer.com/drink7737.html" }, { "directions": "Layer ingredients above one another in a shot glass, by pouring over the back of a spoon pressed against the inside of the glass, or otherwise, and serve.", @@ -71440,7 +71440,7 @@ "peppermint schnapps" ], "title": "Gonad recipe", - "url": "http://www.drinksmixer.com/drink7738.html" + "url": "https://www.drinksmixer.com/drink7738.html" }, { "directions": "Pour rum, sambuca, brandy, vodka and lemon juice into a cocktail shaker over ice. Add orange juice, shake and strain into an old-fashioned glass. Tastes just like the candy.", @@ -71453,7 +71453,7 @@ "orange juice" ], "title": "Good 'n Plenty recipe", - "url": "http://www.drinksmixer.com/drink7739.html" + "url": "https://www.drinksmixer.com/drink7739.html" }, { "directions": "Cut up fruit, and soak with everclear overnight. Next morning add all liquids in a trashcan. Pour into a punch bowl with ice, and serve to the party. Don't forget to eat the fruit.", @@ -71470,7 +71470,7 @@ "watermelons" ], "title": "Goofy Juice recipe", - "url": "http://www.drinksmixer.com/drink7740.html" + "url": "https://www.drinksmixer.com/drink7740.html" }, { "directions": "Pour Goldschlager cinnamon schnapps, Smirnoff vodka, sweet and sour mix and DeKuyper sour apple schnapps into a cocktail shaker with ice. Shake and strain into a chilled martini glass rimmed with cinnamon and sugar, and serve.", @@ -71481,7 +71481,7 @@ "DeKuyper\u00ae Sour Apple Pucker schnapps" ], "title": "Granny's Apple Pie Martini recipe", - "url": "http://www.drinksmixer.com/drink7743.html" + "url": "https://www.drinksmixer.com/drink7743.html" }, { "directions": "Pour Hpnotiq and cognac into a shot glass, watch as it turns green, and serve.", @@ -71490,7 +71490,7 @@ "Hennessy\u00ae cognac" ], "title": "Green Hulk recipe", - "url": "http://www.drinksmixer.com/drink7744.html" + "url": "https://www.drinksmixer.com/drink7744.html" }, { "directions": "Pour green Gatorade over a few ice cubes in a highball glass. Add Sprite, stir well, and serve for a fast and easy energy drink.", @@ -71499,7 +71499,7 @@ "Sprite\u00ae soda" ], "title": "Green Slime recipe", - "url": "http://www.drinksmixer.com/drink7745.html" + "url": "https://www.drinksmixer.com/drink7745.html" }, { "directions": "Mix Malibu rum and guava juice together in a highball glass filled with crushed ice. Add fresca to taste, and serve.", @@ -71509,7 +71509,7 @@ "Fresca\u00ae grapefruit soda" ], "title": "Guava Gibbons recipe", - "url": "http://www.drinksmixer.com/drink7747.html" + "url": "https://www.drinksmixer.com/drink7747.html" }, { "directions": "Pour half a bottle of Guinness into a beer mug, add an equal amount of Coca-cola, and serve.", @@ -71518,7 +71518,7 @@ "Coca-Cola\u00ae" ], "title": "Guinness Cola recipe", - "url": "http://www.drinksmixer.com/drink7749.html" + "url": "https://www.drinksmixer.com/drink7749.html" }, { "directions": "Pour all liquors into a highball glass. Fill remainder of the glass with equal parts sweet and sour mix and Sprite or 7-Up.", @@ -71532,7 +71532,7 @@ "Sprite\u00ae soda" ], "title": "Guthrie recipe", - "url": "http://www.drinksmixer.com/drink7750.html" + "url": "https://www.drinksmixer.com/drink7750.html" }, { "directions": "Shake all ingredients together in a cocktail shaker. Strain into a cocktail glass, and serve.", @@ -71543,7 +71543,7 @@ "pineapple juice" ], "title": "Hairy Murry recipe", - "url": "http://www.drinksmixer.com/drink7751.html" + "url": "https://www.drinksmixer.com/drink7751.html" }, { "directions": "Combine lemonade and vodka with ice in a blender. Blend until slurpee consistency, and pour into collins glasses topped with a touch of raspberry syrup.", @@ -71553,7 +71553,7 @@ "raspberry syrup" ], "title": "Hard Lemon Ice recipe", - "url": "http://www.drinksmixer.com/drink7752.html" + "url": "https://www.drinksmixer.com/drink7752.html" }, { "directions": "Mix together the Gatorade \"Fierce\" with Aftershock red cinnamon liqueur in a 12 or 16 ounce cup. Serve.", @@ -71562,7 +71562,7 @@ "Gatorade\u00ae energy drink" ], "title": "Hardcore Gatorade recipe", - "url": "http://www.drinksmixer.com/drink7753.html" + "url": "https://www.drinksmixer.com/drink7753.html" }, { "directions": "Shake all ingredients together in a shaker, and strain into a 12 oz highball glass. Serve.", @@ -71578,7 +71578,7 @@ "Bailey's\u00ae Irish cream" ], "title": "Hate recipe", - "url": "http://www.drinksmixer.com/drink7755.html" + "url": "https://www.drinksmixer.com/drink7755.html" }, { "directions": "Pour Absolut Mandrin and Absolut Citron over ice in a cocktail shaker. Add sweet and sour mix, and a packet of Sweet 'n Low artificial sweetener. Shake and pour into shot glasses.", @@ -71589,7 +71589,7 @@ "Sweet'N Low\u00ae artificial sweetener" ], "title": "Hateraid recipe", - "url": "http://www.drinksmixer.com/drink7756.html" + "url": "https://www.drinksmixer.com/drink7756.html" }, { "directions": "Pour Black Haus blackberry schnapps over ice into an old-fashioned glass. Add Smirnoff vodka and cranberry juice, stir and serve.", @@ -71599,7 +71599,7 @@ "cranberry juice" ], "title": "Haus Mix recipe", - "url": "http://www.drinksmixer.com/drink7757.html" + "url": "https://www.drinksmixer.com/drink7757.html" }, { "directions": "Combine all ingredients together in a highball glass, stir, and serve.", @@ -71610,7 +71610,7 @@ "7-Up\u00ae soda" ], "title": "Hawaiian Cool recipe", - "url": "http://www.drinksmixer.com/drink7758.html" + "url": "https://www.drinksmixer.com/drink7758.html" }, { "directions": "Shake ingredients with ice, strain into a highball glass or Tiki mug, and serve.", @@ -71620,7 +71620,7 @@ "lemon juice" ], "title": "Head Shrinker recipe", - "url": "http://www.drinksmixer.com/drink7759.html" + "url": "https://www.drinksmixer.com/drink7759.html" }, { "directions": "Pour peach schnapps into a collins glass filled with ice. Fill with Sprite or 7-Up, and serve.", @@ -71629,7 +71629,7 @@ "Sprite\u00ae soda" ], "title": "HeadSpinner recipe", - "url": "http://www.drinksmixer.com/drink7760.html" + "url": "https://www.drinksmixer.com/drink7760.html" }, { "directions": "Pour orange juice into a shot glass. Add Hot Damn! and Everclear, stir briefly and serve.", @@ -71639,7 +71639,7 @@ "Everclear\u00ae alcohol" ], "title": "Hell's Sunrise recipe", - "url": "http://www.drinksmixer.com/drink7762.html" + "url": "https://www.drinksmixer.com/drink7762.html" }, { "directions": "Pour Hennessy cognac into a large collins glass filled with ice. Add Coca-cola, stir lightly, and serve.", @@ -71648,7 +71648,7 @@ "Coca-Cola\u00ae" ], "title": "Hennessy and Coke recipe", - "url": "http://www.drinksmixer.com/drink7763.html" + "url": "https://www.drinksmixer.com/drink7763.html" }, { "directions": "Pour Hennessy cognac into a cocktail shaker with ice. Add a squeeze of a lemon wedge, and stir together. Strain into a chilled martini cocktail glass, garnish with lemon peel, and serve.", @@ -71657,7 +71657,7 @@ "lemon juice" ], "title": "Hennessy Martini recipe", - "url": "http://www.drinksmixer.com/drink7764.html" + "url": "https://www.drinksmixer.com/drink7764.html" }, { "directions": "Shake ingredients together with crushed ice in a cocktail shaker. Strain into a cocktail glass, and serve.", @@ -71667,7 +71667,7 @@ "grenadine syrup" ], "title": "Hilty Dilty recipe", - "url": "http://www.drinksmixer.com/drink7765.html" + "url": "https://www.drinksmixer.com/drink7765.html" }, { "directions": "Pour Tanqueray gin and Midori melon liqueur into a shaker half-filled with ice. Stir or shake well. Strain into a chilled cocktail glass, garnish with a melon ball, and serve.", @@ -71676,7 +71676,7 @@ "Midori\u00ae melon liqueur" ], "title": "Hong Kong Smog recipe", - "url": "http://www.drinksmixer.com/drink7767.html" + "url": "https://www.drinksmixer.com/drink7767.html" }, { "directions": "Pour Alize Gold Passion and Tropicana simultaneously over a few ice cubes in a cocktail glass, and serve. Alternatively, blend together with ice in a blender for a frozen drink.", @@ -71685,7 +71685,7 @@ "Tropicana\u00ae fruit punch" ], "title": "Hooker recipe", - "url": "http://www.drinksmixer.com/drink7768.html" + "url": "https://www.drinksmixer.com/drink7768.html" }, { "directions": "Pour ingredients over plenty of ice in a highball glass. Stir, and serve.", @@ -71694,7 +71694,7 @@ "orange juice" ], "title": "Horny Schoolgirl recipe", - "url": "http://www.drinksmixer.com/drink7769.html" + "url": "https://www.drinksmixer.com/drink7769.html" }, { "directions": "Pour Buttershots, Bailey's and Godiva in a mug of hot cocoa, stir and serve.", @@ -71705,7 +71705,7 @@ "hot cocoa" ], "title": "Hot and Bothered recipe", - "url": "http://www.drinksmixer.com/drink7770.html" + "url": "https://www.drinksmixer.com/drink7770.html" }, { "directions": "Pour ingredients in equal parts over ice cubes in a cocktail shaker. Shake and strain into a shot glass. Tastes like cinnamon iced mocha.", @@ -71717,7 +71717,7 @@ "Goldschlager\u00ae cinnamon schnapps" ], "title": "Hot and Spicy Dirty Angel recipe", - "url": "http://www.drinksmixer.com/drink7771.html" + "url": "https://www.drinksmixer.com/drink7771.html" }, { "directions": "Pour Kahlua, sake, Bailey's and 151 rum into a cocktail glass. The rum should be on top, which is then ignited (carefully). Blow out before consuming.", @@ -71728,7 +71728,7 @@ "151 proof rum" ], "title": "Hot Cambodian Skin recipe", - "url": "http://www.drinksmixer.com/drink7772.html" + "url": "https://www.drinksmixer.com/drink7772.html" }, { "directions": "Pour cranberry juice over ice in a tall glass. Add the Grand Marnier, Absolut, Champagne and Chambord. Garnish with a cherry, and serve.", @@ -71740,7 +71740,7 @@ "cranberry juice" ], "title": "Hot Tub recipe", - "url": "http://www.drinksmixer.com/drink7773.html" + "url": "https://www.drinksmixer.com/drink7773.html" }, { "directions": "Pour brandy over ice in a beer mug or pint glass. Add root beer, stir, and serve.", @@ -71749,7 +71749,7 @@ "root beer" ], "title": "Hyped Up Mu recipe", - "url": "http://www.drinksmixer.com/drink7776.html" + "url": "https://www.drinksmixer.com/drink7776.html" }, { "directions": "Pour ingredients into a cocktail shaker, and shake. Strain over ice into a whiskey sour glass, and serve.", @@ -71759,7 +71759,7 @@ "pineapple juice" ], "title": "Hpnotiq Breeze recipe", - "url": "http://www.drinksmixer.com/drink7777.html" + "url": "https://www.drinksmixer.com/drink7777.html" }, { "directions": "Pour ingredients into a jug. Add one slush puppie, and stir. Pour into shot glasses and add sprinkles on top. Chase with a doughnut.", @@ -71775,7 +71775,7 @@ "Slush Puppie\u00ae" ], "title": "I Like To Drink recipe", - "url": "http://www.drinksmixer.com/drink7778.html" + "url": "https://www.drinksmixer.com/drink7778.html" }, { "directions": "Microwave the limes and lemons for about 10 - 15 seconds in order to release the juice. Cut in half. Pour the ice into an ice chest. Add lemonade or limeade, sugar and squeeze in the juice from all the lemons and limes. Add vodka to taste. Grab the handles and shake.", @@ -71788,7 +71788,7 @@ "vodka" ], "title": "Ice Chest Lemonade recipe", - "url": "http://www.drinksmixer.com/drink7779.html" + "url": "https://www.drinksmixer.com/drink7779.html" }, { "directions": "Pour ingredients in equal parts into a shot glass, and serve.", @@ -71797,7 +71797,7 @@ "amaretto almond liqueur" ], "title": "Irish Catholic recipe", - "url": "http://www.drinksmixer.com/drink7780.html" + "url": "https://www.drinksmixer.com/drink7780.html" }, { "directions": "Pour all ingredients into a cocktail shaker with ice and shake for 20 to 30 seconds. Strain into a cup, with some ice if desired, and serve.", @@ -71808,7 +71808,7 @@ "cream" ], "title": "Irish Ghost recipe", - "url": "http://www.drinksmixer.com/drink7781.html" + "url": "https://www.drinksmixer.com/drink7781.html" }, { "directions": "Pour Jack Daniel's whiskey and Dr. Pepper into a tall glass, stir, and serve.", @@ -71817,7 +71817,7 @@ "Dr. Pepper\u00ae soda" ], "title": "Jack and The Dr. recipe", - "url": "http://www.drinksmixer.com/drink7783.html" + "url": "https://www.drinksmixer.com/drink7783.html" }, { "directions": "Pour 2 ounces of Jack Daniel's into a collins glass. Add the Smirnoff Ice, then top with an extra ounce of Jack Daniel's. Drink slowly.", @@ -71826,7 +71826,7 @@ "Smirnoff\u00ae Ice" ], "title": "Jack-Off #2 recipe", - "url": "http://www.drinksmixer.com/drink7784.html" + "url": "https://www.drinksmixer.com/drink7784.html" }, { "directions": "Pour Yukon Jack into a beer mug filled with ice. Fill with ginger ale, and serve.", @@ -71835,7 +71835,7 @@ "ginger ale" ], "title": "Jackson Jack recipe", - "url": "http://www.drinksmixer.com/drink7785.html" + "url": "https://www.drinksmixer.com/drink7785.html" }, { "directions": "Pour a 8 oz can of Red Bull into a highball glass. Add jagermeister, and serve.", @@ -71844,7 +71844,7 @@ "Red Bull\u00ae energy drink" ], "title": "Jag and Red recipe", - "url": "http://www.drinksmixer.com/drink7786.html" + "url": "https://www.drinksmixer.com/drink7786.html" }, { "directions": "Shake all ingredients with ice in a shaker, strain into a shot glass and serve.", @@ -71854,7 +71854,7 @@ "grenadine syrup" ], "title": "Jager Monster Shot recipe", - "url": "http://www.drinksmixer.com/drink7787.html" + "url": "https://www.drinksmixer.com/drink7787.html" }, { "directions": "Mix green creme de menthe and kahlua with milk in a coffee mug, and serve.", @@ -71864,7 +71864,7 @@ "milk" ], "title": "Jeff Boxies recipe", - "url": "http://www.drinksmixer.com/drink7790.html" + "url": "https://www.drinksmixer.com/drink7790.html" }, { "directions": "Mix blue curacao and sambuca together in a double-shot glass. Layer Bailey's irish cream on top. Drop grenadine over the Bailey's to make the apperance of the jellyfish, and serve.", @@ -71875,7 +71875,7 @@ "grenadine syrup" ], "title": "Jellyfish #2 recipe", - "url": "http://www.drinksmixer.com/drink7791.html" + "url": "https://www.drinksmixer.com/drink7791.html" }, { "directions": "Pour Bacardi 151 rum into a parfait glass and top with a large scoop of ice cream.", @@ -71884,7 +71884,7 @@ "strawberry ice cream" ], "title": "Jerry's Mom #2 recipe", - "url": "http://www.drinksmixer.com/drink7793.html" + "url": "https://www.drinksmixer.com/drink7793.html" }, { "directions": "Pour the liqueurs into a cocktail glass. Add lemonade, and serve.", @@ -71895,7 +71895,7 @@ "lemonade" ], "title": "Jimmy.A Special recipe", - "url": "http://www.drinksmixer.com/drink7794.html" + "url": "https://www.drinksmixer.com/drink7794.html" }, { "directions": "Pour Larios gin over 4 ice cubes in a cocktail glass. Add Malibu rum, and top with fruits of the forest juice. Add creme de cassis on top, insert straw, and serve.", @@ -71906,7 +71906,7 @@ "Fruits of the Forest\u00ae fruit juice" ], "title": "James' Jungle Juice recipe", - "url": "http://www.drinksmixer.com/drink7795.html" + "url": "https://www.drinksmixer.com/drink7795.html" }, { "directions": "Pour ingredients over ice in a highball glass, and serve.", @@ -71916,7 +71916,7 @@ "grapefruit juice" ], "title": "Jojo recipe", - "url": "http://www.drinksmixer.com/drink7796.html" + "url": "https://www.drinksmixer.com/drink7796.html" }, { "directions": "Pour all ingredients into a cocktail shaker over ice and shake until ice cold. Strain into a shot glass, and serve.", @@ -71926,7 +71926,7 @@ "Rose's\u00ae lime juice" ], "title": "Jone's Town recipe", - "url": "http://www.drinksmixer.com/drink7797.html" + "url": "https://www.drinksmixer.com/drink7797.html" }, { "directions": "Pour Jose Cuervo gold tequila into an old-fashioned glass filled with ice. Add ginger ale, stir, and serve.", @@ -71935,7 +71935,7 @@ "ginger ale" ], "title": "Jose and Ginger recipe", - "url": "http://www.drinksmixer.com/drink7798.html" + "url": "https://www.drinksmixer.com/drink7798.html" }, { "directions": "Combine milk and salami sausage in a blender and blend on 'high' or 'puree' for 40 seconds. Serve warm in a coffee mug or chilled in an old-fashioned glass.", @@ -71944,7 +71944,7 @@ "salami sausage" ], "title": "Kaufman recipe", - "url": "http://www.drinksmixer.com/drink7800.html" + "url": "https://www.drinksmixer.com/drink7800.html" }, { "directions": "Pour Midori melon liqueur over ice in a highball glass. Add Sprite, pineapple juice and cranberry juice on top.", @@ -71955,7 +71955,7 @@ "pineapple juice" ], "title": "Kellikilla recipe", - "url": "http://www.drinksmixer.com/drink7801.html" + "url": "https://www.drinksmixer.com/drink7801.html" }, { "directions": "Mix ingredients together over ice in a whiskey sour glass, and serve.", @@ -71969,7 +71969,7 @@ "orange juice" ], "title": "Tie Me To The Bedpost #3 recipe", - "url": "http://www.drinksmixer.com/drink7802.html" + "url": "https://www.drinksmixer.com/drink7802.html" }, { "directions": "Mix Bacardi Razz with Sprite over ice cubes in a highball glass, and serve.", @@ -71978,7 +71978,7 @@ "Sprite\u00ae soda" ], "title": "Klukwan recipe", - "url": "http://www.drinksmixer.com/drink7803.html" + "url": "https://www.drinksmixer.com/drink7803.html" }, { "directions": "Combine ingredients with ice in a cocktail shaker. Shake and strain into a cocktail glass, and serve.", @@ -71990,7 +71990,7 @@ "Bacardi\u00ae 151 rum" ], "title": "Kryptonite recipe", - "url": "http://www.drinksmixer.com/drink7804.html" + "url": "https://www.drinksmixer.com/drink7804.html" }, { "directions": "Pour vanilla vodka over plenty of ice in an old-fashioned glass. Add goldschlager, peppermint schnapps, and top with Bailey's irish cream.", @@ -72001,7 +72001,7 @@ "vanilla vodka" ], "title": "Lambraz recipe", - "url": "http://www.drinksmixer.com/drink7805.html" + "url": "https://www.drinksmixer.com/drink7805.html" }, { "directions": "Pour a shot of DeKuyper raspberry pucker schnapps into a shot glass. Place the shot glass inside the bottom of a pint glass. Pour Bacardi silver rum around the outside of shot glass (but inside the pint glass) and carefully float some on top of the raspberry pucker by pouring over the back of a spoon pressed against the inside of the shot glass. Top it all off with Guinness. If done correctly, all ingredients should stay separated until the drink is downed in one fell swoop.", @@ -72011,7 +72011,7 @@ "Guinness\u00ae stout" ], "title": "Lava Lamp recipe", - "url": "http://www.drinksmixer.com/drink7806.html" + "url": "https://www.drinksmixer.com/drink7806.html" }, { "directions": "Pour both the Southern Comfort and Jack Daniel's in equal parts into a shot glass. Stir, and serve.", @@ -72020,7 +72020,7 @@ "Jack Daniel's\u00ae Tennessee whiskey" ], "title": "Left Hook recipe", - "url": "http://www.drinksmixer.com/drink7807.html" + "url": "https://www.drinksmixer.com/drink7807.html" }, { "directions": "Pour ingredients as listed above into a collins glass filled with ice, and serve.", @@ -72030,7 +72030,7 @@ "lemonade" ], "title": "Lemonberry Twist recipe", - "url": "http://www.drinksmixer.com/drink7809.html" + "url": "https://www.drinksmixer.com/drink7809.html" }, { "directions": "Pour Stoli Razberi and Sprite into a highball glass. Add a splash of cranberry juice and Red Bull energy drink, stir, and serve.", @@ -72041,7 +72041,7 @@ "Red Bull\u00ae energy drink" ], "title": "Life Is Good recipe", - "url": "http://www.drinksmixer.com/drink7810.html" + "url": "https://www.drinksmixer.com/drink7810.html" }, { "directions": "Shake ingredients with ice and serve over ice in a cocktail glass.", @@ -72051,7 +72051,7 @@ "ginger ale" ], "title": "Light Flow recipe", - "url": "http://www.drinksmixer.com/drink7811.html" + "url": "https://www.drinksmixer.com/drink7811.html" }, { "directions": "Pour all ingredients into a cocktail shaker with ice. Strain into a shot glass, and serve.", @@ -72061,7 +72061,7 @@ "lime juice" ], "title": "Limey Bellows recipe", - "url": "http://www.drinksmixer.com/drink7812.html" + "url": "https://www.drinksmixer.com/drink7812.html" }, { "directions": "Mix ingredients together in a shot glass, and serve.", @@ -72072,7 +72072,7 @@ "Bacardi\u00ae 151 rum" ], "title": "Liquid Zanex recipe", - "url": "http://www.drinksmixer.com/drink7813.html" + "url": "https://www.drinksmixer.com/drink7813.html" }, { "directions": "Layer the Crown Royal Canadian Whisky and the Captain Morgan Parrot Bay over ice in the bottom of an old-fashioned glass. Fill with mountain dew, and serve.", @@ -72082,7 +72082,7 @@ "Mountain Dew\u00ae citrus soda" ], "title": "Litnos' Lemonade recipe", - "url": "http://www.drinksmixer.com/drink7814.html" + "url": "https://www.drinksmixer.com/drink7814.html" }, { "directions": "Pour Bailey's into the bottom of the shot glass. Add Midori melon liqueur, and float Bacardi 151 on top.", @@ -72092,7 +72092,7 @@ "Bacardi\u00ae 151 rum" ], "title": "Little Green Fucker recipe", - "url": "http://www.drinksmixer.com/drink7815.html" + "url": "https://www.drinksmixer.com/drink7815.html" }, { "directions": "Muddle in the bottom of a boston shaker the ginger and pineapple. Add vodka, gin, and pineapple juice. Shake and strain into a collins glass, top with ginger beer, garnish with a slice of pineapple, and serve.", @@ -72105,7 +72105,7 @@ "ginger beer" ], "title": "Long Happiness recipe", - "url": "http://www.drinksmixer.com/drink7816.html" + "url": "https://www.drinksmixer.com/drink7816.html" }, { "directions": "Pour all ingredients together in a cocktail shaker, and shake. Strain into 5 - 7 seperate shot glasses, and serve.", @@ -72119,7 +72119,7 @@ "Jagermeister\u00ae herbal liqueur" ], "title": "Lucifer's Lane recipe", - "url": "http://www.drinksmixer.com/drink7818.html" + "url": "https://www.drinksmixer.com/drink7818.html" }, { "directions": "Pour beer and orange juice into a pint glass. Drop a shot glass filled with amaretto into the pint glass, and chug.", @@ -72129,7 +72129,7 @@ "orange juice" ], "title": "Lunchpail recipe", - "url": "http://www.drinksmixer.com/drink7819.html" + "url": "https://www.drinksmixer.com/drink7819.html" }, { "directions": "Pour Jack Daniel's over ice in a highball glass. Add Root Beer, and serve.", @@ -72138,7 +72138,7 @@ "root beer" ], "title": "Lynchburg Beer recipe", - "url": "http://www.drinksmixer.com/drink7820.html" + "url": "https://www.drinksmixer.com/drink7820.html" }, { "directions": "Poor the Guinness into a large beer mug. Drop two shot glasses, filled with kahlua and rum respectively, into the guinness and down in one fell swoop.", @@ -72148,7 +72148,7 @@ "Guinness\u00ae stout" ], "title": "Machetazo recipe", - "url": "http://www.drinksmixer.com/drink7821.html" + "url": "https://www.drinksmixer.com/drink7821.html" }, { "directions": "Pour Malibu rum over ice in a whiskey sour glass. Add orange juice and cranberry juice, and splash with key largo schnapps. Stir, and serve.", @@ -72159,7 +72159,7 @@ "DeKuyper\u00ae Key Largo schnapps" ], "title": "Malibu Bomber recipe", - "url": "http://www.drinksmixer.com/drink7822.html" + "url": "https://www.drinksmixer.com/drink7822.html" }, { "directions": "Pour Malibu rum into an ice-filled hurricane glass. Add pineapple juice and orange juice. Top off with a splash of cranberry juice, garnish with a cherry, and serve.", @@ -72170,7 +72170,7 @@ "cranberry juice" ], "title": "Malibu Sunset recipe", - "url": "http://www.drinksmixer.com/drink7823.html" + "url": "https://www.drinksmixer.com/drink7823.html" }, { "directions": "Pour mango juice and milk into a highball glass. Stir, add rum, and serve.", @@ -72180,7 +72180,7 @@ "milk" ], "title": "Mango Chimp recipe", - "url": "http://www.drinksmixer.com/drink7826.html" + "url": "https://www.drinksmixer.com/drink7826.html" }, { "directions": "Place Martini & Rossi vermouth and white wine into a beer mug. Mix the two together, add vodka and top off with Strongbow. Serve.", @@ -72191,7 +72191,7 @@ "white wine" ], "title": "Martini Bovine recipe", - "url": "http://www.drinksmixer.com/drink7827.html" + "url": "https://www.drinksmixer.com/drink7827.html" }, { "directions": "Combine cognac, tuaca and pineapple juice with ice in a cocktail shaker. Shake, strain and serve.", @@ -72201,7 +72201,7 @@ "pineapple juice" ], "title": "Marvin Hagler recipe", - "url": "http://www.drinksmixer.com/drink7828.html" + "url": "https://www.drinksmixer.com/drink7828.html" }, { "directions": "Pour vodka over a few ice cubes in a highball glass, followed by orange juice. Add a splash of cranberry juice, and serve.", @@ -72211,7 +72211,7 @@ "cranberry juice" ], "title": "Matteress recipe", - "url": "http://www.drinksmixer.com/drink7829.html" + "url": "https://www.drinksmixer.com/drink7829.html" }, { "directions": "Build melon liqueur and dark rum in a medium-sized cocktail glass. Add cranberry juice and orange juice, stir, garnish with an orange slice, and serve.", @@ -72222,7 +72222,7 @@ "orange juice" ], "title": "Melon Cooler recipe", - "url": "http://www.drinksmixer.com/drink7830.html" + "url": "https://www.drinksmixer.com/drink7830.html" }, { "directions": "Pour ingredients into a cocktail glass, stir and serve.", @@ -72231,7 +72231,7 @@ "sweet and sour mix" ], "title": "Melon Sour recipe", - "url": "http://www.drinksmixer.com/drink7831.html" + "url": "https://www.drinksmixer.com/drink7831.html" }, { "directions": "Pour ingredients into a highball glass, stir and serve. ", @@ -72240,7 +72240,7 @@ "pineapple juice" ], "title": "Mexican Kelman recipe", - "url": "http://www.drinksmixer.com/drink7832.html" + "url": "https://www.drinksmixer.com/drink7832.html" }, { "directions": "Shake all ingredients with ice and strain into a brandy snifter. Garnish with a maraschino cherry, and serve.", @@ -72250,7 +72250,7 @@ "half-and-half" ], "title": "Midori Alexander recipe", - "url": "http://www.drinksmixer.com/drink7834.html" + "url": "https://www.drinksmixer.com/drink7834.html" }, { "directions": "Pour the liquors into seperate shot glasses, and line them up red, yellow and green. Go through and drink each shot, in order, in quick succession.", @@ -72260,7 +72260,7 @@ "DeKuyper\u00ae Sour Apple Pucker schnapps" ], "title": "Midwest Stop Light recipe", - "url": "http://www.drinksmixer.com/drink7835.html" + "url": "https://www.drinksmixer.com/drink7835.html" }, { "directions": "Pour vodka and coffee liqueur over ice cubes in an old-fashioned glass. Add creme de menthe, top with cream and serve.\r", @@ -72271,7 +72271,7 @@ "light cream" ], "title": "Mint Russian recipe", - "url": "http://www.drinksmixer.com/drink7838.html" + "url": "https://www.drinksmixer.com/drink7838.html" }, { "directions": "Pour liquors on the rocks in an old-fashioned glass. Top with whipped cream, sprinkle with cayenne pepper, and serve.", @@ -72284,7 +72284,7 @@ "cayenne peppers" ], "title": "Anaconda recipe", - "url": "http://www.drinksmixer.com/drink7839.html" + "url": "https://www.drinksmixer.com/drink7839.html" }, { "directions": "Pour ingredients into a pint glass, stir, and serve.", @@ -72294,7 +72294,7 @@ "Sunny Delight\u00ae orange juice" ], "title": "Mitch's Jim Beam Drink recipe", - "url": "http://www.drinksmixer.com/drink7842.html" + "url": "https://www.drinksmixer.com/drink7842.html" }, { "directions": "Pour ingredients into a tall collins glass filled with ice. Stir, and serve.", @@ -72303,7 +72303,7 @@ "Dr. Pepper\u00ae soda" ], "title": "Mob Witnesses recipe", - "url": "http://www.drinksmixer.com/drink7843.html" + "url": "https://www.drinksmixer.com/drink7843.html" }, { "directions": "Combine all ingredients in a blender with one cup of ice. Blend until the chunks of ice are small, and serve into two tall glasses.", @@ -72315,7 +72315,7 @@ "chocolate milk" ], "title": "Mocha Freeze recipe", - "url": "http://www.drinksmixer.com/drink7844.html" + "url": "https://www.drinksmixer.com/drink7844.html" }, { "directions": "Pour ginger ale and hawaiian punch into punch bowl, add the southern comfort to taste and add the frozen orange juice. When ready to serve, mix well, and garnish with fresh pineapple and orange slices.", @@ -72326,7 +72326,7 @@ "Southern Comfort\u00ae peach liqueur" ], "title": "Mom's Punch recipe", - "url": "http://www.drinksmixer.com/drink7845.html" + "url": "https://www.drinksmixer.com/drink7845.html" }, { "directions": "Carefully layer ingredients on top of one another in a shot glass, in order; gin bottom, advocaat middle, cherry brandy top.", @@ -72336,7 +72336,7 @@ "cherry brandy" ], "title": "Moneyshot recipe", - "url": "http://www.drinksmixer.com/drink7846.html" + "url": "https://www.drinksmixer.com/drink7846.html" }, { "directions": "Drop a shot glass filled with the Jose Cuervo tequila into a regular beer, and serve.", @@ -72345,7 +72345,7 @@ "Jose Cuervo\u00ae Especial gold tequila" ], "title": "Montezuma's Revenge recipe", - "url": "http://www.drinksmixer.com/drink7847.html" + "url": "https://www.drinksmixer.com/drink7847.html" }, { "directions": "Pour Mountain Dew into a highball glass. Add watermelon pucker, and stir. Add more pucker to taste, if desired. ", @@ -72354,7 +72354,7 @@ "DeKuyper\u00ae Watermelon Pucker schnapps" ], "title": "Mountain Melon recipe", - "url": "http://www.drinksmixer.com/drink7850.html" + "url": "https://www.drinksmixer.com/drink7850.html" }, { "directions": "Pour Crown Royal and DeKuyper sour apple pucker over ice in a cocktail shaker. Add 7-up, to taste, shake and strain over ice in a collins glass.", @@ -72364,7 +72364,7 @@ "7-Up\u00ae soda" ], "title": "Mowed Lawn recipe", - "url": "http://www.drinksmixer.com/drink7851.html" + "url": "https://www.drinksmixer.com/drink7851.html" }, { "directions": "Pour Southern Comfort and Goldshlager in equal parts into a shot glass. Add a splash of lime juice, and serve.", @@ -72374,7 +72374,7 @@ "lime juice" ], "title": "Nagle recipe", - "url": "http://www.drinksmixer.com/drink7852.html" + "url": "https://www.drinksmixer.com/drink7852.html" }, { "directions": "Thaw limeade concentrate and put in pitcher. Pour Bacardi rum into the empty limeade can until full, then transfer to pitcher. Add 3 beers to pitcher, and serve over ice in glasses.", @@ -72384,7 +72384,7 @@ "MGD\u00ae Lite lager" ], "title": "Naval Destroyer recipe", - "url": "http://www.drinksmixer.com/drink7854.html" + "url": "https://www.drinksmixer.com/drink7854.html" }, { "directions": "Using a hurricane glass, filled with ice, add as follows: rum, grenadine, and orange juice. Then fill to the top with Hawaiian Punch. Stir and garnish with cherries, lime, or orange.", @@ -72395,7 +72395,7 @@ "Hawaiian Punch\u00ae" ], "title": "Nawlin's Po-Boy recipe", - "url": "http://www.drinksmixer.com/drink7855.html" + "url": "https://www.drinksmixer.com/drink7855.html" }, { "directions": "Pour coconut rum and Dr. Pepper into a tall shot glass, stir, and serve.", @@ -72404,7 +72404,7 @@ "Dr. Pepper\u00ae soda" ], "title": "Nebraska Bull Dog recipe", - "url": "http://www.drinksmixer.com/drink7856.html" + "url": "https://www.drinksmixer.com/drink7856.html" }, { "directions": "Pour Jack Daniel's whiskey into an ice-filled highball glass. Add orange juice, and serve.", @@ -72413,7 +72413,7 @@ "orange juice" ], "title": "Neumann recipe", - "url": "http://www.drinksmixer.com/drink7857.html" + "url": "https://www.drinksmixer.com/drink7857.html" }, { "directions": "Pour Alize VSOP white lable cognac over ice in a tall collins glass. Add Fanta blueberry soda. Garnish with a slice of tangerine, stir, and serve.", @@ -72422,7 +72422,7 @@ "Fanta\u00ae blueberry soda" ], "title": "New Hampshire Bulldog recipe", - "url": "http://www.drinksmixer.com/drink7858.html" + "url": "https://www.drinksmixer.com/drink7858.html" }, { "directions": "Pour all ingredients into a shot glass, stir, and serve.", @@ -72432,7 +72432,7 @@ "pear liqueur" ], "title": "New York Black Haus recipe", - "url": "http://www.drinksmixer.com/drink7859.html" + "url": "https://www.drinksmixer.com/drink7859.html" }, { "directions": "Pour vodka and blue curacao over ice in a highball glass. Top with Red Bull until pale green, and serve.", @@ -72442,7 +72442,7 @@ "Red Bull\u00ae energy drink" ], "title": "Niagra recipe", - "url": "http://www.drinksmixer.com/drink7860.html" + "url": "https://www.drinksmixer.com/drink7860.html" }, { "directions": "Pour Bacardi Razz raspberry-flavored rum and Stoli Razberi raspberry-flavored vodka into a shot glass, in equal parts, and serve.", @@ -72451,7 +72451,7 @@ "Stoli\u00ae Razberi vodka" ], "title": "Oompa Loompa recipe", - "url": "http://www.drinksmixer.com/drink7863.html" + "url": "https://www.drinksmixer.com/drink7863.html" }, { "directions": "Pour the Bacardi O orange-flavored rum into a blender. Add ice, enough so that it will be slushy when you drink it. Pour in as much Hawaiian punch as you can, and blend. Pour into a pitcher, make a glass for yourself, and store the rest in the fridge.", @@ -72460,7 +72460,7 @@ "Hawaiian Punch\u00ae" ], "title": "Orange Hawaiian recipe", - "url": "http://www.drinksmixer.com/drink7864.html" + "url": "https://www.drinksmixer.com/drink7864.html" }, { "directions": "Shake all ingredients together in a cocktail shaker, and strain into cocktail glass. Garnish with fresh orange and lime slices.", @@ -72471,7 +72471,7 @@ "orange juice" ], "title": "Orange Rita recipe", - "url": "http://www.drinksmixer.com/drink7865.html" + "url": "https://www.drinksmixer.com/drink7865.html" }, { "directions": "Pour Bacardi O over ice in a highball glass. Add cranberry juice, and top off with soda. Garnish with a slice of lime on the glass, and serve.", @@ -72481,7 +72481,7 @@ "soda" ], "title": "Orange Soda recipe", - "url": "http://www.drinksmixer.com/drink7866.html" + "url": "https://www.drinksmixer.com/drink7866.html" }, { "directions": "Shake or stir ingredients, and pour over ice in a tall glass. Sprinkle nutmeg on top, and serve,", @@ -72492,7 +72492,7 @@ "orange juice" ], "title": "Painkiller recipe", - "url": "http://www.drinksmixer.com/drink7868.html" + "url": "https://www.drinksmixer.com/drink7868.html" }, { "directions": "Pour Stoli raspberry vodka and blueberry schnapps into an ice-filled cocktail shaker. Shake, pour into a shot glass, and serve.", @@ -72502,7 +72502,7 @@ "cranberry juice" ], "title": "Panty Dropper recipe", - "url": "http://www.drinksmixer.com/drink7869.html" + "url": "https://www.drinksmixer.com/drink7869.html" }, { "directions": "Pour Captain Morgan and Malibu rum into an ice-filled beer pilsner. Fill the rest of the way with the pine-orange-banana juice, and serve. \r", @@ -72512,7 +72512,7 @@ "Dole Pine-Orange-Banana Juice" ], "title": "Paradise #2 recipe", - "url": "http://www.drinksmixer.com/drink7870.html" + "url": "https://www.drinksmixer.com/drink7870.html" }, { "directions": "Pour vodka over ice cubes or crushed ice in a cocktail glass. Add a splash of UV orange vodka, top with mountain dew, and serve.", @@ -72522,7 +72522,7 @@ "Mountain Dew\u00ae citrus soda" ], "title": "Paris Hilton Cocktail recipe", - "url": "http://www.drinksmixer.com/drink7871.html" + "url": "https://www.drinksmixer.com/drink7871.html" }, { "directions": "Rub a lemon slice on the edge of a whiskey sour glass. Dip the edge of the glass in sugar. Add pink lemonade and a dash of sour mix. Then add Bacardi, triple sec and Absolut Citron. Stir. Lick around the edge of the glass then take the shot.", @@ -72536,7 +72536,7 @@ "lemon" ], "title": "Party Boy recipe", - "url": "http://www.drinksmixer.com/drink7872.html" + "url": "https://www.drinksmixer.com/drink7872.html" }, { "directions": "Combine ingredients in a cocktail shaker, shake, and strain into shot glasses.", @@ -72546,7 +72546,7 @@ "orange juice" ], "title": "Peach House recipe", - "url": "http://www.drinksmixer.com/drink7873.html" + "url": "https://www.drinksmixer.com/drink7873.html" }, { "directions": "Pour vodka into a highball glass. Add lemonade, a splash of lime juice, and serve.", @@ -72556,7 +72556,7 @@ "lemonade" ], "title": "Peapicker recipe", - "url": "http://www.drinksmixer.com/drink7874.html" + "url": "https://www.drinksmixer.com/drink7874.html" }, { "directions": "Pour orange vodka into an ice-filled highball glass. Add club soda, top with orange juice, and serve.", @@ -72566,7 +72566,7 @@ "orange juice" ], "title": "Pearl Jam recipe", - "url": "http://www.drinksmixer.com/drink7875.html" + "url": "https://www.drinksmixer.com/drink7875.html" }, { "directions": "Pour ingredients into a shot glass, stir and serve.", @@ -72576,7 +72576,7 @@ "DeKuyper\u00ae Sour Apple Pucker schnapps" ], "title": "Pedialite recipe", - "url": "http://www.drinksmixer.com/drink7876.html" + "url": "https://www.drinksmixer.com/drink7876.html" }, { "directions": "Add all ingredients to a blender and blend until smooth. Pour into a cocktail glass, add straw, and serve.", @@ -72588,7 +72588,7 @@ "chocolate syrup" ], "title": "Peppermint Mocha recipe", - "url": "http://www.drinksmixer.com/drink7877.html" + "url": "https://www.drinksmixer.com/drink7877.html" }, { "directions": "Shake all ingredients together with ice, pour into a shot glass, and serve.", @@ -72598,7 +72598,7 @@ "milk" ], "title": "Piece of Heaven recipe", - "url": "http://www.drinksmixer.com/drink7878.html" + "url": "https://www.drinksmixer.com/drink7878.html" }, { "directions": "Pour at least half a shot of each ingredient into a cocktail glass, stir and serve.", @@ -72611,7 +72611,7 @@ "pineapple juice" ], "title": "Pierce Clit recipe", - "url": "http://www.drinksmixer.com/drink7879.html" + "url": "https://www.drinksmixer.com/drink7879.html" }, { "directions": "Pour all ingredients into a shot glass, stir and serve.", @@ -72621,7 +72621,7 @@ "prune juice" ], "title": "Piledriver recipe", - "url": "http://www.drinksmixer.com/drink7880.html" + "url": "https://www.drinksmixer.com/drink7880.html" }, { "directions": "Pour Ketel One vodka, triple sec and Absolut Mandrin into a cocktail shaker with ice. Shake and pour into a highball glass. Add pineapple juice, and serve.", @@ -72632,7 +72632,7 @@ "pineapple juice" ], "title": "Pineapple Snap recipe", - "url": "http://www.drinksmixer.com/drink7882.html" + "url": "https://www.drinksmixer.com/drink7882.html" }, { "directions": "Pour Bacardi 151 into a cocktail glass. Add pineapple juice, a splash of triple sec, and serve.", @@ -72642,7 +72642,7 @@ "triple sec" ], "title": "Pineapple Fuck-Me-Up recipe", - "url": "http://www.drinksmixer.com/drink7883.html" + "url": "https://www.drinksmixer.com/drink7883.html" }, { "directions": "Pour vanilla vodka and pineapple juice into a shot glass. Add a drop of grenadine, and serve.\n\n", @@ -72652,7 +72652,7 @@ "grenadine syrup" ], "title": "Pineapple Upside-Down Cake recipe", - "url": "http://www.drinksmixer.com/drink7884.html" + "url": "https://www.drinksmixer.com/drink7884.html" }, { "directions": "Pour ingredients in equal amounts into a shot glass, and serve.", @@ -72661,7 +72661,7 @@ "Yukon Jack\u00ae Canadian whisky" ], "title": "Pinesol recipe", - "url": "http://www.drinksmixer.com/drink7885.html" + "url": "https://www.drinksmixer.com/drink7885.html" }, { "directions": "Pour ingredients into a cocktail shaker with ice, and shake. Strain into a shot glass, and serve.", @@ -72671,7 +72671,7 @@ "cranberry juice" ], "title": "Pink Panther #2 recipe", - "url": "http://www.drinksmixer.com/drink7887.html" + "url": "https://www.drinksmixer.com/drink7887.html" }, { "directions": "Pour liquors over ice in a highball glass. Add orange juice, stir, and serve.", @@ -72682,7 +72682,7 @@ "orange juice" ], "title": "Malibu Peach recipe", - "url": "http://www.drinksmixer.com/drink7888.html" + "url": "https://www.drinksmixer.com/drink7888.html" }, { "directions": "Pour vodka over ice in a highball glass. Add lemonade, followed by Sprite, and serve.", @@ -72692,7 +72692,7 @@ "Sprite\u00ae soda" ], "title": "Pink Pantie Pulldown recipe", - "url": "http://www.drinksmixer.com/drink7889.html" + "url": "https://www.drinksmixer.com/drink7889.html" }, { "directions": "Mix all ingredients (except cream) together in a blender, adjusting unspecified amounts to your own taste. Pour into a pitcher, and serve into margarita glasses topped with a sliced strawberry and whipped cream.", @@ -72707,7 +72707,7 @@ "whipped cream" ], "title": "Pink Panties #2 recipe", - "url": "http://www.drinksmixer.com/drink7890.html" + "url": "https://www.drinksmixer.com/drink7890.html" }, { "directions": "First add all 18 cans of beer to a large container. Add bottles of Everclear and tequila and last but not least add the pink lemonade. Place lemon slices in the mixture for extra flavor. Let sit for a few hours, then serve.", @@ -72718,7 +72718,7 @@ "pink lemonade" ], "title": "Pink Panty Dropper recipe", - "url": "http://www.drinksmixer.com/drink7891.html" + "url": "https://www.drinksmixer.com/drink7891.html" }, { "directions": "Pour Captain Morgan's Parrot Bay coconut rum and cranberry schnapps over ice in a beer pilsner. Add 7-up, and serve.", @@ -72728,7 +72728,7 @@ "7-Up\u00ae soda" ], "title": "Pissing Parrot recipe", - "url": "http://www.drinksmixer.com/drink7892.html" + "url": "https://www.drinksmixer.com/drink7892.html" }, { "directions": "Pour both ingredients into a tall shot glass, and serve.", @@ -72737,7 +72737,7 @@ "orange juice" ], "title": "Pleasant Surprise recipe", - "url": "http://www.drinksmixer.com/drink7893.html" + "url": "https://www.drinksmixer.com/drink7893.html" }, { "directions": "Pour Polish vodka and blue curacao into a shot glass, stir and serve.", @@ -72746,7 +72746,7 @@ "Polish vodka" ], "title": "Polish Butterfly recipe", - "url": "http://www.drinksmixer.com/drink7894.html" + "url": "https://www.drinksmixer.com/drink7894.html" }, { "directions": "Pour one twelve ounce Heineken Special Dark lager into a chilled pint glass. Fill a one ounce shot glass with Kahlua Especial. Drop the shot glass into the pint glass and drink all of it at once.", @@ -72755,7 +72755,7 @@ "Kahlua\u00ae Especial coffee liqueur" ], "title": "Powder Keg recipe", - "url": "http://www.drinksmixer.com/drink7896.html" + "url": "https://www.drinksmixer.com/drink7896.html" }, { "directions": "Pour Bailey's Irish Cream into a tall shot glass. Carefully layer warm Goldschlager on top of the Bailey's, and ignite. Sprinkle ground cinnamon over the flame, extinguish and serve.", @@ -72765,7 +72765,7 @@ "cinnamon" ], "title": "Pumpkin Pie #2 recipe", - "url": "http://www.drinksmixer.com/drink7897.html" + "url": "https://www.drinksmixer.com/drink7897.html" }, { "directions": "Sip the sambuca through a straw while somebody else slowly keeps the glass full with the shot of tequila. It turns from very sweet to very nasty.", @@ -72774,7 +72774,7 @@ "tequila" ], "title": "Purple Fuck recipe", - "url": "http://www.drinksmixer.com/drink7898.html" + "url": "https://www.drinksmixer.com/drink7898.html" }, { "directions": "Pour blue curacao and Malibu into an old-fashioned glass. Add Sprite or 7-up, and grenadine to taste. Place a raspberry in the drink and allow to settle to the bottom.", @@ -72786,7 +72786,7 @@ "raspberry" ], "title": "Purple Heaven recipe", - "url": "http://www.drinksmixer.com/drink7899.html" + "url": "https://www.drinksmixer.com/drink7899.html" }, { "directions": "Pour Chambord, vodka and sweet and sour mix into a highball glass over ice. Add Sprite, more if desired, and serve.", @@ -72797,7 +72797,7 @@ "Sprite\u00ae soda" ], "title": "Purple Helmeted Warrior #2 recipe", - "url": "http://www.drinksmixer.com/drink7900.html" + "url": "https://www.drinksmixer.com/drink7900.html" }, { "directions": "Pour raspberry liqueur and vodka over ice in a cocktail shaker. Add pineapple juice, and shake. Strain into a cocktail glass, and serve.", @@ -72807,7 +72807,7 @@ "pineapple juice" ], "title": "Purple Hooter #2 recipe", - "url": "http://www.drinksmixer.com/drink7901.html" + "url": "https://www.drinksmixer.com/drink7901.html" }, { "directions": "Pour Southern Comfort and blackberry brandy into a shot glass. Add a few drops of peppermint schnapps on top, and serve.", @@ -72817,7 +72817,7 @@ "peppermint schnapps" ], "title": "Purple Jesus #2 recipe", - "url": "http://www.drinksmixer.com/drink7902.html" + "url": "https://www.drinksmixer.com/drink7902.html" }, { "directions": "Mix one part Wild Irish Rose with two parts Faygo Grape Pop over ice in an old-fashioned glass.", @@ -72826,7 +72826,7 @@ "Wild Irish Rose\u00ae wine" ], "title": "Purple Jesus #3 recipe", - "url": "http://www.drinksmixer.com/drink7903.html" + "url": "https://www.drinksmixer.com/drink7903.html" }, { "directions": "Pour all ingredients over ice in a cocktail shaker. Shake, strain into a shot glass, and serve.", @@ -72838,7 +72838,7 @@ "grenadine syrup" ], "title": "Purple Nurple #2 recipe", - "url": "http://www.drinksmixer.com/drink7904.html" + "url": "https://www.drinksmixer.com/drink7904.html" }, { "directions": "Combine all ingredients in a cocktail shaker with ice. Shake and strain into an old-fashioned glass, and serve.", @@ -72849,7 +72849,7 @@ "cranberry juice" ], "title": "Purple Nurple #1 recipe", - "url": "http://www.drinksmixer.com/drink7905.html" + "url": "https://www.drinksmixer.com/drink7905.html" }, { "directions": "Pour all ingredients over ice in a collins glass. Adjust amounts if needed until drink is a purple color, and serve.", @@ -72859,7 +72859,7 @@ "Remy\u00ae Red cognac" ], "title": "Purple Passion #2 recipe", - "url": "http://www.drinksmixer.com/drink7906.html" + "url": "https://www.drinksmixer.com/drink7906.html" }, { "directions": "Fill half a shot glass with raspberry schnapps and the other half with Smirnoff vodka. Serve.", @@ -72868,7 +72868,7 @@ "Smirnoff\u00ae vodka" ], "title": "Purple People Eater #2 recipe", - "url": "http://www.drinksmixer.com/drink7907.html" + "url": "https://www.drinksmixer.com/drink7907.html" }, { "directions": "Pour Captain Morgan rum into a collins glass filled with ice. Add peach schapps and fill with pineapple juice. Add just a dash of grenadine, garnish with a cherry and orange wedge, and serve.", @@ -72879,7 +72879,7 @@ "grenadine syrup" ], "title": "Pussy Charger recipe", - "url": "http://www.drinksmixer.com/drink7908.html" + "url": "https://www.drinksmixer.com/drink7908.html" }, { "directions": "Pour all ingredients into a glass, and stir well. Consume quickly.", @@ -72891,7 +72891,7 @@ "Red Bull\u00ae energy drink" ], "title": "Queerwig recipe", - "url": "http://www.drinksmixer.com/drink7909.html" + "url": "https://www.drinksmixer.com/drink7909.html" }, { "directions": "Pour gatorade into a highball glass. Add DeKuyper sour apple pucker, stir, and serve.", @@ -72900,7 +72900,7 @@ "Gatorade\u00ae energy drink" ], "title": "Quick Puck recipe", - "url": "http://www.drinksmixer.com/drink7910.html" + "url": "https://www.drinksmixer.com/drink7910.html" }, { "directions": "Pour all ingredients into a cocktail shaker, shake and strain into an ice-filled collins glass. Garnish with two pineapple leaves placed down the side of the glass so that they look like rabbit's ears.", @@ -72912,7 +72912,7 @@ "gomme syrup" ], "title": "Rampant Rabbit recipe", - "url": "http://www.drinksmixer.com/drink7911.html" + "url": "https://www.drinksmixer.com/drink7911.html" }, { "directions": "Place the lemon slice at the bottom of a highball glass. Add ice, and pour the rum and southern comfort. Finally, add the bottle of Bacardi. Stir and serve.", @@ -72923,7 +72923,7 @@ "lemon" ], "title": "Ramshanked recipe", - "url": "http://www.drinksmixer.com/drink7912.html" + "url": "https://www.drinksmixer.com/drink7912.html" }, { "directions": "Pour vodka over a few ice cubes in a collins glass. Add Sprite Remix, stir gently, and serve.", @@ -72932,7 +72932,7 @@ "Sprite Remix" ], "title": "Raspberry Remix recipe", - "url": "http://www.drinksmixer.com/drink7913.html" + "url": "https://www.drinksmixer.com/drink7913.html" }, { "directions": "Pour all ingredients into a cocktail shaker. Shake well, strain into a cocktail/martini glass, and serve.", @@ -72942,7 +72942,7 @@ "Sprite\u00ae soda" ], "title": "Raspberry Martini recipe", - "url": "http://www.drinksmixer.com/drink7914.html" + "url": "https://www.drinksmixer.com/drink7914.html" }, { "directions": "Combine all ingredients in a shaker with cracked ice, cover and shake. Served in a chilled martini cocktail glass, rimmed with sugar and garnished with a red apple slice. \r", @@ -72952,7 +72952,7 @@ "grenadine syrup" ], "title": "Red Apple Martini recipe", - "url": "http://www.drinksmixer.com/drink7915.html" + "url": "https://www.drinksmixer.com/drink7915.html" }, { "directions": "Pour the vodka into a shot glass; add tabasco sauce. Pour clamato juice into a seperate shot glass. Shoot vodka/tabasco, wait 10 seconds, and shoot clamato juice.", @@ -72962,7 +72962,7 @@ "Tabasco\u00ae sauce" ], "title": "Red Devil #2 recipe", - "url": "http://www.drinksmixer.com/drink7916.html" + "url": "https://www.drinksmixer.com/drink7916.html" }, { "directions": "Pour vodka and whiskey into a cocktail shaker. Add orange and cranberry juice, and shake vigorously. Pour over ice in a frozen or chilled collins glass or tumbler. Slowly add the ginger ale, garnish with a maraschino cherry or orange wedge, and serve.", @@ -72974,7 +72974,7 @@ "cranberry juice" ], "title": "Red Dog recipe", - "url": "http://www.drinksmixer.com/drink7917.html" + "url": "https://www.drinksmixer.com/drink7917.html" }, { "directions": "Pour whiskey and vodka over ice in a highball glass. Add cream soda, and serve.", @@ -72984,7 +72984,7 @@ "A&W\u00ae cream soda" ], "title": "Red Gypsy recipe", - "url": "http://www.drinksmixer.com/drink7918.html" + "url": "https://www.drinksmixer.com/drink7918.html" }, { "directions": "Shake ingredients over ice in a cocktail shaker. Pour into a chilled whiskey sour glass, and serve.", @@ -72994,7 +72994,7 @@ "Minute Maid\u00ae fruit punch" ], "title": "Red Headed Stepchild recipe", - "url": "http://www.drinksmixer.com/drink7919.html" + "url": "https://www.drinksmixer.com/drink7919.html" }, { "directions": "Pour Bacardi into a collins glass filled with ice. Add Code red mountain dew, and serve.", @@ -73003,7 +73003,7 @@ "Mountain Dew\u00ae Code Red soda" ], "title": "Red Headed Stepchild #2 recipe", - "url": "http://www.drinksmixer.com/drink7920.html" + "url": "https://www.drinksmixer.com/drink7920.html" }, { "directions": "Mix together rum and grenadine in a mixing glass or cocktail shaker shaker. Pour into a highball or collins glass over crushed ice and orange juice. Garnish with a maraschino cherry and an orange or lime slice, and serve.", @@ -73013,7 +73013,7 @@ "orange juice" ], "title": "Red Rum recipe", - "url": "http://www.drinksmixer.com/drink7921.html" + "url": "https://www.drinksmixer.com/drink7921.html" }, { "directions": "Shake all ingredients (except cranberry juice) together in a cocktail shaker filled with ice. Add sufficient cranberry juice to turn the drink red, and serve.", @@ -73025,7 +73025,7 @@ "cranberry juice" ], "title": "Red Headed Woodpecker recipe", - "url": "http://www.drinksmixer.com/drink7923.html" + "url": "https://www.drinksmixer.com/drink7923.html" }, { "directions": "Blend all ingredients together by stirring in an old-fashioned glass, Add ice, and serve.", @@ -73036,7 +73036,7 @@ "lemon juice" ], "title": "Rigori recipe", - "url": "http://www.drinksmixer.com/drink7924.html" + "url": "https://www.drinksmixer.com/drink7924.html" }, { "directions": "Shake rum, tequila, lime juice, juice of 1/2 can pears, and a pinch of red pepper flakes in a mason jar. Garnish with 1 pineapple ring and 2 cherries arranged to form face.", @@ -73050,7 +73050,7 @@ "pepper" ], "title": "Roadkill Toaster Oven recipe", - "url": "http://www.drinksmixer.com/drink7925.html" + "url": "https://www.drinksmixer.com/drink7925.html" }, { "directions": "Drop a shot of vodka into a half a highball glass of milk, or half and half, and shoot.", @@ -73059,7 +73059,7 @@ "milk" ], "title": "Rocky Point Bomber recipe", - "url": "http://www.drinksmixer.com/drink7927.html" + "url": "https://www.drinksmixer.com/drink7927.html" }, { "directions": "Combine all the ingredients in a mixing glass and roll back and forth to gently mix. Strain into a large goblet or pint glass over ice, and serve.", @@ -73073,7 +73073,7 @@ "tomato juice" ], "title": "Dale's Bloody Mary recipe", - "url": "http://www.drinksmixer.com/drink7928.html" + "url": "https://www.drinksmixer.com/drink7928.html" }, { "directions": "Shake all the ingredients, except the cola, with ice and strain into a collins glass filled 3/4 with ice. Top with coke and garnish with a lemon wedge.", @@ -73088,7 +73088,7 @@ "Coca-Cola\u00ae" ], "title": "Dale's Long Island Iced Tea recipe", - "url": "http://www.drinksmixer.com/drink7929.html" + "url": "https://www.drinksmixer.com/drink7929.html" }, { "directions": "Drop a shot glass filled with R&R (Rich & Rare) canadian whisky into a pint glass filled with Rolling Rock pale lager, and serve.", @@ -73097,7 +73097,7 @@ "Rich & Rare\u00ae Canadian whisky" ], "title": "Rolling Rock and Roll recipe", - "url": "http://www.drinksmixer.com/drink7930.html" + "url": "https://www.drinksmixer.com/drink7930.html" }, { "directions": "Pour the vodka, tequila, galliano and kahlua into a highball glass filled with ice. Add a splash of cream, top with coke, and serve.", @@ -73110,7 +73110,7 @@ "Coca-Cola\u00ae" ], "title": "Root Beer Float #2 recipe", - "url": "http://www.drinksmixer.com/drink7931.html" + "url": "https://www.drinksmixer.com/drink7931.html" }, { "directions": "Pour citrus punch and cola into a collins glass with a few ice cubes. Mix ingredients with a spoon, then add the whiskey. Mix again, then add apricot juice and stir very well, since it likes to settle on bottom of glass. Instructions may vary to your liking.", @@ -73121,7 +73121,7 @@ "whiskey" ], "title": "Roy Rodgers' Corpse recipe", - "url": "http://www.drinksmixer.com/drink7932.html" + "url": "https://www.drinksmixer.com/drink7932.html" }, { "directions": "Open frozen juice and put concentrate in a one gallon pitcher. Do not add water. Add entire liter of dark rum, then add coconut rum. Mix until frozen juice concentrate dissolves into rum, and add entire 2-liter of Tahitian Treat. Pour into hurricane glasses, and serve.\r", @@ -73132,7 +73132,7 @@ "Malibu\u00ae coconut rum" ], "title": "Rum Punch recipe", - "url": "http://www.drinksmixer.com/drink7934.html" + "url": "https://www.drinksmixer.com/drink7934.html" }, { "directions": "Pour Bacardi Superior rum and Captain Morgan spiced rum into a collins glass. Add Malibu coconut rum, and juices. Stir and serve.", @@ -73144,7 +73144,7 @@ "pineapple juice" ], "title": "Rumage recipe", - "url": "http://www.drinksmixer.com/drink7935.html" + "url": "https://www.drinksmixer.com/drink7935.html" }, { "directions": "Pour the strawberry schnapps into a shot glass. Add the sour apple pucker, and serve.", @@ -73153,7 +73153,7 @@ "strawberry schnapps" ], "title": "Run for Your Money recipe", - "url": "http://www.drinksmixer.com/drink7936.html" + "url": "https://www.drinksmixer.com/drink7936.html" }, { "directions": "Pour ingredients into a medium-sized cocktail glass, stir gently and serve.", @@ -73163,7 +73163,7 @@ "cream" ], "title": "Ruptured Duck recipe", - "url": "http://www.drinksmixer.com/drink7938.html" + "url": "https://www.drinksmixer.com/drink7938.html" }, { "directions": "Pour vodka into a cocktail shaker. Add Martinelli's cider, shake and strain into a cocktail glass. Serve with a touch of extra cider if desired.", @@ -73172,7 +73172,7 @@ "Martinelli's\u00ae apple cider" ], "title": "Russian Cider recipe", - "url": "http://www.drinksmixer.com/drink7939.html" + "url": "https://www.drinksmixer.com/drink7939.html" }, { "directions": "Pour vodka into a 12 oz highball glass. Add pineapple juice, and serve.", @@ -73181,7 +73181,7 @@ "pineapple juice" ], "title": "Russian Kelman recipe", - "url": "http://www.drinksmixer.com/drink7940.html" + "url": "https://www.drinksmixer.com/drink7940.html" }, { "directions": "Pour apple juice into a cocktail shaker. Add Goldschlager, apple schnapps and butterscotch schnapps. Shake and strain into a large cocktail glass. Garnish with an apple slice or cinnamon stick, and serve.", @@ -73192,7 +73192,7 @@ "butterscotch schnapps" ], "title": "Santa's Little Helper recipe", - "url": "http://www.drinksmixer.com/drink7942.html" + "url": "https://www.drinksmixer.com/drink7942.html" }, { "directions": "Pour Jack Daniel's whiskey into a pint glass. Add Bacardi Breezer and serve.", @@ -73201,7 +73201,7 @@ "Bacardi Breezer\u00ae Orange" ], "title": "Saturday Night Special recipe", - "url": "http://www.drinksmixer.com/drink7943.html" + "url": "https://www.drinksmixer.com/drink7943.html" }, { "directions": "Pour a whole bottle of Archers peach schnapps into a medium sized saucepan. Heat until hot, but do not boil. Gradually add the sugar until saturation point (about 1 - 1.5 Kgs). Serve in shot glasses and knock back in one go whilst still hot.", @@ -73210,7 +73210,7 @@ "sugar" ], "title": "Schnapp Bomb recipe", - "url": "http://www.drinksmixer.com/drink7944.html" + "url": "https://www.drinksmixer.com/drink7944.html" }, { "directions": "Pour both ingredients into a shot glass, and serve.", @@ -73219,7 +73219,7 @@ "Sunny Delight\u00ae orange juice" ], "title": "School Bus recipe", - "url": "http://www.drinksmixer.com/drink7945.html" + "url": "https://www.drinksmixer.com/drink7945.html" }, { "directions": "Pour ingredients over ice in a cocktail shaker. Shake until blended, pour into a rocks or old-fashioned glass, and serve.", @@ -73230,7 +73230,7 @@ "whipped cream" ], "title": "Scooby Snack #4 recipe", - "url": "http://www.drinksmixer.com/drink7947.html" + "url": "https://www.drinksmixer.com/drink7947.html" }, { "directions": "Pour ingredients in a cocktail shaker, and shake well. Strain into an old-fashioned glass, and serve.", @@ -73241,7 +73241,7 @@ "half-and-half" ], "title": "Screaming Orgasm #3 recipe", - "url": "http://www.drinksmixer.com/drink7948.html" + "url": "https://www.drinksmixer.com/drink7948.html" }, { "directions": "Pour vodka and Cointreau over ice in a cocktail shaker. Add cranberry juice and a splash of orange juice. Shake vigorously and pour into a chilled martini cocktail glass. Take an orange peel (about 1 in.) squeeze it over a match on top of the cocktail. Place orange peel in cocktail, and serve.", @@ -73252,7 +73252,7 @@ "orange juice" ], "title": "Screw The City recipe", - "url": "http://www.drinksmixer.com/drink7949.html" + "url": "https://www.drinksmixer.com/drink7949.html" }, { "directions": "Combine all ingredients in a cocktail shaker with ice. Shake and strain into a cocktail glass rimmed with sugar, and serve. Substitute apple juice for the apple cider if none is available.", @@ -73263,7 +73263,7 @@ "lime juice" ], "title": "Seattle Sidecar recipe", - "url": "http://www.drinksmixer.com/drink7950.html" + "url": "https://www.drinksmixer.com/drink7950.html" }, { "directions": "Pour peach schnapps, Midori melon liqueur and Malibu coconut rum into a hurricane glass. Add juices, add a straw, and serve.", @@ -73276,7 +73276,7 @@ "cranberry juice" ], "title": "Sex on The Beach #13 recipe", - "url": "http://www.drinksmixer.com/drink7951.html" + "url": "https://www.drinksmixer.com/drink7951.html" }, { "directions": "Pour vodka, peach schnapps, WKD and Reef into a jug. Add orange juice to taste. Stir well, and serve into tall glasses.", @@ -73289,7 +73289,7 @@ "orange juice" ], "title": "Sex on the Sofa recipe", - "url": "http://www.drinksmixer.com/drink7952.html" + "url": "https://www.drinksmixer.com/drink7952.html" }, { "directions": "Pour all ingredients over ice in a collins or tall glass, and serve.", @@ -73299,7 +73299,7 @@ "fruit punch" ], "title": "Sexy Bitch recipe", - "url": "http://www.drinksmixer.com/drink7954.html" + "url": "https://www.drinksmixer.com/drink7954.html" }, { "directions": "Pour rum over ice cubes in a collins glass. Add a splash of grenadine, and pour in a can of MC2 berry blue energy drink Serve.", @@ -73309,7 +73309,7 @@ "coconut rum" ], "title": "SG03 recipe", - "url": "http://www.drinksmixer.com/drink7955.html" + "url": "https://www.drinksmixer.com/drink7955.html" }, { "directions": "Pour all ingredients into a cocktail shaker with ice. Shake vigorously, strain into a cocktail glass, and serve.", @@ -73319,7 +73319,7 @@ "milk" ], "title": "Shagger recipe", - "url": "http://www.drinksmixer.com/drink7956.html" + "url": "https://www.drinksmixer.com/drink7956.html" }, { "directions": "Add lime sherbert to a punch bowl. Pour the ginger ale, and stir.", @@ -73328,7 +73328,7 @@ "ginger ale" ], "title": "Sherbert Delight recipe", - "url": "http://www.drinksmixer.com/drink7957.html" + "url": "https://www.drinksmixer.com/drink7957.html" }, { "directions": "Pour Ricard, Bacardi rum and Absolut vodka into a bowl filled with sugar. Set on fire (use extreme caution) and let the sugar dissolve. Allow the drink to cool, and serve in a cocktail glass.", @@ -73338,7 +73338,7 @@ "Absolut\u00ae vodka" ], "title": "Shetty Classic recipe", - "url": "http://www.drinksmixer.com/drink7958.html" + "url": "https://www.drinksmixer.com/drink7958.html" }, { "directions": "Pour Sprite over a few ice cubes in a highball glass. Add grenadine, and serve.", @@ -73347,7 +73347,7 @@ "grenadine syrup" ], "title": "Shirley Temple #3 recipe", - "url": "http://www.drinksmixer.com/drink7959.html" + "url": "https://www.drinksmixer.com/drink7959.html" }, { "directions": "Pour all ingredients into a shot glass, stir, and serve.", @@ -73357,7 +73357,7 @@ "Don Q\u00ae 151 rum" ], "title": "Short Bus recipe", - "url": "http://www.drinksmixer.com/drink7960.html" + "url": "https://www.drinksmixer.com/drink7960.html" }, { "directions": "Pour equal parts Kahlua and Malibu rum into a shot glass. Add a few drops of Bailey's irish cream, and serve.", @@ -73367,7 +73367,7 @@ "Bailey's\u00ae Irish cream" ], "title": "Shot in the Dark recipe", - "url": "http://www.drinksmixer.com/drink7961.html" + "url": "https://www.drinksmixer.com/drink7961.html" }, { "directions": "Add all ingredients to a punch bowl. The more ice tea, the sweeter the drink. Serve into punch cups or equivalent.", @@ -73377,7 +73377,7 @@ "iced tea" ], "title": "Silent Sam Mix recipe", - "url": "http://www.drinksmixer.com/drink7962.html" + "url": "https://www.drinksmixer.com/drink7962.html" }, { "directions": "Pour rum into an old-fashioned glass, and add coke (in the same fashion as a rum and coke). Add a squeeze of lime juice, and serve.", @@ -73387,7 +73387,7 @@ "lime juice" ], "title": "Skin and Bones recipe", - "url": "http://www.drinksmixer.com/drink7963.html" + "url": "https://www.drinksmixer.com/drink7963.html" }, { "directions": "Pour ingredients into a tall shot glass, and serve.", @@ -73398,7 +73398,7 @@ "Dr. Pepper\u00ae soda" ], "title": "Skip Morrison recipe", - "url": "http://www.drinksmixer.com/drink7964.html" + "url": "https://www.drinksmixer.com/drink7964.html" }, { "directions": "Pour all ingredients into a large pitcher with ice. Stir, and serve in tall glasses.", @@ -73412,7 +73412,7 @@ "Sprite\u00ae soda" ], "title": "Skunk Teas recipe", - "url": "http://www.drinksmixer.com/drink7966.html" + "url": "https://www.drinksmixer.com/drink7966.html" }, { "directions": "Drop a shot of Skyy vodka into half a pint of Skyy Blue and chug.", @@ -73421,7 +73421,7 @@ "Skyy\u00ae Blue vodka" ], "title": "Skyy Bomb recipe", - "url": "http://www.drinksmixer.com/drink7967.html" + "url": "https://www.drinksmixer.com/drink7967.html" }, { "directions": "Carefully layer ingredients in a shot glass, in equal parts, and serve.", @@ -73431,7 +73431,7 @@ "Tequila Rose\u00ae strawberry cream liqueur" ], "title": "Slapper recipe", - "url": "http://www.drinksmixer.com/drink7968.html" + "url": "https://www.drinksmixer.com/drink7968.html" }, { "directions": "Pour all ingredients into a highball glass over ice, stir, and serve.", @@ -73441,7 +73441,7 @@ "Hawaiian Punch\u00ae" ], "title": "Slim's Sunrise recipe", - "url": "http://www.drinksmixer.com/drink7969.html" + "url": "https://www.drinksmixer.com/drink7969.html" }, { "directions": "Mix ingredients listed above in the order stated. The best way to gauge if you've done it correctly is by color. It'll look like what it's called and it will taste like gummi worms.", @@ -73452,7 +73452,7 @@ "7-Up\u00ae soda" ], "title": "Slimer recipe", - "url": "http://www.drinksmixer.com/drink7970.html" + "url": "https://www.drinksmixer.com/drink7970.html" }, { "directions": "Pour Sprite and orange juice into a collins glass half-filled with crushed ice. Add triple sec, Smirnoff vodka and peach schnapps. Add a dash of sweet and sour mix if desired, and serve.", @@ -73465,7 +73465,7 @@ "sweet and sour mix" ], "title": "Slippery Dick #2 recipe", - "url": "http://www.drinksmixer.com/drink7971.html" + "url": "https://www.drinksmixer.com/drink7971.html" }, { "directions": "Pour banana schnapps and vodka into a highball glass half-filled with ice. Add orange tangerine juice, and serve.", @@ -73475,7 +73475,7 @@ "Juicy Juice\u00ae orange tangerine juice" ], "title": "Slippery Todd recipe", - "url": "http://www.drinksmixer.com/drink7972.html" + "url": "https://www.drinksmixer.com/drink7972.html" }, { "directions": "Pour jagermeister and Captain Morgan's Parrot Bay coconut rum into a wine goblet. Add orange juice, more if desired, and shoot.", @@ -73485,7 +73485,7 @@ "orange juice" ], "title": "Sloppy Grumper recipe", - "url": "http://www.drinksmixer.com/drink7973.html" + "url": "https://www.drinksmixer.com/drink7973.html" }, { "directions": "Pour Everclear, red gatorade and a fruit punch over ice in a large pitcher. Stir, pour into hurricane glasses, and serve.", @@ -73495,7 +73495,7 @@ "fruit punch" ], "title": "Sloppy Pussy recipe", - "url": "http://www.drinksmixer.com/drink7974.html" + "url": "https://www.drinksmixer.com/drink7974.html" }, { "directions": "Pour blue curacao and gin into an ice-filled old-fashioned glass. Fill with equal parts sweet and sour mix and pineapple juice, and serve.", @@ -73506,7 +73506,7 @@ "pineapple juice" ], "title": "Slow Fuck recipe", - "url": "http://www.drinksmixer.com/drink7975.html" + "url": "https://www.drinksmixer.com/drink7975.html" }, { "directions": "Make frozen orange juice concentrate according to instructions on can. Keep frozen, and blend Everclear into the juice. Serve.", @@ -73515,7 +73515,7 @@ "Everclear\u00ae alcohol" ], "title": "Slurpee From Hell recipe", - "url": "http://www.drinksmixer.com/drink7976.html" + "url": "https://www.drinksmixer.com/drink7976.html" }, { "directions": "Pour blue curacao and vodka over ice in a highball glass. Fill with white cranberry strawberry juice, and stir. Top with a cherry, and serve.", @@ -73525,7 +73525,7 @@ "Ocean Spray White Cranberry & Strawberry Juice" ], "title": "Slut Tits recipe", - "url": "http://www.drinksmixer.com/drink7977.html" + "url": "https://www.drinksmixer.com/drink7977.html" }, { "directions": "Pour ingredients, in equal parts, into a shot glass, and serve.", @@ -73535,7 +73535,7 @@ "peach schnapps" ], "title": "Kinky recipe", - "url": "http://www.drinksmixer.com/drink7978.html" + "url": "https://www.drinksmixer.com/drink7978.html" }, { "directions": "Add all ingredients to a gallon jug, mix well and fill the rest with water. Serve in hurricane glasses.", @@ -73545,7 +73545,7 @@ "orange juice" ], "title": "Smurf Juice recipe", - "url": "http://www.drinksmixer.com/drink7979.html" + "url": "https://www.drinksmixer.com/drink7979.html" }, { "directions": "Pour vodka and schnapps over ice in a highball glass. Add lemonade, and serve.", @@ -73555,7 +73555,7 @@ "lemonade" ], "title": "Smurf Piss #2 recipe", - "url": "http://www.drinksmixer.com/drink7980.html" + "url": "https://www.drinksmixer.com/drink7980.html" }, { "directions": "Pour lager and cider (otherwise known as a Snake Bite) into a pint glass, and stir. Seperately prepare a Double Pernod and Black (Pernod and Creme de Cassis blackcurrant liqueur) in a 3 oz tall shot glass. Drop the shot glass into the pint glass, and serve.", @@ -73566,7 +73566,7 @@ "creme de cassis" ], "title": "Snake Bite Bites Back recipe", - "url": "http://www.drinksmixer.com/drink7981.html" + "url": "https://www.drinksmixer.com/drink7981.html" }, { "directions": "Pour all ingredients into a blender. Blend on high until the ice is crushed completely. Pour into a collins glass, and serve into two highball glasses or one very tall glass.", @@ -73577,7 +73577,7 @@ "ice" ], "title": "Snowballs recipe", - "url": "http://www.drinksmixer.com/drink7983.html" + "url": "https://www.drinksmixer.com/drink7983.html" }, { "directions": "Pour Sobe Energy into a collins glass. Add Bacardi O, and serve.", @@ -73586,7 +73586,7 @@ "Bacardi\u00ae orange rum" ], "title": "Sobo recipe", - "url": "http://www.drinksmixer.com/drink7984.html" + "url": "https://www.drinksmixer.com/drink7984.html" }, { "directions": "Mix vodka, vermouth, grenadine, and cherry juice in a shaker with lots of ice. Shake very thoroughly, and then strain into a cordial or cocktail glass. Garnish with a maraschino cherry, and serve.", @@ -73597,7 +73597,7 @@ "maraschino cherry juice" ], "title": "Soulard Cordial recipe", - "url": "http://www.drinksmixer.com/drink7985.html" + "url": "https://www.drinksmixer.com/drink7985.html" }, { "directions": "Pour ingredients over a few ice cubes in a hurricane glass, stir and serve.", @@ -73607,7 +73607,7 @@ "Coca-Cola\u00ae" ], "title": "Southern Bacardi recipe", - "url": "http://www.drinksmixer.com/drink7986.html" + "url": "https://www.drinksmixer.com/drink7986.html" }, { "directions": "Pour all ingredients into a hurricane glass with ice, and stir. Add a maraschino cherry and pineapple rings for garnish, and serve.", @@ -73620,7 +73620,7 @@ "pineapple juice" ], "title": "Southern Bahama Mama recipe", - "url": "http://www.drinksmixer.com/drink7987.html" + "url": "https://www.drinksmixer.com/drink7987.html" }, { "directions": "Pour all ingredients, in equal parts, into a shot glass. Stir and serve.", @@ -73630,7 +73630,7 @@ "pineapple juice" ], "title": "Southern Kiss recipe", - "url": "http://www.drinksmixer.com/drink7988.html" + "url": "https://www.drinksmixer.com/drink7988.html" }, { "directions": "Pour vodka, baja rosa and Malibu into a whiskey sour glass. Stir, top with fruit punch, and serve.", @@ -73641,7 +73641,7 @@ "fruit punch" ], "title": "Soviet Holiday recipe", - "url": "http://www.drinksmixer.com/drink7989.html" + "url": "https://www.drinksmixer.com/drink7989.html" }, { "directions": "Pour grain alcohol into a cup. Add espresso, sweetened to taste. Add Ron Barcelo Imperial rum, mix with a spoon, and serve.", @@ -73652,7 +73652,7 @@ "sugar" ], "title": "Spanish Gentlemen recipe", - "url": "http://www.drinksmixer.com/drink7990.html" + "url": "https://www.drinksmixer.com/drink7990.html" }, { "directions": "Pour all ingredients into a cocktail shaker, shake and strain over ice in a tall glass.", @@ -73667,7 +73667,7 @@ "sweet and sour mix" ], "title": "Sand in Your Shorts recipe", - "url": "http://www.drinksmixer.com/drink7991.html" + "url": "https://www.drinksmixer.com/drink7991.html" }, { "directions": "Pour ingredients over 4 ice cubes in a highball glass, stir, and serve.", @@ -73677,7 +73677,7 @@ "7-Up\u00ae soda" ], "title": "Sparkley Spritz recipe", - "url": "http://www.drinksmixer.com/drink7992.html" + "url": "https://www.drinksmixer.com/drink7992.html" }, { "directions": "Pour all ingredients, in equal parts, into a shot glass. Stir and serve.", @@ -73688,7 +73688,7 @@ "Bacardi\u00ae 151 rum" ], "title": "Squirting Orgasm recipe", - "url": "http://www.drinksmixer.com/drink7993.html" + "url": "https://www.drinksmixer.com/drink7993.html" }, { "directions": "Pour Midori into a shot glass. Drizzle creme de bananes down one side, turn the shot glass around, and drizzle creme de cerise down the other side. Drip Bailey's irish cream over the top to give the 'squished' effect, and serve.", @@ -73699,7 +73699,7 @@ "Bailey's\u00ae Irish cream" ], "title": "Squish Frog recipe", - "url": "http://www.drinksmixer.com/drink7994.html" + "url": "https://www.drinksmixer.com/drink7994.html" }, { "directions": "Pour all ingredients into an old-fashioned glass, stir and shoot.", @@ -73710,7 +73710,7 @@ "Yukon Jack\u00ae Perma Frost schnapps" ], "title": "Steel Vomit recipe", - "url": "http://www.drinksmixer.com/drink7995.html" + "url": "https://www.drinksmixer.com/drink7995.html" }, { "directions": "Pour everclear over 1/4 of a glass of crushed ice. Add lemon-lime soda, orange juice, a wedge of lemon or lime, and serve.", @@ -73721,7 +73721,7 @@ "lime" ], "title": "Steele Frost recipe", - "url": "http://www.drinksmixer.com/drink7996.html" + "url": "https://www.drinksmixer.com/drink7996.html" }, { "directions": "Pour all ingredients into a mixing glass, and shake well. Pour into a highball glass filled with ice, and serve.", @@ -73732,7 +73732,7 @@ "strawberry daiquiri mix" ], "title": "Strap-O-Nilla Juice recipe", - "url": "http://www.drinksmixer.com/drink7998.html" + "url": "https://www.drinksmixer.com/drink7998.html" }, { "directions": "Pour all ingredients into a cocktail shaker, and shake. Place the rim of a chilled cocktail/martini glass in a bowl of lemon juice, then transfer to a bowl of sugar in order to coat the rim. Pour the contents of the cocktail shaker into the cocktail glass, and serve.", @@ -73743,7 +73743,7 @@ "sugar" ], "title": "Strawberry Lemon Drop Martini recipe", - "url": "http://www.drinksmixer.com/drink7999.html" + "url": "https://www.drinksmixer.com/drink7999.html" }, { "directions": "Place a handful of crushed ice in the bottom of a blender. Add 3/4 punnet (about 6-9 ounces) of strawberries. Blend. Add a shot of all alcohols. Blend more. Add cream to desired consistency, and blend again. Pour into a cocktail glass, or several depending on size. Crumble chocolate flakes on top, and slices from the remaining strawberries. Add an umbrella, and serve.", @@ -73757,7 +73757,7 @@ "cream" ], "title": "Strawberry Overdose recipe", - "url": "http://www.drinksmixer.com/drink8000.html" + "url": "https://www.drinksmixer.com/drink8000.html" }, { "directions": "Add all ingredients to a blender with ice, and blend until smooth. Pour into a hurricane glass, and serve.", @@ -73777,7 +73777,7 @@ "sugar" ], "title": "Suck Bang and Blow recipe", - "url": "http://www.drinksmixer.com/drink8001.html" + "url": "https://www.drinksmixer.com/drink8001.html" }, { "directions": "Pour Bacardi O into a highball glass. Fill with Orange Slice, and serve.", @@ -73786,7 +73786,7 @@ "Pepsi\u00ae Orange Slice soda" ], "title": "Super Slice recipe", - "url": "http://www.drinksmixer.com/drink8006.html" + "url": "https://www.drinksmixer.com/drink8006.html" }, { "directions": "Pour ingredients over ice in a cocktail shaker. Shake and strain into an old-fashioned glass, and shoot.", @@ -73797,7 +73797,7 @@ "pineapple juice" ], "title": "Surfer on Ecstasy recipe", - "url": "http://www.drinksmixer.com/drink8007.html" + "url": "https://www.drinksmixer.com/drink8007.html" }, { "directions": "Pour rum into a shot glass. Top with tabasco sauce, and serve.", @@ -73806,7 +73806,7 @@ "Tabasco\u00ae sauce" ], "title": "Sweaty Shooter recipe", - "url": "http://www.drinksmixer.com/drink8009.html" + "url": "https://www.drinksmixer.com/drink8009.html" }, { "directions": "Pour all ingredients into an old-fashioned glass, stir, and shoot.", @@ -73816,7 +73816,7 @@ "Tabasco\u00ae sauce" ], "title": "Sweaty Mexican recipe", - "url": "http://www.drinksmixer.com/drink8011.html" + "url": "https://www.drinksmixer.com/drink8011.html" }, { "directions": "Blend all ingredients together in a medium-sized cocktail glass. Top with a dollop of whipped cream, sprinkle with chocolate and coconut shavings, and serve.", @@ -73828,7 +73828,7 @@ "whipped cream" ], "title": "Sweet Dream recipe", - "url": "http://www.drinksmixer.com/drink8012.html" + "url": "https://www.drinksmixer.com/drink8012.html" }, { "directions": "Pour DeKuyper Razzmatazz raspberry schnapps, vodka, and sweet and sour mix into a highball glass filled with ice. Add a splash of lemon-lime soda, and serve.", @@ -73839,7 +73839,7 @@ "lemon-lime soda" ], "title": "Sweet Heart recipe", - "url": "http://www.drinksmixer.com/drink8013.html" + "url": "https://www.drinksmixer.com/drink8013.html" }, { "directions": "Pour all ingredients into a cocktail shaker. Shake, strain into a shot glass, and serve.", @@ -73850,7 +73850,7 @@ "7-Up\u00ae soda" ], "title": "Sweet Tight Pussy recipe", - "url": "http://www.drinksmixer.com/drink8014.html" + "url": "https://www.drinksmixer.com/drink8014.html" }, { "directions": "Shake ingredients together with ice, strain and pour into a cocktail glass. For more desired effect: place in chilled glass for silky delicately warm touch with hint of eroticism.", @@ -73859,7 +73859,7 @@ "white creme de cacao" ], "title": "Swiss Alps recipe", - "url": "http://www.drinksmixer.com/drink8015.html" + "url": "https://www.drinksmixer.com/drink8015.html" }, { "directions": "Pour vodka into a highball glass with ice, and top with orange juice. Stir. Add grenadine by tilting glass and pouring grenadine down side by flipping the bottle vertically very quickly. The grenadine should go straight to the bottom and then rise up slowly through the drink. Garnish with a stirrer, straw, maraschino cherry and an orange slice.", @@ -73869,7 +73869,7 @@ "grenadine syrup" ], "title": "Syberian Sunrise recipe", - "url": "http://www.drinksmixer.com/drink8016.html" + "url": "https://www.drinksmixer.com/drink8016.html" }, { "directions": "Cut the fruit up into bite size pieces. Get the biggest size container you can find; an ice chest, or a witch's cauldron. Then pour all the ingredients in and stick tiny umbrellas in the floating fruit. Allow the fruit to soak for several hours or overnight before serving.", @@ -73891,7 +73891,7 @@ "ice" ], "title": "T-Town Tranquilizer recipe", - "url": "http://www.drinksmixer.com/drink8017.html" + "url": "https://www.drinksmixer.com/drink8017.html" }, { "directions": "Pour Cuervo Gold into shot glass and serve with lime and salt. Take salt and snort it up your nose, take shot, squirt lime in your eye. Use a napkin to clean up.", @@ -73901,7 +73901,7 @@ "salt" ], "title": "Tabletop Iron Man recipe", - "url": "http://www.drinksmixer.com/drink8018.html" + "url": "https://www.drinksmixer.com/drink8018.html" }, { "directions": "Pour equal amounts of DeKuyper Buttershots butterscotch schnapps, Kahlua coffee liqueur, and Bailey's irish cream into a highball glass with/without ice. Add milk; more if desired, and serve.", @@ -73912,7 +73912,7 @@ "milk" ], "title": "Tan Nipple recipe", - "url": "http://www.drinksmixer.com/drink8020.html" + "url": "https://www.drinksmixer.com/drink8020.html" }, { "directions": "Pour a full can of Keystone Light into a beer mug. Add Grey Goose vodka (or any vodka that you might have), and serve.", @@ -73921,7 +73921,7 @@ "Keystone\u00ae Light lager" ], "title": "Tanker recipe", - "url": "http://www.drinksmixer.com/drink8021.html" + "url": "https://www.drinksmixer.com/drink8021.html" }, { "directions": "Drain fruit (if using canned fruit) or use fresh fruit if desired, and set juice aside. Place fruit in a bowl or container, add half of each bottle of alcohol, and allow to soak for as long as possible (overnight works best).\r", @@ -73933,7 +73933,7 @@ "Hawaiian Punch\u00ae" ], "title": "Gator Juice recipe", - "url": "http://www.drinksmixer.com/drink8022.html" + "url": "https://www.drinksmixer.com/drink8022.html" }, { "directions": "Pour Zubrowka vodka over ice in an old-fashioned glass. Add apple juice and a lemon wedge, and serve.", @@ -73942,7 +73942,7 @@ "apple juice" ], "title": "Tatanka recipe", - "url": "http://www.drinksmixer.com/drink8023.html" + "url": "https://www.drinksmixer.com/drink8023.html" }, { "directions": "Pour all ingredients into a blender with/without ice as desired. Blend until smooth. Coat the rim of an old-fashioned glass with sugar, and garnish with a slice of citrus fruit. Pour mixture from blender into glass, and serve. Should serve two or three.", @@ -73955,7 +73955,7 @@ "orange juice" ], "title": "Ten More Minutes recipe", - "url": "http://www.drinksmixer.com/drink8024.html" + "url": "https://www.drinksmixer.com/drink8024.html" }, { "directions": "Put Jack Daniel's whiskey into a mug and add sugar as you would with your coffee. Brew coffee, preferably with an espresso machine, but any good, dark coffee works. If you have an espresso machine, froth and steam milk. If not add cream to taste. Tastes like a good, strong coffee with a hint of Jack.", @@ -73966,7 +73966,7 @@ "sugar" ], "title": "Tennessee Coffee recipe", - "url": "http://www.drinksmixer.com/drink8025.html" + "url": "https://www.drinksmixer.com/drink8025.html" }, { "directions": "Before drinking, put a napkin on top of the glass and your hand over that. Bang it on the table (so that the gases rise to the top) and shoot.", @@ -73975,7 +73975,7 @@ "ginger ale" ], "title": "Tequila Boom recipe", - "url": "http://www.drinksmixer.com/drink8027.html" + "url": "https://www.drinksmixer.com/drink8027.html" }, { "directions": "Shake tequila, triple sec, fresh lime juice and cranberry juice together with ice in a cocktail shaker. Strain into a whiskey sour glass and squeeze a further wedge of lime on top. Discard lime, and serve.", @@ -73987,7 +73987,7 @@ "lime juice" ], "title": "Tequila Cosmo recipe", - "url": "http://www.drinksmixer.com/drink8028.html" + "url": "https://www.drinksmixer.com/drink8028.html" }, { "directions": "Pour ingredients into a tall shot glass. Cover the glass with a coaster or hand and slam the glass hard onto the table. Shoot immediately.", @@ -73996,7 +73996,7 @@ "7-Up\u00ae soda" ], "title": "Tequila Pop recipe", - "url": "http://www.drinksmixer.com/drink8029.html" + "url": "https://www.drinksmixer.com/drink8029.html" }, { "directions": "Pour tequila into a cocktail glass. Add a splash of triple sec, and fill with swee and sour mix and orange juice. Serve.", @@ -74007,7 +74007,7 @@ "sweet and sour mix" ], "title": "Tequila Stone Sour recipe", - "url": "http://www.drinksmixer.com/drink8030.html" + "url": "https://www.drinksmixer.com/drink8030.html" }, { "directions": "Add ingredients to a shot glass, and serve with a straw.", @@ -74016,7 +74016,7 @@ "lemon juice" ], "title": "Texas Lightning Bolt recipe", - "url": "http://www.drinksmixer.com/drink8032.html" + "url": "https://www.drinksmixer.com/drink8032.html" }, { "directions": "Add Aftershock and sambuca to a pint glass almost filled with Carlsberg, and serve.", @@ -74026,7 +74026,7 @@ "Carlsberg\u00ae Export lager" ], "title": "Aftershock Surprise recipe", - "url": "http://www.drinksmixer.com/drink8033.html" + "url": "https://www.drinksmixer.com/drink8033.html" }, { "directions": "Pour all ingredients over ice in a highball glass, stir and serve.", @@ -74037,7 +74037,7 @@ "pineapple juice" ], "title": "Continental #2 recipe", - "url": "http://www.drinksmixer.com/drink8034.html" + "url": "https://www.drinksmixer.com/drink8034.html" }, { "directions": "Pour all ingredients over ice in a highball glass, and serve.", @@ -74052,7 +74052,7 @@ "Sprite\u00ae soda" ], "title": "Motherfucker #2 recipe", - "url": "http://www.drinksmixer.com/drink8035.html" + "url": "https://www.drinksmixer.com/drink8035.html" }, { "directions": "Cut a lime into slices and coat in sugar. Pour Ketel One vodka, Southern Comfort and White Lightning into a pitcher filled with ice. Pour cranberry juice into the pitcher last and allow to mingle with the spirits. Do not stir, since this weakens it. Pour through a strainer into a tall glass, and chug. The lime should stay at the bottom of the glass as you chug, forcing you to finish the shot in one gulp before you can retrieve the lime, and you *want* to get the lime before the air hits your tongue.", @@ -74065,7 +74065,7 @@ "sugar" ], "title": "The Big Johnson #2 recipe", - "url": "http://www.drinksmixer.com/drink8036.html" + "url": "https://www.drinksmixer.com/drink8036.html" }, { "directions": "Pour ingredients, in equal parts, into a shot glass, and serve.", @@ -74074,7 +74074,7 @@ "Irish cream" ], "title": "Bitch Slap #2 recipe", - "url": "http://www.drinksmixer.com/drink8037.html" + "url": "https://www.drinksmixer.com/drink8037.html" }, { "directions": "Pour butterscotch schnapps and raspberry vodka in equal parts into a shot glass, and serve.", @@ -74083,7 +74083,7 @@ "Stoli\u00ae Razberi vodka" ], "title": "Bling Bling recipe", - "url": "http://www.drinksmixer.com/drink8038.html" + "url": "https://www.drinksmixer.com/drink8038.html" }, { "directions": "Pour irish cream and tequila rose into a shot glass in equal parts, and serve.", @@ -74092,7 +74092,7 @@ "Tequila Rose\u00ae strawberry cream liqueur" ], "title": "Cherry Popper #2 recipe", - "url": "http://www.drinksmixer.com/drink8039.html" + "url": "https://www.drinksmixer.com/drink8039.html" }, { "directions": "Pour all ingredients except 151 rum into a cocktail shaker. Shake and strain over ice in a tall glass. Float the 151 rum on the top, and serve.", @@ -74106,7 +74106,7 @@ "lime juice" ], "title": "The Crypt recipe", - "url": "http://www.drinksmixer.com/drink8040.html" + "url": "https://www.drinksmixer.com/drink8040.html" }, { "directions": "Pour Stoli raspberry vodka and Bacardi Limon into a shot glass in equal parts, and serve.", @@ -74115,7 +74115,7 @@ "Bacardi\u00ae Limon rum" ], "title": "Fatass recipe", - "url": "http://www.drinksmixer.com/drink8042.html" + "url": "https://www.drinksmixer.com/drink8042.html" }, { "directions": "Pour Hpnotiq into a shot glass. Add an equal amount of Bacardi Limon rum, stir, and serve.", @@ -74124,7 +74124,7 @@ "Hpnotiq\u00ae liqueur" ], "title": "FDU Spanish recipe", - "url": "http://www.drinksmixer.com/drink8043.html" + "url": "https://www.drinksmixer.com/drink8043.html" }, { "directions": "Pour blue curacao and vodka over ice in a collins glass. Add Red Bull, stir, and serve.", @@ -74134,7 +74134,7 @@ "Red Bull\u00ae energy drink" ], "title": "Fizzy Green Hunnit recipe", - "url": "http://www.drinksmixer.com/drink8044.html" + "url": "https://www.drinksmixer.com/drink8044.html" }, { "directions": "Shake goldschlager and grand marnier well in a cocktail shaker with ice. Pour into a chilled cocktail/martini glass, top with bacardi 151 rum, and serve. (Can ignite rum if desired for optimal effect.)", @@ -74144,7 +74144,7 @@ "Bacardi\u00ae 151 rum" ], "title": "Flatliner #2 recipe", - "url": "http://www.drinksmixer.com/drink8045.html" + "url": "https://www.drinksmixer.com/drink8045.html" }, { "directions": "Begin by pouring in six cans of Bush Light, mixing in 1/4 of the total Everclear as you pour. Next add one can Red Bull and one can of lemon concentrate. Continue this process three more times until all ingredients are mixed into the punch. Stir the entire time to ensure thorough mixing. \r", @@ -74155,7 +74155,7 @@ "Red Bull\u00ae energy drink" ], "title": "The Force recipe", - "url": "http://www.drinksmixer.com/drink8046.html" + "url": "https://www.drinksmixer.com/drink8046.html" }, { "directions": "Pour ingredients into a shot glass, in equal parts, and serve.", @@ -74164,7 +74164,7 @@ "Grand Marnier\u00ae orange liqueur" ], "title": "Ghetto Booty recipe", - "url": "http://www.drinksmixer.com/drink8047.html" + "url": "https://www.drinksmixer.com/drink8047.html" }, { "directions": "Pour all ingredients into a cocktail shaker. Shake, strain into an old-fashioned glass, and serve.", @@ -74178,7 +74178,7 @@ "orange juice" ], "title": "The Hague recipe", - "url": "http://www.drinksmixer.com/drink8050.html" + "url": "https://www.drinksmixer.com/drink8050.html" }, { "directions": "Pour ingredients over ice in a highball glass. Stir, and serve.", @@ -74188,7 +74188,7 @@ "vodka" ], "title": "Harrison Ford recipe", - "url": "http://www.drinksmixer.com/drink8051.html" + "url": "https://www.drinksmixer.com/drink8051.html" }, { "directions": "Carefully layer ingredients into a shot glass in this order: Goldschlager bottom, Bacardi 151 middle, Caramel top.\r", @@ -74198,7 +74198,7 @@ "Goldschlager\u00ae cinnamon schnapps" ], "title": "Hot Mess recipe", - "url": "http://www.drinksmixer.com/drink8052.html" + "url": "https://www.drinksmixer.com/drink8052.html" }, { "directions": "Pour ingredients in equal parts into a cup, and serve.", @@ -74207,7 +74207,7 @@ "pineapple juice" ], "title": "The Kelman recipe", - "url": "http://www.drinksmixer.com/drink8053.html" + "url": "https://www.drinksmixer.com/drink8053.html" }, { "directions": "Carefully layer ingredients into a shot glass, in order; Midori melon liqueur on the bottom, Jack Daniel's whiskey in the middle, absinthe on top. Serve.", @@ -74217,7 +74217,7 @@ "absinthe herbal liqueur" ], "title": "M.J.A. recipe", - "url": "http://www.drinksmixer.com/drink8054.html" + "url": "https://www.drinksmixer.com/drink8054.html" }, { "directions": "Pour ingredients into an old-fashioned glass with/without ice, and stir. Sip or shoot.", @@ -74228,7 +74228,7 @@ "sweet and sour mix" ], "title": "Marshall recipe", - "url": "http://www.drinksmixer.com/drink8055.html" + "url": "https://www.drinksmixer.com/drink8055.html" }, { "directions": "Pour ingredients over ice in a highball glass, and serve. Add more orange juice to taste, if desired.", @@ -74237,7 +74237,7 @@ "Sprite\u00ae soda" ], "title": "McGorgan recipe", - "url": "http://www.drinksmixer.com/drink8056.html" + "url": "https://www.drinksmixer.com/drink8056.html" }, { "directions": "Pour ingredients into an old-fashioned glass. Swirl around gently, and serve.", @@ -74246,7 +74246,7 @@ "strawberry crush" ], "title": "Strawberry Splash recipe", - "url": "http://www.drinksmixer.com/drink8057.html" + "url": "https://www.drinksmixer.com/drink8057.html" }, { "directions": "Pour the cranberry juice into a shot glass. Add maple syrup, vodka, and serve.", @@ -74256,7 +74256,7 @@ "cranberry juice" ], "title": "Motherfucker Shot recipe", - "url": "http://www.drinksmixer.com/drink8058.html" + "url": "https://www.drinksmixer.com/drink8058.html" }, { "directions": "Pour ingredients together over ice in a tall glass. Pour into a cocktail shaker and give one brisk shake. Pour back into glass. Garnish with a lemon. Add sugar to taste, and serve.", @@ -74270,7 +74270,7 @@ "sugar" ], "title": "The Pickle Barrel recipe", - "url": "http://www.drinksmixer.com/drink8060.html" + "url": "https://www.drinksmixer.com/drink8060.html" }, { "directions": "Pour all ingredients over ice in a sugar-frosted-rimmed or cinnamon-frosted-rimmed collins glass, and serve.", @@ -74280,7 +74280,7 @@ "Bacardi\u00ae 151 rum" ], "title": "The Quickening recipe", - "url": "http://www.drinksmixer.com/drink8061.html" + "url": "https://www.drinksmixer.com/drink8061.html" }, { "directions": "Pour Everclear into a highball glass half-filled with ice. Add mountain dew, enough to mask the taste of everclear or to personal preference. Then twist a slice of lime into the glass. Add or discard shell, and serve.", @@ -74290,7 +74290,7 @@ "lime" ], "title": "The Sri Thug recipe", - "url": "http://www.drinksmixer.com/drink8063.html" + "url": "https://www.drinksmixer.com/drink8063.html" }, { "directions": "Pour ingredients in equal parts into a shot glass. Stir, and serve.", @@ -74299,7 +74299,7 @@ "Jagermeister\u00ae herbal liqueur" ], "title": "The Stein recipe", - "url": "http://www.drinksmixer.com/drink8064.html" + "url": "https://www.drinksmixer.com/drink8064.html" }, { "directions": "Pour ingredients into a highball glass, stir, and serve.", @@ -74308,7 +74308,7 @@ "milk" ], "title": "The Talking Cow recipe", - "url": "http://www.drinksmixer.com/drink8065.html" + "url": "https://www.drinksmixer.com/drink8065.html" }, { "directions": "Pour ingredients in equal parts into a shot glass, stir, and serve.", @@ -74317,7 +74317,7 @@ "vanilla vodka" ], "title": "The Thingy recipe", - "url": "http://www.drinksmixer.com/drink8066.html" + "url": "https://www.drinksmixer.com/drink8066.html" }, { "directions": "Pour all ingredients over ice in a highball glass. Stir, and serve.", @@ -74331,7 +74331,7 @@ "orange juice" ], "title": "Thirsty Marine recipe", - "url": "http://www.drinksmixer.com/drink8067.html" + "url": "https://www.drinksmixer.com/drink8067.html" }, { "directions": "Pour ingredients in equal parts into a highball glass filled with ice. Stir, and serve.", @@ -74340,7 +74340,7 @@ "Sour Puss\u00ae raspberry liqueur" ], "title": "Twitcher recipe", - "url": "http://www.drinksmixer.com/drink8068.html" + "url": "https://www.drinksmixer.com/drink8068.html" }, { "directions": "Shake all ingredients with ice in a cocktail shaker. Strain into a shot glass, and serve.", @@ -74350,7 +74350,7 @@ "vodka" ], "title": "WOP recipe", - "url": "http://www.drinksmixer.com/drink8069.html" + "url": "https://www.drinksmixer.com/drink8069.html" }, { "directions": "Pour ingredients over lots of ice in a blue-tinted collins glass. Garnish with blueberries, and serve.", @@ -74359,7 +74359,7 @@ "Smirnoff\u00ae Blue Label vodka" ], "title": "Zack Attack recipe", - "url": "http://www.drinksmixer.com/drink8070.html" + "url": "https://www.drinksmixer.com/drink8070.html" }, { "directions": "Pour Barenjager honey liqueur into a shot glass. Carefully layer the Bailey's irish cream on top. Do the same with the Bacardi 151, and serve.", @@ -74369,7 +74369,7 @@ "Bacardi\u00ae 151 rum" ], "title": "Three Bees a Buzzing recipe", - "url": "http://www.drinksmixer.com/drink8071.html" + "url": "https://www.drinksmixer.com/drink8071.html" }, { "directions": "Place the two liquors into the bottom of a shot glas. Add pineapple juice and grenadine, mix well, and serve.", @@ -74380,7 +74380,7 @@ "pineapple juice" ], "title": "Throw Me Down and Fuck Me recipe", - "url": "http://www.drinksmixer.com/drink8072.html" + "url": "https://www.drinksmixer.com/drink8072.html" }, { "directions": "Pour sambuca into a shot glass. Drop tequila rose into the center of the glass, and serve.", @@ -74389,7 +74389,7 @@ "Tequila Rose\u00ae strawberry cream liqueur" ], "title": "Tie Dye recipe", - "url": "http://www.drinksmixer.com/drink8073.html" + "url": "https://www.drinksmixer.com/drink8073.html" }, { "directions": "Shake all ingredients with ice in a cocktail shaker. Pour over ice into a collins glass, and top with soda to taste. Garnish with a lemon wedge and a maraschino cherry, and serve.", @@ -74400,7 +74400,7 @@ "soda" ], "title": "Tiki Lemonade recipe", - "url": "http://www.drinksmixer.com/drink8074.html" + "url": "https://www.drinksmixer.com/drink8074.html" }, { "directions": "Pour a premium tequila over a handful of crushed ice in a highball glass. Add cola. Garnish with a thick slice of lime, and serve.", @@ -74409,7 +74409,7 @@ "cola" ], "title": "Tender Loving Care recipe", - "url": "http://www.drinksmixer.com/drink8075.html" + "url": "https://www.drinksmixer.com/drink8075.html" }, { "directions": "Combine all ingredients in a cocktail shaker. Shake, strain into a small highball glass filled with ice, and serve.", @@ -74422,7 +74422,7 @@ "Midori\u00ae melon liqueur" ], "title": "Tokyo Tea recipe", - "url": "http://www.drinksmixer.com/drink8076.html" + "url": "https://www.drinksmixer.com/drink8076.html" }, { "directions": "Pour both ingredients into a beer mug, stir, and serve.", @@ -74431,7 +74431,7 @@ "tomato juice" ], "title": "Tomboy recipe", - "url": "http://www.drinksmixer.com/drink8077.html" + "url": "https://www.drinksmixer.com/drink8077.html" }, { "directions": "Pour Tia Maria coffee liqueur into a shot glass. Carefully layer an equal amount of butterscotch schanpps on top, then do the same with Bailey's irish cream, and serve.", @@ -74441,7 +74441,7 @@ "Tia Maria\u00ae coffee liqueur" ], "title": "Tonsil Tickler recipe", - "url": "http://www.drinksmixer.com/drink8078.html" + "url": "https://www.drinksmixer.com/drink8078.html" }, { "directions": "Stir ingredients together in a collins glass. Serve with an umbrella.", @@ -74451,7 +74451,7 @@ "peach schnapps" ], "title": "Travis' Special recipe", - "url": "http://www.drinksmixer.com/drink8080.html" + "url": "https://www.drinksmixer.com/drink8080.html" }, { "directions": "Pour Absolut Citron into a highball glass filled with ice. Add peach schnapps and triple sec. Top off with orange juice and 7-up, to taste, and serve.", @@ -74463,7 +74463,7 @@ "7-Up\u00ae soda" ], "title": "Triple Threat recipe", - "url": "http://www.drinksmixer.com/drink8081.html" + "url": "https://www.drinksmixer.com/drink8081.html" }, { "directions": "Pour Malibu rum and Smirnoff Orange Twist vodka into a collins glass filled with ice. Fill glass 3/4 full with equal amounts of orange juice and pineapple juice; fill rest of way with milk; shake and serve.", @@ -74475,7 +74475,7 @@ "milk" ], "title": "Tropical Bliss recipe", - "url": "http://www.drinksmixer.com/drink8082.html" + "url": "https://www.drinksmixer.com/drink8082.html" }, { "directions": "Pour raspberry and watermelon schnapps into a cocktail shaker. Shake and strain into a cocktail glass. Top with mountain dew, and serve.", @@ -74485,7 +74485,7 @@ "Mountain Dew\u00ae citrus soda" ], "title": "Tropical Breeze recipe", - "url": "http://www.drinksmixer.com/drink8083.html" + "url": "https://www.drinksmixer.com/drink8083.html" }, { "directions": "Pour Bacardi rum into a collins glass. Add Malibu rum, Jose Cuervo tequila, pineapple juice, cranberry juice and orange juice. Stir, add a few ice cubes, and serve.", @@ -74498,7 +74498,7 @@ "orange juice" ], "title": "Tropical Suicide recipe", - "url": "http://www.drinksmixer.com/drink8084.html" + "url": "https://www.drinksmixer.com/drink8084.html" }, { "directions": "Pour all ingredients into a large cocktail shaker filled with ice. Shake and strain into a large cocktail/martini glass (8+ ounces) with a salt rim. Add two olives on a spear, and serve.", @@ -74512,7 +74512,7 @@ "olives" ], "title": "Mexican Martini recipe", - "url": "http://www.drinksmixer.com/drink8085.html" + "url": "https://www.drinksmixer.com/drink8085.html" }, { "directions": "Pour ingredients into a cocktail shaker with ice, and shake. Strain into a double-shot glass, and serve.", @@ -74523,7 +74523,7 @@ "sweet and sour mix" ], "title": "Tuaca Lemon Drop recipe", - "url": "http://www.drinksmixer.com/drink8086.html" + "url": "https://www.drinksmixer.com/drink8086.html" }, { "directions": "Pour all ingredients into a jug, and serve into highball glasses.", @@ -74533,7 +74533,7 @@ "Red Bull\u00ae energy drink" ], "title": "Tucker Death Mix recipe", - "url": "http://www.drinksmixer.com/drink8087.html" + "url": "https://www.drinksmixer.com/drink8087.html" }, { "directions": "Pour half a pint of a strong lager (ie. Stella Artois) into a pint glass. Fill with Smirnoff Ice, and serve.", @@ -74542,7 +74542,7 @@ "Smirnoff\u00ae Ice" ], "title": "Turbo Shandy recipe", - "url": "http://www.drinksmixer.com/drink8088.html" + "url": "https://www.drinksmixer.com/drink8088.html" }, { "directions": "Pour tequila rose and southern comfort in equal parts into a shot glass, and serve.", @@ -74551,7 +74551,7 @@ "Southern Comfort\u00ae peach liqueur" ], "title": "Southern Rose recipe", - "url": "http://www.drinksmixer.com/drink8089.html" + "url": "https://www.drinksmixer.com/drink8089.html" }, { "directions": "Pour vanilla vodka into a cocktail glass. Top with coke or diet coke, add ice cubes if desired, and serve.", @@ -74560,7 +74560,7 @@ "Coca-Cola\u00ae" ], "title": "Vanilla Coke recipe", - "url": "http://www.drinksmixer.com/drink8090.html" + "url": "https://www.drinksmixer.com/drink8090.html" }, { "directions": "Pour both ingredients into a highball glass. Add ice if desired, and serve.", @@ -74569,7 +74569,7 @@ "Dr. Pepper\u00ae soda" ], "title": "Vanilla Pig recipe", - "url": "http://www.drinksmixer.com/drink8091.html" + "url": "https://www.drinksmixer.com/drink8091.html" }, { "directions": "Pour DeKuyper sour apple pucker and Crown Royal canadian whisky into a highball glass filled with ice. Add cranberry juice, more to taste if desired, and serve.", @@ -74579,7 +74579,7 @@ "cranberry juice" ], "title": "Washington Apple Cocktail recipe", - "url": "http://www.drinksmixer.com/drink8093.html" + "url": "https://www.drinksmixer.com/drink8093.html" }, { "directions": "Pour Crown Royal canadian whisky, DeKuyper sour apple pucker and cranberry juice into a cocktail shaker. Shake and strain into a shot glass. Add a splash of 7-Up if desired, and serve.\n\n", @@ -74590,7 +74590,7 @@ "7-Up\u00ae soda" ], "title": "Washington Apple Shot recipe", - "url": "http://www.drinksmixer.com/drink8094.html" + "url": "https://www.drinksmixer.com/drink8094.html" }, { "directions": "Pour ingredients in equal parts into a shot glass, and serve.", @@ -74599,7 +74599,7 @@ "DeKuyper\u00ae Sour Apple Pucker schnapps" ], "title": "Washington Apple Shot #2 recipe", - "url": "http://www.drinksmixer.com/drink8095.html" + "url": "https://www.drinksmixer.com/drink8095.html" }, { "directions": "Add the kool-aid mix to a punch bowl and add one cup of sugar. Add vodka, coconut rum, spiced rum, and gin. Fill remainder of punch bowl with water, and stir. Add more sugar if desired, and serve into mugs, punch cups or old-fashioned glasses.", @@ -74613,7 +74613,7 @@ "water" ], "title": "Rat Fuck recipe", - "url": "http://www.drinksmixer.com/drink8096.html" + "url": "https://www.drinksmixer.com/drink8096.html" }, { "directions": "Pour a regular Guinness into a beer pilsner. Wait for head to settle, then add vodka, and serve.", @@ -74622,7 +74622,7 @@ "Stoli\u00ae Vanil vodka" ], "title": "Velvet Hammer #3 recipe", - "url": "http://www.drinksmixer.com/drink8097.html" + "url": "https://www.drinksmixer.com/drink8097.html" }, { "directions": "Add ice to a pitcher. Pour in vodka, Amp, and top off with sweet and sour mix. Pour into highball glasses, and serve.", @@ -74633,7 +74633,7 @@ "ice" ], "title": "Vodka Amp recipe", - "url": "http://www.drinksmixer.com/drink8098.html" + "url": "https://www.drinksmixer.com/drink8098.html" }, { "directions": "Pour vodka into a highball glass filled with ice. Add Coca-cola, add a straw, and serve.", @@ -74642,7 +74642,7 @@ "Coca-Cola\u00ae" ], "title": "Vodka and Coke recipe", - "url": "http://www.drinksmixer.com/drink8099.html" + "url": "https://www.drinksmixer.com/drink8099.html" }, { "directions": "Pour vodka into a highball glass filled with ice. Add Dr. Pepper, and serve.", @@ -74651,7 +74651,7 @@ "Bartons\u00ae vodka" ], "title": "Vokter Pepper recipe", - "url": "http://www.drinksmixer.com/drink8100.html" + "url": "https://www.drinksmixer.com/drink8100.html" }, { "directions": "Carefully layer the liquors on top of one another in a shot glass. Top with a dollop of whipped cream, and serve.", @@ -74662,7 +74662,7 @@ "whipped cream" ], "title": "Warm Apple Pie recipe", - "url": "http://www.drinksmixer.com/drink8102.html" + "url": "https://www.drinksmixer.com/drink8102.html" }, { "directions": "Combine lime juice and wasabi with a whisk, until wasabi dissolves. Pour into a pitcher, and add veggie juice, worcestershire sauce, pepper sauce and salt. Chill. Stir in vodka and serve over ice, with a stalk of celery or pickled asparagus. Serves 8.", @@ -74676,7 +74676,7 @@ "vodka" ], "title": "Wasabi Bloody Mary recipe", - "url": "http://www.drinksmixer.com/drink8103.html" + "url": "https://www.drinksmixer.com/drink8103.html" }, { "directions": "Pour all ingredients intoa cocktail shaker. Shake and strain over ice cubes in a cocktail glass. Garnish with a lemon twist, and serve.", @@ -74686,7 +74686,7 @@ "lemon juice" ], "title": "Washoe Peel recipe", - "url": "http://www.drinksmixer.com/drink8105.html" + "url": "https://www.drinksmixer.com/drink8105.html" }, { "directions": "Pour ingredients in equal parts into a shot glass, and serve.", @@ -74695,7 +74695,7 @@ "vanilla vodka" ], "title": "White Cotton Panties recipe", - "url": "http://www.drinksmixer.com/drink8107.html" + "url": "https://www.drinksmixer.com/drink8107.html" }, { "directions": "Pour Bailey's irish cream, Kahlua coffee liqueur and vodka over ice in a parfait glass. Fill with milk or cream, stir, and serve.", @@ -74706,7 +74706,7 @@ "milk" ], "title": "White Girl recipe", - "url": "http://www.drinksmixer.com/drink8108.html" + "url": "https://www.drinksmixer.com/drink8108.html" }, { "directions": "Add all ingredients to a shaker 3/4 filled with ice. Strain into a highball glass 1/2 filled with ice, and serve.", @@ -74716,7 +74716,7 @@ "Rose's\u00ae lime juice" ], "title": "White Lizard recipe", - "url": "http://www.drinksmixer.com/drink8109.html" + "url": "https://www.drinksmixer.com/drink8109.html" }, { "directions": "Pour Gentleman Jack whiskey into a whiskey sour glass. Add 3 ice cubes, top with Vanilla Coke, and serve.", @@ -74725,7 +74725,7 @@ "Coca-Cola\u00ae Vanilla Coke" ], "title": "White Man recipe", - "url": "http://www.drinksmixer.com/drink8110.html" + "url": "https://www.drinksmixer.com/drink8110.html" }, { "directions": "Pour Stoli vodka, kahlua and banana liqueur into a highball glass or cup with ice. Top off with milk, followed by two slices of thinly cut bananas. Stir and serve.", @@ -74737,7 +74737,7 @@ "bananas" ], "title": "White Romanian recipe", - "url": "http://www.drinksmixer.com/drink8111.html" + "url": "https://www.drinksmixer.com/drink8111.html" }, { "directions": "Pour jagermeister into a highball glass filled with ice. Add vodka, and almost fill completely with apple juice. Add just a splash of ginger ale, garnish with an orange slice, and serve.", @@ -74748,7 +74748,7 @@ "ginger ale" ], "title": "Wicked Apple recipe", - "url": "http://www.drinksmixer.com/drink8112.html" + "url": "https://www.drinksmixer.com/drink8112.html" }, { "directions": "Combine all ingredients in equal parts in a cocktail shaker with ice. Shake and strain into a 12 oz glass (or thereabouts), and serve.", @@ -74759,7 +74759,7 @@ "cranberry juice" ], "title": "Wild Beaver recipe", - "url": "http://www.drinksmixer.com/drink8113.html" + "url": "https://www.drinksmixer.com/drink8113.html" }, { "directions": "Pour all ingredients into a cocktail shaker over ice. Shake and strain into a shot glass, and serve.", @@ -74771,7 +74771,7 @@ "lime juice" ], "title": "Wild Black Betty recipe", - "url": "http://www.drinksmixer.com/drink8114.html" + "url": "https://www.drinksmixer.com/drink8114.html" }, { "directions": "Add everything but the bitters and lemon juice to a blender with four ice cubes. Blend for less than a half minute (the ice cubes should not be totally disintegrated). Pour into a highball glass, add the bitters and lemon juice, and serve.", @@ -74785,7 +74785,7 @@ "lemon juice" ], "title": "Wild Sacramento recipe", - "url": "http://www.drinksmixer.com/drink8115.html" + "url": "https://www.drinksmixer.com/drink8115.html" }, { "directions": "Combine all ingredients in a cocktail shaker with ice. Shake, strain into a cocktail glass, and serve.", @@ -74796,7 +74796,7 @@ "Absolut\u00ae vodka" ], "title": "Wiper Fluid recipe", - "url": "http://www.drinksmixer.com/drink8116.html" + "url": "https://www.drinksmixer.com/drink8116.html" }, { "directions": "Pour all whiskeys and irish cream into a 2 oz double-shot glass. Pour half a pint of Guinness into a beer mug or pint glass. Drop the shot glass into the stout, and chug.", @@ -74808,7 +74808,7 @@ "Bailey's\u00ae Irish cream" ], "title": "Wise Bomb recipe", - "url": "http://www.drinksmixer.com/drink8117.html" + "url": "https://www.drinksmixer.com/drink8117.html" }, { "directions": "Pour rum, passoa, orange vodka and cherry liqueur into a hurricane glass filled with ice. Fill with Red Bull, and serve.", @@ -74820,7 +74820,7 @@ "Red Bull\u00ae energy drink" ], "title": "Yes! recipe", - "url": "http://www.drinksmixer.com/drink8118.html" + "url": "https://www.drinksmixer.com/drink8118.html" }, { "directions": "Place the sugar in a saucer. Rub the rim of a wine goblet with a lemon wedge, and dip into the sugar to coat the rim thoroughly; discard lemon. Peel a spiral of orange peel and place inside the glass, draped over one side. Fill with crushed ice. Combine the bourbon whiskey, Cointreau, maraschino and lemon juice in a cocktail shaker. Shake well, strain into the glass, and serve.", @@ -74833,7 +74833,7 @@ "lemon" ], "title": "Bourbon Crusta recipe", - "url": "http://www.drinksmixer.com/drink8120.html" + "url": "https://www.drinksmixer.com/drink8120.html" }, { "directions": "Pour bourbon whiskey and water into a highball glass. Add sugar, allow to dissolve. Almost fill the glass with crushed ice and club soda. Float the tawny port on top. Garnish with a twist of lemon peel, sprinkle with nutmeg and cinnamon, and serve.", @@ -74848,7 +74848,7 @@ "lemons" ], "title": "Bourbon Sangaree recipe", - "url": "http://www.drinksmixer.com/drink8121.html" + "url": "https://www.drinksmixer.com/drink8121.html" }, { "directions": "Rub the rim of a cocktail glass with a lime wedge and dip into a flat bowl of sugar (2 tsp) in order to thoroughly coat the rim. Discard the lime shell. Pour the rum, raspberry liqueur, Cointreau, lemon juice and a teaspoon of sugar into a cocktail shaker half-filled with ice cubes. Shake well, strain into the cocktail glass, and serve.", @@ -74861,7 +74861,7 @@ "lime" ], "title": "Strain the Rein recipe", - "url": "http://www.drinksmixer.com/drink8122.html" + "url": "https://www.drinksmixer.com/drink8122.html" }, { "directions": "Pour the dark rum, dark creme de cacao and hot chocolate (room temperature) into a cocktail shaker half-filled with ice cubes. Shake well, and strain into a cocktail glass. Add the cream into the center of the drink, and serve.", @@ -74872,7 +74872,7 @@ "heavy cream" ], "title": "Sue Riding High recipe", - "url": "http://www.drinksmixer.com/drink8123.html" + "url": "https://www.drinksmixer.com/drink8123.html" }, { "directions": "Pour all ingredients into a cocktail shaker half-filled with ice cubes. Shake well, strain into a cocktail glass, and serve.", @@ -74883,7 +74883,7 @@ "grenadine syrup" ], "title": "Suffragette City recipe", - "url": "http://www.drinksmixer.com/drink8124.html" + "url": "https://www.drinksmixer.com/drink8124.html" }, { "directions": "Pour all ingredients into a blender, add 3 - 4 cups of ice and blend until all ice is chopped fine. Should be the consistentency of a daiquiri or colada. Pour into a pitcher ready to serve.", @@ -74898,7 +74898,7 @@ "ice" ], "title": "Texas Pink Cloud recipe", - "url": "http://www.drinksmixer.com/drink8125.html" + "url": "https://www.drinksmixer.com/drink8125.html" }, { "directions": "Pour DeKuyper Buttershots, Kahlua coffee liqueur and vodka into a highball glass filled with ice cubes. Stir in half-and-half until the glass is full. Garnish with a maraschino cherry, add a straw, and serve.", @@ -74909,7 +74909,7 @@ "half-and-half" ], "title": "British Bulldog recipe", - "url": "http://www.drinksmixer.com/drink8126.html" + "url": "https://www.drinksmixer.com/drink8126.html" }, { "directions": "Pour both ingredients into a cocktail shaker with ice. Shake and strain into a shot glass, and serve.\n\n", @@ -74918,7 +74918,7 @@ "Sour Puss\u00ae raspberry liqueur" ], "title": "Porn Star recipe", - "url": "http://www.drinksmixer.com/drink8127.html" + "url": "https://www.drinksmixer.com/drink8127.html" }, { "directions": "Pour rum, peach schnapps and orange juice into a highball glass filled with ice cubes. Stir well, garnish with a slice of orange, and serve.", @@ -74928,7 +74928,7 @@ "orange juice" ], "title": "Surrey Slider recipe", - "url": "http://www.drinksmixer.com/drink8128.html" + "url": "https://www.drinksmixer.com/drink8128.html" }, { "directions": "Pour all ingredients into a highball glass almost filled with ice cubes. Stir well, and serve.", @@ -74939,7 +74939,7 @@ "orange juice" ], "title": "Susan Littler recipe", - "url": "http://www.drinksmixer.com/drink8129.html" + "url": "https://www.drinksmixer.com/drink8129.html" }, { "directions": "Combine all ingredients in a cocktail shaker half-filled with ice cubes. Shake and strain into a cocktail glass, and serve.", @@ -74950,7 +74950,7 @@ "grenadine syrup" ], "title": "Three-Miler Cocktail recipe", - "url": "http://www.drinksmixer.com/drink8130.html" + "url": "https://www.drinksmixer.com/drink8130.html" }, { "directions": "Combine the rum, dark creme de cacao, white creme de cacao, coffee (cooled to room temperature) and cream in a cocktail shaker half-filled with ice cubes. Shake well, and strain into an old-fashioned glass almost filled with ice cubes. Dust with cinnamon, and serve.", @@ -74963,7 +74963,7 @@ "cinnamon" ], "title": "Trouble for Tina recipe", - "url": "http://www.drinksmixer.com/drink8131.html" + "url": "https://www.drinksmixer.com/drink8131.html" }, { "directions": "Pour all ingredients into a cocktail shaker half-filled with ice cubes. Shake well, strain into an old-fashioned glass almost filled with ice cubes, and serve.", @@ -74976,7 +74976,7 @@ "egg" ], "title": "Waking to the Call of the Mockingbird recipe", - "url": "http://www.drinksmixer.com/drink8132.html" + "url": "https://www.drinksmixer.com/drink8132.html" }, { "directions": "Combine the tequila, blue curacao, maraschino liqueur, lemon juice and sugar in a cocktail shaker half-filled with ice cubes. Shake well and strain into a highball glass almost filled with ice cubes. Top with tonic water, garnish with a maraschino cherry and an orange slice, and serve.", @@ -74989,7 +74989,7 @@ "tonic water" ], "title": "Alleluia recipe", - "url": "http://www.drinksmixer.com/drink8133.html" + "url": "https://www.drinksmixer.com/drink8133.html" }, { "directions": "Pour tequila, creme de bananes and lemon juice into a cocktail shaker half-filled with crushed ice. Shake, strain into an old-fashioned glass almost filled with crushed ice, and serve.", @@ -74999,7 +74999,7 @@ "lemon juice" ], "title": "Gull's Wing recipe", - "url": "http://www.drinksmixer.com/drink8134.html" + "url": "https://www.drinksmixer.com/drink8134.html" }, { "directions": "Pour all ingredients into a highball glass almost-filled with ice cubes. Stir, and serve.", @@ -75009,7 +75009,7 @@ "tonic water" ], "title": "Joumbaba recipe", - "url": "http://www.drinksmixer.com/drink8135.html" + "url": "https://www.drinksmixer.com/drink8135.html" }, { "directions": "Pour tequila, orange juice, grapefruit juice, lemon juice and bitters in a cocktail shaker half-filled with ice cubes. Shake and strain into a highball glass almost filled with ice cubes. Carefully float the curacao on top by pouring over the back of a teaspoon, and serve.", @@ -75022,7 +75022,7 @@ "Blue Curacao liqueur" ], "title": "Juan Blue recipe", - "url": "http://www.drinksmixer.com/drink8136.html" + "url": "https://www.drinksmixer.com/drink8136.html" }, { "directions": "Pour tequila, gin, vodka, curacao, lemon juice and sugar into a cocktail shaker half-filled with ice cubes. Shake and strain into a highball glass almost filled with ice cubes. Top with club soda, garnish with a cherry, and serve.", @@ -75036,7 +75036,7 @@ "club soda" ], "title": "Jubilee recipe", - "url": "http://www.drinksmixer.com/drink8137.html" + "url": "https://www.drinksmixer.com/drink8137.html" }, { "directions": "Pour tequila and sambuca into a mixing glass half-filled with ice cubes. Stir well, and strain into a cocktail glass. Garnish with coffee beans, and serve.", @@ -75046,7 +75046,7 @@ "coffee" ], "title": "Jumping Bean recipe", - "url": "http://www.drinksmixer.com/drink8138.html" + "url": "https://www.drinksmixer.com/drink8138.html" }, { "directions": "Pour tequila, sloe gin and vermouth into an old-fashioned glass almost filled with ice cubes. Stir well, garnish with a lime wedge, and serve.", @@ -75056,7 +75056,7 @@ "sweet vermouth" ], "title": "Leapfrog recipe", - "url": "http://www.drinksmixer.com/drink8139.html" + "url": "https://www.drinksmixer.com/drink8139.html" }, { "directions": "Pour the tequila and pineapple juice into a highball glass almost filled with ice cubes, and stir well. Drop the blue curacao into the center of the drink, and serve.", @@ -75066,7 +75066,7 @@ "Blue Curacao liqueur" ], "title": "Moonraker recipe", - "url": "http://www.drinksmixer.com/drink8140.html" + "url": "https://www.drinksmixer.com/drink8140.html" }, { "directions": "Pour the tequila into a mixing glass half-filled with ice cubes, and stir. Pour the bitters into a brandy snifter and swirl around in order to coat the glass. Discard any excess bitters from the glass, then strain the tequila into the glass, and serve.", @@ -75075,7 +75075,7 @@ "bitters" ], "title": "Pink Paradise recipe", - "url": "http://www.drinksmixer.com/drink8141.html" + "url": "https://www.drinksmixer.com/drink8141.html" }, { "directions": "Pour tequila, lemon juice, dark creme de cacao and coffee (cooled to room temperature) into an irish coffee cup or irish coffee glass almost filled with crushed ice. Stir well, and serve.", @@ -75086,7 +75086,7 @@ "coffee" ], "title": "Piper recipe", - "url": "http://www.drinksmixer.com/drink8142.html" + "url": "https://www.drinksmixer.com/drink8142.html" }, { "directions": "Pour tequila, Cointreau and pineapple juice into a highball glass almost filled with ice cubes. Stir, garnish with a lime wedge, and serve.", @@ -75096,7 +75096,7 @@ "pineapple juice" ], "title": "Poker Face recipe", - "url": "http://www.drinksmixer.com/drink8143.html" + "url": "https://www.drinksmixer.com/drink8143.html" }, { "directions": "Pour tequila, cranberry liqueur and cranberry juice into a highball glass almost filled with ice cubes. Stir, garnish with a lime wedge, and serve.", @@ -75106,7 +75106,7 @@ "cranberry juice" ], "title": "Red Face recipe", - "url": "http://www.drinksmixer.com/drink8144.html" + "url": "https://www.drinksmixer.com/drink8144.html" }, { "directions": "Pour tequila and galliano into a mixing glass half-filled with ice cubes. Stir well, strain into a cocktail glass, and serve.", @@ -75115,7 +75115,7 @@ "Galliano\u00ae herbal liqueur" ], "title": "Scottie Was Beamed Up recipe", - "url": "http://www.drinksmixer.com/drink8145.html" + "url": "https://www.drinksmixer.com/drink8145.html" }, { "directions": "Pour all ingredients into a cocktail shaker half-filled with ice cubes. Shake well, strain into a cocktail glass, and serve.", @@ -75126,7 +75126,7 @@ "grenadine syrup" ], "title": "Shaker Cocktail recipe", - "url": "http://www.drinksmixer.com/drink8146.html" + "url": "https://www.drinksmixer.com/drink8146.html" }, { "directions": "Pour tequila, dark creme de cacao, heavy cream and Chambord into a cocktail shaker half-filled with ice cubes. Shake, strain into a cocktail glass, and serve.", @@ -75137,7 +75137,7 @@ "Chambord\u00ae raspberry liqueur" ], "title": "Silk Stocking recipe", - "url": "http://www.drinksmixer.com/drink8147.html" + "url": "https://www.drinksmixer.com/drink8147.html" }, { "directions": "Pour tequila, lemon juice, sugar and port into a cocktail shaker half-filled with ice cubes. Shake well, and pour into a highball glass almost filled with ice cubes. Garnish with a maraschino cherry, and serve.", @@ -75148,7 +75148,7 @@ "ruby port" ], "title": "Smiler recipe", - "url": "http://www.drinksmixer.com/drink8148.html" + "url": "https://www.drinksmixer.com/drink8148.html" }, { "directions": "Pour tequila, Pernod and creme de menthe into a mixing glass half-filled with ice cubes. Stir well. Strain into a cocktail glass, garnish with a twist of lemon peel, and serve.", @@ -75158,7 +75158,7 @@ "white creme de menthe" ], "title": "Stella's Stinger recipe", - "url": "http://www.drinksmixer.com/drink8149.html" + "url": "https://www.drinksmixer.com/drink8149.html" }, { "directions": "Pour tequila and lemon-lime soda into a highball glass almost filled with ice cubes. Stir, garnish with a wedge of lemon, and serve.", @@ -75167,7 +75167,7 @@ "lemon-lime soda" ], "title": "Tequila Cooler recipe", - "url": "http://www.drinksmixer.com/drink8150.html" + "url": "https://www.drinksmixer.com/drink8150.html" }, { "directions": "Pour tequila, lemon juice and sugar into a cocktail shaker half-filled with ice cubes. Shake well, and strain into a collins glass almost filled with ice cubes. Add club soda, stir well, and serve.", @@ -75178,7 +75178,7 @@ "club soda" ], "title": "Tequila Fizz #2 recipe", - "url": "http://www.drinksmixer.com/drink8151.html" + "url": "https://www.drinksmixer.com/drink8151.html" }, { "directions": "Pour tequila and vermouth into a mixing glass half-filled with ice cubes. Stir well, and strain into a cocktail glass. Garnish with a twist of lemon or an olive, and serve.", @@ -75187,7 +75187,7 @@ "dry vermouth" ], "title": "Tequila Martini recipe", - "url": "http://www.drinksmixer.com/drink8152.html" + "url": "https://www.drinksmixer.com/drink8152.html" }, { "directions": "Combine the tequila, light rum, dark rum, Rose's lime juice, lemon juice and sugar into a cocktail shaker half-filled with ice cubes. Strain into a collins glass almost filled with ice cubes, top with ale, and serve.", @@ -75201,7 +75201,7 @@ "ale" ], "title": "Tequila Moonrise recipe", - "url": "http://www.drinksmixer.com/drink8153.html" + "url": "https://www.drinksmixer.com/drink8153.html" }, { "directions": "Pour tequila and creme de menthe into a mixing glass half-filled with ice cubes. Stir well, strain into a cocktail glass, and serve.", @@ -75210,7 +75210,7 @@ "white creme de menthe" ], "title": "Tequila Stinger recipe", - "url": "http://www.drinksmixer.com/drink8154.html" + "url": "https://www.drinksmixer.com/drink8154.html" }, { "directions": "Pour all ingredients into a cocktail shaker half-filled with ice cubes. Shake and strain into a cocktail glass. Garnish with a slice of orange and a maraschino cherry, and serve.", @@ -75222,7 +75222,7 @@ "bitters" ], "title": "Tequila Suave recipe", - "url": "http://www.drinksmixer.com/drink8155.html" + "url": "https://www.drinksmixer.com/drink8155.html" }, { "directions": "Pour the tequila and beer into a highball glass almost filled with ice cubes, and stir. Sprinkle the salt on top, garnish with lemon wedge, and serve.", @@ -75232,7 +75232,7 @@ "salt" ], "title": "Time Killer recipe", - "url": "http://www.drinksmixer.com/drink8156.html" + "url": "https://www.drinksmixer.com/drink8156.html" }, { "directions": "Pour tequila, dark creme de cacao and cream into a cocktail shaker half-filled with ice cubes. Shake and strain into a cocktail glass. Garnish with cocoa powder dusted over the top, and serve.", @@ -75243,7 +75243,7 @@ "cocoa powder" ], "title": "Toreador #2 recipe", - "url": "http://www.drinksmixer.com/drink8157.html" + "url": "https://www.drinksmixer.com/drink8157.html" }, { "directions": "Rub the rim of a cocktail glass with a lime wedge, and dip into sugar in a saucer or flat bowl; discard lime. Pour the tequila and juices into a cocktail shaker half-filled with ice cubes. Shake and strain into a cocktail glass, and serve.", @@ -75254,7 +75254,7 @@ "superfine sugar" ], "title": "Viva Villa #2 recipe", - "url": "http://www.drinksmixer.com/drink8158.html" + "url": "https://www.drinksmixer.com/drink8158.html" }, { "directions": "Pour tequila, galliano and Mexican hot chocolate (cooled to room temperature) into an Irish coffee cup or glass almost filled with crushed ice. Stir well, and serve.", @@ -75264,7 +75264,7 @@ "Mexican hot chocolate" ], "title": "Zultry Zoe recipe", - "url": "http://www.drinksmixer.com/drink8159.html" + "url": "https://www.drinksmixer.com/drink8159.html" }, { "directions": "Pour both ingredients into an old-fashioned glass almost filled with ice. Stir well, and serve.", @@ -75273,7 +75273,7 @@ "Drambuie\u00ae Scotch whisky" ], "title": "Aberfoyle recipe", - "url": "http://www.drinksmixer.com/drink8160.html" + "url": "https://www.drinksmixer.com/drink8160.html" }, { "directions": "Pour both ingredients into a cocktail glass, stir well, and serve.", @@ -75282,7 +75282,7 @@ "Opal Nera\u00ae black sambuca" ], "title": "Bertrand's Black Magic recipe", - "url": "http://www.drinksmixer.com/drink8161.html" + "url": "https://www.drinksmixer.com/drink8161.html" }, { "directions": "Pour vodka and blackberry brandy into a mixing glass half-filled with ice cubes. Stir, strain into a cocktail glass, and serve.", @@ -75291,7 +75291,7 @@ "blackberry brandy" ], "title": "Black Eye recipe", - "url": "http://www.drinksmixer.com/drink8162.html" + "url": "https://www.drinksmixer.com/drink8162.html" }, { "directions": "Combine vodka, tomato juice, lemon juice, pepper, salt, celery salt, Worcestershire sauce and Tabasco sauce in a cocktail shaker half-filled with ice cubes. Shake well, and strain into a highball glass almost filled with ice cubes. Garnish with a stick of celery and a wedge of lime, and serve.", @@ -75306,7 +75306,7 @@ "Tabasco\u00ae sauce" ], "title": "Bloody Mary #2 recipe", - "url": "http://www.drinksmixer.com/drink8163.html" + "url": "https://www.drinksmixer.com/drink8163.html" }, { "directions": "Pour pepper vodka and V-8 juice into a cocktail shaker half-filled with ice cubes. Shake and strain into a highball glass almost filled with ice cubes. Float a slice of jalapeno pepper on top, and serve.", @@ -75316,7 +75316,7 @@ "jalapeno pepper" ], "title": "Bloody Mary #3 recipe", - "url": "http://www.drinksmixer.com/drink8164.html" + "url": "https://www.drinksmixer.com/drink8164.html" }, { "directions": "Combine lemon vodka, tomato juice and dill (use a dash of dried if no fresh available) in a cocktail shaker half-filled with ice cubes. Shake and strain into a highball glass almost filled with ice cubes. Float a slice of lemon on top, and serve.", @@ -75327,7 +75327,7 @@ "lemon" ], "title": "Bloody Mary #4 recipe", - "url": "http://www.drinksmixer.com/drink8165.html" + "url": "https://www.drinksmixer.com/drink8165.html" }, { "directions": "Pour all ingredients into a cocktail shaker half-filled with ice cubes. Shake and strain into a cocktail glass, and serve.", @@ -75337,7 +75337,7 @@ "lemon juice" ], "title": "Brazen Hussy recipe", - "url": "http://www.drinksmixer.com/drink8166.html" + "url": "https://www.drinksmixer.com/drink8166.html" }, { "directions": "Pour vodka and brandy into a mixing glass half-filled with ice cubes. Stir well, strain into a cocktail glass, and serve.", @@ -75346,7 +75346,7 @@ "blueberry brandy" ], "title": "Bluebeard #2 recipe", - "url": "http://www.drinksmixer.com/drink8167.html" + "url": "https://www.drinksmixer.com/drink8167.html" }, { "directions": "Pour vodka, cherry brandy and brandy into a mixing glass half-filled with ice cubes. Stir well. Strain into a cocktail glass, garnish with a maraschino cherry, and serve.", @@ -75356,7 +75356,7 @@ "brandy" ], "title": "Cherry Ripe recipe", - "url": "http://www.drinksmixer.com/drink8168.html" + "url": "https://www.drinksmixer.com/drink8168.html" }, { "directions": "Pour all ingredients into a mixing glass half-filled with ice cubes. Stir well, strain into a cocktail glass, and serve.", @@ -75367,7 +75367,7 @@ "bitters" ], "title": "Czarine recipe", - "url": "http://www.drinksmixer.com/drink8169.html" + "url": "https://www.drinksmixer.com/drink8169.html" }, { "directions": "Pour vodka, vermouth and Cointreau into a mixing glass half-filled with ice cubes. Stir well and strain into a cocktail glass. Garnish with a twist of lemon, and serve.", @@ -75377,7 +75377,7 @@ "Cointreau\u00ae orange liqueur" ], "title": "Deanne recipe", - "url": "http://www.drinksmixer.com/drink8170.html" + "url": "https://www.drinksmixer.com/drink8170.html" }, { "directions": "Pour all ingredients into a highball glass, stir well, and serve.", @@ -75387,7 +75387,7 @@ "cranberry juice" ], "title": "Desert Shield recipe", - "url": "http://www.drinksmixer.com/drink8171.html" + "url": "https://www.drinksmixer.com/drink8171.html" }, { "directions": "Pour vodka and melon liqueur into a mixing glass half-filled with ice cubes. Stir well, strain into a cocktail glass, and serve.", @@ -75396,7 +75396,7 @@ "melon liqueur" ], "title": "Doyles' Deliberation recipe", - "url": "http://www.drinksmixer.com/drink8172.html" + "url": "https://www.drinksmixer.com/drink8172.html" }, { "directions": "Pour vodka and blackberry brandy into a mixing glass half-filled with ice cubes. Stir, strain into a cocktail glass, and serve.", @@ -75405,7 +75405,7 @@ "blackberry brandy" ], "title": "Duke's a Champ recipe", - "url": "http://www.drinksmixer.com/drink8173.html" + "url": "https://www.drinksmixer.com/drink8173.html" }, { "directions": "Pour vodka, creme de cassis, lemon juice and bitters into a cocktail shaker half-filled with ice cubes. Shake well, and strain into a highball glass almost-filled with ice cubes. Top with ginger ale, and stir well. Garnish with a twist of lemon, and serve.", @@ -75417,7 +75417,7 @@ "ginger ale" ], "title": "Dusty Dog recipe", - "url": "http://www.drinksmixer.com/drink8174.html" + "url": "https://www.drinksmixer.com/drink8174.html" }, { "directions": "Pour all ingredients into a cocktail shaker half-filled with ice cubes. Shake well, strain into a cocktail glass, and garnish with a maraschino cherry.", @@ -75429,7 +75429,7 @@ "lemon juice" ], "title": "Foggy Afternoon recipe", - "url": "http://www.drinksmixer.com/drink8175.html" + "url": "https://www.drinksmixer.com/drink8175.html" }, { "directions": "Pour the vodka, Galliano, Cointreau, lime juice, maraschino liqueur and bitters into a cocktail shaker half-filled with ice cubes. Shake and strain into a cocktail glass. Garnish with a maraschino cherry, and serve.", @@ -75442,7 +75442,7 @@ "bitters" ], "title": "Frightleberry Murzenquest recipe", - "url": "http://www.drinksmixer.com/drink8176.html" + "url": "https://www.drinksmixer.com/drink8176.html" }, { "directions": "Pour all ingredients into a mixing glass half-filled with ice cubes. Stir well, strain into a cocktail glass, and serve.", @@ -75453,7 +75453,7 @@ "Blue Curacao liqueur" ], "title": "Gale At Sea recipe", - "url": "http://www.drinksmixer.com/drink8177.html" + "url": "https://www.drinksmixer.com/drink8177.html" }, { "directions": "Pour vodka, cherry brandy and lemon juice into a cocktail shaker half-filled with ice cubes. Shake and strain into a cocktail glass. Garnish with a maraschino cherry, and serve.", @@ -75463,7 +75463,7 @@ "lemon juice" ], "title": "Gorky Park recipe", - "url": "http://www.drinksmixer.com/drink8178.html" + "url": "https://www.drinksmixer.com/drink8178.html" }, { "directions": "Pour all ingredients into a mixing glass half-filled with ice cubes. Stir well, strain into a cocktail glass, and serve.", @@ -75474,7 +75474,7 @@ "Blue Curacao liqueur" ], "title": "Green Mirage recipe", - "url": "http://www.drinksmixer.com/drink8179.html" + "url": "https://www.drinksmixer.com/drink8179.html" }, { "directions": "Pour vodka and grapefruit juice into a highball glass filled with ice cubes. Stir well, and serve.", @@ -75483,7 +75483,7 @@ "grapefruit juice" ], "title": "Vodka Greyhound recipe", - "url": "http://www.drinksmixer.com/drink8180.html" + "url": "https://www.drinksmixer.com/drink8180.html" }, { "directions": "Pour all ingredients into a cocktail shaker half-filled with ice cubes. Shake and strain into a cocktail glass. Garnish with a maraschino cherry, and serve.", @@ -75495,7 +75495,7 @@ "lemon juice" ], "title": "Her Name In Lights recipe", - "url": "http://www.drinksmixer.com/drink8181.html" + "url": "https://www.drinksmixer.com/drink8181.html" }, { "directions": "Pour all ingredients into a cocktail shaker half-filled with ice cubes. Shake, strain into a highball glass almost-filled with ice cubes, and serve.", @@ -75506,7 +75506,7 @@ "grenadine syrup" ], "title": "Hoss's Holdup recipe", - "url": "http://www.drinksmixer.com/drink8182.html" + "url": "https://www.drinksmixer.com/drink8182.html" }, { "directions": "Pour all ingredients into a cocktail shaker half-filled with ice cubes. Shake well, strain into a cocktail glass, and serve.", @@ -75516,7 +75516,7 @@ "pineapple juice" ], "title": "Idonis recipe", - "url": "http://www.drinksmixer.com/drink8183.html" + "url": "https://www.drinksmixer.com/drink8183.html" }, { "directions": "Pour all ingredients into a mixing glass half-filled with ice cubes. Stir well, strain into a cocktail glass, and serve.", @@ -75528,7 +75528,7 @@ "orange bitters" ], "title": "Jackath recipe", - "url": "http://www.drinksmixer.com/drink8184.html" + "url": "https://www.drinksmixer.com/drink8184.html" }, { "directions": "Combine the vodka, kummel, lime juice, lemon juice and sugar in a cocktail shaker half-filled with ice cubes. Shake and strain into a cocktail glass. Garnish with a lemon twist, and serve.", @@ -75540,7 +75540,7 @@ "superfine sugar" ], "title": "Joy Jumper recipe", - "url": "http://www.drinksmixer.com/drink8185.html" + "url": "https://www.drinksmixer.com/drink8185.html" }, { "directions": "Pour the vodka, cranberry juice and club soda into a highball glass almost filled with ice cubes. Stir well, garnish with a lime wedge, and serve.", @@ -75550,7 +75550,7 @@ "club soda" ], "title": "Karoff recipe", - "url": "http://www.drinksmixer.com/drink8186.html" + "url": "https://www.drinksmixer.com/drink8186.html" }, { "directions": "Pour ingredients into a mixing glass half-filled with ice cubes. Stir well, strain into a cocktail glass, and serve.", @@ -75560,7 +75560,7 @@ "Kummel\u00ae caraway liqueur" ], "title": "La Carre recipe", - "url": "http://www.drinksmixer.com/drink8187.html" + "url": "https://www.drinksmixer.com/drink8187.html" }, { "directions": "Pour all ingredients into a cocktail shaker half-filled with ice cubes. Shake well, strain into an old-fashioned glass almost filled with ice cubes, and serve.", @@ -75571,7 +75571,7 @@ "orange bitters" ], "title": "Latham's Rule recipe", - "url": "http://www.drinksmixer.com/drink8188.html" + "url": "https://www.drinksmixer.com/drink8188.html" }, { "directions": "Pour vodka, Cointreau (or triple sec), Kirsch and grapefruit juice into a cocktail shaker half-filled with ice cubes. Shake well, strain into a cocktail glass, and serve.", @@ -75582,7 +75582,7 @@ "grapefruit juice" ], "title": "Major Tom recipe", - "url": "http://www.drinksmixer.com/drink8189.html" + "url": "https://www.drinksmixer.com/drink8189.html" }, { "directions": "Pour vodka and sake into a mixing glass half-filled with ice cubes. Stir well, and strain into a cocktail glass. Garnish with a rind sliver of cucumber, and serve.", @@ -75592,7 +75592,7 @@ "cucumber" ], "title": "Marc Feldini recipe", - "url": "http://www.drinksmixer.com/drink8190.html" + "url": "https://www.drinksmixer.com/drink8190.html" }, { "directions": "Pour all ingredients into a cocktail shaker half-filled with ice cubes. Shake well, strain into a highball glass almost filled with ice cubes, and serve.", @@ -75606,7 +75606,7 @@ "bitters" ], "title": "Mazrick recipe", - "url": "http://www.drinksmixer.com/drink8191.html" + "url": "https://www.drinksmixer.com/drink8191.html" }, { "directions": "Pour ingredients into a mixing glass half-filled with ice cubes. Stir well, and strain into a cocktail glass. Garnish with a lemon twist, and serve.", @@ -75616,7 +75616,7 @@ "Campari\u00ae bitters" ], "title": "Laughing at the Waves recipe", - "url": "http://www.drinksmixer.com/drink8192.html" + "url": "https://www.drinksmixer.com/drink8192.html" }, { "directions": "Combine the vodka, creme de cacao and cream in a cocktail shaker half-filled with ice cubes. Shake well, and strain into a cocktail glass. Garnish with a dusting of nutmeg, and serve.", @@ -75627,7 +75627,7 @@ "nutmeg" ], "title": "Morning Glory Cocktail recipe", - "url": "http://www.drinksmixer.com/drink8193.html" + "url": "https://www.drinksmixer.com/drink8193.html" }, { "directions": "Pour ingredients into a cocktail shaker half-filled with ice cubes. Shake well, strain into a cocktail glass, and serve.", @@ -75637,7 +75637,7 @@ "lemon juice" ], "title": "Ninotchka Cocktail recipe", - "url": "http://www.drinksmixer.com/drink8194.html" + "url": "https://www.drinksmixer.com/drink8194.html" }, { "directions": "Combine all ingredients in a cocktail shaker half-filled with ice cubes. Shake well, strain into an old-fashioned glass almost filled with ice cubes, and serve.", @@ -75648,7 +75648,7 @@ "egg" ], "title": "On the Town recipe", - "url": "http://www.drinksmixer.com/drink8195.html" + "url": "https://www.drinksmixer.com/drink8195.html" }, { "directions": "Combine all ingredients in a mixing glass half-filled with ice cubes. Stir well, strain into a cocktail glass, and serve.", @@ -75658,7 +75658,7 @@ "Cointreau\u00ae orange liqueur" ], "title": "Our Stanley recipe", - "url": "http://www.drinksmixer.com/drink8196.html" + "url": "https://www.drinksmixer.com/drink8196.html" }, { "directions": "Pour all ingredients into a cocktail shaker half-filled with ice cubes. Shake, strain into a cocktail glass, and serve.", @@ -75669,7 +75669,7 @@ "light cream" ], "title": "Owdham Edge recipe", - "url": "http://www.drinksmixer.com/drink8197.html" + "url": "https://www.drinksmixer.com/drink8197.html" }, { "directions": "Pour the vodka and kummel into an old-fashioned glass almost filled with ice cubes. Stir well, garnish with a twist of lemon, and serve.", @@ -75678,7 +75678,7 @@ "Kummel\u00ae caraway liqueur" ], "title": "Piece of Mind recipe", - "url": "http://www.drinksmixer.com/drink8198.html" + "url": "https://www.drinksmixer.com/drink8198.html" }, { "directions": "Pour vodka, amaretto, coconut cream and heavy cream into a cocktail shaker half-filled with ice cubes. Shake well, strain into a cocktail glass, and serve.", @@ -75689,7 +75689,7 @@ "heavy cream" ], "title": "Pretty Thing recipe", - "url": "http://www.drinksmixer.com/drink8199.html" + "url": "https://www.drinksmixer.com/drink8199.html" }, { "directions": "Pour vodka, cherry brandy, orange juice and bitters into a cocktail shaker half-filled with ice cubes. Shake well, strain into a cocktail glass, and serve.", @@ -75700,7 +75700,7 @@ "orange bitters" ], "title": "Quiet But Quick recipe", - "url": "http://www.drinksmixer.com/drink8200.html" + "url": "https://www.drinksmixer.com/drink8200.html" }, { "directions": "Combine both the vodka and Grand Marnier in a mixing glass half-filled with ice cubes. Stir well, strain into a cocktail glass, and serve.", @@ -75709,7 +75709,7 @@ "Grand Marnier\u00ae orange liqueur" ], "title": "Rocky's Dilemma recipe", - "url": "http://www.drinksmixer.com/drink8201.html" + "url": "https://www.drinksmixer.com/drink8201.html" }, { "directions": "Pour both the vodka and Chambord raspberry liqueur into a mixing glass half-filled with ice cubes. Stir well, strain into a cocktail glass, and serve.", @@ -75718,7 +75718,7 @@ "Chambord\u00ae raspberry liqueur" ], "title": "Russian Kamikaze recipe", - "url": "http://www.drinksmixer.com/drink8202.html" + "url": "https://www.drinksmixer.com/drink8202.html" }, { "directions": "Pour vodka, cherry brandy, dry vermouth, Campari and creme de bananes into a mixing glass half-filled with ice cubes. Stir well, strain into a cocktail glass, and serve.", @@ -75730,7 +75730,7 @@ "creme de bananes" ], "title": "Sarah Cocktail recipe", - "url": "http://www.drinksmixer.com/drink8203.html" + "url": "https://www.drinksmixer.com/drink8203.html" }, { "directions": "Combine the vodka, apricot brandy, Campari, both juices and the egg white in a cocktail shaker half-filled with ice cubes. Shake well, and strain into a cocktail glass. Garnish with a cherry and a slice of orange, and serve.", @@ -75743,7 +75743,7 @@ "egg" ], "title": "Silver Sunset recipe", - "url": "http://www.drinksmixer.com/drink8204.html" + "url": "https://www.drinksmixer.com/drink8204.html" }, { "directions": "Pour vodka, banana liqueur, lemon juice and egg white into a cocktail shaker half-filled with ice cubes. Shake, strain into an old-fashioned or rocks glass almost filled with ice cubes, and serve.", @@ -75754,7 +75754,7 @@ "egg" ], "title": "Spymaster recipe", - "url": "http://www.drinksmixer.com/drink8205.html" + "url": "https://www.drinksmixer.com/drink8205.html" }, { "directions": "Pour all ingredients into a highball glass almost filled with ice cubes. Stir well, and serve.", @@ -75764,7 +75764,7 @@ "orange bitters" ], "title": "Vicker's Treat recipe", - "url": "http://www.drinksmixer.com/drink8206.html" + "url": "https://www.drinksmixer.com/drink8206.html" }, { "directions": "Combine the vodka, Lillet, Cointreau, orange bitters and egg white in a cocktail shaker half-filled with ice cubes. Shake well, and strain into an old-fashioned glass almost filled with ice cubes. Garnish with a slice of orange, and serve.", @@ -75776,7 +75776,7 @@ "egg" ], "title": "Stuffy in a Suit recipe", - "url": "http://www.drinksmixer.com/drink8207.html" + "url": "https://www.drinksmixer.com/drink8207.html" }, { "directions": "Combine vodka, lemon juice and sugar in a cocktail shaker half-filled with ice cubes. Shake well, and strain into a highball glass almost filled with ice cubes. Top with tonic water, and serve.", @@ -75787,7 +75787,7 @@ "tonic water" ], "title": "Vodka and Bitter Lemon recipe", - "url": "http://www.drinksmixer.com/drink8208.html" + "url": "https://www.drinksmixer.com/drink8208.html" }, { "directions": "Pour the vodka and lemon-lime soda into a highball glass almost filled with ice cubes. Stir well, garnish with a lemon wedge, and serve.", @@ -75796,7 +75796,7 @@ "lemon-lime soda" ], "title": "Vodka Cooler recipe", - "url": "http://www.drinksmixer.com/drink8209.html" + "url": "https://www.drinksmixer.com/drink8209.html" }, { "directions": "Combine vodka, lemon juice, sugar and grenadine in a cocktail shaker half-filled with ice cubes. Shake well and pour into an old-fashioned glass. Garnish with a maraschino cherry and an orange slice, and serve.", @@ -75807,7 +75807,7 @@ "grenadine syrup" ], "title": "Vodka Daisy recipe", - "url": "http://www.drinksmixer.com/drink8210.html" + "url": "https://www.drinksmixer.com/drink8210.html" }, { "directions": "Pour the sherry into a brandy snifter. Swirl it around in order to coat the glass, then pour out the excess. Stir the vodka in a mixing glass half-filled with ice cubes, and strain into the snifter. Garnish with a twist of lemon, and serve.", @@ -75816,7 +75816,7 @@ "vodka" ], "title": "Vodka Dry recipe", - "url": "http://www.drinksmixer.com/drink8211.html" + "url": "https://www.drinksmixer.com/drink8211.html" }, { "directions": "Add the lime juice, sugar, vodka and bitters to a cocktail shaker half-filled with ice cubes, and shake well. Almost fill a collins glass with crushed ice and stir until the glass is frosted. Strain the mixture from the shaker into the glass, and add club soda. Serve with a swizzle stick.", @@ -75828,7 +75828,7 @@ "club soda" ], "title": "Vodka Swizzle recipe", - "url": "http://www.drinksmixer.com/drink8212.html" + "url": "https://www.drinksmixer.com/drink8212.html" }, { "directions": "Combine all ingredients in a cocktail shaker half-filled with ice cubes. Shake well, strain into a cocktail glass, and serve.", @@ -75839,7 +75839,7 @@ "orange juice" ], "title": "Witch of Venice recipe", - "url": "http://www.drinksmixer.com/drink8213.html" + "url": "https://www.drinksmixer.com/drink8213.html" }, { "directions": "Pour whisky and cranberry liqueur into a mixing glass half-filled with ice cubes. Stir well, strain into a cocktail glass, and serve.", @@ -75848,7 +75848,7 @@ "cranberry liqueur" ], "title": "Avril Cocktail recipe", - "url": "http://www.drinksmixer.com/drink8214.html" + "url": "https://www.drinksmixer.com/drink8214.html" }, { "directions": "Pour whisky, peppermint schnapps, creme de cacao liqueurs and lemon juice into a cocktail shaker half-filled with ice cubes. Shake well, strain into an old-fashioned glass almost filled with ice cubes, and serve.", @@ -75860,7 +75860,7 @@ "lemon juice" ], "title": "Barnstormer recipe", - "url": "http://www.drinksmixer.com/drink8215.html" + "url": "https://www.drinksmixer.com/drink8215.html" }, { "directions": "Pour the whiskey, Pernod, creme de cacao and cream into a cocktail shaker half-filled with ice cubes. Shake well, and strain into an old-fashioned glass almost filled with ice cubes. Garnish with nutmeg, and serve.", @@ -75872,7 +75872,7 @@ "nutmeg" ], "title": "Bay Horse recipe", - "url": "http://www.drinksmixer.com/drink8216.html" + "url": "https://www.drinksmixer.com/drink8216.html" }, { "directions": "Pour whiskey, vermouth and grenadine into a mixing glass half-filled with ice cubes, and stir well. Strain into a cocktail glass, garnish with a maraschino cherry, and serve.", @@ -75882,7 +75882,7 @@ "grenadine syrup" ], "title": "Bill Leaves Town recipe", - "url": "http://www.drinksmixer.com/drink8217.html" + "url": "https://www.drinksmixer.com/drink8217.html" }, { "directions": "Combine whiskey, Applejack brandy, lemon juice and sugar in a cocktail shaker half-filled with ice cubes. Shake well, strain into a cocktail glass, and serve.", @@ -75893,7 +75893,7 @@ "superfine sugar" ], "title": "Boot Hill recipe", - "url": "http://www.drinksmixer.com/drink8218.html" + "url": "https://www.drinksmixer.com/drink8218.html" }, { "directions": "Combine the Canadian whisky, port, egg yolk and grenadine in a cocktail shaker half-filled with ice cubes. Shake well, strain into a cocktail glass, and serve.", @@ -75904,7 +75904,7 @@ "grenadine syrup" ], "title": "Borrowed Time recipe", - "url": "http://www.drinksmixer.com/drink8219.html" + "url": "https://www.drinksmixer.com/drink8219.html" }, { "directions": "Add the whiskies, brandy, Irish Mist, juices, and sugar to a cocktail shaker half-filled with ice cubes. Shake well, and strain into an old-fashioned glass almost filled with ice cubes. Garnish with a slice of orange and a maraschino cherry, and serve.", @@ -75918,7 +75918,7 @@ "superfine sugar" ], "title": "Canadian Salad recipe", - "url": "http://www.drinksmixer.com/drink8220.html" + "url": "https://www.drinksmixer.com/drink8220.html" }, { "directions": "Pour the whiskey, gin, lemon juice, sugar and grenadine into a cocktail shaker half-filled with ice cubes. Shake well, and strain into a whiskey sour glass. Garnish with a maraschino cherry and an orange slice, and serve.", @@ -75930,7 +75930,7 @@ "grenadine syrup" ], "title": "Double Standard Sour recipe", - "url": "http://www.drinksmixer.com/drink8221.html" + "url": "https://www.drinksmixer.com/drink8221.html" }, { "directions": "Pour Canadian whisky, Cointreau, Pernod and Dubonnet Blanc into a mixing glass half-filled with ice cubes. Stir well, strain into a cocktail glass, and serve.", @@ -75941,7 +75941,7 @@ "Dubonnet\u00ae Blanc vermouth" ], "title": "Cat and Fiddle recipe", - "url": "http://www.drinksmixer.com/drink8222.html" + "url": "https://www.drinksmixer.com/drink8222.html" }, { "directions": "Pour whiskey, Dubonnet Rouge and bitters into a mixing glass half-filled with ice cubes. Stir well and strain into a cocktail glass. Garnish with a maraschino cherry, and serve.", @@ -75951,7 +75951,7 @@ "bitters" ], "title": "Dubonnet Manhattan recipe", - "url": "http://www.drinksmixer.com/drink8223.html" + "url": "https://www.drinksmixer.com/drink8223.html" }, { "directions": "Combine whisky, Applejack brandy, brandy, lemon juice and sugar in a cocktail shaker half-filled with ice cubes. Shake well, and strain into an old-fashioned glass almost filled with ice cubes. Garnish with a maraschino cherry, and serve.", @@ -75963,7 +75963,7 @@ "superfine sugar" ], "title": "Dusty Bill recipe", - "url": "http://www.drinksmixer.com/drink8224.html" + "url": "https://www.drinksmixer.com/drink8224.html" }, { "directions": "Pour the whisky and creme de cassis into a mixing glass half-filled with ice cubes. Stir well, and strain into a cocktail glass. Garnish with a maraschino cherry, and serve.", @@ -75972,7 +75972,7 @@ "creme de cassis" ], "title": "Eruption recipe", - "url": "http://www.drinksmixer.com/drink8225.html" + "url": "https://www.drinksmixer.com/drink8225.html" }, { "directions": "Pour both ingredients into a highball glass almost filled with ice cubes. Stir well, and serve.", @@ -75981,7 +75981,7 @@ "apple juice" ], "title": "Faux Scrumpy recipe", - "url": "http://www.drinksmixer.com/drink8226.html" + "url": "https://www.drinksmixer.com/drink8226.html" }, { "directions": "Combine the whisky, Dubonnet, Cointreau and bitters in an old-fashioned glass almost filled with ice cubes. Garnish with a twist of lemon, and serve.", @@ -75992,7 +75992,7 @@ "bitters" ], "title": "Fine and Dandy recipe", - "url": "http://www.drinksmixer.com/drink8227.html" + "url": "https://www.drinksmixer.com/drink8227.html" }, { "directions": "Pour Canadian whisky, peach schnapps and sweet vermouth into a mixing glass half-filled with ice cubes. Stir well, strain into a cocktail glass, and serve.", @@ -76002,7 +76002,7 @@ "sweet vermouth" ], "title": "Gault's Gumption recipe", - "url": "http://www.drinksmixer.com/drink8228.html" + "url": "https://www.drinksmixer.com/drink8228.html" }, { "directions": "Pour whisky, Chartreuse, Dubonnet, vermouth and bitters into a mixing glass half-filled with ice cubes. Stir well, and strain into a cocktail glass. Garnish with a maraschino cherry, and serve.", @@ -76014,7 +76014,7 @@ "bitters" ], "title": "Geraldine recipe", - "url": "http://www.drinksmixer.com/drink8229.html" + "url": "https://www.drinksmixer.com/drink8229.html" }, { "directions": "Pour the Canadian whisky and Applejack brandy into a mixing glass half-filled with ice cubes. Stir well, strain into a cocktail glass, and serve.", @@ -76023,7 +76023,7 @@ "Applejack\u00ae brandy" ], "title": "Greathead recipe", - "url": "http://www.drinksmixer.com/drink8230.html" + "url": "https://www.drinksmixer.com/drink8230.html" }, { "directions": "Pour the whiskey and cherry brandy into a mixing glass half-filled wiht ice cubes. Stir well, and strain into a cocktail glass. Garnish with a maraschino cherry, and serve.", @@ -76032,7 +76032,7 @@ "cherry brandy" ], "title": "Hearty Susan recipe", - "url": "http://www.drinksmixer.com/drink8231.html" + "url": "https://www.drinksmixer.com/drink8231.html" }, { "directions": "Pour all ingredients into a highball glass almost filled with ice cubes. Stir well, and serve.", @@ -76042,7 +76042,7 @@ "ginger ale" ], "title": "Horse Feathers recipe", - "url": "http://www.drinksmixer.com/drink8232.html" + "url": "https://www.drinksmixer.com/drink8232.html" }, { "directions": "Pour all ingredients into a mixing glass half-filled with ice cubes. Stir well, strain into a cocktail glass, and serve.", @@ -76052,7 +76052,7 @@ "sweet vermouth" ], "title": "Hot Deck recipe", - "url": "http://www.drinksmixer.com/drink8233.html" + "url": "https://www.drinksmixer.com/drink8233.html" }, { "directions": "Pour both ingredients into a mixing glass half-filled with ice cubes. Stir well, strain into a cocktail glass, and serve.", @@ -76061,7 +76061,7 @@ "Irish Mist\u00ae herbal liqueur" ], "title": "Irish Canadian recipe", - "url": "http://www.drinksmixer.com/drink8234.html" + "url": "https://www.drinksmixer.com/drink8234.html" }, { "directions": "Pour blended whiskey, Pernod and pineapple juice into a cocktail shaker half-filled with ice cubes. Shake well, strain into a cocktail glass, and serve.", @@ -76071,7 +76071,7 @@ "pineapple juice" ], "title": "Jersey Gentleman recipe", - "url": "http://www.drinksmixer.com/drink8235.html" + "url": "https://www.drinksmixer.com/drink8235.html" }, { "directions": "Combine the whiskey, vermouth, lemon juice, sugar and egg in a cocktail shaker half-filled with ice cubes. Shake well. Strain into a cocktail glass, garnish with a maraschino cherry, and serve.", @@ -76083,7 +76083,7 @@ "egg" ], "title": "L.A. Cocktail recipe", - "url": "http://www.drinksmixer.com/drink8236.html" + "url": "https://www.drinksmixer.com/drink8236.html" }, { "directions": "Add all ingredients to a cocktail shaker half-filled with ice cubes, and shake. Strain into a cocktail glass, and serve.", @@ -76095,7 +76095,7 @@ "superfine sugar" ], "title": "La Belle Quebec recipe", - "url": "http://www.drinksmixer.com/drink8237.html" + "url": "https://www.drinksmixer.com/drink8237.html" }, { "directions": "Pour whiskey, rums and creme de cacao into a mixing glass half-filled with ice cubes. Stir well, strain into a cocktail glass, and serve.", @@ -76106,7 +76106,7 @@ "white creme de cacao" ], "title": "Ladyluv recipe", - "url": "http://www.drinksmixer.com/drink8238.html" + "url": "https://www.drinksmixer.com/drink8238.html" }, { "directions": "Pour whiskey, anisette and bitters into a mixing glass half-filled with ice cubes. Stir well, strain into a cocktail glass, and serve.", @@ -76116,7 +76116,7 @@ "bitters" ], "title": "Lady's Cocktail recipe", - "url": "http://www.drinksmixer.com/drink8239.html" + "url": "https://www.drinksmixer.com/drink8239.html" }, { "directions": "Pour whiskey, rum, orange juice and bitters into a cocktail shaker half-filled with ice cubes. Shake and strain into a cocktail glass.", @@ -76127,7 +76127,7 @@ "bitters" ], "title": "Madame Rene recipe", - "url": "http://www.drinksmixer.com/drink8240.html" + "url": "https://www.drinksmixer.com/drink8240.html" }, { "directions": "Pour whisky, Grand Marnier and vermouths into a mixing glass half-filled with ice cubes. Stir well before straining into a cocktail glass for serving.", @@ -76138,7 +76138,7 @@ "sweet vermouth" ], "title": "Major Bradbury recipe", - "url": "http://www.drinksmixer.com/drink8241.html" + "url": "https://www.drinksmixer.com/drink8241.html" }, { "directions": "Pour Canadian whisky, Irish Mist, creme de cacao and cream into a cocktail shaker half-filled with ice cubes. Shake well. Strain into a cocktail glass, and serve.", @@ -76149,7 +76149,7 @@ "heavy cream" ], "title": "Maple Leaf recipe", - "url": "http://www.drinksmixer.com/drink8242.html" + "url": "https://www.drinksmixer.com/drink8242.html" }, { "directions": "Shake all ingredients together in a cocktail shaker half-filled with ice cubes. Strain into an old-fashioned glass almost filled with ice cubes, and serve.", @@ -76161,7 +76161,7 @@ "orange bitters" ], "title": "Menday's Peril recipe", - "url": "http://www.drinksmixer.com/drink8243.html" + "url": "https://www.drinksmixer.com/drink8243.html" }, { "directions": "Pour whiskey and creme de cacao into a mixing glass half-filled with ice cubes. Stir well. Strain into a cocktail glass, and serve.", @@ -76171,7 +76171,7 @@ "white creme de cacao" ], "title": "Molehill Lounger recipe", - "url": "http://www.drinksmixer.com/drink8244.html" + "url": "https://www.drinksmixer.com/drink8244.html" }, { "directions": "Pour whisky and bitters into a mixing glass half-filled with ice cubes. Stir well, strain into a cocktail glass, and serve.", @@ -76180,7 +76180,7 @@ "Campari\u00ae bitters" ], "title": "Mountie recipe", - "url": "http://www.drinksmixer.com/drink8245.html" + "url": "https://www.drinksmixer.com/drink8245.html" }, { "directions": "Pour Canadian whisky and amaretto into an old-fashioned glass almost filled with ice cubes. Stir, and serve.", @@ -76189,7 +76189,7 @@ "amaretto almond liqueur" ], "title": "Old Groaner recipe", - "url": "http://www.drinksmixer.com/drink8246.html" + "url": "https://www.drinksmixer.com/drink8246.html" }, { "directions": "Pour Canadian whisky, amaretto and cream into a cocktail shaker half-filled with ice cubes. Shake well, strain into an old-fashioned glass almost filled with ice cubes, and serve.", @@ -76199,7 +76199,7 @@ "heavy cream" ], "title": "Old Groaner's Wife recipe", - "url": "http://www.drinksmixer.com/drink8247.html" + "url": "https://www.drinksmixer.com/drink8247.html" }, { "directions": "Combine the whisky, Drambuie, orange juice, lemon juice and orange bitters in a cocktail shaker half-filled with ice cubes. Shake well, and strain into an old-fashioned glass almost filled with ice cubes. Garnish with a twist of lemon and a maraschino cherry.", @@ -76211,7 +76211,7 @@ "orange bitters" ], "title": "Old Nick recipe", - "url": "http://www.drinksmixer.com/drink8248.html" + "url": "https://www.drinksmixer.com/drink8248.html" }, { "directions": "Pour whisky, vermouth, maraschino and bitters into a mixing glass half-filled with ice cubes. Stir well, strain into a cocktail glass, and serve.", @@ -76222,7 +76222,7 @@ "bitters" ], "title": "Park Paradise recipe", - "url": "http://www.drinksmixer.com/drink8249.html" + "url": "https://www.drinksmixer.com/drink8249.html" }, { "directions": "Pour whiskey, vermouth and Chambord into a mixing glass half-filled with ice cubes. Stir well, strain into a cocktail glass, and serve.", @@ -76232,7 +76232,7 @@ "Chambord\u00ae raspberry liqueur" ], "title": "Poor Tim recipe", - "url": "http://www.drinksmixer.com/drink8250.html" + "url": "https://www.drinksmixer.com/drink8250.html" }, { "directions": "Pour the whiskey and anisette into a mixing glass half-filled with ice cubes. Stir well, and strain into a cocktail glass. Garnish with a twist of lemon, and serve.", @@ -76241,7 +76241,7 @@ "anisette" ], "title": "Prince Rupert recipe", - "url": "http://www.drinksmixer.com/drink8251.html" + "url": "https://www.drinksmixer.com/drink8251.html" }, { "directions": "Pour all of the ingredients into a highball glass almost filled with ice cubes. Stir well, and serve.", @@ -76253,7 +76253,7 @@ "club soda" ], "title": "Purgavie recipe", - "url": "http://www.drinksmixer.com/drink8252.html" + "url": "https://www.drinksmixer.com/drink8252.html" }, { "directions": "Pour Canadian whisky, vermouth, Amer Picon and maraschino into a mixing glass half-filled with ice cubes. Stir well, strain into a cocktail glass, and serve.", @@ -76264,7 +76264,7 @@ "maraschino liqueur" ], "title": "Quebec Cocktail recipe", - "url": "http://www.drinksmixer.com/drink8253.html" + "url": "https://www.drinksmixer.com/drink8253.html" }, { "directions": "Combine whiskey, Southern Comfort, fruit juices, sugar and bitters in a cocktail shaker half-filled with ice cubes. Shake well, strain into a highball glass almost filled with ice cubes, and serve.", @@ -76277,7 +76277,7 @@ "bitters" ], "title": "Rochdale Cowboy recipe", - "url": "http://www.drinksmixer.com/drink8254.html" + "url": "https://www.drinksmixer.com/drink8254.html" }, { "directions": "Pour whiskey, brandy and cranberry juice into a highball glass almost filled with ice cubes. Stir well, and serve.", @@ -76287,7 +76287,7 @@ "cranberry juice" ], "title": "Sand Dance recipe", - "url": "http://www.drinksmixer.com/drink8255.html" + "url": "https://www.drinksmixer.com/drink8255.html" }, { "directions": "Pour Canadian whisky, Drambuie and lemon juice into a cocktail shaker half-filled with ice cubes. Shake well, strain into a cocktail glass, and serve.", @@ -76297,7 +76297,7 @@ "lemon juice" ], "title": "Screamin Hudson recipe", - "url": "http://www.drinksmixer.com/drink8256.html" + "url": "https://www.drinksmixer.com/drink8256.html" }, { "directions": "Pour both ingredients into a highball glass almost filled with ice cubes. Stir well, and serve.", @@ -76306,7 +76306,7 @@ "hard cider" ], "title": "Scrumpy Strong recipe", - "url": "http://www.drinksmixer.com/drink8257.html" + "url": "https://www.drinksmixer.com/drink8257.html" }, { "directions": "Pour Absolut Mandrin into a cocktail/martini shaker. Add sweet and sour mix, and Chambord raspberry liqueur. Rim a cocktail glass with sugar. Shake and strain the contents of the cocktail shaker into the cocktail glass. Garnish with a twist of orange, and serve.", @@ -76316,7 +76316,7 @@ "Chambord\u00ae raspberry liqueur" ], "title": "Absolut Dream recipe", - "url": "http://www.drinksmixer.com/drink8258.html" + "url": "https://www.drinksmixer.com/drink8258.html" }, { "directions": "Pour all ingredients into an old-fashioned glass. Add 1 to 3 ice cubes, and serve.", @@ -76327,7 +76327,7 @@ "Captain Morgan\u00ae Original spiced rum" ], "title": "Captain's Mast recipe", - "url": "http://www.drinksmixer.com/drink8259.html" + "url": "https://www.drinksmixer.com/drink8259.html" }, { "directions": "Pour all ingredients into a pitcher, and serve into highball glasses.", @@ -76337,7 +76337,7 @@ "Red Bull\u00ae energy drink" ], "title": "Smartees recipe", - "url": "http://www.drinksmixer.com/drink8261.html" + "url": "https://www.drinksmixer.com/drink8261.html" }, { "directions": "Add the whisky, blueberry brandy, brandy, lemon juice and sugar to a cocktail shaker half-filled with ice cubes. Shake well and strain into an old-fashioned glass almost filled with ice cubes. Garnish with a slice of orange and a maraschino cherry.", @@ -76349,7 +76349,7 @@ "superfine sugar" ], "title": "Shakin' Blue Monday recipe", - "url": "http://www.drinksmixer.com/drink8262.html" + "url": "https://www.drinksmixer.com/drink8262.html" }, { "directions": "Pour all ingredients into a mixing glass half-filled with ice cubes. Stir well, strain into a cocktail glass, and serve.", @@ -76360,7 +76360,7 @@ "bitters" ], "title": "Socrates recipe", - "url": "http://www.drinksmixer.com/drink8263.html" + "url": "https://www.drinksmixer.com/drink8263.html" }, { "directions": "Pour whisky, ginger wine, cherry brandy and lemon juice into a cocktail shaker half-filled with ice cubes. Shake and strain into a cocktail glass. Garnish with a maraschino cherry, and serve.", @@ -76371,7 +76371,7 @@ "lemon juice" ], "title": "Speaker of the House recipe", - "url": "http://www.drinksmixer.com/drink8264.html" + "url": "https://www.drinksmixer.com/drink8264.html" }, { "directions": "Pour both ingredients into a shot glass, and serve.", @@ -76380,7 +76380,7 @@ "sambuca" ], "title": "Spy Catcher recipe", - "url": "http://www.drinksmixer.com/drink8265.html" + "url": "https://www.drinksmixer.com/drink8265.html" }, { "directions": "Pour all ingredients into a cocktail shaker half-filled with ice cubes. Shake, strain into a cocktail glass, and serve.", @@ -76393,7 +76393,7 @@ "bitters" ], "title": "Sherman Tank recipe", - "url": "http://www.drinksmixer.com/drink8266.html" + "url": "https://www.drinksmixer.com/drink8266.html" }, { "directions": "Pour all ingredients into a cocktail shaker half-filled with ice cubes. Shake well, strain into an old-fashioned glass almost filled with ice cubes, and serve.", @@ -76404,7 +76404,7 @@ "lime juice" ], "title": "Stiletto #2 recipe", - "url": "http://www.drinksmixer.com/drink8267.html" + "url": "https://www.drinksmixer.com/drink8267.html" }, { "directions": "Pour whiskey, Cointreau and lemon juice into a cocktail shaker half-filled with ice cubes. Shake well, strain into a cocktail glass, and serve.", @@ -76414,7 +76414,7 @@ "lemon juice" ], "title": "Strongarm recipe", - "url": "http://www.drinksmixer.com/drink8268.html" + "url": "https://www.drinksmixer.com/drink8268.html" }, { "directions": "Pour the whiskey, vermouth and bitters into an old-fashioned glass almost filled with ice cubes. Stir well. Garnish with a maraschino cherry and a slice of orange, and serve.", @@ -76425,7 +76425,7 @@ "bitters" ], "title": "Teacher's Pet recipe", - "url": "http://www.drinksmixer.com/drink8269.html" + "url": "https://www.drinksmixer.com/drink8269.html" }, { "directions": "Pour the whiskey, lemon and orange juice into a cocktail shaker half-filled with ice cubes. Shake well, strain into a cocktail glass, and serve.", @@ -76435,7 +76435,7 @@ "orange juice" ], "title": "Tiger Juice recipe", - "url": "http://www.drinksmixer.com/drink8270.html" + "url": "https://www.drinksmixer.com/drink8270.html" }, { "directions": "Pour the whiskey, Cointreau, Ricard, Dubonnet and bitters into a mixing glass half-filled with ice cubes. Stir well, and strain into a cocktail glass. Garnish with a maraschino cherry and a lemon twist, and serve.", @@ -76447,7 +76447,7 @@ "bitters" ], "title": "T.L.C. recipe", - "url": "http://www.drinksmixer.com/drink8271.html" + "url": "https://www.drinksmixer.com/drink8271.html" }, { "directions": "Pour both ingredients into a mixing glass half-filled with ice cubes, and stir. Strain into a cocktail glass, and serve.", @@ -76456,7 +76456,7 @@ "anisette" ], "title": "T.N.T. Cocktail recipe", - "url": "http://www.drinksmixer.com/drink8272.html" + "url": "https://www.drinksmixer.com/drink8272.html" }, { "directions": "Pour whiskey, Grand Marnier and cream into a cocktail shaker half-filled with ice cubes. Shake well, strain into a cocktail glass, and serve.", @@ -76466,7 +76466,7 @@ "light cream" ], "title": "Tower Topped recipe", - "url": "http://www.drinksmixer.com/drink8273.html" + "url": "https://www.drinksmixer.com/drink8273.html" }, { "directions": "Pour both ingredients into a mixing glass half-filled with ice cubes. Stir well, strain into a cocktail glass, and serve.", @@ -76475,7 +76475,7 @@ "benedictine herbal liqueur" ], "title": "Turtle recipe", - "url": "http://www.drinksmixer.com/drink8274.html" + "url": "https://www.drinksmixer.com/drink8274.html" }, { "directions": "Pour whiskey, Dubonnet and Cointreau into a mixing glass half-filled with ice cubes. Stir well, and strain into a cocktail glass. Garnish with a twist of lemon, and serve.", @@ -76485,7 +76485,7 @@ "Cointreau\u00ae orange liqueur" ], "title": "Twin Peaks recipe", - "url": "http://www.drinksmixer.com/drink8275.html" + "url": "https://www.drinksmixer.com/drink8275.html" }, { "directions": "Pour whisky, Cointreau and B & B benedictine into a mixing glass half-filled with ice cubes. Stir well, and strain into a cocktail glass. Garnish with a maraschino cherry, and serve.", @@ -76495,7 +76495,7 @@ "Cointreau\u00ae orange liqueur" ], "title": "Two Turtles recipe", - "url": "http://www.drinksmixer.com/drink8276.html" + "url": "https://www.drinksmixer.com/drink8276.html" }, { "directions": "Pour the whiskey and lemon-lime soda into a highball glass almost filled with ice cubes. Stir well. Garnish with a lemon twist, and serve.", @@ -76504,7 +76504,7 @@ "lemon-lime soda" ], "title": "Whiskey Cooler recipe", - "url": "http://www.drinksmixer.com/drink8277.html" + "url": "https://www.drinksmixer.com/drink8277.html" }, { "directions": "Rub the rim of a wine goblet with a lemon wedge and dip into sugar to coat; discard lemon. Peel a spiral of orange peel from an orange and drape one end over the rim of the glass. Fill the glass with crushed ice. Combine the whiskey, Cointreau, maraschino and lemon juice in a cocktail shaker half-filled with ice cubes. Shake well, strain into the wine goblet, and serve.", @@ -76518,7 +76518,7 @@ "lemon" ], "title": "Whiskey Crusta recipe", - "url": "http://www.drinksmixer.com/drink8278.html" + "url": "https://www.drinksmixer.com/drink8278.html" }, { "directions": "Dissolve the sugar in the water and whiskey in a highball glass. Almost fill the glass with crushed ice and add club soda. Float tawny port on top. Garnish with a lemon twist, and dust with nutmeg and cinnamon. Serve.", @@ -76532,7 +76532,7 @@ "cinnamon" ], "title": "Whiskey Sangaree recipe", - "url": "http://www.drinksmixer.com/drink8279.html" + "url": "https://www.drinksmixer.com/drink8279.html" }, { "directions": "Pour whiskey, lemon juice, sugar and water into a cocktail shaker half-filled with ice cubes. Shake well, and strain into a highball glass. Garnish with a twist of lemon, and serve.", @@ -76543,7 +76543,7 @@ "water" ], "title": "Whiskey Sling recipe", - "url": "http://www.drinksmixer.com/drink8280.html" + "url": "https://www.drinksmixer.com/drink8280.html" }, { "directions": "Pour the whiskey, bitters, lime juice and sugar into a cocktail shaker half-filled with ice cubes. Almost fill a collins glass with crushed ice and stir until the glass is frosted. Shake the contents of the cocktail shaker, and strain into the collins glass. Add club soda, add a swizzle stick, and serve.", @@ -76555,7 +76555,7 @@ "club soda" ], "title": "Whiskey Swizzle recipe", - "url": "http://www.drinksmixer.com/drink8281.html" + "url": "https://www.drinksmixer.com/drink8281.html" }, { "directions": "Pour whiskey, gin, lemon juice and sugar into a cocktail shaker half-filled with ice cubes. Shake, strain into an old-fashioned glass almost filled with ice cubes, and serve.", @@ -76566,7 +76566,7 @@ "superfine sugar" ], "title": "Whiskey to Go recipe", - "url": "http://www.drinksmixer.com/drink8282.html" + "url": "https://www.drinksmixer.com/drink8282.html" }, { "directions": "Pour the whisky, peppermint schnapps and Pernod into a mixing glass half-filled with ice cubes. Stir well, and strain into an old-fashioned glass almost filled with ice cubes. Garnish with a lemon twist, and serve.", @@ -76576,7 +76576,7 @@ "Pernod\u00ae licorice liqueur" ], "title": "Wild Jackalope recipe", - "url": "http://www.drinksmixer.com/drink8283.html" + "url": "https://www.drinksmixer.com/drink8283.html" }, { "directions": "Pour the rum, blue curacao, pineapple juice and coconut cream into a blender with a cup of crushed ice. Blend well at high speed and pour into a collins glass.", @@ -76588,7 +76588,7 @@ "crushed ice" ], "title": "Azuluna recipe", - "url": "http://www.drinksmixer.com/drink8284.html" + "url": "https://www.drinksmixer.com/drink8284.html" }, { "directions": "Pour the vodka, pineapple juice and coconut cream into a blender with one cup of crushed ice. Blend well at high speed, and pour into a collins glass. Garnish with a maraschino cherry and a slice of pineapple, and serve.", @@ -76599,7 +76599,7 @@ "crushed ice" ], "title": "Chi Chi recipe", - "url": "http://www.drinksmixer.com/drink8285.html" + "url": "https://www.drinksmixer.com/drink8285.html" }, { "directions": "Add brandy, Cointreau, lemon sherbet and ginger ale to a cocktail shaker half-filled with ice cubes. Shake well, and strain into a highball glass almost filled with ice cubes. Top with ginger ale, and serve.", @@ -76610,7 +76610,7 @@ "ginger ale" ], "title": "Discovery Bay recipe", - "url": "http://www.drinksmixer.com/drink8286.html" + "url": "https://www.drinksmixer.com/drink8286.html" }, { "directions": "Pour the rum, creme de bananes, creme de cassis and orange juice into a blender with half a cup of crushed ice. Blend well, strain into a cocktail glass, and serve.", @@ -76622,7 +76622,7 @@ "crushed ice" ], "title": "Fruit Rum Frappe recipe", - "url": "http://www.drinksmixer.com/drink8287.html" + "url": "https://www.drinksmixer.com/drink8287.html" }, { "directions": "Pour gin, orange juice and pineapple juice into a cocktail shaker half-filled with ice cubes. Shake well, strain into a cocktail glass, and serve.", @@ -76632,7 +76632,7 @@ "pineapple juice" ], "title": "Hula Hoop recipe", - "url": "http://www.drinksmixer.com/drink8288.html" + "url": "https://www.drinksmixer.com/drink8288.html" }, { "directions": "Pour Kahlua, white creme de cacao and cream into a cocktail shaker half-filled with ice cubes. Shake well, strain into a cocktail glass, and serve.", @@ -76642,7 +76642,7 @@ "heavy cream" ], "title": "Jamaica Hop recipe", - "url": "http://www.drinksmixer.com/drink8289.html" + "url": "https://www.drinksmixer.com/drink8289.html" }, { "directions": "Pour the rum, pineapple juice and sugar into a cocktail shaker half-filled with ice cubes. Shake well, and strain into a collins glass almost filled with ice cubes. Add club soda, stir, and serve.", @@ -76653,7 +76653,7 @@ "club soda" ], "title": "Jamaican Fizz recipe", - "url": "http://www.drinksmixer.com/drink8290.html" + "url": "https://www.drinksmixer.com/drink8290.html" }, { "directions": "Pour all ingredients into a cocktail shaker half-filled with ice cubes. Shake well, strain into a cocktail glass, and serve.", @@ -76666,7 +76666,7 @@ "heavy cream" ], "title": "King of Kingston recipe", - "url": "http://www.drinksmixer.com/drink8291.html" + "url": "https://www.drinksmixer.com/drink8291.html" }, { "directions": "Pour the dark rum, light rum, cherry brandy and pineapple juice into a highball glass almost filled with crushed ice. Stir well. Garnish with a maraschino cherry and a pineapple slice, and serve.", @@ -76677,7 +76677,7 @@ "pineapple juice" ], "title": "Lazy Afternoon recipe", - "url": "http://www.drinksmixer.com/drink8292.html" + "url": "https://www.drinksmixer.com/drink8292.html" }, { "directions": "Pour the rum, amaretto, coconut cream, pineapple juice and half-and-half into a blender with 6 ice cubes. Blend well and pour into a collins glass. Garnish with a maraschino cherry, and serve.", @@ -76689,7 +76689,7 @@ "half-and-half" ], "title": "Lizbuth recipe", - "url": "http://www.drinksmixer.com/drink8293.html" + "url": "https://www.drinksmixer.com/drink8293.html" }, { "directions": "Pour all ingredients into a cocktail shaker half-filled with ice cubes. Shake and strain into a collins glass almost filled with ice cubes, and serve.", @@ -76703,7 +76703,7 @@ "grenadine syrup" ], "title": "Mickey's Fin recipe", - "url": "http://www.drinksmixer.com/drink8294.html" + "url": "https://www.drinksmixer.com/drink8294.html" }, { "directions": "Pour gin, rum, port, orange juice, lime juice and sugar into a cocktail shaker half-filled with ice cubes. Shake well, strain into a cocktail glass, and serve.", @@ -76716,7 +76716,7 @@ "superfine sugar" ], "title": "Rasta's Revenge recipe", - "url": "http://www.drinksmixer.com/drink8295.html" + "url": "https://www.drinksmixer.com/drink8295.html" }, { "directions": "Pour vodka, creme de bananes, juices, bitters and grenadine into a cocktail shaker half-filled with ice cubes. Shake and strain into a highball glass almost filled with ice cubes. Garnish with a slice of orange, a pineapple wedge, and a maraschino cherry.", @@ -76730,7 +76730,7 @@ "grenadine syrup" ], "title": "Reggae Cocktail recipe", - "url": "http://www.drinksmixer.com/drink8296.html" + "url": "https://www.drinksmixer.com/drink8296.html" }, { "directions": "Pour the rums, creme de cacao, coconut cream, juices and bitters into a blender with one cup of crushed ice. Blend well at high speed, and pour into a collins glass. Garnish with a slice of orange and a maraschino cherry, and serve.", @@ -76746,7 +76746,7 @@ "crushed ice" ], "title": "Sacrifice recipe", - "url": "http://www.drinksmixer.com/drink8297.html" + "url": "https://www.drinksmixer.com/drink8297.html" }, { "directions": "Pour both ingredients into an old-fashioned glass almost filled with crushed ice. Stir, and serve.", @@ -76755,7 +76755,7 @@ "peppermint schnapps" ], "title": "Sharples recipe", - "url": "http://www.drinksmixer.com/drink8298.html" + "url": "https://www.drinksmixer.com/drink8298.html" }, { "directions": "Pour rums, juices and maraschino liqueur into a cocktail shaker half-filled with ice cubes. Shake well, strain into an old-fashioned glass almost filled with ice cubes, and serve.", @@ -76768,7 +76768,7 @@ "maraschino liqueur" ], "title": "Tahiti Club recipe", - "url": "http://www.drinksmixer.com/drink8299.html" + "url": "https://www.drinksmixer.com/drink8299.html" }, { "directions": "Pour dark rum, cherry brandy, lemon juice and Cointreau into a cocktail shaker half-filled with ice cubes. Shake well, strain into a cocktail glass, and serve.", @@ -76779,7 +76779,7 @@ "Cointreau\u00ae orange liqueur" ], "title": "Tropical Rainstorm recipe", - "url": "http://www.drinksmixer.com/drink8300.html" + "url": "https://www.drinksmixer.com/drink8300.html" }, { "directions": "Pour dark rum, tequila, pineapple juice and grapefruit juice into a cocktail shaker half-filled with ice cubes. Shake well, and strain into a collins glass almost filled with ice cubes. Add club soda and stir well. Garnish with a slice of orange, a pineapple wedge, and a maraschino cherry. Serve.", @@ -76791,7 +76791,7 @@ "club soda" ], "title": "Zocolo recipe", - "url": "http://www.drinksmixer.com/drink8301.html" + "url": "https://www.drinksmixer.com/drink8301.html" }, { "directions": "Pour vermouths, amaretto and lemon juice into a cocktail shaker half-filled with ice cubes. Shake, strain into a cocktail glass, and serve.", @@ -76802,7 +76802,7 @@ "lemon juice" ], "title": "Agincourt Cocktail recipe", - "url": "http://www.drinksmixer.com/drink8302.html" + "url": "https://www.drinksmixer.com/drink8302.html" }, { "directions": "Pour all ingredients into a mixing glass half-filled with ice cubes. Stir well, strain into a cocktail glass, and serve.", @@ -76813,7 +76813,7 @@ "bitters" ], "title": "Allied Requirements recipe", - "url": "http://www.drinksmixer.com/drink8303.html" + "url": "https://www.drinksmixer.com/drink8303.html" }, { "directions": "Pour both the Dubonnet wine and the Applejack brandy into a mixing glass half-filled with ice cubes. Stir well, strain into a cocktail glass, and serve.", @@ -76822,7 +76822,7 @@ "Applejack\u00ae brandy" ], "title": "Apple Rouge recipe", - "url": "http://www.drinksmixer.com/drink8304.html" + "url": "https://www.drinksmixer.com/drink8304.html" }, { "directions": "Pour the Dubonnet wine and the dry vermouth into a mixing glass half-filled with ice cubes. Stir well. Strain into a cocktail glass, garnish with a lemon twist, and serve.", @@ -76831,7 +76831,7 @@ "dry vermouth" ], "title": "Balanchine's Belle recipe", - "url": "http://www.drinksmixer.com/drink8305.html" + "url": "https://www.drinksmixer.com/drink8305.html" }, { "directions": "Pour the vermouth, brandy, peppermint schnapps, Pernod and bitters into a mixing glass half-filled with ice cubes. Stir well. Strain into an old-fashioned glass almost filled with ice cubes, and serve.", @@ -76843,7 +76843,7 @@ "bitters" ], "title": "Beansy's Battleground recipe", - "url": "http://www.drinksmixer.com/drink8306.html" + "url": "https://www.drinksmixer.com/drink8306.html" }, { "directions": "Pour the vermouth, brandy, Cointreau, sugar and bitters into a cocktail shaker half-filled with ice cubes. Shake and strain into a cocktail glass. Garnish with a lemon twist, and serve.", @@ -76855,7 +76855,7 @@ "orange bitters" ], "title": "Belle of Ellis Island recipe", - "url": "http://www.drinksmixer.com/drink8307.html" + "url": "https://www.drinksmixer.com/drink8307.html" }, { "directions": "Pour the sweet vermouth, dry vermouth, sloe gin and orange bitters into an old-fashioned glass two-thirds filled with crushed ice. Stir well, garnish with a slice of orange, and serve.", @@ -76866,7 +76866,7 @@ "orange bitters" ], "title": "Big Red Cocktail recipe", - "url": "http://www.drinksmixer.com/drink8308.html" + "url": "https://www.drinksmixer.com/drink8308.html" }, { "directions": "Pour the vermouth and the orange bitters into a mixing glass half-filled with ice cubes. Stir well and strain into a cocktail glass. Garnish with a twist of lemon, and serve.", @@ -76876,7 +76876,7 @@ "orange bitters" ], "title": "Bittersweet Cocktail recipe", - "url": "http://www.drinksmixer.com/drink8309.html" + "url": "https://www.drinksmixer.com/drink8309.html" }, { "directions": "Pour the vermouth, gin, orange juice and orange bitters into a cocktail shaker half-filled with ice cubes. Shake and strain into a cocktail glass. Garnish with a slice of orange, and serve.", @@ -76887,7 +76887,7 @@ "orange bitters" ], "title": "Blonde Jenny recipe", - "url": "http://www.drinksmixer.com/drink8310.html" + "url": "https://www.drinksmixer.com/drink8310.html" }, { "directions": "Pour the vermouth, brandy, orange bitters, lemon juice and sugar into a cocktail shaker half-filled with ice cubes. Shake well and strain into an old-fashioned glass almost filled with ice cubes. Garnish with a maraschino cherry, and serve.", @@ -76899,7 +76899,7 @@ "superfine sugar" ], "title": "Boswellian Booster recipe", - "url": "http://www.drinksmixer.com/drink8311.html" + "url": "https://www.drinksmixer.com/drink8311.html" }, { "directions": "Pour vermouth and Scotch into a mixing glass half-filled with ice cubes. Stir well, and strain into a cocktail glass. Garnish with a twist of lemon, and serve.", @@ -76908,7 +76908,7 @@ "Scotch whisky" ], "title": "Boyd of the Loch recipe", - "url": "http://www.drinksmixer.com/drink8312.html" + "url": "https://www.drinksmixer.com/drink8312.html" }, { "directions": "Pour vermouth, cassis and lemon juice into a cocktail shaker half-filled with ice cubes. Shake and strain into a cocktail glass, and serve.", @@ -76919,7 +76919,7 @@ "lemon juice" ], "title": "Bresnan recipe", - "url": "http://www.drinksmixer.com/drink8313.html" + "url": "https://www.drinksmixer.com/drink8313.html" }, { "directions": "Pour vermouth, gin, brandy, Pernod, lemon juice and grenadine into a cocktail shaker half-filled with ice cubes. Shake well, and strain into an old-fashioned glass almost filled with ice cubes. Garnish with a maraschino cherry, and serve.", @@ -76932,7 +76932,7 @@ "grenadine syrup" ], "title": "Burfentailor recipe", - "url": "http://www.drinksmixer.com/drink8314.html" + "url": "https://www.drinksmixer.com/drink8314.html" }, { "directions": "Pour vermouth, whisky and benedictine into a mixing glass half-filled with ice cubes. Stir well, strain into a cocktail glass, and serve.", @@ -76942,7 +76942,7 @@ "benedictine herbal liqueur" ], "title": "Burn's Night Special recipe", - "url": "http://www.drinksmixer.com/drink8315.html" + "url": "https://www.drinksmixer.com/drink8315.html" }, { "directions": "Pour the vermouth, bourbon, blackberry brandy, Cointreau and lemon juice into a cocktail shaker half-filled with ice cubes. Shake and strain into a cocktail glass, garnish with a twist of lemon, and serve.", @@ -76954,7 +76954,7 @@ "lemon juice" ], "title": "Chelsea Cocktail recipe", - "url": "http://www.drinksmixer.com/drink8316.html" + "url": "https://www.drinksmixer.com/drink8316.html" }, { "directions": "Pour vermouth and gin into a mixing glass half-filled with ice cubes. Stir well. Strain into a cocktail glass, garnish with a twist of lemon, and serve.", @@ -76964,7 +76964,7 @@ "gin" ], "title": "Cuyahoga Cocktail recipe", - "url": "http://www.drinksmixer.com/drink8317.html" + "url": "https://www.drinksmixer.com/drink8317.html" }, { "directions": "Pour vermouth, gin and cherry brandy into a mixing glass half-filled with ice cubes, and stir. Strain into a cocktail glass, and serve.", @@ -76974,7 +76974,7 @@ "cherry brandy" ], "title": "Dancin' Bones recipe", - "url": "http://www.drinksmixer.com/drink8318.html" + "url": "https://www.drinksmixer.com/drink8318.html" }, { "directions": "Pour Campari, gin and vermouth into an old-fashioned glass almost filled with ice cubes. Stir well, garnish with a twist of lemon, and serve.", @@ -76984,7 +76984,7 @@ "dry vermouth" ], "title": "Dry Negroni Cocktail recipe", - "url": "http://www.drinksmixer.com/drink8319.html" + "url": "https://www.drinksmixer.com/drink8319.html" }, { "directions": "Pour all ingredients into a cocktail shaker half-filled with ice cubes. Shake, strain into an old-fashioned glass almost filled with crushed ice, and serve.", @@ -76996,7 +76996,7 @@ "grenadine syrup" ], "title": "Earl of Sardinia recipe", - "url": "http://www.drinksmixer.com/drink8320.html" + "url": "https://www.drinksmixer.com/drink8320.html" }, { "directions": "Pour the sweet vermouth, dry vermouth, gin and bitters into a mixing glass half-filled with ice cubes. Stir well. Strain into a cocktail glass, garnish with a lemon twist, and serve.", @@ -77007,7 +77007,7 @@ "bitters" ], "title": "Farthingale recipe", - "url": "http://www.drinksmixer.com/drink8321.html" + "url": "https://www.drinksmixer.com/drink8321.html" }, { "directions": "Pour vermouth, apricot brandy, gin, cherry brandy and lemon juice into a cocktail shaker half-filled with ice cubes. Shake and strain into an old-fashioned glass almost filled with ice cubes, and serve.", @@ -77019,7 +77019,7 @@ "lemon juice" ], "title": "Gadzooks recipe", - "url": "http://www.drinksmixer.com/drink8322.html" + "url": "https://www.drinksmixer.com/drink8322.html" }, { "directions": "Pour the vermouth, grenadine and ginger ale into a collins glass almost filled with ice cubes. Stir well, garnish with a twist of lemon, and serve.", @@ -77030,7 +77030,7 @@ "ginger ale" ], "title": "Gladys Delight recipe", - "url": "http://www.drinksmixer.com/drink8323.html" + "url": "https://www.drinksmixer.com/drink8323.html" }, { "directions": "Pour vermouth, gin, Cointreau and bitters into a mixing glass half-filled with ice cubes. Stir well, strain into a cocktail glass, and serve.", @@ -77041,7 +77041,7 @@ "bitters" ], "title": "Go for Broke Cocktail recipe", - "url": "http://www.drinksmixer.com/drink8324.html" + "url": "https://www.drinksmixer.com/drink8324.html" }, { "directions": "Pour the vermouth, whisky and bitters into a mixing glass half-filled with ice cubes. Stir well, and strain into a cocktail glass. Garnish with a twist of lemon, and serve.", @@ -77052,7 +77052,7 @@ "bitters" ], "title": "Graceland recipe", - "url": "http://www.drinksmixer.com/drink8325.html" + "url": "https://www.drinksmixer.com/drink8325.html" }, { "directions": "Pour the gin, vermouth and Chartreuse into a mixing glass half-filled with crushed ice. Stir well, strain into a cocktail glass, and serve.", @@ -77062,7 +77062,7 @@ "Green Chartreuse\u00ae" ], "title": "Green Gables #2 recipe", - "url": "http://www.drinksmixer.com/drink8326.html" + "url": "https://www.drinksmixer.com/drink8326.html" }, { "directions": "Pour the vermouth, curacao and club soda into an old-fashioned glass almost filled with ice cubes. Stir well, garnish with a lemon twist, and serve.", @@ -77072,7 +77072,7 @@ "club soda" ], "title": "Head for the Hills recipe", - "url": "http://www.drinksmixer.com/drink8327.html" + "url": "https://www.drinksmixer.com/drink8327.html" }, { "directions": "Pour vermouth, gin, maraschino, grapefruit juice and bitters into a cocktail shaker half-filled with ice cubes. Shake well, strain into a cocktail glass, and serve.", @@ -77084,7 +77084,7 @@ "bitters" ], "title": "Hilgert Cocktail recipe", - "url": "http://www.drinksmixer.com/drink8328.html" + "url": "https://www.drinksmixer.com/drink8328.html" }, { "directions": "Pour the vermouth, gin and cherry brandy into a mixing glass half-filled with ice cubes, and stir well. Strain into a cocktail glass, garnish with a maraschino cherry, and serve.", @@ -77095,7 +77095,7 @@ "cherry brandy" ], "title": "Jeff Tracy recipe", - "url": "http://www.drinksmixer.com/drink8329.html" + "url": "https://www.drinksmixer.com/drink8329.html" }, { "directions": "Pour the vermouth, whisky and bitters into a mixing glass half-filled with ice cubes. Stir well, and strain into a cocktail glass. Garnish with a twist of lemon, and serve.", @@ -77105,7 +77105,7 @@ "bitters" ], "title": "Joyce of Hillhouse recipe", - "url": "http://www.drinksmixer.com/drink8330.html" + "url": "https://www.drinksmixer.com/drink8330.html" }, { "directions": "Pour the vermouth, sherry and Pernod into a mixing glass half-filled with ice cubes. Stir well, strain into a cocktail glass, and serve.", @@ -77115,7 +77115,7 @@ "Pernod\u00ae licorice liqueur" ], "title": "Kaytee Cocktail recipe", - "url": "http://www.drinksmixer.com/drink8331.html" + "url": "https://www.drinksmixer.com/drink8331.html" }, { "directions": "Pour the Campari, peach schnapps, orange juice and lemon juice into a cocktail shaker half-filled with ice cubes. Shake well, strain into a collins glass and top with tonic water. Stir well, garnish with a twist of lemon, and serve.", @@ -77127,7 +77127,7 @@ "tonic water" ], "title": "King Kenneth recipe", - "url": "http://www.drinksmixer.com/drink8332.html" + "url": "https://www.drinksmixer.com/drink8332.html" }, { "directions": "Pour the vermouth, gin and triple sec into a mixing glass half-filled with ice cubes. Stir well, strain into a cocktail glass, and serve.", @@ -77137,7 +77137,7 @@ "Cointreau\u00ae orange liqueur" ], "title": "Lady Evelyn recipe", - "url": "http://www.drinksmixer.com/drink8333.html" + "url": "https://www.drinksmixer.com/drink8333.html" }, { "directions": "Pour the Dubonnet and vermouth into a mixing glass half-filled with ice cubes. Stir well, and strain into a cocktail glass. Garnish with a twist of lemon, and serve.", @@ -77146,7 +77146,7 @@ "dry vermouth" ], "title": "Lady Madonna recipe", - "url": "http://www.drinksmixer.com/drink8334.html" + "url": "https://www.drinksmixer.com/drink8334.html" }, { "directions": "Pour the vermouth, brandy and creme de menthe into a mixing glass half-filled with ice cubes. Stir well, strain into a cocktail glass, and serve.", @@ -77156,7 +77156,7 @@ "white creme de menthe" ], "title": "Leo the Lion recipe", - "url": "http://www.drinksmixer.com/drink8335.html" + "url": "https://www.drinksmixer.com/drink8335.html" }, { "directions": "Pour the Lillet and gin into a mixing glass half-filled with ice cubes, and stir well. Strain into a cocktail glass, garnish with a twist of lemon, and serve.", @@ -77165,7 +77165,7 @@ "gin" ], "title": "Lillet Cocktail recipe", - "url": "http://www.drinksmixer.com/drink8336.html" + "url": "https://www.drinksmixer.com/drink8336.html" }, { "directions": "Pour the vermouth, rum, sweetened lime juice and orange bitters into a mixing glass half-filled with ice cubes, and stir well. Strain into a cocktail glass, and serve.", @@ -77176,7 +77176,7 @@ "orange bitters" ], "title": "Lying with the Tigress recipe", - "url": "http://www.drinksmixer.com/drink8337.html" + "url": "https://www.drinksmixer.com/drink8337.html" }, { "directions": "Pour the vermouth, gin and creme de cassis into a mixing glass half-filled with ice cubes. Stir well, strain into a cocktail glass, and serve.", @@ -77186,7 +77186,7 @@ "creme de cassis" ], "title": "Magique recipe", - "url": "http://www.drinksmixer.com/drink8338.html" + "url": "https://www.drinksmixer.com/drink8338.html" }, { "directions": "Pour the vermouth, brandy and bitters into a mixing glass half-filled with ice cubes. Stir well, strain into a cocktail glass, and serve.", @@ -77196,7 +77196,7 @@ "orange bitters" ], "title": "Mary's Delight recipe", - "url": "http://www.drinksmixer.com/drink8339.html" + "url": "https://www.drinksmixer.com/drink8339.html" }, { "directions": "Pour the vermouth, gin, chartreuse, orange juice and orange bitters into a cocktail shaker half-filled with ice cubes. Shake well, strain into a cocktail glass, and serve.", @@ -77208,7 +77208,7 @@ "orange bitters" ], "title": "Matinee recipe", - "url": "http://www.drinksmixer.com/drink8340.html" + "url": "https://www.drinksmixer.com/drink8340.html" }, { "directions": "Pour the vermouth and anisette into an old-fashioned glass almost filled with ice cubes. Stir well, and serve.", @@ -77218,7 +77218,7 @@ "anisette" ], "title": "Maureen's Dream recipe", - "url": "http://www.drinksmixer.com/drink8341.html" + "url": "https://www.drinksmixer.com/drink8341.html" }, { "directions": "Pour the vermouth, brandy, Pernod, Cointreau and bitters into a mixing glass half-filled with ice cubes. Stir well, strain into a cocktail glass, and serve.", @@ -77231,7 +77231,7 @@ "orange bitters" ], "title": "Mayflower Cocktail recipe", - "url": "http://www.drinksmixer.com/drink8342.html" + "url": "https://www.drinksmixer.com/drink8342.html" }, { "directions": "Pour the vermouth, gin, orange juice and bitters into a cocktail shaker half-filled with ice cubes. Shake well, strain into a cocktail glass, and serve.", @@ -77243,7 +77243,7 @@ "orange bitters" ], "title": "Mayor Billy recipe", - "url": "http://www.drinksmixer.com/drink8343.html" + "url": "https://www.drinksmixer.com/drink8343.html" }, { "directions": "Pour the vermouth, Armagnac and creme de menthe into a mixing glass half-filled with ice cubes, and stir well. Strain into a cocktail glass, and serve.", @@ -77253,7 +77253,7 @@ "green creme de menthe" ], "title": "Mercenary recipe", - "url": "http://www.drinksmixer.com/drink8344.html" + "url": "https://www.drinksmixer.com/drink8344.html" }, { "directions": "Pour the vermouth, gin, creme de cassis and lemon juice into a cocktail shaker half-filled with ice cubes, and shake well. Strain into a collins glass almost filled with ice cubes, and top with tonic water. Stir well, garnish with a lemon wedge, and serve.", @@ -77265,7 +77265,7 @@ "tonic water" ], "title": "Moi? recipe", - "url": "http://www.drinksmixer.com/drink8345.html" + "url": "https://www.drinksmixer.com/drink8345.html" }, { "directions": "Pour the vermouth, brandy, juices and bitters into a cocktail shaker half-filled with ice cubes. Shake well, strain into a cocktail glass, and serve.", @@ -77278,7 +77278,7 @@ "orange bitters" ], "title": "Much Fuss for the Conquering Hero recipe", - "url": "http://www.drinksmixer.com/drink8346.html" + "url": "https://www.drinksmixer.com/drink8346.html" }, { "directions": "Pour the vermouth, gin, brandy and fruit juices into a cocktail shaker half-filled with ice cubes. Shake well, strain into a cocktail glass, and serve.", @@ -77290,7 +77290,7 @@ "lime juice" ], "title": "Pammy Kay recipe", - "url": "http://www.drinksmixer.com/drink8347.html" + "url": "https://www.drinksmixer.com/drink8347.html" }, { "directions": "Pour the Dubonnet, brandy and Pernod into a mixing glass half-filled with ice cubes, and stir well. Strain into a cocktail glass, and serve.", @@ -77300,7 +77300,7 @@ "Pernod\u00ae licorice liqueur" ], "title": "Phoebe Snow recipe", - "url": "http://www.drinksmixer.com/drink8348.html" + "url": "https://www.drinksmixer.com/drink8348.html" }, { "directions": "Pour the vermouth, Southern Comfort, light rum, Cointreau and orange bitters into a mixing glass half-filled with ice cubes, and stir well. Strain into a cocktail glass, garnish with a maraschino cherry, and serve.", @@ -77312,7 +77312,7 @@ "orange bitters" ], "title": "Piggot's Preference recipe", - "url": "http://www.drinksmixer.com/drink8349.html" + "url": "https://www.drinksmixer.com/drink8349.html" }, { "directions": "Pour the vermouth, gin, juices and orange bitters into a cocktail shaker half-filled with ice cubes, and shake well. Strain into a cocktail glass, garnish with a slice of orange, and serve.", @@ -77325,7 +77325,7 @@ "orange bitters" ], "title": "Same Old Song recipe", - "url": "http://www.drinksmixer.com/drink8350.html" + "url": "https://www.drinksmixer.com/drink8350.html" }, { "directions": "Pour the vermouth, whisky, cherry brandy and orange juice into a cocktail shaker half-filled with ice cubes. Shake well, strain into a cocktail glass, and serve.", @@ -77336,7 +77336,7 @@ "orange juice" ], "title": "Seething Jealousy recipe", - "url": "http://www.drinksmixer.com/drink8351.html" + "url": "https://www.drinksmixer.com/drink8351.html" }, { "directions": "Pour the vermouth, brandy and Benedictine into an old-fashioned glass almost filled with ice cubes. Stir well, and serve.", @@ -77346,7 +77346,7 @@ "benedictine herbal liqueur" ], "title": "Sweet Nan recipe", - "url": "http://www.drinksmixer.com/drink8352.html" + "url": "https://www.drinksmixer.com/drink8352.html" }, { "directions": "Pour the Dubonnet, gin and dry vermouth into a mixing glass half-filled with ice cubes. Stir well, strain into a cocktail glass, and serve.", @@ -77356,7 +77356,7 @@ "dry vermouth" ], "title": "Tannersworth recipe", - "url": "http://www.drinksmixer.com/drink8353.html" + "url": "https://www.drinksmixer.com/drink8353.html" }, { "directions": "Pour the vermouth, gin, apricot brandy, creme de cassis and lemon juice into a cocktail shaker half-filled with ice cubes. Shake well, strain into a cocktail glass, and serve.", @@ -77368,7 +77368,7 @@ "lemon juice" ], "title": "Thanksgiving Cocktail #2 recipe", - "url": "http://www.drinksmixer.com/drink8354.html" + "url": "https://www.drinksmixer.com/drink8354.html" }, { "directions": "Pour the vermouth, gin, peach brandy and lemon juice into a cocktail shaker half-filled with ice cubes, and shake well. Strain into a cocktail glass, garnish with a maraschino cherry, and serve.", @@ -77379,7 +77379,7 @@ "lemon juice" ], "title": "Triplet Cocktail recipe", - "url": "http://www.drinksmixer.com/drink8355.html" + "url": "https://www.drinksmixer.com/drink8355.html" }, { "directions": "Pour the Campari, dry vermouth and Cointreau into a mixing glass half-filled with ice cubes. Stir well, strain into an old-fashioned glass almost filled with ice cubes, and serve.", @@ -77389,7 +77389,7 @@ "Cointreau\u00ae orange liqueur" ], "title": "True Trixie recipe", - "url": "http://www.drinksmixer.com/drink8356.html" + "url": "https://www.drinksmixer.com/drink8356.html" }, { "directions": "Pour the vermouth and creme de cassis into a highball glass almost filled with ice cubes. Top with club soda, and stir well. Garnish with a twist of lemon, and serve.", @@ -77399,7 +77399,7 @@ "club soda" ], "title": "Vermouth Cassis Tall recipe", - "url": "http://www.drinksmixer.com/drink8357.html" + "url": "https://www.drinksmixer.com/drink8357.html" }, { "directions": "Pour the vermouth, brandy, Pernod and Cointreau into a mixing glass half-filled with ice cubes. Stir well, strain into a cocktail glass, and serve.", @@ -77411,7 +77411,7 @@ "Cointreau\u00ae orange liqueur" ], "title": "Warrior Cocktail recipe", - "url": "http://www.drinksmixer.com/drink8358.html" + "url": "https://www.drinksmixer.com/drink8358.html" }, { "directions": "Pour the Dubonnet, gin, cherry brandy, orange juice and orange bitters into a cocktail shaker half-filled with ice cubes. Shake well, strain into a cocktail glass, and serve.", @@ -77423,7 +77423,7 @@ "orange bitters" ], "title": "Wedding Bell Cocktail recipe", - "url": "http://www.drinksmixer.com/drink8359.html" + "url": "https://www.drinksmixer.com/drink8359.html" }, { "directions": "Pour the vermouth, gin, and Pernod into a mixing glass half-filled with ice cubes. Stir well, and strain into a cocktail glass. Garnish with a slice of orange, and serve.", @@ -77433,7 +77433,7 @@ "Pernod\u00ae licorice liqueur" ], "title": "Westerman Sings the Blues recipe", - "url": "http://www.drinksmixer.com/drink8360.html" + "url": "https://www.drinksmixer.com/drink8360.html" }, { "directions": "Pour the vermouth, gin, Ricard and bitters into a mixing glass half-filled with ice cubes. Stir well, strain into a cocktail glass, and serve.", @@ -77444,7 +77444,7 @@ "bitters" ], "title": "Wilfred's Weather recipe", - "url": "http://www.drinksmixer.com/drink8361.html" + "url": "https://www.drinksmixer.com/drink8361.html" }, { "directions": "Pour the vermouth, gin, green chartreuse and orange bitters into a mixing glass half-filled with ice cubes. Stir well, strain into a cocktail glass, and serve.", @@ -77455,7 +77455,7 @@ "orange bitters" ], "title": "Wysoosler recipe", - "url": "http://www.drinksmixer.com/drink8362.html" + "url": "https://www.drinksmixer.com/drink8362.html" }, { "directions": "Pour the amaretto and orange juice into a highball glass almost filled with ice cubes. Stir, and serve.", @@ -77464,7 +77464,7 @@ "orange juice" ], "title": "Bocci Ball #2 recipe", - "url": "http://www.drinksmixer.com/drink8363.html" + "url": "https://www.drinksmixer.com/drink8363.html" }, { "directions": "Pour the apricot brandy, lemon juice and sugar into a cocktail shaker half-filled with ice cubes. Shake well, and strain into a collins glass almost filled with ice cubes. Add the club soda, stir well, and serve.", @@ -77475,7 +77475,7 @@ "club soda" ], "title": "Apricot Fizz recipe", - "url": "http://www.drinksmixer.com/drink8364.html" + "url": "https://www.drinksmixer.com/drink8364.html" }, { "directions": "Pour the apricot brandy, lemon juice and sugar into a cocktail glass half-filled with ice cubes. Shake well, and strain into a cocktail glass. Garnish with an orange wedge and a maraschino cherry, and serve.", @@ -77485,7 +77485,7 @@ "superfine sugar" ], "title": "Apricot Sour recipe", - "url": "http://www.drinksmixer.com/drink8365.html" + "url": "https://www.drinksmixer.com/drink8365.html" }, { "directions": "Pour the Bailey's irish cream, apricot brandy and gin into a cocktail shaker half-filled with ice cubes. Shake well, strain into a cocktail glass, and serve.", @@ -77495,7 +77495,7 @@ "gin" ], "title": "Blackpool Tower recipe", - "url": "http://www.drinksmixer.com/drink8366.html" + "url": "https://www.drinksmixer.com/drink8366.html" }, { "directions": "Pour the apricot brandy, gin and Calvados brandy into a mixing glass half-filled with ice cubes. Stir well, strain into a cocktail glass, and serve.", @@ -77505,7 +77505,7 @@ "Calvados\u00ae brandy" ], "title": "On the Square recipe", - "url": "http://www.drinksmixer.com/drink8367.html" + "url": "https://www.drinksmixer.com/drink8367.html" }, { "directions": "Pour the Bailey's irish cream into a pousse cafe glass. Carefully pour the Chambord over the back of a teaspoon in order to float it on top of the Bailey's. Serve.", @@ -77514,7 +77514,7 @@ "Chambord\u00ae raspberry liqueur" ], "title": "Cherry Kiss #2 recipe", - "url": "http://www.drinksmixer.com/drink8368.html" + "url": "https://www.drinksmixer.com/drink8368.html" }, { "directions": "Pour the Bailey's, irish whiskey, cherry brandy and coffee into a highball glass filled with crushed ice. Stir well, and serve.", @@ -77525,7 +77525,7 @@ "coffee" ], "title": "Morning with the Leprechauns recipe", - "url": "http://www.drinksmixer.com/drink8369.html" + "url": "https://www.drinksmixer.com/drink8369.html" }, { "directions": "Pour the benedictine and white creme de menthe into a mixing glass half-filled with ice cubes. Stir well, strain into a cocktail glass, and serve.", @@ -77534,7 +77534,7 @@ "white creme de menthe" ], "title": "B & B Stinger recipe", - "url": "http://www.drinksmixer.com/drink8370.html" + "url": "https://www.drinksmixer.com/drink8370.html" }, { "directions": "Pour the benedictine, Cointreau and light cream into a cocktail shaker half-filled with ice cubes. Shake well, strain into a cocktail glass, and serve.", @@ -77544,7 +77544,7 @@ "light cream" ], "title": "Silent Monk recipe", - "url": "http://www.drinksmixer.com/drink8371.html" + "url": "https://www.drinksmixer.com/drink8371.html" }, { "directions": "Pour the blue curacao, light rum, anejo rum, pineapple juice and coconut cream into a cocktail shaker half-filled with ice cubes. Shake well, strain into an old-fashioned glass almost filled with ice cubes, and serve.", @@ -77556,7 +77556,7 @@ "coconut cream" ], "title": "Barrow Blues recipe", - "url": "http://www.drinksmixer.com/drink8372.html" + "url": "https://www.drinksmixer.com/drink8372.html" }, { "directions": "Pour the yellow chartreuse and Danzig Goldwasser into a mixing glass half-filled with ice cubes. Stir well, strain into a cocktail glass, and serve.", @@ -77565,7 +77565,7 @@ "Danzig Goldwasser\u00ae orange liqueur" ], "title": "Golden Fleece recipe", - "url": "http://www.drinksmixer.com/drink8373.html" + "url": "https://www.drinksmixer.com/drink8373.html" }, { "directions": "Pour the cherry brandy, lemon juice and bitters into a cocktail shaker half-filled with ice cubes, and shake well. Strain into a highball glass almost filled with ice cubes. Top with tonic water, and stir well. Garnish with a lime wedge, and serve.", @@ -77576,7 +77576,7 @@ "tonic water" ], "title": "Cherries from Heaven recipe", - "url": "http://www.drinksmixer.com/drink8374.html" + "url": "https://www.drinksmixer.com/drink8374.html" }, { "directions": "Pour the cherry brandy, maraschino liqueur and cola into a highball glass almost filled with ice cubes. Stir well, garnish with a maraschino cherry, and serve.", @@ -77586,7 +77586,7 @@ "cola" ], "title": "Cherry Flash Cola recipe", - "url": "http://www.drinksmixer.com/drink8375.html" + "url": "https://www.drinksmixer.com/drink8375.html" }, { "directions": "Pour the Cointreau and Sambuca into a mixing glass half-filled with ice cubes. Stir well, strain into a cocktail glass, and serve.", @@ -77595,7 +77595,7 @@ "sambuca" ], "title": "Duval recipe", - "url": "http://www.drinksmixer.com/drink8376.html" + "url": "https://www.drinksmixer.com/drink8376.html" }, { "directions": "Pour the creme de bananes, Cointreau, bitters and light cream into a cocktail shaker half-filled with ice cubes. Shake well, strain into a cocktail glass, and serve.", @@ -77606,7 +77606,7 @@ "light cream" ], "title": "Bananarama recipe", - "url": "http://www.drinksmixer.com/drink8377.html" + "url": "https://www.drinksmixer.com/drink8377.html" }, { "directions": "Pour the creme de cacao, Kahlua, peppermint schnapps and cream into a cocktail shaker half-filled with ice cubes, and shake well. Strain into a cocktail glass, and serve.", @@ -77618,7 +77618,7 @@ "light cream" ], "title": "Slamdancer recipe", - "url": "http://www.drinksmixer.com/drink8378.html" + "url": "https://www.drinksmixer.com/drink8378.html" }, { "directions": "Pour the white creme de menthe into a brandy snifter filled with crushed ice. Carefully pour the brandy over the back of a teaspoon in order to float it on top of the creme de menthe. Serve.", @@ -77627,7 +77627,7 @@ "brandy" ], "title": "Diana Cocktail recipe", - "url": "http://www.drinksmixer.com/drink8379.html" + "url": "https://www.drinksmixer.com/drink8379.html" }, { "directions": "Pour the Drambuie, whiskey and vermouth into a mixing glass half-filled with ice cubes, and stir well. Strain into a cocktail glass, garnish with a twist of lemon, and serve.", @@ -77637,7 +77637,7 @@ "dry vermouth" ], "title": "Roger Swims a Mile recipe", - "url": "http://www.drinksmixer.com/drink8380.html" + "url": "https://www.drinksmixer.com/drink8380.html" }, { "directions": "Pour the Frangelico hazelnut liqueur, creme de bananes, pineapple juice and bitters into a cocktail shaker half-filled with ice cubes, and shake well. Strain into a cocktail glass, and serve.", @@ -77648,7 +77648,7 @@ "bitters" ], "title": "End of My Rope recipe", - "url": "http://www.drinksmixer.com/drink8381.html" + "url": "https://www.drinksmixer.com/drink8381.html" }, { "directions": "Pour the Frangelico, brandy, lemon juice and grenadine into a cocktail shaker half-filled with ice cubes. Shake well, strain into a cocktail glass, garnish with a maraschino cherry, and serve.", @@ -77659,7 +77659,7 @@ "grenadine syrup" ], "title": "Friar Tuck #2 recipe", - "url": "http://www.drinksmixer.com/drink8382.html" + "url": "https://www.drinksmixer.com/drink8382.html" }, { "directions": "Pour the Grand Marnier, Kahlua coffee liqueur and Bailey's irish cream into a cocktail shaker half-filled with ice cubes. Shake well, strain into a cocktail glass, and serve.", @@ -77669,7 +77669,7 @@ "Bailey's\u00ae Irish cream" ], "title": "B-52 #2 recipe", - "url": "http://www.drinksmixer.com/drink8383.html" + "url": "https://www.drinksmixer.com/drink8383.html" }, { "directions": "Pour the Grand Marnier, gin, vermouth and bitters into a mixing glass half-filled with ice cubes. Stir well, strain into a cocktail glass, and serve.", @@ -77680,7 +77680,7 @@ "bitters" ], "title": "Chunnel Cocktail recipe", - "url": "http://www.drinksmixer.com/drink8384.html" + "url": "https://www.drinksmixer.com/drink8384.html" }, { "directions": "Pour the Kahlua coffee liqueur, Sambuca and cream into a cocktail shaker half-filled with ice cubes, and shake well. Strain into a cocktail glass, and serve.", @@ -77690,7 +77690,7 @@ "heavy cream" ], "title": "Coffee Stick recipe", - "url": "http://www.drinksmixer.com/drink8385.html" + "url": "https://www.drinksmixer.com/drink8385.html" }, { "directions": "Pour the Kahlua, tequila and lime juice into a cocktail shaker half-filled with ice cubes. Shake well, strain into a cocktail glass, and serve.", @@ -77700,7 +77700,7 @@ "lime juice" ], "title": "Douglas Town recipe", - "url": "http://www.drinksmixer.com/drink8386.html" + "url": "https://www.drinksmixer.com/drink8386.html" }, { "directions": "Pour the Kahlua coffee liqueur into a pousse cafe glass. Carefully float the cream on top by pouring over the back of a teaspoon, and serve.", @@ -77709,7 +77709,7 @@ "heavy cream" ], "title": "King Alphonse recipe", - "url": "http://www.drinksmixer.com/drink8387.html" + "url": "https://www.drinksmixer.com/drink8387.html" }, { "directions": "Pour the Kahlua into a pousse cafe glass. Carefully float the cream on top by pouring over the back of a teaspoon. Place a maraschino cherry in the center, and serve.", @@ -77719,7 +77719,7 @@ "maraschino cherry" ], "title": "Witch's Tit recipe", - "url": "http://www.drinksmixer.com/drink8388.html" + "url": "https://www.drinksmixer.com/drink8388.html" }, { "directions": "Pour the melon liqueur, light rum, lemon juice and grenadine into a cocktail shaker half-filled with ice cubes. Shake well, and strain into a cocktail glass. Drop the grenadine into the center of the drink, and serve.", @@ -77730,7 +77730,7 @@ "grenadine syrup" ], "title": "Focal Point recipe", - "url": "http://www.drinksmixer.com/drink8389.html" + "url": "https://www.drinksmixer.com/drink8389.html" }, { "directions": "Pour the melon liqueur, Scotch, dry vermouth and lemon-lime osda into a highball glass almost filled with ice cubes. Stir well, and serve.", @@ -77741,7 +77741,7 @@ "lemon-lime soda" ], "title": "Green Goddess recipe", - "url": "http://www.drinksmixer.com/drink8390.html" + "url": "https://www.drinksmixer.com/drink8390.html" }, { "directions": "Pour the melon liqueur, vodka, Cointreau, lemon-lime soda and club soda into a highball glass almost filled with ice cubes. Stir well, garnish with a lime wedge, and serve.", @@ -77753,7 +77753,7 @@ "club soda" ], "title": "Man in the Melon recipe", - "url": "http://www.drinksmixer.com/drink8391.html" + "url": "https://www.drinksmixer.com/drink8391.html" }, { "directions": "Pour the peppermint schnapps, blue curacao and lemon-lime soda into a highball glass almost filled with ice cubes. Stir well, and serve.", @@ -77763,7 +77763,7 @@ "lemon-lime soda" ], "title": "Blue Glory recipe", - "url": "http://www.drinksmixer.com/drink8392.html" + "url": "https://www.drinksmixer.com/drink8392.html" }, { "directions": "Pour the peppermint schnapps, Kahlua coffee liqueur and dark creme de cacao into a cocktail shaker half-filled with ice cubes. Shake well, strain into a cocktail glass, and serve.", @@ -77773,7 +77773,7 @@ "dark creme de cacao" ], "title": "Peppermint Twist recipe", - "url": "http://www.drinksmixer.com/drink8393.html" + "url": "https://www.drinksmixer.com/drink8393.html" }, { "directions": "Pour the chartreuse into a pousse-cafe glass. Carefully float the maraschino liqueur on top by pouring slowly over the back of a teaspoon. Do the same with the cherry brandy, and then again with the kummel. Serve.", @@ -77784,7 +77784,7 @@ "Kummel\u00ae caraway liqueur" ], "title": "Pousse Cafe a la Francaise recipe", - "url": "http://www.drinksmixer.com/drink8394.html" + "url": "https://www.drinksmixer.com/drink8394.html" }, { "directions": "Pour the grenadine into a pousse-cafe glass. Carefully float the white creme de menthe on top by pouring slowly over the back of a teaspoon. Do the same with the galliano, and then again with the kummel, and then lastly with the brandy.", @@ -77796,7 +77796,7 @@ "brandy" ], "title": "Pousse Cafe Standish recipe", - "url": "http://www.drinksmixer.com/drink8395.html" + "url": "https://www.drinksmixer.com/drink8395.html" }, { "directions": "Pour the Sambuca and brandy into a mixing glass half-filled with ce cubes. Stir well, and strain into a cocktail glass. Garnish with a twist of lemon, and serve.", @@ -77805,7 +77805,7 @@ "brandy" ], "title": "Ferris Wheel recipe", - "url": "http://www.drinksmixer.com/drink8396.html" + "url": "https://www.drinksmixer.com/drink8396.html" }, { "directions": "Pour the Opal Nera black sambuca, blackberry brandy, amaretto and cream into a cocktail shaker half-filled with ice cubes. Shake well, strain into a cocktail glass, and serve.", @@ -77816,7 +77816,7 @@ "light cream" ], "title": "Samson Cocktail recipe", - "url": "http://www.drinksmixer.com/drink8397.html" + "url": "https://www.drinksmixer.com/drink8397.html" }, { "directions": "Pour the sloe gin, gin, vodka, orange juice, lemon juice and grenadine into a cocktail shaker half-filled with ice cubes. Shake well, strain into a highball glass almost filled with ice cubes, and serve.", @@ -77829,7 +77829,7 @@ "grenadine syrup" ], "title": "Sloehand Jackson recipe", - "url": "http://www.drinksmixer.com/drink8398.html" + "url": "https://www.drinksmixer.com/drink8398.html" }, { "directions": "Pour the Southern Comfort, gin, lemon juice and orange juice into a cocktail shaker half-filled with ice cubes. Shake well, strain into a cocktail glass, and serve.", @@ -77840,7 +77840,7 @@ "orange juice" ], "title": "British Comfort recipe", - "url": "http://www.drinksmixer.com/drink8399.html" + "url": "https://www.drinksmixer.com/drink8399.html" }, { "directions": "Pour the Southern Comfort, sweet vermouth and bitters into a mixing glass half-filled with ice cubes. Stir well, and strain into a cocktail glass. Garnish with a maraschino cherry, and serve.", @@ -77850,7 +77850,7 @@ "bitters" ], "title": "Southern Comfort Manhattan recipe", - "url": "http://www.drinksmixer.com/drink8400.html" + "url": "https://www.drinksmixer.com/drink8400.html" }, { "directions": "Combine 4 mint leaves with the sugar and a few drops of water, and muddle well. Add the bourbon, and stir well. Strain into a collins glass, add ice cubes and the champagne. Garnish with 2 mint leaves, and serve.", @@ -77861,7 +77861,7 @@ "mint" ], "title": "Champagne Julep recipe", - "url": "http://www.drinksmixer.com/drink8401.html" + "url": "https://www.drinksmixer.com/drink8401.html" }, { "directions": "Pour the gin, lemon juice and sugar in a cocktail shaker half-filled with ice cubes, and shake well. Strain into a champagne flute, add champagne, and serve.", @@ -77872,7 +77872,7 @@ "Champagne" ], "title": "Champagne Fizz recipe", - "url": "http://www.drinksmixer.com/drink8402.html" + "url": "https://www.drinksmixer.com/drink8402.html" }, { "directions": "Add the sugar to an old-fashioned glass. Pour in the club soda, and stir to dissolve. Add crushed ice until the glass is almost full, then add sherry, and stir well. Garnish with a maraschino cherry, a slice of orange, and a slice of lemon, and serve.", @@ -77882,7 +77882,7 @@ "club soda" ], "title": "Cream Sherry Cobbler recipe", - "url": "http://www.drinksmixer.com/drink8403.html" + "url": "https://www.drinksmixer.com/drink8403.html" }, { "directions": "Combine the sherry, egg, sugar and cream in a cocktail shaker half-filled with ice cubes, and shake well. Strain into a cocktail glass, garnish with a dusting of nutmeg, and serve.", @@ -77894,7 +77894,7 @@ "nutmeg" ], "title": "Cream Sherry Flip recipe", - "url": "http://www.drinksmixer.com/drink8404.html" + "url": "https://www.drinksmixer.com/drink8404.html" }, { "directions": "Add the sugar to a highball glass. Add water and sherry, and stir to dissolve sugar. Almost fill the glass with crushed ice, and add club soda. Float the benedictine on top. Garnish with a lemon twist, a dusting of nutmeg and cinnamon, and serve.", @@ -77908,7 +77908,7 @@ "cinnamon" ], "title": "Cream Sherry Sangaree recipe", - "url": "http://www.drinksmixer.com/drink8405.html" + "url": "https://www.drinksmixer.com/drink8405.html" }, { "directions": "Pour the brandy, port, egg, sugar and cream into a cocktail shaker and shake well. Strain into a cocktail glass, garnish with a dusting of nutmeg, and serve.", @@ -77921,7 +77921,7 @@ "nutmeg" ], "title": "Ferocious Flip recipe", - "url": "http://www.drinksmixer.com/drink8406.html" + "url": "https://www.drinksmixer.com/drink8406.html" }, { "directions": "Pour the brandy and framboise into a mixing glass half-filled with ice cubes. Stir well, and strain into a champagne flute. Add the champagne, and serve.", @@ -77931,7 +77931,7 @@ "Champagne" ], "title": "French Revolution recipe", - "url": "http://www.drinksmixer.com/drink8407.html" + "url": "https://www.drinksmixer.com/drink8407.html" }, { "directions": "Pour the whiskey into a shot glass. Whiskey won't burn on it's own so heat it in a microwave for 5 - 10 seconds (just before alcohol starts boiling). Ignite the shot of whiskey, drop it into a pint of beer, and serve.", @@ -77940,7 +77940,7 @@ "whiskey" ], "title": "Flaming Boilermaker recipe", - "url": "http://www.drinksmixer.com/drink8409.html" + "url": "https://www.drinksmixer.com/drink8409.html" }, { "directions": "Pour the white wine and orange juice into a collins glass almost filled with ice cubes. Stir well, float the galliano on top, and serve.", @@ -77950,7 +77950,7 @@ "Galliano\u00ae herbal liqueur" ], "title": "Hillary Wallbanger recipe", - "url": "http://www.drinksmixer.com/drink8410.html" + "url": "https://www.drinksmixer.com/drink8410.html" }, { "directions": "Pour the brandy and champagne into a champagne flute, and serve.", @@ -77959,7 +77959,7 @@ "Champagne" ], "title": "King's Peg recipe", - "url": "http://www.drinksmixer.com/drink8411.html" + "url": "https://www.drinksmixer.com/drink8411.html" }, { "directions": "Pour the champagne and port into a champagne flute. Stir well, and serve.", @@ -77968,7 +77968,7 @@ "tawny port" ], "title": "Nelson's Blood recipe", - "url": "http://www.drinksmixer.com/drink8412.html" + "url": "https://www.drinksmixer.com/drink8412.html" }, { "directions": "Pour the port and brandy into a brandy snifter. Stir well, and serve.", @@ -77977,7 +77977,7 @@ "brandy" ], "title": "Port and Brandy recipe", - "url": "http://www.drinksmixer.com/drink8413.html" + "url": "https://www.drinksmixer.com/drink8413.html" }, { "directions": "Pour the port, brandy, lemon juice, sugar and grenadine into a cocktail shaker half-filled with ice cubes. Shake well and pour into an old-fashioned glass. Garnish with a lemon wedge, and serve.", @@ -77989,7 +77989,7 @@ "grenadine syrup" ], "title": "Portuguese Daisy recipe", - "url": "http://www.drinksmixer.com/drink8414.html" + "url": "https://www.drinksmixer.com/drink8414.html" }, { "directions": "Dissolve the sugar in the water and port in the bottom of a highball glass. Almost fill the glass with crushed ice; add the soda. Float the brandy on top, and garnish with a lemon twist. Dust with nutmeg, then with cinnamon, and serve.", @@ -78003,7 +78003,7 @@ "cinnamon" ], "title": "Port Wine Sangaree recipe", - "url": "http://www.drinksmixer.com/drink8415.html" + "url": "https://www.drinksmixer.com/drink8415.html" }, { "directions": "Pour the vodka, Grand Marnier, lime juice, bitters, Cointreau and wine into a cocktail shaker half-filled with ice cubes, and shake well. Strain into a large wine glass, and add the wine. Stir well, and serve.", @@ -78016,7 +78016,7 @@ "sparkling white wine" ], "title": "Queen's Cousin recipe", - "url": "http://www.drinksmixer.com/drink8416.html" + "url": "https://www.drinksmixer.com/drink8416.html" }, { "directions": "Pour the wine, lemon-lime soda and ginger ale into a highball glass almost filled with ice cubes. Stir well. Garnish with a twist of lemon and a slice of orange, and serve.", @@ -78026,7 +78026,7 @@ "ginger ale" ], "title": "Red Wine Cooler recipe", - "url": "http://www.drinksmixer.com/drink8417.html" + "url": "https://www.drinksmixer.com/drink8417.html" }, { "directions": "Dissolve the sugar in the club soda in the bottom of an old-fashioned glass. Add crushed ice until the glass is almost full, and stir well. Garnish with a maraschino cherry, a slice of orange, and a slice of lemon.", @@ -78036,7 +78036,7 @@ "superfine sugar" ], "title": "Ruby Port Cobbler recipe", - "url": "http://www.drinksmixer.com/drink8418.html" + "url": "https://www.drinksmixer.com/drink8418.html" }, { "directions": "Pour the Madeira wine, brandy and vermouth into an old-fashioned glass almost filled with ice cubes. Stir well, garnish with a twist of lemon, and serve.", @@ -78047,7 +78047,7 @@ "sweet vermouth" ], "title": "Madeira M'Dear recipe", - "url": "http://www.drinksmixer.com/drink8419.html" + "url": "https://www.drinksmixer.com/drink8419.html" }, { "directions": "Heat the lemon juice with 2 ounces of ale, the ginger and the sugar in a saucepan over moderate heat until the sugar has dissolved. Beat the egg yolk into the brandy in a bowl. Beat the lemon juice mixture from the saucepan into the bowl with the egg, and beat together. Transfer to a beer mug. Add the rest of the ale, stir well, and serve.", @@ -78060,7 +78060,7 @@ "ginger" ], "title": "Ale Flip recipe", - "url": "http://www.drinksmixer.com/drink8420.html" + "url": "https://www.drinksmixer.com/drink8420.html" }, { "directions": "Pour both ingredients into a large beer mug, and serve.", @@ -78069,7 +78069,7 @@ "hard cider" ], "title": "Black Velveteen recipe", - "url": "http://www.drinksmixer.com/drink8421.html" + "url": "https://www.drinksmixer.com/drink8421.html" }, { "directions": "Pour the gin into a beer pilsner. Add the ale, and serve.", @@ -78078,7 +78078,7 @@ "gin" ], "title": "Dog's Nose recipe", - "url": "http://www.drinksmixer.com/drink8422.html" + "url": "https://www.drinksmixer.com/drink8422.html" }, { "directions": "Pour the ginger beer into a beer pilsner or beer mug. Carefully add the ale, or lager, and serve.", @@ -78087,7 +78087,7 @@ "ginger beer" ], "title": "Ginger Beer Shandy recipe", - "url": "http://www.drinksmixer.com/drink8423.html" + "url": "https://www.drinksmixer.com/drink8423.html" }, { "directions": "Pour Ribena blackcurrant syrup or similar into a beer pilsner or beer mug. Add lager (well chilled), and serve.", @@ -78096,7 +78096,7 @@ "lager" ], "title": "Lager and Black recipe", - "url": "http://www.drinksmixer.com/drink8424.html" + "url": "https://www.drinksmixer.com/drink8424.html" }, { "directions": "Pour the ale (or lager) into a beer pilsner or beer mug. Add lemon-lime soda, and serve.", @@ -78105,7 +78105,7 @@ "lemon-lime soda" ], "title": "Lemon Top recipe", - "url": "http://www.drinksmixer.com/drink8425.html" + "url": "https://www.drinksmixer.com/drink8425.html" }, { "directions": "Pour Ribena blackcurrant syrup or similar into a beer pilsner or beer mug. Add stout, and serve.", @@ -78114,7 +78114,7 @@ "stout" ], "title": "Stout and Black recipe", - "url": "http://www.drinksmixer.com/drink8426.html" + "url": "https://www.drinksmixer.com/drink8426.html" }, { "directions": "Dissolve the sugar in the water in the bottom of a beer mug. Carefully pour the stout to give a half-inch head. Float the port on top. Garnish with a dusting of nutmeg and cinnamon, and serve.", @@ -78127,7 +78127,7 @@ "cinnamon" ], "title": "Stout Sangaree recipe", - "url": "http://www.drinksmixer.com/drink8427.html" + "url": "https://www.drinksmixer.com/drink8427.html" }, { "directions": "Pour the rum, bourbon whiskey, galliano and hot chocolate into an irish coffee cup or glass. Spoon the cream carefully so that it floats on top of the drink. Garnish with grated chocolate shavings, and serve.", @@ -78140,7 +78140,7 @@ "chocolate" ], "title": "Bedroom Farce recipe", - "url": "http://www.drinksmixer.com/drink8429.html" + "url": "https://www.drinksmixer.com/drink8429.html" }, { "directions": "Pour the rum, bourbon whiskey, creme de cacao, cherry brandy and coffee into an Irish coffee cup or glass. Pour the cream carefully over the back of a teaspoon so that it floats on top, and serve.", @@ -78153,7 +78153,7 @@ "heavy cream" ], "title": "Candle in the Window recipe", - "url": "http://www.drinksmixer.com/drink8430.html" + "url": "https://www.drinksmixer.com/drink8430.html" }, { "directions": "Pour the rum, creme de cacao and hot chocolate into an Irish coffee cup or glass. Pour the cream carefully over the back of a teaspoon so that it floats on top, and serve.", @@ -78164,7 +78164,7 @@ "heavy cream" ], "title": "Chocolate Corvette recipe", - "url": "http://www.drinksmixer.com/drink8431.html" + "url": "https://www.drinksmixer.com/drink8431.html" }, { "directions": "Pour the rum, bourbon, creme de cacao and hot chocolate into an Irish coffee cup or glass. Spoon the cream carefully on top, and serve.", @@ -78176,7 +78176,7 @@ "heavy cream" ], "title": "Chocolate Vice recipe", - "url": "http://www.drinksmixer.com/drink8432.html" + "url": "https://www.drinksmixer.com/drink8432.html" }, { "directions": "Pour the coffee into an Irish coffee cup or glass. Add the sugar, and stir to dissolve. Add the brandy, stir again. Pour the cream over the back of a teaspoon over the top of the drink so that it floats, and serve.", @@ -78187,7 +78187,7 @@ "heavy cream" ], "title": "Coffee Royale recipe", - "url": "http://www.drinksmixer.com/drink8433.html" + "url": "https://www.drinksmixer.com/drink8433.html" }, { "directions": "Pour the coffee into an Irish coffee glass or cup. Add the Southern Comfort, bourbon whiskey, and creme de cacao, and stir well. Pour the cream carefully over the back of a teaspoon on top of the drink so that it floats, and serve.", @@ -78199,7 +78199,7 @@ "heavy cream" ], "title": "Comforting Coffee recipe", - "url": "http://www.drinksmixer.com/drink8434.html" + "url": "https://www.drinksmixer.com/drink8434.html" }, { "directions": "Pour the anejo rum, bourbon whiskey, creme de cacao, Drambuie and hot coffee into an Irish coffee cup or glass. Pour the cream carefully over the back of a teaspoon on top of the drink so that it floats, and serve.", @@ -78212,7 +78212,7 @@ "heavy cream" ], "title": "DeRosier's 19th Hole recipe", - "url": "http://www.drinksmixer.com/drink8435.html" + "url": "https://www.drinksmixer.com/drink8435.html" }, { "directions": "Pour the bourbon whiskey, Southern Comfort, creme de bananes, brandy, creme de cacao and coffee into an Irish coffee cup or glass. Pour the cream carefully over the back of a teaspoon, so that it floats on top of the drink, and serve.", @@ -78226,7 +78226,7 @@ "heavy cream" ], "title": "Five Before Flying recipe", - "url": "http://www.drinksmixer.com/drink8436.html" + "url": "https://www.drinksmixer.com/drink8436.html" }, { "directions": "Pour the rum, Galliano, creme de cacao and coffee into an Irish coffee cup or glass, and stir well. Pour the cream carefully over the back of a teaspoon so that it floats on top of the drink, and serve.", @@ -78238,7 +78238,7 @@ "heavy cream" ], "title": "Good Golly recipe", - "url": "http://www.drinksmixer.com/drink8437.html" + "url": "https://www.drinksmixer.com/drink8437.html" }, { "directions": "Pour all ingredients into a coffee mug, stir well, and serve.", @@ -78249,7 +78249,7 @@ "milk" ], "title": "Gracious Enjee recipe", - "url": "http://www.drinksmixer.com/drink8438.html" + "url": "https://www.drinksmixer.com/drink8438.html" }, { "directions": "Pour the tequila, Kahlua coffee liqueur and hot chocolate into an Irish coffee cup or glass, and stir well. Float the cream on top of the drink by pouring across the back of a teaspoon, and serve.", @@ -78260,7 +78260,7 @@ "heavy cream" ], "title": "Hot Daring Dylan recipe", - "url": "http://www.drinksmixer.com/drink8439.html" + "url": "https://www.drinksmixer.com/drink8439.html" }, { "directions": "Pour the rum, Tia Maria and coffee into an Irish coffee glass, and stir well. Pour the cream carefully over the back of a teaspoon so that it floats on top of the drink, and serve.", @@ -78271,7 +78271,7 @@ "heavy cream" ], "title": "Hot Mollifier recipe", - "url": "http://www.drinksmixer.com/drink8440.html" + "url": "https://www.drinksmixer.com/drink8440.html" }, { "directions": "Pour the rum, bourbon whiskey, creme de cacao and coffe into an Irish coffee cup or glass. Float the cream on top by pouring it over the back of a teaspoon, and serve.", @@ -78283,7 +78283,7 @@ "heavy cream" ], "title": "Hot Penny Rum recipe", - "url": "http://www.drinksmixer.com/drink8441.html" + "url": "https://www.drinksmixer.com/drink8441.html" }, { "directions": "Pour the tequila, lemon juice, dark creme de cacao and hot coffee into an Irish coffee cup or glass, stir well, and serve.", @@ -78294,7 +78294,7 @@ "coffee" ], "title": "Hot Piper recipe", - "url": "http://www.drinksmixer.com/drink8442.html" + "url": "https://www.drinksmixer.com/drink8442.html" }, { "directions": "Pour the tequila, Galliano and hot chocolate into an Irish coffee cup or glass and stir well. Float the cream on top, and serve.", @@ -78305,7 +78305,7 @@ "heavy cream" ], "title": "Hot Zultry Zoe recipe", - "url": "http://www.drinksmixer.com/drink8443.html" + "url": "https://www.drinksmixer.com/drink8443.html" }, { "directions": "Pour the hot chocolate into an Irish coffee cup or glass. Add the brandy and creme de cacao, and stir. Float the cream on top, and serve.", @@ -78316,7 +78316,7 @@ "heavy cream" ], "title": "Jack Roberts' Treat recipe", - "url": "http://www.drinksmixer.com/drink8444.html" + "url": "https://www.drinksmixer.com/drink8444.html" }, { "directions": "Pour the coffee into an Irish coffee cup or glass. Add the sugar; stir to dissolve. Add the benedictine and stir again. Pour the cream carefully over the back of a teaspoon to float on top, and serve.", @@ -78327,7 +78327,7 @@ "granulated sugar" ], "title": "Monastery Cocktail recipe", - "url": "http://www.drinksmixer.com/drink8445.html" + "url": "https://www.drinksmixer.com/drink8445.html" }, { "directions": "Pour the coffee into an Irish coffee cup or glass. Add the Frangelico hazelnut liqueur and creme de cacao; stir. Float the heavy cream on top, and serve.", @@ -78338,7 +78338,7 @@ "heavy cream" ], "title": "Monk's Rope Coffee recipe", - "url": "http://www.drinksmixer.com/drink8446.html" + "url": "https://www.drinksmixer.com/drink8446.html" }, { "directions": "Pour the rum, cherry brandy, creme de cacao and coffee into an Irish coffee glass, and stir well. Pour the cream carefully over the back of a teaspoon to float on top, and serve.", @@ -78350,7 +78350,7 @@ "heavy cream" ], "title": "Morley's Driver recipe", - "url": "http://www.drinksmixer.com/drink8447.html" + "url": "https://www.drinksmixer.com/drink8447.html" }, { "directions": "Pour all ingredients into a coffee mug, stir, and serve.", @@ -78360,7 +78360,7 @@ "milk" ], "title": "Squire Racine recipe", - "url": "http://www.drinksmixer.com/drink8448.html" + "url": "https://www.drinksmixer.com/drink8448.html" }, { "directions": "Pour the rum, dark creme de cacao, white creme de cacao and coffee into an Irish coffee cup or glass. Pour the cream carefully over the back of a teaspoon so that it floats on top of the drink. Dust with cinnamon, and serve.", @@ -78373,7 +78373,7 @@ "cinnamon" ], "title": "Ritchie Ritchie recipe", - "url": "http://www.drinksmixer.com/drink8449.html" + "url": "https://www.drinksmixer.com/drink8449.html" }, { "directions": "Pour the coffee, bourbon and creme de cacao into an Irish coffee cup or glass. Stir well, then float the cream on top, and serve.", @@ -78384,7 +78384,7 @@ "heavy cream" ], "title": "Southfork Coffee recipe", - "url": "http://www.drinksmixer.com/drink8450.html" + "url": "https://www.drinksmixer.com/drink8450.html" }, { "directions": "Pour the whiskey, sugar, lemon juice and hot water into an Irish coffee cup or glass. Stir well, garnish with a lemon twist and a whole clove, and serve.", @@ -78395,7 +78395,7 @@ "water" ], "title": "Whiskey All In recipe", - "url": "http://www.drinksmixer.com/drink8451.html" + "url": "https://www.drinksmixer.com/drink8451.html" }, { "directions": "Whisk together the eggnog, brandy, rum and creme de cacao together in a large punch bowl. Add a large block of ice. Grate a little nutmeg over the top of each drink when serving. Makes 8 (6-ounce) punch cups.", @@ -78407,7 +78407,7 @@ "nutmeg" ], "title": "Ambassador's Punch recipe", - "url": "http://www.drinksmixer.com/drink8452.html" + "url": "https://www.drinksmixer.com/drink8452.html" }, { "directions": "Combine the rums, wines and juices in a large punch bowl, and stir well. Add one large block of ice, and garnish with orange slices. Makes 30 (6-ounce) punch cups.", @@ -78421,7 +78421,7 @@ "oranges" ], "title": "Champagne Rum Punch recipe", - "url": "http://www.drinksmixer.com/drink8453.html" + "url": "https://www.drinksmixer.com/drink8453.html" }, { "directions": "Place the cider, Drambuie, sherry, lemon juice and club soda into a large punch bowl, and stir well. Add a large block of ice, then add the slices of apple. Sprinkle nutmeg across the top, and serve. Makes 18 (6-ounce) punch cups.", @@ -78435,7 +78435,7 @@ "nutmeg" ], "title": "Cider Punch recipe", - "url": "http://www.drinksmixer.com/drink8454.html" + "url": "https://www.drinksmixer.com/drink8454.html" }, { "directions": "Add the sugar, lemon slices, cloves, cinnamon stick, nutmeg, ginger and water to a large nonreactive saucepan set over medium-high heat. Stir frequently to dissolve the sugar. Let the mixture reach the boil, then turn the heat to medium, and simmer for 10 minutes. Add the brandy and ale and heat, but do not allow to boil. Serve in beer mugs, with a slice of lemon on each drink. Makes 8 (10-ounce) beer mugs.", @@ -78451,7 +78451,7 @@ "brown sugar" ], "title": "Brown Betty Punch recipe", - "url": "http://www.drinksmixer.com/drink8455.html" + "url": "https://www.drinksmixer.com/drink8455.html" }, { "directions": "Stir the lemon juice and sugar togeher in a large punch bowl until the sugar is dissolved. Add the claret, brandy, apricot brandy, bourbon whiskey, Cointreau, club soda and cold tea. Stir well. Add one large block of ice, then add orange slices. Makes 30 (6-ounce) punch cups.", @@ -78468,7 +78468,7 @@ "oranges" ], "title": "Claret Punch recipe", - "url": "http://www.drinksmixer.com/drink8456.html" + "url": "https://www.drinksmixer.com/drink8456.html" }, { "directions": "Stir the lemon juice and sugar together in a large punch bowl until the sugar is dissolved. Add the tequila, champagne and sauternes, and stir well. Add one large block of ice. Garnish with melon balls, cut out from a honeydew melon. Makes 36 (6-ounce) punch cups.", @@ -78481,7 +78481,7 @@ "honeydew melon" ], "title": "Frank Davis Punch recipe", - "url": "http://www.drinksmixer.com/drink8457.html" + "url": "https://www.drinksmixer.com/drink8457.html" }, { "directions": "Peel and slice the lemons; place the peel into a large non-reactive saucepan. Add sugar, cinnamon sticks, cloves and 3 cups of water. Set over a medium-high heat and stir frequently to dissolve the sugar. Allow the water to reach the boil, then turn heat down to minimum. Simmer for 10 minutes. Strain the mixture and return to the pan. Add the whiskey and heat but do not boil. Serve in Irish coffee glasses with a slice of peeled lemon in each. Makes 8 (6-ounce) Irish coffee glasses.", @@ -78493,7 +78493,7 @@ "cinnamon" ], "title": "Hot Whiskey Punch recipe", - "url": "http://www.drinksmixer.com/drink8458.html" + "url": "https://www.drinksmixer.com/drink8458.html" }, { "directions": "Combine the applejack, orange juice, grapefruit juice, grenadine and orange bitters in a large punch bowl, and stir well. Add lemon-lime soda and ginger ale; stir again. Add one large block of ice. Garnish with orange and apple slices. Makes 24 (6-ounce) punch cups.", @@ -78509,7 +78509,7 @@ "apple" ], "title": "Orchard Punch recipe", - "url": "http://www.drinksmixer.com/drink8459.html" + "url": "https://www.drinksmixer.com/drink8459.html" }, { "directions": "Stir the lemon juice and sugar together in a large punch bowl until the sugar is dissolved. Add the champagne, maraschino liqueur, Cointreau, cherry brandy, brandy and cold tea. Stir well. Add one large block of ice. Garnish with orange slices and maraschino cherries.", @@ -78526,7 +78526,7 @@ "maraschino cherries" ], "title": "Sunset Punch recipe", - "url": "http://www.drinksmixer.com/drink8460.html" + "url": "https://www.drinksmixer.com/drink8460.html" }, { "directions": "Stir the Drambuie and sugar together in a large punch bowl until the sugar is dissolved. Add the brandy, maraschino liqueur, Champagne and club soda. Stir well. Add one large block of ice, and garnish with peeled orange slices.", @@ -78540,7 +78540,7 @@ "oranges" ], "title": "Tartan Champagne Punch recipe", - "url": "http://www.drinksmixer.com/drink8461.html" + "url": "https://www.drinksmixer.com/drink8461.html" }, { "directions": "Peel and slice the oranges, and place the peel in a large nonreactive saucepan. Add cloves, mace, nutmeg, allspice, cinnamon stick, sugar and 2 cups of water. Set over a medium-high heat and stir frequently to dissolve the sugar. Allow the reach the boil and turn down to medium heat. Simmer for 10 minutes. Strain the mixture and return to the pan. Add port and heat, but do not boil. Serve in Irish coffee glasses with a slice of peeled orange in each. Makes 6 (6-ounce) Irish coffee glasses.", @@ -78555,7 +78555,7 @@ "cinnamon" ], "title": "Mulled Port recipe", - "url": "http://www.drinksmixer.com/drink8462.html" + "url": "https://www.drinksmixer.com/drink8462.html" }, { "directions": "Pour the port, ginger ale and soda into a large punch bowl, and stir well. Add one large block of ice. Add lemon and orange slices, and serve. Makes 20 (6-ounce) punch cups.", @@ -78567,7 +78567,7 @@ "orange" ], "title": "Texas Bar Punch recipe", - "url": "http://www.drinksmixer.com/drink8463.html" + "url": "https://www.drinksmixer.com/drink8463.html" }, { "directions": "Peel and core a pineapple. Take half and chop finely; thinly slice the other half. Stir the lemon juice and sugar together in a large punch bowl until the sugar is dissolved. Add the chopped pineapple, light rum, anejo rum, dark rum, pineapple juice, orange juice, nutmeg, cinnamon, mace, allspice and club soda. Stir well. Add one large block of ice. Garnish with pineapple slices. Makes 35 (6-ounce) punch cups.", @@ -78587,7 +78587,7 @@ "club soda" ], "title": "Vi's Jamaican Punch recipe", - "url": "http://www.drinksmixer.com/drink8464.html" + "url": "https://www.drinksmixer.com/drink8464.html" }, { "directions": "Stir the lemon juice and sugar together in a large punch bowl until the sugar is dissolved. Add the bourbon, rum, creme de cacao, champagne, red wine, vermouth, club soda and ginger ale. Stir well. Add one large block of ice. Garnish with orange slices and strawberries. Makes 32 (6-ounce) punch cups.", @@ -78606,7 +78606,7 @@ "oranges" ], "title": "Wedding Bell Punch recipe", - "url": "http://www.drinksmixer.com/drink8465.html" + "url": "https://www.drinksmixer.com/drink8465.html" }, { "directions": "Combine all ingredients in a cocktail shaker half-filled with ice cubes, and shake well. Strain into an old-fashioned glass almost filled with ice cubes, and serve.", @@ -78617,7 +78617,7 @@ "grenadine syrup" ], "title": "Crow's Nest #2 recipe", - "url": "http://www.drinksmixer.com/drink8466.html" + "url": "https://www.drinksmixer.com/drink8466.html" }, { "directions": "Peel and slice the peach, chop the banana; add to a blender. Add orange juice, milk, raspberrries and ice cream, and blend well. Pour into a collins glass, and serve.", @@ -78630,7 +78630,7 @@ "vanilla ice cream" ], "title": "Elephant Charger recipe", - "url": "http://www.drinksmixer.com/drink8467.html" + "url": "https://www.drinksmixer.com/drink8467.html" }, { "directions": "Pour the cranberry juice, pineapple juice and lemon juice into a cocktail shaker half-filled with ice cubes. Shake well, and strain into a highball glass. Top with the club soda and stir well. Garnish with a lime wedge and serve.", @@ -78641,7 +78641,7 @@ "club soda" ], "title": "Virgin Flamingo Cocktail recipe", - "url": "http://www.drinksmixer.com/drink8468.html" + "url": "https://www.drinksmixer.com/drink8468.html" }, { "directions": "Combine the grapefruit juice, orange juice, cranberry juice and honey in a cocktail shaker half-filled with ice cubes. Shake well, and strain into a collins glass almost filled with ice cubes. Top with ginger ale, stir well, and serve.", @@ -78653,7 +78653,7 @@ "ginger ale" ], "title": "Flying Fairbrother recipe", - "url": "http://www.drinksmixer.com/drink8469.html" + "url": "https://www.drinksmixer.com/drink8469.html" }, { "directions": "Combine the juices, egg and grenadine in a cocktail shaker half-filled with ice cubes, and shake well. Strain into an old-fashioned glass almost filled with ice cubes, and serve.", @@ -78664,7 +78664,7 @@ "grenadine syrup" ], "title": "Golden Nest recipe", - "url": "http://www.drinksmixer.com/drink8470.html" + "url": "https://www.drinksmixer.com/drink8470.html" }, { "directions": "Pour Rose's lime juice and tonic water into a highball glass almost filled with ice cubes. Stir well, garnish with a lime wedge, and serve.", @@ -78673,7 +78673,7 @@ "tonic water" ], "title": "Lime Tonic recipe", - "url": "http://www.drinksmixer.com/drink8471.html" + "url": "https://www.drinksmixer.com/drink8471.html" }, { "directions": "Place the peach nectar into the bottom of a beer mug. Slowly stir in the ginger beer, and serve.", @@ -78682,7 +78682,7 @@ "ginger beer" ], "title": "Peachy Hanes recipe", - "url": "http://www.drinksmixer.com/drink8472.html" + "url": "https://www.drinksmixer.com/drink8472.html" }, { "directions": "Pour the orange juice and ginger beer into a beer mug with a few ice cubes, and stir well. Garnish with a lemon wedge, and serve.", @@ -78691,7 +78691,7 @@ "ginger beer" ], "title": "Penzance Cocktail recipe", - "url": "http://www.drinksmixer.com/drink8473.html" + "url": "https://www.drinksmixer.com/drink8473.html" }, { "directions": "Pour the lemon juice and club soda into a collins glass almost filled with ice cubes, and stir well. Drop the grenadine into the center of the drink, and serve.", @@ -78701,7 +78701,7 @@ "grenadine syrup" ], "title": "Pomegranate Soda recipe", - "url": "http://www.drinksmixer.com/drink8474.html" + "url": "https://www.drinksmixer.com/drink8474.html" }, { "directions": "Combine the juices, grenadine and egg in a cocktail shaker half-filled with ice cubes, and shake well. Strain into an old-fashioned glass almost filled with ice cubes, and serve.", @@ -78713,7 +78713,7 @@ "egg" ], "title": "Pussyfoot recipe", - "url": "http://www.drinksmixer.com/drink8475.html" + "url": "https://www.drinksmixer.com/drink8475.html" }, { "directions": "Pour the ginger ale, lemon-lime soda and grenadine into a highball glass almost filled with ice cubes, and stir well. Garnish with a maraschino cherry and a slice of orange, and serve.", @@ -78723,7 +78723,7 @@ "grenadine syrup" ], "title": "Roy Rogers recipe", - "url": "http://www.drinksmixer.com/drink8476.html" + "url": "https://www.drinksmixer.com/drink8476.html" }, { "directions": "Slice the banana and add it to a blender with 6 ice cubes. Add the strawberries and milk, and blend well. Pour into a collins glass, and serve.", @@ -78733,7 +78733,7 @@ "milk" ], "title": "Rose and Thistle recipe", - "url": "http://www.drinksmixer.com/drink8477.html" + "url": "https://www.drinksmixer.com/drink8477.html" }, { "directions": "Pour the orange juice, cranberry juice and grenadine into a cocktail shaker half-filled with ice cubes. Add the egg yolk. Shake well, and strain into a highball glass almost filled with ice cubes. Top with club soda, stir well, and serve.", @@ -78745,7 +78745,7 @@ "club soda" ], "title": "Russian Denim recipe", - "url": "http://www.drinksmixer.com/drink8478.html" + "url": "https://www.drinksmixer.com/drink8478.html" }, { "directions": "Pour the lemon juice, egg and sugar into a cocktail shaker half-filled with ice cubes, and shake well. Strain into a highball glass half-filled with ice cubes. Top with apple cider, stir well, and serve.", @@ -78756,7 +78756,7 @@ "apple cider" ], "title": "Safe Scrumpy recipe", - "url": "http://www.drinksmixer.com/drink8479.html" + "url": "https://www.drinksmixer.com/drink8479.html" }, { "directions": "Pour the orange juice, cranberry juice, egg and grenadine into a cocktail shaker half-filled with ice cubes. Shake well. Strain into an old-fashioned glass almost filled with ice cubes, and serve.", @@ -78767,7 +78767,7 @@ "grenadine syrup" ], "title": "Silver Nest recipe", - "url": "http://www.drinksmixer.com/drink8480.html" + "url": "https://www.drinksmixer.com/drink8480.html" }, { "directions": "Place the yogurt, tomato juice, water and salt in a blender; blend thoroughly. Pour into a collins glass almost filled with ice cubes. Add celery salt/seed and stir thoroughly.", @@ -78779,7 +78779,7 @@ "celery salt" ], "title": "Tomato Lassi recipe", - "url": "http://www.drinksmixer.com/drink8481.html" + "url": "https://www.drinksmixer.com/drink8481.html" }, { "directions": "Cut the banana into chunks, and add to a blender. Add the pineapple juice, coconut cream and crushed ice. Blend well at high speed. Pour into a collins glass. Garnish with a maraschino cherry, a pineapple wedge, and serve.", @@ -78790,7 +78790,7 @@ "crushed ice" ], "title": "Virgin Banana Colada recipe", - "url": "http://www.drinksmixer.com/drink8482.html" + "url": "https://www.drinksmixer.com/drink8482.html" }, { "directions": "Combine the beef bouillon, black pepper, Worcestershire and Tabasco sauce in a cocktail shaker half-filled with ice cubes. Shake well, and strain into a highball glass almost filled with ice cubes. Garnish with a lemon wedge, and serve.", @@ -78801,7 +78801,7 @@ "Tabasco\u00ae sauce" ], "title": "Virgin Bullshot recipe", - "url": "http://www.drinksmixer.com/drink8483.html" + "url": "https://www.drinksmixer.com/drink8483.html" }, { "directions": "Combine the tomato juice, clam juice, black pepper, Worcestershire sauce and Tabasco sauce in a cocktail shaker half-filled with ice cubes. Shake well. Strain into a highball glass almost filled with ice cubes, garnish with a lemon wedge, and serve.", @@ -78813,7 +78813,7 @@ "Tabasco\u00ae sauce" ], "title": "Virgin Clamato Cocktail recipe", - "url": "http://www.drinksmixer.com/drink8484.html" + "url": "https://www.drinksmixer.com/drink8484.html" }, { "directions": "Add the pineapple juice, coconut cream and crushed ice to a blender; blend at high speed. Pour into a collins glass. Garnish with a maraschino cherry, a pineapple wedge, and serve.", @@ -78823,7 +78823,7 @@ "crushed ice" ], "title": "Virgin Pina Colada recipe", - "url": "http://www.drinksmixer.com/drink8485.html" + "url": "https://www.drinksmixer.com/drink8485.html" }, { "directions": "Combine the strawberries, pineapple juice, coconut cream and crushed ice in a blender, and blend well at high speed. Pour into a collins glass, garnish with a cherry and pineapple wedge, and serve.", @@ -78834,7 +78834,7 @@ "crushed ice" ], "title": "Virgin Strawberry Colada recipe", - "url": "http://www.drinksmixer.com/drink8486.html" + "url": "https://www.drinksmixer.com/drink8486.html" }, { "directions": "Pour the orange juice, lemon juice and grenadine into a cocktail shaker half-filled with ice cubes. Shake well and strain into a highball glass almost filled with ice cubes. Top with ginger ale, stir well, and serve.", @@ -78845,7 +78845,7 @@ "ginger ale" ], "title": "Wavebender recipe", - "url": "http://www.drinksmixer.com/drink8487.html" + "url": "https://www.drinksmixer.com/drink8487.html" }, { "directions": "Pour the ingredients into a cocktail shaker half-filled with ice cubes, and shake well. Strain into an old-fashioned glass almost filled with ice cubes, and serve.", @@ -78855,7 +78855,7 @@ "lemon juice" ], "title": "Yellowjacket recipe", - "url": "http://www.drinksmixer.com/drink8488.html" + "url": "https://www.drinksmixer.com/drink8488.html" }, { "directions": "Pour the gin, Grand Marnier, lemon juice and grenadine over ice in a cocktail shaker. Shake well, strain into a cocktail glass, and serve.", @@ -78866,7 +78866,7 @@ "grenadine syrup" ], "title": "A1 Cocktail recipe", - "url": "http://www.drinksmixer.com/drink8489.html" + "url": "https://www.drinksmixer.com/drink8489.html" }, { "directions": "Pour the amaretto, triple sec and club soda into a large red wine glass. Add ice, garnish with a lemon wedge, and serve.", @@ -78876,7 +78876,7 @@ "club soda" ], "title": "Amore Ade recipe", - "url": "http://www.drinksmixer.com/drink8490.html" + "url": "https://www.drinksmixer.com/drink8490.html" }, { "directions": "Blend cognac, coffee liqueur, Frangelico hazelnut liqueur and iced coffee with a little cracked ice in a mixing glass. Pour into a chilled white wine glass. Add whipped cream, garnish with a sprinkling of chocolate shavings, and serve.", @@ -78888,7 +78888,7 @@ "whipped cream" ], "title": "Anatole Coffee recipe", - "url": "http://www.drinksmixer.com/drink8491.html" + "url": "https://www.drinksmixer.com/drink8491.html" }, { "directions": "Pour the bourbon whiskey, triple sec, peach brandy, cherry brandy and half-and-half into a cocktail shaker half-filled with ice cubes. Shake well, strain into a chilled old-fashioned glass, and serve.", @@ -78900,7 +78900,7 @@ "half-and-half" ], "title": "Anchors Aweigh recipe", - "url": "http://www.drinksmixer.com/drink8492.html" + "url": "https://www.drinksmixer.com/drink8492.html" }, { "directions": "Make the Ovaltine as per usual. Add peppermint schnapps, stir well, and serve. Tastes like an Andes mint.", @@ -78909,7 +78909,7 @@ "Ovaltine\u00ae cocoa" ], "title": "Andes Ratt recipe", - "url": "http://www.drinksmixer.com/drink8493.html" + "url": "https://www.drinksmixer.com/drink8493.html" }, { "directions": "Pour gin, vermouth, cognac and bitters into a cocktail shaker half-filled with ice cubes. Shake well, and strain into a collins glass filled with ice cubes. Add sugar to taste, garnish with lemon peel, and serve.", @@ -78922,7 +78922,7 @@ "sugar" ], "title": "Anesthetic recipe", - "url": "http://www.drinksmixer.com/drink8494.html" + "url": "https://www.drinksmixer.com/drink8494.html" }, { "directions": "Pour all ingredients into a collins glass filled with ice cubes, and serve.", @@ -78940,7 +78940,7 @@ "grapefruit juice" ], "title": "Angel's Fall recipe", - "url": "http://www.drinksmixer.com/drink8495.html" + "url": "https://www.drinksmixer.com/drink8495.html" }, { "directions": "Pour both ingredients into an old-fashioned glass half-filled with ice cubes. Stir, and serve.", @@ -78949,7 +78949,7 @@ "Bailey's\u00ae Irish cream" ], "title": "Angel's Lips recipe", - "url": "http://www.drinksmixer.com/drink8496.html" + "url": "https://www.drinksmixer.com/drink8496.html" }, { "directions": "Pour the Bacardi, Passoa, sweet and sour mix, and juices into a highball glass almost filled with ice cubes. Stir well, garnish with a slice of lime, and serve.", @@ -78961,7 +78961,7 @@ "grape juice" ], "title": "Anjorska recipe", - "url": "http://www.drinksmixer.com/drink8497.html" + "url": "https://www.drinksmixer.com/drink8497.html" }, { "directions": "Pour the ingredients over cracked ice in a mixing glass. Stir well. Strain into a chilled cocktail glass, and serve.", @@ -78971,7 +78971,7 @@ "lime juice" ], "title": "Annabelle Special recipe", - "url": "http://www.drinksmixer.com/drink8498.html" + "url": "https://www.drinksmixer.com/drink8498.html" }, { "directions": "Peel and slice the banana; add to blender. Add vodka, lime juice and honey (or substitute almond syrup). Add cracked ice, and blend on medium speed for 15 seconds. Pour into a chilled white wine glass, garnish with a slice of lime, and serve.", @@ -78982,7 +78982,7 @@ "banana" ], "title": "Anna's Banana recipe", - "url": "http://www.drinksmixer.com/drink8499.html" + "url": "https://www.drinksmixer.com/drink8499.html" }, { "directions": "Pour the rum, triple sec and pineapple juice into a highball glass 3/4 filled with ice cubes. Stir well, and serve.", @@ -78992,7 +78992,7 @@ "pineapple juice" ], "title": "Anna's Wish recipe", - "url": "http://www.drinksmixer.com/drink8500.html" + "url": "https://www.drinksmixer.com/drink8500.html" }, { "directions": "Pour the Bacardi rum, orange curacao and lime juice into a cocktail shaker half-filled with ice cubes. Shake well, and strain into a cocktail glass. Garnish with a lime wedge, and serve.", @@ -79002,7 +79002,7 @@ "lime juice" ], "title": "Ann Sheridan Cocktail recipe", - "url": "http://www.drinksmixer.com/drink8501.html" + "url": "https://www.drinksmixer.com/drink8501.html" }, { "directions": "Pour the gin, benedictine and grapefruit juice into a mixing glass half-filled with cracked ice. Stir well. Strain into a chilled old-fashioned glass, garnish with a slice of orange, and serve.", @@ -79012,7 +79012,7 @@ "grapefruit juice" ], "title": "Antibes recipe", - "url": "http://www.drinksmixer.com/drink8502.html" + "url": "https://www.drinksmixer.com/drink8502.html" }, { "directions": "Pour dark rum, port, orange curacao and lemon juice into a mixing glass half-filled with ice cubes. Stir well. Strain into a sugar-rimmed cocktail glass, garnish with a lemon twist, and serve.", @@ -79023,7 +79023,7 @@ "lemon juice" ], "title": "Antoine's Lullaby recipe", - "url": "http://www.drinksmixer.com/drink8503.html" + "url": "https://www.drinksmixer.com/drink8503.html" }, { "directions": "Pour gin, sambuca and bitters into a mixing glass half-filled with ice cubes. Stir well. Strain into a chilled cocktail glass, garnish with a twist of orange peel, and serve.", @@ -79033,7 +79033,7 @@ "orange bitters" ], "title": "Aperitivo recipe", - "url": "http://www.drinksmixer.com/drink8504.html" + "url": "https://www.drinksmixer.com/drink8504.html" }, { "directions": "Pour brandy, angostura and pineapple juice into a highball glass 3/4 filled with ice. Stir well. Garnish with a maraschino cherry and an orange slice, and serve.", @@ -79043,7 +79043,7 @@ "pineapple juice" ], "title": "Aphrodite's Love Potion recipe", - "url": "http://www.drinksmixer.com/drink8505.html" + "url": "https://www.drinksmixer.com/drink8505.html" }, { "directions": "Pour the white rum, cream, Grand Marnier, Galliano and grenadine into a cocktail shaker half-filled with ice. Shake well. Strain into a 5 oz champagne saucer or glass. Garnish with a maraschino cherry, and serve.", @@ -79055,7 +79055,7 @@ "grenadine syrup" ], "title": "Apollo 13 recipe", - "url": "http://www.drinksmixer.com/drink8506.html" + "url": "https://www.drinksmixer.com/drink8506.html" }, { "directions": "Pour the Dubonnet and orange juice into a mixing glass half-filled with cracked ice. Strain into a chilled cocktail glass, and serve.", @@ -79064,7 +79064,7 @@ "orange juice" ], "title": "Appetizer recipe", - "url": "http://www.drinksmixer.com/drink8507.html" + "url": "https://www.drinksmixer.com/drink8507.html" }, { "directions": "Pour the brandy, lemon juice, egg white, sugar and apple juice into a cocktail shaker half-filled with ice cubes. Shake well. Strain over a few ice cubes in a collins glass. Add club soda, and serve.", @@ -79077,7 +79077,7 @@ "club soda" ], "title": "Apple Blow recipe", - "url": "http://www.drinksmixer.com/drink8508.html" + "url": "https://www.drinksmixer.com/drink8508.html" }, { "directions": "Pour the apple brandy, grenadine and lemon juice into a cocktail shaker half-filled with ice cubes. Shake and strain into a cocktail glass, and serve.", @@ -79087,7 +79087,7 @@ "lemon juice" ], "title": "Apple Brandy Cocktail recipe", - "url": "http://www.drinksmixer.com/drink8509.html" + "url": "https://www.drinksmixer.com/drink8509.html" }, { "directions": "Shake all ingredients (except dark rum) with cracked ice in a cocktail shaker. Pour into a chilled collins glass. Float the dark rum on top. Garnish with a slice of lime, and serve.", @@ -79100,7 +79100,7 @@ "sugar syrup" ], "title": "Apple Brandy Cooler recipe", - "url": "http://www.drinksmixer.com/drink8510.html" + "url": "https://www.drinksmixer.com/drink8510.html" }, { "directions": "Pour the apple brandy and lime juice into a highball glass almost filled with ice cubes. Stir, and fill with club soda. Garnish with a lime wedge, and serve.", @@ -79110,7 +79110,7 @@ "club soda" ], "title": "Apple Brandy Rickey recipe", - "url": "http://www.drinksmixer.com/drink8511.html" + "url": "https://www.drinksmixer.com/drink8511.html" }, { "directions": "Pour the apple brandy, Cointreau and lemon juice into an old-fashioned (preferably chilled) glass half-filled with ice cubes. Stir well, and serve.", @@ -79120,7 +79120,7 @@ "lemon juice" ], "title": "Apple Cart recipe", - "url": "http://www.drinksmixer.com/drink8512.html" + "url": "https://www.drinksmixer.com/drink8512.html" }, { "directions": "Pour the apple brandy and Dubonnet into a cocktail shaker half-filled with ice cubes. Shake well. Strain into a chilled old-fashioned glass, garnish with a slice of lemon, and serve.", @@ -79129,7 +79129,7 @@ "Dubonnet\u00ae Rouge vermouth" ], "title": "Apple Dubonnet recipe", - "url": "http://www.drinksmixer.com/drink8513.html" + "url": "https://www.drinksmixer.com/drink8513.html" }, { "directions": "Pour the apple brandy, apple juice and lime juice into a highball glass almost filled with ice cubes. Stir well. Top with soda water, garnish with a slice of lime, and serve.", @@ -79140,7 +79140,7 @@ "soda water" ], "title": "Apple Fizz recipe", - "url": "http://www.drinksmixer.com/drink8514.html" + "url": "https://www.drinksmixer.com/drink8514.html" }, { "directions": "Pour the Applejack brandy, grenadine and lemon juice into a cocktail shaker half-filled with ice cubes. Shake well, strain into a cocktail glass, and serve.", @@ -79150,7 +79150,7 @@ "lemon juice" ], "title": "Applejack Cocktail recipe", - "url": "http://www.drinksmixer.com/drink8515.html" + "url": "https://www.drinksmixer.com/drink8515.html" }, { "directions": "Pour the Applejack brandy, lemon juice, sugar and orange bitters into a cocktail shaker half-filled with cracked ice. Shake well, and strain into a chilled collins glass. Top with soda water, to taste, and serve.", @@ -79162,7 +79162,7 @@ "soda water" ], "title": "Applejack Collins recipe", - "url": "http://www.drinksmixer.com/drink8516.html" + "url": "https://www.drinksmixer.com/drink8516.html" }, { "directions": "Combine all ingredients in a blender. Blend well, and pour into a cocktail glass. Add whipped cream, dust with cinnamon, and serve.", @@ -79176,7 +79176,7 @@ "cinnamon" ], "title": "Apple Granny Crisp recipe", - "url": "http://www.drinksmixer.com/drink8517.html" + "url": "https://www.drinksmixer.com/drink8517.html" }, { "directions": "Pour both ingredients into a mixing glass half-filled with ice cubes. Stir well, strain into a cocktail glass, and serve.", @@ -79185,7 +79185,7 @@ "Jack Daniel's\u00ae Tennessee whiskey" ], "title": "Applejack Cocktail #2 recipe", - "url": "http://www.drinksmixer.com/drink8518.html" + "url": "https://www.drinksmixer.com/drink8518.html" }, { "directions": "Pour Applejack brandy, lime juice, grenadine and sugar into a cocktail shaker half-filled with cracked ice. Shake well. Strain into a chilled cocktail glass. Garnish with a slice of lemon and a maraschino cherry, and serve.", @@ -79196,7 +79196,7 @@ "superfine sugar" ], "title": "Applejack Daisy recipe", - "url": "http://www.drinksmixer.com/drink8519.html" + "url": "https://www.drinksmixer.com/drink8519.html" }, { "directions": "Pour the Applejack brandy, vermouth and orange bitters into a cocktail shaker half-filled with ice cubes. Shake well, and strain into a chilled cocktail glass. Garnish with a maraschino cherry, and serve.", @@ -79206,7 +79206,7 @@ "orange bitters" ], "title": "Applejack Manhattan recipe", - "url": "http://www.drinksmixer.com/drink8520.html" + "url": "https://www.drinksmixer.com/drink8520.html" }, { "directions": "Pour the brandy, lemon juice and sugar into a cocktail shaker half-filled with ice cubes. Shake well, and strain into a highball glass. Top with soda water, garnish with a lemon wedge, and serve.", @@ -79217,7 +79217,7 @@ "soda water" ], "title": "Applejack Sour recipe", - "url": "http://www.drinksmixer.com/drink8521.html" + "url": "https://www.drinksmixer.com/drink8521.html" }, { "directions": "Pour the vodka, apple cider, lemon juice and strawberry liqueur into a cocktail shaker half-filled with ice cubes. Shake well, strain into a chilled cocktail glass, and serve.", @@ -79228,7 +79228,7 @@ "strawberry liqueur" ], "title": "Apple Knocker recipe", - "url": "http://www.drinksmixer.com/drink8522.html" + "url": "https://www.drinksmixer.com/drink8522.html" }, { "directions": "Pour both ingredients over ice cubes in an old-fashioned glass. Stir well, dust with cinnamon, and serve.", @@ -79238,7 +79238,7 @@ "cinnamon" ], "title": "Apple Pie Cocktail #2 recipe", - "url": "http://www.drinksmixer.com/drink8523.html" + "url": "https://www.drinksmixer.com/drink8523.html" }, { "directions": "Build apple schnapps and cinnamon schnapps over ice cubes in an old-fashioned glass. Garnish with a slice of apple, dust with cinnamon, and serve.", @@ -79248,7 +79248,7 @@ "cinnamon" ], "title": "Apple Pie Cocktail #3 recipe", - "url": "http://www.drinksmixer.com/drink8524.html" + "url": "https://www.drinksmixer.com/drink8524.html" }, { "directions": "Pour the vanilla vodka, Calvados brandy and dry vermouth into a cocktail shaker half-filled with ice cubes. Shake well, and strain into a chilled cocktail glass. Garnish with a thin slice of apple, and serve.", @@ -79258,7 +79258,7 @@ "dry vermouth" ], "title": "Apple Pie Martini recipe", - "url": "http://www.drinksmixer.com/drink8525.html" + "url": "https://www.drinksmixer.com/drink8525.html" }, { "directions": "Combine the brandy, creme de cacao, ice cream and crushed ice in a blender. Blend until smooth and pour into a parfait glass. Garnish with half an apple ring, and serve.", @@ -79269,7 +79269,7 @@ "crushed ice" ], "title": "Apple River recipe", - "url": "http://www.drinksmixer.com/drink8526.html" + "url": "https://www.drinksmixer.com/drink8526.html" }, { "directions": "Pour all ingredients into a blender, and blend until slushy. Pour into a tall glass; highball, hurricane, or collins, and serve.", @@ -79281,7 +79281,7 @@ "crushed ice" ], "title": "Apple Sauce recipe", - "url": "http://www.drinksmixer.com/drink8527.html" + "url": "https://www.drinksmixer.com/drink8527.html" }, { "directions": "Pour vodka, Applejack brandy and apple schnapps into a highball glass filled with ice cubes. Stir well, add 7-up, and serve.", @@ -79292,7 +79292,7 @@ "7-Up\u00ae soda" ], "title": "Apple Soda recipe", - "url": "http://www.drinksmixer.com/drink8528.html" + "url": "https://www.drinksmixer.com/drink8528.html" }, { "directions": "Pour apricot brandy and lime juice into a highball glass almost filled with ice cubes. Add club soda, stir and serve.", @@ -79302,7 +79302,7 @@ "club soda" ], "title": "Apricot Brandy Rickey recipe", - "url": "http://www.drinksmixer.com/drink8529.html" + "url": "https://www.drinksmixer.com/drink8529.html" }, { "directions": "Pour the cherry vodka, lime vodka and orange juice into a cocktail shaker half-filled with ice cubes. Shake well, and strain into a cocktail glass. Garnish with a maraschino cherry, and serve.", @@ -79312,7 +79312,7 @@ "orange juice" ], "title": "April's Summertime Punch recipe", - "url": "http://www.drinksmixer.com/drink8530.html" + "url": "https://www.drinksmixer.com/drink8530.html" }, { "directions": "Pour the gin, blue curacao and grenadine into a mixing glass half-filled with ice cubes. Stir well. Strain into a chilled cocktail glass, and serve.", @@ -79322,7 +79322,7 @@ "grenadine syrup" ], "title": "April's Violet recipe", - "url": "http://www.drinksmixer.com/drink8531.html" + "url": "https://www.drinksmixer.com/drink8531.html" }, { "directions": "Pour the Scotch whisky, cherry brandy and cranberry juice into a cocktail shaker half-filled with ice cubes. Shake well, strain into an old-fashioned glass, and serve.", @@ -79332,7 +79332,7 @@ "cranberry juice" ], "title": "Aquarius recipe", - "url": "http://www.drinksmixer.com/drink8532.html" + "url": "https://www.drinksmixer.com/drink8532.html" }, { "directions": "Pour the Malibu rum, banana liqueur, half-and-half, orange juice and grenadine into a cocktail shaker half-filled with ice cubes. Shake well. Strain into a highball glass filled with ice cubes, and serve.", @@ -79344,7 +79344,7 @@ "grenadine syrup" ], "title": "Orangutan Cocktail recipe", - "url": "http://www.drinksmixer.com/drink8533.html" + "url": "https://www.drinksmixer.com/drink8533.html" }, { "directions": "Pour the dark rum, passion-fruit syrup, pineapple juice, lime juice and orgeat syrup into a cocktail shaker half-filled with ice cubes. Shake well. Strain into a chilled cocktail glass. Garnish with a pineapple stick, and serve.", @@ -79356,7 +79356,7 @@ "orgeat syrup" ], "title": "Arawak Cup recipe", - "url": "http://www.drinksmixer.com/drink8534.html" + "url": "https://www.drinksmixer.com/drink8534.html" }, { "directions": "Pour the brandy, lemon juice and sugar into a mixing glass half-filled with ice cubes. Stir well. Strain into a cocktail glass, and serve.", @@ -79366,7 +79366,7 @@ "sugar" ], "title": "Arch de Triumph recipe", - "url": "http://www.drinksmixer.com/drink8535.html" + "url": "https://www.drinksmixer.com/drink8535.html" }, { "directions": "Pour the vodka, lime juice and ginger ale into a highball glass filled with ice cubes. Stir, garnish with crushed mint leaves, and serve.", @@ -79376,7 +79376,7 @@ "ginger ale" ], "title": "Arctic Circle recipe", - "url": "http://www.drinksmixer.com/drink8536.html" + "url": "https://www.drinksmixer.com/drink8536.html" }, { "directions": "Pour the Jose Cuervo gold tequila, Bacardi Limon rum and Captain Morgan spiced rum into a highball glass. Stir well. Fill with Coca-cola, stir again, and serve.", @@ -79387,7 +79387,7 @@ "Coca-Cola\u00ae" ], "title": "Arizona Aztec recipe", - "url": "http://www.drinksmixer.com/drink8537.html" + "url": "https://www.drinksmixer.com/drink8537.html" }, { "directions": "Pour blue curacao, blackberry liqueur and grenadine into a highball glass filled with ice cubes. Add sparkling white wine, stir well, and serve.", @@ -79398,7 +79398,7 @@ "sparkling white wine" ], "title": "Arcturian Sunrise recipe", - "url": "http://www.drinksmixer.com/drink8538.html" + "url": "https://www.drinksmixer.com/drink8538.html" }, { "directions": "Pour both ingredients over crushed ice in a cocktail glass, stir, and serve.", @@ -79407,7 +79407,7 @@ "grapefruit soda" ], "title": "Arizona Buttkicker recipe", - "url": "http://www.drinksmixer.com/drink8539.html" + "url": "https://www.drinksmixer.com/drink8539.html" }, { "directions": "Pour Goldschlager, Sprite and grenadine into a cocktail shaker half-filled with ice cubes. Shake well, strain into a highball glass, and serve.", @@ -79417,7 +79417,7 @@ "grenadine syrup" ], "title": "Arkansas Avalanche recipe", - "url": "http://www.drinksmixer.com/drink8540.html" + "url": "https://www.drinksmixer.com/drink8540.html" }, { "directions": "Pour amaretto, peach schnapps and raspberry sour puss into a highball glass filled with ice cubes. Add equal amounts of orange and cranberry juice, top with soda, stir and serve.", @@ -79430,7 +79430,7 @@ "Sprite\u00ae soda" ], "title": "Armageddon recipe", - "url": "http://www.drinksmixer.com/drink8541.html" + "url": "https://www.drinksmixer.com/drink8541.html" }, { "directions": "Pour the sherry and vermouth into a mixing glass half-filled with ice cubes. Stir well. Strain into a cocktail glass, garnish with a lemon twist, and serve.", @@ -79439,7 +79439,7 @@ "sweet vermouth" ], "title": "Armour Cocktail recipe", - "url": "http://www.drinksmixer.com/drink8542.html" + "url": "https://www.drinksmixer.com/drink8542.html" }, { "directions": "Pour ingredients over cracked ice in an old-fashioned glass. Stir and serve.", @@ -79449,7 +79449,7 @@ "pineapple juice" ], "title": "Arnie's Cocktail recipe", - "url": "http://www.drinksmixer.com/drink8543.html" + "url": "https://www.drinksmixer.com/drink8543.html" }, { "directions": "Pour rum, cognac, orange juice, sour mix and creme de noyaux into a blender with one cup of crushed ice. Blend until smooth, pour into a wine goblet, and serve.", @@ -79462,7 +79462,7 @@ "crushed ice" ], "title": "Around The World recipe", - "url": "http://www.drinksmixer.com/drink8544.html" + "url": "https://www.drinksmixer.com/drink8544.html" }, { "directions": "Pour gin, Grand Marnier and lemon juice into a cocktail shaker half-filled with ice cubes. Shake well, and strain into a sour glass. Garnish with a twist of lemon, and serve.", @@ -79472,7 +79472,7 @@ "lemon juice" ], "title": "Arthur Tompkins recipe", - "url": "http://www.drinksmixer.com/drink8545.html" + "url": "https://www.drinksmixer.com/drink8545.html" }, { "directions": "Pour the gin, white curacao, egg white, lemon juice and orgeat syrup into a cocktail shaker half-filled with cracked ice. Shake well, strain into a chilled cocktail glass, and serve.", @@ -79484,7 +79484,7 @@ "orgeat syrup" ], "title": "Aruba Cocktail recipe", - "url": "http://www.drinksmixer.com/drink8546.html" + "url": "https://www.drinksmixer.com/drink8546.html" }, { "directions": "Pour all ingredients over ice in a hurricane glass, and stir well. Garnish with a maraschino cherry and a slice of orange, and serve.", @@ -79499,7 +79499,7 @@ "bitters" ], "title": "Aruba Rum Punch recipe", - "url": "http://www.drinksmixer.com/drink8547.html" + "url": "https://www.drinksmixer.com/drink8547.html" }, { "directions": "Pour vodka and Amontillado sherry over ice cubes in a mixing glass. Stir well, and strain into a chilled cocktail glass. Garnish with an orange twist, and serve.", @@ -79508,7 +79508,7 @@ "Amontillado\u00ae dry sherry" ], "title": "Armada Martini recipe", - "url": "http://www.drinksmixer.com/drink8548.html" + "url": "https://www.drinksmixer.com/drink8548.html" }, { "directions": "Pour rum, 7-Up, lemon juice, orange juice and orange bitters into a cocktail shaker half-filled with ice cubes. Shake well, strain into a highball glass filled with ice cubes, and serve.", @@ -79520,7 +79520,7 @@ "orange bitters" ], "title": "Aruba Smash recipe", - "url": "http://www.drinksmixer.com/drink8549.html" + "url": "https://www.drinksmixer.com/drink8549.html" }, { "directions": "Pour whiskey, tequila and peppermint schnapps into a cocktail shaker half-filled with ice cubes. Shake well. Strain into a cocktail glass, fill with chilled Coca-cola, and serve.", @@ -79531,7 +79531,7 @@ "Coca-Cola\u00ae" ], "title": "Assassin recipe", - "url": "http://www.drinksmixer.com/drink8550.html" + "url": "https://www.drinksmixer.com/drink8550.html" }, { "directions": "Pour vodka, pisang ambon, sprite and lemon juice over two ice cubes in a highball glass. Stir, and serve.", @@ -79542,7 +79542,7 @@ "lemon juice" ], "title": "Asterix Cocktail recipe", - "url": "http://www.drinksmixer.com/drink8551.html" + "url": "https://www.drinksmixer.com/drink8551.html" }, { "directions": "Drain the liquid from a standard tub, carton or bottle of maraschino cherries. Fill back up with Everclear, and let soak for a month. Use for garnishing cocktails.", @@ -79551,7 +79551,7 @@ "maraschino cherries" ], "title": "Atomic Cherries recipe", - "url": "http://www.drinksmixer.com/drink8552.html" + "url": "https://www.drinksmixer.com/drink8552.html" }, { "directions": "Pour the rum and orange juice into an old-fashioned or rocks glass half-filled with ice cubes. Float the bitters on top, garnish with an orange slice, and serve.", @@ -79561,7 +79561,7 @@ "bitters" ], "title": "Aunt Agatha recipe", - "url": "http://www.drinksmixer.com/drink8553.html" + "url": "https://www.drinksmixer.com/drink8553.html" }, { "directions": "Pour all ingredients into a cocktail shaker half-filled with ice cubes. Shake well, strain into a cocktail glass, and serve.", @@ -79571,7 +79571,7 @@ "gin" ], "title": "Aurum Cocktail recipe", - "url": "http://www.drinksmixer.com/drink8554.html" + "url": "https://www.drinksmixer.com/drink8554.html" }, { "directions": "Pour the orange juice into a highball glass filled with ice cubes. Add green creme de menthe, and serve.", @@ -79580,7 +79580,7 @@ "orange juice" ], "title": "Aussie Mozzie recipe", - "url": "http://www.drinksmixer.com/drink8555.html" + "url": "https://www.drinksmixer.com/drink8555.html" }, { "directions": "Pour the apricot brandy into a highball glass. Fill with tonic water, garnish with a twist or spiral of lemon peel, and serve.", @@ -79589,7 +79589,7 @@ "tonic water" ], "title": "Austrian Hussar recipe", - "url": "http://www.drinksmixer.com/drink8556.html" + "url": "https://www.drinksmixer.com/drink8556.html" }, { "directions": "Pour rum, cream of coconut and pineapple juice into a blender with one cup of crushed ice. Blend until smooth, and pour into a collins glass. Garnish with a slice of pineapple and a maraschino cherry, and serve.", @@ -79600,7 +79600,7 @@ "crushed ice" ], "title": "Authentic Pina Colada recipe", - "url": "http://www.drinksmixer.com/drink8557.html" + "url": "https://www.drinksmixer.com/drink8557.html" }, { "directions": "Pour both the Remy Martin cognac and Zima into a cocktail shaker half-filled with ice cubes. Shake gently, strain into a highball glass, and serve.", @@ -79609,7 +79609,7 @@ "Remy Martin\u00ae cognac" ], "title": "Autumn In New York recipe", - "url": "http://www.drinksmixer.com/drink8558.html" + "url": "https://www.drinksmixer.com/drink8558.html" }, { "directions": "Pour Absolut Mandrin, peach schnapps, amaretto, Midori melon liqueur and sour mix into a cocktail shaker half-filled with ice cubes. Shake well, and strain into a highball glass filled with ice cubes. Add orange juice and cranberry juice, both to taste. Stir, and serve.", @@ -79623,7 +79623,7 @@ "cranberry juice" ], "title": "Awesome Chandler recipe", - "url": "http://www.drinksmixer.com/drink8559.html" + "url": "https://www.drinksmixer.com/drink8559.html" }, { "directions": "Pour Captain Morgan spiced rum, butterscotch schnapps and pineapple juice into a cocktail shaker half-filled with ice cubes. Shake well, and strain into a highball glass 3/4 filled with ice. Top with grenadine, and garnish with a maraschino cherry and a slice of pineapple.", @@ -79634,7 +79634,7 @@ "grenadine syrup" ], "title": "Bayou Self recipe", - "url": "http://www.drinksmixer.com/drink8560.html" + "url": "https://www.drinksmixer.com/drink8560.html" }, { "directions": "Pour creme de bananes, triple sec and grenadine over ice in an old-fashioned glass or tumbler, and serve.", @@ -79644,7 +79644,7 @@ "grenadine syrup" ], "title": "Bazooka Bomber recipe", - "url": "http://www.drinksmixer.com/drink8561.html" + "url": "https://www.drinksmixer.com/drink8561.html" }, { "directions": "Pour all ingredients into a cocktail shaker half-filled with crushed ice. Shake well, strain into a cocktail glass, and serve.", @@ -79654,7 +79654,7 @@ "pina colada mix" ], "title": "BBC Cocktail recipe", - "url": "http://www.drinksmixer.com/drink8562.html" + "url": "https://www.drinksmixer.com/drink8562.html" }, { "directions": "Pour all ingredients into a cocktail glass, stir, and serve.", @@ -79664,7 +79664,7 @@ "milk" ], "title": "Butter Chocolate Bliss recipe", - "url": "http://www.drinksmixer.com/drink8563.html" + "url": "https://www.drinksmixer.com/drink8563.html" }, { "directions": "Pour all ingredients into a blender. Blend until smooth, and pour into a parfait glass. Garnish with a pineapple slice. Add a paper umbrella, and serve.", @@ -79678,7 +79678,7 @@ "cream" ], "title": "Beach Bum's Cooler recipe", - "url": "http://www.drinksmixer.com/drink8564.html" + "url": "https://www.drinksmixer.com/drink8564.html" }, { "directions": "Pour all ingredients into a blender with crushed ice. Blend well. Pour into a highball glass, dust with cinnamon, and serve. ", @@ -79693,7 +79693,7 @@ "cinnamon" ], "title": "Beachcomber #2 recipe", - "url": "http://www.drinksmixer.com/drink8565.html" + "url": "https://www.drinksmixer.com/drink8565.html" }, { "directions": "Pour white rum, triple sec, grenadine and sour mix into a cocktail shaker half-filled with ice cubes. Shake well. Strain into a sugar-rimmed cocktail glass, garnish with a slice of lime, and serve.", @@ -79704,7 +79704,7 @@ "sweet and sour mix" ], "title": "Beachcomber #3 recipe", - "url": "http://www.drinksmixer.com/drink8566.html" + "url": "https://www.drinksmixer.com/drink8566.html" }, { "directions": "Pour all ingredients into a cocktail shaker half-filled with ice cubes. Shake well, strain into a cocktail glass over crushed ice, and serve.", @@ -79714,7 +79714,7 @@ "sweet vermouth" ], "title": "Beachcomber's Gold recipe", - "url": "http://www.drinksmixer.com/drink8567.html" + "url": "https://www.drinksmixer.com/drink8567.html" }, { "directions": "Pour spiced rum, pineapple juice and cranberry juice into a cocktail shaker half-filled with ice cubes. Shake well. Strain into a collins glass filled with ice cubes, garnish with a pineapple wedge, and serve.", @@ -79724,7 +79724,7 @@ "cranberry juice" ], "title": "Beach Cruiser recipe", - "url": "http://www.drinksmixer.com/drink8568.html" + "url": "https://www.drinksmixer.com/drink8568.html" }, { "directions": "Combine all ingredients in a cocktail shaker half-filled with ice cubes. Shake well, strain into a highball glass filled with ice cubes, and serve.", @@ -79735,7 +79735,7 @@ "papaya nectar" ], "title": "Beach Cooler recipe", - "url": "http://www.drinksmixer.com/drink8569.html" + "url": "https://www.drinksmixer.com/drink8569.html" }, { "directions": "Pour whiskey into a highball glass filled with ice cubes. Add 7-up, and serve.", @@ -79744,7 +79744,7 @@ "7-Up\u00ae soda" ], "title": "Beam and 7 recipe", - "url": "http://www.drinksmixer.com/drink8570.html" + "url": "https://www.drinksmixer.com/drink8570.html" }, { "directions": "Pour both ingredients over 6 ice cubes in a highball glass. Stir, and serve.", @@ -79753,7 +79753,7 @@ "Squirt\u00ae citrus soda" ], "title": "Beam 'n Squirt recipe", - "url": "http://www.drinksmixer.com/drink8571.html" + "url": "https://www.drinksmixer.com/drink8571.html" }, { "directions": "Pour all ingredients over crushed ice in a cocktail glass. Stir, and serve.", @@ -79763,7 +79763,7 @@ "cranberry juice" ], "title": "Bearded Clam recipe", - "url": "http://www.drinksmixer.com/drink8572.html" + "url": "https://www.drinksmixer.com/drink8572.html" }, { "directions": "Pour white rum, Southern Comfort, Grand Marnier, lemon juice and orange bitters into a cocktail shaker half-filled with ice cubes. Shake well. Strain into a cocktail glass, and serve.", @@ -79775,7 +79775,7 @@ "orange bitters" ], "title": "Beauty On The Beach recipe", - "url": "http://www.drinksmixer.com/drink8573.html" + "url": "https://www.drinksmixer.com/drink8573.html" }, { "directions": "Pour the beer into a frozen glass mug. Add Bacardi, stir, and serve.", @@ -79784,7 +79784,7 @@ "Corona\u00ae lager" ], "title": "Beer 'n Limon recipe", - "url": "http://www.drinksmixer.com/drink8574.html" + "url": "https://www.drinksmixer.com/drink8574.html" }, { "directions": "Pour the vodka, Tia Maria and chocolate milk into a highball glass filled with ice cubes. Stir well, and serve.", @@ -79794,7 +79794,7 @@ "chocolate milk" ], "title": "Beige Russian recipe", - "url": "http://www.drinksmixer.com/drink8575.html" + "url": "https://www.drinksmixer.com/drink8575.html" }, { "directions": "Pour Kahlua coffee liqueur into a shot glass. Top with Bailey's irish cream and Jameson whiskey. Drop the shot glass into a half-pint of Guinness, and consume immediately.", @@ -79805,7 +79805,7 @@ "Guinness\u00ae stout" ], "title": "Belfast Carbomb recipe", - "url": "http://www.drinksmixer.com/drink8576.html" + "url": "https://www.drinksmixer.com/drink8576.html" }, { "directions": "Pour the Scotch whisky, orange juice, lemon juice, honey and angostura bitters into a cocktail shaker. Shake well. Pour into an old-fashioned glass, garnish with ginger, and serve.", @@ -79818,7 +79818,7 @@ "ginger" ], "title": "Bellamy Scotch Sour recipe", - "url": "http://www.drinksmixer.com/drink8577.html" + "url": "https://www.drinksmixer.com/drink8577.html" }, { "directions": "Puree ripe peaches by forcing them through a sieve and spoon into a large, chilled wine goblet. Sweeten to taste with maraschino liqueur. Add vodka, fill with chilled champagne, and serve.", @@ -79829,7 +79829,7 @@ "Brut\u00ae Champagne" ], "title": "Bellinski recipe", - "url": "http://www.drinksmixer.com/drink8578.html" + "url": "https://www.drinksmixer.com/drink8578.html" }, { "directions": "Pour all ingredients into a cocktail shaker half-filled with ice cubes. Shake well, and strain into a cocktail glass. Garnish with a lime wedge and a slice of orange, and serve.", @@ -79841,7 +79841,7 @@ "grenadine syrup" ], "title": "Belmont Stakes recipe", - "url": "http://www.drinksmixer.com/drink8579.html" + "url": "https://www.drinksmixer.com/drink8579.html" }, { "directions": "Pour whisky, amaretto and sweet and sour mix into a cocktail shaker half-filled with ice cubes. Shake well, and strain into a small old-fashioned or rocks glass. Top with club soda, to taste. Slam on a hard surface, and shoot.", @@ -79852,7 +79852,7 @@ "club soda" ], "title": "Bend Me Over Slammer recipe", - "url": "http://www.drinksmixer.com/drink8580.html" + "url": "https://www.drinksmixer.com/drink8580.html" }, { "directions": "Pour the whiskey and lemon juice into a cocktail shaker half-filled with ice cubes. Shake well, and strain into a collins glass. Fill with chilled ginger ale, and serve.", @@ -79862,7 +79862,7 @@ "ginger ale" ], "title": "Benka on the Rocks recipe", - "url": "http://www.drinksmixer.com/drink8581.html" + "url": "https://www.drinksmixer.com/drink8581.html" }, { "directions": "Pour the gin, apricot brandy, triple sec, grenadine, sugar and juices into a cocktail shaker half-filled with ice cubes. Shake well, strain into a highball glass filled with ice cubes, and serve.", @@ -79876,7 +79876,7 @@ "lemon juice" ], "title": "Bermuda Bouquet recipe", - "url": "http://www.drinksmixer.com/drink8582.html" + "url": "https://www.drinksmixer.com/drink8582.html" }, { "directions": "Pour the gin, peach brandy, grenadine and orange juice into a cocktail shaker half-filled with ice cubes. Shake well, strain into a delmonico glass (whiskey sour glass), and serve.", @@ -79887,7 +79887,7 @@ "orange juice" ], "title": "Bermuda Cocktail recipe", - "url": "http://www.drinksmixer.com/drink8583.html" + "url": "https://www.drinksmixer.com/drink8583.html" }, { "directions": "Pour the vodka and framboise into a cocktail shaker half-filled with ice cubes. Shake well, and strain into a chilled cocktail glass. Garnish with raspberries, and serve.", @@ -79896,7 +79896,7 @@ "framboise raspberry liqueur" ], "title": "Berrytini recipe", - "url": "http://www.drinksmixer.com/drink8584.html" + "url": "https://www.drinksmixer.com/drink8584.html" }, { "directions": "Combine the tequila, honey, orange bitters, egg white and lime juice in a cocktail shaker half-filled with ice cubes. Shake vigorously, and strain into a collins glass filled with ice cubes. Fill with soda water, garnish with a slice of lime, and serve.", @@ -79909,7 +79909,7 @@ "soda water" ], "title": "Berta's Special recipe", - "url": "http://www.drinksmixer.com/drink8585.html" + "url": "https://www.drinksmixer.com/drink8585.html" }, { "directions": "Pour all ingredients into a mixing glass half-filled with ice cubes. Stir well. Strain into an old-fashioned or rocks glass half-filled with ice cubes, and serve.", @@ -79920,7 +79920,7 @@ "sweet and sour mix" ], "title": "Bessemer recipe", - "url": "http://www.drinksmixer.com/drink8586.html" + "url": "https://www.drinksmixer.com/drink8586.html" }, { "directions": "Pour the Frangelico hazelnut liqueur, Haagen Dazs cream liqueur, Grand Marnier and Kahlua coffee liqueur into a cocktail shaker half-filled with ice cubes. Shake well, and strain into a highball glass filled with ice cubes. Float the cream on top, and serve.", @@ -79932,7 +79932,7 @@ "cream" ], "title": "Better Than Sex recipe", - "url": "http://www.drinksmixer.com/drink8587.html" + "url": "https://www.drinksmixer.com/drink8587.html" }, { "directions": "Pour the tequila, Southern Comfort and peach schnapps into a tall glass. Add Hoopers Hooch and Red Bull. Top with cranberry juice, to taste, and serve.", @@ -79945,7 +79945,7 @@ "cranberry juice" ], "title": "Benelyn recipe", - "url": "http://www.drinksmixer.com/drink8588.html" + "url": "https://www.drinksmixer.com/drink8588.html" }, { "directions": "Pour all ingredients into a blender with the crushed ice. Blend until smooth and creamy. Pour into a single large glass, two medium-sized glasses or 4/5 cocktail glasses. Garnish with strawberries, blueberries or raspberries.", @@ -79958,7 +79958,7 @@ "crushed ice" ], "title": "Berries 'n Cream recipe", - "url": "http://www.drinksmixer.com/drink8589.html" + "url": "https://www.drinksmixer.com/drink8589.html" }, { "directions": "Pour the Bacardi dark rum, brandy, triple sec and Rose's lime juice into a highball glass almost filled with ice cubes. Garnish with two maraschino cherries, and serve.", @@ -79969,7 +79969,7 @@ "Rose's\u00ae lime juice" ], "title": "Between The Cheeks recipe", - "url": "http://www.drinksmixer.com/drink8590.html" + "url": "https://www.drinksmixer.com/drink8590.html" }, { "directions": "Pour banana schnapps into a highball glass filled with ice cubes. Fill the rest of the way with pineapple and orange juice, and serve.", @@ -79979,7 +79979,7 @@ "orange juice" ], "title": "Big Bird recipe", - "url": "http://www.drinksmixer.com/drink8591.html" + "url": "https://www.drinksmixer.com/drink8591.html" }, { "directions": "Pour the rum, coconut cream and juices into a cocktail shaker with one cup of ice (8 oz). Shake well, Strain into a pilsner glass. Garnish with a pineapple wedge and a maraschino cherry, and serve.", @@ -79991,7 +79991,7 @@ "pineapple juice" ], "title": "Big Chill #1 recipe", - "url": "http://www.drinksmixer.com/drink8592.html" + "url": "https://www.drinksmixer.com/drink8592.html" }, { "directions": "Pour the dark rum, Kahlua, coffee, cream and sugar into a cocktail shaker half-filled with ice cubes. Shake well, and strain into a highball glass 2/3 filled with ice cubes. Top with vanilla ice cream, and serve.", @@ -80004,7 +80004,7 @@ "vanilla ice cream" ], "title": "Big Chill #2 recipe", - "url": "http://www.drinksmixer.com/drink8593.html" + "url": "https://www.drinksmixer.com/drink8593.html" }, { "directions": "Pour all ingredients into a highball glass filled with ice cubes. Stir well, garnish with a maraschino cherry, and serve.", @@ -80014,7 +80014,7 @@ "Coca-Cola\u00ae" ], "title": "Big Easy recipe", - "url": "http://www.drinksmixer.com/drink8594.html" + "url": "https://www.drinksmixer.com/drink8594.html" }, { "directions": "Pour the irish cream into an Irish coffee cup or glass filled 3/4 with hot chocolate. Add creme de cacao. Add whipped cream and garnish with shaved chocolate on top.", @@ -80025,7 +80025,7 @@ "whipped cream" ], "title": "Big Hug recipe", - "url": "http://www.drinksmixer.com/drink8595.html" + "url": "https://www.drinksmixer.com/drink8595.html" }, { "directions": "Pour the vodka, Jack Daniel's Country Cocktails (Downhome Punch flavor), 7-Up, and sweetened lime juice into a highball glass half-filled with ice cubes. Stir well. Pour grenadine around the side of the glass for effect, and serve.", @@ -80037,7 +80037,7 @@ "grenadine syrup" ], "title": "Big Johnson recipe", - "url": "http://www.drinksmixer.com/drink8596.html" + "url": "https://www.drinksmixer.com/drink8596.html" }, { "directions": "Pour the vodka and berry punch into a highball glass half-filled with ice cubes. Stir well, and serve.", @@ -80046,7 +80046,7 @@ "berry punch" ], "title": "Big Squeeze recipe", - "url": "http://www.drinksmixer.com/drink8597.html" + "url": "https://www.drinksmixer.com/drink8597.html" }, { "directions": "Pour the Pusser's rum, brandy, lime juice, sugar and Cointreau into a cocktail shaker half-filled with ice cubes. Shake well, and strain into an old-fashioned glass filled with ice cubes. Fill with club soda, and serve.", @@ -80059,7 +80059,7 @@ "club soda" ], "title": "Big Dipper recipe", - "url": "http://www.drinksmixer.com/drink8598.html" + "url": "https://www.drinksmixer.com/drink8598.html" }, { "directions": "Pour the Kahlua and vodka into a highball glass almost filled with ice cubes. Stir well. Add chilled milk almost to the brim of the glass. Top with a splash of Pepsi cola. Stir, and serve.", @@ -80070,7 +80070,7 @@ "Pepsi\u00ae cola" ], "title": "Big Dog recipe", - "url": "http://www.drinksmixer.com/drink8599.html" + "url": "https://www.drinksmixer.com/drink8599.html" }, { "directions": "Pour the brandy, orange curacao and creme de cacao into a cocktail shaker half-filled with ice cubes. Shake well, strain into a cocktail glass, and serve.", @@ -80081,7 +80081,7 @@ "egg" ], "title": "Billy Hamilton recipe", - "url": "http://www.drinksmixer.com/drink8600.html" + "url": "https://www.drinksmixer.com/drink8600.html" }, { "directions": "Pour the gin, lemon juice, grenadine, superfine sugar and egg white into a cocktail shaker half-filled with cracked ice. Shake well, and strain into a highball glass filled with ice cubes. Fill with soda/sparkling water. Stir well, and serve.", @@ -80094,7 +80094,7 @@ "soda water" ], "title": "Bird of Paradise Cooler recipe", - "url": "http://www.drinksmixer.com/drink8601.html" + "url": "https://www.drinksmixer.com/drink8601.html" }, { "directions": "Pour the blue curacao, banana liqueur, irish cream and cream into a cocktail shaker half-filled with ice cubes. Shake well, strain into a cocktail glass, and serve.", @@ -80105,7 +80105,7 @@ "cream" ], "title": "Birky's Bubblegum recipe", - "url": "http://www.drinksmixer.com/drink8602.html" + "url": "https://www.drinksmixer.com/drink8602.html" }, { "directions": "Pour both ingredients into an old-fashioned or rocks glass, swill and serve.", @@ -80114,7 +80114,7 @@ "gin" ], "title": "Birth Control recipe", - "url": "http://www.drinksmixer.com/drink8603.html" + "url": "https://www.drinksmixer.com/drink8603.html" }, { "directions": "Pour the gin, light rum, forbidden fruit liqueur and lime juice into a cocktail shaker half-filled with ice cubes. Shake well, and strain into a chilled cocktail glass. Garnish with a slice of lime, and serve.", @@ -80125,7 +80125,7 @@ "lime juice" ], "title": "Biscayne Cocktail recipe", - "url": "http://www.drinksmixer.com/drink8604.html" + "url": "https://www.drinksmixer.com/drink8604.html" }, { "directions": "Pour both ingredients over ice cubes in a collins glass, and serve.", @@ -80134,7 +80134,7 @@ "tonic water" ], "title": "Bison Tonic recipe", - "url": "http://www.drinksmixer.com/drink8605.html" + "url": "https://www.drinksmixer.com/drink8605.html" }, { "directions": "Pour both ingredients over ice cubes in a highball glass, and serve.", @@ -80143,7 +80143,7 @@ "Pepsi\u00ae cola" ], "title": "Bitches Ain't Shit recipe", - "url": "http://www.drinksmixer.com/drink8606.html" + "url": "https://www.drinksmixer.com/drink8606.html" }, { "directions": "Pour the rum, root beer and soda into a cocktail shaker half-filled with ice cubes. Shake well, and strain into a cocktail glass. Garnish with orange peel, and serve.", @@ -80153,7 +80153,7 @@ "orange soda" ], "title": "Bite Me recipe", - "url": "http://www.drinksmixer.com/drink8607.html" + "url": "https://www.drinksmixer.com/drink8607.html" }, { "directions": "Pour vodka, vermouth and lemon juice into a cocktail shaker half-filled with ice cubes. Shake well, strain into a cocktail glass, and serve.", @@ -80164,7 +80164,7 @@ "lemon juice" ], "title": "Bitter Bison recipe", - "url": "http://www.drinksmixer.com/drink8608.html" + "url": "https://www.drinksmixer.com/drink8608.html" }, { "directions": "Pour Martini & Rossi Dry Vermouth into a highball glass filled with ice. Add sloe gin and Pisang Ambon. Stir well. Fill with Schweppes bitter lemon, and serve.", @@ -80175,7 +80175,7 @@ "Pisang Ambon\u00ae liqueur" ], "title": "Bitter Christina recipe", - "url": "http://www.drinksmixer.com/drink8609.html" + "url": "https://www.drinksmixer.com/drink8609.html" }, { "directions": "Pour the vodka and grapefruit juice into an old-fashioned or rocks glass almost filled with ice cubes. Stir well, add Campari, and serve.", @@ -80185,7 +80185,7 @@ "grapefruit juice" ], "title": "Bitter Evan recipe", - "url": "http://www.drinksmixer.com/drink8610.html" + "url": "https://www.drinksmixer.com/drink8610.html" }, { "directions": "Place all the fruits in a blender and puree, add blue curacao and Cointreau then pulse until combined. Add water and ice and pulse until combined. Serve in tall glass with rim dipped in sugar and lemon juice and a slice of orange on side.", @@ -80198,7 +80198,7 @@ "tamarillo" ], "title": "Bitter Hitter recipe", - "url": "http://www.drinksmixer.com/drink8611.html" + "url": "https://www.drinksmixer.com/drink8611.html" }, { "directions": "Pour the Stoli vanilla vodka and creme de cacao into a cocktail shaker half-filled with cracked ice. Shake well, and strain into a chilled cocktail glass. Garnish with black and white licorice candy, and serve.", @@ -80207,7 +80207,7 @@ "creme de cacao" ], "title": "Black and White Martini recipe", - "url": "http://www.drinksmixer.com/drink8612.html" + "url": "https://www.drinksmixer.com/drink8612.html" }, { "directions": "Pour the rum, blackberry liqueur, sugar and lemon juice into a cocktail shaker half-filled with ice cubes. Shake well, and strain into a highball glass filled with ice cubes. Garnish with a lemon wedge, and serve.", @@ -80218,7 +80218,7 @@ "lemon juice" ], "title": "Blackberry Punch recipe", - "url": "http://www.drinksmixer.com/drink8613.html" + "url": "https://www.drinksmixer.com/drink8613.html" }, { "directions": "Combine the vanilla ice cream and blackberry brandy in a blender. Blend until smooth, pour into a hurricane glass, and serve.", @@ -80227,7 +80227,7 @@ "vanilla ice cream" ], "title": "Blackberry Smoothie recipe", - "url": "http://www.drinksmixer.com/drink8614.html" + "url": "https://www.drinksmixer.com/drink8614.html" }, { "directions": "Pour tequila, creme de cassis and lemon juice into a cocktail shaker half-filled with ice cubes. Shake well. Pour contents into a highball glass, and serve.", @@ -80237,7 +80237,7 @@ "lemon juice" ], "title": "Blackberry Tequila recipe", - "url": "http://www.drinksmixer.com/drink8615.html" + "url": "https://www.drinksmixer.com/drink8615.html" }, { "directions": "Pour both ingredients into a collins glass filled with ice cubes. Stir well, and serve.", @@ -80246,7 +80246,7 @@ "cola" ], "title": "Black Bison recipe", - "url": "http://www.drinksmixer.com/drink8616.html" + "url": "https://www.drinksmixer.com/drink8616.html" }, { "directions": "Pour the blue curacao, jagermeister and Squirt into a cocktail shaker half-filled with ice cubes. Shake well. Strain into a cocktail glass, and serve.", @@ -80256,7 +80256,7 @@ "Squirt\u00ae citrus soda" ], "title": "Black Blood recipe", - "url": "http://www.drinksmixer.com/drink8617.html" + "url": "https://www.drinksmixer.com/drink8617.html" }, { "directions": "Pour the brandy, Cointreau, blackberry brandy, gin, lemon juice and orange juice into a cocktail shaker half-filled with ice cubes. Shake well, strain into a cocktail glass, and serve.", @@ -80269,7 +80269,7 @@ "orange juice" ], "title": "Black Bottom recipe", - "url": "http://www.drinksmixer.com/drink8618.html" + "url": "https://www.drinksmixer.com/drink8618.html" }, { "directions": "Pour both ingredients into a highball glass filled with ice cubes. Add a straw, and serve.", @@ -80278,7 +80278,7 @@ "Red Bull\u00ae energy drink" ], "title": "Black Bull recipe", - "url": "http://www.drinksmixer.com/drink8619.html" + "url": "https://www.drinksmixer.com/drink8619.html" }, { "directions": "Pour both ingredients into an old-fashioned glass, and serve.", @@ -80287,7 +80287,7 @@ "amaretto almond liqueur" ], "title": "Black Cat recipe", - "url": "http://www.drinksmixer.com/drink8620.html" + "url": "https://www.drinksmixer.com/drink8620.html" }, { "directions": "Pour the Kirschwasser, vodka and grenadine into a highball glass 3/4 filled with ice. Stir well. Add cola to taste, and serve.", @@ -80298,7 +80298,7 @@ "cola" ], "title": "Black Cat #2 recipe", - "url": "http://www.drinksmixer.com/drink8621.html" + "url": "https://www.drinksmixer.com/drink8621.html" }, { "directions": "Pour both ingredients into a cocktail shaker half-filled with ice cubes. Shake well for 20 seconds, strain into an old-fashioned or rocks glass, and serve.", @@ -80307,7 +80307,7 @@ "Rumple Minze\u00ae peppermint liqueur" ], "title": "Black Death Wish recipe", - "url": "http://www.drinksmixer.com/drink8622.html" + "url": "https://www.drinksmixer.com/drink8622.html" }, { "directions": "Pour the light rum and vermouth into a mixing glass half-filled with cracked ice. Stir well. Strain into a chilled cocktail glass. Garnish with a black pitted olive, and serve.", @@ -80316,7 +80316,7 @@ "dry vermouth" ], "title": "Black Dog recipe", - "url": "http://www.drinksmixer.com/drink8623.html" + "url": "https://www.drinksmixer.com/drink8623.html" }, { "directions": "Pour both ingredients into a highball glass filled with ice cubes. Stir, and serve.", @@ -80325,7 +80325,7 @@ "Pepsi\u00ae cola" ], "title": "Black Licorice recipe", - "url": "http://www.drinksmixer.com/drink8624.html" + "url": "https://www.drinksmixer.com/drink8624.html" }, { "directions": "Dissolve the molasses in a mug with some boiling water. Add the cinnamon, a lemon twist and the remaining water. Float rum on top and ignite. Let the flame burn for a few seconds then stir to extinguish it and sprinkle some nutmeg on top to garnish.", @@ -80336,7 +80336,7 @@ "cinnamon" ], "title": "Black Stripe recipe", - "url": "http://www.drinksmixer.com/drink8625.html" + "url": "https://www.drinksmixer.com/drink8625.html" }, { "directions": "Pour the Scotch whisky and creme de menthe, into a mixing glass half-filled with ice cubes. Add dark tea, to taste. Stir well. Strain into a cocktail glass, garnish with a mint sprig, and serve.", @@ -80346,7 +80346,7 @@ "tea" ], "title": "Black Stuff recipe", - "url": "http://www.drinksmixer.com/drink8626.html" + "url": "https://www.drinksmixer.com/drink8626.html" }, { "directions": "Pour creme de menthe, Scotch whisky, Kahlua coffee liqueur and Bailey's irish cream into a cocktail shaker half-filled with ice cubes. Add tea, prepared with a small amount of milk and sugar as one would normally have in their tea. Shake well. Strain into a cocktail glass. Garnish with a slice of lime, and serve.", @@ -80358,7 +80358,7 @@ "tea" ], "title": "Black Stuff #2 recipe", - "url": "http://www.drinksmixer.com/drink8627.html" + "url": "https://www.drinksmixer.com/drink8627.html" }, { "directions": "Prepare a double-shot glass filled with Tia Maria coffee liqueur. Prepare a pint of Guinness. Drop the shot glass into the beer, and chug.", @@ -80367,7 +80367,7 @@ "Guinness\u00ae stout" ], "title": "Black Suede recipe", - "url": "http://www.drinksmixer.com/drink8628.html" + "url": "https://www.drinksmixer.com/drink8628.html" }, { "directions": "Pour the Kahlua and Goldschlager into a cocktail shaker half-filled with ice cubes. Shake well, and strain over a few ice cubes in an old-fashioned glass. Add a maraschino cherry, and serve.", @@ -80376,7 +80376,7 @@ "Goldschlager\u00ae cinnamon schnapps" ], "title": "Black Jew recipe", - "url": "http://www.drinksmixer.com/drink8629.html" + "url": "https://www.drinksmixer.com/drink8629.html" }, { "directions": "Pour the Irish whiskey, vermouth, pernod and bitters into an old-fashioned glass half-filled with ice cubes. Stir well, and serve.", @@ -80387,7 +80387,7 @@ "Angostura\u00ae bitters" ], "title": "Irish Blackthorn recipe", - "url": "http://www.drinksmixer.com/drink8630.html" + "url": "https://www.drinksmixer.com/drink8630.html" }, { "directions": "Pour the vodka, Tia Maria coffee liqueur, Southern Comfort and Coca-cola into a cocktail shaker half-filled with ice cubes. Shake well. Strain into a highball glass filled with ice cubes, and serve.", @@ -80398,7 +80398,7 @@ "Coca-Cola\u00ae" ], "title": "Black Ukrainian recipe", - "url": "http://www.drinksmixer.com/drink8631.html" + "url": "https://www.drinksmixer.com/drink8631.html" }, { "directions": "Pour both ingredients into an old-fashioned glass, and serve.", @@ -80407,7 +80407,7 @@ "cherry brandy" ], "title": "Bleeding Heart recipe", - "url": "http://www.drinksmixer.com/drink8632.html" + "url": "https://www.drinksmixer.com/drink8632.html" }, { "directions": "Pour all ingredients into a highball glass almost filled with ice cubes. Stir well, and serve.", @@ -80425,7 +80425,7 @@ "grenadine syrup" ], "title": "Bleeding Weasel recipe", - "url": "http://www.drinksmixer.com/drink8633.html" + "url": "https://www.drinksmixer.com/drink8633.html" }, { "directions": "Skin a peach quarter and add to a blender. Add Southern Comfort, bourbon, vermouth and juices. Blend on low for 10 - 15 seconds. Strain into a collins glass filled with crushed ice. Garnish with a slice of both peach and orange, and serve.", @@ -80438,7 +80438,7 @@ "peach" ], "title": "Blended Comfort recipe", - "url": "http://www.drinksmixer.com/drink8634.html" + "url": "https://www.drinksmixer.com/drink8634.html" }, { "directions": "Pour the vodka, Tia Maria coffee liqueur and orange juice into a cocktail shaker. Shake well, strain into a cocktail glass, and serve.", @@ -80448,7 +80448,7 @@ "orange juice" ], "title": "Blenheim recipe", - "url": "http://www.drinksmixer.com/drink8635.html" + "url": "https://www.drinksmixer.com/drink8635.html" }, { "directions": "Pour the vodka, rum, amaretto, peach schnapps, banana liqueur and pineapple juice into a cocktail shaker half-filled with ice cubes. Shake well. Strain into a highball glass 3/4 filled with ice cubes. Top with soda water, to taste. Squeeze in the juice from a lime wedge and drop the shell into the glass. Serve.", @@ -80463,7 +80463,7 @@ "soda water" ], "title": "Blame It On Rio recipe", - "url": "http://www.drinksmixer.com/drink8636.html" + "url": "https://www.drinksmixer.com/drink8636.html" }, { "directions": "Pour all ingredients into a cocktail shaker half-filled with ice cubes. Shake well, strain into a cocktail glass, and serve.", @@ -80474,7 +80474,7 @@ "lime juice" ], "title": "Blessed Event recipe", - "url": "http://www.drinksmixer.com/drink8637.html" + "url": "https://www.drinksmixer.com/drink8637.html" }, { "directions": "Pour the whiskey, grapefruit juice and grenadine into a cocktail shaker half-filled with ice cubes. Shake well. Strain into a cocktail glass, and serve.", @@ -80484,7 +80484,7 @@ "grenadine syrup" ], "title": "Blinker Cocktail recipe", - "url": "http://www.drinksmixer.com/drink8638.html" + "url": "https://www.drinksmixer.com/drink8638.html" }, { "directions": "Pour the brandy, irish cream, coffee liqueur, rum, ice cream and cream into a blender. Blend until smooth. Pour into a large brandy snifter, dust with nutmeg, and serve.", @@ -80497,7 +80497,7 @@ "light cream" ], "title": "Blizzard recipe", - "url": "http://www.drinksmixer.com/drink8639.html" + "url": "https://www.drinksmixer.com/drink8639.html" }, { "directions": "Combine all ingredients together in a blender. Blend until slushy. Strain into a cocktail glass or two, and serve.", @@ -80509,7 +80509,7 @@ "grenadine syrup" ], "title": "Bloody Matador recipe", - "url": "http://www.drinksmixer.com/drink8640.html" + "url": "https://www.drinksmixer.com/drink8640.html" }, { "directions": "Pour vodka, beer and tomato juice into a mixing glass half-filled with ice cubes. Stir well. Add salt to taste; stir again. Strain into a highball glass, garnish with a dill pickle spear, and serve.", @@ -80520,7 +80520,7 @@ "salt" ], "title": "Bloody Brew recipe", - "url": "http://www.drinksmixer.com/drink8641.html" + "url": "https://www.drinksmixer.com/drink8641.html" }, { "directions": "Pour tequila into a collins glass 1/4 filled with ice cubes. Add 7-Up, and splash grenadine. Allow to chill for 10 seconds. Serve.", @@ -80530,7 +80530,7 @@ "grenadine syrup" ], "title": "Bloody Hurricane recipe", - "url": "http://www.drinksmixer.com/drink8642.html" + "url": "https://www.drinksmixer.com/drink8642.html" }, { "directions": "Pour sake, Worcestershire sauce, Tabasco sauce, horseradish, salt and pepper into a old-fashioned glass half-filled with ice cubes. Stir well. Add tomato juice, to taste. Stir again, and serve.", @@ -80545,7 +80545,7 @@ "peppers" ], "title": "Bloody Maru recipe", - "url": "http://www.drinksmixer.com/drink8643.html" + "url": "https://www.drinksmixer.com/drink8643.html" }, { "directions": "Pour the vodka, lime juice and cranberry juice into a collins glass 3/4 filled with ice cubes. Stir, and serve.", @@ -80555,7 +80555,7 @@ "cranberry juice" ], "title": "Bloody Nightmare recipe", - "url": "http://www.drinksmixer.com/drink8644.html" + "url": "https://www.drinksmixer.com/drink8644.html" }, { "directions": "Pour the brandy, blue curacao, vanilla liqueur, half-and-half and lemon juice into a cocktail shaker half-filled with ice cubes. Strain into a chilled cocktail glass, and serve.", @@ -80567,7 +80567,7 @@ "lemon juice" ], "title": "Blue Angel recipe", - "url": "http://www.drinksmixer.com/drink8645.html" + "url": "https://www.drinksmixer.com/drink8645.html" }, { "directions": "Pour the vodka and parfait amour into a cocktail shaker half-filled with ice cubes. Shake well, and strain into an old-fashioned or rocks glass half-filled with ice cubes. Top with Sprite, to taste. Stir, and serve.", @@ -80577,7 +80577,7 @@ "Sprite\u00ae soda" ], "title": "Blue Angel #2 recipe", - "url": "http://www.drinksmixer.com/drink8646.html" + "url": "https://www.drinksmixer.com/drink8646.html" }, { "directions": "Pour the vodka and blueberry schnapps into a cocktail shaker half-filled with ice cubes. Add sweet and sour mix and cranberry juice. Sweeten to taste with sugar. Shake well. Strain into a chilled cocktail glass. Garnish with a lemon twist, and serve.", @@ -80589,7 +80589,7 @@ "sugar" ], "title": "Blueberry Lemonade recipe", - "url": "http://www.drinksmixer.com/drink8647.html" + "url": "https://www.drinksmixer.com/drink8647.html" }, { "directions": "Combine all ingredients in a cocktail shaker half-filled with ice cubes. Shake well. Strain into a highball glass, add a stick of celery, and serve.", @@ -80604,7 +80604,7 @@ "oregano" ], "title": "Bloody Mariana recipe", - "url": "http://www.drinksmixer.com/drink8648.html" + "url": "https://www.drinksmixer.com/drink8648.html" }, { "directions": "Pour the sparkling wine or champagne over two ice cubes in a champagne saucer. Add blue curacao, and serve.", @@ -80613,7 +80613,7 @@ "Blue Curacao liqueur" ], "title": "Blue Angel #3 recipe", - "url": "http://www.drinksmixer.com/drink8649.html" + "url": "https://www.drinksmixer.com/drink8649.html" }, { "directions": "Pour the gin, Chambord raspberry liqueur and blue curacao into a chilled cocktail glass. Stir, and serve.", @@ -80623,7 +80623,7 @@ "Blue Curacao liqueur" ], "title": "Blueberry Martini recipe", - "url": "http://www.drinksmixer.com/drink8650.html" + "url": "https://www.drinksmixer.com/drink8650.html" }, { "directions": "Pour the gin, grapefruit juice and blue curacao into a mixing glass half-filled with ice cubes. Stir well. Strain into a chilled cocktail glass filled with crushed ice. Garnish with a sprig of mint, and serve.", @@ -80633,7 +80633,7 @@ "Blue Curacao liqueur" ], "title": "Blue Canary recipe", - "url": "http://www.drinksmixer.com/drink8651.html" + "url": "https://www.drinksmixer.com/drink8651.html" }, { "directions": "Pour the amaretto and blue curacao into a blender. Add vanilla ice cream. Blend until smooth. Pour into a brandy snifter, and top with whipped cream. Garnish with a maraschino cherry, and serve.", @@ -80644,7 +80644,7 @@ "whipped cream" ], "title": "Blue Cloud Cocktail recipe", - "url": "http://www.drinksmixer.com/drink8652.html" + "url": "https://www.drinksmixer.com/drink8652.html" }, { "directions": "Pour both ingredients into a collins glass almost filled with ice cubes. Garnish with a slice of lime, and serve.", @@ -80653,7 +80653,7 @@ "lemonade" ], "title": "Blue Frog recipe", - "url": "http://www.drinksmixer.com/drink8653.html" + "url": "https://www.drinksmixer.com/drink8653.html" }, { "directions": "Pour the bourbon, pineapple juice, lemon juice and maraschino liqueur into a cocktail shaker half-filled with ice cubes. Shake well, strain into a chilled cocktail glass, and serve.", @@ -80664,7 +80664,7 @@ "maraschino liqueur" ], "title": "Blue Grass Cocktail recipe", - "url": "http://www.drinksmixer.com/drink8654.html" + "url": "https://www.drinksmixer.com/drink8654.html" }, { "directions": "Pour all ingredients into a collins glass almost filled with ice cubes. Garnish with a maraschino cherry, and serve.", @@ -80676,7 +80676,7 @@ "orange juice" ], "title": "Blue Horizon recipe", - "url": "http://www.drinksmixer.com/drink8655.html" + "url": "https://www.drinksmixer.com/drink8655.html" }, { "directions": "Pour the gin, blue curacao and orange bitters into a cocktail shaker half-filled with ice cubes. Shake well, strain into a cocktail glass, and serve.", @@ -80686,7 +80686,7 @@ "orange bitters" ], "title": "Blue Jacket recipe", - "url": "http://www.drinksmixer.com/drink8656.html" + "url": "https://www.drinksmixer.com/drink8656.html" }, { "directions": "Pour the Jose Cuervo gold tequila, blue curacao, 7-Up and Rose's lime juice into a cocktail shaker half-filled with ice cubes. Add pineapple juice to taste, and shake vigorously. Strain into an old-fashioned glass 1/4 filled with ice cubes, and serve.", @@ -80698,7 +80698,7 @@ "pineapple juice" ], "title": "Blue Lagoon Margarita recipe", - "url": "http://www.drinksmixer.com/drink8657.html" + "url": "https://www.drinksmixer.com/drink8657.html" }, { "directions": "Pour the Jack Daniel's whiskey into a mixing glass. Add blue raspberry juice until the mixture is more blue than brown. Finish with lemon-lime soda until the mixture is fizzing. Serve in a collins glass.", @@ -80708,7 +80708,7 @@ "lemon-lime soda" ], "title": "Blue Latvian recipe", - "url": "http://www.drinksmixer.com/drink8658.html" + "url": "https://www.drinksmixer.com/drink8658.html" }, { "directions": "Pour vodka into a highball glass filled with crushed ice. Fill with blue Fruitopia fruit juice, stir, and add a dash of blue curacao. Garnish with a twist of lime, and serve with a swizzler stick.", @@ -80718,7 +80718,7 @@ "Fruitopia\u00ae fruit juice" ], "title": "Blue Lesbian recipe", - "url": "http://www.drinksmixer.com/drink8659.html" + "url": "https://www.drinksmixer.com/drink8659.html" }, { "directions": "Pour all ingredients (except curacao) into a cocktail shaker half-filled with ice cubes. Shake well. Add blue curacao and shake again briefly. Strain into a highball glass almost filled with ice cubes, and serve.", @@ -80729,7 +80729,7 @@ "Blue Curacao liqueur" ], "title": "Blue Memphis recipe", - "url": "http://www.drinksmixer.com/drink8660.html" + "url": "https://www.drinksmixer.com/drink8660.html" }, { "directions": "Pour vodka, Bacardi 151, gin, blue curacao and blueberry liqueur into a collins glass almost filled with ice cubes. Fill with sweet and sour mix, stir well, and serve.", @@ -80742,7 +80742,7 @@ "sweet and sour mix" ], "title": "Blue Nuke recipe", - "url": "http://www.drinksmixer.com/drink8661.html" + "url": "https://www.drinksmixer.com/drink8661.html" }, { "directions": "Pour the vodka, curacao and angostura into a cocktail shaker half-filled with cracked ice. Shake well, and strain into a chilled cocktail glass. Garnish with an olive, and serve.", @@ -80752,7 +80752,7 @@ "Angostura\u00ae bitters" ], "title": "Blue-on-Blue Martini recipe", - "url": "http://www.drinksmixer.com/drink8662.html" + "url": "https://www.drinksmixer.com/drink8662.html" }, { "directions": "Pour the Maui blue hawaiian schnapps and Parrot Bay coconut rum over some ice in a cocktail glass. Fill with pineapple juice, or to taste, and serve.", @@ -80762,7 +80762,7 @@ "pineapple juice" ], "title": "Blue Parrot recipe", - "url": "http://www.drinksmixer.com/drink8663.html" + "url": "https://www.drinksmixer.com/drink8663.html" }, { "directions": "Pour the spiced rum, blue curacao and sour mix into a cocktail shaker half-filled with ice cubes. Shake well, and strain into a collins glass 3/4 filled with ice cubes. Garnish with a pineapple flag, and serve.", @@ -80772,7 +80772,7 @@ "sweet and sour mix" ], "title": "Blue Passion recipe", - "url": "http://www.drinksmixer.com/drink8664.html" + "url": "https://www.drinksmixer.com/drink8664.html" }, { "directions": "Pour the gin, white curacao and blue curacao into a mixing glass half-filled with cracked ice. Stir well. Strain into a chilled cocktail glass, and serve.", @@ -80782,7 +80782,7 @@ "Blue Curacao liqueur" ], "title": "Blue Riband recipe", - "url": "http://www.drinksmixer.com/drink8665.html" + "url": "https://www.drinksmixer.com/drink8665.html" }, { "directions": "Pour both ingredients into a collins glass filled with ice cubes. Stir and serve.", @@ -80791,7 +80791,7 @@ "cranberry juice" ], "title": "Blue Sapphire recipe", - "url": "http://www.drinksmixer.com/drink8666.html" + "url": "https://www.drinksmixer.com/drink8666.html" }, { "directions": "Pour the blue curacao, tequila, Midori melon liqueur and triple sec into a cocktail shaker half-filled with ice cubes. Shake well, strain into a cocktail glass, and serve.", @@ -80802,7 +80802,7 @@ "triple sec" ], "title": "Blue Sex recipe", - "url": "http://www.drinksmixer.com/drink8667.html" + "url": "https://www.drinksmixer.com/drink8667.html" }, { "directions": "Pour both ingredients into a cocktail shaker half-filled with ice cubes. Shake well, strain into a highball glass almost filled with ice cubes, and serve.", @@ -80811,7 +80811,7 @@ "milk" ], "title": "Blue Sky recipe", - "url": "http://www.drinksmixer.com/drink8668.html" + "url": "https://www.drinksmixer.com/drink8668.html" }, { "directions": "Pour the blue curacao, Southern Comfort and Wild Turkey into a highball glass almost filled with ice cubes. Fill with prepared lime mix, and serve.", @@ -80822,7 +80822,7 @@ "lime mix" ], "title": "Blue Lightning recipe", - "url": "http://www.drinksmixer.com/drink8669.html" + "url": "https://www.drinksmixer.com/drink8669.html" }, { "directions": "Pour all ingredients into a chilled cocktail glass, stir, and serve.", @@ -80832,7 +80832,7 @@ "Sprite\u00ae soda" ], "title": "Blue Sky #3 recipe", - "url": "http://www.drinksmixer.com/drink8670.html" + "url": "https://www.drinksmixer.com/drink8670.html" }, { "directions": "Pour the rum, blue curacao, creme de cacao and cream into a cocktail shaker half-filled with cracked ice. Shake well. Strain into an old-fashioned glass 1/4 filled with ice cubes, and serve.", @@ -80843,7 +80843,7 @@ "cream" ], "title": "Blue Squid recipe", - "url": "http://www.drinksmixer.com/drink8671.html" + "url": "https://www.drinksmixer.com/drink8671.html" }, { "directions": "Pour the blue curacao, white creme de cacao and cream into a cocktail shaker half-filled with cracked ice. Shake well, strain into a chilled cocktail glass, and serve.", @@ -80853,7 +80853,7 @@ "light cream" ], "title": "Bluetail Fly recipe", - "url": "http://www.drinksmixer.com/drink8672.html" + "url": "https://www.drinksmixer.com/drink8672.html" }, { "directions": "Pour all ingredients into a cocktail shaker half-filled with ice cubes. Shake well, and strain into a chilled cocktail glass. Garnish with orange peel, a maraschino cherry, and a sprig of mint.", @@ -80865,7 +80865,7 @@ "cream" ], "title": "Blue Temptation recipe", - "url": "http://www.drinksmixer.com/drink8673.html" + "url": "https://www.drinksmixer.com/drink8673.html" }, { "directions": "Combine the black raspberry liqueur, melon liqueur and vanilla ice cream in a blender. Add a cup of crushed ice and blend until smooth. Pour into a parfait glass, and top with whipped cream. Add blue curacao on top, garnish with a maraschino cherry, and serve.", @@ -80877,7 +80877,7 @@ "whipped cream" ], "title": "Blue Velvet recipe", - "url": "http://www.drinksmixer.com/drink8674.html" + "url": "https://www.drinksmixer.com/drink8674.html" }, { "directions": "Pour all ingredients into an old-fashioned glass 1/4 filled with ice cubes. Stir lightly, and serve.", @@ -80887,7 +80887,7 @@ "ginger ale" ], "title": "Blue Watch recipe", - "url": "http://www.drinksmixer.com/drink8675.html" + "url": "https://www.drinksmixer.com/drink8675.html" }, { "directions": "Pour the vodka, dry vermouth, maraschino liqueur and lemon juice into a cocktail shaker half-filled with cracked ice. Shake well, and strain into a chilled cocktail glass. Garnish with a lemon twist, and serve.", @@ -80898,7 +80898,7 @@ "lemon juice" ], "title": "Boardwalk recipe", - "url": "http://www.drinksmixer.com/drink8676.html" + "url": "https://www.drinksmixer.com/drink8676.html" }, { "directions": "Pour the cherry brandy, amaretto, banana liqueur and orange juice into a cocktail shaker half-filled with ice cubes. Shake well, strain into a chilled cocktail glass, and serve.", @@ -80909,7 +80909,7 @@ "orange juice" ], "title": "Bob Cocktail recipe", - "url": "http://www.drinksmixer.com/drink8677.html" + "url": "https://www.drinksmixer.com/drink8677.html" }, { "directions": "Pour both ingredients into a mixing glass half-filled with ice cubes. Stir well. Strain into a chilled cocktail glass, and serve.", @@ -80918,7 +80918,7 @@ "brandy" ], "title": "Bob Dandy recipe", - "url": "http://www.drinksmixer.com/drink8678.html" + "url": "https://www.drinksmixer.com/drink8678.html" }, { "directions": "Pour all ingredients into a cocktail shaker half-filled with ice cubes. Shake well and pour everything into a hurricane glass. Garnish with a slice of orange. Add an umbrella, and serve.", @@ -80929,7 +80929,7 @@ "pineapple juice" ], "title": "Blue Sky #2 recipe", - "url": "http://www.drinksmixer.com/drink8679.html" + "url": "https://www.drinksmixer.com/drink8679.html" }, { "directions": "Pour the Bailey's irish cream, whiskey and beer over ice cubes in a collins glass. Stir well, and serve.", @@ -80939,7 +80939,7 @@ "beer" ], "title": "Bohemian Bad Ass recipe", - "url": "http://www.drinksmixer.com/drink8680.html" + "url": "https://www.drinksmixer.com/drink8680.html" }, { "directions": "Pour Bollinger champagne into a champagne flute. Add Stoli vodka, and serve.", @@ -80948,7 +80948,7 @@ "Stolichnaya\u00ae vodka" ], "title": "Bolli Stoli recipe", - "url": "http://www.drinksmixer.com/drink8681.html" + "url": "https://www.drinksmixer.com/drink8681.html" }, { "directions": "Pour the dark rum, lemon juice, orange juice and sugar into a cocktail shaker half-filled with ice cubes. Shake well, and strain into a chilled cocktail glass. Garnish with a slice of lemon, and serve.", @@ -80959,7 +80959,7 @@ "sugar" ], "title": "Bolo Cocktail recipe", - "url": "http://www.drinksmixer.com/drink8682.html" + "url": "https://www.drinksmixer.com/drink8682.html" }, { "directions": "Pour the vodka, lemon juice, powdered sugar, rum and creme de cassis into a cocktail shaker half-filled with ice cubes. Shake well, strain into an old-fashioned glass almost filled with ice cubes, and serve.", @@ -80971,7 +80971,7 @@ "creme de cassis" ], "title": "Bolshoi Punch recipe", - "url": "http://www.drinksmixer.com/drink8683.html" + "url": "https://www.drinksmixer.com/drink8683.html" }, { "directions": "Pour ingredients, in order, into a collins glass filled with ice cubes. Garnish with a slice of orange and a maraschino cherry, and serve.", @@ -80983,7 +80983,7 @@ "cherry brandy" ], "title": "Bombay Sling recipe", - "url": "http://www.drinksmixer.com/drink8684.html" + "url": "https://www.drinksmixer.com/drink8684.html" }, { "directions": "Pour the rum, curacao and pineapple juice into a cocktail shaker half-filled with ice cubes. Shake well, and strain into an old-fashioned glass. Garnish with a slice of pineapple, and serve.", @@ -80993,7 +80993,7 @@ "pineapple juice" ], "title": "Bon Bini recipe", - "url": "http://www.drinksmixer.com/drink8685.html" + "url": "https://www.drinksmixer.com/drink8685.html" }, { "directions": "Pour all ingredients into a tall glass filled with ice cubes. Stir well. Add lemonade to taste, stir again, and serve.", @@ -81006,7 +81006,7 @@ "lemonade" ], "title": "Bonehead recipe", - "url": "http://www.drinksmixer.com/drink8686.html" + "url": "https://www.drinksmixer.com/drink8686.html" }, { "directions": "Pour gold rum, coffee liqueur, kirsch, pineapple juice and lemon juice into a cocktail shaker half-filled with ice cubes. Shake well. Strain into a collins glass filled with ice cubes. Fill with cola, and stir gently. Garnish with a maraschino cherry, and serve.", @@ -81019,7 +81019,7 @@ "cola" ], "title": "Bongo Cola recipe", - "url": "http://www.drinksmixer.com/drink8687.html" + "url": "https://www.drinksmixer.com/drink8687.html" }, { "directions": "Pour Scotch whisky, vermouth and benedictine into a cocktail shaker half-filled with ice cubes. Shake well, strain into an old-fashioned or rocks glass, and serve.", @@ -81029,7 +81029,7 @@ "benedictine herbal liqueur" ], "title": "Bonny Doon recipe", - "url": "http://www.drinksmixer.com/drink8688.html" + "url": "https://www.drinksmixer.com/drink8688.html" }, { "directions": "Stir all ingredients together and pour into 2 oz shot glasses. Refrigerate for at least 24 hours before serving.", @@ -81039,7 +81039,7 @@ "water" ], "title": "Bocci Ball Jiggle Shots recipe", - "url": "http://www.drinksmixer.com/drink8689.html" + "url": "https://www.drinksmixer.com/drink8689.html" }, { "directions": "Pour all ingredients into a highball glass with two ice cubes. Stir well, and serve.", @@ -81050,7 +81050,7 @@ "Snapple\u00ae Raspberry Iced Tea soda" ], "title": "Booga Booga recipe", - "url": "http://www.drinksmixer.com/drink8690.html" + "url": "https://www.drinksmixer.com/drink8690.html" }, { "directions": "Pour both ingredients over ice cubes in a collins glass. Stir well, and serve.", @@ -81059,7 +81059,7 @@ "Mountain Dew\u00ae citrus soda" ], "title": "Booger's Booze recipe", - "url": "http://www.drinksmixer.com/drink8691.html" + "url": "https://www.drinksmixer.com/drink8691.html" }, { "directions": "Pour the vodka, rum, lime juice (to taste) and orange juice (to taste) into a cocktail shaker half-filled with ice cubes. Shake well, and strain into a highball glass 1/3 filled with ice cubes. Fill with ginger ale, add creme de bananes on top, stir once and serve.", @@ -81072,7 +81072,7 @@ "ginger ale" ], "title": "Bookmaker's Luck recipe", - "url": "http://www.drinksmixer.com/drink8692.html" + "url": "https://www.drinksmixer.com/drink8692.html" }, { "directions": "Stir well over ice cubes and strain into a chilled cocktail glass. Garnish with a kiwi slice, and serve.", @@ -81083,7 +81083,7 @@ "maraschino liqueur" ], "title": "Boomerang Martini recipe", - "url": "http://www.drinksmixer.com/drink8693.html" + "url": "https://www.drinksmixer.com/drink8693.html" }, { "directions": "Pour all ingredients into an old-fashioned or rocks glass. Stir lightly, and serve.", @@ -81093,7 +81093,7 @@ "Southern Comfort\u00ae peach liqueur" ], "title": "Bootleg recipe", - "url": "http://www.drinksmixer.com/drink8694.html" + "url": "https://www.drinksmixer.com/drink8694.html" }, { "directions": "Pour all ingredients into an old-fashioned or rocks glass. Stir lightly, and serve.", @@ -81103,7 +81103,7 @@ "Southern Comfort\u00ae peach liqueur" ], "title": "Bootlegger recipe", - "url": "http://www.drinksmixer.com/drink8695.html" + "url": "https://www.drinksmixer.com/drink8695.html" }, { "directions": "Pour dark rum, apricot brandy, galliano and juices into a cocktail shaker half-filled with ice cubes. Shake well, and strain into a hurricane glass filled with ice cubes. Garnish with a pineapple fruit flag, and serve.", @@ -81115,7 +81115,7 @@ "lemon juice" ], "title": "Bossa Nova recipe", - "url": "http://www.drinksmixer.com/drink8696.html" + "url": "https://www.drinksmixer.com/drink8696.html" }, { "directions": "Stir lemon juice, sugar and 2 oz of club soda together in a collins glass. Fill the glass with cracked ice. Add rum. Top with club soda, and stir. Garnish with a spiral of orange or lemon peel, and serve.", @@ -81126,7 +81126,7 @@ "club soda" ], "title": "Boston Cooler recipe", - "url": "http://www.drinksmixer.com/drink8697.html" + "url": "https://www.drinksmixer.com/drink8697.html" }, { "directions": "Pour dark rum, cranberry juice and coconut cream into a cocktail shaker with one cup of crushed ice. Shake well, until smooth. Pour all contents of the shaker into a wine glass. Garnish with 3 cranberries on a toothpick or a maraschino cherry, and serve.", @@ -81136,7 +81136,7 @@ "coconut cream" ], "title": "Boston Freeze recipe", - "url": "http://www.drinksmixer.com/drink8698.html" + "url": "https://www.drinksmixer.com/drink8698.html" }, { "directions": "Pour the vodka and banana liqueur into a highball glass with/without ice. Stir well. Add orange juice, to taste, and stir again. Serve.", @@ -81146,7 +81146,7 @@ "orange juice" ], "title": "Boston Gold recipe", - "url": "http://www.drinksmixer.com/drink8699.html" + "url": "https://www.drinksmixer.com/drink8699.html" }, { "directions": "Pour all ingredients into a highball glass, and stir. Garnish with a lemon twist, and serve.", @@ -81156,7 +81156,7 @@ "brandy" ], "title": "Boston Iced Coffee recipe", - "url": "http://www.drinksmixer.com/drink8700.html" + "url": "https://www.drinksmixer.com/drink8700.html" }, { "directions": "Pour the rum, orange juice and iced tea into a cocktail shaker half-filled with ice cubes. Shake well, and strain into a highball glass almost filled with ice cubes. Garnish with a slice of orange and a mint sprig, and serve.", @@ -81166,7 +81166,7 @@ "iced tea" ], "title": "Boston Tea Hardy recipe", - "url": "http://www.drinksmixer.com/drink8701.html" + "url": "https://www.drinksmixer.com/drink8701.html" }, { "directions": "Pour the bourbon whiskey and brown creme de cacao over the vanilla bean in a mixing glass half-filled with ice cubes. Stir well. Strain into a glass without ice, and chill in the refrigerator for at least one hour. Pour into a white wine glass, stir well, and serve.", @@ -81176,7 +81176,7 @@ "vanilla" ], "title": "Bourbon a la Creme recipe", - "url": "http://www.drinksmixer.com/drink8702.html" + "url": "https://www.drinksmixer.com/drink8702.html" }, { "directions": "Pour both ingredients into a cocktail shaker half-filled with ice cubes. Shake well, strain into an old-fashioned or rocks glass filled with ice cubes, and serve.", @@ -81185,7 +81185,7 @@ "Snapple\u00ae Mango Madness soda" ], "title": "Bourbon a la Kris recipe", - "url": "http://www.drinksmixer.com/drink8703.html" + "url": "https://www.drinksmixer.com/drink8703.html" }, { "directions": "Pour both ingredients over ice in an old-fashioned glass. Stir, garnish with a twist of lemon peel, and serve.", @@ -81194,7 +81194,7 @@ "water" ], "title": "Bourbon and Water recipe", - "url": "http://www.drinksmixer.com/drink8704.html" + "url": "https://www.drinksmixer.com/drink8704.html" }, { "directions": "Pour all ingredients into a cocktail shaker half-filled with ice cubes. Shake well, strain into a cocktail glass, and serve.", @@ -81205,7 +81205,7 @@ "grenadine syrup" ], "title": "Bourbonella recipe", - "url": "http://www.drinksmixer.com/drink8705.html" + "url": "https://www.drinksmixer.com/drink8705.html" }, { "directions": "Pour the bourbon whiskey, white creme de cacao and half-and-half into a cocktail shaker half-filled with ice cubes. Shake well, strain into chilled cocktail glass, and serve.", @@ -81215,7 +81215,7 @@ "half-and-half" ], "title": "Bourbon Satin recipe", - "url": "http://www.drinksmixer.com/drink8706.html" + "url": "https://www.drinksmixer.com/drink8706.html" }, { "directions": "Pour the whiskey, triple sec and lemon juice into a cocktail shaker half-filled with ice cubes. Shake well, strain into a chilled cocktail glass, and serve.", @@ -81225,7 +81225,7 @@ "lemon juice" ], "title": "Bourbon Sidecar recipe", - "url": "http://www.drinksmixer.com/drink8707.html" + "url": "https://www.drinksmixer.com/drink8707.html" }, { "directions": "Pour the bourbon whiskey, sloe gin and lemon juice over cracked ice in a chilled collins glass. Stir gently. Add 3 ice cubes, and fill with soda/sparkling water. Garnish with a maraschino cherry and a slice of lemon, and serve.", @@ -81236,7 +81236,7 @@ "soda water" ], "title": "Bourbon Sloe Gin Fizz recipe", - "url": "http://www.drinksmixer.com/drink8708.html" + "url": "https://www.drinksmixer.com/drink8708.html" }, { "directions": "Soak one teaspoon or a cube of sugar with bitters in the bottom of a highball glass. Add a few ice cubes, and pour in the whiskey and water. Garnish with a twist of lemon, and serve.", @@ -81247,7 +81247,7 @@ "sugar" ], "title": "Bourbon Toddy recipe", - "url": "http://www.drinksmixer.com/drink8709.html" + "url": "https://www.drinksmixer.com/drink8709.html" }, { "directions": "Pour ingredients into a collins or tall glass. Stir well, add a straw, and serve.", @@ -81262,7 +81262,7 @@ "sweet and sour mix" ], "title": "Bowl Hugger recipe", - "url": "http://www.drinksmixer.com/drink8710.html" + "url": "https://www.drinksmixer.com/drink8710.html" }, { "directions": "Pour peach schnapps into a highball glass. Add irish cream to the center. Top with grenadine, and serve.", @@ -81272,7 +81272,7 @@ "grenadine syrup" ], "title": "Brain Cocktail recipe", - "url": "http://www.drinksmixer.com/drink8711.html" + "url": "https://www.drinksmixer.com/drink8711.html" }, { "directions": "Pour all ingredients into a tall glass. Add a few ice cubes, stir well and serve.", @@ -81282,7 +81282,7 @@ "Mountain Dew\u00ae citrus soda" ], "title": "Brain Candy recipe", - "url": "http://www.drinksmixer.com/drink8712.html" + "url": "https://www.drinksmixer.com/drink8712.html" }, { "directions": "Pour vodka, Jose Cuervo gold tequila, mezcal and creme de bananes into a cocktail shaker half-filled with ice cubes. Shake well, strain into a cocktail glass, and serve.", @@ -81293,7 +81293,7 @@ "creme de bananes" ], "title": "Brain Pain Killer recipe", - "url": "http://www.drinksmixer.com/drink8713.html" + "url": "https://www.drinksmixer.com/drink8713.html" }, { "directions": "Pour the brandy, apricot brandy and lemon juice into a cocktail shaker half-filled with ice cubes. Shake well, and strain into a chilled cocktail glass. Garnish with a slice of fresh apricot, and serve.", @@ -81303,7 +81303,7 @@ "lemon juice" ], "title": "Brandied Apricot recipe", - "url": "http://www.drinksmixer.com/drink8714.html" + "url": "https://www.drinksmixer.com/drink8714.html" }, { "directions": "Pour all ingredients into a cocktail shaker half-filled with ice cubes. Shake well, and strain into a cocktail glass. Garnish with a piece of preserved ginger. Sprinkle with grated chocolate, and serve.", @@ -81314,7 +81314,7 @@ "orange juice" ], "title": "Brandied Ginger recipe", - "url": "http://www.drinksmixer.com/drink8715.html" + "url": "https://www.drinksmixer.com/drink8715.html" }, { "directions": "Pour brandy, port, lemon juice and maraschino into a cocktail shaker half-filled with ice cubes. Shake well, and strain into an old-fashioned glass half-filled with ice cubes. Garnish with a slice of orange, and serve.", @@ -81325,7 +81325,7 @@ "maraschino liqueur" ], "title": "Brandied Port recipe", - "url": "http://www.drinksmixer.com/drink8716.html" + "url": "https://www.drinksmixer.com/drink8716.html" }, { "directions": "Pour the brandy, lemon juice and creme de cassis into a cocktail shaker half-filled with ice. Shake well, and strain into a cocktail glass. Garnish with a twist of lemon, and serve.", @@ -81335,7 +81335,7 @@ "creme de cassis" ], "title": "Brandy Cassis recipe", - "url": "http://www.drinksmixer.com/drink8717.html" + "url": "https://www.drinksmixer.com/drink8717.html" }, { "directions": "Pour brandy, lemon juice and grenadine into a cocktail shaker half-filled with ice cubes. Shake well, strain into a cocktail glass, and serve.", @@ -81345,7 +81345,7 @@ "grenadine syrup" ], "title": "Brandy Gump recipe", - "url": "http://www.drinksmixer.com/drink8718.html" + "url": "https://www.drinksmixer.com/drink8718.html" }, { "directions": "Place sugar, mint leaves, and brandy in a collins glass and fill with finely shaved ice. Stir until mint rises to top, being careful not to bruise leaves. Garnish with a slice of pineapple, orange, or lemon and a cherry.", @@ -81355,7 +81355,7 @@ "mint" ], "title": "Brandy Julep recipe", - "url": "http://www.drinksmixer.com/drink8719.html" + "url": "https://www.drinksmixer.com/drink8719.html" }, { "directions": "Pour the brandy, peach brandy, raspberry liqueur, lemon juice and orange bitters into a cocktail shaker half-filled with cracked ice. Shake well, and strain into a chilled cocktail glass. Garnish with a slice of peach, and serve.", @@ -81367,7 +81367,7 @@ "orange bitters" ], "title": "Brandy Melba recipe", - "url": "http://www.drinksmixer.com/drink8720.html" + "url": "https://www.drinksmixer.com/drink8720.html" }, { "directions": "Pour over ice cubes in a cocktail glass. Garnish with a slice of orange. Add a stirrer, and serve.", @@ -81377,7 +81377,7 @@ "grenadine syrup" ], "title": "Brandy-O recipe", - "url": "http://www.drinksmixer.com/drink8721.html" + "url": "https://www.drinksmixer.com/drink8721.html" }, { "directions": "Muddle the sugar with the bitters and the water in the bottom of an old-fashioned glass. Add the brandy and some ice cubes. Stir, garnish with a lemon peel, and serve.", @@ -81388,7 +81388,7 @@ "water" ], "title": "Brandy Old-Fashioned recipe", - "url": "http://www.drinksmixer.com/drink8722.html" + "url": "https://www.drinksmixer.com/drink8722.html" }, { "directions": "Pour brandy and lime juice into a highball glass. Fill with soda water, garnish with a slice of lime, and serve.", @@ -81398,7 +81398,7 @@ "soda water" ], "title": "Brandy Rickey recipe", - "url": "http://www.drinksmixer.com/drink8723.html" + "url": "https://www.drinksmixer.com/drink8723.html" }, { "directions": "Pour brandy, sugar and grenadine into a cocktail shaker half-filled with ice cubes. Shake well, and strain into a highball glass. Fill with club soda. Garnish with a stick of pineapple and strawberries, and serve.", @@ -81409,7 +81409,7 @@ "club soda" ], "title": "Brandy Squirt recipe", - "url": "http://www.drinksmixer.com/drink8724.html" + "url": "https://www.drinksmixer.com/drink8724.html" }, { "directions": "Pour the brandy over ice cubes in a collins glass and fill almost to the top with water. Top off with the tonic water, and serve.", @@ -81419,7 +81419,7 @@ "water" ], "title": "Brandy Water Press recipe", - "url": "http://www.drinksmixer.com/drink8725.html" + "url": "https://www.drinksmixer.com/drink8725.html" }, { "directions": "Pour the peach schnapps, whiskey, pineapple juice and orange juice into a blender. Add one cup of crushed ice. Blend until smooth. Swirl the grenadine around the edge of a parfait glass. Add mixture from blender. Garnish with a pineapple slice and a maraschino cherry, and serve.", @@ -81431,7 +81431,7 @@ "grenadine syrup" ], "title": "Brass Fiddle recipe", - "url": "http://www.drinksmixer.com/drink8726.html" + "url": "https://www.drinksmixer.com/drink8726.html" }, { "directions": "Pour the brandy, madeira and triple sec into a mixing glass half-filled with ice cubes. Stir well. Strain into a cocktail glass over crushed ice, and serve.", @@ -81441,7 +81441,7 @@ "triple sec" ], "title": "Breast Caresser recipe", - "url": "http://www.drinksmixer.com/drink8727.html" + "url": "https://www.drinksmixer.com/drink8727.html" }, { "directions": "Combine the sherbet, peach schnapps and coconut liqueur in a blender. Blend until smooth. Pour into a tall glass and drizzle with grenadine. Garnish with lemon slices, and serve.", @@ -81452,7 +81452,7 @@ "grenadine syrup" ], "title": "Brief Encounter recipe", - "url": "http://www.drinksmixer.com/drink8728.html" + "url": "https://www.drinksmixer.com/drink8728.html" }, { "directions": "Pour the gin, Amer Picon, orange juice, lemon juice and sugar into a cocktail shaker half-filled with ice cubes. Shake well, and strain into a chilled cocktail glass. Garnish with an orange twist, and serve.", @@ -81464,7 +81464,7 @@ "superfine sugar" ], "title": "Brittany Cocktail recipe", - "url": "http://www.drinksmixer.com/drink8729.html" + "url": "https://www.drinksmixer.com/drink8729.html" }, { "directions": "Pour the gin and white creme de menthe into a cocktail shaker half-filled with ice cubes. Shake well, and strain into a chilled cocktail glass. Garnish with a mint sprig, and serve.", @@ -81473,7 +81473,7 @@ "white creme de menthe" ], "title": "Broadway Martini recipe", - "url": "http://www.drinksmixer.com/drink8730.html" + "url": "https://www.drinksmixer.com/drink8730.html" }, { "directions": "Pour both ingredients into a tall glass. Stir, garnish with a cinnamon stick, and serve.", @@ -81482,7 +81482,7 @@ "apple cider" ], "title": "Broken Leg recipe", - "url": "http://www.drinksmixer.com/drink8731.html" + "url": "https://www.drinksmixer.com/drink8731.html" }, { "directions": "Pour the tequila and grenadine into a highball glass. Add advocaat, but don't mix properly. Dilute to desired strength with lemonade, and serve.", @@ -81493,7 +81493,7 @@ "lemonade" ], "title": "Broken Nose recipe", - "url": "http://www.drinksmixer.com/drink8732.html" + "url": "https://www.drinksmixer.com/drink8732.html" }, { "directions": "Pour the apricot brandy into a collins glass filled with ice cubes and add the soda. Stir gently and garnish with some fresh raspberries and an orange peel.", @@ -81502,7 +81502,7 @@ "raspberry soda" ], "title": "Bronx Cheer recipe", - "url": "http://www.drinksmixer.com/drink8733.html" + "url": "https://www.drinksmixer.com/drink8733.html" }, { "directions": "Pour the rum, honey and lime juice into a cocktail shaker half-filled with ice cubes. Shake well, strain into a cocktail glass, and serve.", @@ -81512,7 +81512,7 @@ "lime juice" ], "title": "Brooklynite recipe", - "url": "http://www.drinksmixer.com/drink8734.html" + "url": "https://www.drinksmixer.com/drink8734.html" }, { "directions": "Pour both ingredients into a cocktail shaker half-filled with ice cubes. Shake well, strain into a chilled cocktail glass, and serve.", @@ -81521,7 +81521,7 @@ "coffee liqueur" ], "title": "Brown Bear recipe", - "url": "http://www.drinksmixer.com/drink8735.html" + "url": "https://www.drinksmixer.com/drink8735.html" }, { "directions": "Pour the gin, lemon juice and lime juice into a cocktail shaker half-filled with ice cubes. Shake well and strain over ice cubes in a cocktail glass. Fill with Sprite, add curacao, and serve.", @@ -81533,7 +81533,7 @@ "Blue Curacao liqueur" ], "title": "Blue Bruiser Cocktail recipe", - "url": "http://www.drinksmixer.com/drink8736.html" + "url": "https://www.drinksmixer.com/drink8736.html" }, { "directions": "Pour the gin, lemon juice and lime juice into a cocktail shaker half-filled with ice cubes. Shake well and strain over ice cubes in a cocktail glass. Fill with Sprite, add grenadine, and serve.", @@ -81545,7 +81545,7 @@ "grenadine syrup" ], "title": "Red Bruiser Cocktail recipe", - "url": "http://www.drinksmixer.com/drink8737.html" + "url": "https://www.drinksmixer.com/drink8737.html" }, { "directions": "Build all ingredients in an old-fashioned or rocks glass. Fill mostly with milk, top with grenadine, and serve.", @@ -81556,7 +81556,7 @@ "milk" ], "title": "Bubble Gum #2 recipe", - "url": "http://www.drinksmixer.com/drink8738.html" + "url": "https://www.drinksmixer.com/drink8738.html" }, { "directions": "Pour all ingredients into a cocktail shaker half-filled with ice cubes. Shake well, strain into a cocktail glass, and serve.", @@ -81566,7 +81566,7 @@ "milk" ], "title": "Bubblegum Shaker recipe", - "url": "http://www.drinksmixer.com/drink8739.html" + "url": "https://www.drinksmixer.com/drink8739.html" }, { "directions": "Pour creme de bananes, peach schnapps and orange juice into a cocktail shaker with 6 oz of crushed ice. Shake vigorously until slushy. Pour all contents into a highball glass. Add the grenadine so that it sinks down the side of the glass, and serve.", @@ -81577,7 +81577,7 @@ "grenadine syrup" ], "title": "Bubblegum Sundae recipe", - "url": "http://www.drinksmixer.com/drink8740.html" + "url": "https://www.drinksmixer.com/drink8740.html" }, { "directions": "Stir gin and champagne gently in a mixing glass half-filled with ice cubes. Strain into a cocktail glass, garnish with two olives, and serve. Note: the quality of the drink is proportional to the quality of the champagne used.", @@ -81586,7 +81586,7 @@ "Champagne" ], "title": "Bubbly Martini recipe", - "url": "http://www.drinksmixer.com/drink8741.html" + "url": "https://www.drinksmixer.com/drink8741.html" }, { "directions": "Pour the vodka, peach schnapps and grenadine into an old-fashioned glass half-filled with ice cubes. Add tonic water, to taste, and serve.", @@ -81597,7 +81597,7 @@ "tonic water" ], "title": "Bubbly Red Sex recipe", - "url": "http://www.drinksmixer.com/drink8742.html" + "url": "https://www.drinksmixer.com/drink8742.html" }, { "directions": "Stir with cracked ice and strain into a chilled cocktail glass. Garnish with a black olive, and serve.", @@ -81606,7 +81606,7 @@ "dry vermouth" ], "title": "Buckeye Martini recipe", - "url": "http://www.drinksmixer.com/drink8743.html" + "url": "https://www.drinksmixer.com/drink8743.html" }, { "directions": "Pour the spiced rum, creme de cacao, creme de bananes and half-and-half into a cocktail shaker half-filled with ice cubes. Shake well, and strain into a chilled cocktail glass. Garnish with a dusting of nutmeg, and serve.", @@ -81617,7 +81617,7 @@ "half-and-half" ], "title": "Buddha's Banshee recipe", - "url": "http://www.drinksmixer.com/drink8744.html" + "url": "https://www.drinksmixer.com/drink8744.html" }, { "directions": "Build the Stoli raspberry vodka, Kahlua coffee liqueur, Chambord raspberry liqueur and Frangelico hazelnut liqueur into a highball glass filled with ice cubes. Top with half-and-half, and serve.", @@ -81629,7 +81629,7 @@ "half-and-half" ], "title": "Buddy Rich recipe", - "url": "http://www.drinksmixer.com/drink8745.html" + "url": "https://www.drinksmixer.com/drink8745.html" }, { "directions": "Add several ice cubes to a highball glass, grind some pepper on top and add some celery salt to make seasoned ice cubes. Add all ingredients to a cocktail shaker half-filled with ice cubes, and shake well. Strain the mixture over the ice cubes in the highball glass. Squeeze a lime slice over the drink and drop it in the glass. Serve.", @@ -81644,7 +81644,7 @@ "celery salt" ], "title": "Buddy's Bloody Mary recipe", - "url": "http://www.drinksmixer.com/drink8746.html" + "url": "https://www.drinksmixer.com/drink8746.html" }, { "directions": "Stir the vodka, Bailey's Irish Cream and creme de cacao in a large preheated mug. Pour into boiling hot coffee, top with whipped cream, and serve. \r", @@ -81656,7 +81656,7 @@ "whipped cream" ], "title": "Bukhara Coffee recipe", - "url": "http://www.drinksmixer.com/drink8747.html" + "url": "https://www.drinksmixer.com/drink8747.html" }, { "directions": "Pour the bourbon, curacao, lime juice and grenadine into a cocktail shaker half-filled with ice cubes. Shake well, and strain into a cocktail glass. Garnish with a slice of orange and a maraschino cherry, and serve.", @@ -81667,7 +81667,7 @@ "grenadine syrup" ], "title": "Bull and Bear recipe", - "url": "http://www.drinksmixer.com/drink8748.html" + "url": "https://www.drinksmixer.com/drink8748.html" }, { "directions": "Pour the gin, cointreau, orange juice and water into a cocktail shaker half-filled with ice cubes. Shake well, and strain into a highball glass. Fill with water, and serve.", @@ -81678,7 +81678,7 @@ "water" ], "title": "Bulldog Cooler recipe", - "url": "http://www.drinksmixer.com/drink8749.html" + "url": "https://www.drinksmixer.com/drink8749.html" }, { "directions": "Stir both ingredients together in a highball glass filled with ice cubes. Garnish with a slice of lemon, and serve.", @@ -81687,7 +81687,7 @@ "grapefruit juice" ], "title": "Bumpy Grapefruit recipe", - "url": "http://www.drinksmixer.com/drink8750.html" + "url": "https://www.drinksmixer.com/drink8750.html" }, { "directions": "Pour all ingredients into a cocktail shaker half-filled with ice cubes. Shake well, and strain into a parfait glass. Garnish with a slice of lime, and serve.", @@ -81700,7 +81700,7 @@ "grape juice" ], "title": "Bunky Punch recipe", - "url": "http://www.drinksmixer.com/drink8751.html" + "url": "https://www.drinksmixer.com/drink8751.html" }, { "directions": "Pour the tequila, apple brandy, triple sec, lemon juice and maple syrup into a cocktail shaker half-filled with ice cubes. Strain into a chilled old-fashioned glass, garnish with a slice of lemon, and serve.", @@ -81712,7 +81712,7 @@ "maple syrup" ], "title": "Bunny Bonzana recipe", - "url": "http://www.drinksmixer.com/drink8752.html" + "url": "https://www.drinksmixer.com/drink8752.html" }, { "directions": "Pour both ingredients over ice in a large wine glass. Garnish with slices of lemon, lime and orange, and serve.", @@ -81721,7 +81721,7 @@ "ginger ale" ], "title": "Burgundy Bubbler recipe", - "url": "http://www.drinksmixer.com/drink8753.html" + "url": "https://www.drinksmixer.com/drink8753.html" }, { "directions": "Pour the amaretto, kahlua coffee liqueur and orange juice into a cocktail shaker half-filled with ice cubes. Shake well, and strain over ice cubes in a highball glass. Garnish with a swirl of whipped cream, and serve.", @@ -81732,7 +81732,7 @@ "whipped cream" ], "title": "Buried Treasure recipe", - "url": "http://www.drinksmixer.com/drink8754.html" + "url": "https://www.drinksmixer.com/drink8754.html" }, { "directions": "Pour both ingredients into a cocktail glass, stir, and serve.", @@ -81741,7 +81741,7 @@ "Scotch whisky" ], "title": "Burnt Martini recipe", - "url": "http://www.drinksmixer.com/drink8755.html" + "url": "https://www.drinksmixer.com/drink8755.html" }, { "directions": "Pour the brandy, bourbon whiskey, butterscotch schnapps and coffee liqueur into an old-fashioned glass half-filled with ice cubes. Add water if desired, and serve.", @@ -81752,7 +81752,7 @@ "coffee liqueur" ], "title": "Buttered Brandy recipe", - "url": "http://www.drinksmixer.com/drink8756.html" + "url": "https://www.drinksmixer.com/drink8756.html" }, { "directions": "Pour peach schnapps, Captain Morgan spiced rum and Pepsi cola into a highball glass half-filled with ice cubes. Stir well, and serve.", @@ -81762,7 +81762,7 @@ "Pepsi\u00ae cola" ], "title": "Buttered Pancakes recipe", - "url": "http://www.drinksmixer.com/drink8757.html" + "url": "https://www.drinksmixer.com/drink8757.html" }, { "directions": "Pour the applejack, gin, lemon juice and grenadine into a cocktail shaker half-filled with ice cubes. Shake well, strain into a cocktail glass, and serve.", @@ -81773,7 +81773,7 @@ "grenadine syrup" ], "title": "Butterflies Cocktail recipe", - "url": "http://www.drinksmixer.com/drink8758.html" + "url": "https://www.drinksmixer.com/drink8758.html" }, { "directions": "Pour the butterscotch schnapps into a highball glass. Add milk, to taste. Stir well, and serve.", @@ -81782,7 +81782,7 @@ "milk" ], "title": "Buttermilk recipe", - "url": "http://www.drinksmixer.com/drink8759.html" + "url": "https://www.drinksmixer.com/drink8759.html" }, { "directions": "Combine the DeKuyper Buttershots and mint chocolate-chip ice cream in a blender. Add crushed ice if desired. Blend until smooth. Strain over ice cubes in a collins glass, add a straw, and serve.", @@ -81791,7 +81791,7 @@ "mint chocolate ice cream" ], "title": "Buttermint Delight recipe", - "url": "http://www.drinksmixer.com/drink8760.html" + "url": "https://www.drinksmixer.com/drink8760.html" }, { "directions": "Pour the schnapps into a cocktail glass. Add eggnog, sprinkle with nutmeg, and serve.", @@ -81800,7 +81800,7 @@ "eggnog" ], "title": "Butterscotch Eggnog recipe", - "url": "http://www.drinksmixer.com/drink8761.html" + "url": "https://www.drinksmixer.com/drink8761.html" }, { "directions": "Pour all ingredients into a cocktail shaker half-filled with ice cubes. Shake well, strain into a collins glass half-filled with ice cubes, and serve.", @@ -81810,7 +81810,7 @@ "club soda" ], "title": "Butterscotch Kiss recipe", - "url": "http://www.drinksmixer.com/drink8762.html" + "url": "https://www.drinksmixer.com/drink8762.html" }, { "directions": "Pour the vodka, butterscotch schnapps and creme de cacao into a cocktail shaker half-filled with ice cubes. Shake well, strain into a chilled cocktail glass, and serve.", @@ -81820,7 +81820,7 @@ "creme de cacao" ], "title": "Butterscotch Truffle Martini recipe", - "url": "http://www.drinksmixer.com/drink8763.html" + "url": "https://www.drinksmixer.com/drink8763.html" }, { "directions": "Pour the vodka, cognac, benedictine, Cointreau and lime juice into a cocktail shaker half-filled with ice cubes. Shake well, and strain into a highball glass. Fill with champagne, either completely or to personal taste. Serve.", @@ -81833,7 +81833,7 @@ "Champagne" ], "title": "Buzz Bomb recipe", - "url": "http://www.drinksmixer.com/drink8764.html" + "url": "https://www.drinksmixer.com/drink8764.html" }, { "directions": "Pour the whisky, orange juice, raspberry liqueur, lemon juice and 7-Up into a cocktail shaker half-filled with ice cubes. Shake well, strain into a cocktail glass, and serve.", @@ -81845,7 +81845,7 @@ "7-Up\u00ae soda" ], "title": "Buzzer recipe", - "url": "http://www.drinksmixer.com/drink8765.html" + "url": "https://www.drinksmixer.com/drink8765.html" }, { "directions": "Pour the vodka, citrus juice and orange juice into a cocktail shaker half-filled with ice cubes. Shake well, strain into a highball glass almost filled with ice cubes, and serve.", @@ -81855,7 +81855,7 @@ "orange juice" ], "title": "Buzzsaw recipe", - "url": "http://www.drinksmixer.com/drink8766.html" + "url": "https://www.drinksmixer.com/drink8766.html" }, { "directions": "Pour Byrrh and creme de cassis into a wine glass. Add ice cubes, fill with pre-chilled soda water to taste, and serve.", @@ -81865,7 +81865,7 @@ "soda water" ], "title": "Byrrh Cassis recipe", - "url": "http://www.drinksmixer.com/drink8767.html" + "url": "https://www.drinksmixer.com/drink8767.html" }, { "directions": "Pour all ingredients into a cocktail shaker half-filled with ice cubes. Shake well, strain into a cocktail glass, and serve.", @@ -81875,7 +81875,7 @@ "dry vermouth" ], "title": "Byrrh Cocktail recipe", - "url": "http://www.drinksmixer.com/drink8768.html" + "url": "https://www.drinksmixer.com/drink8768.html" }, { "directions": "Pour the gin, Dubonnet, Angostura bitters and Pernod into a cocktail shaker half-filled with cracked ice. Shake well, and strain into a chilled cocktail glass. Garnish with a lime twist, and serve.", @@ -81886,7 +81886,7 @@ "Pernod\u00ae licorice liqueur" ], "title": "Cabaret Martini recipe", - "url": "http://www.drinksmixer.com/drink8769.html" + "url": "https://www.drinksmixer.com/drink8769.html" }, { "directions": "Dissolve the sugar in the lemon juice and the water in a large wine glass. Add cracked ice and pour the Cabernet Sauvignon wine. Stir gently. Garnish with an orange slice, and serve.", @@ -81897,7 +81897,7 @@ "soda water" ], "title": "Cabernet Cobbler recipe", - "url": "http://www.drinksmixer.com/drink8770.html" + "url": "https://www.drinksmixer.com/drink8770.html" }, { "directions": "Pour the Jose Cuervo gold tequila, Grand Marnier, sweet and sour mix and cranberry juice into a cocktail shaker filled with ice cubes. Shake vigorously. Pour into a margarita glass, and add the lime juice.", @@ -81909,7 +81909,7 @@ "Rose's\u00ae lime juice" ], "title": "Cabo Wabo recipe", - "url": "http://www.drinksmixer.com/drink8771.html" + "url": "https://www.drinksmixer.com/drink8771.html" }, { "directions": "Pour all ingredients over ice cubes in a highball glass. Stir well, and serve.", @@ -81919,7 +81919,7 @@ "cola" ], "title": "Cactus Cola recipe", - "url": "http://www.drinksmixer.com/drink8772.html" + "url": "https://www.drinksmixer.com/drink8772.html" }, { "directions": "Pour all ingredients into a cocktail shaker half-filled with ice cubes. Shake well and strain into an old-fashioned glass. Garnish with an orange wedge, and serve.", @@ -81930,7 +81930,7 @@ "coffee" ], "title": "Cafe Antrim recipe", - "url": "http://www.drinksmixer.com/drink8773.html" + "url": "https://www.drinksmixer.com/drink8773.html" }, { "directions": "Stir both ingredients with ice in a mixing glass. Strain into a chilled cocktail glass, and serve.", @@ -81939,7 +81939,7 @@ "gin" ], "title": "Byrrh Special recipe", - "url": "http://www.drinksmixer.com/drink8774.html" + "url": "https://www.drinksmixer.com/drink8774.html" }, { "directions": "Combine the kirsch, sugar and egg white in a cocktail shaker half-filled with ice cubes. Shake well, and strain into a wine glass. Fill with coffee, stir, and serve.", @@ -81950,7 +81950,7 @@ "coffee" ], "title": "Cafe Au Kirsch recipe", - "url": "http://www.drinksmixer.com/drink8775.html" + "url": "https://www.drinksmixer.com/drink8775.html" }, { "directions": "Pour both ingredients into a collins glass half-filled with ice cubes. Stir well. Garnish with a lime wedge, and serve.", @@ -81959,7 +81959,7 @@ "club soda" ], "title": "Cafe Cabana recipe", - "url": "http://www.drinksmixer.com/drink8776.html" + "url": "https://www.drinksmixer.com/drink8776.html" }, { "directions": "Pour the sambuca, coffee liqueur and cream into a cocktail shaker half-filled with ice cubes. Shake well, strain into a cocktail glass, and serve.", @@ -81969,7 +81969,7 @@ "half-and-half" ], "title": "Cafe Romano recipe", - "url": "http://www.drinksmixer.com/drink8777.html" + "url": "https://www.drinksmixer.com/drink8777.html" }, { "directions": "Add the pineapple chunks to a highball glass. Pour in grenadine, fill with wine, and serve.", @@ -81979,7 +81979,7 @@ "pineapple wine" ], "title": "Caitian Tongue Tickler recipe", - "url": "http://www.drinksmixer.com/drink8778.html" + "url": "https://www.drinksmixer.com/drink8778.html" }, { "directions": "Pour the vodka, red wine, dark rum and orange bitters into a cocktail shaker half-filled with cracked ice. Shake well, and strain into a chilled cocktail glass. Garnish with an orange twist, and serve.", @@ -81990,7 +81990,7 @@ "orange bitters" ], "title": "California Martini recipe", - "url": "http://www.drinksmixer.com/drink8779.html" + "url": "https://www.drinksmixer.com/drink8779.html" }, { "directions": "Pour the spiced rum, peach schnapps, dark rum, orange juice, grenadine and lime juice into a cocktail shaker half-filled with ice cubes. Shake well. Strain into a collins glass filled with ice cubes, and top with lemon-lime soda. Garnish with an orange flag, and serve.", @@ -82004,7 +82004,7 @@ "lemon-lime soda" ], "title": "Calypso Cooler recipe", - "url": "http://www.drinksmixer.com/drink8780.html" + "url": "https://www.drinksmixer.com/drink8780.html" }, { "directions": "Pour the beer, tequila, dark rum and ouzo into a highball glass. Top with mountain dew, to taste, and serve.", @@ -82016,7 +82016,7 @@ "Mountain Dew\u00ae citrus soda" ], "title": "Camel Piss recipe", - "url": "http://www.drinksmixer.com/drink8781.html" + "url": "https://www.drinksmixer.com/drink8781.html" }, { "directions": "Pour both whiskies, the lemon juice and the orange bitters into a cocktail shaker half-filled with ice cubes. Shake well, strain into a cocktail glass, and serve.", @@ -82027,7 +82027,7 @@ "orange bitters" ], "title": "Cameron's Kick recipe", - "url": "http://www.drinksmixer.com/drink8782.html" + "url": "https://www.drinksmixer.com/drink8782.html" }, { "directions": "Pour the vodka and Campari into a cocktail shaker half-filled with cracked ice. Shake well, and strain into a chilled cocktail glass. Garnish with a twist of lime, and serve.", @@ -82036,7 +82036,7 @@ "Campari\u00ae bitters" ], "title": "Campari Martini recipe", - "url": "http://www.drinksmixer.com/drink8783.html" + "url": "https://www.drinksmixer.com/drink8783.html" }, { "directions": "Pour the Campari over ice cubes in a highball glass, then fill with sparkling/soda water. Squeeze a lime wedge over the glass, drop it in, and serve.", @@ -82045,7 +82045,7 @@ "soda water" ], "title": "Campari Soda recipe", - "url": "http://www.drinksmixer.com/drink8784.html" + "url": "https://www.drinksmixer.com/drink8784.html" }, { "directions": "Pour the whisky, Campari bitters and vermouth into a mixing glass half-filled with cracked ice. Stir well. Strain into a cocktail glass, garnish with a lemon twist, and serve.", @@ -82055,7 +82055,7 @@ "dry vermouth" ], "title": "Canadian and Campari recipe", - "url": "http://www.drinksmixer.com/drink8785.html" + "url": "https://www.drinksmixer.com/drink8785.html" }, { "directions": "Combine the whisky, apple brandy, lemon juice, sugar syrup and cinnamon in a cocktail shaker half-filled with ice cubes. Shake well, and strain into an old-fashioned glass. Garnish with a slice of lemon, and serve.", @@ -82067,7 +82067,7 @@ "cinnamon" ], "title": "Canadian Apple recipe", - "url": "http://www.drinksmixer.com/drink8786.html" + "url": "https://www.drinksmixer.com/drink8786.html" }, { "directions": "Pour all ingredients into a cocktail shaker half-filled with ice cubes, and shake well. Strain into a highball glass almost filled with ice cubes, and serve.", @@ -82079,7 +82079,7 @@ "beer" ], "title": "California Root Beer recipe", - "url": "http://www.drinksmixer.com/drink8787.html" + "url": "https://www.drinksmixer.com/drink8787.html" }, { "directions": "Pour the whisky, brandy, juices and sugar into a cocktail shaker half-filled with ice cubes. Shake well, strain into an old-fashioned glass 1/4 filled with ice cubes, and serve.", @@ -82091,7 +82091,7 @@ "superfine sugar" ], "title": "Canadian Blackberry recipe", - "url": "http://www.drinksmixer.com/drink8788.html" + "url": "https://www.drinksmixer.com/drink8788.html" }, { "directions": "Pour the whisky, pineapple juice, lemon juice and maraschino liqueur into a cocktail shaker half-filled with ice cubes. Shake well, and strain into an old-fashioned glass 1/4 filled with ice cubes. Garnish with a pineapple wedge and a maraschino cherry, and serve.", @@ -82102,7 +82102,7 @@ "maraschino liqueur" ], "title": "Canadian Breeze recipe", - "url": "http://www.drinksmixer.com/drink8789.html" + "url": "https://www.drinksmixer.com/drink8789.html" }, { "directions": "Pour the whisky, lemon juice and raspberry syrup into a cocktail shaker half-filled with ice cubes. Shake well, and strain into a highball glass almost filled with ice cubes. Fill with sparkling water. Float the brandy on top. Garnish with a few raspberries, and serve.", @@ -82114,7 +82114,7 @@ "soda water" ], "title": "Canadian Daisy recipe", - "url": "http://www.drinksmixer.com/drink8790.html" + "url": "https://www.drinksmixer.com/drink8790.html" }, { "directions": "Shake the whisky, triple sec, angostura bitters and lemon juice with ice cubes in a cocktail shaker. Strain into an old-fashioned glass. Garnish with lemon and orange twists.", @@ -82125,7 +82125,7 @@ "lemon juice" ], "title": "Canadian Old-Fashioned recipe", - "url": "http://www.drinksmixer.com/drink8791.html" + "url": "https://www.drinksmixer.com/drink8791.html" }, { "directions": "Pour the white rum, orange juice, pineapple juice, lemon juice, grenadine and bitters into a highball glass 3/4 filled with ice cubes. Garnish with a pineapple slice, orange slice and a maraschino cherry. Serve.", @@ -82138,7 +82138,7 @@ "bitters" ], "title": "Canado Saludo recipe", - "url": "http://www.drinksmixer.com/drink8792.html" + "url": "https://www.drinksmixer.com/drink8792.html" }, { "directions": "Pour the whisky, orange juice and lemon juice into a collins glass, and stir. Add club soda, to taste. Garnish with a slice of orange, and serve.", @@ -82149,7 +82149,7 @@ "club soda" ], "title": "Canal Street Daisy recipe", - "url": "http://www.drinksmixer.com/drink8793.html" + "url": "https://www.drinksmixer.com/drink8793.html" }, { "directions": "Pour both ingredients over into a highball glass 2/3 filled with ice cubes. Stir well, and serve.", @@ -82158,7 +82158,7 @@ "Dr. Pepper\u00ae soda" ], "title": "Candy Rider recipe", - "url": "http://www.drinksmixer.com/drink8794.html" + "url": "https://www.drinksmixer.com/drink8794.html" }, { "directions": "Add all ingredients to a blender with half a cup of crushed ice. Blend until smooth, and pour into a highball glass.", @@ -82169,7 +82169,7 @@ "ice cream" ], "title": "Candy Store recipe", - "url": "http://www.drinksmixer.com/drink8795.html" + "url": "https://www.drinksmixer.com/drink8795.html" }, { "directions": "Pour all ingredients into a highball glass, and stir. Add a swizzle stick, and serve.", @@ -82180,7 +82180,7 @@ "soda water" ], "title": "Cane Toad recipe", - "url": "http://www.drinksmixer.com/drink8796.html" + "url": "https://www.drinksmixer.com/drink8796.html" }, { "directions": "Pour all ingredients into a blender 3/4 filled with crushed ice. Blend until smooth. Pour into a cocktail glass, and serve.", @@ -82191,7 +82191,7 @@ "Absolut\u00ae vodka" ], "title": "Canoe River Special recipe", - "url": "http://www.drinksmixer.com/drink8797.html" + "url": "https://www.drinksmixer.com/drink8797.html" }, { "directions": "Pour all ingredients into a Irish coffee mug, and stir. Garnish with a cinnamon stick, and serve.", @@ -82201,7 +82201,7 @@ "spiced cider" ], "title": "Canadian Cider recipe", - "url": "http://www.drinksmixer.com/drink8798.html" + "url": "https://www.drinksmixer.com/drink8798.html" }, { "directions": "Pour amaretto, melon liqueur and vodka into a highball glass almost filled with ice cubes. Stir well. Add cranberry juice to taste, and stir again. Top with Sprite, to taste, and serve.", @@ -82213,7 +82213,7 @@ "Sprite\u00ae soda" ], "title": "Canadian Killer Kool-Aid recipe", - "url": "http://www.drinksmixer.com/drink8799.html" + "url": "https://www.drinksmixer.com/drink8799.html" }, { "directions": "Pour all ingredients into a large cocktail glass. Add more cherry coke if desired. Stir, and serve.", @@ -82224,7 +82224,7 @@ "Coca-Cola\u00ae Cherry Coke" ], "title": "Cannibalized Christian recipe", - "url": "http://www.drinksmixer.com/drink8800.html" + "url": "https://www.drinksmixer.com/drink8800.html" }, { "directions": "Combine all ingredients in a blender with crushed ice. Blend until smooth. Pour into an old-fashioned glass, garnish with a slice of melon, and serve.", @@ -82236,7 +82236,7 @@ "superfine sugar" ], "title": "Cantaloupe Cup recipe", - "url": "http://www.drinksmixer.com/drink8801.html" + "url": "https://www.drinksmixer.com/drink8801.html" }, { "directions": "Pour the Irish cream, brandy, amaretto and light cream into a cocktail shaker half-filled with ice cubes. Shake very well. Strain into a brandy snifter, and serve.", @@ -82247,7 +82247,7 @@ "light cream" ], "title": "Canyon Quake recipe", - "url": "http://www.drinksmixer.com/drink8802.html" + "url": "https://www.drinksmixer.com/drink8802.html" }, { "directions": "Pour the coconut rum, juices and sugar into a highball glass almost filled with ice cubes. Stir well, and serve.", @@ -82258,7 +82258,7 @@ "superfine sugar" ], "title": "Cape Breeze recipe", - "url": "http://www.drinksmixer.com/drink8803.html" + "url": "https://www.drinksmixer.com/drink8803.html" }, { "directions": "Pour the gins, cranberry juice, lime juice and orgeat syrup into a cocktail shaker half-filled with ice cubes. Shake well. Strain into a collins glass 3/4 filled with ice cubes. Garnish with a slice of lime, and serve.", @@ -82270,7 +82270,7 @@ "orgeat syrup" ], "title": "Cape Cod Cooler recipe", - "url": "http://www.drinksmixer.com/drink8804.html" + "url": "https://www.drinksmixer.com/drink8804.html" }, { "directions": "Pour the Malibu rum over ice cubes in a highball glass and fill with guava juice. Stir, drizzle grenadine on top, and serve.", @@ -82280,7 +82280,7 @@ "guava juice" ], "title": "Cape Sunrise recipe", - "url": "http://www.drinksmixer.com/drink8805.html" + "url": "https://www.drinksmixer.com/drink8805.html" }, { "directions": "Pour the amaretto, spiced rum, cranberry juice and sour mix into a cocktail shaker half-filled with ice cubes. Shake well, and strain into an old-fashioned glass 1/4 filled with ice cubes.", @@ -82291,7 +82291,7 @@ "sweet and sour mix" ], "title": "Captain Al recipe", - "url": "http://www.drinksmixer.com/drink8806.html" + "url": "https://www.drinksmixer.com/drink8806.html" }, { "directions": "Pour the Parrot Bay coconut rum into a collins glass half-filled with ice cubes. Add pineapple juice, and stir. Float Myer's rum on top, and serve.", @@ -82301,7 +82301,7 @@ "pineapple juice" ], "title": "Captain Courageous recipe", - "url": "http://www.drinksmixer.com/drink8807.html" + "url": "https://www.drinksmixer.com/drink8807.html" }, { "directions": "Pour the Captain Morgan spiced rum into a highball glass almost filled with ice cubes. Fill with Pepsi cola, and serve.", @@ -82310,7 +82310,7 @@ "Pepsi\u00ae cola" ], "title": "Captain Pepsi recipe", - "url": "http://www.drinksmixer.com/drink8808.html" + "url": "https://www.drinksmixer.com/drink8808.html" }, { "directions": "Pour the Captain Morgan spiced rum, Kahlua coffee liqueur and herbal bitters into a cocktail shaker half-filled with ice cubes. Shake well. Strain into an old-fashioned or rocks glass 1/4 filled with ice cubes, and serve.", @@ -82320,7 +82320,7 @@ "bitters" ], "title": "Captain's Coffee recipe", - "url": "http://www.drinksmixer.com/drink8809.html" + "url": "https://www.drinksmixer.com/drink8809.html" }, { "directions": "Pour all ingredients into a small (8 oz) highball or old-fashioned glass filled with ice cubes. Stir well, and serve.", @@ -82331,7 +82331,7 @@ "orange juice" ], "title": "Captain's Punch recipe", - "url": "http://www.drinksmixer.com/drink8810.html" + "url": "https://www.drinksmixer.com/drink8810.html" }, { "directions": "Pour the rum into an old-fashioned or rocks glass filled with ice cubes. Fill with cola, or add to taste, and serve.", @@ -82341,7 +82341,7 @@ "cola" ], "title": "Captain MyOrgan recipe", - "url": "http://www.drinksmixer.com/drink8811.html" + "url": "https://www.drinksmixer.com/drink8811.html" }, { "directions": "Pour the white rum and creme de bananes into a champagne flute. Fill with champagne, and stir lightly. Garnish with a slice of banana, and serve.", @@ -82351,7 +82351,7 @@ "Champagne" ], "title": "Caribbean Champagne recipe", - "url": "http://www.drinksmixer.com/drink8812.html" + "url": "https://www.drinksmixer.com/drink8812.html" }, { "directions": "Pour the rum, creme de cacao and orange juice into a highball glass filled with ice cubes. Stir well. Add club soda, stir again gently, and serve.", @@ -82362,7 +82362,7 @@ "club soda" ], "title": "Caribbean Chat recipe", - "url": "http://www.drinksmixer.com/drink8813.html" + "url": "https://www.drinksmixer.com/drink8813.html" }, { "directions": "Whirl all ingredients together in a blender at low speed for 10 - 15 seconds with 1 cup of crushed ice. Pour into a wine goblet. Garnish with grated coconut and a maraschino cherry, and serve.", @@ -82373,7 +82373,7 @@ "heavy cream" ], "title": "Caribbean Cooler recipe", - "url": "http://www.drinksmixer.com/drink8814.html" + "url": "https://www.drinksmixer.com/drink8814.html" }, { "directions": "Pour the dark rum, orange juice and cranberry juice into a cocktail shaker half-filled with ice cubes. Shake well, strain into a highball glass almost filled with ice cubes, and serve.", @@ -82383,7 +82383,7 @@ "cranberry juice" ], "title": "Caribbean Madras recipe", - "url": "http://www.drinksmixer.com/drink8815.html" + "url": "https://www.drinksmixer.com/drink8815.html" }, { "directions": "Pour the Redrum, Malibu rum and Bacardi Limon rum into a collins glass filled with ice cubes. Add the fruit juice, and top with grenadine. Garnish with a slice of lime, and serve.", @@ -82396,7 +82396,7 @@ "grenadine syrup" ], "title": "Caribbean Murder recipe", - "url": "http://www.drinksmixer.com/drink8816.html" + "url": "https://www.drinksmixer.com/drink8816.html" }, { "directions": "Pour the rum, amaretto, orange juice and pineapple juice into a cocktail shaker half-filled with ice cubes. Shake well. Strain into a highball glass filled with ice cubes, and float grenadine on top. Garnish with slices of orange, lemon or lime, and serve.", @@ -82408,7 +82408,7 @@ "grenadine syrup" ], "title": "Caribbean Romance recipe", - "url": "http://www.drinksmixer.com/drink8817.html" + "url": "https://www.drinksmixer.com/drink8817.html" }, { "directions": "Pour the dark rum, triple sec, orange juice, margarita mix and simple syrup into a cocktail shaker half-filled with ice cubes. Shake well, and strain into a hurricane glass almost filled with ice cubes. Top with lemon-lime soda, and stir briefly. Garnish with a lime wheel and an orange flag, and serve.", @@ -82421,7 +82421,7 @@ "lemon-lime soda" ], "title": "Caribbean Smuggler recipe", - "url": "http://www.drinksmixer.com/drink8818.html" + "url": "https://www.drinksmixer.com/drink8818.html" }, { "directions": "Pour the rum, pineapple juice and lemon juice into a cocktail shaker half-filled with ice cubes. Shake well, and strain into a cocktail glass. Garnish with a lime wheel, and serve.", @@ -82431,7 +82431,7 @@ "lemon juice" ], "title": "Caribe Cocktail recipe", - "url": "http://www.drinksmixer.com/drink8819.html" + "url": "https://www.drinksmixer.com/drink8819.html" }, { "directions": "Pour the Stoli Kafya (a coffee-flavored vodka) into a cocktail glass. Top with champagne and stir gently. Garnish with a lemon twist, add a coffee bean, and serve.", @@ -82440,7 +82440,7 @@ "Champagne" ], "title": "Caribou Martini recipe", - "url": "http://www.drinksmixer.com/drink8820.html" + "url": "https://www.drinksmixer.com/drink8820.html" }, { "directions": "Pour the Chardonnay, Midori melon liqueur, Southern Comfort and Dr. Pepper into an old-fashioned glass 1/4 filled with ice cubes. Stir well. Top with whipped cream, and sprinkle with hundreds and thousands.", @@ -82452,7 +82452,7 @@ "whipped cream" ], "title": "Carpet Licker recipe", - "url": "http://www.drinksmixer.com/drink8821.html" + "url": "https://www.drinksmixer.com/drink8821.html" }, { "directions": "Pour the Malibu rum, Midori melon liqueur, blue curacao and pineapple juice into a cocktail shaker half-filled with ice cubes. Shake well, and strain into a highball glass. Top with 7-up, and stir briefly. Garnish with a maraschino cherry and a pineapple flag, and serve.", @@ -82465,7 +82465,7 @@ "7-Up\u00ae soda" ], "title": "Caribbean Mist recipe", - "url": "http://www.drinksmixer.com/drink8822.html" + "url": "https://www.drinksmixer.com/drink8822.html" }, { "directions": "Pour the Absolut vodka, Midori melon liqueur and sour mix into a cocktail shaker half-filled with ice cubes. Shake well, and strain into a highball glass almost filled with ice cubes. Top with Sprite, and stir lightly. Garnish with a lemon or lime wedge, and serve.", @@ -82476,7 +82476,7 @@ "Sprite\u00ae soda" ], "title": "Carrie's Midori Sour recipe", - "url": "http://www.drinksmixer.com/drink8823.html" + "url": "https://www.drinksmixer.com/drink8823.html" }, { "directions": "Pour the Stoli orange vodka, DeKuyper peach schnapps, triple sec, sour mix, orange juice and grenadine into a collins glass half-filled with ice cubes. Stir well, and serve.", @@ -82489,7 +82489,7 @@ "grenadine syrup" ], "title": "Carrot Top Cocktail recipe", - "url": "http://www.drinksmixer.com/drink8824.html" + "url": "https://www.drinksmixer.com/drink8824.html" }, { "directions": "Pour the citrus vodka, sweet and sour mix and cranberry juice into a cocktail shaker half-filled with ice cubes. Shake well. Strain into a collins glass almost filled with ice cubes. Top with lemon-lime soda. Float a lemon slice on top, and serve.", @@ -82500,7 +82500,7 @@ "lemon-lime soda" ], "title": "Casco Bay Lemonade recipe", - "url": "http://www.drinksmixer.com/drink8825.html" + "url": "https://www.drinksmixer.com/drink8825.html" }, { "directions": "Pour coffee liqueur into a brandy snifter and set aside. Combine white reme de cacao, amaretto and vanilla ice cream in a blender with ice cubes. Blend until smooth. Pour over coffee liqueur. Top with whipped cream and chocolate sprinkles, and serve.", @@ -82512,7 +82512,7 @@ "whipped cream" ], "title": "Cavanaugh's Special recipe", - "url": "http://www.drinksmixer.com/drink8826.html" + "url": "https://www.drinksmixer.com/drink8826.html" }, { "directions": "Pour the amaretto, Bacardi 151 and Southern Comfort into an old-fashioned glass 3/4 filled with ice cubes. Stir well. Add cranberry juice to taste, and stir again briefly. Add a splash of orange juice, and serve.", @@ -82524,7 +82524,7 @@ "cranberry juice" ], "title": "Cave In recipe", - "url": "http://www.drinksmixer.com/drink8827.html" + "url": "https://www.drinksmixer.com/drink8827.html" }, { "directions": "Pour the Midori melon liqueur, Malibu coconut rum and pineapple juice into a collins glass. Top with grenadine, little enough not to be able to taste it distinctly. Stir slightly.", @@ -82535,7 +82535,7 @@ "grenadine syrup" ], "title": "Cayman Climax recipe", - "url": "http://www.drinksmixer.com/drink8828.html" + "url": "https://www.drinksmixer.com/drink8828.html" }, { "directions": "Pour the Frangelico hazelnut liqueur, strawberry liqueur, advocaat and cream into a cocktail shaker half-filled with ice cubes. Shake well, and strain into a cocktail glass. Top with lemonade until frothy. Garnish with a strawberry, and serve.", @@ -82547,7 +82547,7 @@ "lemonade" ], "title": "Celeste Sunrise recipe", - "url": "http://www.drinksmixer.com/drink8829.html" + "url": "https://www.drinksmixer.com/drink8829.html" }, { "directions": "Pour the Captain Morgan spiced rum into a highball glass. Add juices, add crushed ice until full, and serve.", @@ -82558,7 +82558,7 @@ "strawberry mix" ], "title": "Cast Away recipe", - "url": "http://www.drinksmixer.com/drink8830.html" + "url": "https://www.drinksmixer.com/drink8830.html" }, { "directions": "Pour the vodka and grenadine into a cocktail shaker half-filled with ice cubes. Shake well, and strain into a cocktail glass. Top with sour mix, to taste, and serve.", @@ -82568,7 +82568,7 @@ "sweet and sour mix" ], "title": "Centauri Sundown recipe", - "url": "http://www.drinksmixer.com/drink8831.html" + "url": "https://www.drinksmixer.com/drink8831.html" }, { "directions": "Pour all ingredients into a cocktail shaker half-filled with ice cubes. Shake well, strain into a collins glass almost filled with ice cubes, and serve.", @@ -82578,7 +82578,7 @@ "orange juice" ], "title": "Chachodaddy recipe", - "url": "http://www.drinksmixer.com/drink8832.html" + "url": "https://www.drinksmixer.com/drink8832.html" }, { "directions": "Pour the Bacardi Limon, Malibu rum, creme de bananes and juices into a cocktail shaker half-filled with ice cubes. Shake well. Strain into a highball glass half-filled with ice cubes, and serve.", @@ -82591,7 +82591,7 @@ "pineapple juice" ], "title": "Chaise Lounge recipe", - "url": "http://www.drinksmixer.com/drink8833.html" + "url": "https://www.drinksmixer.com/drink8833.html" }, { "directions": "Pour the champagne into a champagne flute. Add a healthy splash of Chambord raspberry liqueur, and serve.", @@ -82600,7 +82600,7 @@ "Chambord\u00ae raspberry liqueur" ], "title": "Chambord and Champagne recipe", - "url": "http://www.drinksmixer.com/drink8834.html" + "url": "https://www.drinksmixer.com/drink8834.html" }, { "directions": "Heat both ingredients gently. Pour into a brandy snifter, and serve.", @@ -82609,7 +82609,7 @@ "Chambord\u00ae raspberry liqueur" ], "title": "Chambord and Cognac recipe", - "url": "http://www.drinksmixer.com/drink8835.html" + "url": "https://www.drinksmixer.com/drink8835.html" }, { "directions": "Pour all ingredients into a highball glass. Stir vigorously, and serve.", @@ -82620,7 +82620,7 @@ "coconut cream" ], "title": "Chambord Colada recipe", - "url": "http://www.drinksmixer.com/drink8836.html" + "url": "https://www.drinksmixer.com/drink8836.html" }, { "directions": "Pour both ingredients into a cocktail shaker half-filled with ice cubes. Shake well, strain into an old-fashioned or rocks glass, and serve.", @@ -82629,7 +82629,7 @@ "lemon juice" ], "title": "Chambord Frost recipe", - "url": "http://www.drinksmixer.com/drink8837.html" + "url": "https://www.drinksmixer.com/drink8837.html" }, { "directions": "Pour the Chambord raspberry liqueur, vodka, pineapple and cranberry juice into a cocktail shaker half-filled with ice cubes. Shake well. Strain into a cocktail glass, and serve.", @@ -82640,7 +82640,7 @@ "cranberry juice" ], "title": "Chambord Royale recipe", - "url": "http://www.drinksmixer.com/drink8838.html" + "url": "https://www.drinksmixer.com/drink8838.html" }, { "directions": "Pour all ingredients into a mixing glass half-filled with cracked ice. Stir well. Strain into an old-fashioned glass 1/4 filled with cracked ice, and serve.", @@ -82650,7 +82650,7 @@ "Frangelico\u00ae hazelnut liqueur" ], "title": "Celtic Twilight recipe", - "url": "http://www.drinksmixer.com/drink8839.html" + "url": "https://www.drinksmixer.com/drink8839.html" }, { "directions": "Pour the tequila, triple sec, orange juice and lime juice into a collins glass 3/4 filled with ice cubes. Stir well. Add Squirt, and a dash of salt. Stir briefly and serve.", @@ -82663,7 +82663,7 @@ "salt" ], "title": "Sharp Hill Sunrise recipe", - "url": "http://www.drinksmixer.com/drink8840.html" + "url": "https://www.drinksmixer.com/drink8840.html" }, { "directions": "Pour the Chambord raspberry liqueur, light rum, dark rum, pineapple juice and coconut cream into a cocktail shaker half-filled with ice cubes. Shake well. Pour the Chambord raspberry liqueur into a the bottom of a large wine glass. Slowly strain the contents of the cocktail shaker on top of the Chambord, by means of the back of a teaspoon or otherwise, in order to create a second layer. Float a small, further amount of Chambord on top, and serve.", @@ -82675,7 +82675,7 @@ "coconut cream" ], "title": "Chamborlada recipe", - "url": "http://www.drinksmixer.com/drink8841.html" + "url": "https://www.drinksmixer.com/drink8841.html" }, { "directions": "Pour both ingredients into a champagne flute, stir, and serve.", @@ -82684,7 +82684,7 @@ "white creme de menthe" ], "title": "Champagne Blitz recipe", - "url": "http://www.drinksmixer.com/drink8842.html" + "url": "https://www.drinksmixer.com/drink8842.html" }, { "directions": "Pour the brandy and triple sec into a large wine glass. Fill with champagne, or simply add to taste. Garnish with a sprig of mint, and serve.", @@ -82694,7 +82694,7 @@ "Champagne" ], "title": "Champagne Cooler recipe", - "url": "http://www.drinksmixer.com/drink8843.html" + "url": "https://www.drinksmixer.com/drink8843.html" }, { "directions": "Pour the white curacao and cognac into a white wine glass. Add an ice cube, and fill with champagne. Garnish with a sprig of mint and a slice of orange, and serve.", @@ -82704,7 +82704,7 @@ "Champagne" ], "title": "Champagne Cup recipe", - "url": "http://www.drinksmixer.com/drink8844.html" + "url": "https://www.drinksmixer.com/drink8844.html" }, { "directions": "Pour the tequila and triple sec into a cocktail shaker half-filled with ice cubes. Shake well. Strain into a champagne flute. Add limeade and champagne, stir briefly, and serve.", @@ -82715,7 +82715,7 @@ "Champagne" ], "title": "Champange Rita recipe", - "url": "http://www.drinksmixer.com/drink8845.html" + "url": "https://www.drinksmixer.com/drink8845.html" }, { "directions": "Pour both ingredients into a highball glass almost filled with ice cubes, and serve.", @@ -82724,7 +82724,7 @@ "Sprite\u00ae soda" ], "title": "Champion's Bubblin' Cherry recipe", - "url": "http://www.drinksmixer.com/drink8846.html" + "url": "https://www.drinksmixer.com/drink8846.html" }, { "directions": "Pour the tequila and ginger ale into a collins glass filled with ice cubes. Stir well. Garnish with a lime wedge, and serve.", @@ -82733,7 +82733,7 @@ "ginger ale" ], "title": "Changuirongo recipe", - "url": "http://www.drinksmixer.com/drink8847.html" + "url": "https://www.drinksmixer.com/drink8847.html" }, { "directions": "Pour the gin, lemon juice and raspberry syrup and egg white into a cocktail shaker half-filled with cracked ice. Shake well, strain into an old-fashioned glass 1/2 filled with ice cubes, and serve.", @@ -82744,7 +82744,7 @@ "egg" ], "title": "Chanticleer recipe", - "url": "http://www.drinksmixer.com/drink8848.html" + "url": "https://www.drinksmixer.com/drink8848.html" }, { "directions": "Pour all ingredients into a cocktail shaker half-filled with ice cubes. Shake well, and strain into a cocktail glass. Garnish with a twist of orange peel, and serve.", @@ -82754,7 +82754,7 @@ "lemon juice" ], "title": "Chapel Hill recipe", - "url": "http://www.drinksmixer.com/drink8849.html" + "url": "https://www.drinksmixer.com/drink8849.html" }, { "directions": "Pour the cranberry juice into a large red wine glass and set aside. Combine sherbet, vodka, and peach schnapps in a cocktail shaker. Shake until smooth. Pour over cranberry juice to product a swirl effect. Layer champagne on top. Garnish with a slice of orange, and serve.", @@ -82766,7 +82766,7 @@ "cranberry juice" ], "title": "Champagne Cornucopia recipe", - "url": "http://www.drinksmixer.com/drink8850.html" + "url": "https://www.drinksmixer.com/drink8850.html" }, { "directions": "Pour the Mandarine Napoleon and cherry brandy into a collins glass half-filled with ice cubes. Top with lemonade, to taste, and serve.", @@ -82776,7 +82776,7 @@ "lemonade" ], "title": "Charleston Cocktail recipe", - "url": "http://www.drinksmixer.com/drink8851.html" + "url": "https://www.drinksmixer.com/drink8851.html" }, { "directions": "Pour the gin, ginger brandy, lemon juice and sugar into a cocktail shaker half-filled with ice cubes. Shake well, and strain into a chilled cocktail glass. Garnish with a piece of candied ginger, and serve.", @@ -82787,7 +82787,7 @@ "superfine sugar" ], "title": "Chatham Cocktail recipe", - "url": "http://www.drinksmixer.com/drink8852.html" + "url": "https://www.drinksmixer.com/drink8852.html" }, { "directions": "Pour the Stoli raspberry vodka, sloe gin, and cranberry-raspberry juice over several ice cubes in a chilled double old-fashioned glass. Add fresh raspberries, garnish with a mint sprig, and serve.", @@ -82798,7 +82798,7 @@ "raspberries" ], "title": "Chekhov Cooler recipe", - "url": "http://www.drinksmixer.com/drink8853.html" + "url": "https://www.drinksmixer.com/drink8853.html" }, { "directions": "Pour all ingredients into a cocktail shaker half-filled with ice cubes. Shake well, strain into a cocktail glass, and serve.", @@ -82808,7 +82808,7 @@ "lemon juice" ], "title": "Chelsea Sidecar recipe", - "url": "http://www.drinksmixer.com/drink8854.html" + "url": "https://www.drinksmixer.com/drink8854.html" }, { "directions": "Pour all ingredients into a cocktail shaker half-filled with ice cubes. Shake well, strain into a collins glass almost filled with ice cubes, and serve.", @@ -82818,7 +82818,7 @@ "Snapple\u00ae Lightning soda" ], "title": "Cherry Blast recipe", - "url": "http://www.drinksmixer.com/drink8855.html" + "url": "https://www.drinksmixer.com/drink8855.html" }, { "directions": "Pour the Wild Turkey bourbon whiskey and grenadine into a cocktail shaker half-filled with ice cubes. Shake well, and strain into a highball glass filled with ice cubes. Add Mello Yellow, and serve.", @@ -82828,7 +82828,7 @@ "Mello Yello\u00ae citrus soda" ], "title": "Cherry Gobbler recipe", - "url": "http://www.drinksmixer.com/drink8856.html" + "url": "https://www.drinksmixer.com/drink8856.html" }, { "directions": "Pour all ingredients into a highball glass filled with ice cubes. Garnish with a twist of both lime and lemon, and serve.", @@ -82839,7 +82839,7 @@ "cranberry juice" ], "title": "Cherry Pucker recipe", - "url": "http://www.drinksmixer.com/drink8857.html" + "url": "https://www.drinksmixer.com/drink8857.html" }, { "directions": "Pour all ingredients into a cocktail shaker half-filled with crushed ice. Shake vigorously. Pour into a collins glass, add a straw, and serve.", @@ -82849,7 +82849,7 @@ "raspberry sherbet" ], "title": "Cherry Raspberry Shake recipe", - "url": "http://www.drinksmixer.com/drink8858.html" + "url": "https://www.drinksmixer.com/drink8858.html" }, { "directions": "Pour both ingredients over a small handful of crushed ice in a cocktail glass. Stir, and serve.", @@ -82858,7 +82858,7 @@ "cranberry juice" ], "title": "Cherry Lifesaver recipe", - "url": "http://www.drinksmixer.com/drink8859.html" + "url": "https://www.drinksmixer.com/drink8859.html" }, { "directions": "Combine all ingredients together with half a cup or less of crushed ice in a blender. Blend until smooth. Pour into a medium-sized cocktail glass, garnish with a maraschino cherry, and serve.", @@ -82870,7 +82870,7 @@ "maraschino cherries" ], "title": "Cherry Repair Kit recipe", - "url": "http://www.drinksmixer.com/drink8860.html" + "url": "https://www.drinksmixer.com/drink8860.html" }, { "directions": "Pour all ingredients into a cocktail shaker half-filled with ice cubes. Shake well, strain into a highball glass, and serve.", @@ -82881,7 +82881,7 @@ "7-Up\u00ae soda" ], "title": "Cherry Shake recipe", - "url": "http://www.drinksmixer.com/drink8861.html" + "url": "https://www.drinksmixer.com/drink8861.html" }, { "directions": "Pour all ingredients into a collins glass. Stir, and serve.", @@ -82892,7 +82892,7 @@ "vanilla extract" ], "title": "Cherry Vanilla Dr. Pepper recipe", - "url": "http://www.drinksmixer.com/drink8862.html" + "url": "https://www.drinksmixer.com/drink8862.html" }, { "directions": "Rub the rim of an old-fashioned glass with lemon and dip in powdered sugar. Pour the brandy, bitters and triple sec into a mixing glass half-filled with cracked ice. Stir well. Pour into the prepared glass, and serve.", @@ -82902,7 +82902,7 @@ "triple sec" ], "title": "Chicago Cocktail recipe", - "url": "http://www.drinksmixer.com/drink8863.html" + "url": "https://www.drinksmixer.com/drink8863.html" }, { "directions": "Pour the dark rum, peppermint schnapps, coconut cream, chocolate syrup and heavy cream into a blender with two cups of crushed ice. Blend until smooth and creamy. Pour as much of the mixture as you can into a hurricane glass, leaving a little room at the top. Top with whipped cream and a maraschino cherry, and serve.", @@ -82915,7 +82915,7 @@ "whipped cream" ], "title": "Chilly Chocolate Mint recipe", - "url": "http://www.drinksmixer.com/drink8864.html" + "url": "https://www.drinksmixer.com/drink8864.html" }, { "directions": "Add all ingredients to a blender with 4 cups of crushed ice. Blend until smooth. Pour into parfait glasses, garnish with clover leafs, and serve.", @@ -82928,7 +82928,7 @@ "simple syrup" ], "title": "Chilly Irishman recipe", - "url": "http://www.drinksmixer.com/drink8865.html" + "url": "https://www.drinksmixer.com/drink8865.html" }, { "directions": "Pour all ingredients into a cocktail shaker half-filled with ice cubes. Shake well, strain into a cocktail glass, and serve.", @@ -82940,7 +82940,7 @@ "bitters" ], "title": "Chinese Cocktail recipe", - "url": "http://www.drinksmixer.com/drink8866.html" + "url": "https://www.drinksmixer.com/drink8866.html" }, { "directions": "Pour all ingredients into a cocktail shaker half-filled with ice cubes. Shake well, strain into a cocktail glass, and serve.", @@ -82951,7 +82951,7 @@ "grenadine syrup" ], "title": "Chinese Cocktail #2 recipe", - "url": "http://www.drinksmixer.com/drink8867.html" + "url": "https://www.drinksmixer.com/drink8867.html" }, { "directions": "Combine the irish cream, vanilla extract, light cream, vanilla ice cream and banana in a blender with one small scoop of crushed ice. Blend until smooth. Pour into a parfait glass, and top with whipped cream and chocolate sprinkles. Garnish with a maraschino cherry. Add a slice of banana on a cocktail pick and place across the top, and serve.", @@ -82964,7 +82964,7 @@ "whipped cream" ], "title": "Choco Banana Smash recipe", - "url": "http://www.drinksmixer.com/drink8868.html" + "url": "https://www.drinksmixer.com/drink8868.html" }, { "directions": "Pour both ingredients into an old-fashioned glass, stir, and serve.", @@ -82973,7 +82973,7 @@ "Yoo-hoo\u00ae chocolate milk" ], "title": "Chocodka recipe", - "url": "http://www.drinksmixer.com/drink8869.html" + "url": "https://www.drinksmixer.com/drink8869.html" }, { "directions": "Combine all ingredients in a blender. Blend until smooth and freeze overnight. Before serving, break up the frozen mixture and blend until smooth with 2 tbsp. of cold water. Serve with a spoon in a frosted goblet, and serve.", @@ -82986,7 +82986,7 @@ "vanilla" ], "title": "Chocolate Banana Sherbet recipe", - "url": "http://www.drinksmixer.com/drink8870.html" + "url": "https://www.drinksmixer.com/drink8870.html" }, { "directions": "Add all ingredients to a blender. Blend until smooth. Pour into a parfait glass, sprinkle with chocolate shavings, and serve.", @@ -82996,7 +82996,7 @@ "ice cream" ], "title": "Chocolate Almond Cream recipe", - "url": "http://www.drinksmixer.com/drink8871.html" + "url": "https://www.drinksmixer.com/drink8871.html" }, { "directions": "Pour the white creme de cacao, banana liqueur and cream into a cocktail shaker half-filled with ice cubes. Shake well, strain into a chilled cocktail glass, and serve.", @@ -83006,7 +83006,7 @@ "cream" ], "title": "Chocolate Banana Banshee recipe", - "url": "http://www.drinksmixer.com/drink8872.html" + "url": "https://www.drinksmixer.com/drink8872.html" }, { "directions": "Pour all ingredients into a highball glass. Stir, and serve.", @@ -83016,7 +83016,7 @@ "chocolate syrup" ], "title": "Chocolate Barkchip recipe", - "url": "http://www.drinksmixer.com/drink8873.html" + "url": "https://www.drinksmixer.com/drink8873.html" }, { "directions": "Pour the creme de cacao into a cocktail glass. Carefully layer the blue curacao on top by pouring slowly over the back of a teaspoon. Top with whipped cream. Sprinkle chocolate shavings across the cream, and serve.", @@ -83026,7 +83026,7 @@ "whipped cream" ], "title": "Chocolate Cloud recipe", - "url": "http://www.drinksmixer.com/drink8874.html" + "url": "https://www.drinksmixer.com/drink8874.html" }, { "directions": "Pour all ingredients into a mixing glass half-filled with ice cubes. Stir well. Strain into a cocktail glass, garnish with a fresh strawberry, and serve.", @@ -83036,7 +83036,7 @@ "cream" ], "title": "Chocolate Covered Strawberry recipe", - "url": "http://www.drinksmixer.com/drink8875.html" + "url": "https://www.drinksmixer.com/drink8875.html" }, { "directions": "Pour all ingredients into a cocktail shaker half-filled with ice cubes. Shake well, strain into a cocktail glass, and serve.", @@ -83047,7 +83047,7 @@ "lemon juice" ], "title": "Chocolate Hurricane recipe", - "url": "http://www.drinksmixer.com/drink8876.html" + "url": "https://www.drinksmixer.com/drink8876.html" }, { "directions": "Pour all ingredients into a cocktail shaker half-filled with ice cubes. Adjust amount of milk if desired. Shake well, strain into a cocktail glass, and serve. ", @@ -83058,7 +83058,7 @@ "milk" ], "title": "Chocolate Milkshake recipe", - "url": "http://www.drinksmixer.com/drink8877.html" + "url": "https://www.drinksmixer.com/drink8877.html" }, { "directions": "Chill all ingredients prior. Layer in order into a cocktail glass; creme de cacao first, brandy on top, followed by cream.", @@ -83068,7 +83068,7 @@ "heavy cream" ], "title": "Chocolatier Cake recipe", - "url": "http://www.drinksmixer.com/drink8878.html" + "url": "https://www.drinksmixer.com/drink8878.html" }, { "directions": "Pour Carolan's irish cream, creme de cacao, Kahlua coffee liqueur and milk into a cocktail shaker half-filled with cracked ice. Shake well, until frothy. Strain into a cocktail/martini glass, garnish with a chocolate ovation, and serve.", @@ -83079,7 +83079,7 @@ "milk" ], "title": "Chocolate Cappuccino recipe", - "url": "http://www.drinksmixer.com/drink8879.html" + "url": "https://www.drinksmixer.com/drink8879.html" }, { "directions": "Combine ingredients in a blender, and blend well. Pour into a chilled daiquiri/margarita glass, garnish with a chocolate covered strawberry, and serve.", @@ -83088,7 +83088,7 @@ "strawberries" ], "title": "Chocolate Covered Strawberry Daiquiri recipe", - "url": "http://www.drinksmixer.com/drink8880.html" + "url": "https://www.drinksmixer.com/drink8880.html" }, { "directions": "Carefully layer all ingredients, in equal parts, on top of one another in a shot glass; Kahlua first, Bailey's in the middle and Malibu on top.", @@ -83098,7 +83098,7 @@ "Malibu\u00ae coconut rum" ], "title": "Coconita recipe", - "url": "http://www.drinksmixer.com/drink8881.html" + "url": "https://www.drinksmixer.com/drink8881.html" }, { "directions": "Prepare iced tea as per usual or by instructions on can. Add grenadine and bitters to a cocktail glass, and pour in the iced tea mixture. Add vodka. Garnish with a slice of lime, and serve.", @@ -83109,7 +83109,7 @@ "grenadine syrup" ], "title": "Dolly Iced Tea recipe", - "url": "http://www.drinksmixer.com/drink8882.html" + "url": "https://www.drinksmixer.com/drink8882.html" }, { "directions": "Combine all ingredients in a cocktail shaker, and shake vigorously. Ensure the red curry paste is thoroughly dissolved. Strain into a cocktail glass, and serve.", @@ -83123,7 +83123,7 @@ "egg" ], "title": "Fire in the Disco recipe", - "url": "http://www.drinksmixer.com/drink8883.html" + "url": "https://www.drinksmixer.com/drink8883.html" }, { "directions": "Pour the Bacardi Limon into a highball glass. Add green hawaiian punch. Stir well, and serve.", @@ -83132,7 +83132,7 @@ "Hawaiian Punch\u00ae" ], "title": "Green Demon #2 recipe", - "url": "http://www.drinksmixer.com/drink8884.html" + "url": "https://www.drinksmixer.com/drink8884.html" }, { "directions": "Fill half of an glass an old-fashioned glass with peppermint liqueur. Fill with beer, stir, and serve.", @@ -83141,7 +83141,7 @@ "peppermint liqueur" ], "title": "Green Elevator recipe", - "url": "http://www.drinksmixer.com/drink8885.html" + "url": "https://www.drinksmixer.com/drink8885.html" }, { "directions": "Pour the Midori melon liqueur, rum, blue curacao and lemon juice into a cocktail shaker half-filled with ice cubes. Shake well. Strain into a highball glass almost filled with ice cubes. Top with pineapple juice, to taste, and serve.", @@ -83153,7 +83153,7 @@ "pineapple juice" ], "title": "Midori Ecstacy recipe", - "url": "http://www.drinksmixer.com/drink8886.html" + "url": "https://www.drinksmixer.com/drink8886.html" }, { "directions": "Pour the Bailey's irish cream, butterscotch liqueur and rumple minze into a cocktail shaker half-filled with ice cubes. Shake well for 10 seconds. Strain into a shot glass, and serve.", @@ -83163,7 +83163,7 @@ "Rumple Minze\u00ae peppermint liqueur" ], "title": "Minty Nipples recipe", - "url": "http://www.drinksmixer.com/drink8887.html" + "url": "https://www.drinksmixer.com/drink8887.html" }, { "directions": "Pour vodka and lime juice over into a collins glass 1/2 filled with ice cubes. Top with Sunny Delight, stir well, and serve.", @@ -83173,7 +83173,7 @@ "Sunny Delight\u00ae Florida Style orange juice" ], "title": "Sledgehammer recipe", - "url": "http://www.drinksmixer.com/drink8889.html" + "url": "https://www.drinksmixer.com/drink8889.html" }, { "directions": "Pour vodka into a pint glass. Add both cider and lager, and fill with blackcurrant squash. Stir briefly, and serve.", @@ -83184,7 +83184,7 @@ "blackcurrant squash" ], "title": "Snake Bite Black GTI recipe", - "url": "http://www.drinksmixer.com/drink8890.html" + "url": "https://www.drinksmixer.com/drink8890.html" }, { "directions": "Add Midori melon liqueur to a regular bottle or can of premium lager poured into a pint glass. Stir, and serve.", @@ -83193,7 +83193,7 @@ "lager" ], "title": "Melon Roy recipe", - "url": "http://www.drinksmixer.com/drink8891.html" + "url": "https://www.drinksmixer.com/drink8891.html" }, { "directions": "Pour the vodka, vermouth and Pisang Ambon into a highball glass filled with ice cubes. Stir well. Fill with Schweppes bitter lemon, stir again, and serve.", @@ -83204,7 +83204,7 @@ "Pisang Ambon\u00ae liqueur" ], "title": "Christina Cocktail recipe", - "url": "http://www.drinksmixer.com/drink8892.html" + "url": "https://www.drinksmixer.com/drink8892.html" }, { "directions": "Pour the gin, dry vermouth and peppermint schnapps into a cocktail shaker half-filled with cracked ice. Shake well, and strain into a chilled cocktail glass. Garnish with a candy cane, and serve.", @@ -83214,7 +83214,7 @@ "peppermint schnapps" ], "title": "Christmas Martini recipe", - "url": "http://www.drinksmixer.com/drink8893.html" + "url": "https://www.drinksmixer.com/drink8893.html" }, { "directions": "Pour the vermouth and benedictine into a mixing glass half-filled with cracked ice. Stir well. Strain into a cocktail glass. Add the Pernod, garnish with an orange twist, and serve.", @@ -83224,7 +83224,7 @@ "Pernod\u00ae licorice liqueur" ], "title": "Chrysanthemum Cocktail recipe", - "url": "http://www.drinksmixer.com/drink8894.html" + "url": "https://www.drinksmixer.com/drink8894.html" }, { "directions": "Pour the shochu and soda water into a cocktail glass. Add the lemon juice, and serve. Add lime or orange juice as an optional extra.", @@ -83234,7 +83234,7 @@ "lemon juice" ], "title": "Chuhai recipe", - "url": "http://www.drinksmixer.com/drink8895.html" + "url": "https://www.drinksmixer.com/drink8895.html" }, { "directions": "Pour the gin, vermouth and orange juice into a cocktail shaker half-filled with cracked ice. Shake well, and strain into a chilled cocktail glass. Garnish with lemon, lime and orange peels, and serve.", @@ -83244,7 +83244,7 @@ "orange juice" ], "title": "Church Lady Martini recipe", - "url": "http://www.drinksmixer.com/drink8896.html" + "url": "https://www.drinksmixer.com/drink8896.html" }, { "directions": "Combine all ingredients with two cups of crushed ice in a blender. Blend until slushy, and serve in an elegant glass; hurricane or otherwise.", @@ -83255,7 +83255,7 @@ "grenadine syrup" ], "title": "Ciao Baby recipe", - "url": "http://www.drinksmixer.com/drink8897.html" + "url": "https://www.drinksmixer.com/drink8897.html" }, { "directions": "Combine all ingredients in a saucepan; bring to the boil, stirring occasionally. Allow to cool. When cool, strain and chill for several hours. Re-heat one hour before serving, and serve lukewarm.", @@ -83266,7 +83266,7 @@ "cinnamon" ], "title": "Cider Cup recipe", - "url": "http://www.drinksmixer.com/drink8898.html" + "url": "https://www.drinksmixer.com/drink8898.html" }, { "directions": "Pour all ingredients into a cocktail shaker half-filled with ice cubes. Shake well. Strain into a cocktail glass, and serve.", @@ -83276,7 +83276,7 @@ "orange juice" ], "title": "Ciel recipe", - "url": "http://www.drinksmixer.com/drink8899.html" + "url": "https://www.drinksmixer.com/drink8899.html" }, { "directions": "Rim an irish coffee cup or glass with sugar and cinnamon. Add hot cider and rum, and serve.", @@ -83285,7 +83285,7 @@ "apple cider" ], "title": "Cinnamon Toast recipe", - "url": "http://www.drinksmixer.com/drink8900.html" + "url": "https://www.drinksmixer.com/drink8900.html" }, { "directions": "Pour both ingredients into a tall glass. Stir and serve.", @@ -83294,7 +83294,7 @@ "DeKuyper\u00ae Sour Apple Pucker schnapps" ], "title": "Chuck Pucker recipe", - "url": "http://www.drinksmixer.com/drink8901.html" + "url": "https://www.drinksmixer.com/drink8901.html" }, { "directions": "Pour all ingredients into a large, ice-filled hurricane glass. Top with lemon-lime soda. Garnish with a lime wheel, and serve.", @@ -83307,7 +83307,7 @@ "lemon-lime soda" ], "title": "Citrus Cooler recipe", - "url": "http://www.drinksmixer.com/drink8902.html" + "url": "https://www.drinksmixer.com/drink8902.html" }, { "directions": "Pour all ingredients into a cocktail shaker half-filled with cracked ice. Shake well and strain into a chilled cocktail glass. Garnish with a lemon twist, and serve.", @@ -83317,7 +83317,7 @@ "lime juice" ], "title": "Citrus Martini recipe", - "url": "http://www.drinksmixer.com/drink8903.html" + "url": "https://www.drinksmixer.com/drink8903.html" }, { "directions": "Pour the citrus vodka, blue curacao, Midori melon liqueur and sour mix into a mixing glass half-filled with ice cubes. Stir well. Strain into a cocktail glass, top with 7-up, and serve.", @@ -83329,7 +83329,7 @@ "7-Up\u00ae soda" ], "title": "Citrus Neon recipe", - "url": "http://www.drinksmixer.com/drink8904.html" + "url": "https://www.drinksmixer.com/drink8904.html" }, { "directions": "Pour both ingredients into an old-fashioned glass 1/4 filled with ice cubes. Stir well, and serve.", @@ -83338,7 +83338,7 @@ "Goldschlager\u00ae cinnamon schnapps" ], "title": "Citrus Twist on Fire recipe", - "url": "http://www.drinksmixer.com/drink8905.html" + "url": "https://www.drinksmixer.com/drink8905.html" }, { "directions": "Pour both ingredients into a highball glass filled with ice cubes. Stir well, and serve.", @@ -83347,7 +83347,7 @@ "lemonade" ], "title": "Clarity Cocktail recipe", - "url": "http://www.drinksmixer.com/drink8906.html" + "url": "https://www.drinksmixer.com/drink8906.html" }, { "directions": "Prepare an old-fashioned glass by rubbing a slice of lemon around the rim and dipping it into powdered sugar. Pour the brandy, curacao, maraschino liqueur and lemon juice into a cocktail shaker half-filled with ice cubes. Shake well, strain into the prepared glass, and serve.", @@ -83358,7 +83358,7 @@ "lemon juice" ], "title": "Classic Cocktail recipe", - "url": "http://www.drinksmixer.com/drink8907.html" + "url": "https://www.drinksmixer.com/drink8907.html" }, { "directions": "Pour the gin, vodka, triple sec and lime juice into a collins glass filled with ice cubes. Stir well. Fill with tonic water. Garnish with a lime wedge, and serve.", @@ -83370,7 +83370,7 @@ "tonic water" ], "title": "Classy Bitch recipe", - "url": "http://www.drinksmixer.com/drink8908.html" + "url": "https://www.drinksmixer.com/drink8908.html" }, { "directions": "Pour the lemon vodka, lemon rum, tequila and gin into a cocktail shaker half-filled with ice cubes. Shake well, and strain into a highball glass filled with ice cubes. Top with lemon-lime soda, garnish with a lime wedge, and serve.", @@ -83382,7 +83382,7 @@ "lemon-lime soda" ], "title": "Clear Cell recipe", - "url": "http://www.drinksmixer.com/drink8909.html" + "url": "https://www.drinksmixer.com/drink8909.html" }, { "directions": "Pour all ingredients into a cocktail shaker half-filled with ice cubes. Shake well, strain into a cocktail glass, and serve.", @@ -83394,7 +83394,7 @@ "superfine sugar" ], "title": "Cloister recipe", - "url": "http://www.drinksmixer.com/drink8910.html" + "url": "https://www.drinksmixer.com/drink8910.html" }, { "directions": "Combine all ingredients in a blender; blend until thick. Pour into an old-fashioned glass. Garnish with a maraschino cherry and a slice of lime, and serve.", @@ -83404,7 +83404,7 @@ "lemon-lime soda" ], "title": "Citrus Mist Colada recipe", - "url": "http://www.drinksmixer.com/drink8911.html" + "url": "https://www.drinksmixer.com/drink8911.html" }, { "directions": "Mix the banana, peach, and strawberry schnapps. Shake and strain into a double shot glass. Add a drop of grenadine and let it sink to the bottom. Add a splash of orange juice and let it swirl. If done properly, it will look like a cloudy sunset, hence the name.", @@ -83416,7 +83416,7 @@ "grenadine syrup" ], "title": "Cloud 99 recipe", - "url": "http://www.drinksmixer.com/drink8912.html" + "url": "https://www.drinksmixer.com/drink8912.html" }, { "directions": "Pour both ingredients into a highball glass filled with ice cubes. Stir well, garnish with an orange wedge, and serve.", @@ -83425,7 +83425,7 @@ "club soda" ], "title": "Club Haus recipe", - "url": "http://www.drinksmixer.com/drink8913.html" + "url": "https://www.drinksmixer.com/drink8913.html" }, { "directions": "Pour the Cocoribe, amaretto almond liqueur and lemon juice into a cocktail shaker half-filled with ice cubes. Shake well, strain into a sugar-rimmed cocktail glass, and serve.", @@ -83435,7 +83435,7 @@ "lemon juice" ], "title": "Coco Amor recipe", - "url": "http://www.drinksmixer.com/drink8914.html" + "url": "https://www.drinksmixer.com/drink8914.html" }, { "directions": "Pour the rums, vodka, creme de bananes, pineapple juice, coconut cream and sugar syrup into a cocktail shaker half-filled with ice cubes. Shake well, and strain into a chilled highball glass. Garnish with a pineapple wedge, and serve.", @@ -83449,7 +83449,7 @@ "sugar syrup" ], "title": "Coco Loco recipe", - "url": "http://www.drinksmixer.com/drink8915.html" + "url": "https://www.drinksmixer.com/drink8915.html" }, { "directions": "Saw off the top of the coconut and pour the coconut water into a glass. Add one cup of crushed ice to the coconut and pour in all the other ingredients (including the coconut water). Squeeze in a half lime, and drop the shell in. Stir well. Add a straw and a paper umbrella, and serve.", @@ -83463,7 +83463,7 @@ "coconut" ], "title": "Coco Loco #2 recipe", - "url": "http://www.drinksmixer.com/drink8916.html" + "url": "https://www.drinksmixer.com/drink8916.html" }, { "directions": "Pour all ingredients into a blender with one cup of crushed ice. Blend until smooth. Pour into a wine glass, and serve.", @@ -83475,7 +83475,7 @@ "cream" ], "title": "Coco-Mocha Alexander recipe", - "url": "http://www.drinksmixer.com/drink8917.html" + "url": "https://www.drinksmixer.com/drink8917.html" }, { "directions": "Pour all ingredients into a cocktail shaker half-filled with crushed ice. Shake well. Strain into a highball glass almost filled with ice cubes. Garnish with toasted coconut, and serve.", @@ -83488,7 +83488,7 @@ "grenadine syrup" ], "title": "Coconut Climber recipe", - "url": "http://www.drinksmixer.com/drink8918.html" + "url": "https://www.drinksmixer.com/drink8918.html" }, { "directions": "Pour the ingredients into a cocktail shaker with one cup of crushed ice. Shake well for 10-15 seconds. Pour into a pina colada glass, garnish with a pineapple spear, and serve.", @@ -83498,7 +83498,7 @@ "pineapple juice" ], "title": "Coconut Colada recipe", - "url": "http://www.drinksmixer.com/drink8919.html" + "url": "https://www.drinksmixer.com/drink8919.html" }, { "directions": "Drain the coconuts and save the liquid. Scoop out the flesh and place in a blender. Add white rum, creme de bananes and milk. Add 3-4 oz. of crushed ice and blend until smooth. Pour back into the coconut shells. Add more milk (if needed) until a nice consistancy.", @@ -83509,7 +83509,7 @@ "milk" ], "title": "Coconut Shell recipe", - "url": "http://www.drinksmixer.com/drink8920.html" + "url": "https://www.drinksmixer.com/drink8920.html" }, { "directions": "Pour all ingredients into a blender with half a cup of crushed ice. Blend for 15 seconds. Pour into a medium-sized cocktail glass, and serve.", @@ -83520,7 +83520,7 @@ "maraschino liqueur" ], "title": "Coconut Tequila recipe", - "url": "http://www.drinksmixer.com/drink8921.html" + "url": "https://www.drinksmixer.com/drink8921.html" }, { "directions": "Pour all ingredients into a highball glass almost filled with ice cubes. Stir well, and serve.", @@ -83530,7 +83530,7 @@ "milk" ], "title": "Coffee Fantasy recipe", - "url": "http://www.drinksmixer.com/drink8922.html" + "url": "https://www.drinksmixer.com/drink8922.html" }, { "directions": "Pour all ingredients into a cocktail shaker half-filled with cracked ice. Shake well, and strain into a chilled cocktail glass. Garnish with coffee beans, and serve.", @@ -83540,7 +83540,7 @@ "Frangelico\u00ae hazelnut liqueur" ], "title": "Coffee Lover's Martini recipe", - "url": "http://www.drinksmixer.com/drink8923.html" + "url": "https://www.drinksmixer.com/drink8923.html" }, { "directions": "Pour all ingredients into a cocktail shaker half-filled with ice cubes. Shake well. Strain into an old-fashined glass 1/2 filled with ice cubes, and serve.", @@ -83552,7 +83552,7 @@ "lemon juice" ], "title": "Cognac Coupling recipe", - "url": "http://www.drinksmixer.com/drink8924.html" + "url": "https://www.drinksmixer.com/drink8924.html" }, { "directions": "Pour the rum into a beer mug half-filled with ice cubes. Add Kahlua coffee liqueur, half-and-half and Coca-Cola. Stir lightly, and serve.", @@ -83563,7 +83563,7 @@ "Coca-Cola\u00ae" ], "title": "Coke Sucker recipe", - "url": "http://www.drinksmixer.com/drink8925.html" + "url": "https://www.drinksmixer.com/drink8925.html" }, { "directions": "Pour all ingredients into an old-fashioned glass 1/2 filled with ice cubes. Garnish with an apple slice, and serve.", @@ -83573,7 +83573,7 @@ "cranberry juice" ], "title": "Colby's Delight recipe", - "url": "http://www.drinksmixer.com/drink8926.html" + "url": "https://www.drinksmixer.com/drink8926.html" }, { "directions": "Pour all ingredients into a mixing glass half-filled with ice cubes. Stir well. Strain into a cocktail glass, and serve.", @@ -83583,7 +83583,7 @@ "brandy" ], "title": "Cold Deck Cocktail recipe", - "url": "http://www.drinksmixer.com/drink8927.html" + "url": "https://www.drinksmixer.com/drink8927.html" }, { "directions": "Pour the Surge and vodka into a collins glass. Add a few ice cubes, and stir well. Add the sugar gradually while sitrring carefully, and serve.", @@ -83593,7 +83593,7 @@ "sugar" ], "title": "Cold Green Slime recipe", - "url": "http://www.drinksmixer.com/drink8928.html" + "url": "https://www.drinksmixer.com/drink8928.html" }, { "directions": "Combine all ingredients in a blender with half a cup of crushed ice. Blend until smooth. Pour into a collins glass, sprinkle with nutmeg, and serve.", @@ -83607,7 +83607,7 @@ "egg" ], "title": "Coffee Egg Nog recipe", - "url": "http://www.drinksmixer.com/drink8929.html" + "url": "https://www.drinksmixer.com/drink8929.html" }, { "directions": "Dissolve the instant coffee in the water in an old-fashioned glass. Gradually stir in the sugar, the bitters and the bourbon whiskey. Add ice, and top with club soda. Garnish with a maraschino cherry and a slice of orange, and serve.", @@ -83620,7 +83620,7 @@ "coffee" ], "title": "Coffee Old-Fashioned recipe", - "url": "http://www.drinksmixer.com/drink8930.html" + "url": "https://www.drinksmixer.com/drink8930.html" }, { "directions": "Pour both ingredients into a cocktail shaker half-filled with cracked ice. Shake well, and strain into a chilled cocktail glass. Garnish with a twist of lemon, and serve.", @@ -83629,7 +83629,7 @@ "honey vodka" ], "title": "Cold Comfort Martini recipe", - "url": "http://www.drinksmixer.com/drink8931.html" + "url": "https://www.drinksmixer.com/drink8931.html" }, { "directions": "Pour all ingredients into a cocktail shaker half-filled with ice cubes. Shake well, strain into a highball glass, and serve.", @@ -83639,7 +83639,7 @@ "white creme de cacao" ], "title": "Cold Kiss recipe", - "url": "http://www.drinksmixer.com/drink8932.html" + "url": "https://www.drinksmixer.com/drink8932.html" }, { "directions": "Pour the bourbon whiskey into a collins glass filled with ice cubes. Add lemon juice. Fill 3/4 of the way with sweetened iced tea (prepared). Top with 7-Up. Stir briefly, and serve.", @@ -83650,7 +83650,7 @@ "7-Up\u00ae soda" ], "title": "Colonel Dan's Ice Tea recipe", - "url": "http://www.drinksmixer.com/drink8933.html" + "url": "https://www.drinksmixer.com/drink8933.html" }, { "directions": "Pour all ingredients into a cocktail shaker half-filled with ice cubes. Shake well, and strain into a chilled cocktail glass. Garnish with an orange twist, and serve.", @@ -83660,7 +83660,7 @@ "orange bitters" ], "title": "Colony Club Martini recipe", - "url": "http://www.drinksmixer.com/drink8934.html" + "url": "https://www.drinksmixer.com/drink8934.html" }, { "directions": "Pour the tequila, coffee liqueur and Coca-cola into a cocktail shaker half-filled with ice cubes. Shake well, and strain into a highball glass filled with ice cubes. Fill with milk, and serve.", @@ -83671,7 +83671,7 @@ "milk" ], "title": "Colorado Motherfucker recipe", - "url": "http://www.drinksmixer.com/drink8935.html" + "url": "https://www.drinksmixer.com/drink8935.html" }, { "directions": "Pour all ingredients into a highball glass almost filled with ice cubes. Stir well, and serve.", @@ -83681,7 +83681,7 @@ "grapefruit juice" ], "title": "Colorado Skies recipe", - "url": "http://www.drinksmixer.com/drink8936.html" + "url": "https://www.drinksmixer.com/drink8936.html" }, { "directions": "Pour all ingredients into a cocktail shaker half-filled with ice cubes. Shake well, strain into a chilled cocktail glass, and serve.", @@ -83693,7 +83693,7 @@ "Angostura\u00ae bitters" ], "title": "Columbia Cocktail recipe", - "url": "http://www.drinksmixer.com/drink8937.html" + "url": "https://www.drinksmixer.com/drink8937.html" }, { "directions": "Pour all ingredients into a highball glass filled with ice cubes. Stir well, and serve.", @@ -83705,7 +83705,7 @@ "grenadine syrup" ], "title": "Come to Me recipe", - "url": "http://www.drinksmixer.com/drink8938.html" + "url": "https://www.drinksmixer.com/drink8938.html" }, { "directions": "Pour both ingredients into an old-fashioned glass. Stir briefly, and serve.", @@ -83714,7 +83714,7 @@ "Frangelico\u00ae hazelnut liqueur" ], "title": "Comfortable Brother recipe", - "url": "http://www.drinksmixer.com/drink8939.html" + "url": "https://www.drinksmixer.com/drink8939.html" }, { "directions": "Pour the vodka, southern comfort and peach schnapps into a highball glass. Fill mostly with orange juice, and serve.", @@ -83725,7 +83725,7 @@ "orange juice" ], "title": "Comfortable Fuzzy Screw recipe", - "url": "http://www.drinksmixer.com/drink8940.html" + "url": "https://www.drinksmixer.com/drink8940.html" }, { "directions": "Pour the vodka, southern comfort, peach schnapps and galliano into a highball glass. Fill with orange juice, and serve.", @@ -83737,7 +83737,7 @@ "orange juice" ], "title": "Comfortable Fuzzy Screw Against the Wall recipe", - "url": "http://www.drinksmixer.com/drink8941.html" + "url": "https://www.drinksmixer.com/drink8941.html" }, { "directions": "Pour both ingredients into a highball glass with/without a couple of ice cubes, and serve.", @@ -83746,7 +83746,7 @@ "Mountain Dew\u00ae citrus soda" ], "title": "Comfortably Numb recipe", - "url": "http://www.drinksmixer.com/drink8942.html" + "url": "https://www.drinksmixer.com/drink8942.html" }, { "directions": "Pour the bourbon whiskey, triple sec, pernod and lime juice into a cocktail shaker half-filled with ice cubes. Shake well, strain into a cocktail glass, and serve.", @@ -83757,7 +83757,7 @@ "lime juice" ], "title": "Commando Cocktail recipe", - "url": "http://www.drinksmixer.com/drink8943.html" + "url": "https://www.drinksmixer.com/drink8943.html" }, { "directions": "Pour all ingredients into a highball glass almost filled with ice cubes, and serve.", @@ -83767,7 +83767,7 @@ "Sprite\u00ae soda" ], "title": "Concoction Cocktail recipe", - "url": "http://www.drinksmixer.com/drink8944.html" + "url": "https://www.drinksmixer.com/drink8944.html" }, { "directions": "Pour the peppermint schnapps and brown creme de cacao into a cocktail shaker half-filled with cracked ice. Shake well. Strain into a highball glass filled with ice cubes, slowly fill with soda water, and serve.", @@ -83777,7 +83777,7 @@ "soda water" ], "title": "Coney Island Baby recipe", - "url": "http://www.drinksmixer.com/drink8945.html" + "url": "https://www.drinksmixer.com/drink8945.html" }, { "directions": "Pour the vodka and DeKuyper Cheri-Beri Pucker schnapps into a highball glass filled with ice. Stir well. Add cola, preferably chilled, and serve.", @@ -83787,7 +83787,7 @@ "cola" ], "title": "Connie Cola recipe", - "url": "http://www.drinksmixer.com/drink8946.html" + "url": "https://www.drinksmixer.com/drink8946.html" }, { "directions": "Pour all ingredients into a cocktail shaker half-filled with ice cubes. Shake well. Strain into a collins glass, and serve.", @@ -83799,7 +83799,7 @@ "Bailey's\u00ae Irish cream" ], "title": "Connolly's Irish Connection recipe", - "url": "http://www.drinksmixer.com/drink8947.html" + "url": "https://www.drinksmixer.com/drink8947.html" }, { "directions": "Combine all ingredients (except curacao) in a cocktail shaker half-filled with ice cubes. Shake well. Pour into a collins glass and float curacao on top. Garnish with pineapple and orange slices and a maraschino cherry, and serve.", @@ -83811,7 +83811,7 @@ "sweet and sour mix" ], "title": "Cool Carlos recipe", - "url": "http://www.drinksmixer.com/drink8948.html" + "url": "https://www.drinksmixer.com/drink8948.html" }, { "directions": "Pour all ingredients into a blender half-filled with ice. Blend until thick. Pour into a parfait glass. Garnish with a melon wedge and a maraschino cherry, and serve.", @@ -83824,7 +83824,7 @@ "orange juice" ], "title": "Cool Operator recipe", - "url": "http://www.drinksmixer.com/drink8949.html" + "url": "https://www.drinksmixer.com/drink8949.html" }, { "directions": "Pour all ingredients into a cocktail shaker half-filled with ice cubes. Shake well, strain into a cocktail glass, and serve.", @@ -83834,7 +83834,7 @@ "peppermint schnapps" ], "title": "Cool Yule Martini recipe", - "url": "http://www.drinksmixer.com/drink8950.html" + "url": "https://www.drinksmixer.com/drink8950.html" }, { "directions": "Pour both ingredients into a collins glass, stir, and serve.", @@ -83843,7 +83843,7 @@ "root beer" ], "title": "Corbob recipe", - "url": "http://www.drinksmixer.com/drink8951.html" + "url": "https://www.drinksmixer.com/drink8951.html" }, { "directions": "Pour Bailey's irish cream and butterscotch schnapps into a cocktail shaker half-filled with ice cubes. Add a couple of dashes of cinnamon. Shake well, and strain into a cocktail glass. Dust wth cinnamon, and serve.", @@ -83853,7 +83853,7 @@ "cinnamon" ], "title": "Corey's Oatmeal Cookie recipe", - "url": "http://www.drinksmixer.com/drink8952.html" + "url": "https://www.drinksmixer.com/drink8952.html" }, { "directions": "Pour all ingredients into a cocktail shaker half-filled with ice cubes. Shake well, and strain into an old-fashioned glass. Garnish with a maraschino cherry, and serve.", @@ -83864,7 +83864,7 @@ "Kirschwasser\u00ae cherry brandy" ], "title": "Coronado Cocktail recipe", - "url": "http://www.drinksmixer.com/drink8953.html" + "url": "https://www.drinksmixer.com/drink8953.html" }, { "directions": "Pour all ingredients into a cocktail glass. Drop in two maraschino cherries, and serve.", @@ -83874,7 +83874,7 @@ "grenadine syrup" ], "title": "Cosmic Kool-Aid recipe", - "url": "http://www.drinksmixer.com/drink8954.html" + "url": "https://www.drinksmixer.com/drink8954.html" }, { "directions": "Pour the vodka, triple sec, cranberry juice and lime juice into a cocktail shaker half-filled with ice cubes. Shake well, strain into a cocktail glass, and serve.", @@ -83885,7 +83885,7 @@ "lime juice" ], "title": "Cosmo recipe", - "url": "http://www.drinksmixer.com/drink8955.html" + "url": "https://www.drinksmixer.com/drink8955.html" }, { "directions": "Pour all ingredients into a cocktail shaker half-filled with ice cubes. Shake well, strain into a cocktail glass, and serve.", @@ -83896,7 +83896,7 @@ "gomme syrup" ], "title": "Cossack Cocktail recipe", - "url": "http://www.drinksmixer.com/drink8956.html" + "url": "https://www.drinksmixer.com/drink8956.html" }, { "directions": "Pour all ingredients into a cocktail shaker half-filled with ice cubes. Shake well, strain into a cocktail glass, and serve.", @@ -83908,7 +83908,7 @@ "rum" ], "title": "Cotillion Cocktail recipe", - "url": "http://www.drinksmixer.com/drink8957.html" + "url": "https://www.drinksmixer.com/drink8957.html" }, { "directions": "Pour gin and sugar together with ice in a cocktail shaker. Shake well, and strain over ice cubes in a champagne flute. Fill with champagne, and serve.", @@ -83918,7 +83918,7 @@ "Champagne" ], "title": "Count Currey recipe", - "url": "http://www.drinksmixer.com/drink8958.html" + "url": "https://www.drinksmixer.com/drink8958.html" }, { "directions": "Pour the vodka, creme de cacao and lemon juice into a cocktail shaker half-filled with ice cubes. Shake well, and strain into a cocktail glass. Garnish with a half-slice of lemon, and serve.", @@ -83928,7 +83928,7 @@ "lemon juice" ], "title": "Count Stroganoff recipe", - "url": "http://www.drinksmixer.com/drink8959.html" + "url": "https://www.drinksmixer.com/drink8959.html" }, { "directions": "Pour all ingredients into a blender. Add half a cup of crushed ice, and blend well. Pour into a red wine glass, and serve.", @@ -83939,7 +83939,7 @@ "coconut cream" ], "title": "Country and Western Cocktail recipe", - "url": "http://www.drinksmixer.com/drink8960.html" + "url": "https://www.drinksmixer.com/drink8960.html" }, { "directions": "Pour the amaretto, Southern Comfort, Malibu rum and blue curacao into a cocktail shaker 3/4 filled with ice cubes. Add juices. Shake well. Strain into a highball glass, and serve.", @@ -83953,7 +83953,7 @@ "pineapple juice" ], "title": "Courage Cocktail recipe", - "url": "http://www.drinksmixer.com/drink8961.html" + "url": "https://www.drinksmixer.com/drink8961.html" }, { "directions": "Pour both ingredients into a cocktail shaker half-filled with ice cubes. Shake well, strain into a cocktail glass, and serve.", @@ -83962,7 +83962,7 @@ "light cream" ], "title": "Cowboy Cocktail recipe", - "url": "http://www.drinksmixer.com/drink8962.html" + "url": "https://www.drinksmixer.com/drink8962.html" }, { "directions": "Pour the tequila and lime juice into a collins glass filled with ice cubes. Fill with lemonade, and stir well. Garnish with slices of lemon and lime, and serve.", @@ -83972,7 +83972,7 @@ "lemonade" ], "title": "Cowgirl's Prayer recipe", - "url": "http://www.drinksmixer.com/drink8963.html" + "url": "https://www.drinksmixer.com/drink8963.html" }, { "directions": "Pour all ingredients into an old-fashioned glass almost filled with ice cubes. Garnish with a slice of both lemon and lime, and serve.", @@ -83982,7 +83982,7 @@ "Sprite\u00ae soda" ], "title": "Cracked Chandelier recipe", - "url": "http://www.drinksmixer.com/drink8964.html" + "url": "https://www.drinksmixer.com/drink8964.html" }, { "directions": "Pour all ingredients into a collins glass half-filled with ice cubes. Stir well, and serve.", @@ -83992,7 +83992,7 @@ "Dr. Pepper\u00ae soda" ], "title": "Crackhead Slammer recipe", - "url": "http://www.drinksmixer.com/drink8965.html" + "url": "https://www.drinksmixer.com/drink8965.html" }, { "directions": "Pour both ingredients into a cocktail shaker half-filled with ice cubes. Shake well, strain into an old-fashioned glass, and serve.", @@ -84001,7 +84001,7 @@ "cranberry juice" ], "title": "Cranapple Cocktail recipe", - "url": "http://www.drinksmixer.com/drink8966.html" + "url": "https://www.drinksmixer.com/drink8966.html" }, { "directions": "Pour the rum, peppermint schnapps, collins mix and cranberry juice into a highball glass filled with ice cubes. Stir well. Garnish with a slice of lime, and serve.", @@ -84012,7 +84012,7 @@ "cranberry juice" ], "title": "Cranberry Kiss #2 recipe", - "url": "http://www.drinksmixer.com/drink8967.html" + "url": "https://www.drinksmixer.com/drink8967.html" }, { "directions": "Pour both ingredients into a cocktail shaker half-filled with ice cubes. Shake well, strain into an old-fashioned or rocks glass, and serve.", @@ -84021,7 +84021,7 @@ "Wild Spirit\u00ae chocolate raspberry liqueur" ], "title": "Cranberry Zambonee recipe", - "url": "http://www.drinksmixer.com/drink8968.html" + "url": "https://www.drinksmixer.com/drink8968.html" }, { "directions": "Pour DeKuyper wild strawberry liqueur, Finlandia cranberry vodka, Soho liqueur and apple juice into a cocktail shaker half-filled with ice cubes. Shake well, and strain into a hurricane glass. Fill with Schweppes Russian. Garnish with a stick of cucumber, a maraschino cherry, a slice of lemon and pineapple leaves.", @@ -84033,7 +84033,7 @@ "Schweppes\u00ae Russian tonic water" ], "title": "Cransoma recipe", - "url": "http://www.drinksmixer.com/drink8969.html" + "url": "https://www.drinksmixer.com/drink8969.html" }, { "directions": "Pour both ingredients into a cocktail shaker half-filled with ice cubes. Shake well. Strain into a cocktail glass over crushed ice, and serve.", @@ -84042,7 +84042,7 @@ "cranberry juice" ], "title": "Crapton recipe", - "url": "http://www.drinksmixer.com/drink8970.html" + "url": "https://www.drinksmixer.com/drink8970.html" }, { "directions": "Pour all ingredients into a highball glass filled. Stir well. Garnish with a maraschino cherry, and serve.", @@ -84053,7 +84053,7 @@ "lemon juice" ], "title": "Crazy Finn recipe", - "url": "http://www.drinksmixer.com/drink8971.html" + "url": "https://www.drinksmixer.com/drink8971.html" }, { "directions": "Pour all ingredients into a cocktail shaker half-filled with ice cubes. Shake well, strain into a cocktail glass, and serve.", @@ -84064,7 +84064,7 @@ "cranberry juice" ], "title": "Cosmotequila recipe", - "url": "http://www.drinksmixer.com/drink8972.html" + "url": "https://www.drinksmixer.com/drink8972.html" }, { "directions": "Pour all ingredients into a collins glass filled with ice cubes. Stir well, and serve.", @@ -84076,7 +84076,7 @@ "sugar" ], "title": "Crazy Orgasm recipe", - "url": "http://www.drinksmixer.com/drink8973.html" + "url": "https://www.drinksmixer.com/drink8973.html" }, { "directions": "Pour all ingredients into a cocktail shaker half-filled with ice cubes. Shake well, and strain into a cocktail glass. Garnish with a maraschino cherry, and serve.", @@ -84087,7 +84087,7 @@ "cranberry juice" ], "title": "Crazy Parrot recipe", - "url": "http://www.drinksmixer.com/drink8974.html" + "url": "https://www.drinksmixer.com/drink8974.html" }, { "directions": "Pour the Jack Daniel's whiskey and amaretto into a highball glass almost filled with ice cubes. Add cream soda. Stir well, and serve.", @@ -84097,7 +84097,7 @@ "cream soda" ], "title": "Cream of Jack recipe", - "url": "http://www.drinksmixer.com/drink8975.html" + "url": "https://www.drinksmixer.com/drink8975.html" }, { "directions": "Pour the rum, light cream and powdered sugar into a cocktail shaker half-filled with cracked ice. Shake well, and strain over 2 or 3 ice cubes in a highball glass. Fill with club soda, and serve.", @@ -84108,7 +84108,7 @@ "club soda" ], "title": "Cream Puff recipe", - "url": "http://www.drinksmixer.com/drink8976.html" + "url": "https://www.drinksmixer.com/drink8976.html" }, { "directions": "Pour both ingredients into an old-fashioned glass, and serve.", @@ -84117,7 +84117,7 @@ "Bushmills\u00ae Irish whiskey" ], "title": "Creamy Bush recipe", - "url": "http://www.drinksmixer.com/drink8977.html" + "url": "https://www.drinksmixer.com/drink8977.html" }, { "directions": "Add all ingredients to an old-fashioned glass. Stir well, and serve.", @@ -84128,7 +84128,7 @@ "cocoa powder" ], "title": "Creamy Crotch recipe", - "url": "http://www.drinksmixer.com/drink8978.html" + "url": "https://www.drinksmixer.com/drink8978.html" }, { "directions": "Pour the vodka, Malibu rum, peach schnapps, pineapple juice and grenadine into a cocktail shaker half-filled with ice cubes. Add the whipped cream, and shake vigorously until frothy. Pour into a small highball glass or equivalent, and serve.", @@ -84141,7 +84141,7 @@ "whipped cream" ], "title": "Creamy Sex on the Beach recipe", - "url": "http://www.drinksmixer.com/drink8979.html" + "url": "https://www.drinksmixer.com/drink8979.html" }, { "directions": "Pour all ingredients into a highball glass filled with ice cubes. Stir well, and serve.", @@ -84151,7 +84151,7 @@ "vanilla extract" ], "title": "Creamy Vodkanilla recipe", - "url": "http://www.drinksmixer.com/drink8980.html" + "url": "https://www.drinksmixer.com/drink8980.html" }, { "directions": "Pour all ingredients into a cocktail shaker half-filled with ice cubes. Shake well, strain into an old-fashioned glass, and serve.", @@ -84162,7 +84162,7 @@ "light cream" ], "title": "Creme de Cafe recipe", - "url": "http://www.drinksmixer.com/drink8981.html" + "url": "https://www.drinksmixer.com/drink8981.html" }, { "directions": "Pour all ingredients into a cocktail shaker half-filled with ice cubes. Shake well, strain into a cocktail glass, and serve.", @@ -84174,7 +84174,7 @@ "egg" ], "title": "Creme de Gin recipe", - "url": "http://www.drinksmixer.com/drink8982.html" + "url": "https://www.drinksmixer.com/drink8982.html" }, { "directions": "Pour all ingredients into a mixing glass half-filled with cracked ice. Stir well. Strain into a cocktail glass. Garnish with both a red and green maraschino cherry, and serve.", @@ -84184,7 +84184,7 @@ "grenadine syrup" ], "title": "Creole Lady recipe", - "url": "http://www.drinksmixer.com/drink8983.html" + "url": "https://www.drinksmixer.com/drink8983.html" }, { "directions": "Pour the gin, grenadine and lime juice into a cocktail shaker half-filled with ice cubes. Shake well, and strain into a chilled cocktail glass. Float port on top, and serve.", @@ -84195,7 +84195,7 @@ "grenadine syrup" ], "title": "Crimson Cocktail recipe", - "url": "http://www.drinksmixer.com/drink8984.html" + "url": "https://www.drinksmixer.com/drink8984.html" }, { "directions": "Pour the gin and lemon juice into a cocktail shaker half-filled with ice cubes. Shake well. Strain into a cocktail glass. Drop the grenadine into the center of the drink and float port on top. Garnish with a maraschino cherry, and serve.", @@ -84206,7 +84206,7 @@ "tawny port" ], "title": "Crimson Sunset recipe", - "url": "http://www.drinksmixer.com/drink8985.html" + "url": "https://www.drinksmixer.com/drink8985.html" }, { "directions": "Pour all ingredients into a cocktail shaker half-filled with ice cubes. Shake well, strain into a highball glass filled with ice cubes, and serve.", @@ -84216,7 +84216,7 @@ "pineapple juice" ], "title": "Cruiser Cocktail recipe", - "url": "http://www.drinksmixer.com/drink8986.html" + "url": "https://www.drinksmixer.com/drink8986.html" }, { "directions": "Pour all ingredients into a cocktail shaker half-filled with ice cubes. Shake well, strain into a sugar-rimmed cocktail glass, and serve.", @@ -84228,7 +84228,7 @@ "bitters" ], "title": "Crusta recipe", - "url": "http://www.drinksmixer.com/drink8987.html" + "url": "https://www.drinksmixer.com/drink8987.html" }, { "directions": "Pour the whiskey, vodka, and Kahlua coffee liqueur into a mixing glass, and stir. Heat the Bailey's irish cream, tequila and rum over a medium flame in a saucepan. Pour into a heat-proof cup. Add the contents of the mixing glass. Add tomato juice, and stir well. Top with grenadine. Garnish with a celery stalk and a green onion, and serve.", @@ -84243,7 +84243,7 @@ "tomato juice" ], "title": "Crying Game recipe", - "url": "http://www.drinksmixer.com/drink8988.html" + "url": "https://www.drinksmixer.com/drink8988.html" }, { "directions": "Pour vodka and creme de almond into a hurricane glass filled with ice cubes. Fill with pineapple juice. Garnish with a pineapple wedge and a maraschino cherry, and serve.", @@ -84253,7 +84253,7 @@ "pineapple juice" ], "title": "Cuban Breeze recipe", - "url": "http://www.drinksmixer.com/drink8989.html" + "url": "https://www.drinksmixer.com/drink8989.html" }, { "directions": "Pour vodka and amaretto into a hurricane glass filled with ice cubes. Fill with pineapple juice. Garnish with a pineapple wedge and a maraschino cherry, and serve.", @@ -84263,7 +84263,7 @@ "pineapple juice" ], "title": "Cuban Breeze #2 recipe", - "url": "http://www.drinksmixer.com/drink8990.html" + "url": "https://www.drinksmixer.com/drink8990.html" }, { "directions": "Pour both ingredients into a cocktail shaker half-filled with cracked ice. Shake well. Strain into a chilled sugar-rimmed cocktail glass. Garnish with a twist of lime, and serve.", @@ -84272,7 +84272,7 @@ "dry vermouth" ], "title": "Cuban Martini recipe", - "url": "http://www.drinksmixer.com/drink8991.html" + "url": "https://www.drinksmixer.com/drink8991.html" }, { "directions": "Pour both ingredients into a highball glass filled with ice cubes. Stir, and serve.", @@ -84281,7 +84281,7 @@ "orange juice" ], "title": "Cuban Screw recipe", - "url": "http://www.drinksmixer.com/drink8992.html" + "url": "https://www.drinksmixer.com/drink8992.html" }, { "directions": "Pour all ingredients into a cocktail shaker half-filled with ice cubes. Shake well, strain into a cocktail glass, and serve.", @@ -84291,7 +84291,7 @@ "lime juice" ], "title": "Cuban Sour recipe", - "url": "http://www.drinksmixer.com/drink8993.html" + "url": "https://www.drinksmixer.com/drink8993.html" }, { "directions": "Pour all ingredients into a cocktail shaker half-filled with ice cubes. Shake well, strain into an old-fashioned glass, and serve.", @@ -84301,7 +84301,7 @@ "lime juice" ], "title": "Cuff and Buttons recipe", - "url": "http://www.drinksmixer.com/drink8994.html" + "url": "https://www.drinksmixer.com/drink8994.html" }, { "directions": "Pour both ingredients into a champagne flute, stir, and serve.", @@ -84310,7 +84310,7 @@ "Champagne" ], "title": "Culloden recipe", - "url": "http://www.drinksmixer.com/drink8995.html" + "url": "https://www.drinksmixer.com/drink8995.html" }, { "directions": "Pour all ingredients into a cocktail shaker half-filled with ice cubes. Shake well, strain into a cocktail glass, and serve.", @@ -84321,7 +84321,7 @@ "lemon juice" ], "title": "Culross recipe", - "url": "http://www.drinksmixer.com/drink8996.html" + "url": "https://www.drinksmixer.com/drink8996.html" }, { "directions": "Pour the milk into a blender with some crushed ice. Add the white chocolate liqueur, Kahlua coffee liqueur, whiskey, Pepsi and banana. Blend until smooth. Pour into a large hurricane glass, and serve.", @@ -84334,7 +84334,7 @@ "banana" ], "title": "Cum in a Blender recipe", - "url": "http://www.drinksmixer.com/drink8997.html" + "url": "https://www.drinksmixer.com/drink8997.html" }, { "directions": "Pour all ingredients into a blender. Blend until smooth. Pour into a cocktail glass, and serve.", @@ -84344,7 +84344,7 @@ "cream" ], "title": "Cum in your Mouth recipe", - "url": "http://www.drinksmixer.com/drink8998.html" + "url": "https://www.drinksmixer.com/drink8998.html" }, { "directions": "Pour both ingredients into a highball glass filled with ice cubes. Stir well, and serve.", @@ -84353,7 +84353,7 @@ "Sprite\u00ae soda" ], "title": "Cuntrat Supreme recipe", - "url": "http://www.drinksmixer.com/drink8999.html" + "url": "https://www.drinksmixer.com/drink8999.html" }, { "directions": "Pour both ingredients into a slightly chilled red wine glass. Stir briefly, and serve.", @@ -84362,7 +84362,7 @@ "Grand Marnier\u00ae orange liqueur" ], "title": "Curielle recipe", - "url": "http://www.drinksmixer.com/drink9000.html" + "url": "https://www.drinksmixer.com/drink9000.html" }, { "directions": "Pour all ingredients into an old-fashioned glass 1/4 filled with ice cubes. Stir well, and serve.", @@ -84375,7 +84375,7 @@ "orange bitters" ], "title": "Curled Satan's Whiskers recipe", - "url": "http://www.drinksmixer.com/drink9001.html" + "url": "https://www.drinksmixer.com/drink9001.html" }, { "directions": "Pour all ingredients into a cocktail shaker half-filled with ice cubes. Shake well, strain into a highball glass, and serve.", @@ -84385,7 +84385,7 @@ "orange juice" ], "title": "Currant Fuzzy Navel recipe", - "url": "http://www.drinksmixer.com/drink9002.html" + "url": "https://www.drinksmixer.com/drink9002.html" }, { "directions": "Shake all ingredients well in a cocktail shaker half-filled with ice cubes. Strain into a large wine glass. Garnish with a slice of pineapple, a slice of orange and a sprig of mint.", @@ -84395,7 +84395,7 @@ "Curacao orange liqueur" ], "title": "Cutty Cobbler recipe", - "url": "http://www.drinksmixer.com/drink9003.html" + "url": "https://www.drinksmixer.com/drink9003.html" }, { "directions": "Combine the Cutty Sark whisky, lemon juice and sugar in a highball glass filled with cracked ice. Stir well. Fill with club soda, and stir again briefly. Garnish with a slice of lemon, and serve.", @@ -84406,7 +84406,7 @@ "club soda" ], "title": "Cutty Collins recipe", - "url": "http://www.drinksmixer.com/drink9004.html" + "url": "https://www.drinksmixer.com/drink9004.html" }, { "directions": "Pour the whisky and lime juice into a highball glass filled with ice. Stir well. Fill with club soda, and stir again briefly. Garnish with a twist of lime, and serve.", @@ -84416,7 +84416,7 @@ "club soda" ], "title": "Cutty Rickey recipe", - "url": "http://www.drinksmixer.com/drink9005.html" + "url": "https://www.drinksmixer.com/drink9005.html" }, { "directions": "Layer both ingredients in a cocktail glass, and serve.", @@ -84425,7 +84425,7 @@ "Blue Curacao liqueur" ], "title": "Cyclone Attack recipe", - "url": "http://www.drinksmixer.com/drink9006.html" + "url": "https://www.drinksmixer.com/drink9006.html" }, { "directions": "Pour the Cynar and lemon syrup into a beer mug. Fill with beer, stir, and serve.", @@ -84435,7 +84435,7 @@ "beer" ], "title": "Cynar Biere recipe", - "url": "http://www.drinksmixer.com/drink9007.html" + "url": "https://www.drinksmixer.com/drink9007.html" }, { "directions": "Pour all ingredients into a cocktail shaker half-filled with ice cubes. Shake well, strain into a cocktail glass, and serve.", @@ -84446,7 +84446,7 @@ "Italian vermouth" ], "title": "Czarina recipe", - "url": "http://www.drinksmixer.com/drink9008.html" + "url": "https://www.drinksmixer.com/drink9008.html" }, { "directions": "Chill all ingredients, as well as an 8-oz wine glass, prior to serving. Pour vodka and maraschino liqueur into the glass, and fill with champagne. Garnish with a strawberry, and serve.", @@ -84456,7 +84456,7 @@ "Brut\u00ae Champagne" ], "title": "Czar's Cup recipe", - "url": "http://www.drinksmixer.com/drink9009.html" + "url": "https://www.drinksmixer.com/drink9009.html" }, { "directions": "Combine ingredients in a wine glass, and serve.", @@ -84465,7 +84465,7 @@ "Baby Duck\u00ae white wine" ], "title": "Daffy Duck recipe", - "url": "http://www.drinksmixer.com/drink9010.html" + "url": "https://www.drinksmixer.com/drink9010.html" }, { "directions": "Stir ingredients together in a cocktail glass. Garnish with two maraschino cherries, and serve.", @@ -84474,7 +84474,7 @@ "Italian vermouth" ], "title": "Daily Double C recipe", - "url": "http://www.drinksmixer.com/drink9011.html" + "url": "https://www.drinksmixer.com/drink9011.html" }, { "directions": "Stir all ingredients together in a lowball or old-fashioned glass, and serve.", @@ -84486,7 +84486,7 @@ "amaretto almond liqueur" ], "title": "Daily Mail recipe", - "url": "http://www.drinksmixer.com/drink9012.html" + "url": "https://www.drinksmixer.com/drink9012.html" }, { "directions": "Shake all ingredients in a cocktail shaker half-filled with ice. Strain into a chilled cocktail glass, and serve.", @@ -84496,7 +84496,7 @@ "maraschino liqueur" ], "title": "Daiquiri Blossom recipe", - "url": "http://www.drinksmixer.com/drink9013.html" + "url": "https://www.drinksmixer.com/drink9013.html" }, { "directions": "Stir all ingredients in a mixing glass half-filled with ice cubes. Strain into a cocktail glass, and serve.", @@ -84506,7 +84506,7 @@ "Amer Picon\u00ae orange bitters" ], "title": "Daiquiri Liberal recipe", - "url": "http://www.drinksmixer.com/drink9014.html" + "url": "https://www.drinksmixer.com/drink9014.html" }, { "directions": "Shake the tennessee whiskey, lemon juice, simple syrup and Cointreau in a cocktail shaker half-filled with ice cubes. Strain into a highball glass filled with ice cubes, and fill to taste with club soda. Garnish with fruit slices, and serve.", @@ -84518,7 +84518,7 @@ "club soda" ], "title": "Daisy Dueller recipe", - "url": "http://www.drinksmixer.com/drink9015.html" + "url": "https://www.drinksmixer.com/drink9015.html" }, { "directions": "Stir ingredients together in an old-fashioned glass 1/4 filled with ice cubes.", @@ -84527,7 +84527,7 @@ "Drambuie\u00ae Scotch whisky" ], "title": "Dalton recipe", - "url": "http://www.drinksmixer.com/drink9016.html" + "url": "https://www.drinksmixer.com/drink9016.html" }, { "directions": "Stir the Stoli raspberry vodka, Bailey's irish cream and half-and-half with ice cubes in a mixing glass. Strain into a chilled cocktail glass. Top with maraschino liqueur, and serve.", @@ -84538,7 +84538,7 @@ "maraschino liqueur" ], "title": "Czarina #2 recipe", - "url": "http://www.drinksmixer.com/drink9017.html" + "url": "https://www.drinksmixer.com/drink9017.html" }, { "directions": "Pour the Blackbeard's spiced rum into a collins glass filled with ice cubes. Fill with cranberry juice, and stir well. Garnish with a lime wedge, and serve.", @@ -84547,7 +84547,7 @@ "cranberry juice" ], "title": "Dances with Wenches recipe", - "url": "http://www.drinksmixer.com/drink9018.html" + "url": "https://www.drinksmixer.com/drink9018.html" }, { "directions": "Pour all ingredients into a mixing glass half-filled with ice cubes. Stir well. Strain into a cocktail glass. Garnish with a twist of both lemon and orange peel, and serve.", @@ -84558,7 +84558,7 @@ "Angostura\u00ae bitters" ], "title": "Dandy Cocktail recipe", - "url": "http://www.drinksmixer.com/drink9019.html" + "url": "https://www.drinksmixer.com/drink9019.html" }, { "directions": "Pour the gin, cherry heering, kirsch, lime juice and sugar into a cocktail shaker half-filled with ice cubes. Shake well, and strain into a highball glass filled with ice cubes. Gently stir in the soda/sparkling water. Garnish with a maraschino cherry and a slice of lime.", @@ -84571,7 +84571,7 @@ "soda water" ], "title": "Danish Gin Fizz recipe", - "url": "http://www.drinksmixer.com/drink9020.html" + "url": "https://www.drinksmixer.com/drink9020.html" }, { "directions": "Shake ingredients with cracked ice in a cocktail shaker. Strain into a chilled cocktail glass, garnish with an olive, and serve.", @@ -84580,7 +84580,7 @@ "dry vermouth" ], "title": "Danish Martini recipe", - "url": "http://www.drinksmixer.com/drink9021.html" + "url": "https://www.drinksmixer.com/drink9021.html" }, { "directions": "Wash an old-fashioned glass with bitters and ice. Discard excess. Add vermouth, whiskey and wine. Top with lemonade, to taste, and serve.", @@ -84592,7 +84592,7 @@ "lemonade" ], "title": "Danny's Delight recipe", - "url": "http://www.drinksmixer.com/drink9022.html" + "url": "https://www.drinksmixer.com/drink9022.html" }, { "directions": "Stir all ingredients together in an old-fashioned glass, and serve.", @@ -84603,7 +84603,7 @@ "lemon juice" ], "title": "Danny's Special recipe", - "url": "http://www.drinksmixer.com/drink9023.html" + "url": "https://www.drinksmixer.com/drink9023.html" }, { "directions": "Pour the vodka, curacao and Midori melon liqueur into a collins glass filled with ice cubes. Fill with soda, to taste, and serve.", @@ -84614,7 +84614,7 @@ "lemon soda" ], "title": "Daphrine Cocktail recipe", - "url": "http://www.drinksmixer.com/drink9024.html" + "url": "https://www.drinksmixer.com/drink9024.html" }, { "directions": "Pour all ingredients into a cocktail shaker half-filled with ice cubes. Shake well. Strain into a cocktail glass, and serve.", @@ -84625,7 +84625,7 @@ "lemon juice" ], "title": "Darb Cocktail recipe", - "url": "http://www.drinksmixer.com/drink9025.html" + "url": "https://www.drinksmixer.com/drink9025.html" }, { "directions": "Mix ingredients together in a highball glass 3/4 filled with ice cubes, and serve.", @@ -84635,7 +84635,7 @@ "lemonade" ], "title": "Dark Destroyer recipe", - "url": "http://www.drinksmixer.com/drink9026.html" + "url": "https://www.drinksmixer.com/drink9026.html" }, { "directions": "Pour the blue curacao and grenadine into a highball glass. Fill with pineapple-flavored wine, to taste, and stir. Garnish with a slice of pineapple.", @@ -84645,7 +84645,7 @@ "pineapple wine" ], "title": "Dark Lagoon recipe", - "url": "http://www.drinksmixer.com/drink9027.html" + "url": "https://www.drinksmixer.com/drink9027.html" }, { "directions": "Add the Kahlua coffee liqueur, Tia Maria coffee liqueur, Cointreau and milk to a blender. Blend for 5 seconds, and pour into a highball glass almost filled with ice. Layer whipped cream on top, garnish with a half-strawberry, and serve.", @@ -84657,7 +84657,7 @@ "whipped cream" ], "title": "Datsun Cocktail recipe", - "url": "http://www.drinksmixer.com/drink9028.html" + "url": "https://www.drinksmixer.com/drink9028.html" }, { "directions": "Stir ingredients together well in a mixing glass half-filled with cracked ice. Strain into a chilled cocktail glass, and serve.", @@ -84668,7 +84668,7 @@ "sugar" ], "title": "Daydream Martini recipe", - "url": "http://www.drinksmixer.com/drink9029.html" + "url": "https://www.drinksmixer.com/drink9029.html" }, { "directions": "Pour all ingredients into a cocktail shaker half-filled with ice cubes. Shake well, and strain into a highball glass filled with ice cubes. Garnish with a slice of lime, and serve.", @@ -84679,7 +84679,7 @@ "grenadine syrup" ], "title": "Daytona Daydream recipe", - "url": "http://www.drinksmixer.com/drink9030.html" + "url": "https://www.drinksmixer.com/drink9030.html" }, { "directions": "Mix all ingredients together in a pint glass, and serve.", @@ -84690,7 +84690,7 @@ "blackcurrant cordial" ], "title": "Dave's Diesel recipe", - "url": "http://www.drinksmixer.com/drink9032.html" + "url": "https://www.drinksmixer.com/drink9032.html" }, { "directions": "Pour the coconut rum, banana liqueur, orange juice and pineapple juice into a highball glass filled with ice cubes. Add a dash of grenadine around the inside edge of the glass, and serve.", @@ -84702,7 +84702,7 @@ "grenadine syrup" ], "title": "Dead Budgie recipe", - "url": "http://www.drinksmixer.com/drink9033.html" + "url": "https://www.drinksmixer.com/drink9033.html" }, { "directions": "Pour all ingredients into an old-fashioned glass almost filled with ice cubes. Stir well, and serve.", @@ -84713,7 +84713,7 @@ "Midori\u00ae melon liqueur" ], "title": "Dead Hand recipe", - "url": "http://www.drinksmixer.com/drink9034.html" + "url": "https://www.drinksmixer.com/drink9034.html" }, { "directions": "Pour the Malibu rum and Kahlua into a cocktail shaker half-filled with ice cubes. Shake vigorously, and strain into a cocktail glass. Top with whipped cream. Garnish with a maraschino cherry, and serve.", @@ -84723,7 +84723,7 @@ "whipped cream" ], "title": "Dead Pirate Seaspray recipe", - "url": "http://www.drinksmixer.com/drink9035.html" + "url": "https://www.drinksmixer.com/drink9035.html" }, { "directions": "Pour all ingredients into a mixing glass half-filled with cracked ice. Stir well. Strain into a cocktail glass, garnish with an orange twist, and serve.", @@ -84733,7 +84733,7 @@ "Rose's\u00ae lime juice" ], "title": "Deansgate Cocktail recipe", - "url": "http://www.drinksmixer.com/drink9036.html" + "url": "https://www.drinksmixer.com/drink9036.html" }, { "directions": "Combine all ingredients in a blender with one cup of crushed ice. Blend well until smooth. Pour into a parfait glass and top with whipped cream. Sprinkle with chocolate shavings, and serve.", @@ -84744,7 +84744,7 @@ "chocolate ice cream" ], "title": "Death by Chocolate recipe", - "url": "http://www.drinksmixer.com/drink9037.html" + "url": "https://www.drinksmixer.com/drink9037.html" }, { "directions": "Pour all ingredients into a cocktail shaker half-filled with ice cubes. Shake well, strain into a cocktail glass, and serve.", @@ -84755,7 +84755,7 @@ "lemon juice" ], "title": "Debutante's Dream recipe", - "url": "http://www.drinksmixer.com/drink9038.html" + "url": "https://www.drinksmixer.com/drink9038.html" }, { "directions": "Pour both ingredients into an old-fashioned glass, stir briefly, and serve.", @@ -84764,7 +84764,7 @@ "Galliano\u00ae herbal liqueur" ], "title": "Deceiver recipe", - "url": "http://www.drinksmixer.com/drink9039.html" + "url": "https://www.drinksmixer.com/drink9039.html" }, { "directions": "Pour the gin, cranberry juice, maraschino liqueur, lemon juice and lime juice into a cocktail shaker half-filled with ice cubes. Shake well, and strain into a cocktail glass. Garnish with gin-infused cranberries, and serve.", @@ -84776,7 +84776,7 @@ "lime juice" ], "title": "DeeDee Cocktail recipe", - "url": "http://www.drinksmixer.com/drink9040.html" + "url": "https://www.drinksmixer.com/drink9040.html" }, { "directions": "Mix the vodka, peach schnapps and Red Bull together in a collins glass. Add a small amount of curacao until the mixture is a deep green. Add some ice, and pour the remainder of the curacao down the side of the glass to leave a blue layer at the base of the glass.", @@ -84787,7 +84787,7 @@ "Red Bull\u00ae energy drink" ], "title": "Deep Blue Something recipe", - "url": "http://www.drinksmixer.com/drink9041.html" + "url": "https://www.drinksmixer.com/drink9041.html" }, { "directions": "Stir all ingredients together in a mixing glass half-filled with cracked ice. Strain into a cocktail glass, and serve.", @@ -84798,7 +84798,7 @@ "orange bitters" ], "title": "Deep Sea Cocktail recipe", - "url": "http://www.drinksmixer.com/drink9042.html" + "url": "https://www.drinksmixer.com/drink9042.html" }, { "directions": "Stir all ingredients together in a mixing glass half-filled with cracked ice. Strain into a chilled cocktail glass, and serve.", @@ -84809,7 +84809,7 @@ "orange bitters" ], "title": "Deep Sea Martini recipe", - "url": "http://www.drinksmixer.com/drink9043.html" + "url": "https://www.drinksmixer.com/drink9043.html" }, { "directions": "Pour all ingredients into a cocktail shaker half-filled with ice cubes. Shake well. Pour the contents into a highball glass, and serve.", @@ -84821,7 +84821,7 @@ "7-Up\u00ae soda" ], "title": "Deep Sea Sex recipe", - "url": "http://www.drinksmixer.com/drink9044.html" + "url": "https://www.drinksmixer.com/drink9044.html" }, { "directions": "Stir ingredients together in an old-fashioned glass, and serve.", @@ -84831,7 +84831,7 @@ "Mountain Dew\u00ae citrus soda" ], "title": "Degobah Dropkick recipe", - "url": "http://www.drinksmixer.com/drink9045.html" + "url": "https://www.drinksmixer.com/drink9045.html" }, { "directions": "Pour both ingredients into a cocktail shaker half-filled with cracked ice. Shake well, and strain into a chilled cocktail glass. Garnish with an orange twist, and serve.", @@ -84840,7 +84840,7 @@ "Grand Marnier\u00ae orange liqueur" ], "title": "Delicious Martini recipe", - "url": "http://www.drinksmixer.com/drink9046.html" + "url": "https://www.drinksmixer.com/drink9046.html" }, { "directions": "Pour the scotch whisky, Southern Comfort, lime juice and sugar into a cocktail shaker half-filled with cracked ice. Shake well, and strain into an old-fashioned glass. Garnish with a slice of orange and a fresh slice of peach, and serve.", @@ -84851,7 +84851,7 @@ "superfine sugar" ], "title": "Delta Cocktail recipe", - "url": "http://www.drinksmixer.com/drink9047.html" + "url": "https://www.drinksmixer.com/drink9047.html" }, { "directions": "Pour all the ingredients into a cocktail shaker half-filled with ice cubes. Shake and strain into an old-fashioned glassh half-filled with ice cubes, and serve.", @@ -84862,7 +84862,7 @@ "grenadine syrup" ], "title": "Depth Bomb recipe", - "url": "http://www.drinksmixer.com/drink9048.html" + "url": "https://www.drinksmixer.com/drink9048.html" }, { "directions": "Pour all ingredients into a cocktail shaker half-filled with ice cubes. Shake well, strain into a cocktail glass, and serve.", @@ -84873,7 +84873,7 @@ "lime juice" ], "title": "Derby Special recipe", - "url": "http://www.drinksmixer.com/drink9049.html" + "url": "https://www.drinksmixer.com/drink9049.html" }, { "directions": "Pour all ingredients into a collins glass filled with ice cubes, and stir well. Garnish with a slice of lime, and serve.", @@ -84883,7 +84883,7 @@ "limeade" ], "title": "Desert Skies recipe", - "url": "http://www.drinksmixer.com/drink9051.html" + "url": "https://www.drinksmixer.com/drink9051.html" }, { "directions": "Pour all ingredients into a collins glass almost filled with crushed ice. Top with grenadine, and serve.", @@ -84894,7 +84894,7 @@ "grenadine syrup" ], "title": "Desert Sunrise recipe", - "url": "http://www.drinksmixer.com/drink9052.html" + "url": "https://www.drinksmixer.com/drink9052.html" }, { "directions": "Shake ingredients with cracked ice and strain into a chilled cocktail glass. Garnish with fresh blackberries, and serve.", @@ -84904,7 +84904,7 @@ "blackberry brandy" ], "title": "Desperate Martini recipe", - "url": "http://www.drinksmixer.com/drink9053.html" + "url": "https://www.drinksmixer.com/drink9053.html" }, { "directions": "Pour all ingredients into a cocktail shaker half-filled with cracked ice. Shake well, and strain into a collins glass. Garnish with a green maraschino cherry and a sprig of mint.", @@ -84914,7 +84914,7 @@ "dark rum" ], "title": "Detroit Daisy recipe", - "url": "http://www.drinksmixer.com/drink9054.html" + "url": "https://www.drinksmixer.com/drink9054.html" }, { "directions": "Pour all ingredients into a cocktail shaker half-filled with ice cubes. Shake well, strain into a highball glass filled with ice cubes, and serve.", @@ -84927,7 +84927,7 @@ "sweet and sour mix" ], "title": "Devil's Delight recipe", - "url": "http://www.drinksmixer.com/drink9055.html" + "url": "https://www.drinksmixer.com/drink9055.html" }, { "directions": "Stir ingredients together in a mixing tin. Pour over ice cubes in an old-fashioned, rocks or lowball glass, and serve.", @@ -84937,7 +84937,7 @@ "lime juice" ], "title": "Devil's Sweat recipe", - "url": "http://www.drinksmixer.com/drink9056.html" + "url": "https://www.drinksmixer.com/drink9056.html" }, { "directions": "Pour all ingredients into a blender with half a cup of crushed ice. Blend until smooth. Pour into a champagne flute or 6-oz glass, and serve.", @@ -84949,7 +84949,7 @@ "apricot brandy" ], "title": "Devil's Tail recipe", - "url": "http://www.drinksmixer.com/drink9057.html" + "url": "https://www.drinksmixer.com/drink9057.html" }, { "directions": "Pour the Jack Daniel's tennessee whiskey, Southern Comfort and lemon juice into an old-fashioned glass filled with ice cubes. Fill with or add to taste the Mountain Dew, and serve.", @@ -84960,7 +84960,7 @@ "Mountain Dew\u00ae citrus soda" ], "title": "Dew Me recipe", - "url": "http://www.drinksmixer.com/drink9058.html" + "url": "https://www.drinksmixer.com/drink9058.html" }, { "directions": "Shake all ingredients vigorously with ice cubes in a cocktail shaker. Strain into a cocktail glass, and serve.", @@ -84972,7 +84972,7 @@ "egg" ], "title": "Diamond Head recipe", - "url": "http://www.drinksmixer.com/drink9059.html" + "url": "https://www.drinksmixer.com/drink9059.html" }, { "directions": "Combine all ingredients together in a blender. Blend until smooth, and pour into a parfait glass. Garnish with a slice of orange, and serve.", @@ -84983,7 +84983,7 @@ "vanilla ice cream" ], "title": "Di Amore Dream recipe", - "url": "http://www.drinksmixer.com/drink9060.html" + "url": "https://www.drinksmixer.com/drink9060.html" }, { "directions": "Stir all ingredients together in an old-fashioned glass 1/2 filled with ice cubes, and serve.", @@ -84993,7 +84993,7 @@ "grapefruit juice" ], "title": "Die Hard recipe", - "url": "http://www.drinksmixer.com/drink9061.html" + "url": "https://www.drinksmixer.com/drink9061.html" }, { "directions": "Shake all ingredients with ice cubes in a cocktail shaker. Strain into a cocktail glass, and serve.", @@ -85003,7 +85003,7 @@ "grapefruit juice" ], "title": "Diki-Diki recipe", - "url": "http://www.drinksmixer.com/drink9062.html" + "url": "https://www.drinksmixer.com/drink9062.html" }, { "directions": "Pour all ingredients into a highball glass. Stir, and serve.", @@ -85013,7 +85013,7 @@ "orange juice" ], "title": "Dionisia recipe", - "url": "http://www.drinksmixer.com/drink9063.html" + "url": "https://www.drinksmixer.com/drink9063.html" }, { "directions": "Pour all ingredients into a cocktail shaker half-filled with ice cubes. Add more cream if desired. Shake well. Strain into a highball glass filled with ice cubes, and serve.", @@ -85023,7 +85023,7 @@ "cream" ], "title": "Dirty Apple recipe", - "url": "http://www.drinksmixer.com/drink9064.html" + "url": "https://www.drinksmixer.com/drink9064.html" }, { "directions": "Pour all ingredients into a highball glass, stir, and serve.", @@ -85034,7 +85034,7 @@ "Coca-Cola\u00ae" ], "title": "Dirty Butt Whore recipe", - "url": "http://www.drinksmixer.com/drink9065.html" + "url": "https://www.drinksmixer.com/drink9065.html" }, { "directions": "Pour both ingredients into an old-fashioned glass, stir briefly, and serve.", @@ -85043,7 +85043,7 @@ "pineapple juice" ], "title": "Dirty Sock recipe", - "url": "http://www.drinksmixer.com/drink9066.html" + "url": "https://www.drinksmixer.com/drink9066.html" }, { "directions": "Shake both ingredients with ice cubes in a cocktail shaker. Strain into a highball glass, and serve.", @@ -85052,7 +85052,7 @@ "brown creme de cacao" ], "title": "Dirty Virgin recipe", - "url": "http://www.drinksmixer.com/drink9067.html" + "url": "https://www.drinksmixer.com/drink9067.html" }, { "directions": "Pour all ingredients into a cocktail shaker half-filled with cracked ice. Shake well. Strain into a chilled cocktail glass, garnish with an olive, and serve.", @@ -85062,7 +85062,7 @@ "olive" ], "title": "Dirty Vodka Martini recipe", - "url": "http://www.drinksmixer.com/drink9068.html" + "url": "https://www.drinksmixer.com/drink9068.html" }, { "directions": "Pour all ingredients into a cocktail shaker half-filled with ice cubes. Shake well. Strain into a highball glass. Dust with nutmeg, and serve.", @@ -85074,7 +85074,7 @@ "grenadine syrup" ], "title": "Disappointed Lady recipe", - "url": "http://www.drinksmixer.com/drink9069.html" + "url": "https://www.drinksmixer.com/drink9069.html" }, { "directions": "Pour the vodka and blue curacao into a collins glass filled with ice cubes. Fill with lemonade, stir well, and serve.", @@ -85084,7 +85084,7 @@ "lemonade" ], "title": "Disco Lemonade recipe", - "url": "http://www.drinksmixer.com/drink9070.html" + "url": "https://www.drinksmixer.com/drink9070.html" }, { "directions": "Pour all ingredients into a cocktail shaker half-filled with ice cubes. Shake well, strain into a cocktail glass, and serve.", @@ -85095,7 +85095,7 @@ "lemon juice" ], "title": "Do Be Careful recipe", - "url": "http://www.drinksmixer.com/drink9071.html" + "url": "https://www.drinksmixer.com/drink9071.html" }, { "directions": "Pour whiskey into a collins glass. Add surge, and sweeten to taste. Add orange juice to taste, and serve.", @@ -85106,7 +85106,7 @@ "sugar" ], "title": "Doc Holiday recipe", - "url": "http://www.drinksmixer.com/drink9072.html" + "url": "https://www.drinksmixer.com/drink9072.html" }, { "directions": "Stir all ingredients together in a highball glass, and serve.", @@ -85116,7 +85116,7 @@ "lemonade" ], "title": "Doc Hollyblock recipe", - "url": "http://www.drinksmixer.com/drink9073.html" + "url": "https://www.drinksmixer.com/drink9073.html" }, { "directions": "Pour vodka, gin, lime juice and lemon juice into a medium-sized glass. Top with 7-up, to taste, and serve.", @@ -85128,7 +85128,7 @@ "7-Up\u00ae soda" ], "title": "Doh Doh recipe", - "url": "http://www.drinksmixer.com/drink9074.html" + "url": "https://www.drinksmixer.com/drink9074.html" }, { "directions": "Pour all ingredients into a cocktail shaker half-filled with ice cubes. Shake well, and strain into a cocktail glass. Garnish with a maraschino cherry, and serve.", @@ -85138,7 +85138,7 @@ "creme de cacao" ], "title": "Dolores recipe", - "url": "http://www.drinksmixer.com/drink9075.html" + "url": "https://www.drinksmixer.com/drink9075.html" }, { "directions": "Combine all the ingredients in a blender. Blend until smooth, and pour into a highball glass. Garnish with pineapple chunks, and serve.", @@ -85151,7 +85151,7 @@ "vanilla ice cream" ], "title": "Dolph Lundgren recipe", - "url": "http://www.drinksmixer.com/drink9076.html" + "url": "https://www.drinksmixer.com/drink9076.html" }, { "directions": "Shake ingredients together with ice cubes in a cocktail shaker. Strain into a cocktail glass, and serve.", @@ -85161,7 +85161,7 @@ "Jamaican dark rum" ], "title": "Doctor Cocktail recipe", - "url": "http://www.drinksmixer.com/drink9077.html" + "url": "https://www.drinksmixer.com/drink9077.html" }, { "directions": "Stir together in a chilled cocktail glass, and serve.", @@ -85170,7 +85170,7 @@ "whiskey" ], "title": "Don Matteo recipe", - "url": "http://www.drinksmixer.com/drink9078.html" + "url": "https://www.drinksmixer.com/drink9078.html" }, { "directions": "Combine all ingredients together in a blender. Blend until smooth. Pour into a hurricane glass, and serve.", @@ -85181,7 +85181,7 @@ "cream" ], "title": "Don Pedro recipe", - "url": "http://www.drinksmixer.com/drink9079.html" + "url": "https://www.drinksmixer.com/drink9079.html" }, { "directions": "Pour ingredients into a highball glass half-filled with ice cubes. Stir gently, and serve.", @@ -85191,7 +85191,7 @@ "7-Up\u00ae soda" ], "title": "Don Roberto recipe", - "url": "http://www.drinksmixer.com/drink9080.html" + "url": "https://www.drinksmixer.com/drink9080.html" }, { "directions": "Pour both ingredients into an old-fashioned glass filled with semi-crushed ice cubes. Stir and serve.", @@ -85200,7 +85200,7 @@ "orange juice" ], "title": "Don Roberto Old-Fashioned recipe", - "url": "http://www.drinksmixer.com/drink9081.html" + "url": "https://www.drinksmixer.com/drink9081.html" }, { "directions": "Pour all ingredients into a cocktail shaker half-filled with cracked ice. Shake well. Strain into a chilled cocktail glass. Garnish with a chocolate straw, and serve.", @@ -85210,7 +85210,7 @@ "coffee liqueur" ], "title": "Double Fudge Martini recipe", - "url": "http://www.drinksmixer.com/drink9082.html" + "url": "https://www.drinksmixer.com/drink9082.html" }, { "directions": "Pour mint schnapps into an Irish coffee cup or glass and fill with hot coffee. Top with whipped cream, add creme de menthe for color, and serve.", @@ -85221,7 +85221,7 @@ "green creme de menthe" ], "title": "Doublemint recipe", - "url": "http://www.drinksmixer.com/drink9083.html" + "url": "https://www.drinksmixer.com/drink9083.html" }, { "directions": "Pour the vermouth into a cocktail glass. Swirl it around until the glass is coated. Pour out excess vermouth. Place the glass in the freezer until thoroughly chilled. Shake the Stoli vodka with ice for at least 20 seconds. Pour into the chilled cocktail glass, garnish with two grapes, and serve.", @@ -85230,7 +85230,7 @@ "dry vermouth" ], "title": "Douglas Martini recipe", - "url": "http://www.drinksmixer.com/drink9084.html" + "url": "https://www.drinksmixer.com/drink9084.html" }, { "directions": "Pour all ingredients into a collins glass 2/3 filled with ice cubes. Stir well, and serve.", @@ -85242,7 +85242,7 @@ "cola" ], "title": "Douglas Slammer recipe", - "url": "http://www.drinksmixer.com/drink9085.html" + "url": "https://www.drinksmixer.com/drink9085.html" }, { "directions": "Shake the gin and olive brine with crushed ice and strain into a cocktail glass. Rub the rib with a wedge of lemon and drop into glass. Garnish with two cocktail onions, and serve.", @@ -85251,7 +85251,7 @@ "olive juice" ], "title": "Down and Dirty Dry Martini recipe", - "url": "http://www.drinksmixer.com/drink9086.html" + "url": "https://www.drinksmixer.com/drink9086.html" }, { "directions": "Pour both ingredients into a highball glass, stir, and serve.", @@ -85260,7 +85260,7 @@ "Snapple\u00ae Earth soda" ], "title": "Down to Earth recipe", - "url": "http://www.drinksmixer.com/drink9087.html" + "url": "https://www.drinksmixer.com/drink9087.html" }, { "directions": "Pour all ingredients into a cocktail shaker half-filled with ice cubes. Shake well, strain into a cocktail glass, and serve.", @@ -85273,7 +85273,7 @@ "soda water" ], "title": "Down Under recipe", - "url": "http://www.drinksmixer.com/drink9088.html" + "url": "https://www.drinksmixer.com/drink9088.html" }, { "directions": "Pour the Captain Morgan spiced rum into a highball glass 3/4 filled with ice cubes. Fill with orange juice, stir well, and serve.", @@ -85282,7 +85282,7 @@ "Sunny Delight\u00ae orange juice" ], "title": "Dreamsicle Delight recipe", - "url": "http://www.drinksmixer.com/drink9089.html" + "url": "https://www.drinksmixer.com/drink9089.html" }, { "directions": "Combine all ingredients in a blender. Blend until smooth, and pour into a parfait glass. Garnish with whipped cream and the remaining 1/2 banana, and serve.", @@ -85295,7 +85295,7 @@ "light cream" ], "title": "Dreamy Monkey recipe", - "url": "http://www.drinksmixer.com/drink9090.html" + "url": "https://www.drinksmixer.com/drink9090.html" }, { "directions": "Pour both ingredients into a highball glass with a couple of ice cubes. Stir well, and serve.", @@ -85304,7 +85304,7 @@ "Dr. Pepper\u00ae soda" ], "title": "Dr. Bacardi recipe", - "url": "http://www.drinksmixer.com/drink9091.html" + "url": "https://www.drinksmixer.com/drink9091.html" }, { "directions": "Stir ingredients together in an old-fashioned glass. Add ice, stir again, and serve.", @@ -85313,7 +85313,7 @@ "Dr. Pepper\u00ae soda" ], "title": "Dr. Dewar's recipe", - "url": "http://www.drinksmixer.com/drink9092.html" + "url": "https://www.drinksmixer.com/drink9092.html" }, { "directions": "Pour all ingredients into an old-fashioned glass. Stir, and serve.", @@ -85323,7 +85323,7 @@ "pineapple juice" ], "title": "Drink of the Gods recipe", - "url": "http://www.drinksmixer.com/drink9093.html" + "url": "https://www.drinksmixer.com/drink9093.html" }, { "directions": "Pour ingredients into a highball glass filled with ice cubes. Stir well, and serve.", @@ -85334,7 +85334,7 @@ "grapefruit juice" ], "title": "Drive Away recipe", - "url": "http://www.drinksmixer.com/drink9094.html" + "url": "https://www.drinksmixer.com/drink9094.html" }, { "directions": "Stir ingredients together in a highball glass filled with ice cubes, and serve.", @@ -85343,7 +85343,7 @@ "Dr. Pepper\u00ae soda" ], "title": "Dr. Morgan recipe", - "url": "http://www.drinksmixer.com/drink9095.html" + "url": "https://www.drinksmixer.com/drink9095.html" }, { "directions": "Stir ingredients together in a highball glass filled with ice cubes, and serve.", @@ -85353,7 +85353,7 @@ "cranberry-raspberry juice" ], "title": "Dr. Pecker recipe", - "url": "http://www.drinksmixer.com/drink9096.html" + "url": "https://www.drinksmixer.com/drink9096.html" }, { "directions": "Pour the triple sec, banana liqueur and melon liqueur into a highball glass filled with ice cubes. Fill with equal parts of cranberry and pineapple juice. Stir well, and serve.", @@ -85365,7 +85365,7 @@ "pineapple juice" ], "title": "Drunk Monkey recipe", - "url": "http://www.drinksmixer.com/drink9097.html" + "url": "https://www.drinksmixer.com/drink9097.html" }, { "directions": "Pour the white rum, apricot brandy, Cointreau and lemon juice into a cocktail shaker half-filled with ice cubes. Shake well, and strain into a highball glass almost filled with ice cubes. Fill with club soda, stir briefly and serve.", @@ -85377,7 +85377,7 @@ "club soda" ], "title": "Dry Hole recipe", - "url": "http://www.drinksmixer.com/drink9098.html" + "url": "https://www.drinksmixer.com/drink9098.html" }, { "directions": "Pour the Absolut Citron into an 8-oz highball glass filled with ice cubes. Fill with 7-up, and add lime juice. Sweeten with sugar. Top with a twist of lemon, and serve.", @@ -85388,7 +85388,7 @@ "7-Up\u00ae soda" ], "title": "Dry Lemonade recipe", - "url": "http://www.drinksmixer.com/drink9099.html" + "url": "https://www.drinksmixer.com/drink9099.html" }, { "directions": "Stir the Dubonnet wine, gin, Angostura bitters and curacao into a mixing glass half-filled with cracked ice. Strain into a cocktail glass. Top with a dash of Pastis, garnish with a maraschino cherry, and serve.", @@ -85400,7 +85400,7 @@ "pastis liqueur" ], "title": "Dubonnet Royal recipe", - "url": "http://www.drinksmixer.com/drink9100.html" + "url": "https://www.drinksmixer.com/drink9100.html" }, { "directions": "Mix ingredients to taste in a highball glass.", @@ -85410,7 +85410,7 @@ "water" ], "title": "Duck Cocktail recipe", - "url": "http://www.drinksmixer.com/drink9101.html" + "url": "https://www.drinksmixer.com/drink9101.html" }, { "directions": "Combine ingredients in a collins glass filled with ice cubes. Stir well, and serve.", @@ -85424,7 +85424,7 @@ "pineapple juice" ], "title": "Dumpster Juice recipe", - "url": "http://www.drinksmixer.com/drink9102.html" + "url": "https://www.drinksmixer.com/drink9102.html" }, { "directions": "Pour all ingredients into an old-fashioned glass, and serve.", @@ -85434,7 +85434,7 @@ "Angostura\u00ae bitters" ], "title": "Duplex recipe", - "url": "http://www.drinksmixer.com/drink9103.html" + "url": "https://www.drinksmixer.com/drink9103.html" }, { "directions": "Pour the tequila, grapefruit juice and orgeat syrup into a cocktail shaker half-filled with ice cubes. Shake well, and strain into an old-fashioned glass. Fill with water, garnish with mint sprigs, and serve.", @@ -85445,7 +85445,7 @@ "water" ], "title": "Durango recipe", - "url": "http://www.drinksmixer.com/drink9104.html" + "url": "https://www.drinksmixer.com/drink9104.html" }, { "directions": "Stir ingredients over ice cubes in a chilled cocktail glass rimmed with Scotch whisky. Garnish with a twist of lemon, and serve.", @@ -85455,7 +85455,7 @@ "Scotch whisky" ], "title": "Dusty Martini recipe", - "url": "http://www.drinksmixer.com/drink9105.html" + "url": "https://www.drinksmixer.com/drink9105.html" }, { "directions": "Pour all ingredients into a cocktail shaker half-filled with ice cubes. Shake well. Strain into a highball glass filled with ice cubes, and serve.", @@ -85465,7 +85465,7 @@ "Cointreau\u00ae orange liqueur" ], "title": "Eager Beaver recipe", - "url": "http://www.drinksmixer.com/drink9106.html" + "url": "https://www.drinksmixer.com/drink9106.html" }, { "directions": "Pour all ingredients into a cocktail shaker half-filled with ice cubes. Shake vigorously. Strain into a wine glass, and serve.", @@ -85477,7 +85477,7 @@ "egg" ], "title": "Eagle Cocktail recipe", - "url": "http://www.drinksmixer.com/drink9107.html" + "url": "https://www.drinksmixer.com/drink9107.html" }, { "directions": "Pour all ingredients into a cocktail shaker half-filled with cracked ice. Shake well. Strain into a chilled cocktail glass, garnish with a lemon twist, and serve.", @@ -85487,7 +85487,7 @@ "Campari\u00ae bitters" ], "title": "East Wing Cocktail recipe", - "url": "http://www.drinksmixer.com/drink9108.html" + "url": "https://www.drinksmixer.com/drink9108.html" }, { "directions": "Pour all ingredients into a cocktail shaker half-filled with ice cubes. Shake vigorously. Pour over shaved ice in a champagne flute, and serve.", @@ -85498,7 +85498,7 @@ "sugar" ], "title": "Edith Day Cocktail recipe", - "url": "http://www.drinksmixer.com/drink9109.html" + "url": "https://www.drinksmixer.com/drink9109.html" }, { "directions": "Pour both ingredients over crushed ice in a champagne flute or tall, thin glass, and serve.", @@ -85507,7 +85507,7 @@ "peppermint schnapps" ], "title": "Durban Poison recipe", - "url": "http://www.drinksmixer.com/drink9110.html" + "url": "https://www.drinksmixer.com/drink9110.html" }, { "directions": "Pour all ingredients into a cocktail shaker half-filled with ice cubes. Shake well, strain into a cocktail glass, and serve.", @@ -85518,7 +85518,7 @@ "sugar syrup" ], "title": "Dutch Trade Winds recipe", - "url": "http://www.drinksmixer.com/drink9111.html" + "url": "https://www.drinksmixer.com/drink9111.html" }, { "directions": "Shake ingredients with cracked ice in a cocktail shaker. Strain into a chilled cocktail glass. Garnish with an almond-stuffed olive, and serve.", @@ -85527,7 +85527,7 @@ "Amontillado\u00ae dry sherry" ], "title": "Eat My Martini recipe", - "url": "http://www.drinksmixer.com/drink9112.html" + "url": "https://www.drinksmixer.com/drink9112.html" }, { "directions": "Shake all ingredients with ice cubes in a cocktail shaker. Strain into a large brandy snifter, dust with nutmeg, and serve.", @@ -85537,7 +85537,7 @@ "eggnog" ], "title": "Egg Crusher recipe", - "url": "http://www.drinksmixer.com/drink9113.html" + "url": "https://www.drinksmixer.com/drink9113.html" }, { "directions": "Whip egg substitute and sugar together, combine with the two kinds of milk, vanilla, and rum. Mix well. Chill overnight. Sprinkle with nutmeg. Serves 4-6.", @@ -85550,7 +85550,7 @@ "rum" ], "title": "Healthy Eggnog recipe", - "url": "http://www.drinksmixer.com/drink9114.html" + "url": "https://www.drinksmixer.com/drink9114.html" }, { "directions": "Pour the tequila and orange juice in a cocktail shaker half-filled with cracked ice. Shake well. Strain into a cocktail glass, and top with tonic water. Stir briefly. Garnish with half of a Twix chocolate bar.", @@ -85560,7 +85560,7 @@ "orange juice" ], "title": "El Bano recipe", - "url": "http://www.drinksmixer.com/drink9115.html" + "url": "https://www.drinksmixer.com/drink9115.html" }, { "directions": "Pour all ingredients into a cocktail shaker half-filled with ice cubes. Shake well. Strain into a sugar-rimmed cocktail glass. Garnish with a maraschino cherry, and serve.", @@ -85571,7 +85571,7 @@ "orange juice" ], "title": "El Cid recipe", - "url": "http://www.drinksmixer.com/drink9116.html" + "url": "https://www.drinksmixer.com/drink9116.html" }, { "directions": "Shake all ingredients together in a cocktail shaker half-filled with ice cubes. Strain into a collins glass filled with ice cubes, garnish with a slice of orange, and serve.", @@ -85581,7 +85581,7 @@ "honey" ], "title": "Eldorado recipe", - "url": "http://www.drinksmixer.com/drink9117.html" + "url": "https://www.drinksmixer.com/drink9117.html" }, { "directions": "Pour all ingredients into a cocktail shaker half-filled with ice cubes. Shake well, strain into a highball glass filled with ice cubes, and serve.", @@ -85591,7 +85591,7 @@ "sweet and sour mix" ], "title": "Electric Lizard recipe", - "url": "http://www.drinksmixer.com/drink9118.html" + "url": "https://www.drinksmixer.com/drink9118.html" }, { "directions": "Pour the Jack Daniel's tennessee whiskey, tequila, and Bacardi 151 rum into a shot glass in that order. Ignite the 151 rum (use extreme caution), add a straw, and shoot.", @@ -85601,7 +85601,7 @@ "Bacardi\u00ae 151 rum" ], "title": "Elephant Man recipe", - "url": "http://www.drinksmixer.com/drink9119.html" + "url": "https://www.drinksmixer.com/drink9119.html" }, { "directions": "Pour the peppermint liqueur and iced tea into a highball glass filled with ice cubes. Stir well, and sweeten to taste. Squeeze the juice from half a lemon over the top, and serve.", @@ -85612,7 +85612,7 @@ "sugar" ], "title": "Elf Tea recipe", - "url": "http://www.drinksmixer.com/drink9120.html" + "url": "https://www.drinksmixer.com/drink9120.html" }, { "directions": "Pour ingredients into a highball glass filled with ice cubes. Stir well, and serve.", @@ -85622,7 +85622,7 @@ "iced tea" ], "title": "Elf Tea #2 recipe", - "url": "http://www.drinksmixer.com/drink9121.html" + "url": "https://www.drinksmixer.com/drink9121.html" }, { "directions": "Allow the mint sprigs to infuse for 2-3 minutes in a saucepan with the boiling water. Add the honey and stir well. Allow to cool. Once cooled, filter the mixture into a collins glass filled with ice cubes, and serve.", @@ -85630,7 +85630,7 @@ "water" ], "title": "Elixir de Menthe recipe", - "url": "http://www.drinksmixer.com/drink9122.html" + "url": "https://www.drinksmixer.com/drink9122.html" }, { "directions": "Pour the half-and-half into the middle of the peppermint schnapps in a chilled cocktail glass. Drop in the grenadine, and serve.", @@ -85640,7 +85640,7 @@ "grenadine syrup" ], "title": "Embryo Cocktail recipe", - "url": "http://www.drinksmixer.com/drink9123.html" + "url": "https://www.drinksmixer.com/drink9123.html" }, { "directions": "Stir ingredients together in a chilled cocktail glass, and serve.", @@ -85651,7 +85651,7 @@ "Midori\u00ae melon liqueur" ], "title": "Emerald Cocktail recipe", - "url": "http://www.drinksmixer.com/drink9124.html" + "url": "https://www.drinksmixer.com/drink9124.html" }, { "directions": "Pour all ingredients into a cocktail shaker half-filled with ice cubes. Shake well. Strain into a highball glass, and serve.", @@ -85661,7 +85661,7 @@ "lemon juice" ], "title": "Emerald Cocktail #2 recipe", - "url": "http://www.drinksmixer.com/drink9125.html" + "url": "https://www.drinksmixer.com/drink9125.html" }, { "directions": "Pour all ingredients into a cocktail shaker half-filled with ice cubes. Shake well, and strain into a cocktail glass. Garnish with a green maraschino cherry, and serve.", @@ -85671,7 +85671,7 @@ "bitters" ], "title": "Emerald Cocktail #3 recipe", - "url": "http://www.drinksmixer.com/drink9126.html" + "url": "https://www.drinksmixer.com/drink9126.html" }, { "directions": "Pour all ingredients into a cocktail shaker half-filled with ice cubes. Shake well, strain into a cocktail glass, and serve.", @@ -85682,7 +85682,7 @@ "orange syrup" ], "title": "Embassy Royal recipe", - "url": "http://www.drinksmixer.com/drink9127.html" + "url": "https://www.drinksmixer.com/drink9127.html" }, { "directions": "Pour all ingredients into a cocktail shaker half-filled with ice cubes. Shake well, strain into a cocktail glass, and serve.", @@ -85693,7 +85693,7 @@ "grenadine syrup" ], "title": "Empire Glory recipe", - "url": "http://www.drinksmixer.com/drink9128.html" + "url": "https://www.drinksmixer.com/drink9128.html" }, { "directions": "Combine the hazelnut liqueur, irish cream, Kahlua coffee liqueur, banana liqueur, banana and espresso in a blender with one cup of crushed ice. Blend until smooth. Swirl the chocolate sauce or syrup into a cocktail glass, and pour the mixture on top. Serve.", @@ -85707,7 +85707,7 @@ "chocolate syrup" ], "title": "Endurance recipe", - "url": "http://www.drinksmixer.com/drink9129.html" + "url": "https://www.drinksmixer.com/drink9129.html" }, { "directions": "Muddle a stick of cinnamon with lemon juice and sugar in an old-fashioned glass. Add sherry, stir, and serve.", @@ -85718,7 +85718,7 @@ "cinnamon" ], "title": "English Bolo recipe", - "url": "http://www.drinksmixer.com/drink9130.html" + "url": "https://www.drinksmixer.com/drink9130.html" }, { "directions": "Pour the rum, vodka, triple sec, Southern Comfort and amaretto into a collins glass filled with ice cubes. Add a splash of orange juice and cranberry juice. Top with a splash of grenadine. Stir well, and serve.", @@ -85733,7 +85733,7 @@ "grenadine syrup" ], "title": "Enigma recipe", - "url": "http://www.drinksmixer.com/drink9131.html" + "url": "https://www.drinksmixer.com/drink9131.html" }, { "directions": "Pour all three ingredients into a cocktail shaker half-filled with ice cubes. Shake well. Strain into a small old-fashioned or rocks glass, and serve.", @@ -85743,7 +85743,7 @@ "Rumple Minze\u00ae peppermint liqueur" ], "title": "Eskimo Slugger recipe", - "url": "http://www.drinksmixer.com/drink9132.html" + "url": "https://www.drinksmixer.com/drink9132.html" }, { "directions": "Stir all ingredients together in a beer mug with/without ice, and serve.", @@ -85753,7 +85753,7 @@ "beer" ], "title": "Euthanasia recipe", - "url": "http://www.drinksmixer.com/drink9133.html" + "url": "https://www.drinksmixer.com/drink9133.html" }, { "directions": "Stir ingredients together in an old-fashioned glass, and serve.", @@ -85762,7 +85762,7 @@ "Gatorade\u00ae energy drink" ], "title": "Everglade recipe", - "url": "http://www.drinksmixer.com/drink9134.html" + "url": "https://www.drinksmixer.com/drink9134.html" }, { "directions": "Combine the rum, sour mix and apple juice concentrate with one cup of crushed ice in a blender. Blend until smooth. Pour into a round wine glass. Garnish with an apple wedge or a slice of lime, and serve.", @@ -85772,7 +85772,7 @@ "apple juice" ], "title": "Eve's Apple Daiquiri recipe", - "url": "http://www.drinksmixer.com/drink9135.html" + "url": "https://www.drinksmixer.com/drink9135.html" }, { "directions": "Pour all ingredients into a highball glass almost filled with ice cubes. Stir well, and serve.", @@ -85782,7 +85782,7 @@ "white rum" ], "title": "Evil Blue Thing recipe", - "url": "http://www.drinksmixer.com/drink9136.html" + "url": "https://www.drinksmixer.com/drink9136.html" }, { "directions": "Pour the vodka, peach schnapps and Red Bull into a tall glass. Stir. Top with cranberry juice, and serve.", @@ -85793,7 +85793,7 @@ "cranberry juice" ], "title": "Excitabull recipe", - "url": "http://www.drinksmixer.com/drink9137.html" + "url": "https://www.drinksmixer.com/drink9137.html" }, { "directions": "Shake all ingredients in a cocktail shaker half-filled with ice cubes. Strain into a cocktail glass, and serve.", @@ -85803,7 +85803,7 @@ "lime juice" ], "title": "Exorcist Cocktail recipe", - "url": "http://www.drinksmixer.com/drink9138.html" + "url": "https://www.drinksmixer.com/drink9138.html" }, { "directions": "Pour the vodka, Cointreau and lime juice into a pint glass. Fill with a strong, sweet pear cider, or add to taste.", @@ -85814,7 +85814,7 @@ "pear cider" ], "title": "Explosion recipe", - "url": "http://www.drinksmixer.com/drink9139.html" + "url": "https://www.drinksmixer.com/drink9139.html" }, { "directions": "Shake ingredients with crushed ice in a cocktail shaker. Strain or pour completely into a highball glass, and serve.", @@ -85823,7 +85823,7 @@ "Mountain Dew\u00ae citrus soda" ], "title": "Easy Creamsicle recipe", - "url": "http://www.drinksmixer.com/drink9140.html" + "url": "https://www.drinksmixer.com/drink9140.html" }, { "directions": "Combine ingredients in an old-fashioned glass 1/4 filled with cracked ice. Stir well, and serve.", @@ -85834,7 +85834,7 @@ "grenadine syrup" ], "title": "Face First recipe", - "url": "http://www.drinksmixer.com/drink9141.html" + "url": "https://www.drinksmixer.com/drink9141.html" }, { "directions": "Pour the rum, sweet vermouth and triple sec into a mixing glass half-filled with cracked ice. Stir well, strain into a cocktail glass, and serve.", @@ -85844,7 +85844,7 @@ "triple sec" ], "title": "Fair and Warmer Cocktail recipe", - "url": "http://www.drinksmixer.com/drink9142.html" + "url": "https://www.drinksmixer.com/drink9142.html" }, { "directions": "Pour the irish whiskey, v8 juice, barbecue sauce and lemon juice into a highball glass, and stir. Fill with beer, and serve.", @@ -85856,7 +85856,7 @@ "beer" ], "title": "Faith, Hope, and Garrity recipe", - "url": "http://www.drinksmixer.com/drink9143.html" + "url": "https://www.drinksmixer.com/drink9143.html" }, { "directions": "Pour the gin and vodka into a cocktail glass. Add sugar, and stir thoroughly. When dissolved, add the peppermint schnapps, and serve.", @@ -85867,7 +85867,7 @@ "sugar" ], "title": "Falcon Eddy recipe", - "url": "http://www.drinksmixer.com/drink9144.html" + "url": "https://www.drinksmixer.com/drink9144.html" }, { "directions": "Coat the rim of a cocktail glass with lemon juice and powdered sugar. Pour the rye whiskey, maraschino liqueur, orange bitters and Angostura bitters into a cocktail shaker half-filled with ice cubes. Shake well. Strain into the sugar-rimmed cocktail glass, and serve.", @@ -85880,7 +85880,7 @@ "powdered sugar" ], "title": "Fancy Free recipe", - "url": "http://www.drinksmixer.com/drink9145.html" + "url": "https://www.drinksmixer.com/drink9145.html" }, { "directions": "Shake all ingredients in a cocktail shaker half-filled with ice cubes. Strain into a cocktail glass, and serve.", @@ -85891,7 +85891,7 @@ "triple sec" ], "title": "Fare Thee Well recipe", - "url": "http://www.drinksmixer.com/drink9146.html" + "url": "https://www.drinksmixer.com/drink9146.html" }, { "directions": "Pour all ingredients into a mixing glass half-filled with cracked ice. Stir well. Strain into a chilled cocktail glass, and serve.", @@ -85902,7 +85902,7 @@ "Cointreau\u00ae orange liqueur" ], "title": "Fare Thee Well Martini recipe", - "url": "http://www.drinksmixer.com/drink9147.html" + "url": "https://www.drinksmixer.com/drink9147.html" }, { "directions": "Stir ingredients over a few ice cubes in a highball glass, and serve.", @@ -85912,7 +85912,7 @@ "Ocean Spray Kiwi-Strawberry Juice" ], "title": "Fat Titties recipe", - "url": "http://www.drinksmixer.com/drink9148.html" + "url": "https://www.drinksmixer.com/drink9148.html" }, { "directions": "Pour the vodka, Midori melon liqueur, Crown Royal whisky and triple sec into a cocktail shaker half-filled with ice cubes. Add sweet and sour mix to taste. Shake well. Strain into a highball glass, garnish with a cherry flag, and serve.", @@ -85924,7 +85924,7 @@ "sweet and sour mix" ], "title": "Fickle Pickle recipe", - "url": "http://www.drinksmixer.com/drink9149.html" + "url": "https://www.drinksmixer.com/drink9149.html" }, { "directions": "Pour the rum, amaretto and cola into a cocktail shaker half-filled with ice cubes. Shake well, strain over ice cubes in a brandy snifter, and serve.", @@ -85934,7 +85934,7 @@ "cola" ], "title": "Fiorenza recipe", - "url": "http://www.drinksmixer.com/drink9150.html" + "url": "https://www.drinksmixer.com/drink9150.html" }, { "directions": "Pour all ingredients into a highball glass filled with ice cubes. Stir, and serve.", @@ -85944,7 +85944,7 @@ "soda" ], "title": "Fire Engine with Alarm recipe", - "url": "http://www.drinksmixer.com/drink9151.html" + "url": "https://www.drinksmixer.com/drink9151.html" }, { "directions": "Pour the melon liqueur into a cocktail glass. Carefully layer the Frangelico hazelnut liqueur on top. Do the same with the Tia Maria coffee liqueur, strawberry liqueur, and finally the cream. Add shaved ice. Fill a straw with grenadine and, after placing the straw on the base of the glass, release. Garnish with chocolate sprinkles, and serve.", @@ -85957,7 +85957,7 @@ "grenadine syrup" ], "title": "Fire in the Sky recipe", - "url": "http://www.drinksmixer.com/drink9152.html" + "url": "https://www.drinksmixer.com/drink9152.html" }, { "directions": "Pour all ingredients into a highball glass filled with ice cubes. Stir well, and serve.", @@ -85969,7 +85969,7 @@ "Coca-Cola\u00ae" ], "title": "Fire Starter recipe", - "url": "http://www.drinksmixer.com/drink9153.html" + "url": "https://www.drinksmixer.com/drink9153.html" }, { "directions": "Pour the champagne, gin, sugar and cherry heering into a cocktail shaker half-filled with ice cubes. Shake well, strain into a cocktail glass, and serve.", @@ -85980,7 +85980,7 @@ "Heering\u00ae cherry liqueur" ], "title": "First Love recipe", - "url": "http://www.drinksmixer.com/drink9154.html" + "url": "https://www.drinksmixer.com/drink9154.html" }, { "directions": "Stir all ingredients together in a cocktail glass. Garnish with a twist of orange peel, and serve.", @@ -85991,7 +85991,7 @@ "dry sparkling wine" ], "title": "First Nighter recipe", - "url": "http://www.drinksmixer.com/drink9155.html" + "url": "https://www.drinksmixer.com/drink9155.html" }, { "directions": "Pour the Bacardi 151, blue curacao and Malibu rum into a collins glass half-filled with ice cubes. Stir well. Fill with mountain dew, to taste. Stir briefly, and serve.", @@ -86003,7 +86003,7 @@ "Mountain Dew\u00ae citrus soda" ], "title": "Five Green Brothers recipe", - "url": "http://www.drinksmixer.com/drink9156.html" + "url": "https://www.drinksmixer.com/drink9156.html" }, { "directions": "Pour both ingredients into an old-fashioned glass, stir briefly and serve.", @@ -86012,7 +86012,7 @@ "DeKuyper\u00ae Hot Damn cinnamon schnapps" ], "title": "Fucking Hot recipe", - "url": "http://www.drinksmixer.com/drink9157.html" + "url": "https://www.drinksmixer.com/drink9157.html" }, { "directions": "Pour the lemon vodka, peach schnapps and triple sec into a collins glass filled with ice cubes. Add the juices, and stir vigorously. Top with extra grapefruit juice if desired, and serve.", @@ -86024,7 +86024,7 @@ "orange juice" ], "title": "Fuck Me Sideways recipe", - "url": "http://www.drinksmixer.com/drink9158.html" + "url": "https://www.drinksmixer.com/drink9158.html" }, { "directions": "Swirl the sherry in an old-fashioned glass to coat. Add vodka, garnish with orange peel, and serve.", @@ -86033,7 +86033,7 @@ "vodka" ], "title": "Flame of Love recipe", - "url": "http://www.drinksmixer.com/drink9159.html" + "url": "https://www.drinksmixer.com/drink9159.html" }, { "directions": "Pour the rums into an old-fashioned glass. Seperately, pour the blue curacao into a double-shot glass. Ignite the rum mixture (use extreme caution) and suck with a straw; at the same time pour the blue curacao into the glass and finish.", @@ -86043,7 +86043,7 @@ "Blue Curacao liqueur" ], "title": "Flaming Ferrari recipe", - "url": "http://www.drinksmixer.com/drink9160.html" + "url": "https://www.drinksmixer.com/drink9160.html" }, { "directions": "Pour the spiced rum, cherry liqueur and tonic water into a cocktail shaker half-filled with cracked ice. Shake well. Strain into a highball glass, and garnish with a slice of lime and a maraschino cherry. If desired, float the Bacardi 151 on top of the drink and ignite (use extreme caution). Extinguish before serving.", @@ -86054,7 +86054,7 @@ "Bacardi\u00ae 151 rum" ], "title": "Flaming Gay Morgan recipe", - "url": "http://www.drinksmixer.com/drink9161.html" + "url": "https://www.drinksmixer.com/drink9161.html" }, { "directions": "Stir ingredients together in a highball glass filled with ice cubes, and serve.", @@ -86064,7 +86064,7 @@ "clamato juice" ], "title": "Flaming Layrnx recipe", - "url": "http://www.drinksmixer.com/drink9162.html" + "url": "https://www.drinksmixer.com/drink9162.html" }, { "directions": "Combine all ingredients with crushed ice in a blender. Blend until frothy. Pour into a tall glass with a flamingo stirring stick or straw, and serve.", @@ -86074,7 +86074,7 @@ "sweet and sour mix" ], "title": "Flamingo Rita recipe", - "url": "http://www.drinksmixer.com/drink9163.html" + "url": "https://www.drinksmixer.com/drink9163.html" }, { "directions": "Pour the rum and vermouth into a cocktail glass. Sweeten to taste. Add a dash of Angostura bitters. Garnish with a maraschino cherry and a slice of orange.", @@ -86085,7 +86085,7 @@ "sugar" ], "title": "Flapper recipe", - "url": "http://www.drinksmixer.com/drink9164.html" + "url": "https://www.drinksmixer.com/drink9164.html" }, { "directions": "Pour all ingredients into a collins glass filled with ice cubes. Stir well, and serve.", @@ -86095,7 +86095,7 @@ "ginger ale" ], "title": "Flashback recipe", - "url": "http://www.drinksmixer.com/drink9165.html" + "url": "https://www.drinksmixer.com/drink9165.html" }, { "directions": "Combine all ingredients with crushed ice in a blender. Keep adding ice and blending in stages until slurpee-consistancy. Pour into a hurricane glass. Top with whipped cream, and serve.", @@ -86107,7 +86107,7 @@ "whipped cream" ], "title": "Flip a Pack recipe", - "url": "http://www.drinksmixer.com/drink9166.html" + "url": "https://www.drinksmixer.com/drink9166.html" }, { "directions": "Add the lime juice, grenadine and sugar to a collins glass filled with ice cubes. Add gin, and top with club soda. Stir well, and serve.", @@ -86119,7 +86119,7 @@ "powdered sugar" ], "title": "Floradora Cooler recipe", - "url": "http://www.drinksmixer.com/drink9167.html" + "url": "https://www.drinksmixer.com/drink9167.html" }, { "directions": "Pour all ingredients into a blender with 3/4 cup of crushed ice. Blend until slushy. Pour into a highball glass, and serve.", @@ -86130,7 +86130,7 @@ "pineapple juice" ], "title": "Florida Freeze recipe", - "url": "http://www.drinksmixer.com/drink9168.html" + "url": "https://www.drinksmixer.com/drink9168.html" }, { "directions": "Pour all ingredients into a cocktail shaker half-filled with ice cubes. Shake well, and strain into a highball glass filled with crushed ice. Garnish with a slice of orange, and serve.", @@ -86141,7 +86141,7 @@ "orange juice" ], "title": "Florida Punch recipe", - "url": "http://www.drinksmixer.com/drink9169.html" + "url": "https://www.drinksmixer.com/drink9169.html" }, { "directions": "Pour the Seagram's 7 Crown whiskey into a double-shot glass. Seperately, pour the 7-Up into a highball glass. Ignite the Seagram's 7 on fire (use extreme caution), and drop into the highball glass. Stir and serve.", @@ -86150,7 +86150,7 @@ "7-Up\u00ae soda" ], "title": "Flaming 7-7 recipe", - "url": "http://www.drinksmixer.com/drink9170.html" + "url": "https://www.drinksmixer.com/drink9170.html" }, { "directions": "Pour the vodka, coconut rum and sour mix into a cocktail shaker half-filled with ice cubes. Shake well. Strain into a collins glass almost filled with ice cubes. Add soda. Garnish with a slice of lime and a maraschino cherry, and serve.", @@ -86161,7 +86161,7 @@ "club soda" ], "title": "Floyd Collins recipe", - "url": "http://www.drinksmixer.com/drink9171.html" + "url": "https://www.drinksmixer.com/drink9171.html" }, { "directions": "Pour the rums and juices into a cocktail shaker half-filled with ice cubes. Shake well, strain over crushed ice in a cocktail glass, and serve.", @@ -86172,7 +86172,7 @@ "cranberry juice" ], "title": "Fluffy Cocktail recipe", - "url": "http://www.drinksmixer.com/drink9172.html" + "url": "https://www.drinksmixer.com/drink9172.html" }, { "directions": "Pour the rums and Red Bull into a collins glass with a few ice cubes. Top with orange juice, to taste. Stir well, and serve.", @@ -86183,7 +86183,7 @@ "orange juice" ], "title": "Flying Bull recipe", - "url": "http://www.drinksmixer.com/drink9173.html" + "url": "https://www.drinksmixer.com/drink9173.html" }, { "directions": "Add liquors and banana to a blender with half a cup of crushed ice. Add cream to taste. Blend until smooth. Pour into a highball glass, and serve.", @@ -86197,7 +86197,7 @@ "cream" ], "title": "Flying Cow recipe", - "url": "http://www.drinksmixer.com/drink9174.html" + "url": "https://www.drinksmixer.com/drink9174.html" }, { "directions": "Stir ingredients together in an old-fashioned glass, and serve.", @@ -86206,7 +86206,7 @@ "sambuca" ], "title": "Flying Fuck recipe", - "url": "http://www.drinksmixer.com/drink9175.html" + "url": "https://www.drinksmixer.com/drink9175.html" }, { "directions": "Pour all ingredients into a cocktail shaker half-filled with ice cubes. Shake well, strain into a cocktail glass, and serve.", @@ -86217,7 +86217,7 @@ "triple sec" ], "title": "Flying Fortress recipe", - "url": "http://www.drinksmixer.com/drink9176.html" + "url": "https://www.drinksmixer.com/drink9176.html" }, { "directions": "Pour the rum, vodka, cranberry juice and lemon juice into a sugar-frosted highball glass almost filled with ice cubes. Stir well. Add the cranberry juice, then the vermouth, and serve.", @@ -86230,7 +86230,7 @@ "grapefruit juice" ], "title": "Flying Grapefruit recipe", - "url": "http://www.drinksmixer.com/drink9177.html" + "url": "https://www.drinksmixer.com/drink9177.html" }, { "directions": "Combine the rums, curacao, grenadine and lime juice in a cocktail shaker half-filled with ice cubes. Shake well. Strain into a collins glass almost filled with ice cubes. Garnish with an almond-embedded slice of lime, and serve.", @@ -86243,7 +86243,7 @@ "club soda" ], "title": "Flying Purple Squirrel recipe", - "url": "http://www.drinksmixer.com/drink9178.html" + "url": "https://www.drinksmixer.com/drink9178.html" }, { "directions": "Pour the gin into a highball glass filled with ice cubes. Fill with ginger ale. Add half a lime, first squeezed over then dropped in. Stir well, and serve.", @@ -86253,7 +86253,7 @@ "lime juice" ], "title": "Foghorn recipe", - "url": "http://www.drinksmixer.com/drink9179.html" + "url": "https://www.drinksmixer.com/drink9179.html" }, { "directions": "Pour the brandy, madeira wine and triple sec into a mixing glass half-filled with ice. Stir well. Strain into a cocktail glass, and serve.", @@ -86263,7 +86263,7 @@ "triple sec" ], "title": "Fondling Fool recipe", - "url": "http://www.drinksmixer.com/drink9180.html" + "url": "https://www.drinksmixer.com/drink9180.html" }, { "directions": "Pour all ingredients into a blender with one scoop (half a cup) of crushed ice. Blend well. Pour into a highball glass, and serve.", @@ -86274,7 +86274,7 @@ "pineapple juice" ], "title": "Four Wheeler recipe", - "url": "http://www.drinksmixer.com/drink9182.html" + "url": "https://www.drinksmixer.com/drink9182.html" }, { "directions": "Combine the gin, strawberry liqueur, lemon juice and sugar syrup in a cocktail shaker half-filled with ice cubes. Shake well. Strain into a highball glass. Add soda water, and garnish with a strawberry and a twist of lemon peel.", @@ -86286,7 +86286,7 @@ "soda water" ], "title": "Fraises Fizz recipe", - "url": "http://www.drinksmixer.com/drink9183.html" + "url": "https://www.drinksmixer.com/drink9183.html" }, { "directions": "Pour the Frangelico hazelnut liqueur into a mug of hot chocolate, stir briefly and serve.", @@ -86295,7 +86295,7 @@ "hot chocolate" ], "title": "Frangelico and Chocolate recipe", - "url": "http://www.drinksmixer.com/drink9184.html" + "url": "https://www.drinksmixer.com/drink9184.html" }, { "directions": "Combine all ingredients in a cocktail shaker half-filled with ice cubes. Shake well, strain into a cocktail glass, and serve.", @@ -86306,7 +86306,7 @@ "sugar" ], "title": "Franko Ra recipe", - "url": "http://www.drinksmixer.com/drink9185.html" + "url": "https://www.drinksmixer.com/drink9185.html" }, { "directions": "Pour both ingredients over cracked ice in an old-fashioned glass. Stir well, and serve.", @@ -86315,7 +86315,7 @@ "Bailey's\u00ae Irish cream" ], "title": "Fraser recipe", - "url": "http://www.drinksmixer.com/drink9186.html" + "url": "https://www.drinksmixer.com/drink9186.html" }, { "directions": "Pour the raspberry vodka into a highball glass almost filled with ice cubes. Fill with ginger beer, add a splash of lime juice, and serve.", @@ -86325,7 +86325,7 @@ "lime juice" ], "title": "FrazzleBerry recipe", - "url": "http://www.drinksmixer.com/drink9187.html" + "url": "https://www.drinksmixer.com/drink9187.html" }, { "directions": "Pour all ingredients into a highball glass, and stir. Garnish with a slice of orange and a maraschino cherry, and serve.", @@ -86336,7 +86336,7 @@ "orange juice" ], "title": "French Fantasy recipe", - "url": "http://www.drinksmixer.com/drink9188.html" + "url": "https://www.drinksmixer.com/drink9188.html" }, { "directions": "Pour all ingredients into a highball glass. Add a dusting of lemon or orange sherbet on top, and serve.", @@ -86348,7 +86348,7 @@ "dry sparkling wine" ], "title": "French Foam recipe", - "url": "http://www.drinksmixer.com/drink9189.html" + "url": "https://www.drinksmixer.com/drink9189.html" }, { "directions": "Pour the Frangelico hazelnut liqueur, triple sec, lime juice and pineapple juice into a cocktail shaker half-filled with ice cubes. Shake well, strain into a highball glass, and serve.", @@ -86359,7 +86359,7 @@ "pineapple juice" ], "title": "French Fry recipe", - "url": "http://www.drinksmixer.com/drink9190.html" + "url": "https://www.drinksmixer.com/drink9190.html" }, { "directions": "Pour the cognac and green chartreuse into a cocktail shaker half-filled with ice cubes. Shake well, strain into a cocktail glass, and serve.", @@ -86368,7 +86368,7 @@ "Green Chartreuse\u00ae" ], "title": "French Green Dragon recipe", - "url": "http://www.drinksmixer.com/drink9191.html" + "url": "https://www.drinksmixer.com/drink9191.html" }, { "directions": "Pour the cognac into a brandy glass. Add irish cream, and serve unstirred.", @@ -86377,7 +86377,7 @@ "Irish cream" ], "title": "French Orgasm recipe", - "url": "http://www.drinksmixer.com/drink9192.html" + "url": "https://www.drinksmixer.com/drink9192.html" }, { "directions": "Pour both ingredients into a highball glass filled with ice cubes. Stir well, and serve.", @@ -86386,7 +86386,7 @@ "water" ], "title": "French Style Pernod recipe", - "url": "http://www.drinksmixer.com/drink9193.html" + "url": "https://www.drinksmixer.com/drink9193.html" }, { "directions": "Pour all ingredients into a cocktail shaker half-filled with cracked ice. Shake well. Strain into a chilled cocktail glass, garnish with an olive, and serve.", @@ -86396,7 +86396,7 @@ "Angostura\u00ae bitters" ], "title": "Fretful Martini recipe", - "url": "http://www.drinksmixer.com/drink9194.html" + "url": "https://www.drinksmixer.com/drink9194.html" }, { "directions": "Pour the rum, triple sec and pineapple juice into a blender with one cup of crushed ice. Blend well. Pour into a highball glass, garnish with a maraschino cherry, and serve.", @@ -86406,7 +86406,7 @@ "pineapple juice" ], "title": "Frigid Hairy Virgin recipe", - "url": "http://www.drinksmixer.com/drink9195.html" + "url": "https://www.drinksmixer.com/drink9195.html" }, { "directions": "Pour all ingredients into a highball glass, stir and serve.", @@ -86416,7 +86416,7 @@ "sweet and sour mix" ], "title": "Frog Cocktail recipe", - "url": "http://www.drinksmixer.com/drink9196.html" + "url": "https://www.drinksmixer.com/drink9196.html" }, { "directions": "Pour all ingredients into a frosted collins glass filled with ice cubes. Stir well, and serve.", @@ -86426,7 +86426,7 @@ "Squirt\u00ae citrus soda" ], "title": "Frosted Apple recipe", - "url": "http://www.drinksmixer.com/drink9197.html" + "url": "https://www.drinksmixer.com/drink9197.html" }, { "directions": "Mix all ingredients together in a highball glass, and serve.", @@ -86437,7 +86437,7 @@ "orange juice" ], "title": "Frosty Dawn recipe", - "url": "http://www.drinksmixer.com/drink9198.html" + "url": "https://www.drinksmixer.com/drink9198.html" }, { "directions": "Pour all ingredients into a cocktail shaker half-filled with ice cubes. Shake well, and strain into a large cocktail glass. Garnish with 2 cranberries and a slice of lime, and serve.", @@ -86452,7 +86452,7 @@ "milk" ], "title": "Frosty Lay recipe", - "url": "http://www.drinksmixer.com/drink9199.html" + "url": "https://www.drinksmixer.com/drink9199.html" }, { "directions": "Combine the eggnog and sugar in a blender. Blend at medium speed, slowly adding 3 cups of crushed ice. Blend until smooth and frosty. Pour into a parfait glass, and garnish with almond slivers and a dusting of nutmeg.", @@ -86461,7 +86461,7 @@ "sugar" ], "title": "Frosty Nog recipe", - "url": "http://www.drinksmixer.com/drink9200.html" + "url": "https://www.drinksmixer.com/drink9200.html" }, { "directions": "Combine all ingredients in a blender. Blend until smooth. Pour into a parfait glass and top with whipped cream. Garnish with a few drops of green creme de menthe and a rolled cookie, and serve.", @@ -86472,7 +86472,7 @@ "vanilla ice cream" ], "title": "Frosty Noggin recipe", - "url": "http://www.drinksmixer.com/drink9201.html" + "url": "https://www.drinksmixer.com/drink9201.html" }, { "directions": "Pour all three ingredients into a cocktail glass, stir and serve.", @@ -86482,7 +86482,7 @@ "benedictine herbal liqueur" ], "title": "Froupe Cocktail recipe", - "url": "http://www.drinksmixer.com/drink9202.html" + "url": "https://www.drinksmixer.com/drink9202.html" }, { "directions": "Combine all ingredients in a blender. Blend until smooth and slightly thick. Pour into a collins glass with a few ice cubes. Garnish with whipped cream and a maraschino cherry. Add straws, and serve.", @@ -86495,7 +86495,7 @@ "vanilla ice cream" ], "title": "Frozen Andes Mint recipe", - "url": "http://www.drinksmixer.com/drink9203.html" + "url": "https://www.drinksmixer.com/drink9203.html" }, { "directions": "Combine the liqueurs, ice cream and cream in a blender with half a cup of crushed ice. Blend until smooth. Pour into a parfait glass rimmed with cinnamon sugar. Garnish with a cinnamon stick. Add a straw, and serve.", @@ -86507,7 +86507,7 @@ "light cream" ], "title": "Frozen Cappuccino recipe", - "url": "http://www.drinksmixer.com/drink9204.html" + "url": "https://www.drinksmixer.com/drink9204.html" }, { "directions": "Pour the vodka, melon liqueur, blue curacao and lime juice into a blender. Blend until smooth, and pour into a parfait glass. Garnish with a slice of lemon and a maraschino cherry, and serve.", @@ -86519,7 +86519,7 @@ "sweet and sour mix" ], "title": "Frozen Citron Neon recipe", - "url": "http://www.drinksmixer.com/drink9205.html" + "url": "https://www.drinksmixer.com/drink9205.html" }, { "directions": "Add all ingredients to a blender with half a cup of crushed ice. Blend until puree-consistency. Pour into a parfait glass, garnish with a pineapple slice, and serve.", @@ -86530,7 +86530,7 @@ "Ocean Spray\u00ae cranberry juice" ], "title": "Frozen Domingo recipe", - "url": "http://www.drinksmixer.com/drink9206.html" + "url": "https://www.drinksmixer.com/drink9206.html" }, { "directions": "Pour all ingredients into a blender with 1/3 cup of crushed ice. Blend on low for 5 seconds then on high until firm. Pour into a cocktail glass, garnish with a slice of lemon or lime, and serve.", @@ -86542,7 +86542,7 @@ "lemon-lime soda" ], "title": "Frozen Fuzzy recipe", - "url": "http://www.drinksmixer.com/drink9207.html" + "url": "https://www.drinksmixer.com/drink9207.html" }, { "directions": "Place both ingredients, a cocktail shaker, a cocktail glass and 2 almond-stuffed olives in a freezer for approximately 4 hours. Remove when ready. Pour the gin and vermouth into the chilled cocktail shaker and shake well. Strain into the chilled cocktail glass. Garnish with the 2 almond-stuffed olives, and serve.", @@ -86551,7 +86551,7 @@ "dry vermouth" ], "title": "Frozen Martini recipe", - "url": "http://www.drinksmixer.com/drink9208.html" + "url": "https://www.drinksmixer.com/drink9208.html" }, { "directions": "Pour ingredients over finely shaven ice in a parfait glass, and stir well. Garnish with a slices of fruit, and serve.", @@ -86561,7 +86561,7 @@ "creme de cacao" ], "title": "Frozen Steppes recipe", - "url": "http://www.drinksmixer.com/drink9209.html" + "url": "https://www.drinksmixer.com/drink9209.html" }, { "directions": "Pour the rum and lemon juice and sugar into a champagne saucer with some shaved ice. Stir well. Garnish with 4 strawberries, sliced or otherwise, and serve.", @@ -86572,7 +86572,7 @@ "sugar" ], "title": "Frozen Strawberry Daiquiri recipe", - "url": "http://www.drinksmixer.com/drink9210.html" + "url": "https://www.drinksmixer.com/drink9210.html" }, { "directions": "Pour all ingredients over finely shaven ice in a margarita glass, and serve.", @@ -86584,7 +86584,7 @@ "strawberry liqueur" ], "title": "Frozen Strawberry Margarita recipe", - "url": "http://www.drinksmixer.com/drink9211.html" + "url": "https://www.drinksmixer.com/drink9211.html" }, { "directions": "Pour the tequila and orange juice into a highball glass filled with finely shaven ice. Garnish with a slice of orange, and serve.", @@ -86593,7 +86593,7 @@ "orange juice" ], "title": "Frozen Tequila Screwdriver recipe", - "url": "http://www.drinksmixer.com/drink9212.html" + "url": "https://www.drinksmixer.com/drink9212.html" }, { "directions": "Pour ingredients into a highball glass 2/3 filled with ice cubes. Stir extremely well, and serve.", @@ -86605,7 +86605,7 @@ "ginger ale" ], "title": "Fruitbooty 69 recipe", - "url": "http://www.drinksmixer.com/drink9213.html" + "url": "https://www.drinksmixer.com/drink9213.html" }, { "directions": "Pour the rum, creme de cacao and one cup of crushed ice into a blender. Add the fruit liqueur and peeled fruit, to your choosing (use the same flavor for both) and blend well. Pour into an exotic glass; hurricane or equivalent, and serve.", @@ -86616,7 +86616,7 @@ "fruits" ], "title": "Fruit Daiquiri recipe", - "url": "http://www.drinksmixer.com/drink9214.html" + "url": "https://www.drinksmixer.com/drink9214.html" }, { "directions": "Pour all ingredients into a blender with 1/4 cup of crushed ice. Blend until smooth, and transfer to a tulip glass. Garnish with a maraschino cherry, and serve.", @@ -86626,7 +86626,7 @@ "grenadine syrup" ], "title": "Frozen Pine recipe", - "url": "http://www.drinksmixer.com/drink9215.html" + "url": "https://www.drinksmixer.com/drink9215.html" }, { "directions": "Add all ingredients to a blender, and blend well. Pour over finely shaven ice in a highball glass. Garnish with a strawberry and a slice of banana, and serve.", @@ -86637,7 +86637,7 @@ "pina colada mix" ], "title": "Fruit Explosion recipe", - "url": "http://www.drinksmixer.com/drink9216.html" + "url": "https://www.drinksmixer.com/drink9216.html" }, { "directions": "Add the tequila, triple sec, sour mix and fruit (choose one fruit) to a blender with one cup of crushed ice. Blend well. Pour into a hurricane glass, and serve.", @@ -86648,7 +86648,7 @@ "fruits" ], "title": "Fruit Margarita recipe", - "url": "http://www.drinksmixer.com/drink9217.html" + "url": "https://www.drinksmixer.com/drink9217.html" }, { "directions": "Pour the orange juice, grapefruit juice, milk, sugar and vanilla extract into a blender with 2 oz of ice. Blend until smooth. Pour into a highball glass, add a straw, and serve.", @@ -86660,7 +86660,7 @@ "vanilla extract" ], "title": "Fruit Milkshake recipe", - "url": "http://www.drinksmixer.com/drink9218.html" + "url": "https://www.drinksmixer.com/drink9218.html" }, { "directions": "Pour the DeKuyper sour apple and watermelon pucker into a cocktail shaker half-filled with ice cubes. Add the peach schnapps and Malibu rum, and shake well. Strain into a highball glass 3/4 filled with ice cubes. Add the cranberry juice and pineapple juice. Garnish with a slice of orange, and serve.", @@ -86673,7 +86673,7 @@ "pineapple juice" ], "title": "Fruitopia Snap recipe", - "url": "http://www.drinksmixer.com/drink9219.html" + "url": "https://www.drinksmixer.com/drink9219.html" }, { "directions": "Add all ingredients to a blender and blend at low speed. Pour into a highball glass. Garnish with raspberries, and serve.", @@ -86683,7 +86683,7 @@ "banana" ], "title": "Fruit Smoothie recipe", - "url": "http://www.drinksmixer.com/drink9220.html" + "url": "https://www.drinksmixer.com/drink9220.html" }, { "directions": "Pour the banana liqueur, dark rum, Midori melon liqueur, peach schnapps, creme de cassis and grenadine into a collins glass filled with ice cubes. Fill with pineapple juice, garnish with a slice of pineapple, and serve.", @@ -86697,7 +86697,7 @@ "pineapple juice" ], "title": "Fruity Fuck recipe", - "url": "http://www.drinksmixer.com/drink9221.html" + "url": "https://www.drinksmixer.com/drink9221.html" }, { "directions": "Pour all ingredients into a cocktail shaker half-filled with ice cubes. Shake well, strain into a cocktail glass, and serve.", @@ -86707,7 +86707,7 @@ "fruit punch" ], "title": "Fruity Slut recipe", - "url": "http://www.drinksmixer.com/drink9222.html" + "url": "https://www.drinksmixer.com/drink9222.html" }, { "directions": "Add all ingredients to a blender; blend until smooth. Pour into a large hurricane glass. Garnish with maraschino cherries, and serve.", @@ -86717,7 +86717,7 @@ "vanilla ice cream" ], "title": "Fruity Smash recipe", - "url": "http://www.drinksmixer.com/drink9223.html" + "url": "https://www.drinksmixer.com/drink9223.html" }, { "directions": "Pour all ingredients into a cocktail shaker half-filled with ice cubes. Shake well. Strain into a cocktail glass, and serve.", @@ -86728,7 +86728,7 @@ "7-Up\u00ae soda" ], "title": "Fruity Toad recipe", - "url": "http://www.drinksmixer.com/drink9224.html" + "url": "https://www.drinksmixer.com/drink9224.html" }, { "directions": "Pour all ingredients into a highball glass and stir. Add a straw, and serve.", @@ -86738,7 +86738,7 @@ "milk" ], "title": "Fudgesicle recipe", - "url": "http://www.drinksmixer.com/drink9225.html" + "url": "https://www.drinksmixer.com/drink9225.html" }, { "directions": "Pour each ingredient into a cocktail shaker half-filled with ice cubes. Shake well, strain into a cocktail glass, and serve.", @@ -86748,7 +86748,7 @@ "Bailey's\u00ae Irish cream" ], "title": "Fudge Slide recipe", - "url": "http://www.drinksmixer.com/drink9226.html" + "url": "https://www.drinksmixer.com/drink9226.html" }, { "directions": "Pour the apricot brandy, DeKuyper Peachtree schnapps, Kahlua coffee liqueur and sour mix into a cocktail shaker half-filled with ice cubes. Shake well, and strain into a 10-12 oz highball glass. Fill with 7-up. Stir, and serve.", @@ -86760,7 +86760,7 @@ "7-Up\u00ae soda" ], "title": "Full House recipe", - "url": "http://www.drinksmixer.com/drink9227.html" + "url": "https://www.drinksmixer.com/drink9227.html" }, { "directions": "Chill all ingredients prior to serving. Pour into a highball glass, and stir well.", @@ -86770,7 +86770,7 @@ "Sprite\u00ae soda" ], "title": "Funky Garlic recipe", - "url": "http://www.drinksmixer.com/drink9228.html" + "url": "https://www.drinksmixer.com/drink9228.html" }, { "directions": "Pour the rums, blue curacao, grenadine and lime juice into a cocktail shaker half-filled with ice cubes. Shake well, and strain into a highball glass filled with ice cubes. Add the club soda, and stir. Garnish with a slice of lime with an almond embedded in it. Pour the dash of coconut rum to finish, and serve.", @@ -86784,7 +86784,7 @@ "coconut rum" ], "title": "Furry Purple Squirrel recipe", - "url": "http://www.drinksmixer.com/drink9229.html" + "url": "https://www.drinksmixer.com/drink9229.html" }, { "directions": "Pour the Midori melon liqueur, peach schnapps, Smirnoff vodka, Bacardi rum, Gordon's dry gin and Malibu rum into a cocktail shaker half-filled with ice cubes. Add orange juice and pineapple juice. Shake well. Strain into a collinsl glass 1/4 filled with crushed ice. Add a dash of cranberry juice, garnish with a slice of orange, and serve.", @@ -86800,7 +86800,7 @@ "cranberry juice" ], "title": "Fruit Fusion recipe", - "url": "http://www.drinksmixer.com/drink9230.html" + "url": "https://www.drinksmixer.com/drink9230.html" }, { "directions": "Pour the gin and vermouth into a cocktail shaker half-filled with ice cubes. Shake well, and strain into a cocktail glass. Add the angostura bitters, and serve.", @@ -86810,7 +86810,7 @@ "Angostura\u00ae bitters" ], "title": "Futurity recipe", - "url": "http://www.drinksmixer.com/drink9231.html" + "url": "https://www.drinksmixer.com/drink9231.html" }, { "directions": "Pour the Kahlua coffee liqueur into a cocktail glass with 1 1/2 oz of crushed ice. Pour the cola and milk simultaneously until full, and serve.", @@ -86820,7 +86820,7 @@ "milk" ], "title": "Fuzzy Bear recipe", - "url": "http://www.drinksmixer.com/drink9232.html" + "url": "https://www.drinksmixer.com/drink9232.html" }, { "directions": "Pour the dark rum, creme de bananes, coconut cream and pineapple juice into a cocktail shaker half-filled with ice cubes. Shake well. Strain into a highball glass almost filled with ice cubes, and top with ginger ale. Garnish with a pineapple spear, and serve.", @@ -86832,7 +86832,7 @@ "ginger ale" ], "title": "Fuzzy Charlie recipe", - "url": "http://www.drinksmixer.com/drink9233.html" + "url": "https://www.drinksmixer.com/drink9233.html" }, { "directions": "Pour the peach schnapps into a highball glass filled with ice cubes. Add the cola, stir well, and serve.", @@ -86841,7 +86841,7 @@ "Coca-Cola\u00ae" ], "title": "Fuzzy Cola recipe", - "url": "http://www.drinksmixer.com/drink9234.html" + "url": "https://www.drinksmixer.com/drink9234.html" }, { "directions": "Pour all ingredients into an old-fashioned glass 1/4 filled with ice cubes. Stir well, and serve.", @@ -86851,7 +86851,7 @@ "brandy" ], "title": "Fuzzy Duck recipe", - "url": "http://www.drinksmixer.com/drink9235.html" + "url": "https://www.drinksmixer.com/drink9235.html" }, { "directions": "Pour all ingredients into a cocktail shaker with crushed ice. Shake well, strain into a collins glass, and serve.", @@ -86861,7 +86861,7 @@ "pineapple juice" ], "title": "Fuzzy Evil recipe", - "url": "http://www.drinksmixer.com/drink9236.html" + "url": "https://www.drinksmixer.com/drink9236.html" }, { "directions": "Pour the blue curacao, raspberry liqueur, triple sec and everclear into a highball glass 3/4 filled with ice cubes. Top with 7-up, and stir well.", @@ -86873,7 +86873,7 @@ "7-Up\u00ae soda" ], "title": "Fuzzy Fruity Brain Blitzer recipe", - "url": "http://www.drinksmixer.com/drink9237.html" + "url": "https://www.drinksmixer.com/drink9237.html" }, { "directions": "Pour both ingredients into a highball glass, stir, and serve.", @@ -86882,7 +86882,7 @@ "Gatorade\u00ae energy drink" ], "title": "Fuzzy Leprechaun recipe", - "url": "http://www.drinksmixer.com/drink9238.html" + "url": "https://www.drinksmixer.com/drink9238.html" }, { "directions": "Pour all ingredients into a cocktail shaker half-filled with ice cubes. Shake well, strain into a collins glass almost filled with ice cubes, and serve.", @@ -86894,7 +86894,7 @@ "pineapple juice" ], "title": "Fuzzy Melon recipe", - "url": "http://www.drinksmixer.com/drink9239.html" + "url": "https://www.drinksmixer.com/drink9239.html" }, { "directions": "Pour the Midori melon liqueur and peach schnapps into a highball glass filled with ice cubes. Fill with orange juice, stir and serve.", @@ -86904,7 +86904,7 @@ "orange juice" ], "title": "Fuzzy Melon Ball recipe", - "url": "http://www.drinksmixer.com/drink9240.html" + "url": "https://www.drinksmixer.com/drink9240.html" }, { "directions": "Pour all ingredients into a highball glass filled with ice cubes. Stir well, and serve.", @@ -86914,7 +86914,7 @@ "Sunny Delight\u00ae orange juice" ], "title": "Fuzzy Nuts recipe", - "url": "http://www.drinksmixer.com/drink9241.html" + "url": "https://www.drinksmixer.com/drink9241.html" }, { "directions": "Pour both ingredients into an old-fashioned glass, and stir.", @@ -86923,7 +86923,7 @@ "Mountain Dew\u00ae citrus soda" ], "title": "Fuzzy Pissbomb recipe", - "url": "http://www.drinksmixer.com/drink9242.html" + "url": "https://www.drinksmixer.com/drink9242.html" }, { "directions": "Pour all ingredients into an old-fashioned glass 3/4 filled with ice cubes. Stir well, and serve.", @@ -86934,7 +86934,7 @@ "lime juice" ], "title": "Fuzzy Rita recipe", - "url": "http://www.drinksmixer.com/drink9243.html" + "url": "https://www.drinksmixer.com/drink9243.html" }, { "directions": "Pour the vodka and peach schnapps into a highball glass, and stir. Fill with orange juice. Top with galliano, and serve.", @@ -86945,7 +86945,7 @@ "Galliano\u00ae herbal liqueur" ], "title": "Fuzzy Screw Against the Wall recipe", - "url": "http://www.drinksmixer.com/drink9244.html" + "url": "https://www.drinksmixer.com/drink9244.html" }, { "directions": "Pour all ingredients into a blender with 1/4 cup crushed ice. Blend well. Pour into a cocktail glass, and top with a dash of pineapple juice. Garnish with fresh grated nutmeg and a pineapple wedge, and serve.", @@ -86955,7 +86955,7 @@ "pineapple juice" ], "title": "Guavaberry Colada recipe", - "url": "http://www.drinksmixer.com/drink9245.html" + "url": "https://www.drinksmixer.com/drink9245.html" }, { "directions": "Pour the guavaberry liqueur into a chilled wine glass. Add chilled dry white wine, to taste, and serve.", @@ -86964,7 +86964,7 @@ "dry white wine" ], "title": "Guavaberry Kir recipe", - "url": "http://www.drinksmixer.com/drink9246.html" + "url": "https://www.drinksmixer.com/drink9246.html" }, { "directions": "Pour the guavaberry liqueur into a frozen champagne glass. Top with chilled champagne, completely or to taste, and serve.", @@ -86973,7 +86973,7 @@ "Champagne" ], "title": "Guavaberry Royale recipe", - "url": "http://www.drinksmixer.com/drink9247.html" + "url": "https://www.drinksmixer.com/drink9247.html" }, { "directions": "Pour the guavaberry liqueur and grapefruit juice into a highball glass filled with ice. Carefully add the grenadine. Garnish with a slice of fruit and a dusting of ground cinnamon, and serve.", @@ -86983,7 +86983,7 @@ "grenadine syrup" ], "title": "Guavaberry Sunset recipe", - "url": "http://www.drinksmixer.com/drink9248.html" + "url": "https://www.drinksmixer.com/drink9248.html" }, { "directions": "Pour the rum, guava juice and coconut cream into a blender with one cup of crushed ice. Blend until smooth. Pour into a hurricane glass. Garnish with a kiwi wheel, a tropical edible flower or a pineapple flag, and serve.", @@ -86993,7 +86993,7 @@ "coconut cream" ], "title": "Guava Colada recipe", - "url": "http://www.drinksmixer.com/drink9249.html" + "url": "https://www.drinksmixer.com/drink9249.html" }, { "directions": "Pour the Malibu rum and orange juice into a cocktail shaker half-filled with ice cubes. Shake well. Pour the contents into a highball glass, and top with grenadine. Garnish with 2 crushed maraschino cherries, and serve.", @@ -87003,7 +87003,7 @@ "grenadine syrup" ], "title": "Guilty O.J. recipe", - "url": "http://www.drinksmixer.com/drink9250.html" + "url": "https://www.drinksmixer.com/drink9250.html" }, { "directions": "Pour all ingredients into a cocktail shaker half-filled with ice cubes. Shake well, strain into a medium-large chilled cocktail glass, and serve.", @@ -87015,7 +87015,7 @@ "Kahlua\u00ae coffee liqueur" ], "title": "Guinness Martini recipe", - "url": "http://www.drinksmixer.com/drink9251.html" + "url": "https://www.drinksmixer.com/drink9251.html" }, { "directions": "Pour the blue curacao, champagne, white rum, brandy, lemonade and lime juice over finely shaven ice in a sugar-rimmed parfait glass. Garnish with a strawberry, and serve.", @@ -87028,7 +87028,7 @@ "lime juice" ], "title": "Gulf Stream recipe", - "url": "http://www.drinksmixer.com/drink9252.html" + "url": "https://www.drinksmixer.com/drink9252.html" }, { "directions": "Pour the amarula cream liqueur, cream and butterscotch schnapps into a cocktail shaker half-filled with ice cubes. Shake well. Strain into a chilled cocktail glass and pour a dash of blue curacao down two opposite sides of the glass (using a teaspoon).", @@ -87039,7 +87039,7 @@ "Blue Curacao liqueur" ], "title": "Gumdrop Cocktail recipe", - "url": "http://www.drinksmixer.com/drink9253.html" + "url": "https://www.drinksmixer.com/drink9253.html" }, { "directions": "Pour all ingredients into a cocktail shaker half-filled with cracked ice. Shake well. Strain into a sugar-rimmed chilled cocktail glass. Garnish with a slice of lemon and some gumdrops, and serve.", @@ -87051,7 +87051,7 @@ "lemon juice" ], "title": "Gumdrop Martini recipe", - "url": "http://www.drinksmixer.com/drink9254.html" + "url": "https://www.drinksmixer.com/drink9254.html" }, { "directions": "Pour the Maui blue hawaiian schnapps into a chilled cocktail glass. Add 7-up, top with coconut rum, and serve.", @@ -87061,7 +87061,7 @@ "7-Up\u00ae soda" ], "title": "Gummi Berry Juice recipe", - "url": "http://www.drinksmixer.com/drink9255.html" + "url": "https://www.drinksmixer.com/drink9255.html" }, { "directions": "Pour the rum, lime juice and grenadine into a cocktail shaker half-filled with ice cubes. Shake well, strain into a cocktail glass, and serve.", @@ -87071,7 +87071,7 @@ "grenadine syrup" ], "title": "Habaneros recipe", - "url": "http://www.drinksmixer.com/drink9256.html" + "url": "https://www.drinksmixer.com/drink9256.html" }, { "directions": "Stir both ingredients together with cracked ice in a mixing glass. Strain into an old-fashioned glass. Garnish with a cocktail onion, and serve.", @@ -87080,7 +87080,7 @@ "dry vermouth" ], "title": "Haiku Cocktail recipe", - "url": "http://www.drinksmixer.com/drink9257.html" + "url": "https://www.drinksmixer.com/drink9257.html" }, { "directions": "Add the blue curacao, vodka, lemonade and candy (jelly tots) to a blender with crushed ice. Blend until slushy. Pour into an old-fashioned glass, top with a dash of blue curacao, and serve.", @@ -87091,7 +87091,7 @@ "candies" ], "title": "Hair Gel recipe", - "url": "http://www.drinksmixer.com/drink9258.html" + "url": "https://www.drinksmixer.com/drink9258.html" }, { "directions": "Pour the Tabasco sauce, tequila and whiskey into a shot glass. Lay the salt on top, and serve.", @@ -87102,7 +87102,7 @@ "salt" ], "title": "Hair of the Dog recipe", - "url": "http://www.drinksmixer.com/drink9259.html" + "url": "https://www.drinksmixer.com/drink9259.html" }, { "directions": "Stir all ingredients together in a highball glass almost filled with ice cubes, and serve.", @@ -87112,7 +87112,7 @@ "orange juice" ], "title": "Hairy Navel recipe", - "url": "http://www.drinksmixer.com/drink9261.html" + "url": "https://www.drinksmixer.com/drink9261.html" }, { "directions": "Pour all ingredients over finely shaven ice in a champagne saucer, and serve.", @@ -87122,7 +87122,7 @@ "pineapple juice" ], "title": "Hairy Bitch recipe", - "url": "http://www.drinksmixer.com/drink9262.html" + "url": "https://www.drinksmixer.com/drink9262.html" }, { "directions": "Pour the jagermeister, peach schnapps and cranberry juice into a cocktail shaker half-filled with ice cubes. Shake well, and strain into an old-fashioned glass. Top with 7-up, and serve.", @@ -87133,7 +87133,7 @@ "7-Up\u00ae soda" ], "title": "Hairy Berry recipe", - "url": "http://www.drinksmixer.com/drink9263.html" + "url": "https://www.drinksmixer.com/drink9263.html" }, { "directions": "Pour the liquors into a blender with one cup of crushed ice. Blend well, and pour into a collins glass. Top with soda, and serve.", @@ -87144,7 +87144,7 @@ "Dr. Pepper\u00ae soda" ], "title": "Hairy Ass recipe", - "url": "http://www.drinksmixer.com/drink9264.html" + "url": "https://www.drinksmixer.com/drink9264.html" }, { "directions": "Pour the citrus vodka, peach schnapps and lemonade into a cocktail shaker half-filled with ice cubes. Shake well, and strain into a chilled cocktail glass. Garnish with a maraschino cherry, and serve.", @@ -87154,7 +87154,7 @@ "lemonade" ], "title": "Hale Bopper recipe", - "url": "http://www.drinksmixer.com/drink9265.html" + "url": "https://www.drinksmixer.com/drink9265.html" }, { "directions": "Pour the Tia Maria coffee liqueur and vodka into an old-fashioned glass with crushed ice. Layer the cappucino on top by pouring over the back of a teaspoon; this should then sink to the bottom leaving a swirling marble effect. Serve.", @@ -87164,7 +87164,7 @@ "cappuccino" ], "title": "Halfcast Russian recipe", - "url": "http://www.drinksmixer.com/drink9266.html" + "url": "https://www.drinksmixer.com/drink9266.html" }, { "directions": "Pour the vodka and lemon juice into a cocktail shaker half-filled with ice cubes. Shake well, strain into an old-fashioned glass, and serve.", @@ -87173,7 +87173,7 @@ "lemon juice" ], "title": "Hallo Police recipe", - "url": "http://www.drinksmixer.com/drink9267.html" + "url": "https://www.drinksmixer.com/drink9267.html" }, { "directions": "Pour all ingredients into a highball glass almost filled with ice cubes. Stir well, and serve.", @@ -87183,7 +87183,7 @@ "7-Up\u00ae soda" ], "title": "Hammer Cocktail recipe", - "url": "http://www.drinksmixer.com/drink9268.html" + "url": "https://www.drinksmixer.com/drink9268.html" }, { "directions": "Pour the vodka into a highball glass filled with ice cubes. Almost fill with club soda, and top with orange juice. Stir well. Garnish with a lime wedge, and serve.", @@ -87193,7 +87193,7 @@ "club soda" ], "title": "Handball Cooler recipe", - "url": "http://www.drinksmixer.com/drink9269.html" + "url": "https://www.drinksmixer.com/drink9269.html" }, { "directions": "Shake all ingredients in a cocktail shaker half-filled with ice cubes. Strain into a chilled cocktail glass, and serve.", @@ -87204,7 +87204,7 @@ "Carolans\u00ae Irish cream" ], "title": "Hand Job recipe", - "url": "http://www.drinksmixer.com/drink9270.html" + "url": "https://www.drinksmixer.com/drink9270.html" }, { "directions": "Pour all ingredients into a cocktail shaker half-filled with ice cubes. Shake well, and strain into a highball glass. Garnish with a twist of orange peel, and serve.", @@ -87214,7 +87214,7 @@ "dry gin" ], "title": "Hanky Panky recipe", - "url": "http://www.drinksmixer.com/drink9271.html" + "url": "https://www.drinksmixer.com/drink9271.html" }, { "directions": "Pour all ingredients into an old-fashioned glass, stir and serve.", @@ -87224,7 +87224,7 @@ "ginger ale" ], "title": "Happily Ever After recipe", - "url": "http://www.drinksmixer.com/drink9272.html" + "url": "https://www.drinksmixer.com/drink9272.html" }, { "directions": "Pour all ingredients into a cocktail shaker half-filled with ice cubes. Shake well. Strain into an old-fashioned glass 1/4 filled with ice cubes, and serve.", @@ -87234,7 +87234,7 @@ "Frangelico\u00ae hazelnut liqueur" ], "title": "Happy Camper recipe", - "url": "http://www.drinksmixer.com/drink9273.html" + "url": "https://www.drinksmixer.com/drink9273.html" }, { "directions": "Shake all ingredients with ice in a cocktail shaker. Strain into a collins glass 3/4 filled with ice, and serve.", @@ -87244,7 +87244,7 @@ "pineapple juice" ], "title": "Happy Colada recipe", - "url": "http://www.drinksmixer.com/drink9274.html" + "url": "https://www.drinksmixer.com/drink9274.html" }, { "directions": "Pour the Kahlua coffee liqueur and Bailey's irish cream into an old-fashioned glass. Fill with pineapple juice, or add to taste, and serve.", @@ -87254,7 +87254,7 @@ "pineapple juice" ], "title": "Happy Hawaiian recipe", - "url": "http://www.drinksmixer.com/drink9275.html" + "url": "https://www.drinksmixer.com/drink9275.html" }, { "directions": "Pour the cherry brandy and orange juice over the sugar in a champagne flute. Add the champagne, and serve.", @@ -87265,7 +87265,7 @@ "Champagne" ], "title": "Happy Youth recipe", - "url": "http://www.drinksmixer.com/drink9276.html" + "url": "https://www.drinksmixer.com/drink9276.html" }, { "directions": "Pour the jagermeister, Ice 101 peppermint schnapps and chocolate milk into a cocktail shaker half-filled with ice cubes. Shake well, strain into a highball glass, and serve.", @@ -87275,7 +87275,7 @@ "chocolate milk" ], "title": "Hard Icey Nipple recipe", - "url": "http://www.drinksmixer.com/drink9277.html" + "url": "https://www.drinksmixer.com/drink9277.html" }, { "directions": "Pour the vodka into a highball glass filled with ice cubes. Add orange juice and mountain dew, both amounts to personal taste, and serve.", @@ -87285,7 +87285,7 @@ "Mountain Dew\u00ae citrus soda" ], "title": "Hard Mick recipe", - "url": "http://www.drinksmixer.com/drink9278.html" + "url": "https://www.drinksmixer.com/drink9278.html" }, { "directions": "Pour all ingredients into a cocktail shaker half-filled with ice cubes. Shake well, strain into a cocktail glass, and serve.", @@ -87295,7 +87295,7 @@ "orange juice" ], "title": "Hari Kari recipe", - "url": "http://www.drinksmixer.com/drink9279.html" + "url": "https://www.drinksmixer.com/drink9279.html" }, { "directions": "Pour the vodka, Kahlua coffee liqueur and blue curacao into a highball glass filled with ice cubes. Stir well. Top with lemonade, and serve.", @@ -87306,7 +87306,7 @@ "lemonade" ], "title": "Harpic recipe", - "url": "http://www.drinksmixer.com/drink9280.html" + "url": "https://www.drinksmixer.com/drink9280.html" }, { "directions": "Pour the vodka, southern comfort and blue curacao into a cocktail shaker half-filled with ice cubes. Shake well. Strain into a champagne flute. Add the lime juice, and serve.", @@ -87317,7 +87317,7 @@ "lime juice" ], "title": "Harsh But Fair recipe", - "url": "http://www.drinksmixer.com/drink9281.html" + "url": "https://www.drinksmixer.com/drink9281.html" }, { "directions": "Pour all ingredents into a cocktail shaker half-filled with ice cubes. Shake well, strain into a chilled cocktail glass, and serve.", @@ -87327,7 +87327,7 @@ "lemon juice" ], "title": "Havana Beach Cocktail recipe", - "url": "http://www.drinksmixer.com/drink9282.html" + "url": "https://www.drinksmixer.com/drink9282.html" }, { "directions": "Pour all ingredients into a collins glass 3/4 filled with ice cubes. Stir well. Garnish with a slice of pineapple. Add an umbrella, and serve.", @@ -87338,7 +87338,7 @@ "Mountain Dew\u00ae citrus soda" ], "title": "Hawaiian Cherry Popper recipe", - "url": "http://www.drinksmixer.com/drink9283.html" + "url": "https://www.drinksmixer.com/drink9283.html" }, { "directions": "Pour all ingredients into a highball glass filled with ice cubes. Stir well, and serve.", @@ -87348,7 +87348,7 @@ "pineapple juice" ], "title": "Hawaiian Sea Breeze recipe", - "url": "http://www.drinksmixer.com/drink9284.html" + "url": "https://www.drinksmixer.com/drink9284.html" }, { "directions": "Pour all ingredients into a collins glass filled with ice cubes. Stir well, and serve.", @@ -87358,7 +87358,7 @@ "lime juice" ], "title": "Hawaiian Seduction recipe", - "url": "http://www.drinksmixer.com/drink9285.html" + "url": "https://www.drinksmixer.com/drink9285.html" }, { "directions": "Pour both ingredients into a highball glass with 3 ice cubes. Stir well, and serve.", @@ -87367,7 +87367,7 @@ "Snapple\u00ae Kiwi-Strawberry soda" ], "title": "Hawaiian Sunrise #2 recipe", - "url": "http://www.drinksmixer.com/drink9286.html" + "url": "https://www.drinksmixer.com/drink9286.html" }, { "directions": "Shake all ingredients together in a cocktail shaker half-filled with ice cubes. Strain into a cocktail glass, and serve.", @@ -87378,7 +87378,7 @@ "egg" ], "title": "Hawaii Cocktail recipe", - "url": "http://www.drinksmixer.com/drink9287.html" + "url": "https://www.drinksmixer.com/drink9287.html" }, { "directions": "Pour both ingredients into a cocktail shaker half-filled with ice cubes. Shake well, strain into an old-fashioned glass, and serve.", @@ -87387,7 +87387,7 @@ "Jack Daniel's\u00ae Tennessee whiskey" ], "title": "Head Banger recipe", - "url": "http://www.drinksmixer.com/drink9288.html" + "url": "https://www.drinksmixer.com/drink9288.html" }, { "directions": "Pour both ingredients into a saucepan and heat gently. Pour into an old-fashioned glass, and serve.", @@ -87396,7 +87396,7 @@ "cranberry juice" ], "title": "Heated Cape Cod recipe", - "url": "http://www.drinksmixer.com/drink9289.html" + "url": "https://www.drinksmixer.com/drink9289.html" }, { "directions": "Pour all ingredients into a cocktail shaker half-filled with ice cubes. Shake well, and strain into a highball glass. Float some extra Cointreau on top. Garnish with blackberries and a twist of orange peel, and serve.", @@ -87407,7 +87407,7 @@ "Cointreau\u00ae orange liqueur" ], "title": "Heat of the Heart recipe", - "url": "http://www.drinksmixer.com/drink9290.html" + "url": "https://www.drinksmixer.com/drink9290.html" }, { "directions": "Pour the rum, triple sec and soda water into an Irish coffee cup or mug. Add a drop of lemon juice, and fill with hot water. Stir. Garnish with a slice of orange and a stick of cinnamon, and serve.", @@ -87419,7 +87419,7 @@ "water" ], "title": "Heat Wave #2 recipe", - "url": "http://www.drinksmixer.com/drink9291.html" + "url": "https://www.drinksmixer.com/drink9291.html" }, { "directions": "Add all ingredients (except grenadine) to a parfait glass 1/2 filled with ice cubes. Top with grenadine. Garnish with a fresh slice of peach, and serve.", @@ -87431,7 +87431,7 @@ "grenadine syrup" ], "title": "Heat Wave recipe", - "url": "http://www.drinksmixer.com/drink9292.html" + "url": "https://www.drinksmixer.com/drink9292.html" }, { "directions": "Shake all ingredients in a cocktail shaker half-filled with cracked ice. Strain into an old-fashioned glass 1/3 filled with ice cubes, and serve.", @@ -87441,7 +87441,7 @@ "Bailey's\u00ae Irish cream" ], "title": "Heavenly Orgasm recipe", - "url": "http://www.drinksmixer.com/drink9293.html" + "url": "https://www.drinksmixer.com/drink9293.html" }, { "directions": "Pour both ingredients into a highball glass, stir and serve.", @@ -87450,7 +87450,7 @@ "Hawaiian Punch\u00ae" ], "title": "Heaven on Earth recipe", - "url": "http://www.drinksmixer.com/drink9294.html" + "url": "https://www.drinksmixer.com/drink9294.html" }, { "directions": "Pour all ingredients into a cocktail glass, and stir well. Add a cinnamon stick, and serve.", @@ -87460,7 +87460,7 @@ "apple cider" ], "title": "Heidi's Comet recipe", - "url": "http://www.drinksmixer.com/drink9295.html" + "url": "https://www.drinksmixer.com/drink9295.html" }, { "directions": "Pour both ingredients into a highball glass filled with ice cubes. Stir well, and serve.", @@ -87469,7 +87469,7 @@ "lemonade" ], "title": "Hell on Earth recipe", - "url": "http://www.drinksmixer.com/drink9296.html" + "url": "https://www.drinksmixer.com/drink9296.html" }, { "directions": "Pour both ingredients into an old-fashioned glass over ice cubes. Stir well, and serve.", @@ -87478,7 +87478,7 @@ "Bailey's\u00ae Irish cream" ], "title": "Hell's Kitchen recipe", - "url": "http://www.drinksmixer.com/drink9297.html" + "url": "https://www.drinksmixer.com/drink9297.html" }, { "directions": "Pour all three ingredients into a cocktail shaker half-filled with ice cubes. Shake well, strain into a highball glass, and serve.", @@ -87488,7 +87488,7 @@ "lemon juice" ], "title": "Help Wanted recipe", - "url": "http://www.drinksmixer.com/drink9298.html" + "url": "https://www.drinksmixer.com/drink9298.html" }, { "directions": "Stir all ingredients together over cracked ice in a mixing glass. Strain into a chilled cocktail glass, and serve.", @@ -87499,7 +87499,7 @@ "Cointreau\u00ae orange liqueur" ], "title": "Hep Cat recipe", - "url": "http://www.drinksmixer.com/drink9299.html" + "url": "https://www.drinksmixer.com/drink9299.html" }, { "directions": "Pour the Scotch whisky and strawberry liqueur into a champagne flute. Top with sparkling wine or champagne. Garnish with a strawberry, and serve.", @@ -87509,7 +87509,7 @@ "sparkling white wine" ], "title": "Heather Blush recipe", - "url": "http://www.drinksmixer.com/drink9300.html" + "url": "https://www.drinksmixer.com/drink9300.html" }, { "directions": "Pour the vodka and peach schnapps into a cocktail glass, and stir. Top with beer, and serve.", @@ -87519,7 +87519,7 @@ "Bud Light\u00ae lager" ], "title": "Heavy Navel recipe", - "url": "http://www.drinksmixer.com/drink9301.html" + "url": "https://www.drinksmixer.com/drink9301.html" }, { "directions": "Drop the lemon juice into an old-fashioned glass with the gin. Garnish with a maraschino cherry, and serve.", @@ -87528,7 +87528,7 @@ "lemon juice" ], "title": "Here Today recipe", - "url": "http://www.drinksmixer.com/drink9302.html" + "url": "https://www.drinksmixer.com/drink9302.html" }, { "directions": "Pour the Scotch whisky, Angostura bitters, orange juice and sugar into a highball glass almost filled with ice cubes. Fill with ginger ale, and serve.", @@ -87540,7 +87540,7 @@ "ginger ale" ], "title": "Highland Cooler recipe", - "url": "http://www.drinksmixer.com/drink9303.html" + "url": "https://www.drinksmixer.com/drink9303.html" }, { "directions": "Pour the tequila, Grand Marnier, Drambuie and sour mix (to taste) into a cocktail shaker half-filled with ice cubes. Shake well. Pour into a salt-rimmed margarita glass, garnish with a slice of lime, and serve.", @@ -87551,7 +87551,7 @@ "sweet and sour mix" ], "title": "Highland Margarita recipe", - "url": "http://www.drinksmixer.com/drink9304.html" + "url": "https://www.drinksmixer.com/drink9304.html" }, { "directions": "Pour all ingredients into a collins glass filled with finely shaven ice, and serve.", @@ -87563,7 +87563,7 @@ "grenadine syrup" ], "title": "High Rise recipe", - "url": "http://www.drinksmixer.com/drink9305.html" + "url": "https://www.drinksmixer.com/drink9305.html" }, { "directions": "Shake ingredients with ice cubes in a cocktail shaker. Strain into a highball or old-fashioned glass, and serve.", @@ -87573,7 +87573,7 @@ "Pernod\u00ae licorice liqueur" ], "title": "Hiroshima Cocktail recipe", - "url": "http://www.drinksmixer.com/drink9306.html" + "url": "https://www.drinksmixer.com/drink9306.html" }, { "directions": "Pour all ingredients into a champagne flute filled with finely shaven ice, and serve.", @@ -87583,7 +87583,7 @@ "lemon juice" ], "title": "Hocus Pocus recipe", - "url": "http://www.drinksmixer.com/drink9307.html" + "url": "https://www.drinksmixer.com/drink9307.html" }, { "directions": "Stir ingredients together with cracked ice in a mixing glass. Strain into a chilled cocktail glass. Garnish with an olive, and serve.", @@ -87593,7 +87593,7 @@ "orange bitters" ], "title": "Hoffman House Martini recipe", - "url": "http://www.drinksmixer.com/drink9308.html" + "url": "https://www.drinksmixer.com/drink9308.html" }, { "directions": "Pour the brandy, creme de cacao and eggnog into a cocktail shaker half-filled with ice cubes. Shake well, and strain into a cocktail glass. Garnish with grated nutmeg, and serve.", @@ -87603,7 +87603,7 @@ "eggnog" ], "title": "Holiday Brandy Alexander recipe", - "url": "http://www.drinksmixer.com/drink9309.html" + "url": "https://www.drinksmixer.com/drink9309.html" }, { "directions": "Stir ingredients together in a highball glass. Garnish with a candy cane, and serve.", @@ -87612,7 +87612,7 @@ "7-Up\u00ae soda" ], "title": "Holiday Hangover recipe", - "url": "http://www.drinksmixer.com/drink9310.html" + "url": "https://www.drinksmixer.com/drink9310.html" }, { "directions": "Stir ingredients together with cracked ice in a mixing glass. Strain into a cocktail glass, garnish with a slice of orange, and serve.", @@ -87621,7 +87621,7 @@ "sweet vermouth" ], "title": "Homestead Cocktail recipe", - "url": "http://www.drinksmixer.com/drink9311.html" + "url": "https://www.drinksmixer.com/drink9311.html" }, { "directions": "Pour the rum, honey and lemon juice into a cocktail shaker half-filled with ice cubes. Shake well, strain into a cocktail glass, and serve.", @@ -87631,7 +87631,7 @@ "lemon juice" ], "title": "Honey Bee Cocktail recipe", - "url": "http://www.drinksmixer.com/drink9312.html" + "url": "https://www.drinksmixer.com/drink9312.html" }, { "directions": "Pour all ingredients into a highball glass 3/4 filled with ice cubes. Stir well, and serve.", @@ -87645,7 +87645,7 @@ "lemon juice" ], "title": "Honey Bunny recipe", - "url": "http://www.drinksmixer.com/drink9313.html" + "url": "https://www.drinksmixer.com/drink9313.html" }, { "directions": "Pour the vodka, melon liqueur and triple sec into a cocktail shaker half-filled with cracked ice. Shake well, and strain into a chilled cocktail glass. Garnish with a twist of lemon, and serve.", @@ -87655,7 +87655,7 @@ "triple sec" ], "title": "Honeydew Martini recipe", - "url": "http://www.drinksmixer.com/drink9314.html" + "url": "https://www.drinksmixer.com/drink9314.html" }, { "directions": "Stir all ingredients together in a highball glass 3/4 filled with ice cubes, and serve.", @@ -87668,7 +87668,7 @@ "raspberry schnapps" ], "title": "Hey Bitch, Come Here recipe", - "url": "http://www.drinksmixer.com/drink9315.html" + "url": "https://www.drinksmixer.com/drink9315.html" }, { "directions": "Pour all ingredients into a cocktail shaker half-filled with cracked ice. Shake well, and strain into a chilled cocktail glass. Garnish with a blue cheese-stuffed almond, and serve.", @@ -87678,7 +87678,7 @@ "dry vermouth" ], "title": "Hollywood Martini recipe", - "url": "http://www.drinksmixer.com/drink9316.html" + "url": "https://www.drinksmixer.com/drink9316.html" }, { "directions": "Shake the advocaat, Kahlua coffee liqueur, Frangelico hazelnut liqueur and honey in a cocktail shaker half-filled with ice cubes. Strain into a cocktail glass. Top with whipped cream. Garnish with strawberries and/or cocoa, and serve.", @@ -87690,7 +87690,7 @@ "whipped cream" ], "title": "Honey Nuts recipe", - "url": "http://www.drinksmixer.com/drink9317.html" + "url": "https://www.drinksmixer.com/drink9317.html" }, { "directions": "Pour all ingredients into a cocktail shaker half-filled with ice cubes. Shake well, strain into a cocktail glass, and serve.", @@ -87701,7 +87701,7 @@ "grenadine syrup" ], "title": "Honolulu Hammer recipe", - "url": "http://www.drinksmixer.com/drink9318.html" + "url": "https://www.drinksmixer.com/drink9318.html" }, { "directions": "Pour the brandy, cointreau, Lillet and lemon juice into a cocktail shaker half-filled with ice cubes. Shake well, strain into a cocktail glass, and serve.", @@ -87712,7 +87712,7 @@ "lemon juice" ], "title": "Hoopla recipe", - "url": "http://www.drinksmixer.com/drink9319.html" + "url": "https://www.drinksmixer.com/drink9319.html" }, { "directions": "Pour all ingredients into a mixing glass half-filled with cracked ice. Stir well. Strain into a chilled cocktail glass, and serve.", @@ -87722,7 +87722,7 @@ "dry vermouth" ], "title": "Hoosier Cocktail recipe", - "url": "http://www.drinksmixer.com/drink9320.html" + "url": "https://www.drinksmixer.com/drink9320.html" }, { "directions": "Pour the Scotch whisky, vermouth and benedictine into a mixing glass half-filled with cracked ice. Stir well. Strain into a cocktail glass, garnish with a twist of lemon peel, and serve.", @@ -87732,7 +87732,7 @@ "benedictine herbal liqueur" ], "title": "Hoot Mon Cocktail recipe", - "url": "http://www.drinksmixer.com/drink9321.html" + "url": "https://www.drinksmixer.com/drink9321.html" }, { "directions": "Pour the hawaiian schnapps, triple sec and orange juice (to taste) into a highball glass almost filled with ice cubes. Stir well, and serve.", @@ -87742,7 +87742,7 @@ "orange juice" ], "title": "Horny Shamrock recipe", - "url": "http://www.drinksmixer.com/drink9322.html" + "url": "https://www.drinksmixer.com/drink9322.html" }, { "directions": "Pour both ingredients into an old-fashioned glass 1/4 filled with ice cubes, and serve.", @@ -87751,7 +87751,7 @@ "Crown Royal\u00ae Canadian whisky" ], "title": "Horse and Rider recipe", - "url": "http://www.drinksmixer.com/drink9323.html" + "url": "https://www.drinksmixer.com/drink9323.html" }, { "directions": "Make a spiral of the whole lemon's peel. Place in a collins glass with one end hanging over the rim. Add ice cubes. Add Scotch whisky, and top with ginger ale. Stir well, and serve.", @@ -87761,7 +87761,7 @@ "ginger ale" ], "title": "Horse's Neck with a Twist recipe", - "url": "http://www.drinksmixer.com/drink9324.html" + "url": "https://www.drinksmixer.com/drink9324.html" }, { "directions": "Pour all ingredients into a highball glass filled with ice cubes. Stir well, and serve.", @@ -87771,7 +87771,7 @@ "cranberry juice" ], "title": "Hot Anal Sex recipe", - "url": "http://www.drinksmixer.com/drink9325.html" + "url": "https://www.drinksmixer.com/drink9325.html" }, { "directions": "Pour the pepper vodka, dry vermouth and olive brine into a cocktail shaker half-filled with cracked ice. Shake well, and strain into a chilled cocktail glass. Garnish with an olive stuffed with a pickled jalapeno pepper, and serve.", @@ -87781,7 +87781,7 @@ "olive juice" ], "title": "Hot and Dirty Martini recipe", - "url": "http://www.drinksmixer.com/drink9326.html" + "url": "https://www.drinksmixer.com/drink9326.html" }, { "directions": "Dilute the sour mix with water and mix with the vodka in a mixing glass. Pour into an old-fashioned glass filled with ice cubes. Add Hot Damn! schnapps, and serve.", @@ -87791,7 +87791,7 @@ "sweet and sour mix" ], "title": "Hot Blah! recipe", - "url": "http://www.drinksmixer.com/drink9327.html" + "url": "https://www.drinksmixer.com/drink9327.html" }, { "directions": "Add the sugar to a coffee mug. Fill 2/3 with boiling water. Add brandy and stir. Garnish with a slice of lemon, dust with nutmeg, and serve.", @@ -87801,7 +87801,7 @@ "water" ], "title": "Hot Brandy Toddy recipe", - "url": "http://www.drinksmixer.com/drink9328.html" + "url": "https://www.drinksmixer.com/drink9328.html" }, { "directions": "Add the cinnamon, powdered sugar and butter to an Irish coffee cup/mug. Pour a single ounce of boiling water, and stir to dissolve thoroughly. Add whiskey. Fill with boiling water, stir again and serve.", @@ -87813,7 +87813,7 @@ "butter" ], "title": "Hot Brick Toddy recipe", - "url": "http://www.drinksmixer.com/drink9329.html" + "url": "https://www.drinksmixer.com/drink9329.html" }, { "directions": "Stir the Southern Comfort and hot water together in a coffee mug. Float butter on top. Garnish with a cinnamon stick and a slice of lemon, and serve.", @@ -87823,7 +87823,7 @@ "butter" ], "title": "Hot Buttered Comfort recipe", - "url": "http://www.drinksmixer.com/drink9330.html" + "url": "https://www.drinksmixer.com/drink9330.html" }, { "directions": "Add the sugar, butter and cloves to a coffee mug. Pour the rum, and stir well. Fill with boiling water. Stir again, and serve.", @@ -87834,7 +87834,7 @@ "cloves" ], "title": "Hot Buttered Rum recipe", - "url": "http://www.drinksmixer.com/drink9331.html" + "url": "https://www.drinksmixer.com/drink9331.html" }, { "directions": "Pour the butterscotch schnapps, amaretto and hot chocolate into a coffee mug, and stir. Top with whipped cream, and serve.", @@ -87845,7 +87845,7 @@ "whipped cream" ], "title": "Hot Chocolate Almond recipe", - "url": "http://www.drinksmixer.com/drink9332.html" + "url": "https://www.drinksmixer.com/drink9332.html" }, { "directions": "Pour both ingredients into an Irish coffee cup or mug. Top with whipped cream. Garnish with a cinnamon stick, and serve.", @@ -87854,7 +87854,7 @@ "apple cider" ], "title": "Hot Cinnamon Roll recipe", - "url": "http://www.drinksmixer.com/drink9333.html" + "url": "https://www.drinksmixer.com/drink9333.html" }, { "directions": "Stir ingredients together in a mixing glass with cracked ice. Strain into a cocktail glass. Squeeze in the juice from a twist of lemon peel, place the peel on top, and serve.", @@ -87864,7 +87864,7 @@ "benedictine herbal liqueur" ], "title": "Hot Mon recipe", - "url": "http://www.drinksmixer.com/drink9334.html" + "url": "https://www.drinksmixer.com/drink9334.html" }, { "directions": "Pour all ingredients into an old-fashioned glass 1/2 filled with ice cubes. Stir well, and serve.", @@ -87874,7 +87874,7 @@ "Tabasco\u00ae sauce" ], "title": "Hot Pecker recipe", - "url": "http://www.drinksmixer.com/drink9335.html" + "url": "https://www.drinksmixer.com/drink9335.html" }, { "directions": "Place a sugar cube or equivalent into an Irish coffee cup or mug. Fill 2/3 full with boiling water. Add rum and stir. Garnish with a slice of lemon, dust with nutmeg, and serve.", @@ -87884,7 +87884,7 @@ "water" ], "title": "Hot Rum Toddy recipe", - "url": "http://www.drinksmixer.com/drink9336.html" + "url": "https://www.drinksmixer.com/drink9336.html" }, { "directions": "Pour the triple sec and orange juice into an old-fashioned glass filled with ice cubes. Top with grenadine. Garnish with maraschino cherries, and serve.", @@ -87894,7 +87894,7 @@ "grenadine syrup" ], "title": "Hot Sex recipe", - "url": "http://www.drinksmixer.com/drink9337.html" + "url": "https://www.drinksmixer.com/drink9337.html" }, { "directions": "Pour all ingredients into an old-fashioned glass filled with ice cubes. Garnish with a stemless maraschino cherry, and serve.", @@ -87907,7 +87907,7 @@ "banana liqueur" ], "title": "Hot Throbbing Banana recipe", - "url": "http://www.drinksmixer.com/drink9338.html" + "url": "https://www.drinksmixer.com/drink9338.html" }, { "directions": "Stir ingredients together in a highball glass filled with ice cubes. Add a maraschino cherry, and serve.", @@ -87916,7 +87916,7 @@ "orange juice" ], "title": "Hot, Wet and Sticky recipe", - "url": "http://www.drinksmixer.com/drink9339.html" + "url": "https://www.drinksmixer.com/drink9339.html" }, { "directions": "Place a sugar cube or equivalent into an Irish coffee cup or mug. Fill 2/3 full with boiling water. Add Scotch whisky and stir. Garnish with a slice of lemon, dust with nutmeg, and serve.", @@ -87926,7 +87926,7 @@ "water" ], "title": "Hot Whiskey Toddy recipe", - "url": "http://www.drinksmixer.com/drink9340.html" + "url": "https://www.drinksmixer.com/drink9340.html" }, { "directions": "Stir ingredients together in a cocktail glass, and serve.", @@ -87936,7 +87936,7 @@ "powdered sugar" ], "title": "Hula Hula recipe", - "url": "http://www.drinksmixer.com/drink9341.html" + "url": "https://www.drinksmixer.com/drink9341.html" }, { "directions": "Stir ingredients together with cracked ice in a mixing glass. Strain into a cocktail glass, and serve.", @@ -87945,7 +87945,7 @@ "cherry brandy" ], "title": "Hunter Cocktail recipe", - "url": "http://www.drinksmixer.com/drink9342.html" + "url": "https://www.drinksmixer.com/drink9342.html" }, { "directions": "Pour both ingredients into a brandy snifter, stir and serve.", @@ -87954,7 +87954,7 @@ "Cointreau\u00ae orange liqueur" ], "title": "Ice Bet recipe", - "url": "http://www.drinksmixer.com/drink9343.html" + "url": "https://www.drinksmixer.com/drink9343.html" }, { "directions": "Add all ingredients to a cocktail shaker half-filled with ice cubes. Shake well, strain into a cocktail glass, and serve.", @@ -87964,7 +87964,7 @@ "La Grande Passion\u00ae liqueur" ], "title": "Hot Pussy #2 recipe", - "url": "http://www.drinksmixer.com/drink9344.html" + "url": "https://www.drinksmixer.com/drink9344.html" }, { "directions": "Pour the vodka, jamaican rum and lime juice into a cocktail shaker half-filled with ice cubes. Add powdered sugar to sweeten. Shake well, strain into a cocktail glass, and serve.", @@ -87975,7 +87975,7 @@ "powdered sugar" ], "title": "Huntsman Cocktail recipe", - "url": "http://www.drinksmixer.com/drink9345.html" + "url": "https://www.drinksmixer.com/drink9345.html" }, { "directions": "Pour all ingredients into a cocktail shaker half-filled with ice cubes. Shake well. Strain into a highball glass, garnish with a fruit flag, and serve.", @@ -87988,7 +87988,7 @@ "creme de noyaux" ], "title": "Ice Breaker recipe", - "url": "http://www.drinksmixer.com/drink9346.html" + "url": "https://www.drinksmixer.com/drink9346.html" }, { "directions": "Pour all ingredients into a blender with half a cup of crushed ice. Blend for 15 seconds. Strain into a whiskey sour glass, and serve.", @@ -87999,7 +87999,7 @@ "Cointreau\u00ae orange liqueur" ], "title": "Ice Breaker #2 recipe", - "url": "http://www.drinksmixer.com/drink9347.html" + "url": "https://www.drinksmixer.com/drink9347.html" }, { "directions": "Stir ingredients together in a coffee mug, and serve.", @@ -88008,7 +88008,7 @@ "coffee" ], "title": "Ice Coffee recipe", - "url": "http://www.drinksmixer.com/drink9348.html" + "url": "https://www.drinksmixer.com/drink9348.html" }, { "directions": "Combine ingredients in a blend, and blend well. Pour into a highball glass filled with ice cubes, and serve.", @@ -88018,7 +88018,7 @@ "maple syrup" ], "title": "Ice Cream Hogarth recipe", - "url": "http://www.drinksmixer.com/drink9349.html" + "url": "https://www.drinksmixer.com/drink9349.html" }, { "directions": "Pour both ingredients into a highball glass almost filled with ice cubes. Stir well, and serve.", @@ -88027,7 +88027,7 @@ "Nestea\u00ae iced tea" ], "title": "Iced Jack recipe", - "url": "http://www.drinksmixer.com/drink9350.html" + "url": "https://www.drinksmixer.com/drink9350.html" }, { "directions": "Pour the rum into a beer mug or glass, and fill with lemonade. Sweeten with sugar, to taste. Top with whipped cream, and serve.", @@ -88038,7 +88038,7 @@ "whipped cream" ], "title": "Imitation Beer recipe", - "url": "http://www.drinksmixer.com/drink9351.html" + "url": "https://www.drinksmixer.com/drink9351.html" }, { "directions": "Pour the rum, lime juice and simple syrup into a highball glass 1/2 filled with ice cubes. Stir well. Top with club soda, stir gently, and serve.", @@ -88049,7 +88049,7 @@ "club soda" ], "title": "Indifferent Miss recipe", - "url": "http://www.drinksmixer.com/drink9352.html" + "url": "https://www.drinksmixer.com/drink9352.html" }, { "directions": "Pour all three ingredients into a cocktail shaker half-filled with ice cubes. Shake well, strain into a cocktail glass, and serve.", @@ -88059,7 +88059,7 @@ "orange juice" ], "title": "Ink Street recipe", - "url": "http://www.drinksmixer.com/drink9353.html" + "url": "https://www.drinksmixer.com/drink9353.html" }, { "directions": "Hold the vodka, cinnamon and whipped cream in your mouth. Pour in some apple juice, and swallow. Should taste like apple pie.", @@ -88070,7 +88070,7 @@ "apple juice" ], "title": "Instant Apple Pie recipe", - "url": "http://www.drinksmixer.com/drink9354.html" + "url": "https://www.drinksmixer.com/drink9354.html" }, { "directions": "Pour the Absolut vodka and orange juice into a cocktail glass. Stir well. Top with equal amounts of Hawaiian fruit punch and mountain dew, and serve.", @@ -88081,7 +88081,7 @@ "Mountain Dew\u00ae citrus soda" ], "title": "Intercourse recipe", - "url": "http://www.drinksmixer.com/drink9355.html" + "url": "https://www.drinksmixer.com/drink9355.html" }, { "directions": "Pour all ingredients into a cocktail shaker half-filled with ice cubes. Shake well, and strain into a highball glass. Garnish with a slice of orange, and serve.", @@ -88092,7 +88092,7 @@ "lemon juice" ], "title": "In the Sack recipe", - "url": "http://www.drinksmixer.com/drink9356.html" + "url": "https://www.drinksmixer.com/drink9356.html" }, { "directions": "Pour both ingredients into a mixing glass half-filled with cracked ice. Stir well, strain into a cordial glass, and serve.", @@ -88101,7 +88101,7 @@ "white creme de cacao" ], "title": "Irish Charlie recipe", - "url": "http://www.drinksmixer.com/drink9357.html" + "url": "https://www.drinksmixer.com/drink9357.html" }, { "directions": "Combine the hazelnut liqueur, irish cream, brown creme de cacao and vanilla ice cream in a blender with one cup of crushed ice. Pour into a frosted pilsner glass. Top with whipped cream. Garnish with chocolate sprinkles or shavings, and serve.", @@ -88113,7 +88113,7 @@ "whipped cream" ], "title": "Irish Dream recipe", - "url": "http://www.drinksmixer.com/drink9358.html" + "url": "https://www.drinksmixer.com/drink9358.html" }, { "directions": "Combine all ingredients in a blender. Blend until smooth and pour into a parfait glass. Garnish with a slice of orange, and serve.", @@ -88123,7 +88123,7 @@ "triple sec" ], "title": "Iced Coffee a l'Orange recipe", - "url": "http://www.drinksmixer.com/drink9359.html" + "url": "https://www.drinksmixer.com/drink9359.html" }, { "directions": "Pour the Irish whiskey into a chilled cocktail glass. Swirl around the glass in order to coat; drain excess. Pour the vodka and vermouth into a cocktail shaker half-filled with cracked ice. Shake well, and strain into the cocktail glass. Garnish with a twist of lemon, and serve.", @@ -88133,7 +88133,7 @@ "Irish whiskey" ], "title": "Irish Martini recipe", - "url": "http://www.drinksmixer.com/drink9360.html" + "url": "https://www.drinksmixer.com/drink9360.html" }, { "directions": "Stir all ingredients together in a mixing glass half-filled with cracked ice. Strain into a cocktail glass. Garnish the glass with an olive, and serve.", @@ -88145,7 +88145,7 @@ "bitters" ], "title": "Irish Whiskey Cocktail recipe", - "url": "http://www.drinksmixer.com/drink9361.html" + "url": "https://www.drinksmixer.com/drink9361.html" }, { "directions": "Pour both ingredients into a highball glass 2/3 filled with ice cubes. Stir well, garnish with a twist of lemon, and serve.", @@ -88154,7 +88154,7 @@ "ginger ale" ], "title": "Irish Whiskey Highball recipe", - "url": "http://www.drinksmixer.com/drink9362.html" + "url": "https://www.drinksmixer.com/drink9362.html" }, { "directions": "Shake all ingredients with cracked ice and strain into a chilled cocktail glass. Garnish with a twist of lemon, and serve.", @@ -88164,7 +88164,7 @@ "sweet vermouth" ], "title": "Island Martini recipe", - "url": "http://www.drinksmixer.com/drink9363.html" + "url": "https://www.drinksmixer.com/drink9363.html" }, { "directions": "Pour all ingredients into a highball glass filled with ice cubes. Stir well, and serve.", @@ -88175,7 +88175,7 @@ "pineapple juice" ], "title": "Island Toy recipe", - "url": "http://www.drinksmixer.com/drink9364.html" + "url": "https://www.drinksmixer.com/drink9364.html" }, { "directions": "Pour the Irish cream, amaretto and light cream into a blender with half a cup of crushed ice. Blend until smooth. Pour into a parfait glass, and serve.", @@ -88185,7 +88185,7 @@ "light cream" ], "title": "Italian Dream recipe", - "url": "http://www.drinksmixer.com/drink9365.html" + "url": "https://www.drinksmixer.com/drink9365.html" }, { "directions": "Pour all ingredients into a sugar-rimmed parfait glass. Garnish with a slice of lime, and serve.", @@ -88196,7 +88196,7 @@ "ginger ale" ], "title": "Italian Screwdriver recipe", - "url": "http://www.drinksmixer.com/drink9366.html" + "url": "https://www.drinksmixer.com/drink9366.html" }, { "directions": "Pour both ingredients into a highball glass almost filled with ice cubes, stir gently, and serve.", @@ -88205,7 +88205,7 @@ "club soda" ], "title": "Italian Tickler recipe", - "url": "http://www.drinksmixer.com/drink9367.html" + "url": "https://www.drinksmixer.com/drink9367.html" }, { "directions": "Stir ingredients together in an old-fashioned glass (more or less mountain dew, to taste), and serve.", @@ -88214,7 +88214,7 @@ "Mountain Dew\u00ae citrus soda" ], "title": "Jack and Dewanne recipe", - "url": "http://www.drinksmixer.com/drink9368.html" + "url": "https://www.drinksmixer.com/drink9368.html" }, { "directions": "Pour the vodka, irish cream and peppermint schnapps into a collins glass filled with ice cubes. Top with milk, to taste, and serve.", @@ -88225,7 +88225,7 @@ "milk" ], "title": "Jack Hammer recipe", - "url": "http://www.drinksmixer.com/drink9369.html" + "url": "https://www.drinksmixer.com/drink9369.html" }, { "directions": "Pour the vodka into a highball glass filled with ice cubes. Stir well, fill with pineapple juice, and serve.", @@ -88234,7 +88234,7 @@ "pineapple juice" ], "title": "Jack Hammer #2 recipe", - "url": "http://www.drinksmixer.com/drink9370.html" + "url": "https://www.drinksmixer.com/drink9370.html" }, { "directions": "Pour the rum, lime juice and Cointreau into a cocktail shaker half-filled with ice cubes. Shake well, and strain into a cocktail glass. Add sugar to taste, stir to dissolve, and serve.", @@ -88245,7 +88245,7 @@ "sugar" ], "title": "Jackie O's Rose recipe", - "url": "http://www.drinksmixer.com/drink9371.html" + "url": "https://www.drinksmixer.com/drink9371.html" }, { "directions": "Pour all ingredients into a cocktail shaker half-filled with cracked ice. Shake well, and strain into a chilled cocktail glass. Garnish with a lemon twist, and serve.", @@ -88255,7 +88255,7 @@ "maraschino liqueur" ], "title": "Jack London Martini recipe", - "url": "http://www.drinksmixer.com/drink9372.html" + "url": "https://www.drinksmixer.com/drink9372.html" }, { "directions": "Pour the Applejack brandy and Midori melon liqueur into a cocktail shaker half-filled with ice cubes. Shake well, and strain into a highball glass filled with ice cubes. Fill with 7-up, and serve.", @@ -88265,7 +88265,7 @@ "7-Up\u00ae soda" ], "title": "Jack Me Off recipe", - "url": "http://www.drinksmixer.com/drink9373.html" + "url": "https://www.drinksmixer.com/drink9373.html" }, { "directions": "Pour all ingredients into a collins glass filled with ice cubes. Stir well, and serve.", @@ -88275,7 +88275,7 @@ "7-Up\u00ae soda" ], "title": "Jack Me Up recipe", - "url": "http://www.drinksmixer.com/drink9374.html" + "url": "https://www.drinksmixer.com/drink9374.html" }, { "directions": "Pour the Gentleman Jack bourbon whiskey into a collins glass filled with ice cubes, and add butterscotch schnapps. Fill with ginger ale, and serve.", @@ -88285,7 +88285,7 @@ "ginger ale" ], "title": "Jack's Bagpipe recipe", - "url": "http://www.drinksmixer.com/drink9375.html" + "url": "https://www.drinksmixer.com/drink9375.html" }, { "directions": "Combine ingredients with one cup of crushed ice in a blender. Blend until smooth, and pour into a parfait glass. Garnish with a sprig of mint and a maraschino cherry, and serve.", @@ -88299,7 +88299,7 @@ "powdered sugar" ], "title": "Jack's Jam recipe", - "url": "http://www.drinksmixer.com/drink9376.html" + "url": "https://www.drinksmixer.com/drink9376.html" }, { "directions": "Shake all ingredients in a cocktail shaker half-filled with ice cubes. Strain into a cocktail glass, and serve.", @@ -88310,7 +88310,7 @@ "powdered sugar" ], "title": "Jacqueline Cocktail recipe", - "url": "http://www.drinksmixer.com/drink9377.html" + "url": "https://www.drinksmixer.com/drink9377.html" }, { "directions": "Line the rim of a cocktail glass with sugar syrup and shaved chocolate. Pour the ingredients into a cocktail shaker half-filled with ice cubes. Shake and strain into the rimmed glass. Garnish with orange sprinkles and serve.", @@ -88322,7 +88322,7 @@ "milk" ], "title": "Jaffa Schnapps recipe", - "url": "http://www.drinksmixer.com/drink9378.html" + "url": "https://www.drinksmixer.com/drink9378.html" }, { "directions": "Stir ingredients together in a highball glass filled with ice cubes, and serve.", @@ -88331,7 +88331,7 @@ "Coca-Cola\u00ae" ], "title": "Jake Cocktail recipe", - "url": "http://www.drinksmixer.com/drink9379.html" + "url": "https://www.drinksmixer.com/drink9379.html" }, { "directions": "Pour the brandy and triple sec into a collins glass. Add the lemon sherbet. Fill with club soda, dust with nutmeg, and serve.", @@ -88342,7 +88342,7 @@ "club soda" ], "title": "Jamaica Granito recipe", - "url": "http://www.drinksmixer.com/drink9380.html" + "url": "https://www.drinksmixer.com/drink9380.html" }, { "directions": "Pour the Malibu rum, melon liqueur and creme de bananes into a highball glass filled with ice cubes. Add pineapple juice and a splash of milk. Stir well, and serve.", @@ -88354,7 +88354,7 @@ "pineapple juice" ], "title": "Jamaican 10-Speed recipe", - "url": "http://www.drinksmixer.com/drink9381.html" + "url": "https://www.drinksmixer.com/drink9381.html" }, { "directions": "Pour the white rum, juices and coconut cream into a cocktail shaker half-filled with ice cubes. Shake well and pour into a hurricane glass. Float spiced rum and grenadine on top, and serve.", @@ -88367,7 +88367,7 @@ "grenadine syrup" ], "title": "Jamaican Bahama Mama recipe", - "url": "http://www.drinksmixer.com/drink9382.html" + "url": "https://www.drinksmixer.com/drink9382.html" }, { "directions": "Pour the dark rum, blue curacao, coconut cream and pineapple juice into a blender with 1 1/2 cups of crushed ice. Blend until smooth. Pour into a hurricane glass, garnish with a pineapple piece, and serve.", @@ -88378,7 +88378,7 @@ "pineapple juice" ], "title": "Jamaican Blues recipe", - "url": "http://www.drinksmixer.com/drink9383.html" + "url": "https://www.drinksmixer.com/drink9383.html" }, { "directions": "Pour all ingredients into a cocktail shaker half-filled with ice cubes. Shake well, strain into a chilled cocktail glass, and serve.", @@ -88389,7 +88389,7 @@ "bitters" ], "title": "Jamaican Cocktail recipe", - "url": "http://www.drinksmixer.com/drink9384.html" + "url": "https://www.drinksmixer.com/drink9384.html" }, { "directions": "Pour the white rum, melon liqueur and pineapple juice into a collins glass almost filled with ice cubes. Stir well. Float grenadine on top, and serve.", @@ -88400,7 +88400,7 @@ "grenadine syrup" ], "title": "Jamaican Crawler recipe", - "url": "http://www.drinksmixer.com/drink9385.html" + "url": "https://www.drinksmixer.com/drink9385.html" }, { "directions": "Pour all ingredients into a cocktail shaker half-filled with ice cubes. Shake well, strain into a highball glass, and serve.", @@ -88412,7 +88412,7 @@ "cream" ], "title": "Jamaican Hurricane recipe", - "url": "http://www.drinksmixer.com/drink9386.html" + "url": "https://www.drinksmixer.com/drink9386.html" }, { "directions": "Pour each ingredient into a hurricane glass filled with ice. Garnish with a maraschino cherry, and serve.", @@ -88422,7 +88422,7 @@ "pineapple juice" ], "title": "Jamaican Lifesaver recipe", - "url": "http://www.drinksmixer.com/drink9387.html" + "url": "https://www.drinksmixer.com/drink9387.html" }, { "directions": "Shake ingredients in a cocktail shaker half-filled with cracked ice. Strain into a chilled cocktail glass. Garnish with cherry peppers, and serve.", @@ -88433,7 +88433,7 @@ "orange bitters" ], "title": "Jamaican Martini recipe", - "url": "http://www.drinksmixer.com/drink9388.html" + "url": "https://www.drinksmixer.com/drink9388.html" }, { "directions": "Pour all ingredients into a cocktail shaker with half a cup of ice cubes. Shake well, and pour into an old-fashioned glass. Sprinkle with cinnamon, and serve.", @@ -88443,7 +88443,7 @@ "eggnog" ], "title": "Jamaican Reindeer recipe", - "url": "http://www.drinksmixer.com/drink9389.html" + "url": "https://www.drinksmixer.com/drink9389.html" }, { "directions": "Pour the Malibu rum, Midori melon liqueur and creme de bananes into a cocktail shaker with ice cubes. Shake well and pour the contents into a tall glass. Add pineapple juice, to taste, and serve.", @@ -88454,7 +88454,7 @@ "pineapple juice" ], "title": "Jamaican Twist recipe", - "url": "http://www.drinksmixer.com/drink9390.html" + "url": "https://www.drinksmixer.com/drink9390.html" }, { "directions": "Stir ingredients together in an old-fashioned glass, and serve.", @@ -88463,7 +88463,7 @@ "Tia Maria\u00ae coffee liqueur" ], "title": "Jamaican Yo Yo recipe", - "url": "http://www.drinksmixer.com/drink9391.html" + "url": "https://www.drinksmixer.com/drink9391.html" }, { "directions": "Pour the gin, vodka and Lillet blanc into a cocktail shaker half-filled with cracked ice. Shake well, and strain into a chilled cocktail glass. Garnish with a twist of lemon, and serve.", @@ -88473,7 +88473,7 @@ "Lillet\u00ae Blanc wine" ], "title": "James Bond Martini recipe", - "url": "http://www.drinksmixer.com/drink9392.html" + "url": "https://www.drinksmixer.com/drink9392.html" }, { "directions": "Pour all ingredients into a cocktail shaker half-filled with cracked ice. Shake well. Strain into a cocktail glass, garnish with a twist of lemon, and serve.", @@ -88483,7 +88483,7 @@ "dry vermouth" ], "title": "James Bond Martini #2 recipe", - "url": "http://www.drinksmixer.com/drink9393.html" + "url": "https://www.drinksmixer.com/drink9393.html" }, { "directions": "Pour all ingredients into a mixing glass half-filled with cracked ice. Stir well. Strain into a chilled cocktail glass, and serve.", @@ -88494,7 +88494,7 @@ "sugar" ], "title": "Jamie's Martini recipe", - "url": "http://www.drinksmixer.com/drink9394.html" + "url": "https://www.drinksmixer.com/drink9394.html" }, { "directions": "Shake all ingredients in a cocktail shaker half-filled with ice cubes. Strain into a cocktail glass, add a straw, and serve.", @@ -88505,7 +88505,7 @@ "grenadine syrup" ], "title": "Janne's Summernight recipe", - "url": "http://www.drinksmixer.com/drink9395.html" + "url": "https://www.drinksmixer.com/drink9395.html" }, { "directions": "Pour all ingredients into a collins glass filled with ice cubes. Garnish with a slice of lemon or lime, and serve.", @@ -88515,7 +88515,7 @@ "7-Up\u00ae soda" ], "title": "Japanese Jack recipe", - "url": "http://www.drinksmixer.com/drink9396.html" + "url": "https://www.drinksmixer.com/drink9396.html" }, { "directions": "Pour all ingredients into a cocktail shaker half-filled with ice cubes. Shake well, and strain into a cocktail glass with a small scoop of crushed ice. Garnish with a maraschino cherry, and serve.", @@ -88526,7 +88526,7 @@ "sweet and sour mix" ], "title": "Japanese Sex recipe", - "url": "http://www.drinksmixer.com/drink9397.html" + "url": "https://www.drinksmixer.com/drink9397.html" }, { "directions": "Pour the Malibu rum and Midori melon liqueur into a highball glass filled with ice cubes. Top with equal parts of orange and pineapple juice, and serve.", @@ -88537,7 +88537,7 @@ "pineapple juice" ], "title": "Japanese Sex Slick Style recipe", - "url": "http://www.drinksmixer.com/drink9398.html" + "url": "https://www.drinksmixer.com/drink9398.html" }, { "directions": "Pour all ingredients into a highball glass filled with ice cubes. Stir well, and serve.", @@ -88547,7 +88547,7 @@ "cranberry juice" ], "title": "Jason Ball recipe", - "url": "http://www.drinksmixer.com/drink9399.html" + "url": "https://www.drinksmixer.com/drink9399.html" }, { "directions": "Combine all ingredients in a cocktail shaker half-filled with ice cubes. Shake well, strain into a cocktail glass, and serve.", @@ -88557,7 +88557,7 @@ "sugar" ], "title": "Jamaican Rum Cocktail recipe", - "url": "http://www.drinksmixer.com/drink9400.html" + "url": "https://www.drinksmixer.com/drink9400.html" }, { "directions": "Pour all ingredients into a cocktail shaker half-filled with ice cubes. Shake well, strain into a cocktail glass, and serve.", @@ -88567,7 +88567,7 @@ "lemon juice" ], "title": "Jay Leno recipe", - "url": "http://www.drinksmixer.com/drink9401.html" + "url": "https://www.drinksmixer.com/drink9401.html" }, { "directions": "Pour the milk over a single ice cube in a cocktail glass. Add blue curacao and creme de cacao simultaneously. Stir briefly, and serve.", @@ -88577,7 +88577,7 @@ "milk" ], "title": "Jedi Cocktail recipe", - "url": "http://www.drinksmixer.com/drink9402.html" + "url": "https://www.drinksmixer.com/drink9402.html" }, { "directions": "Shake ingredients in a cocktail shaker half-filled with ice cubes. Pour into an old-fashioned glass, and serve.", @@ -88587,7 +88587,7 @@ "banana liqueur" ], "title": "Jenny's Banana Pudding recipe", - "url": "http://www.drinksmixer.com/drink9403.html" + "url": "https://www.drinksmixer.com/drink9403.html" }, { "directions": "Stir ingredients together in a cocktail glass, and serve.", @@ -88597,7 +88597,7 @@ "sweet and sour mix" ], "title": "Jenny's Summer Delight recipe", - "url": "http://www.drinksmixer.com/drink9404.html" + "url": "https://www.drinksmixer.com/drink9404.html" }, { "directions": "Shake ingredients in a cocktail shaker with cracked ice until frothy. Strain into a stemmed wine goblet. Garnish with a pineapple spear and a maraschino cherry, and serve.", @@ -88609,7 +88609,7 @@ "orange juice" ], "title": "Jericho's Breeze recipe", - "url": "http://www.drinksmixer.com/drink9405.html" + "url": "https://www.drinksmixer.com/drink9405.html" }, { "directions": "Pour all ingredients into a highball glass 1/2 filled with ice cubes. Stir well, and serve.", @@ -88619,7 +88619,7 @@ "orange juice" ], "title": "Jessica Cocktail recipe", - "url": "http://www.drinksmixer.com/drink9406.html" + "url": "https://www.drinksmixer.com/drink9406.html" }, { "directions": "Pour both ingredients into an old-fashioned glass almost filled with ice cubes. Stir and serve.", @@ -88628,7 +88628,7 @@ "Coca-Cola\u00ae" ], "title": "Jillian's Yankee recipe", - "url": "http://www.drinksmixer.com/drink9407.html" + "url": "https://www.drinksmixer.com/drink9407.html" }, { "directions": "Combine ingredients with 1 oz of crushed ice in a blender. Pour into a chilled cocktail glass, top with lemonade (to taste), and serve.", @@ -88640,7 +88640,7 @@ "lemonade" ], "title": "Joe Cassano recipe", - "url": "http://www.drinksmixer.com/drink9408.html" + "url": "https://www.drinksmixer.com/drink9408.html" }, { "directions": "Pour the Kahlua coffee liqueur, butterscotch schnapps and chocolate liqueur into a blender. Blend until smooth. Pour into a medium-sized cocktail glass, float the rum on top, and serve.", @@ -88652,7 +88652,7 @@ "milk" ], "title": "Johnny Loftus recipe", - "url": "http://www.drinksmixer.com/drink9409.html" + "url": "https://www.drinksmixer.com/drink9409.html" }, { "directions": "Pour the vodka, rum, gin, triple sec, cranberry juice, orange juice and pineapple juice into a highball glass filled with ice cubes. Float the amaretto on top. Garnish with a maraschino cherry and a slice of orange, and serve.", @@ -88667,7 +88667,7 @@ "pineapple juice" ], "title": "Johnny's Love Juice recipe", - "url": "http://www.drinksmixer.com/drink9410.html" + "url": "https://www.drinksmixer.com/drink9410.html" }, { "directions": "Pour all ingredients into a collins glass filled with ice cubes. Garnish with an orange wedge, and serve.", @@ -88677,7 +88677,7 @@ "grape juice" ], "title": "John Rocker recipe", - "url": "http://www.drinksmixer.com/drink9411.html" + "url": "https://www.drinksmixer.com/drink9411.html" }, { "directions": "Pour the blackberry brandy and rum into a cocktail shaker half-filled with ice cubes. Shake well, and strain into a highball glass. Top with chilled Sprite, stir briefly and serve.", @@ -88687,7 +88687,7 @@ "Sprite\u00ae soda" ], "title": "Johnson Cocktail recipe", - "url": "http://www.drinksmixer.com/drink9412.html" + "url": "https://www.drinksmixer.com/drink9412.html" }, { "directions": "Pour all ingredients (except grenadine) into a cocktail shaker half-filled with ice cubes. Shake well, and strain into a highball glass filled with crushed ice. Gently pour grenadine across the top. Garnish with a slice of orange and a maraschino cherry, and serve.", @@ -88701,7 +88701,7 @@ "lemon juice" ], "title": "Jojo and Alex Special recipe", - "url": "http://www.drinksmixer.com/drink9413.html" + "url": "https://www.drinksmixer.com/drink9413.html" }, { "directions": "Pour both ingredients into an old-fashioned glass filled with ice cubes. Garnish with four maraschino cherries, and serve.", @@ -88710,7 +88710,7 @@ "Captain Morgan\u00ae Original spiced rum" ], "title": "Jolly Homo recipe", - "url": "http://www.drinksmixer.com/drink9414.html" + "url": "https://www.drinksmixer.com/drink9414.html" }, { "directions": "Stir ingredients together in an old-fashioned glass, and serve.", @@ -88720,7 +88720,7 @@ "sweet and sour mix" ], "title": "Joy Juice recipe", - "url": "http://www.drinksmixer.com/drink9415.html" + "url": "https://www.drinksmixer.com/drink9415.html" }, { "directions": "Pour the Bacardi white rum, Malibu coconut rum, Midori melon liqueur, pineapple juice and orange juice into a cocktail shaker half-filled with ice cubes. Shake well, and strain into a highball glass filled with ice cubes. Garnish with a slice of orange, a pineapple wedge and a maraschino cherry. Serve.", @@ -88732,7 +88732,7 @@ "orange juice" ], "title": "Jubilee on the Square recipe", - "url": "http://www.drinksmixer.com/drink9416.html" + "url": "https://www.drinksmixer.com/drink9416.html" }, { "directions": "Add all ingredients to a cocktail shaker half-filled with cracked ice. Shake well, strain into a cocktail glass, and serve.", @@ -88744,7 +88744,7 @@ "lemon juice" ], "title": "Judge Jr. recipe", - "url": "http://www.drinksmixer.com/drink9417.html" + "url": "https://www.drinksmixer.com/drink9417.html" }, { "directions": "Pour the Bailey's irish cream, peach schnapps and pineapple juice into a cocktail shaker half-filled with ice cubes. Shake well, and strain into a cocktail glass over 1/4 cup of shaved ice. Garnish with a maraschino cherry, and serve.", @@ -88754,7 +88754,7 @@ "pineapple juice" ], "title": "Juicy Pussy recipe", - "url": "http://www.drinksmixer.com/drink9418.html" + "url": "https://www.drinksmixer.com/drink9418.html" }, { "directions": "Pour all ingredients into a cocktail shaker half-filled with ice cubes. Strain into a cocktail glass, and serve.", @@ -88764,7 +88764,7 @@ "lime juice" ], "title": "Julius Special recipe", - "url": "http://www.drinksmixer.com/drink9419.html" + "url": "https://www.drinksmixer.com/drink9419.html" }, { "directions": "Pour all ingredients into a collins glass filled with ice cubes. Stir well, and serve.", @@ -88775,7 +88775,7 @@ "Mountain Dew\u00ae citrus soda" ], "title": "Jungle Boogie recipe", - "url": "http://www.drinksmixer.com/drink9420.html" + "url": "https://www.drinksmixer.com/drink9420.html" }, { "directions": "Pour all ingredients into a salt-rimmed old-fashioned glass. Stir. Garnish with a slice of lime, and serve.", @@ -88786,7 +88786,7 @@ "triple sec" ], "title": "Kabuki recipe", - "url": "http://www.drinksmixer.com/drink9421.html" + "url": "https://www.drinksmixer.com/drink9421.html" }, { "directions": "Pour all ingredients into an old-fashioned glass half-filled with ice cubes. Stir and serve.", @@ -88796,7 +88796,7 @@ "coffee" ], "title": "Kahlua Martini recipe", - "url": "http://www.drinksmixer.com/drink9422.html" + "url": "https://www.drinksmixer.com/drink9422.html" }, { "directions": "Add the ice cream to a highball glass. Pour the Bundaberg rum and Kahlua coffee liqueur. Top with coke, and serve.", @@ -88807,7 +88807,7 @@ "Coca-Cola\u00ae" ], "title": "Kahlua Cobweb recipe", - "url": "http://www.drinksmixer.com/drink9423.html" + "url": "https://www.drinksmixer.com/drink9423.html" }, { "directions": "Pour the Kahlua coffee liqueur, vanilla schnapps, amaretto almond liqueur, vodka, DeKuyper Hot Damn! schnapps, apple juice and cranberry juice into a cocktail shaker half-filled with ice cubes. Shake well, and strain into a cocktail glass. Top with whipped cream. Dust with cinnamon and sugar, and serve.", @@ -88822,7 +88822,7 @@ "whipped cream" ], "title": "Kak in the Eye recipe", - "url": "http://www.drinksmixer.com/drink9424.html" + "url": "https://www.drinksmixer.com/drink9424.html" }, { "directions": "Chill all ingredients before serving. Pour over crushed ice in a medium-sized cocktail glass, and stir well. Top with a maraschino cherry, and serve.", @@ -88833,7 +88833,7 @@ "Sprite\u00ae soda" ], "title": "Amaretto Cherry Sour recipe", - "url": "http://www.drinksmixer.com/drink9425.html" + "url": "https://www.drinksmixer.com/drink9425.html" }, { "directions": "Stir ingredients together with crushed ice in a cocktail/martini glass, and serve.", @@ -88842,7 +88842,7 @@ "DeKuyper\u00ae Sour Apple Pucker schnapps" ], "title": "Appletini recipe", - "url": "http://www.drinksmixer.com/drink9426.html" + "url": "https://www.drinksmixer.com/drink9426.html" }, { "directions": "Pour both ingredients into a highball glass 3/4 filled with ice cubes. Stir well, and serve.", @@ -88851,7 +88851,7 @@ "V8 Splash\u00ae fruit juice" ], "title": "Bacardi Orgasm recipe", - "url": "http://www.drinksmixer.com/drink9427.html" + "url": "https://www.drinksmixer.com/drink9427.html" }, { "directions": "Pour the bourbon whiskey into a shot glass. Add the Tabasco sauce, and shoot.", @@ -88860,7 +88860,7 @@ "Tabasco\u00ae sauce" ], "title": "Buffalo Sweat #2 recipe", - "url": "http://www.drinksmixer.com/drink9428.html" + "url": "https://www.drinksmixer.com/drink9428.html" }, { "directions": "Pour all ingredients into a shot glass, stir, and serve.", @@ -88870,7 +88870,7 @@ "butterscotch schnapps" ], "title": "Buttermint recipe", - "url": "http://www.drinksmixer.com/drink9429.html" + "url": "https://www.drinksmixer.com/drink9429.html" }, { "directions": "Combine all ingredients in a blender. Blend on the highest setting for 55 seconds, and serve into coffee mugs.", @@ -88881,7 +88881,7 @@ "Goldschlager\u00ae cinnamon schnapps" ], "title": "Cabronasaurus recipe", - "url": "http://www.drinksmixer.com/drink9430.html" + "url": "https://www.drinksmixer.com/drink9430.html" }, { "directions": "Pour the Southern Comfort into a highball glass filled with ice cubes. Add cream soda, stir well, and serve.", @@ -88890,7 +88890,7 @@ "cream soda" ], "title": "Comfy Cream Soda recipe", - "url": "http://www.drinksmixer.com/drink9431.html" + "url": "https://www.drinksmixer.com/drink9431.html" }, { "directions": "Pour hennessy cognac into an old fashioned glass with cranberry juice and ice. Stir lightly and serve.", @@ -88899,7 +88899,7 @@ "cranberry juice" ], "title": "Cran-Henny recipe", - "url": "http://www.drinksmixer.com/drink9432.html" + "url": "https://www.drinksmixer.com/drink9432.html" }, { "directions": "Pour all ingredients into a cocktail shaker half-filled with ice cubes. Shake well, strain into a double-shot glass, and serve.", @@ -88911,7 +88911,7 @@ "cosmopolitan mix" ], "title": "Crazy Dave recipe", - "url": "http://www.drinksmixer.com/drink9433.html" + "url": "https://www.drinksmixer.com/drink9433.html" }, { "directions": "Slice the half lime into 4 seperate wedges. Muddle the wedges and chili with a dash of lemon juice, and transfer to a cocktail shaker half-filled with ice cubes. Add the vodka and sake, and shake well. Pour the contents, including ice, into a highball glass. Top with ginger beer, to taste, and serve.", @@ -88924,7 +88924,7 @@ "cayenne pepper" ], "title": "42 Flying Mules recipe", - "url": "http://www.drinksmixer.com/drink9434.html" + "url": "https://www.drinksmixer.com/drink9434.html" }, { "directions": "Combine all ingredients in a cocktail shaker half-filled with ice cubes. Shake well, and strain into a collins glass 3/4 filled with ice cubes. Garnish with two pineapple leaves, and serve.", @@ -88936,7 +88936,7 @@ "lime juice" ], "title": "Absolut Hulk recipe", - "url": "http://www.drinksmixer.com/drink9435.html" + "url": "https://www.drinksmixer.com/drink9435.html" }, { "directions": "Combine the rum, Cointreau, lime juice, orange juice, sugar, and the juice from one passion-fruit in a blender with 1/4 cup of crushed ice. Blend and add further crushed ice where needed until slushy consistancy is achieved. Pour into a hurricane glass, garnish with a slice of lemon, lime and orange, and serve.", @@ -88949,7 +88949,7 @@ "passion-fruit" ], "title": "Aussie Beach Blond recipe", - "url": "http://www.drinksmixer.com/drink9436.html" + "url": "https://www.drinksmixer.com/drink9436.html" }, { "directions": "Pour all ingredients into a cocktail shaker half-filled with ice cubes. Shake well. Pour contents (including ice) into a highball glass, and serve.", @@ -88964,7 +88964,7 @@ "Angostura\u00ae bitters" ], "title": "Autumn Thunder recipe", - "url": "http://www.drinksmixer.com/drink9437.html" + "url": "https://www.drinksmixer.com/drink9437.html" }, { "directions": "Pour all three ingredients into a cocktail shaker half-filled with cracked ice. Shake well, and strain into a highball glass filled with cracked ice. Top with a maraschino cherry, and serve.", @@ -88974,7 +88974,7 @@ "Kahlua\u00ae coffee liqueur" ], "title": "Babygirl recipe", - "url": "http://www.drinksmixer.com/drink9438.html" + "url": "https://www.drinksmixer.com/drink9438.html" }, { "directions": "Pour the Marie Brizard banana liqueur into a cocktail glass. Add the cognac (or substitute brandy), allow to clear, and serve.", @@ -88983,7 +88983,7 @@ "Remy Martin\u00ae cognac" ], "title": "Banana Cognac recipe", - "url": "http://www.drinksmixer.com/drink9439.html" + "url": "https://www.drinksmixer.com/drink9439.html" }, { "directions": "Muddle the strawberries and sugar with a dash of lemon juice in the bottom of a mixing tin half-filled with ice cubes. Add sake and vodka. Shake well, and pour entire contents into an old-fashioned glass. Serve.", @@ -88995,7 +88995,7 @@ "strawberries" ], "title": "Blushing Geisha recipe", - "url": "http://www.drinksmixer.com/drink9440.html" + "url": "https://www.drinksmixer.com/drink9440.html" }, { "directions": "Add small slices of mango to a hurricane glass. Pour the cachaca, banana liqueur and mango juice in a cocktail shaker half-filled with ice cubes. Shake well, and strain into the glass. Add the Kahlua coffee liqueur. Garnish with a sliced banana and a cherry, and serve.", @@ -89007,7 +89007,7 @@ "mangos" ], "title": "Brazilian Mango recipe", - "url": "http://www.drinksmixer.com/drink9441.html" + "url": "https://www.drinksmixer.com/drink9441.html" }, { "directions": "Shake all three ingredients quickly with ice. Strain into a shot glass, or increase proportions and strain into several.", @@ -89017,7 +89017,7 @@ "butterscotch schnapps" ], "title": "Cinnamon Toast Crunch #2 recipe", - "url": "http://www.drinksmixer.com/drink9442.html" + "url": "https://www.drinksmixer.com/drink9442.html" }, { "directions": "Muddle rockmelon and pineapple chunks with sugar in the bottom of a highball glass. Add Bacardi white rum and a few ice cubes. Top with orange squash (premixed with water as per normal cordial ratio).", @@ -89029,7 +89029,7 @@ "orange squash" ], "title": "Cordial Cooler recipe", - "url": "http://www.drinksmixer.com/drink9443.html" + "url": "https://www.drinksmixer.com/drink9443.html" }, { "directions": "Pour the vodka, peach schnapps, Chambord raspberry liqueur and cream into a cocktail shaker half-filled with ice cubes. Shake vigorously. Strain into a cocktail glass. Top with whipped cream, garnish with a maraschino cherry, and serve.", @@ -89041,7 +89041,7 @@ "whipped cream" ], "title": "Cum in Your Panties recipe", - "url": "http://www.drinksmixer.com/drink9444.html" + "url": "https://www.drinksmixer.com/drink9444.html" }, { "directions": "Combine all ingredients in a short glass, and shoot.", @@ -89051,7 +89051,7 @@ "DeKuyper\u00ae peppermint schnapps" ], "title": "Danny's Favorite recipe", - "url": "http://www.drinksmixer.com/drink9445.html" + "url": "https://www.drinksmixer.com/drink9445.html" }, { "directions": "Pour both ingredients, in equal parts, into a shot glass, and shoot.", @@ -89060,7 +89060,7 @@ "Goldschlager\u00ae cinnamon schnapps" ], "title": "Dead Man Walking recipe", - "url": "http://www.drinksmixer.com/drink9446.html" + "url": "https://www.drinksmixer.com/drink9446.html" }, { "directions": "Pour all ingredients into a collins glass almost filled with ice cubes. Stir well, garnish with a slice of lime, and serve.", @@ -89074,7 +89074,7 @@ "Coca-Cola\u00ae" ], "title": "Electric Long Island Iced Tea recipe", - "url": "http://www.drinksmixer.com/drink9449.html" + "url": "https://www.drinksmixer.com/drink9449.html" }, { "directions": "Stir ingredients together in a cocktail glass with/without crushed ice, and serve.", @@ -89084,7 +89084,7 @@ "coconut rum" ], "title": "Gangsta Colada recipe", - "url": "http://www.drinksmixer.com/drink9450.html" + "url": "https://www.drinksmixer.com/drink9450.html" }, { "directions": "Stir ingredients together in a highball glass filled with ice cubes, and serve.", @@ -89094,7 +89094,7 @@ "grape juice" ], "title": "Grape Ape #2 recipe", - "url": "http://www.drinksmixer.com/drink9451.html" + "url": "https://www.drinksmixer.com/drink9451.html" }, { "directions": "Pour the Smirnoff vanilla vodka into a collins glass half-filled with ice cubes. Top with Pepsi Blue, stir well, and serve.", @@ -89103,7 +89103,7 @@ "Pepsi\u00ae cola" ], "title": "Gummy Sharks recipe", - "url": "http://www.drinksmixer.com/drink9452.html" + "url": "https://www.drinksmixer.com/drink9452.html" }, { "directions": "Leave the rainbow sorbet in a fridge for a few hours to allow to melt and add to a 5-gallon sports cooler container (the kind that stand up and have a spout on the bottom). Add all other ingredients. Shake it up good before serving to a healthy amount of party guests.", @@ -89115,7 +89115,7 @@ "rainbow sherbert" ], "title": "Hallenbeck Punch recipe", - "url": "http://www.drinksmixer.com/drink9453.html" + "url": "https://www.drinksmixer.com/drink9453.html" }, { "directions": "Pour the Hennessy cognac into a collins or other tall glass 3/4 filled with ice cubes. Add vanilla coke, stir lightly, and serve.", @@ -89124,7 +89124,7 @@ "Coca-Cola\u00ae Vanilla Coke" ], "title": "Hennessy and Vanilla Coke recipe", - "url": "http://www.drinksmixer.com/drink9454.html" + "url": "https://www.drinksmixer.com/drink9454.html" }, { "directions": "Pour the Hennessy cognac into a collins or other tall glass 3/4 filled with ice cubes. Add cherry coke, stir lightly, and serve.", @@ -89133,7 +89133,7 @@ "Coca-Cola\u00ae Cherry Coke" ], "title": "Hennessy and Cherry Coke recipe", - "url": "http://www.drinksmixer.com/drink9455.html" + "url": "https://www.drinksmixer.com/drink9455.html" }, { "directions": "Stir ingredients together in a hurricane glass filled with ice cubes, and serve.", @@ -89147,7 +89147,7 @@ "Sprite Remix" ], "title": "Hustler's Paradise recipe", - "url": "http://www.drinksmixer.com/drink9456.html" + "url": "https://www.drinksmixer.com/drink9456.html" }, { "directions": "Stir ingredients together in a collins glass filled with ice cubes, and serve.", @@ -89156,7 +89156,7 @@ "Mountain Dew\u00ae Code Red soda" ], "title": "Irish Redhead recipe", - "url": "http://www.drinksmixer.com/drink9457.html" + "url": "https://www.drinksmixer.com/drink9457.html" }, { "directions": "Pour the Yukon Jack into an old-fashioned glass filled with cracked or cubed ice. Fill with canned pineapple juice, stir well, and serve.", @@ -89165,7 +89165,7 @@ "pineapple juice" ], "title": "Jackknife recipe", - "url": "http://www.drinksmixer.com/drink9458.html" + "url": "https://www.drinksmixer.com/drink9458.html" }, { "directions": "Add the blue curacao with 1/3 cup of crushed ice to a blender, and blend until slushy. Pour the creme de bananes, Malibu rum and pineapple juice into a cocktail shaker half-filled with ice cubes. Shake well, and pour into a hurricane glass. Pour the slushy blue curacao over the back of a spoon into the glass. Garnish with a pineapple wedge, add blue straws, and serve.", @@ -89176,7 +89176,7 @@ "pineapple juice" ], "title": "JD's Private Beach recipe", - "url": "http://www.drinksmixer.com/drink9459.html" + "url": "https://www.drinksmixer.com/drink9459.html" }, { "directions": "Combine all ingredients in a blender with half a cup of crushed ice. Blend for 15 seconds. Pour into an old-fashioned glass over ice cubes. Garnish with an orange slice, and serve.", @@ -89188,7 +89188,7 @@ "almond syrup" ], "title": "Ladybug recipe", - "url": "http://www.drinksmixer.com/drink9460.html" + "url": "https://www.drinksmixer.com/drink9460.html" }, { "directions": "Pour the Stoli flavored vodkas, Malibu rum and pineapple juice into a cocktail shaker half-filled with ice cubes. Shake well, and strain into a chilled cocktail glass. Garnish with a piece of fresh pineapple, and serve.", @@ -89200,7 +89200,7 @@ "pineapple juice" ], "title": "Laurie Goes Hawaiian recipe", - "url": "http://www.drinksmixer.com/drink9461.html" + "url": "https://www.drinksmixer.com/drink9461.html" }, { "directions": "Pour the Burgundy wine, triple sec, and lime (or lemon) juice over ice in a white wine glass. Stir, and add the soda. Stir again gently, and serve.", @@ -89211,7 +89211,7 @@ "lemon-lime soda" ], "title": "Little Eva recipe", - "url": "http://www.drinksmixer.com/drink9462.html" + "url": "https://www.drinksmixer.com/drink9462.html" }, { "directions": "Pour all ingredients into a tall glass filled with ice cubes (or pre-chill ingredients), stir well, and serve.", @@ -89221,7 +89221,7 @@ "Countrytime\u00ae yellow lemonade" ], "title": "Lunchbox Lemonade recipe", - "url": "http://www.drinksmixer.com/drink9463.html" + "url": "https://www.drinksmixer.com/drink9463.html" }, { "directions": "Combine all ingredients in a large pitcher. Mix together. Serve into collins glasses.", @@ -89231,7 +89231,7 @@ "pink lemonade" ], "title": "Madison Lemonade recipe", - "url": "http://www.drinksmixer.com/drink9464.html" + "url": "https://www.drinksmixer.com/drink9464.html" }, { "directions": "Pour all ingredients into a pint glass, mix and serve.", @@ -89241,7 +89241,7 @@ "Rose's\u00ae grenadine syrup" ], "title": "Puerto Rican on Crack in Brooklyn recipe", - "url": "http://www.drinksmixer.com/drink9465.html" + "url": "https://www.drinksmixer.com/drink9465.html" }, { "directions": "Stir ingredients together with ice cubes in a collins glass, and serve.", @@ -89250,7 +89250,7 @@ "pineapple juice" ], "title": "Malibu Barbie recipe", - "url": "http://www.drinksmixer.com/drink9466.html" + "url": "https://www.drinksmixer.com/drink9466.html" }, { "directions": "Pour all ingredients into a cocktail shaker half-filled with ice cubes. Shake well, strain into a collins glass almost filled with ice cubes, and serve.", @@ -89261,7 +89261,7 @@ "margarita mix" ], "title": "Malibu Summer Splash recipe", - "url": "http://www.drinksmixer.com/drink9467.html" + "url": "https://www.drinksmixer.com/drink9467.html" }, { "directions": "Pour all ingredients into a cocktail shaker half-filled with ice cubes. Shake well, strain into a shot glass, and serve.", @@ -89271,7 +89271,7 @@ "white creme de cacao" ], "title": "Monkey Island recipe", - "url": "http://www.drinksmixer.com/drink9468.html" + "url": "https://www.drinksmixer.com/drink9468.html" }, { "directions": "Pour all ingredients into a cocktail shaker half-filled with ice cubes. Shake well, strain into a chilled cocktail glass, and serve.", @@ -89282,7 +89282,7 @@ "lime juice" ], "title": "Nutty Club recipe", - "url": "http://www.drinksmixer.com/drink9469.html" + "url": "https://www.drinksmixer.com/drink9469.html" }, { "directions": "Pour both ingredients over 4 ice cubes in a collins glass. Stir well, and serve.", @@ -89291,7 +89291,7 @@ "Sunkist\u00ae orange soda" ], "title": "Old Sunkist recipe", - "url": "http://www.drinksmixer.com/drink9470.html" + "url": "https://www.drinksmixer.com/drink9470.html" }, { "directions": "Pour the Bailey's irish cream and creme de menthe into a coffee mug, and stir. Add hot chocolate, and top with whipped cream. Sprinkle with chocolate shavings and a maraschino cherry if desired, and serve.", @@ -89302,7 +89302,7 @@ "whipped cream" ], "title": "Cabin Fever recipe", - "url": "http://www.drinksmixer.com/drink9471.html" + "url": "https://www.drinksmixer.com/drink9471.html" }, { "directions": "Stir ingredients together in a cup, and serve.", @@ -89312,7 +89312,7 @@ "grenadine syrup" ], "title": "Cherry Bomb #4 recipe", - "url": "http://www.drinksmixer.com/drink9472.html" + "url": "https://www.drinksmixer.com/drink9472.html" }, { "directions": "Pour the Rose's lime juice into a collins glass filled with ice cubes. Fill with soda water, and serve.", @@ -89321,7 +89321,7 @@ "soda water" ], "title": "Lime Fizz recipe", - "url": "http://www.drinksmixer.com/drink9473.html" + "url": "https://www.drinksmixer.com/drink9473.html" }, { "directions": "Pour all ingredients into a cocktail shaker half-filled with ice cubes. Shake well, and strain into 4 seperate shot glasses. Color should be light orange. ", @@ -89334,7 +89334,7 @@ "7-Up\u00ae soda" ], "title": "Orange Rush Shots recipe", - "url": "http://www.drinksmixer.com/drink9474.html" + "url": "https://www.drinksmixer.com/drink9474.html" }, { "directions": "Pour the Bacardi Limon and Passoa into a highball glass filled with ice cubes. Top with cranberry juice, and stir well. Splash with champagne, and serve.", @@ -89345,7 +89345,7 @@ "Champagne" ], "title": "Puerto Rican Popper recipe", - "url": "http://www.drinksmixer.com/drink9475.html" + "url": "https://www.drinksmixer.com/drink9475.html" }, { "directions": "Pour the Midori melon liqueur, strawberry liqueur and banana liqueur into a cocktail shaker one-third filled with ice cubes. Shake well, and pour entire contents into a highball glass. Top with orange juice, and serve.", @@ -89356,7 +89356,7 @@ "orange juice" ], "title": "Rainbow Orgy recipe", - "url": "http://www.drinksmixer.com/drink9476.html" + "url": "https://www.drinksmixer.com/drink9476.html" }, { "directions": "Shake ingredients together in a cocktail shaker half-filled with ice cubes. Strain into a hurricane glass almost filled with ice cubes, and serve.", @@ -89365,7 +89365,7 @@ "Smirnoff\u00ae Raspberry Twist vodka" ], "title": "Raspberry Tiki Twist Punch recipe", - "url": "http://www.drinksmixer.com/drink9477.html" + "url": "https://www.drinksmixer.com/drink9477.html" }, { "directions": "Pour all ingredients into a cocktail shaker with ice cubes, and shake well. Strain into a shot glass, and serve.", @@ -89376,7 +89376,7 @@ "cranberry juice" ], "title": "Red Headed Leg Spreader recipe", - "url": "http://www.drinksmixer.com/drink9478.html" + "url": "https://www.drinksmixer.com/drink9478.html" }, { "directions": "Layer ingredients into a shot glass; Bailey's at bottom, brandy on the top. Shoot.", @@ -89386,7 +89386,7 @@ "orange brandy" ], "title": "Tiger Tail #2 recipe", - "url": "http://www.drinksmixer.com/drink9479.html" + "url": "https://www.drinksmixer.com/drink9479.html" }, { "directions": "Pour all ingredients into a collins glass with 3 or 4 ice cubes, and serve.", @@ -89397,7 +89397,7 @@ "Mountain Dew\u00ae citrus soda" ], "title": "Russian Mountain Dew recipe", - "url": "http://www.drinksmixer.com/drink9480.html" + "url": "https://www.drinksmixer.com/drink9480.html" }, { "directions": "Combine all ingredients in a cocktail shaker half-filled with cracked ice. Shake well. Strain into a chilled cocktail glass, and serve.", @@ -89407,7 +89407,7 @@ "orange bitters" ], "title": "Russian Rose recipe", - "url": "http://www.drinksmixer.com/drink9481.html" + "url": "https://www.drinksmixer.com/drink9481.html" }, { "directions": "Pour ingredients into a white wine glass filled with ice cubes and rimmed with salt. Stir. Garnish with a slice of lemon, and serve.", @@ -89417,7 +89417,7 @@ "grapefruit juice" ], "title": "Salt Lick recipe", - "url": "http://www.drinksmixer.com/drink9482.html" + "url": "https://www.drinksmixer.com/drink9482.html" }, { "directions": "Pour the tequila, margarita mix, lime juice and triple sec into an average sized blender filled with crushed ice, and blend well. Dip rim of a 16-oz. margarita glass in the blender to wet, and apply salt if desired. Pour the blender mixture into the glass until 2/3 full, add the sangria, and serve.", @@ -89429,7 +89429,7 @@ "sangria" ], "title": "Sangria Margarita recipe", - "url": "http://www.drinksmixer.com/drink9483.html" + "url": "https://www.drinksmixer.com/drink9483.html" }, { "directions": "Stir ingredients together in a shot glass, and serve.", @@ -89439,7 +89439,7 @@ "peach schnapps" ], "title": "Sweetheart recipe", - "url": "http://www.drinksmixer.com/drink9486.html" + "url": "https://www.drinksmixer.com/drink9486.html" }, { "directions": "Shake the Skyy vodka and Goldschlager in a cocktail shaker half-filled with ice cubes. Strain into a chilled cocktail or martini glass. Garnish with orange peel, and serve.", @@ -89448,7 +89448,7 @@ "Goldschlager\u00ae cinnamon schnapps" ], "title": "Golden Trailer Martini recipe", - "url": "http://www.drinksmixer.com/drink9487.html" + "url": "https://www.drinksmixer.com/drink9487.html" }, { "directions": "Stir ingredients together in a collins glass filled with ice cubes, and serve.", @@ -89459,7 +89459,7 @@ "cola" ], "title": "Tijuana Bulldog recipe", - "url": "http://www.drinksmixer.com/drink9488.html" + "url": "https://www.drinksmixer.com/drink9488.html" }, { "directions": "Pour the ginger ale and vanilla drops over crushed ice in a cocktail glass, and serve.", @@ -89468,7 +89468,7 @@ "ginger ale" ], "title": "Vanilla Ale recipe", - "url": "http://www.drinksmixer.com/drink9489.html" + "url": "https://www.drinksmixer.com/drink9489.html" }, { "directions": "Pour all ingredients into a highball glass filled with ice cubes, and serve.", @@ -89478,7 +89478,7 @@ "half-and-half" ], "title": "Velvet Hammer recipe", - "url": "http://www.drinksmixer.com/drink9490.html" + "url": "https://www.drinksmixer.com/drink9490.html" }, { "directions": "Shake all ingredients in a cocktail shaker half-filled with ice cubes. Strain into a chilled cocktail glass, and serve.", @@ -89488,7 +89488,7 @@ "sweet and sour mix" ], "title": "Vodka Amaretto Sour recipe", - "url": "http://www.drinksmixer.com/drink9491.html" + "url": "https://www.drinksmixer.com/drink9491.html" }, { "directions": "Pour all three ingredients into a cocktail shaker half-filled with ice cubes. Shake well, strain into a large shot glass, and serve.", @@ -89498,7 +89498,7 @@ "Grey Goose\u00ae vodka" ], "title": "William Wallace recipe", - "url": "http://www.drinksmixer.com/drink9492.html" + "url": "https://www.drinksmixer.com/drink9492.html" }, { "directions": "Pour the rum, triple sec, pineapple juice and sour mix into a cocktail shaker half-filled with ice cubes. Shake well, and strain into a highball glass filled with ice cubes. Add bitters. Garnish with a maraschino cherry, and serve.", @@ -89510,7 +89510,7 @@ "bitters" ], "title": "Kampai Cocktail recipe", - "url": "http://www.drinksmixer.com/drink9493.html" + "url": "https://www.drinksmixer.com/drink9493.html" }, { "directions": "Shake ingredients in a cocktail shaker half-filled with ice cubes. Strain into a cocktail glass, garnish with a lemon twist, and serve.", @@ -89519,7 +89519,7 @@ "French vermouth" ], "title": "Kangaroo Kicker recipe", - "url": "http://www.drinksmixer.com/drink9494.html" + "url": "https://www.drinksmixer.com/drink9494.html" }, { "directions": "Pour all ingredients into a cocktail shaker half-filled with cracked ice. Strain into a chilled cocktail glass, or serve in a tall glass with iced coffee and with/without cream.", @@ -89529,7 +89529,7 @@ "white creme de cacao" ], "title": "Karamozov Koffee recipe", - "url": "http://www.drinksmixer.com/drink9495.html" + "url": "https://www.drinksmixer.com/drink9495.html" }, { "directions": "Pour the rum, triple sec and peach brandy into a highball glass 3/4 filled with ice cubes. Add the fruit juices, stir well, and serve.", @@ -89542,7 +89542,7 @@ "grapefruit juice" ], "title": "Karma Killer recipe", - "url": "http://www.drinksmixer.com/drink9496.html" + "url": "https://www.drinksmixer.com/drink9496.html" }, { "directions": "Pour the vodka and Campari into a collins glass almost filled with ice cubes. Top with soda, stir well, and serve.", @@ -89552,7 +89552,7 @@ "soda water" ], "title": "Kelly-K recipe", - "url": "http://www.drinksmixer.com/drink9497.html" + "url": "https://www.drinksmixer.com/drink9497.html" }, { "directions": "Pour all ingredients into a cocktail shaker half-filled with cracked ice. Shake well, and strain into a cocktail glass. Garnish with a half-slice of orange, and serve.", @@ -89564,7 +89564,7 @@ "sugar" ], "title": "Kentucky Blizzard recipe", - "url": "http://www.drinksmixer.com/drink9498.html" + "url": "https://www.drinksmixer.com/drink9498.html" }, { "directions": "Shake both ingredients together with ice, strain into a cocktail glass, and serve.", @@ -89573,7 +89573,7 @@ "pineapple juice" ], "title": "Kentucky Cocktail recipe", - "url": "http://www.drinksmixer.com/drink9499.html" + "url": "https://www.drinksmixer.com/drink9499.html" }, { "directions": "Pour all three ingredients into a cocktail shaker half-filled with ice cubes. Shake well, and strain into a chilled cocktail glass. Garnish with a twist of lime, and serve.", @@ -89583,7 +89583,7 @@ "half-and-half" ], "title": "Key Lime Martini recipe", - "url": "http://www.drinksmixer.com/drink9500.html" + "url": "https://www.drinksmixer.com/drink9500.html" }, { "directions": "Combine all ingredients with 12-oz. (1 1/2 cups) of crushed ice in a blender. Blend until smooth. Pour into a 16-oz hurricane or specialty glass. Garnish with a lime wheel, sprinkle with graham cracker crumbs, and serve.", @@ -89595,7 +89595,7 @@ "sugar" ], "title": "Key Lime Quencher recipe", - "url": "http://www.drinksmixer.com/drink9501.html" + "url": "https://www.drinksmixer.com/drink9501.html" }, { "directions": "Pour the vodka into a frozen highball glass, and add the lime juice. Fill with orange juice and stir. Garnish with a slice of lime, and serve.", @@ -89605,7 +89605,7 @@ "orange juice" ], "title": "Key West Screwdriver recipe", - "url": "http://www.drinksmixer.com/drink9502.html" + "url": "https://www.drinksmixer.com/drink9502.html" }, { "directions": "Shake ingredients together with ice. Strain into a cocktail glass, and serve.", @@ -89615,7 +89615,7 @@ "whiskey" ], "title": "Kicking Cow recipe", - "url": "http://www.drinksmixer.com/drink9503.html" + "url": "https://www.drinksmixer.com/drink9503.html" }, { "directions": "Blend the Stoli cinnamon vodka, white creme de cacao, Bailey's irish cream and ice cream with cracked ice in a blender for about 10 seconds until texture is thick and smooth. Pour into a large, chilled wine goblet and float Stoli raspberry vodka on top. Add a dollop of whipped cream and serve with a teaspoon.", @@ -89628,7 +89628,7 @@ "whipped cream" ], "title": "Kiev Sundae recipe", - "url": "http://www.drinksmixer.com/drink9504.html" + "url": "https://www.drinksmixer.com/drink9504.html" }, { "directions": "Pour all ingredients into a highball glass filled with ice cubes. Serve, unstirred.", @@ -89639,7 +89639,7 @@ "cranberry juice" ], "title": "Killer Kool-Aid recipe", - "url": "http://www.drinksmixer.com/drink9505.html" + "url": "https://www.drinksmixer.com/drink9505.html" }, { "directions": "Pour all ingredients into a collins glass filled with ice cubes. Stir well, add a straw, and serve.", @@ -89651,7 +89651,7 @@ "soda water" ], "title": "Killer Kool-Aid #3 recipe", - "url": "http://www.drinksmixer.com/drink9506.html" + "url": "https://www.drinksmixer.com/drink9506.html" }, { "directions": "Stir ingredients together in a chilled cocktail glass, and serve.", @@ -89662,7 +89662,7 @@ "cranberry juice" ], "title": "Kim-Berry recipe", - "url": "http://www.drinksmixer.com/drink9507.html" + "url": "https://www.drinksmixer.com/drink9507.html" }, { "directions": "Muddle the orange slice, pineapple slice and powdered sugar in the bottom of an old-fashioned glass. Add the Scotch whisky, 2 ice cubes, and stir.", @@ -89673,7 +89673,7 @@ "pineapple" ], "title": "King Cole Cocktail recipe", - "url": "http://www.drinksmixer.com/drink9508.html" + "url": "https://www.drinksmixer.com/drink9508.html" }, { "directions": "Pour both ingredients into a collins glass. Garnish with a twist of lemon, and serve.", @@ -89682,7 +89682,7 @@ "cognac" ], "title": "King's Ruin recipe", - "url": "http://www.drinksmixer.com/drink9509.html" + "url": "https://www.drinksmixer.com/drink9509.html" }, { "directions": "Shake ingredients together with crushed or shaved ice in a cocktail shaker. Strain into a chilled cocktail glass, and serve.", @@ -89693,7 +89693,7 @@ "grenadine syrup" ], "title": "Kingston recipe", - "url": "http://www.drinksmixer.com/drink9510.html" + "url": "https://www.drinksmixer.com/drink9510.html" }, { "directions": "Pour the coffee liqueur and the coconut rum over ice cubes in an old-fashioned glass. Fill with half and half cream, stir, and serve.", @@ -89703,7 +89703,7 @@ "half-and-half" ], "title": "Kinky Russian recipe", - "url": "http://www.drinksmixer.com/drink9511.html" + "url": "https://www.drinksmixer.com/drink9511.html" }, { "directions": "Pour the creme de cassis and kirsch into a cocktail shaker half-filled with ice cubes. Shake well, and strain over 2 ice cubes in a wine glass. Add soda water to taste, and serve.", @@ -89713,7 +89713,7 @@ "soda water" ], "title": "Kirsch and Cassis recipe", - "url": "http://www.drinksmixer.com/drink9512.html" + "url": "https://www.drinksmixer.com/drink9512.html" }, { "directions": "Stir ingredients together into an old-fashioned glass, and serve.", @@ -89723,7 +89723,7 @@ "lemon juice" ], "title": "Kiss Me Slow recipe", - "url": "http://www.drinksmixer.com/drink9513.html" + "url": "https://www.drinksmixer.com/drink9513.html" }, { "directions": "Stir ingredients in a collins glass filled with ice cubes. Add a straw, and serve.", @@ -89732,7 +89732,7 @@ "apricot nectar" ], "title": "Kiss on the Lips #2 recipe", - "url": "http://www.drinksmixer.com/drink9514.html" + "url": "https://www.drinksmixer.com/drink9514.html" }, { "directions": "Shake ingredients together in a cocktail shaker until ice cold. Strain into a chilled cocktail glass. Garnish with a strawberry and a lemon twist, and serve.", @@ -89741,7 +89741,7 @@ "Snapple\u00ae Kiwi-Strawberry soda" ], "title": "Kiwi-Berry Boat Drink recipe", - "url": "http://www.drinksmixer.com/drink9515.html" + "url": "https://www.drinksmixer.com/drink9515.html" }, { "directions": "Shake ingredients in a cocktail shaker half-filled with cracked ice. Pour entire contents of shaker into a collins glass, and serve.", @@ -89750,7 +89750,7 @@ "Red Bull\u00ae energy drink" ], "title": "Kleinfeld recipe", - "url": "http://www.drinksmixer.com/drink9516.html" + "url": "https://www.drinksmixer.com/drink9516.html" }, { "directions": "Stir ingredients together in a chilled cocktail glass with a small amount of crushed ice, and serve.", @@ -89759,7 +89759,7 @@ "Kahlua\u00ae coffee liqueur" ], "title": "Klingon Koffee recipe", - "url": "http://www.drinksmixer.com/drink9517.html" + "url": "https://www.drinksmixer.com/drink9517.html" }, { "directions": "Pour all ingredients into a cocktail shaker half-filled with ice cubes. Shake well, and strain into a cocktail glass. Garnish with a small slice of pineapple, and serve.", @@ -89771,7 +89771,7 @@ "lime juice" ], "title": "Knickerbocker Special recipe", - "url": "http://www.drinksmixer.com/drink9518.html" + "url": "https://www.drinksmixer.com/drink9518.html" }, { "directions": "Combine ingredients with one cup of crushed ice in a blender. Blend until smooth. Pour into a hurricane glass, garnish with a slice of orange, and serve.", @@ -89783,7 +89783,7 @@ "banana" ], "title": "Kokomo Joe recipe", - "url": "http://www.drinksmixer.com/drink9519.html" + "url": "https://www.drinksmixer.com/drink9519.html" }, { "directions": "Stir ingredients together in a cocktail glass. Garnish with lemon peel, and serve.", @@ -89793,7 +89793,7 @@ "Cointreau\u00ae orange liqueur" ], "title": "Kon Tiki recipe", - "url": "http://www.drinksmixer.com/drink9520.html" + "url": "https://www.drinksmixer.com/drink9520.html" }, { "directions": "Pour all ingredients into a cocktail shaker half-filled with ice cubes. Shake well, strain into a highball glass, and serve.", @@ -89803,7 +89803,7 @@ "Martini & Rossi\u00ae dry vermouth" ], "title": "Kiss Off recipe", - "url": "http://www.drinksmixer.com/drink9521.html" + "url": "https://www.drinksmixer.com/drink9521.html" }, { "directions": "Combine ingredients in an old-fashioned glass, stir well, and serve.", @@ -89813,7 +89813,7 @@ "vitamin C" ], "title": "Klingon Battlejuice recipe", - "url": "http://www.drinksmixer.com/drink9522.html" + "url": "https://www.drinksmixer.com/drink9522.html" }, { "directions": "Stir ingredients together in a cocktail glass. Garnish with a cocktail onion, and serve.", @@ -89822,7 +89822,7 @@ "clam juice" ], "title": "Kooch recipe", - "url": "http://www.drinksmixer.com/drink9523.html" + "url": "https://www.drinksmixer.com/drink9523.html" }, { "directions": "Stir ingredients together in a highball glass filled with ice cubes. Garnish with an orange wedge and a cherry, and serve.", @@ -89833,7 +89833,7 @@ "grenadine syrup" ], "title": "Kooky Boa recipe", - "url": "http://www.drinksmixer.com/drink9524.html" + "url": "https://www.drinksmixer.com/drink9524.html" }, { "directions": "Pour both ingredients into a highball glass almost filled with ice cubes. Stir and serve.", @@ -89842,7 +89842,7 @@ "soda water" ], "title": "Kremlin recipe", - "url": "http://www.drinksmixer.com/drink9525.html" + "url": "https://www.drinksmixer.com/drink9525.html" }, { "directions": "Pour all ingredients into a cocktail shaker half-filled with ice cubes. Shake well, strain into a cocktail glass, and serve.", @@ -89857,7 +89857,7 @@ "pineapple juice" ], "title": "Kung Fu Kicker recipe", - "url": "http://www.drinksmixer.com/drink9526.html" + "url": "https://www.drinksmixer.com/drink9526.html" }, { "directions": "Shake ingredients together with cracked ice in a cocktail shaker. Strain into a chilled cocktail glass, garnish with an orange twist, and serve.", @@ -89867,7 +89867,7 @@ "sweet vermouth" ], "title": "Indispensable Martini recipe", - "url": "http://www.drinksmixer.com/drink9527.html" + "url": "https://www.drinksmixer.com/drink9527.html" }, { "directions": "Pour all ingredients into a mixing glass half-filled with ice cubes. Stir well. Strain into a chilled cocktail glass. Garnish with a melon ball, and serve.", @@ -89878,7 +89878,7 @@ "lemon juice" ], "title": "Kyoto recipe", - "url": "http://www.drinksmixer.com/drink9528.html" + "url": "https://www.drinksmixer.com/drink9528.html" }, { "directions": "Stir ingredients together in an old-fashioned or lowball glass, and serve.", @@ -89887,7 +89887,7 @@ "clam juice" ], "title": "La Brea Tar Pit recipe", - "url": "http://www.drinksmixer.com/drink9529.html" + "url": "https://www.drinksmixer.com/drink9529.html" }, { "directions": "Shake all ingredients with ice in a cocktail shaker. Strain into a cocktail glass, garnish with a maraschino cherry, and serve.", @@ -89899,7 +89899,7 @@ "bitters" ], "title": "Laguna recipe", - "url": "http://www.drinksmixer.com/drink9530.html" + "url": "https://www.drinksmixer.com/drink9530.html" }, { "directions": "Pour the coconut liqueur, cranberry juice and pineapple juice into a cocktail shaker half-filled with ice cubes. Shake well, and strain into a collins glass filled with ice cubes. Fill with soda, garnish with a twist of lime, and serve.", @@ -89910,7 +89910,7 @@ "lemon-lime soda" ], "title": "Lake Breeze recipe", - "url": "http://www.drinksmixer.com/drink9531.html" + "url": "https://www.drinksmixer.com/drink9531.html" }, { "directions": "Shake all ingredients with ice cubes, strain into a cocktail glass, and serve.", @@ -89921,7 +89921,7 @@ "DeKuyper\u00ae Apple Barrel schnapps" ], "title": "La Pussy recipe", - "url": "http://www.drinksmixer.com/drink9532.html" + "url": "https://www.drinksmixer.com/drink9532.html" }, { "directions": "Pour the vodka, creme de bananes, orange juice and pineapple juice into a parfait glass filled with ice cubes. Float rum on top. Garnish with a lime wheel and a cherry, and serve.", @@ -89933,7 +89933,7 @@ "rum" ], "title": "L.A. Sunrise recipe", - "url": "http://www.drinksmixer.com/drink9533.html" + "url": "https://www.drinksmixer.com/drink9533.html" }, { "directions": "Pour the gin, vermouth and bitters into a mixing glass half-filled with crushed ice. Stir well. Strain into a cocktail glass, and serve.", @@ -89943,7 +89943,7 @@ "orange bitters" ], "title": "Leaning Tower recipe", - "url": "http://www.drinksmixer.com/drink9534.html" + "url": "https://www.drinksmixer.com/drink9534.html" }, { "directions": "Stir ingredients together in a cocktail glass, and serve.", @@ -89952,7 +89952,7 @@ "pickle juice" ], "title": "Krazy Carl recipe", - "url": "http://www.drinksmixer.com/drink9535.html" + "url": "https://www.drinksmixer.com/drink9535.html" }, { "directions": "Pour the rum into a cocktail shaker half-filled with cubed or cracked ice. Add the sugar, and squeeze in the juice from the lime. Shake vigorously. Strain into a cocktail glass, and serve.", @@ -89962,7 +89962,7 @@ "brown sugar" ], "title": "La Bomba Negra recipe", - "url": "http://www.drinksmixer.com/drink9536.html" + "url": "https://www.drinksmixer.com/drink9536.html" }, { "directions": "Blend ingredients in a blender with one cup of ice until smooth. Pour into a large red wine glass. Garnish with a strawberry, and serve.", @@ -89972,7 +89972,7 @@ "light cream" ], "title": "Lebanese Snow recipe", - "url": "http://www.drinksmixer.com/drink9537.html" + "url": "https://www.drinksmixer.com/drink9537.html" }, { "directions": "Pour the vodka and juices into a cocktail shaker half-filled with ice cubes. Shake well, strain into a collins glass filled with ice cubes, and serve.", @@ -89982,7 +89982,7 @@ "grapefruit juice" ], "title": "Left Handed Screwdriver recipe", - "url": "http://www.drinksmixer.com/drink9538.html" + "url": "https://www.drinksmixer.com/drink9538.html" }, { "directions": "Pour the vodka and grand marnier over ice cubes in a highball glass. Almost fill with orange juice. Dribble with grenadine. Shake gently to mix, and serve.", @@ -89993,7 +89993,7 @@ "grenadine syrup" ], "title": "Le Grand Sunset recipe", - "url": "http://www.drinksmixer.com/drink9539.html" + "url": "https://www.drinksmixer.com/drink9539.html" }, { "directions": "Pour the rum, lemon juice, pineapple juice, papaya juice and orange juice into a highball glass filled with ice cubes. Add a dash of grenadine, and stir well. Top with soda water. Garnish with a fruit flag or pineapple wedge, and serve.", @@ -90007,7 +90007,7 @@ "soda water" ], "title": "Lei Lani recipe", - "url": "http://www.drinksmixer.com/drink9540.html" + "url": "https://www.drinksmixer.com/drink9540.html" }, { "directions": "Pour all ingredients into a cocktail shaker without ice. Shake well to froth. Strain into a chilled and salted cocktail glass or small margarita glass, and serve.", @@ -90021,7 +90021,7 @@ "sweet and sour mix" ], "title": "Le Margarita des Artistes recipe", - "url": "http://www.drinksmixer.com/drink9541.html" + "url": "https://www.drinksmixer.com/drink9541.html" }, { "directions": "Pour the vodka, Malibu rum and gin into a highball glass 2/3 filled with ice cubes. Float orange juice on top, and serve.", @@ -90032,7 +90032,7 @@ "orange juice" ], "title": "Lemmings Leap recipe", - "url": "http://www.drinksmixer.com/drink9542.html" + "url": "https://www.drinksmixer.com/drink9542.html" }, { "directions": "Pour the Bacardi Limon rum and Absolut Citron vodka into a highball glass filled with ice cubes. Stir well, garnish with a slice of lemon, and serve.", @@ -90042,7 +90042,7 @@ "7-Up\u00ae soda" ], "title": "Lemon Joe recipe", - "url": "http://www.drinksmixer.com/drink9543.html" + "url": "https://www.drinksmixer.com/drink9543.html" }, { "directions": "Pour all ingredients into a cocktail shaker half-filled with ice. Shake well, and strain into a highball glass. Garnish with a lemon or orange slice, and serve.", @@ -90053,7 +90053,7 @@ "honey" ], "title": "Lemon Sherry Cocktail recipe", - "url": "http://www.drinksmixer.com/drink9544.html" + "url": "https://www.drinksmixer.com/drink9544.html" }, { "directions": "Shake the vodka and vermouth with cracked ice in a cocktail shaker. Strain into a chilled cocktail glass. Garnish with a lemon twist, and serve.", @@ -90062,7 +90062,7 @@ "dry vermouth" ], "title": "Lemon Twist recipe", - "url": "http://www.drinksmixer.com/drink9545.html" + "url": "https://www.drinksmixer.com/drink9545.html" }, { "directions": "Pour all ingredients into a cocktail shaker half-filled with ice cubes. Shake well, strain into a highball glass filled with crushed ice, and serve.", @@ -90073,7 +90073,7 @@ "orange juice" ], "title": "Lemony Summer recipe", - "url": "http://www.drinksmixer.com/drink9546.html" + "url": "https://www.drinksmixer.com/drink9546.html" }, { "directions": "Pour the Bailey's irish cream, creme de menthe and creme de cacao over two ice cubes in a small (8-oz) highball glass or equivalent. Fill with milk, stir, and serve.", @@ -90084,7 +90084,7 @@ "milk" ], "title": "Leprechaun's Lunch recipe", - "url": "http://www.drinksmixer.com/drink9547.html" + "url": "https://www.drinksmixer.com/drink9547.html" }, { "directions": "Pour the vodka and lemonade over 3 ice cubes in a collins glass. Don't pour everything; first adjust proportions to desired strength, then serve.", @@ -90093,7 +90093,7 @@ "lemonade" ], "title": "Lethal Lemonade recipe", - "url": "http://www.drinksmixer.com/drink9548.html" + "url": "https://www.drinksmixer.com/drink9548.html" }, { "directions": "Stir ingredients together in a collins glass 3/4 filled with ice cubes, and serve.", @@ -90102,7 +90102,7 @@ "Snapple\u00ae Lemonade soda" ], "title": "Lemon Mint recipe", - "url": "http://www.drinksmixer.com/drink9549.html" + "url": "https://www.drinksmixer.com/drink9549.html" }, { "directions": "Pour all ingredients into a cocktail shaker half-filled with ice cubes. Shake well, strain into a cocktail glass, and serve.", @@ -90112,7 +90112,7 @@ "orange juice" ], "title": "Leviathan recipe", - "url": "http://www.drinksmixer.com/drink9550.html" + "url": "https://www.drinksmixer.com/drink9550.html" }, { "directions": "Combine all ingredients in a blender, and blend well. Pour into a tall glass. Garnish with a lime wheel and a maraschino cherry, and serve.", @@ -90124,7 +90124,7 @@ "lychee" ], "title": "Lychee Nut Cocktail recipe", - "url": "http://www.drinksmixer.com/drink9551.html" + "url": "https://www.drinksmixer.com/drink9551.html" }, { "directions": "Pour the DeKuyper watermelon pucker and 7-up into a highball glass filled with ice cubes. Lace with amaretto, and serve.", @@ -90134,7 +90134,7 @@ "7-Up\u00ae soda" ], "title": "Lickalotapuss recipe", - "url": "http://www.drinksmixer.com/drink9552.html" + "url": "https://www.drinksmixer.com/drink9552.html" }, { "directions": "Pour the Absolut vodka, Cointreau, cranberry juice and orange juice into a highball glass filled with ice cubes. Shake well. Drizzle Midori melon liqueur on top, and serve.", @@ -90146,7 +90146,7 @@ "Midori\u00ae melon liqueur" ], "title": "Lick and a Promise recipe", - "url": "http://www.drinksmixer.com/drink9553.html" + "url": "https://www.drinksmixer.com/drink9553.html" }, { "directions": "Stir ingredients together in a mixing glass. Pour over finely shaven or crushed ice in a champagne flute or equivalent. Garnish with a slice of orange, and serve.", @@ -90156,7 +90156,7 @@ "advocaat liqueur" ], "title": "Lick out a Sheep recipe", - "url": "http://www.drinksmixer.com/drink9554.html" + "url": "https://www.drinksmixer.com/drink9554.html" }, { "directions": "Combine the sambuca, coconut liqueur and cream with one cup of crushed ice in a blender. Blend until smooth, and pour into a parfait glass. Use a black licorice stick, ends cut off, as a straw, and serve.", @@ -90166,7 +90166,7 @@ "light cream" ], "title": "Licorice Mist recipe", - "url": "http://www.drinksmixer.com/drink9555.html" + "url": "https://www.drinksmixer.com/drink9555.html" }, { "directions": "Shake ingredients with ice in a cocktail shaker. Strain into a cocktail glass, and serve.", @@ -90176,7 +90176,7 @@ "creme de cacao" ], "title": "Licorice Stick recipe", - "url": "http://www.drinksmixer.com/drink9556.html" + "url": "https://www.drinksmixer.com/drink9556.html" }, { "directions": "Pour both ingredients over a few ice cubes in an old-fashioned glass, and serve.", @@ -90185,7 +90185,7 @@ "Jolt\u00ae cola" ], "title": "Lightning Rod recipe", - "url": "http://www.drinksmixer.com/drink9557.html" + "url": "https://www.drinksmixer.com/drink9557.html" }, { "directions": "Pour the Malibu rum and Midori melon liqueur into a collins glass filled with ice cubes. Fill with pineapple juice, and stir well. Float the blue curacao on top. Cut a lime slice in the shape of a lilly pad and place on top, placing a small gummy frog candy on top of that to finish, and serve.", @@ -90196,7 +90196,7 @@ "Blue Curacao liqueur" ], "title": "Lilly Pad recipe", - "url": "http://www.drinksmixer.com/drink9558.html" + "url": "https://www.drinksmixer.com/drink9558.html" }, { "directions": "Pour the lime liqueur into a highball glass filled with ice cubes. Fill with cola, and serve.", @@ -90205,7 +90205,7 @@ "cola" ], "title": "Lime Lambada recipe", - "url": "http://www.drinksmixer.com/drink9559.html" + "url": "https://www.drinksmixer.com/drink9559.html" }, { "directions": "Pour the dark rum, triple sec, Rose's lime juice and fresh lime juice in a cocktail shaker half-filled with ice cubes. Shake well, strain into a cocktail glass, and serve.", @@ -90216,7 +90216,7 @@ "lime juice" ], "title": "Lime Lighter recipe", - "url": "http://www.drinksmixer.com/drink9560.html" + "url": "https://www.drinksmixer.com/drink9560.html" }, { "directions": "Pour the bourbon whiskey into a highball glass almost filled with ice cubes. Add collins mix, and stir well. Add lime juice, to taste, and serve.", @@ -90226,7 +90226,7 @@ "lime juice" ], "title": "Limestone Cocktail recipe", - "url": "http://www.drinksmixer.com/drink9561.html" + "url": "https://www.drinksmixer.com/drink9561.html" }, { "directions": "Blend ingredients together with 3-oz of crushed ice in a blender for 10-20 seconds. Strain into a champagne saucer. Garnish with a sliver of lime, and serve.", @@ -90237,7 +90237,7 @@ "lime juice" ], "title": "Limey Cocktail recipe", - "url": "http://www.drinksmixer.com/drink9562.html" + "url": "https://www.drinksmixer.com/drink9562.html" }, { "directions": "Stir the Stoli Limonnaya vodka and lemon juice together in a collins glass filled with ice cubes, and serve.", @@ -90246,7 +90246,7 @@ "lemon juice" ], "title": "Limon Collins recipe", - "url": "http://www.drinksmixer.com/drink9563.html" + "url": "https://www.drinksmixer.com/drink9563.html" }, { "directions": "Pour the lemon vodka and cranberry juice into a highball glass filled with ice cubes. Stir well, and serve.", @@ -90255,7 +90255,7 @@ "cranberry juice" ], "title": "Limongrad recipe", - "url": "http://www.drinksmixer.com/drink9564.html" + "url": "https://www.drinksmixer.com/drink9564.html" }, { "directions": "Pour the Stoli Limonnaya vodka, triple sec and lemon juice into a mixing glass filled with cracked ice. Stir well. Strain into a cocktail glass rimmed with salt, and serve.", @@ -90265,7 +90265,7 @@ "lemon juice" ], "title": "Limonita recipe", - "url": "http://www.drinksmixer.com/drink9565.html" + "url": "https://www.drinksmixer.com/drink9565.html" }, { "directions": "Pour the Stoli Limonnaya vodka and orange juice into a highball glass 3/4 filled with ice cubes. Slowly add grenadine, stir gently, and serve.", @@ -90275,7 +90275,7 @@ "grenadine syrup" ], "title": "Limon Sunrise recipe", - "url": "http://www.drinksmixer.com/drink9566.html" + "url": "https://www.drinksmixer.com/drink9566.html" }, { "directions": "Pour the vodka and lime juice into a highball glass almost filled with ice cubes. Fill with Coca-cola, garnish with lime peel, and serve.", @@ -90285,7 +90285,7 @@ "Coca-Cola\u00ae" ], "title": "Linux Cocktail recipe", - "url": "http://www.drinksmixer.com/drink9567.html" + "url": "https://www.drinksmixer.com/drink9567.html" }, { "directions": "Pour all ingredients into a cocktail shaker half-filled with cracked ice. Shake well, and strain into a small frosted hurricane glass filled with cracked ice. Garnish with a slice of orange and a maraschino cherry, and serve.", @@ -90296,7 +90296,7 @@ "grenadine syrup" ], "title": "Lipstick Cocktail recipe", - "url": "http://www.drinksmixer.com/drink9568.html" + "url": "https://www.drinksmixer.com/drink9568.html" }, { "directions": "Pour the amaretto almond liqueur, Drambuie and Tia Maria into a coffee mug. Fill with coffee, and top with whipped cream. Serve.", @@ -90308,7 +90308,7 @@ "whipped cream" ], "title": "Lift recipe", - "url": "http://www.drinksmixer.com/drink9569.html" + "url": "https://www.drinksmixer.com/drink9569.html" }, { "directions": "Pour the Bailey's irish cream, Kahlua coffee liqueur and butterscotch schnapps into a cocktail shaker half-filled with ice cubes. Shake quickly, and strain into a highball glass. Top with milk, stir well and serve.", @@ -90319,7 +90319,7 @@ "milk" ], "title": "Liquid Caramel recipe", - "url": "http://www.drinksmixer.com/drink9570.html" + "url": "https://www.drinksmixer.com/drink9570.html" }, { "directions": "Stir ingredients together in a highball glass almost filled with ice cubes, and serve.", @@ -90328,7 +90328,7 @@ "Surge\u00ae citrus soda" ], "title": "Liquid Kryptonite recipe", - "url": "http://www.drinksmixer.com/drink9571.html" + "url": "https://www.drinksmixer.com/drink9571.html" }, { "directions": "Add all ingredients to a cocktail shaker half-filled with cracked ice. Shake well, and strain into a chilled cocktail glass. Garnish with a maraschino cherry and a lime flag, and serve.", @@ -90341,7 +90341,7 @@ "orange juice" ], "title": "Liquid Lite recipe", - "url": "http://www.drinksmixer.com/drink9572.html" + "url": "https://www.drinksmixer.com/drink9572.html" }, { "directions": "Add the Stoli raspberry vodka, 7-Up and Coca-cola to a cocktail shaker half-filled with ice cubes. Shake well, and strain into a cocktail glass. Garnish with a lime wedge, and serve.", @@ -90351,7 +90351,7 @@ "Coca-Cola\u00ae" ], "title": "Liquid Nerds recipe", - "url": "http://www.drinksmixer.com/drink9573.html" + "url": "https://www.drinksmixer.com/drink9573.html" }, { "directions": "Shake ingredients together with ice in a cocktail shaker. Strain into a shot glass, and serve.", @@ -90361,7 +90361,7 @@ "peach schnapps" ], "title": "Liquid Panty Remover recipe", - "url": "http://www.drinksmixer.com/drink9574.html" + "url": "https://www.drinksmixer.com/drink9574.html" }, { "directions": "Shake ingredients together with ice in a cocktail shaker. Strain into a highball glass filled with ice cubes, fill with 7-up, and serve.", @@ -90372,7 +90372,7 @@ "7-Up\u00ae soda" ], "title": "Little Bastard recipe", - "url": "http://www.drinksmixer.com/drink9575.html" + "url": "https://www.drinksmixer.com/drink9575.html" }, { "directions": "Pour the gin, rum, triple sec and lemon juice into a cocktail shaker half-filled with ice cubes. Shake well, strain into a cocktail glass, and serve.", @@ -90383,7 +90383,7 @@ "lemon juice" ], "title": "Little Devil recipe", - "url": "http://www.drinksmixer.com/drink9576.html" + "url": "https://www.drinksmixer.com/drink9576.html" }, { "directions": "Pour in order; tequila, grenadine then lemonade into a highball glass with 4 ice cubes. Squeeze the lemon juice from roughly half a lemon over the top, and serve.", @@ -90394,7 +90394,7 @@ "lemon juice" ], "title": "Loco Lemonade recipe", - "url": "http://www.drinksmixer.com/drink9577.html" + "url": "https://www.drinksmixer.com/drink9577.html" }, { "directions": "Pour the Malibu rum, DeKuyper Razzmatazz and pineapple juice into a cocktail shaker half-filled with ice. Shake well, pour entire contents of the shaker into a highball glass, and serve.", @@ -90404,7 +90404,7 @@ "pineapple juice" ], "title": "Loco Motion recipe", - "url": "http://www.drinksmixer.com/drink9578.html" + "url": "https://www.drinksmixer.com/drink9578.html" }, { "directions": "Pour the gin, orange bitters, simple syrup and maraschino liqueur into a mixing glass half-filled with cracked ice. Stir well, and strain into a cocktail glass. Garnish with a twist of lemon peel, and serve.", @@ -90415,7 +90415,7 @@ "maraschino liqueur" ], "title": "London Cocktail recipe", - "url": "http://www.drinksmixer.com/drink9579.html" + "url": "https://www.drinksmixer.com/drink9579.html" }, { "directions": "Add the coffee liqueur, irish cream, hazelnut liqueur and vanilla ice cream to a blender with one cup of crushed ice. Blend until smooth. Pour into a parfait glass, and top with whipped cream. Sprinkle with chocolate shavings, and serve.", @@ -90427,7 +90427,7 @@ "whipped cream" ], "title": "Lonely Night recipe", - "url": "http://www.drinksmixer.com/drink9580.html" + "url": "https://www.drinksmixer.com/drink9580.html" }, { "directions": "Pour all ingredients into a tall 16-oz glass filled with ice cubes. Top with Coca-cola, completely or to taste. Stir well, and serve.", @@ -90442,7 +90442,7 @@ "Coca-Cola\u00ae" ], "title": "Long Walk off a Short Pier recipe", - "url": "http://www.drinksmixer.com/drink9581.html" + "url": "https://www.drinksmixer.com/drink9581.html" }, { "directions": "Pour the Bacardi 151 rum, lime juice and grenadine into a cocktail shaker half-filled with cracked ice. Shake well, strain into an old-fashioned glass 1/2 filled with ice cubes, and serve.", @@ -90452,7 +90452,7 @@ "grenadine syrup" ], "title": "Look Out Below recipe", - "url": "http://www.drinksmixer.com/drink9582.html" + "url": "https://www.drinksmixer.com/drink9582.html" }, { "directions": "Pour the Kirschwasser, benedictine and lime juice into a cocktail shaker half-filled with ice cubes. Shake well, strain into a cocktail glass, and serve.", @@ -90462,7 +90462,7 @@ "lime juice" ], "title": "Lorraine Cocktail recipe", - "url": "http://www.drinksmixer.com/drink9583.html" + "url": "https://www.drinksmixer.com/drink9583.html" }, { "directions": "Stir ingredients together in a highball glass filled with ice cubes, and serve.", @@ -90471,7 +90471,7 @@ "orange soda" ], "title": "Lithium Motherfucker recipe", - "url": "http://www.drinksmixer.com/drink9584.html" + "url": "https://www.drinksmixer.com/drink9584.html" }, { "directions": "Stir the rum, Dubonnet and Grand Marnier together with ice in a mixing glass. Strain into a cocktail glass, garnish with a sliver of lemon, and serve.", @@ -90481,7 +90481,7 @@ "Grand Marnier\u00ae orange liqueur" ], "title": "Louisiana Lullaby recipe", - "url": "http://www.drinksmixer.com/drink9585.html" + "url": "https://www.drinksmixer.com/drink9585.html" }, { "directions": "Combine the bourbon whiskey, white creme de cacao and cream in a cocktail shaker half-filled with ice cubes. Shake well, strain into a cocktail glass, and serve.", @@ -90491,7 +90491,7 @@ "cream" ], "title": "Louisville Lady recipe", - "url": "http://www.drinksmixer.com/drink9586.html" + "url": "https://www.drinksmixer.com/drink9586.html" }, { "directions": "Pour the bourbon whiskey, orange juice, lime juice and powdered sugar into a cocktail shaker half-filled with ice cubes. Shake well, and strain into an old-fashioned glass half-filled with cracked ice. Garnish with a half-slice of orange, and serve.", @@ -90502,7 +90502,7 @@ "powdered sugar" ], "title": "Louisville Cooler recipe", - "url": "http://www.drinksmixer.com/drink9587.html" + "url": "https://www.drinksmixer.com/drink9587.html" }, { "directions": "Pour the rum and amaretto into a collins glass filled with ice cubes. Stir well. Fill with chilled cola, garnish with a slice of lime, and serve.", @@ -90512,7 +90512,7 @@ "Coca-Cola\u00ae" ], "title": "Lounge Lizard recipe", - "url": "http://www.drinksmixer.com/drink9588.html" + "url": "https://www.drinksmixer.com/drink9588.html" }, { "directions": "Pour the vodka, sour mix, dark rum and grenadine into an old-fashioned glass filled with crushed or shaven ice. Garnish with a maraschino cherry, and serve.", @@ -90523,7 +90523,7 @@ "grenadine syrup" ], "title": "Love Birds recipe", - "url": "http://www.drinksmixer.com/drink9589.html" + "url": "https://www.drinksmixer.com/drink9589.html" }, { "directions": "Pour the cherry liqueur into a cocktail glass. Layer the parfait amour on top by pouring over the back of a teaspoon. Top with cream, and serve.", @@ -90533,7 +90533,7 @@ "cream" ], "title": "Love Bite recipe", - "url": "http://www.drinksmixer.com/drink9590.html" + "url": "https://www.drinksmixer.com/drink9590.html" }, { "directions": "Pour the gin and green curacao into a cocktail shaker half-filled with ice cubes. Shake well, and strain into a cocktail glass, Fill with soda, and serve.", @@ -90543,7 +90543,7 @@ "ginger ale" ], "title": "Love in an Elevator recipe", - "url": "http://www.drinksmixer.com/drink9591.html" + "url": "https://www.drinksmixer.com/drink9591.html" }, { "directions": "Pour the coconut rum and peach schnapps into a highball glass 2/3 filled with ice cubes. Add the pineapple juice, and fill with cranberry juice. Splash rum on top, and serve.", @@ -90555,7 +90555,7 @@ "cranberry juice" ], "title": "Love Potion #69 recipe", - "url": "http://www.drinksmixer.com/drink9592.html" + "url": "https://www.drinksmixer.com/drink9592.html" }, { "directions": "Combine the sloe gin, egg white, lemon juice and raspberry juice in a cocktail shaker half-filled with ice cubes. Shake well, strain into a cocktail glass, and serve.", @@ -90566,7 +90566,7 @@ "raspberry juice" ], "title": "Lover's Cocktail recipe", - "url": "http://www.drinksmixer.com/drink9593.html" + "url": "https://www.drinksmixer.com/drink9593.html" }, { "directions": "Pour the amaretto, cherry brandy, brown creme de cacao and cream into a cocktail shaker with ice. Shake well, and strain into a parfait glass. Top with whipped cream. Sprinkle with chocolate shavings and garnish with a maraschino cherry.", @@ -90578,7 +90578,7 @@ "whipped cream" ], "title": "Lover's Kiss recipe", - "url": "http://www.drinksmixer.com/drink9594.html" + "url": "https://www.drinksmixer.com/drink9594.html" }, { "directions": "Pour all ingredients into a cocktail shaker half-filled with ice cubes. Shake well, strain into a cocktail glass, and serve.", @@ -90588,7 +90588,7 @@ "bitters" ], "title": "Lover's Nocturne recipe", - "url": "http://www.drinksmixer.com/drink9595.html" + "url": "https://www.drinksmixer.com/drink9595.html" }, { "directions": "Pour the vodka, dry vermouth and clam juice into a cocktail shaker half-filled with cracked ice. Shake well, and strain into a chilled cocktail glass. Garnish with an olive stuffed with a smoked clam. Also add a lemon twist, and serve.", @@ -90598,7 +90598,7 @@ "clam juice" ], "title": "Low Tide Martini recipe", - "url": "http://www.drinksmixer.com/drink9596.html" + "url": "https://www.drinksmixer.com/drink9596.html" }, { "directions": "Pour the vodka, triple sec, white rum, amaretto, peach schnapps, sour mix and pineapple juice into a cocktail shaker half-filled with ice cubes. Shake well, and strain into a champagne saucer or medium-sized cocktail glass. Add a splash of grenadine, add a straw, and serve.", @@ -90613,7 +90613,7 @@ "grenadine syrup" ], "title": "Lulu recipe", - "url": "http://www.drinksmixer.com/drink9597.html" + "url": "https://www.drinksmixer.com/drink9597.html" }, { "directions": "Stir ingredients together in a cocktail glass, and serve.", @@ -90623,7 +90623,7 @@ "7-Up\u00ae soda" ], "title": "Lumpy Lime recipe", - "url": "http://www.drinksmixer.com/drink9598.html" + "url": "https://www.drinksmixer.com/drink9598.html" }, { "directions": "Stir ingredients together briefly in a highball glass, and serve.", @@ -90632,7 +90632,7 @@ "chocolate milk" ], "title": "Lumumba recipe", - "url": "http://www.drinksmixer.com/drink9599.html" + "url": "https://www.drinksmixer.com/drink9599.html" }, { "directions": "Stir ingredients together well in a collins glass filled with ice cubes, and serve.", @@ -90641,7 +90641,7 @@ "Zima" ], "title": "Lunar Landing recipe", - "url": "http://www.drinksmixer.com/drink9600.html" + "url": "https://www.drinksmixer.com/drink9600.html" }, { "directions": "Stir ingredients together in a pint glass, and serve.", @@ -90651,7 +90651,7 @@ "orange juice" ], "title": "Lunch Bucket recipe", - "url": "http://www.drinksmixer.com/drink9601.html" + "url": "https://www.drinksmixer.com/drink9601.html" }, { "directions": "Pour the vodka, chocolate liqueur and amaretto into a mixing glass half-filled with cracked ice. Stir well. Strain into a chilled cocktail glass, garnish with a twist of orange, and serve.", @@ -90661,7 +90661,7 @@ "amaretto almond liqueur" ], "title": "Macaroon recipe", - "url": "http://www.drinksmixer.com/drink9602.html" + "url": "https://www.drinksmixer.com/drink9602.html" }, { "directions": "Stir ingredients together in a cocktail glass, and serve.", @@ -90671,7 +90671,7 @@ "Dubonnet\u00ae Rouge vermouth" ], "title": "MacLaren F1 recipe", - "url": "http://www.drinksmixer.com/drink9603.html" + "url": "https://www.drinksmixer.com/drink9603.html" }, { "directions": "Pour the gin into a collins glass filled with ice cubes. Fill with Coca-cola, stir well, and serve.", @@ -90680,7 +90680,7 @@ "Coca-Cola\u00ae" ], "title": "Mad Bomber recipe", - "url": "http://www.drinksmixer.com/drink9604.html" + "url": "https://www.drinksmixer.com/drink9604.html" }, { "directions": "Pour the vodka into a highball glass 2/3 filled with ice cubes. Add the juices, stir briefly, and serve.", @@ -90690,7 +90690,7 @@ "cranberry juice" ], "title": "Maddress recipe", - "url": "http://www.drinksmixer.com/drink9605.html" + "url": "https://www.drinksmixer.com/drink9605.html" }, { "directions": "Stir ingredients together in a chilled cocktail glass, and serve.", @@ -90699,7 +90699,7 @@ "lemonade" ], "title": "Mad Melon Cocktail recipe", - "url": "http://www.drinksmixer.com/drink9606.html" + "url": "https://www.drinksmixer.com/drink9606.html" }, { "directions": "Pour the Absolut Citron vodka and triple sec into a cocktail shaker half-filled with ice cubes. Shake well, and strain into a highball glass filled with ice cubes. Top with mountain dew, stir briefly and serve.", @@ -90709,7 +90709,7 @@ "Mountain Dew\u00ae citrus soda" ], "title": "Magic Mountain Dew recipe", - "url": "http://www.drinksmixer.com/drink9607.html" + "url": "https://www.drinksmixer.com/drink9607.html" }, { "directions": "Pour all ingredients into a pint glass filled with ice cubes. Stir well, and serve.", @@ -90722,7 +90722,7 @@ "milk" ], "title": "Magic Trick recipe", - "url": "http://www.drinksmixer.com/drink9608.html" + "url": "https://www.drinksmixer.com/drink9608.html" }, { "directions": "Pour the gin, cream and lemon juice into a cocktail shaker with ice. Shake well, strain into a highball glass, and serve.", @@ -90733,7 +90733,7 @@ "grenadine syrup" ], "title": "Magnolia Blossom recipe", - "url": "http://www.drinksmixer.com/drink9609.html" + "url": "https://www.drinksmixer.com/drink9609.html" }, { "directions": "Shake the bourbon, Grand Marnier and simple syrup together with crushed ice in a cocktail shaker. Strain into an old-fashioned glass 1/2 filled with ice cubes. Top with soda, and serve.", @@ -90744,7 +90744,7 @@ "club soda" ], "title": "Magnolia Maiden recipe", - "url": "http://www.drinksmixer.com/drink9610.html" + "url": "https://www.drinksmixer.com/drink9610.html" }, { "directions": "Stir ingredients together in a highball glass with/without ice, and serve.", @@ -90754,7 +90754,7 @@ "grenadine syrup" ], "title": "Maiden's Dream recipe", - "url": "http://www.drinksmixer.com/drink9611.html" + "url": "https://www.drinksmixer.com/drink9611.html" }, { "directions": "Pour the vodka, blackberry brandy and cranberry juice into a cocktail shaker half-filled with ice cubes. Shake well, pour into a highball glass, and serve.", @@ -90764,7 +90764,7 @@ "cranberry juice" ], "title": "Maier Special recipe", - "url": "http://www.drinksmixer.com/drink9612.html" + "url": "https://www.drinksmixer.com/drink9612.html" }, { "directions": "Pour all ingredients into a cocktail shaker half-filled with ice cubes. Shake well, strain into a cocktail glass, and serve.", @@ -90774,7 +90774,7 @@ "grapefruit juice" ], "title": "Mainbrace recipe", - "url": "http://www.drinksmixer.com/drink9613.html" + "url": "https://www.drinksmixer.com/drink9613.html" }, { "directions": "Shake the rums, triple sec and egg white together in a cocktail shaker half-filled with ice. Strain into a cocktail glass, and serve.", @@ -90785,7 +90785,7 @@ "egg" ], "title": "MacArthur Cocktail recipe", - "url": "http://www.drinksmixer.com/drink9614.html" + "url": "https://www.drinksmixer.com/drink9614.html" }, { "directions": "Pour the white rum, orgeat syrup, triple sec and sour mix into a cocktail shaker half-filled with ice cubes. Shake well, and strain into a collins glass over several ice cubes. Garnish with a cherry, and serve.", @@ -90796,7 +90796,7 @@ "sweet and sour mix" ], "title": "Mai Tai #2 recipe", - "url": "http://www.drinksmixer.com/drink9615.html" + "url": "https://www.drinksmixer.com/drink9615.html" }, { "directions": "Stir all ingredients together in a highball glass with a few ice cubes, and serve.", @@ -90811,7 +90811,7 @@ "club soda" ], "title": "Mai Tai #3 recipe", - "url": "http://www.drinksmixer.com/drink9616.html" + "url": "https://www.drinksmixer.com/drink9616.html" }, { "directions": "Pour all ingredients into a mixing glass half-filled with cracked ice. Stir well and strain into a wine goblet. Garnish with a slice of lime and a maraschino cherry, and serve.", @@ -90825,7 +90825,7 @@ "lime juice" ], "title": "Mai Tai #4 recipe", - "url": "http://www.drinksmixer.com/drink9617.html" + "url": "https://www.drinksmixer.com/drink9617.html" }, { "directions": "Pour the spiced rum, apricot liqueur, pineapple juice and grenadine into a highball glass filled with ice cubes. Stir well. Add the soda, stir gently, and serve.", @@ -90837,7 +90837,7 @@ "lemon-lime soda" ], "title": "Mai Tai Mai recipe", - "url": "http://www.drinksmixer.com/drink9618.html" + "url": "https://www.drinksmixer.com/drink9618.html" }, { "directions": "Combine all ingredients (sugar to taste) in a hurricane glass filled with ice cubes. Stir well, and serve.", @@ -90852,7 +90852,7 @@ "sugar" ], "title": "Mai Tai #5 recipe", - "url": "http://www.drinksmixer.com/drink9619.html" + "url": "https://www.drinksmixer.com/drink9619.html" }, { "directions": "Pour the rums, orgeat and pineapple juice into a cocktail shaker half-filled with ice cubes. Shake well, and strain into a collins glass with several ice cubes. Garnish with a pineapple wedge, and serve.", @@ -90865,7 +90865,7 @@ "Malibu\u00ae coconut rum" ], "title": "Mai Tai #6 recipe", - "url": "http://www.drinksmixer.com/drink9620.html" + "url": "https://www.drinksmixer.com/drink9620.html" }, { "directions": "Stir ingredients together with 3 or 4 ice cubes in a highball glass. Add 2 or 3 maraschino cherries, and serve.", @@ -90874,7 +90874,7 @@ "cherry cola" ], "title": "Malibu Cherry recipe", - "url": "http://www.drinksmixer.com/drink9621.html" + "url": "https://www.drinksmixer.com/drink9621.html" }, { "directions": "Pour ingredients over ice in a collins glass. Stir well, and serve.", @@ -90883,7 +90883,7 @@ "pineapple juice" ], "title": "Malibu Heaven recipe", - "url": "http://www.drinksmixer.com/drink9622.html" + "url": "https://www.drinksmixer.com/drink9622.html" }, { "directions": "Pour the white rum, cream sherry and fresh lemon juice into a cocktail shaker half-filled with ice cubes. Shake well, strain into a cocktail glass rimmed with anisette, and serve.", @@ -90894,7 +90894,7 @@ "anisette" ], "title": "Malmaison recipe", - "url": "http://www.drinksmixer.com/drink9623.html" + "url": "https://www.drinksmixer.com/drink9623.html" }, { "directions": "Pour the Stoli Vanil vodka, apricot brandy, angostura bitters and lemon juice into a cocktail shaker half-filled with cracked ice. Shake well, strain into a chilled cocktail glass, and serve.", @@ -90905,7 +90905,7 @@ "lemon juice" ], "title": "Mama's Martini recipe", - "url": "http://www.drinksmixer.com/drink9624.html" + "url": "https://www.drinksmixer.com/drink9624.html" }, { "directions": "Pour the dark rum, banana liqueur, juices and triple sec into a highball glass filled with crushed or shaven ice. Garnish with a slice of orange and a maraschino cherry, and serve.", @@ -90917,7 +90917,7 @@ "triple sec" ], "title": "Mambo's Dream recipe", - "url": "http://www.drinksmixer.com/drink9625.html" + "url": "https://www.drinksmixer.com/drink9625.html" }, { "directions": "Pour the gin and lime juice into a collins glass filled with ice cubes. Fill with ginger ale, stir well, and serve.", @@ -90927,7 +90927,7 @@ "lime juice" ], "title": "Mamie's Sister recipe", - "url": "http://www.drinksmixer.com/drink9626.html" + "url": "https://www.drinksmixer.com/drink9626.html" }, { "directions": "Stir ingredients together with ice cubes in an old-fashioned glass. Garnish with a slice of lime, and serve.", @@ -90937,7 +90937,7 @@ "ginger ale" ], "title": "Mamie Taylor recipe", - "url": "http://www.drinksmixer.com/drink9627.html" + "url": "https://www.drinksmixer.com/drink9627.html" }, { "directions": "Stir ingredients over crushed ice in a wine glass. Garnish with a slice of lemon or lime, and serve.", @@ -90946,7 +90946,7 @@ "7-Up\u00ae soda" ], "title": "Magic Spritzer recipe", - "url": "http://www.drinksmixer.com/drink9628.html" + "url": "https://www.drinksmixer.com/drink9628.html" }, { "directions": "Stir ingredients together in a cocktail glass over crushed ice. Garnish with a mint leaf, and serve.", @@ -90957,7 +90957,7 @@ "pineapple juice" ], "title": "Make Believe recipe", - "url": "http://www.drinksmixer.com/drink9629.html" + "url": "https://www.drinksmixer.com/drink9629.html" }, { "directions": "Stir ingredients together in a highball glass filled with ice cubes, and serve.", @@ -90966,7 +90966,7 @@ "orange juice" ], "title": "Mandarin Sunrise recipe", - "url": "http://www.drinksmixer.com/drink9630.html" + "url": "https://www.drinksmixer.com/drink9630.html" }, { "directions": "Combine the rum, orange curacao, mango pieces and sour mix in a blender with one cup of crushed ice. Pour into a tall glass, garnish with a mango stick and serve.", @@ -90977,7 +90977,7 @@ "sweet and sour mix" ], "title": "Mango Daiquiri recipe", - "url": "http://www.drinksmixer.com/drink9631.html" + "url": "https://www.drinksmixer.com/drink9631.html" }, { "directions": "Shake the tequila, mango liqueur and lime juice with ice cubes in a cocktail shaker. Strain into a salt-rimmed cocktail glass, and serve.", @@ -90987,7 +90987,7 @@ "lime juice" ], "title": "Mango Margarita recipe", - "url": "http://www.drinksmixer.com/drink9632.html" + "url": "https://www.drinksmixer.com/drink9632.html" }, { "directions": "Pour the mango liqueur into a collins glass filled with ice cubes. Fill with orange juice, and top with grenadine. Serve unstirred.", @@ -90997,7 +90997,7 @@ "grenadine syrup" ], "title": "Mango Sunrise recipe", - "url": "http://www.drinksmixer.com/drink9633.html" + "url": "https://www.drinksmixer.com/drink9633.html" }, { "directions": "Pour the vodka, Cointreau and Snapple mango madness into a cocktail shaker half-filled with cracked or cubed ice. Shake well, strain into a cocktail glass, and serve.", @@ -91007,7 +91007,7 @@ "Snapple\u00ae Mango Madness soda" ], "title": "Mangotini recipe", - "url": "http://www.drinksmixer.com/drink9634.html" + "url": "https://www.drinksmixer.com/drink9634.html" }, { "directions": "Stir ingredients together with cracked ice in a mixing glass. Strain into a highball glass, and serve.", @@ -91018,7 +91018,7 @@ "sloe gin" ], "title": "Manhandler recipe", - "url": "http://www.drinksmixer.com/drink9635.html" + "url": "https://www.drinksmixer.com/drink9635.html" }, { "directions": "Pour the rum, amaretto, peach schnapps, juices and grenadine into a blender with two cups of crushed ice. Blend until smooth. Pour into a cocktail glass, and top with whipped cream. Garnish with a maraschino cherry, and serve.", @@ -91032,7 +91032,7 @@ "whipped cream" ], "title": "Maraschino Cherry recipe", - "url": "http://www.drinksmixer.com/drink9636.html" + "url": "https://www.drinksmixer.com/drink9636.html" }, { "directions": "Stir ingredients together in a highball glass with/without ice. Add more grenadine if desired, stir again and serve.", @@ -91042,7 +91042,7 @@ "grenadine syrup" ], "title": "Mardi Gras Flasher recipe", - "url": "http://www.drinksmixer.com/drink9637.html" + "url": "https://www.drinksmixer.com/drink9637.html" }, { "directions": "Pour the DeKuyper Peachtree peach schnapps, passoa and Absolut vodka into a tall glass filled with ice cubes. Add the lime juice, and fill with Sprite. Add cranberry juice for color. Garnish with a slice of lime, and serve.", @@ -91055,7 +91055,7 @@ "Sprite\u00ae soda" ], "title": "Maria-Rocker recipe", - "url": "http://www.drinksmixer.com/drink9638.html" + "url": "https://www.drinksmixer.com/drink9638.html" }, { "directions": "Pour the vodka, fresh lemon juice and sweetened maraschino juice into a cocktail shaker half-filled with ice cubes. Shake and strain into a tall glass (12-16 oz) half-filled with crushed ice. Fill with club soda. Garnish with a slice of lemon and a maraschino cherry. Add a teaspoon of sugar optional. Serve.", @@ -91066,7 +91066,7 @@ "club soda" ], "title": "Maraschino Collins recipe", - "url": "http://www.drinksmixer.com/drink9639.html" + "url": "https://www.drinksmixer.com/drink9639.html" }, { "directions": "Pour the mango liqueur and mango juice into a champagne flute. Fill with champagne, garnish with a slice of star-fruit, and serve.", @@ -91076,7 +91076,7 @@ "Champagne" ], "title": "Mango Mosa recipe", - "url": "http://www.drinksmixer.com/drink9640.html" + "url": "https://www.drinksmixer.com/drink9640.html" }, { "directions": "Pour the Manila dark rum, juices, passion-fruit nectar and fresh lime juice into a cocktail shaker half-filled with ice cubes. Shake well, strain into a pilsner glass, and serve.", @@ -91088,7 +91088,7 @@ "lime juice" ], "title": "Manila Flame recipe", - "url": "http://www.drinksmixer.com/drink9641.html" + "url": "https://www.drinksmixer.com/drink9641.html" }, { "directions": "Pour the rum, cherry heering, apricot brandy and sake into an old-fashioned glass 3/4 filled with cracked ice. Stir well, and serve.", @@ -91099,7 +91099,7 @@ "sake rice wine" ], "title": "Marionette recipe", - "url": "http://www.drinksmixer.com/drink9642.html" + "url": "https://www.drinksmixer.com/drink9642.html" }, { "directions": "Pour the rum, brandy, lemon juice, orange juice and grenadine into a cocktail shaker half-filled with ice cubes. Shake well, strain into a cocktail glass, and serve.", @@ -91111,7 +91111,7 @@ "grenadine syrup" ], "title": "Mariposa recipe", - "url": "http://www.drinksmixer.com/drink9643.html" + "url": "https://www.drinksmixer.com/drink9643.html" }, { "directions": "Pour the gin and dry vermouth into a cocktail shaker half-filled with cracked ice. Shake well, and strain into a chilled cocktail glass. Garnish with an anchovy-stuffed olive, and serve.", @@ -91120,7 +91120,7 @@ "dry vermouth" ], "title": "Maritime Martini recipe", - "url": "http://www.drinksmixer.com/drink9644.html" + "url": "https://www.drinksmixer.com/drink9644.html" }, { "directions": "Pour the curacao into a highball glass filled with ice cubes. Fill with tonic water, garnish with a slice of orange, and serve.", @@ -91129,7 +91129,7 @@ "tonic water" ], "title": "Marmalade Highball recipe", - "url": "http://www.drinksmixer.com/drink9645.html" + "url": "https://www.drinksmixer.com/drink9645.html" }, { "directions": "Pour the gin, dry vermouth, dry white wine and Campari bitters into a cocktail shaker half-filled with cracked ice. Shake well, and strain into a chilled cocktail glass. Garnish with a lime twist, and serve.", @@ -91140,7 +91140,7 @@ "Campari\u00ae bitters" ], "title": "Martini Milano recipe", - "url": "http://www.drinksmixer.com/drink9646.html" + "url": "https://www.drinksmixer.com/drink9646.html" }, { "directions": "Pour all ingredients into a cocktail shaker half-filled with cracked ice. Shake well, strain into a chilled cocktail glass, and serve.", @@ -91150,7 +91150,7 @@ "orange bitters" ], "title": "Martini Navratilova recipe", - "url": "http://www.drinksmixer.com/drink9647.html" + "url": "https://www.drinksmixer.com/drink9647.html" }, { "directions": "Shake all three ingredients with cracked ice and strain into a chilled cocktail glass. Garnish with an edible flower, and serve.", @@ -91160,7 +91160,7 @@ "sweet vermouth" ], "title": "Martunia recipe", - "url": "http://www.drinksmixer.com/drink9648.html" + "url": "https://www.drinksmixer.com/drink9648.html" }, { "directions": "Shake the vodka, rum, everclear and sour mix in a cocktail shaker half-filled with ice cubes. Strain into a cocktail glass, add lime juice on top and serve.", @@ -91172,7 +91172,7 @@ "lime juice" ], "title": "Mary Elizabeth Wagoner recipe", - "url": "http://www.drinksmixer.com/drink9649.html" + "url": "https://www.drinksmixer.com/drink9649.html" }, { "directions": "Prepare vodka jelly as on the packet of jello, however substitute vodka in place of the water (required additional vodka to above). Mix the above liquids; vodka, blue curacao and orange juice in a highball glass. Drop a lump of the prepared jelly into the glass, and down the entire drink.", @@ -91183,7 +91183,7 @@ "strawberry jell-o" ], "title": "Mashed Kermit recipe", - "url": "http://www.drinksmixer.com/drink9650.html" + "url": "https://www.drinksmixer.com/drink9650.html" }, { "directions": "Stir all ingredients together in a highball glass, and serve.", @@ -91194,7 +91194,7 @@ "orange juice" ], "title": "Masterblaster recipe", - "url": "http://www.drinksmixer.com/drink9651.html" + "url": "https://www.drinksmixer.com/drink9651.html" }, { "directions": "Combine all ingredients in a blender with half a cup of crushed ice. Blend until slushy, adding more ice if required. Pour into a cocktail glass, and serve.", @@ -91206,7 +91206,7 @@ "salt" ], "title": "Matador Cocktail recipe", - "url": "http://www.drinksmixer.com/drink9652.html" + "url": "https://www.drinksmixer.com/drink9652.html" }, { "directions": "Shake the vodka, lemon juice and sugar with ice cubes in a cocktail shaker. Strain into a highball glass, and serve.", @@ -91216,7 +91216,7 @@ "sugar" ], "title": "Matti Nyknen recipe", - "url": "http://www.drinksmixer.com/drink9653.html" + "url": "https://www.drinksmixer.com/drink9653.html" }, { "directions": "Combine all ingredients in a blender with one cup of crushed ice. Blend until smooth and pour into a parfait glass. Garnish with a pineapple spear, a cherry and an orchid, and serve.", @@ -91229,7 +91229,7 @@ "guava juice" ], "title": "Maui Breeze recipe", - "url": "http://www.drinksmixer.com/drink9654.html" + "url": "https://www.drinksmixer.com/drink9654.html" }, { "directions": "Pour the Maui schnapps and Malibu rum into a collins glass almost filled with ice cubes. Add the pineapple juice, stir well, and serve.", @@ -91239,7 +91239,7 @@ "pineapple juice" ], "title": "Maui Eruption recipe", - "url": "http://www.drinksmixer.com/drink9655.html" + "url": "https://www.drinksmixer.com/drink9655.html" }, { "directions": "Combine all ingredients in a cocktail shaker half-filled with ice cubes. Shake well, strain into a cocktail glass, and serve.", @@ -91251,7 +91251,7 @@ "orange juice" ], "title": "Maurice Cocktail recipe", - "url": "http://www.drinksmixer.com/drink9656.html" + "url": "https://www.drinksmixer.com/drink9656.html" }, { "directions": "Shake all ingredients with ice cubes, strain into a cocktail glass, and serve.", @@ -91263,7 +91263,7 @@ "grenadine syrup" ], "title": "Ma Wee Hen recipe", - "url": "http://www.drinksmixer.com/drink9657.html" + "url": "https://www.drinksmixer.com/drink9657.html" }, { "directions": "Stir all ingredients together over cracked ice in an old-fashioned glass, and serve.", @@ -91274,7 +91274,7 @@ "grenadine syrup" ], "title": "Maxi-Pad recipe", - "url": "http://www.drinksmixer.com/drink9658.html" + "url": "https://www.drinksmixer.com/drink9658.html" }, { "directions": "Pour the anejo rum, brandy, Applejack brandy and anisette into a cocktail shaker half-filled with ice cubes. Shake well, strain into a cocktail glass, and serve.", @@ -91285,7 +91285,7 @@ "anisette" ], "title": "Max the Silent recipe", - "url": "http://www.drinksmixer.com/drink9659.html" + "url": "https://www.drinksmixer.com/drink9659.html" }, { "directions": "Pour the tequila into a cocktail glass. Add the pineapple juice, top with soda and float the grenadine on top. Serve unstirred, with a straw.", @@ -91297,7 +91297,7 @@ "grenadine syrup" ], "title": "Mayan Whore recipe", - "url": "http://www.drinksmixer.com/drink9660.html" + "url": "https://www.drinksmixer.com/drink9660.html" }, { "directions": "Combine the tequila, triple sec, sour mix and Rose's lime juice with half a cup of crushed ice in a blender. Blend well, and pour into a cocktail glass. Garnish with a lime wedge and salt, and serve.", @@ -91308,7 +91308,7 @@ "Rose's\u00ae lime juice" ], "title": "McRita Cocktail recipe", - "url": "http://www.drinksmixer.com/drink9661.html" + "url": "https://www.drinksmixer.com/drink9661.html" }, { "directions": "Stir together in an old-fashioned glass, and serve.", @@ -91317,7 +91317,7 @@ "Galliano\u00ae herbal liqueur" ], "title": "Mellow Yellow recipe", - "url": "http://www.drinksmixer.com/drink9662.html" + "url": "https://www.drinksmixer.com/drink9662.html" }, { "directions": "Pour the melon liqueur, triple sec and cream in order into an old-fashioned glass, and serve.", @@ -91327,7 +91327,7 @@ "cream" ], "title": "Melon Fever recipe", - "url": "http://www.drinksmixer.com/drink9663.html" + "url": "https://www.drinksmixer.com/drink9663.html" }, { "directions": "Combine the vodka, pisang ambon, passion-fruit liqueur, vanilla ice cream and pineapple juice in a cocktail shaker. Shake well. Pour into a highball glass. Garnish with a pineapple wedge, slice of lemon and mint sprig, and serve.", @@ -91339,7 +91339,7 @@ "pineapple juice" ], "title": "Melon Island recipe", - "url": "http://www.drinksmixer.com/drink9664.html" + "url": "https://www.drinksmixer.com/drink9664.html" }, { "directions": "Stir the melon liqueur, triple sec and vodka together in a highball glass filled with ice cubes. Fill with club soda, garnish with a slice of orange, and serve.", @@ -91350,7 +91350,7 @@ "club soda" ], "title": "Melon Patch recipe", - "url": "http://www.drinksmixer.com/drink9665.html" + "url": "https://www.drinksmixer.com/drink9665.html" }, { "directions": "Pour the spiced rum, melon liqueur and pineapple juice into a highball glass filled with ice cubes. Stir well. Top with soda, stir again gently, and serve.", @@ -91361,7 +91361,7 @@ "club soda" ], "title": "Melon Spritz recipe", - "url": "http://www.drinksmixer.com/drink9666.html" + "url": "https://www.drinksmixer.com/drink9666.html" }, { "directions": "Pour the vodka, creme de cassis and vodka into a cocktail shaker half-filled with ice cubes. Add grapefruit juice, and shake well. Strain into a highball glass, and serve.", @@ -91372,7 +91372,7 @@ "grapefruit juice" ], "title": "Mel's Summersault recipe", - "url": "http://www.drinksmixer.com/drink9667.html" + "url": "https://www.drinksmixer.com/drink9667.html" }, { "directions": "Shake all three ingredients with ice cubes in a cocktail shaker. Strain into a highball glass, and serve.", @@ -91382,7 +91382,7 @@ "grapefruit juice" ], "title": "Mel's Swing recipe", - "url": "http://www.drinksmixer.com/drink9668.html" + "url": "https://www.drinksmixer.com/drink9668.html" }, { "directions": "Pour the Absolut Mandrin vodka, triple sec, Rose's lime juice and cranberry juice into a cocktail shaker half-filled with ice cubes. Shake well, strain into a cocktail glass, and serve.", @@ -91393,7 +91393,7 @@ "cranberry juice" ], "title": "Metropolis recipe", - "url": "http://www.drinksmixer.com/drink9669.html" + "url": "https://www.drinksmixer.com/drink9669.html" }, { "directions": "Pour the tequila into a highball glass filled with ice cubes. Fill with Mountain Dew, stir gently and serve.", @@ -91402,7 +91402,7 @@ "Mountain Dew\u00ae citrus soda" ], "title": "Mexican Dew recipe", - "url": "http://www.drinksmixer.com/drink9670.html" + "url": "https://www.drinksmixer.com/drink9670.html" }, { "directions": "Combine the Kahlua coffee liqueur, milk and ice cream in a blender. Blend until milk-like consistency. Pour into a hurricane glass, add straws, and serve.", @@ -91412,7 +91412,7 @@ "vanilla ice cream" ], "title": "Mexican Dream recipe", - "url": "http://www.drinksmixer.com/drink9671.html" + "url": "https://www.drinksmixer.com/drink9671.html" }, { "directions": "Shake the green creme de menthe, Kahlua coffee liqueur and light cream with ice cubes in a cocktail shaker. Strain into a highball glass, and serve.", @@ -91422,7 +91422,7 @@ "light cream" ], "title": "Mexican Grasshopper recipe", - "url": "http://www.drinksmixer.com/drink9672.html" + "url": "https://www.drinksmixer.com/drink9672.html" }, { "directions": "Pour the gin, tequila and amaretto into an old-fashioned glass filled with ice cubes. Add cranapple juice, to taste, and serve.", @@ -91433,7 +91433,7 @@ "cranberry-apple juice" ], "title": "Mexican Midget recipe", - "url": "http://www.drinksmixer.com/drink9673.html" + "url": "https://www.drinksmixer.com/drink9673.html" }, { "directions": "Stir ingredients together in a collins glass filled with ice cubes, and serve.", @@ -91443,7 +91443,7 @@ "Coca-Cola\u00ae" ], "title": "Mexican Riptide recipe", - "url": "http://www.drinksmixer.com/drink9674.html" + "url": "https://www.drinksmixer.com/drink9674.html" }, { "directions": "Pour the tequila and orange juice into a cocktail shaker half-filled with ice cubes. Shake well, strain into a highball glass filled with ice cubes, and serve.", @@ -91452,7 +91452,7 @@ "orange juice" ], "title": "Mexican Screw recipe", - "url": "http://www.drinksmixer.com/drink9675.html" + "url": "https://www.drinksmixer.com/drink9675.html" }, { "directions": "Pour the white rum, creme de menthe and lemon juice into a cocktail shaker half-filled with cracked ice. Shake well, strain into a cocktail glass, and serve.", @@ -91462,7 +91462,7 @@ "lemon juice" ], "title": "Miami Cocktail recipe", - "url": "http://www.drinksmixer.com/drink9676.html" + "url": "https://www.drinksmixer.com/drink9676.html" }, { "directions": "Pour the white rum, melon liqueur and cream into a cocktail shaker half-filled with ice cubes. Shake well, strain into a cocktail glass, and serve.", @@ -91472,7 +91472,7 @@ "cream" ], "title": "Miami Meloni recipe", - "url": "http://www.drinksmixer.com/drink9677.html" + "url": "https://www.drinksmixer.com/drink9677.html" }, { "directions": "Pour the apricot brandy, triple sec and lemon juice into a cocktail shaker half-filled with ice cubes. Shake well, strain into a cocktail glass, and serve.", @@ -91482,7 +91482,7 @@ "lemon juice" ], "title": "Midnight Cocktail recipe", - "url": "http://www.drinksmixer.com/drink9678.html" + "url": "https://www.drinksmixer.com/drink9678.html" }, { "directions": "Pour the dark rum, Cointreau, lime juice and sour mix into a cocktail shaker half-filled with ice cubes. Shake well, strain into an old-fashioned glass 1/2 filled with ice cubes, and serve.", @@ -91493,7 +91493,7 @@ "sweet and sour mix" ], "title": "Midnight Express recipe", - "url": "http://www.drinksmixer.com/drink9679.html" + "url": "https://www.drinksmixer.com/drink9679.html" }, { "directions": "Pour the blue curacao, parfait amour and lastly the lemonade into a highball glass filled with ice cubes. Drop in the grenadine at the side of the glass so that it sinks to the bottom, and serve.", @@ -91504,7 +91504,7 @@ "grenadine syrup" ], "title": "Midnight Liaison recipe", - "url": "http://www.drinksmixer.com/drink9680.html" + "url": "https://www.drinksmixer.com/drink9680.html" }, { "directions": "Stir the gin and vermouth together in a mixing glass half-filled with cracked ice. Strain into a cocktail glass, garnish with a black olive, and serve.", @@ -91513,7 +91513,7 @@ "dry vermouth" ], "title": "Midnight Martini recipe", - "url": "http://www.drinksmixer.com/drink9681.html" + "url": "https://www.drinksmixer.com/drink9681.html" }, { "directions": "Pour the tequila and Corono lager into an old-fashioned glass 3/4 filled with ice cubes. Stir gently, garnish with a slice of lime, and serve.", @@ -91522,7 +91522,7 @@ "Corona\u00ae Extra lager" ], "title": "Mexican Iced Tea recipe", - "url": "http://www.drinksmixer.com/drink9682.html" + "url": "https://www.drinksmixer.com/drink9682.html" }, { "directions": "Pour the vodka, Cointreau, apricot brandy, grenadine and lemon juice into a cocktail shaker half-filled with ice cubes. Shake well, and strain into a champagne saucer or small wine glass. Garnish with a maraschino cherry, and serve.", @@ -91534,7 +91534,7 @@ "lemon juice" ], "title": "Midnight Sun recipe", - "url": "http://www.drinksmixer.com/drink9683.html" + "url": "https://www.drinksmixer.com/drink9683.html" }, { "directions": "Pour the Midori melon liqueur into a champagne saucer. Top with champagne, and serve.", @@ -91543,7 +91543,7 @@ "Champagne" ], "title": "Midori Cocktail recipe", - "url": "http://www.drinksmixer.com/drink9684.html" + "url": "https://www.drinksmixer.com/drink9684.html" }, { "directions": "Pour the vodka and Midori melon liqueur into a cocktail shaker half-filled with ice cubes. Shake well, and strain into a highball glass filled with ice cubes. Top with chilled Sprite, stir gently and serve.", @@ -91553,7 +91553,7 @@ "Sprite\u00ae soda" ], "title": "Midori Dream recipe", - "url": "http://www.drinksmixer.com/drink9685.html" + "url": "https://www.drinksmixer.com/drink9685.html" }, { "directions": "Pour the Midori melon liqueur, vodka, Bacardi white rum, Cointeau, blue curacao and pineapple juice (to taste) into a highball glass filled with ice cubes. Stir well. Top with lemonade, stir again gently, and serve.", @@ -91567,7 +91567,7 @@ "lemonade" ], "title": "Midori Illusion recipe", - "url": "http://www.drinksmixer.com/drink9686.html" + "url": "https://www.drinksmixer.com/drink9686.html" }, { "directions": "Pour all ingredients into a cocktail shaker half-filled with ice cubes. Shake well, strain into a highball glass almost filled with ice cubes, and serve.", @@ -91579,7 +91579,7 @@ "sweet and sour mix" ], "title": "Midori Mai Tai recipe", - "url": "http://www.drinksmixer.com/drink9687.html" + "url": "https://www.drinksmixer.com/drink9687.html" }, { "directions": "Pour both ingredients into a collins glass 1/2 filled with ice cubes. Stir gently, and serve.", @@ -91588,7 +91588,7 @@ "Red Bull\u00ae energy drink" ], "title": "Midweek Tweak recipe", - "url": "http://www.drinksmixer.com/drink9688.html" + "url": "https://www.drinksmixer.com/drink9688.html" }, { "directions": "Pour the gin into a collins glass 3/4 filled with ice cubes. Combine the grenadine, sugar and sour mix in a cocktail shaker half-filled with ice cubes. Shake well. Strain into the collins glass. Add club soda, stir gently, and serve.", @@ -91600,7 +91600,7 @@ "sugar" ], "title": "Mike Davis recipe", - "url": "http://www.drinksmixer.com/drink9689.html" + "url": "https://www.drinksmixer.com/drink9689.html" }, { "directions": "Pour the Stoli coffee vodka (Kafya) and Stoli vanilla vodka (Vanil) into a mixing glass half-filled with cracked ice. Stir well, strain into a cocktail glass, and serve.", @@ -91609,7 +91609,7 @@ "Stoli\u00ae Vanil vodka" ], "title": "Mikhail's Martini recipe", - "url": "http://www.drinksmixer.com/drink9690.html" + "url": "https://www.drinksmixer.com/drink9690.html" }, { "directions": "Pour the gin, galliano and lemon juice into a cocktail shaker half-filled with cracked ice. Shake well, strain into a cocktail glass, and serve.", @@ -91619,7 +91619,7 @@ "lemon juice" ], "title": "Milano Cocktail recipe", - "url": "http://www.drinksmixer.com/drink9691.html" + "url": "https://www.drinksmixer.com/drink9691.html" }, { "directions": "Combine the Bailey's irish cream, milk, egg yolk, lemon juice and sugar syrup in a cocktail shaker half-filled with ice cubes. Shake well, strain into a cocktail glass, and serve.", @@ -91631,7 +91631,7 @@ "sugar syrup" ], "title": "Milkshake Cocktail recipe", - "url": "http://www.drinksmixer.com/drink9692.html" + "url": "https://www.drinksmixer.com/drink9692.html" }, { "directions": "Pour the Beefeater gin, cherry brandy, orange juice and ginger ale into a cocktail shaker half-filled with ice cubes. Shake well, strain into a chilled cocktail glass, and serve.", @@ -91642,7 +91642,7 @@ "ginger ale" ], "title": "Millennium Cocktail recipe", - "url": "http://www.drinksmixer.com/drink9693.html" + "url": "https://www.drinksmixer.com/drink9693.html" }, { "directions": "Layer the cherry brandy, peach schnapps and apple schnapps in a large hurricane glass. Add sour mix on top, fill the remainder with Sprite, and serve.", @@ -91654,7 +91654,7 @@ "Sprite\u00ae soda" ], "title": "Minnesota Slammer recipe", - "url": "http://www.drinksmixer.com/drink9694.html" + "url": "https://www.drinksmixer.com/drink9694.html" }, { "directions": "Stir ingredients together in an old-fashioned glass, and serve.", @@ -91663,7 +91663,7 @@ "Kahlua\u00ae coffee liqueur" ], "title": "Mint Chip recipe", - "url": "http://www.drinksmixer.com/drink9695.html" + "url": "https://www.drinksmixer.com/drink9695.html" }, { "directions": "Pour both ingredients into a highball glass filled with ice cubes. Garnish with a twist of lemon peel, and serve.", @@ -91672,7 +91672,7 @@ "ginger ale" ], "title": "Mint Highball recipe", - "url": "http://www.drinksmixer.com/drink9696.html" + "url": "https://www.drinksmixer.com/drink9696.html" }, { "directions": "Pour the vodka, triple sec, Rose's lime juice and grenadine into a cocktail shaker half-filled with ice cubes. Shake well, strain into an old-fashioned glass almost filled with ice cubes, and serve.", @@ -91683,7 +91683,7 @@ "grenadine syrup" ], "title": "Mission Accomplished recipe", - "url": "http://www.drinksmixer.com/drink9697.html" + "url": "https://www.drinksmixer.com/drink9697.html" }, { "directions": "Combine the Southern Comfort, coffee liqueur and ice cream in a blender. Blend until smooth, and pour into a cocktail glass. Garnish with chocolate shavings, and serve.", @@ -91693,7 +91693,7 @@ "vanilla ice cream" ], "title": "Mississippi Mud recipe", - "url": "http://www.drinksmixer.com/drink9698.html" + "url": "https://www.drinksmixer.com/drink9698.html" }, { "directions": "Pour the Absolut vodka, Campari bitters, Angostura bitters, orange juice, superfine sugar and lemon juice into a highball glass rimmed with sugar and lemon. Stir vigorously, and serve.", @@ -91706,7 +91706,7 @@ "lemon juice" ], "title": "Miss Pastore recipe", - "url": "http://www.drinksmixer.com/drink9699.html" + "url": "https://www.drinksmixer.com/drink9699.html" }, { "directions": "Pour the vodka, amaretto and Sprite into an old-fashioned glass filled with ice, and stir. Add a straw, and serve.", @@ -91716,7 +91716,7 @@ "Sprite\u00ae soda" ], "title": "Mind Bender recipe", - "url": "http://www.drinksmixer.com/drink9700.html" + "url": "https://www.drinksmixer.com/drink9700.html" }, { "directions": "Pour the peppermint schnapps, godiva liqueur and Bailey's irish cream into a highball glass. Fill with ice cold milk, and serve.", @@ -91727,7 +91727,7 @@ "milk" ], "title": "Mint Chocolate Dream recipe", - "url": "http://www.drinksmixer.com/drink9701.html" + "url": "https://www.drinksmixer.com/drink9701.html" }, { "directions": "Stir ingredients together in a highball glass filled with ice cubes. Garnish with a maraschino cherry, and serve.", @@ -91736,7 +91736,7 @@ "Coca-Cola\u00ae" ], "title": "Mist and Cola recipe", - "url": "http://www.drinksmixer.com/drink9702.html" + "url": "https://www.drinksmixer.com/drink9702.html" }, { "directions": "Combine all ingredients in a blender with half a cup of crushed ice. Blend until smooth. Strain into a cocktail glass. Garnish with a maraschino cherry, and serve.", @@ -91747,7 +91747,7 @@ "grenadine syrup" ], "title": "Mist Cream recipe", - "url": "http://www.drinksmixer.com/drink9703.html" + "url": "https://www.drinksmixer.com/drink9703.html" }, { "directions": "Stir ingredients together in a glass mug. Garnish with a lemon wedge, and serve.", @@ -91757,7 +91757,7 @@ "honey" ], "title": "Mistea recipe", - "url": "http://www.drinksmixer.com/drink9704.html" + "url": "https://www.drinksmixer.com/drink9704.html" }, { "directions": "Add the Canadian Mist whisky and lemon juice to a highball glass filled with ice cubes. Add the iced tea, splash lemon-lime soda, and serve.", @@ -91768,7 +91768,7 @@ "lemon-lime soda" ], "title": "Mist Iced Tea recipe", - "url": "http://www.drinksmixer.com/drink9705.html" + "url": "https://www.drinksmixer.com/drink9705.html" }, { "directions": "Pour both ingredients into a mixing glass half-filled with cracked ice. Stir well. Strain into a chilled cocktail glass, garnish with a chocolate curl, and serve.", @@ -91777,7 +91777,7 @@ "white chocolate liqueur" ], "title": "Mocha Blanca Martini recipe", - "url": "http://www.drinksmixer.com/drink9706.html" + "url": "https://www.drinksmixer.com/drink9706.html" }, { "directions": "Layer ingredients in a cocktail glass, and serve.", @@ -91788,7 +91788,7 @@ "milk" ], "title": "Mofo Cocktail recipe", - "url": "http://www.drinksmixer.com/drink9707.html" + "url": "https://www.drinksmixer.com/drink9707.html" }, { "directions": "Pour the Malibu rum, Southern Comfort and blue curacao into an old-fashioned glass 1/2 filled with ice cubes. Add sour mix and pineapple juice according to personal tastes, and serve.", @@ -91800,7 +91800,7 @@ "pineapple juice" ], "title": "Moles Juice recipe", - "url": "http://www.drinksmixer.com/drink9708.html" + "url": "https://www.drinksmixer.com/drink9708.html" }, { "directions": "Stir the rum, vodka, watermelon schnapps and hawaiian schnapps together in a wine goblet filled with ice cubes. Fill with equal parts of 7-up and sour mix, and serve.", @@ -91813,7 +91813,7 @@ "sweet and sour mix" ], "title": "Molester Cocktail recipe", - "url": "http://www.drinksmixer.com/drink9709.html" + "url": "https://www.drinksmixer.com/drink9709.html" }, { "directions": "Pour the gin, sloe gin, dry vermouth and Angostura bitters into a mixing glass half-filled with cracked ice. Stir well, strain into a chilled cocktail glass, and serve.", @@ -91824,7 +91824,7 @@ "Angostura\u00ae bitters" ], "title": "Moll Flanders Cocktail recipe", - "url": "http://www.drinksmixer.com/drink9710.html" + "url": "https://www.drinksmixer.com/drink9710.html" }, { "directions": "Pour the vodka, bourbon whiskey, rum, sweet and sour mix, and Rose's lime juice into a cocktail shaker half-filled with cracked ice. Shake well, strain into a cocktail glass, and serve.", @@ -91836,7 +91836,7 @@ "Rose's\u00ae lime juice" ], "title": "Mona Cocktail recipe", - "url": "http://www.drinksmixer.com/drink9711.html" + "url": "https://www.drinksmixer.com/drink9711.html" }, { "directions": "Pour all ingredients into a cocktail shaker half-filled with ice cubes. Shake well, strain into a highball glass filled with ice cubes, and serve.", @@ -91853,7 +91853,7 @@ "grenadine syrup" ], "title": "Mongolian recipe", - "url": "http://www.drinksmixer.com/drink9712.html" + "url": "https://www.drinksmixer.com/drink9712.html" }, { "directions": "Combine the Bacardi white rum, Tia Maria coffee liqueur and ice cream in a blender. Blend well. Pour into a cocktail glass, and serve.", @@ -91863,7 +91863,7 @@ "ice cream" ], "title": "Mongolian Dingbat recipe", - "url": "http://www.drinksmixer.com/drink9713.html" + "url": "https://www.drinksmixer.com/drink9713.html" }, { "directions": "Combine the Bailey's irish cream, Frangelico hazelnut liqueur and vanilla ice cream in a blender. Blend until smooth. Pour into a cocktail glass, add a straw and serve.", @@ -91873,7 +91873,7 @@ "vanilla ice cream" ], "title": "Monk Cocktail recipe", - "url": "http://www.drinksmixer.com/drink9714.html" + "url": "https://www.drinksmixer.com/drink9714.html" }, { "directions": "Combine the milk and half-banana in a blender for several seconds until only slightly lumpy. Add the vodka and blend well. Pour into a hurricane glass, add a straw and serve.", @@ -91883,7 +91883,7 @@ "banana" ], "title": "Monkey Cum recipe", - "url": "http://www.drinksmixer.com/drink9715.html" + "url": "https://www.drinksmixer.com/drink9715.html" }, { "directions": "Stir ingredients together in a highball glass 3/4 filled with ice cubes, and serve.", @@ -91892,7 +91892,7 @@ "Mountain Dew\u00ae citrus soda" ], "title": "Monkey Doo recipe", - "url": "http://www.drinksmixer.com/drink9716.html" + "url": "https://www.drinksmixer.com/drink9716.html" }, { "directions": "Combine the Jose Cuervo gold tequila, rum, vodka, banana juice and 4 slices of banana (about 1/4) in a blender with half a cup of crushed ice. Blend well. Pour into a highball glass, add the creme de cassis, and serve.", @@ -91905,7 +91905,7 @@ "banana" ], "title": "Monkey Madness recipe", - "url": "http://www.drinksmixer.com/drink9717.html" + "url": "https://www.drinksmixer.com/drink9717.html" }, { "directions": "Pour the Captain Morgan's Parrot Bay coconut rum, Chambord raspberry liqueur and lemon juice into a cocktail shaker half-filled with ice cubes. Shake well, strain into a highball glass almost filled with ice cubes, and serve.", @@ -91915,7 +91915,7 @@ "lemon juice" ], "title": "Monte's Sex Potion recipe", - "url": "http://www.drinksmixer.com/drink9718.html" + "url": "https://www.drinksmixer.com/drink9718.html" }, { "directions": "Pour the Malibu rum, Safari liqueur, Cointreau, blue curacao and grenadine into a cocktail shaker half-filled with ice cubes. Shake well, and strain into a highball glass. Fill with chilled pineapple juice, and serve.", @@ -91928,7 +91928,7 @@ "pineapple juice" ], "title": "Moog Patrol Swisher recipe", - "url": "http://www.drinksmixer.com/drink9719.html" + "url": "https://www.drinksmixer.com/drink9719.html" }, { "directions": "Stir ingredients together in a highball glass almost filled with ice cubes, and serve.", @@ -91938,7 +91938,7 @@ "milk" ], "title": "Mooing Irish Pepsi recipe", - "url": "http://www.drinksmixer.com/drink9720.html" + "url": "https://www.drinksmixer.com/drink9720.html" }, { "directions": "Place the icing sugar in a tumbler with some thin parings of orange and lemon peels. Fill 1/3 of the glass with shaved ice and add bourbon whiskey to taste. Stir and garnish with fruit and 2 straws.", @@ -91947,7 +91947,7 @@ "icing sugar" ], "title": "Monongahela Cobbler recipe", - "url": "http://www.drinksmixer.com/drink9721.html" + "url": "https://www.drinksmixer.com/drink9721.html" }, { "directions": "Stir ingredients together in a mixing glass half-filled with cracked ice. Strain into a cocktail glass, garnish with a cinnamon stick, and serve.", @@ -91957,7 +91957,7 @@ "Stolichnaya\u00ae vodka" ], "title": "Moocow's Brown Cow recipe", - "url": "http://www.drinksmixer.com/drink9722.html" + "url": "https://www.drinksmixer.com/drink9722.html" }, { "directions": "Stir the gin and creme de cassis together in a highball glass filled with ice cubes. Fill with orange juice, stir again and serve.", @@ -91967,7 +91967,7 @@ "orange juice" ], "title": "More Sunshine recipe", - "url": "http://www.drinksmixer.com/drink9723.html" + "url": "https://www.drinksmixer.com/drink9723.html" }, { "directions": "Pour the spiced rum, orange juice and cranberry juice into a highball glass filled with ice cubes. Garnish with a slice of orange and a maraschino cherry, and serve.", @@ -91977,7 +91977,7 @@ "cranberry juice" ], "title": "Morgan Madras recipe", - "url": "http://www.drinksmixer.com/drink9724.html" + "url": "https://www.drinksmixer.com/drink9724.html" }, { "directions": "Stir ingredients together in a highball glass, and serve.", @@ -91987,7 +91987,7 @@ "milk" ], "title": "Morir Sonando recipe", - "url": "http://www.drinksmixer.com/drink9725.html" + "url": "https://www.drinksmixer.com/drink9725.html" }, { "directions": "Pour the brandy, dry vermouth, triple sec, maraschino, anisette and orange bitters into a mixing glass half-filled with cracked ice. Stir well. Strain into a cocktail glass, garnish with a maraschino cherry, and serve.", @@ -92000,7 +92000,7 @@ "orange bitters" ], "title": "Morning Cocktail recipe", - "url": "http://www.drinksmixer.com/drink9726.html" + "url": "https://www.drinksmixer.com/drink9726.html" }, { "directions": "Pour the vodka, peach schnapps, orange juice and sour mix into a cocktail shaker half-filled with ice cubes. Shake well, and strain into a champagne flute. Sink the blackberry liqueur by pouring it at the side of the glass, thus forming a layer at the bottom. Serve.", @@ -92012,7 +92012,7 @@ "blackberry liqueur" ], "title": "Morning Wood recipe", - "url": "http://www.drinksmixer.com/drink9727.html" + "url": "https://www.drinksmixer.com/drink9727.html" }, { "directions": "Stir ingredients together in a mixing glass half-filled with cracked ice. Strain into a cocktail glass, and serve.", @@ -92021,7 +92021,7 @@ "chocolate milk" ], "title": "Moscow Bobsled recipe", - "url": "http://www.drinksmixer.com/drink9728.html" + "url": "https://www.drinksmixer.com/drink9728.html" }, { "directions": "Pour the Stoli pepper vodka (Pertsovka) into a champagne saucer filled with shaved ice. Fill with Dr. Pepper soda, garnish with a lime wedge, and serve.", @@ -92030,7 +92030,7 @@ "Dr. Pepper\u00ae soda" ], "title": "Moscow Chill recipe", - "url": "http://www.drinksmixer.com/drink9729.html" + "url": "https://www.drinksmixer.com/drink9729.html" }, { "directions": "Stir ingredients together in a mixing glass half-filled with cracked ice. Strain into a cocktail glass, and serve.", @@ -92040,7 +92040,7 @@ "bitters" ], "title": "Moulin Rouge Cocktail recipe", - "url": "http://www.drinksmixer.com/drink9730.html" + "url": "https://www.drinksmixer.com/drink9730.html" }, { "directions": "Shake all ingredients with 5 ice cubes for a good 10 seconds. Pour, don't strain, into a highball glass, and serve.", @@ -92053,7 +92053,7 @@ "grenadine syrup" ], "title": "Mounaki recipe", - "url": "http://www.drinksmixer.com/drink9731.html" + "url": "https://www.drinksmixer.com/drink9731.html" }, { "directions": "Combine the Jack Daniel's tennessee whiskey, blueberry and raspberry schnapps, strawberry liqueur, cranberry juice and sour mix in a cocktail shaker half-filled with ice cubes. Shake well, and strain into a cocktail glass. Add a splash of 7-up. Float the cherry brandy on top. Garnish with an orange twist and a maraschino cherry, and serve.", @@ -92068,7 +92068,7 @@ "7-Up\u00ae soda" ], "title": "Mountain Berry Punch recipe", - "url": "http://www.drinksmixer.com/drink9732.html" + "url": "https://www.drinksmixer.com/drink9732.html" }, { "directions": "Pour the anejo rum, sweet vermouth, triple sec and orange bitters into a mixing glass half-filled with cracked ice. Stir well. Strain into a cocktail glass, garnish with a twist of lemon, and serve.", @@ -92079,7 +92079,7 @@ "orange bitters" ], "title": "Mozart Cocktail recipe", - "url": "http://www.drinksmixer.com/drink9733.html" + "url": "https://www.drinksmixer.com/drink9733.html" }, { "directions": "Combine the Kahlua coffee liqueur, chocolate liqueur and milk in a blender with one cup of crushed ice. Blend well until smooth, and pour into a collins glass. Drizzle the Hershey's chocolate syrup over the top, and serve.", @@ -92090,7 +92090,7 @@ "Hershey's\u00ae chocolate syrup" ], "title": "Mr. Insaneo The Cow recipe", - "url": "http://www.drinksmixer.com/drink9734.html" + "url": "https://www.drinksmixer.com/drink9734.html" }, { "directions": "Pour the gin, orange juice, lemon juice and sugar into a cocktail shaker half-filled with ice cubes. Shake well, and strain into a cocktail glass. Garnish with 4 sprigs of mint, and serve.", @@ -92101,7 +92101,7 @@ "sugar" ], "title": "Mr. Manhattan Cocktail recipe", - "url": "http://www.drinksmixer.com/drink9735.html" + "url": "https://www.drinksmixer.com/drink9735.html" }, { "directions": "Stir all ingredients together in a mixing glass half-filled with cracked ice. Strain into a cocktail glass, and serve.", @@ -92112,7 +92112,7 @@ "Cointreau\u00ae orange liqueur" ], "title": "Mr. New Yorker recipe", - "url": "http://www.drinksmixer.com/drink9736.html" + "url": "https://www.drinksmixer.com/drink9736.html" }, { "directions": "Pour the gin, Lillet and triple sec into a red wine glass filled with ice cubes. Fill with club soda. Garnish with a burnt orange peel, and serve unstirred.", @@ -92123,7 +92123,7 @@ "club soda" ], "title": "Mrs. Taylors recipe", - "url": "http://www.drinksmixer.com/drink9737.html" + "url": "https://www.drinksmixer.com/drink9737.html" }, { "directions": "Pour all ingredients into a highball glass with/without ice. Stir and serve.", @@ -92133,7 +92133,7 @@ "Mountain Dew\u00ae citrus soda" ], "title": "Mt. Jack recipe", - "url": "http://www.drinksmixer.com/drink9738.html" + "url": "https://www.drinksmixer.com/drink9738.html" }, { "directions": "Pour the amaretto, orange juice and lemon juice in order into a highball glass almost filled with ice cubes, and serve.", @@ -92143,7 +92143,7 @@ "lemon juice" ], "title": "Muddy Water recipe", - "url": "http://www.drinksmixer.com/drink9739.html" + "url": "https://www.drinksmixer.com/drink9739.html" }, { "directions": "Pour all ingredients into a collins glass 3/4 filled with ice cubes. Stir well, and serve.", @@ -92154,7 +92154,7 @@ "chocolate syrup" ], "title": "Mud Fuck recipe", - "url": "http://www.drinksmixer.com/drink9740.html" + "url": "https://www.drinksmixer.com/drink9740.html" }, { "directions": "Pour the sake, white rum and pineapple juice into a cocktail shaker half-filled with ice cubes. Shake well and strain into a highball glass. Fill with lemon soda, and serve.", @@ -92165,7 +92165,7 @@ "bitter lemon soda" ], "title": "Muff Rider recipe", - "url": "http://www.drinksmixer.com/drink9741.html" + "url": "https://www.drinksmixer.com/drink9741.html" }, { "directions": "Stir ingredients together in a cocktail glass. Garnish with a slice of lemon and a maraschino cherry, and serve.", @@ -92175,7 +92175,7 @@ "triple sec" ], "title": "Mount Fuji recipe", - "url": "http://www.drinksmixer.com/drink9742.html" + "url": "https://www.drinksmixer.com/drink9742.html" }, { "directions": "Stir ingredients together in a highball glass, and serve.", @@ -92184,7 +92184,7 @@ "root beer" ], "title": "Mug Shot recipe", - "url": "http://www.drinksmixer.com/drink9743.html" + "url": "https://www.drinksmixer.com/drink9743.html" }, { "directions": "Pour the vodka and coffee liqueur into an old-fashioned glass almost filled with ice cubes. Fill with light cream, add chocolate syrup to taste, and serve.", @@ -92195,7 +92195,7 @@ "chocolate syrup" ], "title": "Mulatto Russian recipe", - "url": "http://www.drinksmixer.com/drink9744.html" + "url": "https://www.drinksmixer.com/drink9744.html" }, { "directions": "Pour the cherry brandy, Malibu rum, cognac and vermouth into a cocktail shaker half-filled with ice cubes. Shake well, strain into a cocktail glass, and serve.", @@ -92206,7 +92206,7 @@ "dry vermouth" ], "title": "Mumbai Bombshell recipe", - "url": "http://www.drinksmixer.com/drink9745.html" + "url": "https://www.drinksmixer.com/drink9745.html" }, { "directions": "Pour the Stoli cinnamon vodka (Zinamon), Stoli orange vodka (Ohranj), triple sec and orange juice into a mixing glass half-filled with cracked ice. Stir well. Strain into a chilled cocktail glass. Garnish with a twist of orange peel, first squeezing it over the drink then dropping it on top. Sprinkle a bit of ground cinnamon over the top, and serve.", @@ -92217,7 +92217,7 @@ "orange juice" ], "title": "Muscovy Martini recipe", - "url": "http://www.drinksmixer.com/drink9746.html" + "url": "https://www.drinksmixer.com/drink9746.html" }, { "directions": "Combine the dark rum, pieces of cantaloupe melon, lime juice, orange juice and sugar with 1/3 cup of crushed ice in a blender. Blend well until smooth. Pour into an old-fashioned glass almost filled with ice cubes. Garnish with a piece of cantaloupe, and serve.", @@ -92229,7 +92229,7 @@ "sugar" ], "title": "Muskmelon recipe", - "url": "http://www.drinksmixer.com/drink9747.html" + "url": "https://www.drinksmixer.com/drink9747.html" }, { "directions": "Pour all ingredients into a champagne flute filled with shaven ice, and serve.", @@ -92240,7 +92240,7 @@ "grapefruit juice" ], "title": "Mustang Ranch Freebie recipe", - "url": "http://www.drinksmixer.com/drink9748.html" + "url": "https://www.drinksmixer.com/drink9748.html" }, { "directions": "Pour the dark rum and Kahlua coffee liqueur into a cocktail shaker half-filled with cracked ice. Add cream to taste. Shake well, strain into an old-fashioned glass, and serve.", @@ -92250,7 +92250,7 @@ "cream" ], "title": "Mutagen recipe", - "url": "http://www.drinksmixer.com/drink9749.html" + "url": "https://www.drinksmixer.com/drink9749.html" }, { "directions": "Pour both ingredients into a highball glass almost filled with ice cubes. Stir well, and serve.", @@ -92259,7 +92259,7 @@ "cranberry juice" ], "title": "My Pleasure recipe", - "url": "http://www.drinksmixer.com/drink9750.html" + "url": "https://www.drinksmixer.com/drink9750.html" }, { "directions": "Combine all ingredients in a saucepan. Bring to the boil, stirring occasionally. Pour into a mug, and serve.", @@ -92272,7 +92272,7 @@ "cinnamon" ], "title": "Mulled Claret recipe", - "url": "http://www.drinksmixer.com/drink9751.html" + "url": "https://www.drinksmixer.com/drink9751.html" }, { "directions": "Pour the gin, creme de cassis and Rose's lime juice into a parfait glass filled with shaven ice. Garnish with a slice of lime, and serve.", @@ -92282,7 +92282,7 @@ "Rose's\u00ae lime juice" ], "title": "My Place or No Place recipe", - "url": "http://www.drinksmixer.com/drink9752.html" + "url": "https://www.drinksmixer.com/drink9752.html" }, { "directions": "Pour the dark rum, grenadine, lime juice and sugar into a cocktail shaker half-filled with ice cubes. Shake well, and strain into a highball glass almost filled with crushed ice. Top with cherry brandy. Garnish with slice of lime, and serve.", @@ -92294,7 +92294,7 @@ "sugar" ], "title": "Myrtle Bank Punch recipe", - "url": "http://www.drinksmixer.com/drink9753.html" + "url": "https://www.drinksmixer.com/drink9753.html" }, { "directions": "Pour the Midori melon liqueur into a highball glass filled with ice cubes. Fill with ginger ale, squeeze in the juice from 2 or 3 lime wedges, and serve.", @@ -92304,7 +92304,7 @@ "lime" ], "title": "My Sweet Midori recipe", - "url": "http://www.drinksmixer.com/drink9754.html" + "url": "https://www.drinksmixer.com/drink9754.html" }, { "directions": "Pour the gin, cherry brandy, lemon juice, strawberry syrup, grenadine and pineapple juice into a cocktail shaker half-filled with ice cubes. Shake well, strain into a highball glass filled with ice cubes, and fill with soda water. Garnish with a slice of pineapple, and serve.", @@ -92318,7 +92318,7 @@ "soda water" ], "title": "Nadir Cocktail recipe", - "url": "http://www.drinksmixer.com/drink9755.html" + "url": "https://www.drinksmixer.com/drink9755.html" }, { "directions": "Pour the gin, cherry brandy, lemon juice, strawberry syrup, grenadine and pineapple juice into a cocktail shaker half-filled with ice cubes. Shake well, strain into a highball glass filled with ice cubes, and fill with soda water. Pour the blue curacao into the middle. Garnish with a slice of pineapple, and serve.", @@ -92333,7 +92333,7 @@ "Blue Curacao liqueur" ], "title": "Nadir Blue recipe", - "url": "http://www.drinksmixer.com/drink9756.html" + "url": "https://www.drinksmixer.com/drink9756.html" }, { "directions": "Pour the white rum, sweet vermouth, apricot brandy, grenadine and lemon juice into a cocktail shaker half-filled with ice cubes. Shake well, strain into a highball glass, and serve.", @@ -92345,7 +92345,7 @@ "lemon juice" ], "title": "Naked Lady recipe", - "url": "http://www.drinksmixer.com/drink9757.html" + "url": "https://www.drinksmixer.com/drink9757.html" }, { "directions": "Pour the vodka, melon liqueur, creme de cassis and pineapple juice into a mixing glass half-filled with cracked ice. Stir well. Strain into an old-fashioned glass 3/4 filled with ice cubes, and serve.", @@ -92356,7 +92356,7 @@ "pineapple juice" ], "title": "Naked Pretzel recipe", - "url": "http://www.drinksmixer.com/drink9758.html" + "url": "https://www.drinksmixer.com/drink9758.html" }, { "directions": "Pour the melon liqueur, Malibu rum and creme de noyaux into a hurricane glass 3/4 filled with ice cubes. Add the 7-Up and sour mix. Fill with equal parts of pineapple and cranberry juice, to taste, and serve.", @@ -92370,7 +92370,7 @@ "sweet and sour mix" ], "title": "Naked Sunburn recipe", - "url": "http://www.drinksmixer.com/drink9759.html" + "url": "https://www.drinksmixer.com/drink9759.html" }, { "directions": "Muddle a sugar cube with bitters in the bottom of an old-fashioned glass. Stir in the whiskey and the orange juice. Garnish with a twist of lemon peel, slices of orange and a maraschino cherry. Add a straw, and serve.", @@ -92381,7 +92381,7 @@ "sugar" ], "title": "Naple's Old-Fashioned recipe", - "url": "http://www.drinksmixer.com/drink9760.html" + "url": "https://www.drinksmixer.com/drink9760.html" }, { "directions": "Pour the rye whiskey, spiced rum, peach schnapps and grapefruit juice into a blender. Add the iced tea powder mix, and 1/4 of an orange (including peel and rind). Blend very well. Pour into a highball glass filled with ice cubes, and serve.", @@ -92394,7 +92394,7 @@ "orange" ], "title": "Nappy Rash recipe", - "url": "http://www.drinksmixer.com/drink9761.html" + "url": "https://www.drinksmixer.com/drink9761.html" }, { "directions": "Pour the white brandy, cranberry juice and grapefruit juice into a mixing glass half-filled with cracked ice. Stir well, and strain into a cocktail glass. Garnish with a slice of lime, and serve.", @@ -92404,7 +92404,7 @@ "grapefruit juice" ], "title": "Nantucket Cocktail recipe", - "url": "http://www.drinksmixer.com/drink9762.html" + "url": "https://www.drinksmixer.com/drink9762.html" }, { "directions": "Pour both ingredients into a collins glass filled with ice cubes. Stir gently, and serve.\r", @@ -92413,7 +92413,7 @@ "Kool-Aid\u00ae Blue Raspberry mix" ], "title": "Blue Ninja recipe", - "url": "http://www.drinksmixer.com/drink9763.html" + "url": "https://www.drinksmixer.com/drink9763.html" }, { "directions": "Shake all ingredients in a cocktail shaker half-filled with ice cubes. Strain into a shot glass, and serve.", @@ -92424,7 +92424,7 @@ "Jagermeister\u00ae herbal liqueur" ], "title": "Classic Oatmeal Cookie recipe", - "url": "http://www.drinksmixer.com/drink9764.html" + "url": "https://www.drinksmixer.com/drink9764.html" }, { "directions": "Combine all ingredients in a cocktail shaker half-filled with ice cubes. Shake gently, strain into a cocktail glass, and serve.", @@ -92436,7 +92436,7 @@ "half-and-half" ], "title": "Closure recipe", - "url": "http://www.drinksmixer.com/drink9765.html" + "url": "https://www.drinksmixer.com/drink9765.html" }, { "directions": "Pour both ingredients into an old-fashioned glass filled with ice cubes, and serve.", @@ -92445,7 +92445,7 @@ "Dr. Pepper\u00ae soda" ], "title": "Dr. Gold's recipe", - "url": "http://www.drinksmixer.com/drink9766.html" + "url": "https://www.drinksmixer.com/drink9766.html" }, { "directions": "Stir ingredients together in a shot glass, and serve.", @@ -92454,7 +92454,7 @@ "Grey Goose\u00ae vodka" ], "title": "Golden Goose recipe", - "url": "http://www.drinksmixer.com/drink9767.html" + "url": "https://www.drinksmixer.com/drink9767.html" }, { "directions": "Stir ingredients in a highball glass filled with ice cubes, and serve.", @@ -92463,7 +92463,7 @@ "root beer" ], "title": "Beer Rose recipe", - "url": "http://www.drinksmixer.com/drink9768.html" + "url": "https://www.drinksmixer.com/drink9768.html" }, { "directions": "Combine the Malibu coconut, pineapple and mango rum with the orange juice and grenadine in a blender with half a cup of crushed ice. Blend until slushy; add more ice if required. Pour into a pina-colada glass, and serve.", @@ -92475,7 +92475,7 @@ "grenadine syrup" ], "title": "Malibu Rum Rusher recipe", - "url": "http://www.drinksmixer.com/drink9769.html" + "url": "https://www.drinksmixer.com/drink9769.html" }, { "directions": "Stir ingredients together in a mixing glass with cracked ice. Strain into a shot glass, and serve.", @@ -92484,7 +92484,7 @@ "butterscotch schnapps" ], "title": "Maple Syrup Shot recipe", - "url": "http://www.drinksmixer.com/drink9770.html" + "url": "https://www.drinksmixer.com/drink9770.html" }, { "directions": "Pour the tequila into a salt-rimmed collins glass filled with ice cubes. Fill with club soda. Splash lime juice on top, and serve.", @@ -92495,7 +92495,7 @@ "salt" ], "title": "Paloma recipe", - "url": "http://www.drinksmixer.com/drink9771.html" + "url": "https://www.drinksmixer.com/drink9771.html" }, { "directions": "Pour the Sailor Jerry spiced rum, DeKuyper Buttershots liqueur, Smirnoff vanilla vodka and Jones cream soda into a collins glass almost filled with ice cubes. Stir well, and serve.", @@ -92506,7 +92506,7 @@ "Jones\u00ae cream soda" ], "title": "Sailor Jerry Butter Rum recipe", - "url": "http://www.drinksmixer.com/drink9772.html" + "url": "https://www.drinksmixer.com/drink9772.html" }, { "directions": "Combine all ingredients in a cocktail shaker over ice. Shake and strain into a chilled cocktail glass. Garnish with a strawberry, and serve.", @@ -92516,7 +92516,7 @@ "cranberry juice" ], "title": "Strawberry Ice recipe", - "url": "http://www.drinksmixer.com/drink9773.html" + "url": "https://www.drinksmixer.com/drink9773.html" }, { "directions": "Slice the 1/4 lemon into two seperate wedges. Place in a cocktail shaker half-filled with ice cubes. Pour the Absolut Citron into the shaker, and add one teaspoon of sugar. Shake vigorously. Strain into a sugar-rimmed cocktail glass. Garnish with a lemon twist, and serve.", @@ -92526,7 +92526,7 @@ "lemon" ], "title": "Vegas Lemon Drop Martini recipe", - "url": "http://www.drinksmixer.com/drink9774.html" + "url": "https://www.drinksmixer.com/drink9774.html" }, { "directions": "Combine the white rum, Cointreau, lemon juice, egg white and simple syrup in a cocktail shaker half-filled with ice cubes. Shake well, and strain into a champagne flute. Garnish with a maraschino cherry, and serve.", @@ -92538,7 +92538,7 @@ "simple syrup" ], "title": "Nassau Paul recipe", - "url": "http://www.drinksmixer.com/drink9775.html" + "url": "https://www.drinksmixer.com/drink9775.html" }, { "directions": "Pour the rum, apricot brandy, pineapple juice and lime juice into a cocktail shaker half-filled with ice cubes. Shake well, strain into a cocktail glass, and serve.", @@ -92549,7 +92549,7 @@ "lime juice" ], "title": "National Cocktail recipe", - "url": "http://www.drinksmixer.com/drink9776.html" + "url": "https://www.drinksmixer.com/drink9776.html" }, { "directions": "Pour the vodka, Kahlua coffee liqueur, Wild turkey whiskey, brown creme de cacao and cream into a cocktail shaker half-filled with cracked ice. Shake well, strain into a cocktail glass, and serve.", @@ -92561,7 +92561,7 @@ "cream" ], "title": "Nasty Cocktail recipe", - "url": "http://www.drinksmixer.com/drink9777.html" + "url": "https://www.drinksmixer.com/drink9777.html" }, { "directions": "Pour the vodka, amaretto almond liqueur, Frangelico hazelnut liqueur, Bailey's irish cream and Kahlua coffee liqueur into a collins glass filled with ice cubes. Fill with milk, and serve.", @@ -92574,7 +92574,7 @@ "milk" ], "title": "Nazi Qualik recipe", - "url": "http://www.drinksmixer.com/drink9778.html" + "url": "https://www.drinksmixer.com/drink9778.html" }, { "directions": "Pour the vodka, rums, melon liqueur and juices into a cocktail shaker half-filled with ice cubes. Shake well, strain into a highball glass, and serve.", @@ -92587,7 +92587,7 @@ "orange juice" ], "title": "Necrophiliac recipe", - "url": "http://www.drinksmixer.com/drink9779.html" + "url": "https://www.drinksmixer.com/drink9779.html" }, { "directions": "Pour all ingredients into a highball glass filled with ice cubes. Stir. Garnish with a maraschino cherry, and serve.", @@ -92600,7 +92600,7 @@ "grenadine syrup" ], "title": "Neon Neutron recipe", - "url": "http://www.drinksmixer.com/drink9780.html" + "url": "https://www.drinksmixer.com/drink9780.html" }, { "directions": "Pour the light rum, dark rum, blue curacao, grenadine and fresh lime juice into a cocktail shaker half-filled with ice cubes. Shake well, and strain into a cocktail glass with a small amount of crushed ice. Add the club soda. Garnish with an almond-embedded slice of lime, and serve.", @@ -92613,7 +92613,7 @@ "club soda" ], "title": "Neutered Purple Squirrel recipe", - "url": "http://www.drinksmixer.com/drink9781.html" + "url": "https://www.drinksmixer.com/drink9781.html" }, { "directions": "Pour the Stoli pepper vodka (Pertsovka), tomato juice and orange juice into a cocktail shaker half-filled with ice cubes. Shake well, strain into a cocktail glass with a small amount of crushed ice, and serve.", @@ -92623,7 +92623,7 @@ "orange juice" ], "title": "Neva Cocktail recipe", - "url": "http://www.drinksmixer.com/drink9782.html" + "url": "https://www.drinksmixer.com/drink9782.html" }, { "directions": "Pour the gin, sweet vermouth and triple sec into a cocktail shaker half-filled with cracked ice. Shake well, and strain into a chilled cocktail glass. Garnish with a twist of lemon, and serve.", @@ -92633,7 +92633,7 @@ "triple sec" ], "title": "Newbury Cocktail recipe", - "url": "http://www.drinksmixer.com/drink9783.html" + "url": "https://www.drinksmixer.com/drink9783.html" }, { "directions": "Pour the gin, triple sec and Rose's lime juice into an old-fashioned glass filled with ice cubes. Stir well. Fill with tonic water, or add to taste. Stir again gently. Garnish with a lime wedge, and serve.", @@ -92644,7 +92644,7 @@ "tonic water" ], "title": "New Moon recipe", - "url": "http://www.drinksmixer.com/drink9784.html" + "url": "https://www.drinksmixer.com/drink9784.html" }, { "directions": "Pour the Stoli vanilla vodka (Vanil), dry vermouth, Pernod and Angostura bitters into a cocktail shaker half-filled with cracked ice. Shake well, and strain into a chilled cocktail glass. Garnish with a sprig of mint, and serve.", @@ -92655,7 +92655,7 @@ "Angostura\u00ae bitters" ], "title": "New Orleans Martini recipe", - "url": "http://www.drinksmixer.com/drink9785.html" + "url": "https://www.drinksmixer.com/drink9785.html" }, { "directions": "Pour the vodka, rum, gin and Kahlua coffee liqueur into a cocktail shaker half-filled with ice cubes. Shake well, and strain into a cocktail glass. Top with cream as desired, and serve.", @@ -92667,7 +92667,7 @@ "cream" ], "title": "New York Motherfucker recipe", - "url": "http://www.drinksmixer.com/drink9786.html" + "url": "https://www.drinksmixer.com/drink9786.html" }, { "directions": "Combine the light rum, watermelon pieces, lime juice and peach in a blender with one cup of crushed ice. Blend well, and pour into a hurricane glass. Add a straw, and serve.", @@ -92678,7 +92678,7 @@ "peach" ], "title": "Nice Melons recipe", - "url": "http://www.drinksmixer.com/drink9787.html" + "url": "https://www.drinksmixer.com/drink9787.html" }, { "directions": "Pour the Jose Cuervo gold tequila, peach schnapps, sour mix and cranberry juice into a cocktail shaker half-filled with ice cubes. Shake well, strain into a collins glass, and serve.", @@ -92689,7 +92689,7 @@ "cranberry juice" ], "title": "Nick at Night recipe", - "url": "http://www.drinksmixer.com/drink9788.html" + "url": "https://www.drinksmixer.com/drink9788.html" }, { "directions": "Pour the Absolut Kurant, Midori melon liqueur and orange juice into a cocktail shaker half-filled with ice cubes. Shake well, and strain into a highball glass. Fill with cold 7-up, and serve.", @@ -92700,7 +92700,7 @@ "7-Up\u00ae soda" ], "title": "Nickel recipe", - "url": "http://www.drinksmixer.com/drink9789.html" + "url": "https://www.drinksmixer.com/drink9789.html" }, { "directions": "Pour the Absolut Kurant, Cointreau and orange juice into a cocktail shaker half-filled with ice cubes. Shake well, and strain into a highball glass. Fill with cold 7-up, and serve.", @@ -92711,7 +92711,7 @@ "7-Up\u00ae soda" ], "title": "Nickel Alloy recipe", - "url": "http://www.drinksmixer.com/drink9790.html" + "url": "https://www.drinksmixer.com/drink9790.html" }, { "directions": "Pour the blue curacao, Southern Comfort, galliano, cream and orange juice into a mixing glass half-filled with cracked ice. Stir well. Strain into a champagne saucer. Garnish with ice chips and 8-10 drops of blue curacao, and serve.", @@ -92723,7 +92723,7 @@ "orange juice" ], "title": "Nickel Fever recipe", - "url": "http://www.drinksmixer.com/drink9791.html" + "url": "https://www.drinksmixer.com/drink9791.html" }, { "directions": "Pour the rum into an Irish coffee mug and fill with warm milk. Sweeten to taste. Stir, sprinkle with nutmeg, and serve.", @@ -92733,7 +92733,7 @@ "milk" ], "title": "Night Cap recipe", - "url": "http://www.drinksmixer.com/drink9792.html" + "url": "https://www.drinksmixer.com/drink9792.html" }, { "directions": "Combine all three ingredients in a cocktail shaker half-filled with ice cubes. Shake well, strain into a cocktail glass, and serve.", @@ -92743,7 +92743,7 @@ "egg" ], "title": "Night Light recipe", - "url": "http://www.drinksmixer.com/drink9793.html" + "url": "https://www.drinksmixer.com/drink9793.html" }, { "directions": "Pour all ingredients over some crushed ice in a champagne flute. Stir gently, and serve.", @@ -92755,7 +92755,7 @@ "Champagne" ], "title": "Nijinski Blini recipe", - "url": "http://www.drinksmixer.com/drink9794.html" + "url": "https://www.drinksmixer.com/drink9794.html" }, { "directions": "Stir the gin, dry vermouth, sweet vermouth and bitters with cracked ice in a mixing glass. Strain into a cocktail glass, garnish with an olive, and serve.", @@ -92766,7 +92766,7 @@ "bitters" ], "title": "Nineteenth Hole recipe", - "url": "http://www.drinksmixer.com/drink9795.html" + "url": "https://www.drinksmixer.com/drink9795.html" }, { "directions": "Pour the vodka, triple sec and Dr. Pepper into a collins glass 3/4 filled with ice cubes. Stir well, and serve.", @@ -92776,7 +92776,7 @@ "Dr. Pepper\u00ae soda" ], "title": "No Clue recipe", - "url": "http://www.drinksmixer.com/drink9796.html" + "url": "https://www.drinksmixer.com/drink9796.html" }, { "directions": "Stir ingredients together with cracked ice in an old-fashioned glass. Sprinkle with cocoa, and serve.", @@ -92785,7 +92785,7 @@ "creme de cacao" ], "title": "Nog De Cacao recipe", - "url": "http://www.drinksmixer.com/drink9797.html" + "url": "https://www.drinksmixer.com/drink9797.html" }, { "directions": "Shake both ingredients with cracked ice and strain into a chilled cocktail glass. Garnish with juniper berries macerated in vermouth, and serve.", @@ -92794,7 +92794,7 @@ "Chambord\u00ae raspberry liqueur" ], "title": "Moose Martini recipe", - "url": "http://www.drinksmixer.com/drink9798.html" + "url": "https://www.drinksmixer.com/drink9798.html" }, { "directions": "Pour the Absolut vodka, raspberry liqueur and orange-pineapple juice into a highball glass filled with ice cubes. Stir well, and serve.", @@ -92804,7 +92804,7 @@ "orange-pineapple juice" ], "title": "Northern Lights recipe", - "url": "http://www.drinksmixer.com/drink9799.html" + "url": "https://www.drinksmixer.com/drink9799.html" }, { "directions": "Pour the peach schnapps, orange juice and grapefruit juice over crushed ice in a collins glass. Garnish with a slice of orange or lime, and serve.", @@ -92814,7 +92814,7 @@ "grapefruit juice" ], "title": "Not So Fuzzy Navel recipe", - "url": "http://www.drinksmixer.com/drink9800.html" + "url": "https://www.drinksmixer.com/drink9800.html" }, { "directions": "Pour ingredients in order into a highball glass almost filled with ice cubes. Garnish with a maraschino cherry, and serve.", @@ -92825,7 +92825,7 @@ "cranberry juice" ], "title": "Nuclear Kool-Aid recipe", - "url": "http://www.drinksmixer.com/drink9801.html" + "url": "https://www.drinksmixer.com/drink9801.html" }, { "directions": "Fill a blender about 3/4 with crushed ice and add liqueurs. Mix and add the sour mix until the mixture funnels in the blender. The final result should be thick. Add more ice if necessary. Pour into a hurricane glass, and serve.", @@ -92837,7 +92837,7 @@ "sweet and sour mix" ], "title": "Nuclear Slush recipe", - "url": "http://www.drinksmixer.com/drink9802.html" + "url": "https://www.drinksmixer.com/drink9802.html" }, { "directions": "Pour all ingredients into a highball glass 3/4 filled with ice cubes. Stir well, and serve.", @@ -92847,7 +92847,7 @@ "Zima" ], "title": "Nuclear Zima recipe", - "url": "http://www.drinksmixer.com/drink9803.html" + "url": "https://www.drinksmixer.com/drink9803.html" }, { "directions": "Pour the blue curacao, Southern Comfort and Wild Turkey whiskey into a highball glass with a few ice cubes. Fill with lime mix, and serve.", @@ -92858,7 +92858,7 @@ "lime mix" ], "title": "Nuclear Blue recipe", - "url": "http://www.drinksmixer.com/drink9804.html" + "url": "https://www.drinksmixer.com/drink9804.html" }, { "directions": "Pour the light rum, Frangelico hazelnut liqueur, amaretto almond liqueur and lime juice into a cocktail shaker half-filled with ice cubes. Shake well, strain into an old-fashioned glass filled with ice cubes, and serve.", @@ -92869,7 +92869,7 @@ "lime juice" ], "title": "Nut Case recipe", - "url": "http://www.drinksmixer.com/drink9805.html" + "url": "https://www.drinksmixer.com/drink9805.html" }, { "directions": "Combine the amaretto, coconut milk and crushed pineapple with two cups of crushed ice in a blender. Blend on high for a short period and pour into a collins glass. Add a straw, and serve.", @@ -92879,7 +92879,7 @@ "pineapples" ], "title": "Nutty Colada recipe", - "url": "http://www.drinksmixer.com/drink9806.html" + "url": "https://www.drinksmixer.com/drink9806.html" }, { "directions": "Pour the vodka and Frangelico hazelnut liqueur into a cocktail shaker half-filled with cracked ice. Shake well, and strain into a chilled cocktail glass. Garnish with a lemon twist, and serve.", @@ -92888,7 +92888,7 @@ "Frangelico\u00ae hazelnut liqueur" ], "title": "Nutty Martini recipe", - "url": "http://www.drinksmixer.com/drink9807.html" + "url": "https://www.drinksmixer.com/drink9807.html" }, { "directions": "Pour the vodka, amaretto almond liqueur, Frangelico hazelnut liqueur and cream into a cocktail shaker half-filled with ice cubes. Shake well, strain into a cocktail glass, and serve.", @@ -92899,7 +92899,7 @@ "cream" ], "title": "Nutty-Tini recipe", - "url": "http://www.drinksmixer.com/drink9808.html" + "url": "https://www.drinksmixer.com/drink9808.html" }, { "directions": "Pour the vodka, dry vermouth and orange juice into a cocktail shaker half-filled with cracked ice. Shake well, strain into a chilled cocktail glass, and serve.", @@ -92909,7 +92909,7 @@ "orange juice" ], "title": "Oakland Cocktail recipe", - "url": "http://www.drinksmixer.com/drink9809.html" + "url": "https://www.drinksmixer.com/drink9809.html" }, { "directions": "Pour the rums, Rose's grenadine and Coca-cola into a highball glass filled with ice cubes. Stir well, and serve.", @@ -92920,7 +92920,7 @@ "Coca-Cola\u00ae" ], "title": "October 27th recipe", - "url": "http://www.drinksmixer.com/drink9810.html" + "url": "https://www.drinksmixer.com/drink9810.html" }, { "directions": "Pour the gin and dry vermouth into a cocktail shaker half-filled with cracked ice. Shake well, and strain into a chilled cocktail glass. Garnish with a black olive, and serve.", @@ -92929,7 +92929,7 @@ "dry vermouth" ], "title": "Octopus's Garden recipe", - "url": "http://www.drinksmixer.com/drink9811.html" + "url": "https://www.drinksmixer.com/drink9811.html" }, { "directions": "Pour the Captain Morgan's coconut rum and spiced rum into a cocktail glass with a small amount of crushed ice. Add the grenadine, and equal parts of orange juice and pineapple juice. Stir gently, and serve.", @@ -92941,7 +92941,7 @@ "pineapple juice" ], "title": "Odin's Juice recipe", - "url": "http://www.drinksmixer.com/drink9812.html" + "url": "https://www.drinksmixer.com/drink9812.html" }, { "directions": "Pour the Southern Comfort, amaretto and Rose's lime juice into a cocktail shaker half-filled with ice cubes. Shake well, and strain into an old-fashioned glass. Float the Bacardi 151 rum on top, and serve.", @@ -92952,7 +92952,7 @@ "Bacardi\u00ae 151 rum" ], "title": "Officer Down recipe", - "url": "http://www.drinksmixer.com/drink9813.html" + "url": "https://www.drinksmixer.com/drink9813.html" }, { "directions": "Pour all ingredients into a cocktail shaker half-filled with ice cubes. Shake and strain into a cocktail glass, and serve.", @@ -92963,7 +92963,7 @@ "Chartreuse\u00ae herbal liqueur" ], "title": "Nude Ell Cocktail recipe", - "url": "http://www.drinksmixer.com/drink9814.html" + "url": "https://www.drinksmixer.com/drink9814.html" }, { "directions": "Pour the Stoli orange vodka (Ohranj), triple sec, sour mix and orange juice into a cocktail shaker half-filled with cracked ice. Shake well, strain into a cocktail glass, and serve.", @@ -92974,7 +92974,7 @@ "orange juice" ], "title": "Ohrangarita recipe", - "url": "http://www.drinksmixer.com/drink9815.html" + "url": "https://www.drinksmixer.com/drink9815.html" }, { "directions": "Pour the Stoli orange vodka (Ohranj), triple sec, orange juice and sugar syrup into a cocktail shaker half-filled with cracked ice. Shake well, strain into a cocktail glass, and serve.", @@ -92985,7 +92985,7 @@ "sugar syrup" ], "title": "Ohranj Blossom recipe", - "url": "http://www.drinksmixer.com/drink9816.html" + "url": "https://www.drinksmixer.com/drink9816.html" }, { "directions": "Pour the Stoli orange vodka (Ohranj), peach schnapps and cranberry juice into an old-fashioned glass 1/2 filled with ice cubes. Stir well, and serve.", @@ -92995,7 +92995,7 @@ "cranberry juice" ], "title": "Ohranj Juice recipe", - "url": "http://www.drinksmixer.com/drink9817.html" + "url": "https://www.drinksmixer.com/drink9817.html" }, { "directions": "Pour the Stoli orange vodka (Ohranj), triple sec, sour mix and orange juice into a cocktail glass over crushed ice. Garnish with a slice of orange, and serve.", @@ -93006,7 +93006,7 @@ "orange juice" ], "title": "Ohranj Julius recipe", - "url": "http://www.drinksmixer.com/drink9818.html" + "url": "https://www.drinksmixer.com/drink9818.html" }, { "directions": "Pour the Stoli orange vodka (Ohranj), orange juice and lemon juice into an old-fashioned glass half-filled with cracked ice. Stir well, and serve.", @@ -93016,7 +93016,7 @@ "lemon juice" ], "title": "Ohranj Screwdriver recipe", - "url": "http://www.drinksmixer.com/drink9819.html" + "url": "https://www.drinksmixer.com/drink9819.html" }, { "directions": "Pour the ojen, peychaud bitters, sugar and water into a cocktail shaker half-filled with ice cubes. Shake well, strain into a cocktail glass, and serve.", @@ -93027,7 +93027,7 @@ "water" ], "title": "Ojen Cocktail recipe", - "url": "http://www.drinksmixer.com/drink9820.html" + "url": "https://www.drinksmixer.com/drink9820.html" }, { "directions": "Pour the melon deoria, Skyy vodka and cranberry juice into a cocktail glass. Add the 7-up, and stir gently. Garnish with a slice of lime and a maraschino cherry, and serve.", @@ -93038,7 +93038,7 @@ "cranberry juice" ], "title": "Oklahoma Cooler recipe", - "url": "http://www.drinksmixer.com/drink9821.html" + "url": "https://www.drinksmixer.com/drink9821.html" }, { "directions": "Stir ingredients together over crushed ice in a cocktail glass, and serve.", @@ -93047,7 +93047,7 @@ "7-Up\u00ae soda" ], "title": "Old 7's recipe", - "url": "http://www.drinksmixer.com/drink9822.html" + "url": "https://www.drinksmixer.com/drink9822.html" }, { "directions": "Pour the vodka, madeira wine and cherry brandy into a mixing glass half-filled with cracked ice. Stir well, and strain into a chilled cocktail glass. Garnish with an orange twist, and serve.", @@ -93057,7 +93057,7 @@ "cherry brandy" ], "title": "Old Country Martini recipe", - "url": "http://www.drinksmixer.com/drink9823.html" + "url": "https://www.drinksmixer.com/drink9823.html" }, { "directions": "Pour the gin, Lillet, orange bitters and creme de noyaux into a mixing glass half-filled with ice cubes. Stir well, and strain into a cocktail glass. Garnish with a twist of orange peel, and serve.", @@ -93068,7 +93068,7 @@ "creme de noyaux" ], "title": "Old Etonian recipe", - "url": "http://www.drinksmixer.com/drink9824.html" + "url": "https://www.drinksmixer.com/drink9824.html" }, { "directions": "Pour the Southern Comfort, Captain Morgan spiced, Absolut vodka and Coca-cola into an old-fashioned glass filled with ice cubes, and serve.", @@ -93079,7 +93079,7 @@ "Coca-Cola\u00ae" ], "title": "Ol' Dirty Bastard recipe", - "url": "http://www.drinksmixer.com/drink9825.html" + "url": "https://www.drinksmixer.com/drink9825.html" }, { "directions": "Pour the whiskey, sweet vermouth, bitters and sugar into a cocktail glass over crushed ice. Stir well. Top with club soda, and stir again gently. Garnish with a maraschino cherry, and serve.", @@ -93091,7 +93091,7 @@ "club soda" ], "title": "Old Fashioned Manhattan recipe", - "url": "http://www.drinksmixer.com/drink9826.html" + "url": "https://www.drinksmixer.com/drink9826.html" }, { "directions": "Combine all ingredients in a blender. Blend until smooth. Pour into a cocktail glass, garnish with a slice of lemon, and serve.", @@ -93101,7 +93101,7 @@ "olives" ], "title": "Old Yeller recipe", - "url": "http://www.drinksmixer.com/drink9827.html" + "url": "https://www.drinksmixer.com/drink9827.html" }, { "directions": "Pour the Midori melon liqueur and cold Surge into a collins glass with a few ice cubes. Stir well. Top with a bit of vodka; optional. Serve.", @@ -93111,7 +93111,7 @@ "vodka" ], "title": "Oliver's Green Diamond recipe", - "url": "http://www.drinksmixer.com/drink9828.html" + "url": "https://www.drinksmixer.com/drink9828.html" }, { "directions": "Pour the whiskey, Martini & Rossi dry vermouth and strawberry liqueur into a cocktail shaker half-filled with ice cubes. Shake well, strain into a cocktail glass, and serve.", @@ -93121,7 +93121,7 @@ "strawberry liqueur" ], "title": "Opening Night recipe", - "url": "http://www.drinksmixer.com/drink9829.html" + "url": "https://www.drinksmixer.com/drink9829.html" }, { "directions": "Pour the Captain Morgan's Parrot Bay coconut rum, Midori melon liqueur, ginger ale, sour mix and lime juice into a collins glass filled with ice cubes. Stir well, and serve.", @@ -93133,7 +93133,7 @@ "lime juice" ], "title": "Oral Intruder recipe", - "url": "http://www.drinksmixer.com/drink9830.html" + "url": "https://www.drinksmixer.com/drink9830.html" }, { "directions": "Pour the vodka, peach schnapps, blue curacao and pineapple juice into a cocktail shaker half-filled with ice cubes. Shake well, strain into a highball glass, and serve.", @@ -93144,7 +93144,7 @@ "pineapple juice" ], "title": "Oral Sex on the Beach recipe", - "url": "http://www.drinksmixer.com/drink9831.html" + "url": "https://www.drinksmixer.com/drink9831.html" }, { "directions": "Pour the vodka, triple sec, orange juice, sour mix and grenadine into a cocktail shaker half-filled with ice cubes. Shake well, and strain into a large brandy snifter half-filled with ice. Float the Bacardi 151 on top, garnish with tropical fruit, and serve.", @@ -93157,7 +93157,7 @@ "grenadine syrup" ], "title": "Orang-A-Tang recipe", - "url": "http://www.drinksmixer.com/drink9832.html" + "url": "https://www.drinksmixer.com/drink9832.html" }, { "directions": "Pour the Jim Beam bourbon whiskey into an old-fashioned glass 3/4 filled with ice cubes. Fill with orange soda, and serve.", @@ -93166,7 +93166,7 @@ "orange soda" ], "title": "Orange Beam recipe", - "url": "http://www.drinksmixer.com/drink9833.html" + "url": "https://www.drinksmixer.com/drink9833.html" }, { "directions": "Pour the dry gin, sweet vermouth and olive brine into a cocktail shaker half-filled with ice cubes. Shake well, strain into a chilled cocktail glass, and serve.", @@ -93176,7 +93176,7 @@ "olive juice" ], "title": "Olive Martini recipe", - "url": "http://www.drinksmixer.com/drink9834.html" + "url": "https://www.drinksmixer.com/drink9834.html" }, { "directions": "Combine all three ingredients in a cocktail shaker with ice. Shake and strain into a cocktail glass, and serve.", @@ -93186,7 +93186,7 @@ "sweet vermouth" ], "title": "Orange Bloom recipe", - "url": "http://www.drinksmixer.com/drink9835.html" + "url": "https://www.drinksmixer.com/drink9835.html" }, { "directions": "Combine all ingredients with 6 ice cubes in a blender. Blend until smooth, and pour into a parfait glass. Garnish with a maraschino cherry and a slice of orange, and serve.", @@ -93198,7 +93198,7 @@ "light cream" ], "title": "Orange Blossom Special recipe", - "url": "http://www.drinksmixer.com/drink9836.html" + "url": "https://www.drinksmixer.com/drink9836.html" }, { "directions": "Pour advocaat into an old-fashioned glass half-filled with cracked ice. Add 7-Up or Sprite to taste, stir gently, and serve.", @@ -93207,7 +93207,7 @@ "7-Up\u00ae soda" ], "title": "Orange Creamsicle recipe", - "url": "http://www.drinksmixer.com/drink9837.html" + "url": "https://www.drinksmixer.com/drink9837.html" }, { "directions": "Pour all ingredients into a highball glass almost filled with ice cubes. Stir well, and serve.", @@ -93224,7 +93224,7 @@ "orange juice" ], "title": "Orange Ed recipe", - "url": "http://www.drinksmixer.com/drink9838.html" + "url": "https://www.drinksmixer.com/drink9838.html" }, { "directions": "Add the gin, lemon juice, triple sec, simple syrup and orange bitters to a cocktail shaker half-filled with ice cubes. Shake well, and strain into a sour glass. Fill with soda, and top with orange juice. Garnish with a slice of orange, and serve.", @@ -93238,7 +93238,7 @@ "soda water" ], "title": "Orange Fizz recipe", - "url": "http://www.drinksmixer.com/drink9839.html" + "url": "https://www.drinksmixer.com/drink9839.html" }, { "directions": "Combine all ingredients in a blender. Blend until smooth, pour into a hurricane glass. Garnish with slices or pieces of tropical fruit, add a straw, and serve.", @@ -93250,7 +93250,7 @@ "banana" ], "title": "Orange Jeff recipe", - "url": "http://www.drinksmixer.com/drink9840.html" + "url": "https://www.drinksmixer.com/drink9840.html" }, { "directions": "Pour the vodka, triple sec and orange bitters into a cocktail shaker half-filled with cracked ice. Shake well, and strain into a chilled cocktail glass. Garnish with an orange twist, and serve.", @@ -93260,7 +93260,7 @@ "orange bitters" ], "title": "Orange Martini recipe", - "url": "http://www.drinksmixer.com/drink9841.html" + "url": "https://www.drinksmixer.com/drink9841.html" }, { "directions": "Pour the vodka, Kahlua coffee liqueur and triple sec into a cocktail shaker half-filled with ice cubes. Add orange juice to taste. Shake well, pour contents into a highball glass, and serve.", @@ -93271,7 +93271,7 @@ "orange juice" ], "title": "Orange Smartie recipe", - "url": "http://www.drinksmixer.com/drink9842.html" + "url": "https://www.drinksmixer.com/drink9842.html" }, { "directions": "Combine all ingredients in a blender with crushed ice. Blend until smooth; add more ice as required. Pour into a highball glass, add a straw, and serve.", @@ -93282,7 +93282,7 @@ "orange sherbet" ], "title": "Orange Smasha recipe", - "url": "http://www.drinksmixer.com/drink9843.html" + "url": "https://www.drinksmixer.com/drink9843.html" }, { "directions": "Layer ingredients, in above order, into a tall glass half-filled with ice cubes. Add a maraschino cherry, and serve.", @@ -93294,7 +93294,7 @@ "orange juice" ], "title": "Orange Splash recipe", - "url": "http://www.drinksmixer.com/drink9844.html" + "url": "https://www.drinksmixer.com/drink9844.html" }, { "directions": "Pour the gin, violet liqueur and egg white into a cocktail shaker half-filled with ice cubes. Shake well, strain into a cocktail glass, and serve.", @@ -93304,7 +93304,7 @@ "egg" ], "title": "Orchid Cocktail recipe", - "url": "http://www.drinksmixer.com/drink9845.html" + "url": "https://www.drinksmixer.com/drink9845.html" }, { "directions": "Pour the white rum over several ice cubes in a highball glass. Almost fill the glass with sweet and sour mix. Add the orange juice, and dash grenadine. Garnish with a maraschino cherry, and serve.", @@ -93315,7 +93315,7 @@ "sweet and sour mix" ], "title": "Oregon Special recipe", - "url": "http://www.drinksmixer.com/drink9846.html" + "url": "https://www.drinksmixer.com/drink9846.html" }, { "directions": "Pour both ingredients into a cocktail shaker half-filled with ice cubes. Shake well, strain into a highball glass, and serve.", @@ -93324,7 +93324,7 @@ "amaretto almond liqueur" ], "title": "Orgasm #4 recipe", - "url": "http://www.drinksmixer.com/drink9847.html" + "url": "https://www.drinksmixer.com/drink9847.html" }, { "directions": "Pour the vodka, amaretto, Kahlua coffee liqueur and light cream into a cocktail shaker half-filled with ice cubes. Shake well, strain into a highball glass, and serve.", @@ -93335,7 +93335,7 @@ "light cream" ], "title": "Orgasm #5 recipe", - "url": "http://www.drinksmixer.com/drink9848.html" + "url": "https://www.drinksmixer.com/drink9848.html" }, { "directions": "Pour the vodka, Bailey's irish cream and Kahlua coffee liqueur in that order into a highball glass. Top with a bit of club soda, and serve.", @@ -93346,7 +93346,7 @@ "club soda" ], "title": "Orgasm #6 recipe", - "url": "http://www.drinksmixer.com/drink9849.html" + "url": "https://www.drinksmixer.com/drink9849.html" }, { "directions": "Pour both ingredients over cracked ice in an old-fashioned glass, and serve.", @@ -93355,7 +93355,7 @@ "Cointreau\u00ae orange liqueur" ], "title": "Orgasm #7 recipe", - "url": "http://www.drinksmixer.com/drink9850.html" + "url": "https://www.drinksmixer.com/drink9850.html" }, { "directions": "Pour both ingredients over cracked ice in an old-fashioned glass, and serve.", @@ -93364,7 +93364,7 @@ "Bailey's\u00ae Irish cream" ], "title": "Orgasm #8 recipe", - "url": "http://www.drinksmixer.com/drink9851.html" + "url": "https://www.drinksmixer.com/drink9851.html" }, { "directions": "Pour all three ingredients over cracked ice in an old-fashioned glass, stir and serve.", @@ -93374,7 +93374,7 @@ "light cream" ], "title": "Orgasm #9 recipe", - "url": "http://www.drinksmixer.com/drink9852.html" + "url": "https://www.drinksmixer.com/drink9852.html" }, { "directions": "Build ingredients in above order in a highball glass half-filled with ice cubes, and serve.", @@ -93387,7 +93387,7 @@ "grenadine syrup" ], "title": "Orgasm #10 recipe", - "url": "http://www.drinksmixer.com/drink9853.html" + "url": "https://www.drinksmixer.com/drink9853.html" }, { "directions": "Pour the sugar, bitters and water into a mixing glass half-filled with cracked ice. Stir well until dissolved. Pour over cracked ice in an old-fashioned glass, and stir in the bourbon whiskey. Garnish with a twist of lemon, and serve.", @@ -93398,7 +93398,7 @@ "sugar" ], "title": "Original Old Fashioned recipe", - "url": "http://www.drinksmixer.com/drink9854.html" + "url": "https://www.drinksmixer.com/drink9854.html" }, { "directions": "Combine the gin, cherry brandy and lime juice in a cocktail shaker half-filled with ice cubes. Shake well. Strain into a collins glass almost filled with ice cubes. Drop the benedictine and brandy into the centre of the drink, and serve.", @@ -93410,7 +93410,7 @@ "brandy" ], "title": "Original Singapore Sling recipe", - "url": "http://www.drinksmixer.com/drink9855.html" + "url": "https://www.drinksmixer.com/drink9855.html" }, { "directions": "Pour the kiwi liqueur, Bacardi white rum and pineapple juice into a cocktail shaker with 5 ice cubes. Shake well, pour into a collins glass, and serve.", @@ -93420,7 +93420,7 @@ "pineapple juice" ], "title": "Orthoniatis recipe", - "url": "http://www.drinksmixer.com/drink9856.html" + "url": "https://www.drinksmixer.com/drink9856.html" }, { "directions": "Pour the vodka and sake into a cocktail shaker half-filled with cracked ice. Shake well, and strain into a chilled cocktail glass. Garnish with a picked plum, and serve.", @@ -93429,7 +93429,7 @@ "sake rice wine" ], "title": "Osaka Dry recipe", - "url": "http://www.drinksmixer.com/drink9857.html" + "url": "https://www.drinksmixer.com/drink9857.html" }, { "directions": "Add ingredients to a snifter filled with ice. Garnish with an orange wedge and a stemmed cherry.", @@ -93442,7 +93442,7 @@ "Hi-C\u00ae orange soda" ], "title": "Oscar Cocktail recipe", - "url": "http://www.drinksmixer.com/drink9858.html" + "url": "https://www.drinksmixer.com/drink9858.html" }, { "directions": "Pour the beer and Coca-cola into a pint glass. Fill a shot glass with everclear and ignite (carefully). Drop the burning shot of everclear into the beer-coke mixture, and chug.", @@ -93452,7 +93452,7 @@ "beer" ], "title": "Outhouse Slammer recipe", - "url": "http://www.drinksmixer.com/drink9859.html" + "url": "https://www.drinksmixer.com/drink9859.html" }, { "directions": "Combine ingredients with 1-2 cups of crushed ice in a blender, until smooth. Pour into a hurricane glass, add a straw, and serve.", @@ -93461,7 +93461,7 @@ "Kool-Aid\u00ae Berry Blue mix" ], "title": "Out of the Blue recipe", - "url": "http://www.drinksmixer.com/drink9860.html" + "url": "https://www.drinksmixer.com/drink9860.html" }, { "directions": "Combine all ingredients in a cocktail shaker half-filled with ice cubes. Shake vigorously. Pour into a highball glass over several ice cubes. Add a maraschino cherry, and serve.", @@ -93472,7 +93472,7 @@ "corn syrup" ], "title": "Overcast Friday recipe", - "url": "http://www.drinksmixer.com/drink9861.html" + "url": "https://www.drinksmixer.com/drink9861.html" }, { "directions": "Pour all ingredients into an old-fashioned glass filled with cracked ice. Stir well, and serve.", @@ -93482,7 +93482,7 @@ "Red Bull\u00ae energy drink" ], "title": "Padas Battery recipe", - "url": "http://www.drinksmixer.com/drink9862.html" + "url": "https://www.drinksmixer.com/drink9862.html" }, { "directions": "Pour all ingredients into an old-fashioned glass filled with cracked ice. Stir well, and serve.", @@ -93494,7 +93494,7 @@ "7-Up\u00ae soda" ], "title": "Padas Passoa recipe", - "url": "http://www.drinksmixer.com/drink9863.html" + "url": "https://www.drinksmixer.com/drink9863.html" }, { "directions": "Combine all ingredients with one cup of crushed ice in a blender. Blend until smooth, and pour into a parfait glass. Garnish with a strawberry and a slice of peach, and serve.", @@ -93506,7 +93506,7 @@ "strawberries" ], "title": "Over the Rainbow recipe", - "url": "http://www.drinksmixer.com/drink9864.html" + "url": "https://www.drinksmixer.com/drink9864.html" }, { "directions": "Shake all three ingredients with ice in a cocktail shaker. Strain into a cocktail glass, and serve.", @@ -93516,7 +93516,7 @@ "bitters" ], "title": "Paddy Cocktail recipe", - "url": "http://www.drinksmixer.com/drink9865.html" + "url": "https://www.drinksmixer.com/drink9865.html" }, { "directions": "Stir the gin, vermouths and creme de cacao together in an old-fashioned glass half-filled with ice cubes, and serve.", @@ -93527,7 +93527,7 @@ "white creme de cacao" ], "title": "Pall Mall Cocktail recipe", - "url": "http://www.drinksmixer.com/drink9866.html" + "url": "https://www.drinksmixer.com/drink9866.html" }, { "directions": "Stir the gin, vermouths, creme de menthe and orange bitters together in a mixing glass half-filled with ice cubes. Strain into a chilled cocktail glass, and serve.", @@ -93539,7 +93539,7 @@ "orange bitters" ], "title": "Pall Mall Martini recipe", - "url": "http://www.drinksmixer.com/drink9867.html" + "url": "https://www.drinksmixer.com/drink9867.html" }, { "directions": "Pour the dark rum, amaretto and orange juice into an old-fashioned glass 3/4 filled with ice cubes, and serve.", @@ -93549,7 +93549,7 @@ "orange juice" ], "title": "Palm Beacher recipe", - "url": "http://www.drinksmixer.com/drink9868.html" + "url": "https://www.drinksmixer.com/drink9868.html" }, { "directions": "Pour the Stoli peach vodka (Persik). Amaretto Di Saronno, orange juice and lemon juice into a cocktail shaker half-filled with cracked ice. Shake well, strain into a chilled old-fashioned glass over several ice cubes, and serve.", @@ -93560,7 +93560,7 @@ "lemon juice" ], "title": "Pamir Peach recipe", - "url": "http://www.drinksmixer.com/drink9869.html" + "url": "https://www.drinksmixer.com/drink9869.html" }, { "directions": "Pour the vodka and peach schnapps into a highball glass almost filled with ice cubes. Fill with equal amounts of orange juice and blue hawaiian punch, and serve.", @@ -93571,7 +93571,7 @@ "Hawaiian Punch\u00ae" ], "title": "Palm Breeze recipe", - "url": "http://www.drinksmixer.com/drink9870.html" + "url": "https://www.drinksmixer.com/drink9870.html" }, { "directions": "Stir ingrediients together in a cocktail glass, and serve.", @@ -93582,7 +93582,7 @@ "lemon juice" ], "title": "Panty Remover recipe", - "url": "http://www.drinksmixer.com/drink9871.html" + "url": "https://www.drinksmixer.com/drink9871.html" }, { "directions": "Freeze the pineapple chunks. Place them into a tall glass, add the gin, pineapple juice and mountain dew, and serve.", @@ -93593,7 +93593,7 @@ "pineapple" ], "title": "Panty Remover #2 recipe", - "url": "http://www.drinksmixer.com/drink9872.html" + "url": "https://www.drinksmixer.com/drink9872.html" }, { "directions": "Pour the Canadian whisky, advocaat, creme de cacao, Tia Maria coffee liqueur, creme de bananes, milk and apple juice into a cocktail shaker half-filled with cracked ice. Shake well, and pour entire contents into a hurricane glass. Garnish with a slice of orange and a maraschino cherry, and serve.", @@ -93607,7 +93607,7 @@ "apple juice" ], "title": "Papa Muminek recipe", - "url": "http://www.drinksmixer.com/drink9873.html" + "url": "https://www.drinksmixer.com/drink9873.html" }, { "directions": "Pour the spiced rum and hot coffee into a mug, and sweeten to taste. Top with whipped cream, and serve.", @@ -93618,7 +93618,7 @@ "whipped cream" ], "title": "Paradise Cafe recipe", - "url": "http://www.drinksmixer.com/drink9874.html" + "url": "https://www.drinksmixer.com/drink9874.html" }, { "directions": "Pour the rum, fruit juices and apricot liqueur into a blender. Add one cup of crushed ice. Blend well, and pour into a hurricane glass. Garnish with a slice of lime and a fruit flag, and serve.", @@ -93631,7 +93631,7 @@ "apricot liqueur" ], "title": "Paradise Quencher recipe", - "url": "http://www.drinksmixer.com/drink9875.html" + "url": "https://www.drinksmixer.com/drink9875.html" }, { "directions": "Pour the vodka and lemon juice (to taste) into a cocktail glass filled with ice. Slowly pour the blue curacao to the bottom of the glass, and serve.", @@ -93641,7 +93641,7 @@ "lemon juice" ], "title": "Paraflu Cocktail recipe", - "url": "http://www.drinksmixer.com/drink9876.html" + "url": "https://www.drinksmixer.com/drink9876.html" }, { "directions": "Layer the ingredients in order into a pousse-cafe glass, and serve.", @@ -93652,7 +93652,7 @@ "Green Chartreuse\u00ae" ], "title": "Parisian Pousse Cafe recipe", - "url": "http://www.drinksmixer.com/drink9877.html" + "url": "https://www.drinksmixer.com/drink9877.html" }, { "directions": "Pour both ingredients into a small champagne flute. Garnish with a lemon twist, and serve.", @@ -93661,7 +93661,7 @@ "tequila" ], "title": "Parkeroo recipe", - "url": "http://www.drinksmixer.com/drink9878.html" + "url": "https://www.drinksmixer.com/drink9878.html" }, { "directions": "Pour the silver tequila, triple sec and fresh lime juice into a cocktail shaker half-filled with cracked ice. Shake well, and strain into a chilled cocktail glass. Garnish with a twist of lime, and serve.", @@ -93671,7 +93671,7 @@ "lime juice" ], "title": "Parrothead Martini recipe", - "url": "http://www.drinksmixer.com/drink9879.html" + "url": "https://www.drinksmixer.com/drink9879.html" }, { "directions": "Pour the Cointreau, lemon juice, lime juice and bitters into a cocktail shaker half-filled with ice cubes. Shake well, strain into a collins glass almost filled with ice cubes, and serve.", @@ -93682,7 +93682,7 @@ "bitters" ], "title": "Party Starter recipe", - "url": "http://www.drinksmixer.com/drink9880.html" + "url": "https://www.drinksmixer.com/drink9880.html" }, { "directions": "Add the coconut rum, white rum and sugar to a cocktail shaker half-filled with ice cubes. Shake well, and strain into a collins glass. Fill with equal amounts of sour mix and pineapple juice, pre-chilled. Top with Sprite, and serve.", @@ -93695,7 +93695,7 @@ "sugar" ], "title": "Passion Cocktail recipe", - "url": "http://www.drinksmixer.com/drink9881.html" + "url": "https://www.drinksmixer.com/drink9881.html" }, { "directions": "Pour all three ingredients into a cocktail shaker half-filled with ice cubes. Shake well, strain into a cocktail glass, and serve.", @@ -93705,7 +93705,7 @@ "lime juice" ], "title": "Passionate Rita recipe", - "url": "http://www.drinksmixer.com/drink9882.html" + "url": "https://www.drinksmixer.com/drink9882.html" }, { "directions": "Combine all ingredients together with crushed ice in a blender, and blend well. Pour into a parfait glass. Garnish with an open strawberry pressed onto the edge of the glass, and serve.", @@ -93717,7 +93717,7 @@ "strawberries" ], "title": "Passionate Strap recipe", - "url": "http://www.drinksmixer.com/drink9883.html" + "url": "https://www.drinksmixer.com/drink9883.html" }, { "directions": "Stir ingredients together in a collins glass filled with ice cubes, and serve.", @@ -93726,7 +93726,7 @@ "Kool-Aid\u00ae Lemonade Tea mix" ], "title": "Passionate Sunset recipe", - "url": "http://www.drinksmixer.com/drink9884.html" + "url": "https://www.drinksmixer.com/drink9884.html" }, { "directions": "Pour the white rum, cream, passion-fruit juice and coconut syrup into a cocktail shaker half-filled with ice cubes. Shake well, and pour into a pina colada glass. Garnish with a pineapple chunk or a maraschino cherry, and serve.", @@ -93737,7 +93737,7 @@ "coconut syrup" ], "title": "Passion Colada recipe", - "url": "http://www.drinksmixer.com/drink9885.html" + "url": "https://www.drinksmixer.com/drink9885.html" }, { "directions": "Pour the La Grande Passion liqueur, grenadine and heavy cream into a cocktail shaker half-filled with ice cubes. Shake vigorously, strain into a cocktail glass, and serve.", @@ -93747,7 +93747,7 @@ "heavy cream" ], "title": "Passion Pussy recipe", - "url": "http://www.drinksmixer.com/drink9886.html" + "url": "https://www.drinksmixer.com/drink9886.html" }, { "directions": "Pour the Stoli peach vodka (Persik), cranberry juice and orange juice into a cocktail shaker half-filled with cracked ice. Shake well, and pour entire contents into a double old-fashioned glass with several ice cubes. Garnish with a peach slice, and serve.", @@ -93757,7 +93757,7 @@ "orange juice" ], "title": "Pavlova Peach recipe", - "url": "http://www.drinksmixer.com/drink9887.html" + "url": "https://www.drinksmixer.com/drink9887.html" }, { "directions": "Pour the vodka and creme de cassis into a red wine glass filled with finely shaven ice, and serve.", @@ -93766,7 +93766,7 @@ "creme de cassis" ], "title": "Pavlova Supreme recipe", - "url": "http://www.drinksmixer.com/drink9888.html" + "url": "https://www.drinksmixer.com/drink9888.html" }, { "directions": "Pour the dark rum, citrus juices, simple syrup and grenadine into a highball glass filled with ice cubes. Stir well, and serve.", @@ -93778,7 +93778,7 @@ "grenadine syrup" ], "title": "Peaceful Treasure recipe", - "url": "http://www.drinksmixer.com/drink9889.html" + "url": "https://www.drinksmixer.com/drink9889.html" }, { "directions": "Pour the vodka and peach schnapps into a collins glass filled with ice cubes. Stir well. Fill with ginger ale, stir again gently, and serve.", @@ -93788,7 +93788,7 @@ "ginger ale" ], "title": "Peach Blossom recipe", - "url": "http://www.drinksmixer.com/drink9890.html" + "url": "https://www.drinksmixer.com/drink9890.html" }, { "directions": "Pour the Stoli peach vodka (Persik), Dubonnet Rouge and maraschino liqueur into a cocktail shaker half-filled with cracked ice. Shake well, and strain into a chilled cocktail glass. Garnish with a slice of peach, and serve.", @@ -93798,7 +93798,7 @@ "maraschino liqueur" ], "title": "Peach Blossom Martini recipe", - "url": "http://www.drinksmixer.com/drink9891.html" + "url": "https://www.drinksmixer.com/drink9891.html" }, { "directions": "Pour the DeKuyper Peachtree schnapps and apple cider into a highball glass half-filled with ice cubes. Stir gently, and serve.", @@ -93807,7 +93807,7 @@ "apple cider" ], "title": "Peach Cider recipe", - "url": "http://www.drinksmixer.com/drink9892.html" + "url": "https://www.drinksmixer.com/drink9892.html" }, { "directions": "Combine the peach schnapps, black-raspberry liqueur, hazelnut liqueur, vanilla ice cream, light cream and raspberry jam in a blender. Blend until smooth. Pourinto a parfait glass, garnish with a peach slice, and serve.", @@ -93820,7 +93820,7 @@ "raspberry jam" ], "title": "Peach Melba Freeze recipe", - "url": "http://www.drinksmixer.com/drink9893.html" + "url": "https://www.drinksmixer.com/drink9893.html" }, { "directions": "Pour the peach brandy into a highball glass filled with ice cubes. Fill with club soda, and stir gently. Float the port on top. Dust with nutmeg, and serve.", @@ -93830,7 +93830,7 @@ "port" ], "title": "Peach Sangaree recipe", - "url": "http://www.drinksmixer.com/drink9894.html" + "url": "https://www.drinksmixer.com/drink9894.html" }, { "directions": "Stir all ingredients together with a few ice cubes in an old-fashioned glass or tumbler, and serve.", @@ -93840,7 +93840,7 @@ "soda water" ], "title": "Peach Tumbler recipe", - "url": "http://www.drinksmixer.com/drink9895.html" + "url": "https://www.drinksmixer.com/drink9895.html" }, { "directions": "Peel and slice the half-peach and add with the white rum, maraschino liqueur and Rose's lime juice to a blender. Add 3-oz of crushed ice. Blend for 10-20 seconds. Strain into a champagne saucer, and serve.", @@ -93851,7 +93851,7 @@ "maraschino liqueur" ], "title": "Peach West Indies recipe", - "url": "http://www.drinksmixer.com/drink9896.html" + "url": "https://www.drinksmixer.com/drink9896.html" }, { "directions": "Pour all ingredients into a 12-oz parfait glass filled with finely shaven ice, and serve.", @@ -93861,7 +93861,7 @@ "vanilla ice cream" ], "title": "Peachy Amaretto recipe", - "url": "http://www.drinksmixer.com/drink9897.html" + "url": "https://www.drinksmixer.com/drink9897.html" }, { "directions": "Pour the peach schnapps and blue curacao into a mixing glass half-filled with cracked ice. Stir well, strain into a cocktail glass, and serve.", @@ -93870,7 +93870,7 @@ "Blue Curacao liqueur" ], "title": "Peachy Blue recipe", - "url": "http://www.drinksmixer.com/drink9898.html" + "url": "https://www.drinksmixer.com/drink9898.html" }, { "directions": "Pour the spiced rum, peach schnapps, coconut cream and pineapple juice into a blender with two cups of crushed ice. Blend until slushy, pour into a hurricane glass, and serve.", @@ -93881,7 +93881,7 @@ "pineapple juice" ], "title": "Peachy Colada recipe", - "url": "http://www.drinksmixer.com/drink9899.html" + "url": "https://www.drinksmixer.com/drink9899.html" }, { "directions": "Add the peach schnapps, vanilla schnapps, peach sherbet and sliced peach to a blender, and blend well. Pour into a cocktail glass, and top with whipped cream. Garnish with a maraschino cherry and serve.", @@ -93893,7 +93893,7 @@ "whipped cream" ], "title": "Peach Cicel recipe", - "url": "http://www.drinksmixer.com/drink9900.html" + "url": "https://www.drinksmixer.com/drink9900.html" }, { "directions": "Combine the rum, triple sec and 1/2 a peach (cut into quarters) in a blender. Blend and pour into a highball glass filled with ice cubes. Fill with sweet and sour mix, and serve.", @@ -93904,7 +93904,7 @@ "sweet and sour mix" ], "title": "Peachy Grace recipe", - "url": "http://www.drinksmixer.com/drink9901.html" + "url": "https://www.drinksmixer.com/drink9901.html" }, { "directions": "Pour the Stoli strawberry vodka (Strasberi) and peach brandy into a cocktail shaker half-filled with cracked ice. Shake well, and strain into a chilled cocktail glass. Garnish with a twist of lemon, and serve.", @@ -93913,7 +93913,7 @@ "peach brandy" ], "title": "Peachy Martini recipe", - "url": "http://www.drinksmixer.com/drink9902.html" + "url": "https://www.drinksmixer.com/drink9902.html" }, { "directions": "Pour the Kahlua coffee liqueur, Frangelico hazelnut liqueur and Bailey's irish cream into a hurricane glass filled with ice cubes. Fill with milk, stir well, and serve.", @@ -93924,7 +93924,7 @@ "milk" ], "title": "Peanut Butter Cup recipe", - "url": "http://www.drinksmixer.com/drink9903.html" + "url": "https://www.drinksmixer.com/drink9903.html" }, { "directions": "Pour the Dubonnet, brandy, pernod and lime juice into a cocktail shaker half-filled with ice cubes. Shake well, strain into a cocktail glass, and serve.", @@ -93935,7 +93935,7 @@ "lime juice" ], "title": "Peep Show recipe", - "url": "http://www.drinksmixer.com/drink9904.html" + "url": "https://www.drinksmixer.com/drink9904.html" }, { "directions": "Pour both ingredients into a highball glass filled with ice cubes. Stir gently, and serve.", @@ -93944,7 +93944,7 @@ "Squirt\u00ae citrus soda" ], "title": "Pee Wee Herman recipe", - "url": "http://www.drinksmixer.com/drink9905.html" + "url": "https://www.drinksmixer.com/drink9905.html" }, { "directions": "Stir ingredients together in a mixing glass half-filled with cracked ice. Strain into a chilled cocktail glass, and serve.", @@ -93955,7 +93955,7 @@ "Pernod\u00ae licorice liqueur" ], "title": "Peggy Martini recipe", - "url": "http://www.drinksmixer.com/drink9906.html" + "url": "https://www.drinksmixer.com/drink9906.html" }, { "directions": "Pour the apple pucker and vodka into a highball glass filled with cracked or cubed ice. Fill with zima, stir gently and serve.", @@ -93965,7 +93965,7 @@ "Zima" ], "title": "Pelvic Crusher recipe", - "url": "http://www.drinksmixer.com/drink9907.html" + "url": "https://www.drinksmixer.com/drink9907.html" }, { "directions": "Pour the Absolut vodka, peach schnapps, Malibu rum and grenadine into a cocktail shaker half-filled with ice cubes. Add sour mix and orange juice to taste. Shake well, and strain into a collins glass filled with ice cubes. Garnish with a maraschino cherry, and serve.", @@ -93978,7 +93978,7 @@ "orange juice" ], "title": "Peachy Screw recipe", - "url": "http://www.drinksmixer.com/drink9908.html" + "url": "https://www.drinksmixer.com/drink9908.html" }, { "directions": "Pour all ingredients together over 2 ice cubes in an old-fashioned glass. Stir and serve.", @@ -93993,7 +93993,7 @@ "milk" ], "title": "Penetrator IV recipe", - "url": "http://www.drinksmixer.com/drink9909.html" + "url": "https://www.drinksmixer.com/drink9909.html" }, { "directions": "Pour all ingredients into a cocktail shaker half-filled with ice cubes. Shake well, pour entire contents into a highball glass, and serve.", @@ -94005,7 +94005,7 @@ "pineapple juice" ], "title": "Penis Colarous recipe", - "url": "http://www.drinksmixer.com/drink9910.html" + "url": "https://www.drinksmixer.com/drink9910.html" }, { "directions": "Pour both ingredients into a highball glass, and serve.", @@ -94014,7 +94014,7 @@ "Dr. Pepper\u00ae soda" ], "title": "Pepperclear recipe", - "url": "http://www.drinksmixer.com/drink9911.html" + "url": "https://www.drinksmixer.com/drink9911.html" }, { "directions": "Pour the Stoli pepper vodka (Pertsovka) and sweet vermouth into a cocktail shaker half-filled with ice cubes. Shake well, and strain into a cocktail glass. Garnish with a maraschino cherry, and serve.", @@ -94023,7 +94023,7 @@ "sweet vermouth" ], "title": "Pepper Manhattan recipe", - "url": "http://www.drinksmixer.com/drink9912.html" + "url": "https://www.drinksmixer.com/drink9912.html" }, { "directions": "Pour the creme de menthe, white creme de cacao, Frangelico hazelnut liqueur and Bailey's irish cream into a cocktail shaker half-filled with ice cubes. Shake well, and strain into a cocktail glass. Top with milk, to taste. Garnish with a piece of kiwi, add a straw, and serve.", @@ -94035,7 +94035,7 @@ "milk" ], "title": "Peppermint Cream recipe", - "url": "http://www.drinksmixer.com/drink9913.html" + "url": "https://www.drinksmixer.com/drink9913.html" }, { "directions": "Pour the peppermint schnapps into an Irish coffee cup/mug, add the hot chocolate, and stir. Top with whipped cream, garnish with some peppermint candy, and serve.", @@ -94044,7 +94044,7 @@ "hot chocolate" ], "title": "Peppermint Hot Chocolate recipe", - "url": "http://www.drinksmixer.com/drink9914.html" + "url": "https://www.drinksmixer.com/drink9914.html" }, { "directions": "Pour both ingredients into a cocktail shaker half-filled with cracked ice. Shake well, and strain into a chilled cocktail glass. Garnish with a sprig of mint, and serve.", @@ -94053,7 +94053,7 @@ "white creme de menthe" ], "title": "Peppermint Martini recipe", - "url": "http://www.drinksmixer.com/drink9915.html" + "url": "https://www.drinksmixer.com/drink9915.html" }, { "directions": "Pour the gin and lemon juice into a cocktail shaker half-filled with ice cubes. Shake well, and strain into a large champagne flute. Top with champagne, add a straw, and serve.", @@ -94063,7 +94063,7 @@ "Champagne" ], "title": "Peppermint Park recipe", - "url": "http://www.drinksmixer.com/drink9916.html" + "url": "https://www.drinksmixer.com/drink9916.html" }, { "directions": "Combine the green creme de menthe, chocolate mint liqueur, cookies and cream with one cup of crushed ice in a blender. Blend until smooth and pour into a parfait glass. Top with whipped cream. Garnish with a chocolate cookie and a cherry, and serve.", @@ -94075,7 +94075,7 @@ "whipped cream" ], "title": "Peppermint Penguin recipe", - "url": "http://www.drinksmixer.com/drink9917.html" + "url": "https://www.drinksmixer.com/drink9917.html" }, { "directions": "Stir ingredients together in an old-fashioned glass over cracked ice, and serve.", @@ -94084,7 +94084,7 @@ "Sprite\u00ae soda" ], "title": "Peppermint Pleasure recipe", - "url": "http://www.drinksmixer.com/drink9918.html" + "url": "https://www.drinksmixer.com/drink9918.html" }, { "directions": "Pour the Stoli pepper vodka (Pertsovka) and dry vermouth into a cocktail shaker half-filled with ice cubes. Shake well, and pour into an old-fashioned glass over several ice cubes. Garnish with an olive, and serve.", @@ -94093,7 +94093,7 @@ "dry vermouth" ], "title": "Peppertini recipe", - "url": "http://www.drinksmixer.com/drink9919.html" + "url": "https://www.drinksmixer.com/drink9919.html" }, { "directions": "Pour the peppermint schnapps into a highball glass. Fill with 7-up, stir gently, and serve.", @@ -94102,7 +94102,7 @@ "7-Up\u00ae soda" ], "title": "Pep Up recipe", - "url": "http://www.drinksmixer.com/drink9920.html" + "url": "https://www.drinksmixer.com/drink9920.html" }, { "directions": "Pour the dark rum, lime juice, creme de bananes, southern comfort and lemon juice into a cocktail shaker half-filled with ice cubes. Shake well, strain into a cocktail glass, and serve.", @@ -94114,7 +94114,7 @@ "lemon juice" ], "title": "Peregrine's Peril recipe", - "url": "http://www.drinksmixer.com/drink9921.html" + "url": "https://www.drinksmixer.com/drink9921.html" }, { "directions": "Pour the Harvest pear schnapps, orange juice and vodka into a highball glass, in that order. Serve.", @@ -94124,7 +94124,7 @@ "orange juice" ], "title": "Perfect Screw recipe", - "url": "http://www.drinksmixer.com/drink9922.html" + "url": "https://www.drinksmixer.com/drink9922.html" }, { "directions": "Add the grenadine to the tonic water in a mixing glass, and mix well. Add the cherry cola and one shot of vodka at the same time. Place the 5 cherries in a seperate shot of vodka and soak for at least 10 minutes (cherries can be soaked in advance and kept in the refrigerator). Remove cherries and add this shot of vodka to the mixing glass. Stir, strain into a collins glass, and serve. Garnish with some more cherries, and serve.", @@ -94136,7 +94136,7 @@ "maraschino cherries" ], "title": "Pesticidal Cherries recipe", - "url": "http://www.drinksmixer.com/drink9923.html" + "url": "https://www.drinksmixer.com/drink9923.html" }, { "directions": "Pour both ingredients into a collins glass filled with ice cubes. Stir well, and serve.", @@ -94145,7 +94145,7 @@ "7-Up\u00ae soda" ], "title": "Phantasmic Explosion recipe", - "url": "http://www.drinksmixer.com/drink9924.html" + "url": "https://www.drinksmixer.com/drink9924.html" }, { "directions": "Stir ingredients together in an old-fashioned glass, and serve.", @@ -94154,7 +94154,7 @@ "Drambuie\u00ae Scotch whisky" ], "title": "Phillip Island Firewater recipe", - "url": "http://www.drinksmixer.com/drink9925.html" + "url": "https://www.drinksmixer.com/drink9925.html" }, { "directions": "Pour the bourbon whiskey and peach schnapps into a cocktail shaker half-filled with ice cubes. Shake well, and strain into a powder-rimmed highball glass. Add a twist of citrus fruit for flavor, and serve.", @@ -94163,7 +94163,7 @@ "peach schnapps" ], "title": "Pillow Biter recipe", - "url": "http://www.drinksmixer.com/drink9926.html" + "url": "https://www.drinksmixer.com/drink9926.html" }, { "directions": "Pour the Parfait Amour, Malibu rum, Cointreau, blue curacao and grenadine into a blender with half a cup of crushed ice. Blend until smooth. Pour into a large sugar-rimmed cocktail glass. Drizzle grenadine over the top, garnish with a slice of lemon or lime, and serve.", @@ -94175,7 +94175,7 @@ "grenadine syrup" ], "title": "Physcadelic Summer recipe", - "url": "http://www.drinksmixer.com/drink9927.html" + "url": "https://www.drinksmixer.com/drink9927.html" }, { "directions": "Pour all ingredients into a beer mug filled with ice cubes. Garnish with a slice of lemon, and serve.", @@ -94186,7 +94186,7 @@ "cranberry juice" ], "title": "Pimp Daddy recipe", - "url": "http://www.drinksmixer.com/drink9928.html" + "url": "https://www.drinksmixer.com/drink9928.html" }, { "directions": "Place the rums, crushed pineapple and ice cream in a blender with 1 1/2 cups of crushed ice. Blend until frozen; add more ice if required. Pour into a parfait glass, and serve.", @@ -94197,7 +94197,7 @@ "vanilla ice cream" ], "title": "Pina Colada Royal recipe", - "url": "http://www.drinksmixer.com/drink9929.html" + "url": "https://www.drinksmixer.com/drink9929.html" }, { "directions": "Combine all ingredients in a blender. Blend until smooth, and pour into a highball glass. Garnish with a pineapple wedge and a slice of banana, and serve.", @@ -94208,7 +94208,7 @@ "pineapple sherbet" ], "title": "Pineapple Banana Refresher recipe", - "url": "http://www.drinksmixer.com/drink9930.html" + "url": "https://www.drinksmixer.com/drink9930.html" }, { "directions": "Pour the Scotch whisky, Chambord raspberry liqueur and Ocean Spray cranberry juice cocktail into a cocktail glass with crushed ice. Add a small squeeze of fresh lime juice and stir gently. Garnish with a lime wedge, and serve.", @@ -94219,7 +94219,7 @@ "lime juice" ], "title": "La Rosa recipe", - "url": "http://www.drinksmixer.com/drink9931.html" + "url": "https://www.drinksmixer.com/drink9931.html" }, { "directions": "Stir together in a highball glass filled with ice cubes, and serve.", @@ -94230,7 +94230,7 @@ "lemonade" ], "title": "151 Reasons recipe", - "url": "http://www.drinksmixer.com/drink9932.html" + "url": "https://www.drinksmixer.com/drink9932.html" }, { "directions": "Pour both ingredients into a shot glass in equal parts, and serve.", @@ -94239,7 +94239,7 @@ "Wild Turkey\u00ae bourbon whiskey" ], "title": "252 recipe", - "url": "http://www.drinksmixer.com/drink9933.html" + "url": "https://www.drinksmixer.com/drink9933.html" }, { "directions": "Mix 2 ounces of each ingredient in a cocktail shaker/stirrer very well. Pour into a highball glass with 3-4 ice cubes, and serve. Ensure all juices are 100% pure, and not concentrated or sweetened.", @@ -94250,7 +94250,7 @@ "grape juice" ], "title": "8-Ounce Twista recipe", - "url": "http://www.drinksmixer.com/drink9934.html" + "url": "https://www.drinksmixer.com/drink9934.html" }, { "directions": "First mix lemon, lime, grapefruit and pineapple juice together in a mixing glass. Pour the Chablis white wine into a tall wine glass, and top with 7-Up. Add the juice mixture, and serve.", @@ -94263,7 +94263,7 @@ "lemon juice" ], "title": "80's Wine Cooler recipe", - "url": "http://www.drinksmixer.com/drink9935.html" + "url": "https://www.drinksmixer.com/drink9935.html" }, { "directions": "Pour the Black Haus blackberry schnapps and DeKuyper Sour Apple Pucker into a collins glass filled with ice cubes. Fill with cranberry juice, stir well, and serve.", @@ -94273,7 +94273,7 @@ "cranberry juice" ], "title": "Adam's Apple #2 recipe", - "url": "http://www.drinksmixer.com/drink9937.html" + "url": "https://www.drinksmixer.com/drink9937.html" }, { "directions": "Pour both ingredients in equal parts into a shot glass, and serve.", @@ -94282,7 +94282,7 @@ "white sambuca" ], "title": "Anaconda Shot recipe", - "url": "http://www.drinksmixer.com/drink9938.html" + "url": "https://www.drinksmixer.com/drink9938.html" }, { "directions": "Stir ingredients together gently in a highball glass, and serve.", @@ -94292,7 +94292,7 @@ "orange soda" ], "title": "Apples and Oranges recipe", - "url": "http://www.drinksmixer.com/drink9939.html" + "url": "https://www.drinksmixer.com/drink9939.html" }, { "directions": "Add all ingredients (except 151 rum) to a cocktail shaker filled with ice cubes and shake vigorously for 15-20 seconds. Pour into a large shot glass, splash with 151 rum and shoot.", @@ -94306,7 +94306,7 @@ "pineapple juice" ], "title": "Atomic Plum recipe", - "url": "http://www.drinksmixer.com/drink9940.html" + "url": "https://www.drinksmixer.com/drink9940.html" }, { "directions": "Pour all three ingredients into a cocktail shaker half-filled with ice cubes. Shake well, strain into a highball glass, and serve.", @@ -94316,7 +94316,7 @@ "orange soda" ], "title": "Bacardi O Creamsicle recipe", - "url": "http://www.drinksmixer.com/drink9941.html" + "url": "https://www.drinksmixer.com/drink9941.html" }, { "directions": "Combine all ingredients in a blender with 2-3 ice cubes. Pour over ice cubes in a tall glass. Garnish with an orange wedge and a cherry, and serve.", @@ -94332,7 +94332,7 @@ "coconut rum" ], "title": "Bahama Breeze recipe", - "url": "http://www.drinksmixer.com/drink9942.html" + "url": "https://www.drinksmixer.com/drink9942.html" }, { "directions": "Pour all ingredients into a cocktail shaker, and shake well. Pour into a pina-colada glass filled with crushed or cubed ice, and serve.", @@ -94345,7 +94345,7 @@ "grenadine syrup" ], "title": "Bahama Mama NC recipe", - "url": "http://www.drinksmixer.com/drink9943.html" + "url": "https://www.drinksmixer.com/drink9943.html" }, { "directions": "Shake all ingredients with ice in a cocktail shaker. Strain into a martini cocktail glass, and serve.", @@ -94355,7 +94355,7 @@ "creme de cacao" ], "title": "Banana Split Martini recipe", - "url": "http://www.drinksmixer.com/drink9944.html" + "url": "https://www.drinksmixer.com/drink9944.html" }, { "directions": "Crush your ice into a blender. Add the Malibu, crushed pineapple, and coconut as above. Blend until smooth, pour into a pina-colada glass, and serve.", @@ -94366,7 +94366,7 @@ "crushed ice" ], "title": "Pina Colada #3 recipe", - "url": "http://www.drinksmixer.com/drink9945.html" + "url": "https://www.drinksmixer.com/drink9945.html" }, { "directions": "Colour some regular salt by adding blue food dye. (Food dye optional.) \r", @@ -94377,7 +94377,7 @@ "Rose's\u00ae lime juice" ], "title": "Blue Diablo recipe", - "url": "http://www.drinksmixer.com/drink9946.html" + "url": "https://www.drinksmixer.com/drink9946.html" }, { "directions": "Pour the vodka and blue curacao into a highball glass half-filled with ice cubes. Top up with 7-Up or Sprite. Sprinkle salt on top, stir with a stick or straw, remove and serve.", @@ -94388,7 +94388,7 @@ "7-Up\u00ae soda" ], "title": "Blues Night recipe", - "url": "http://www.drinksmixer.com/drink9947.html" + "url": "https://www.drinksmixer.com/drink9947.html" }, { "directions": "In a pint tankard mug pour a large double shot of Pussers Rum. Top up by pouring Kronenberg 1664 Lager slowly down the side of tankard until full, and serve.", @@ -94397,7 +94397,7 @@ "Kronenberg 1664\u00ae lager" ], "title": "Bootneck recipe", - "url": "http://www.drinksmixer.com/drink9949.html" + "url": "https://www.drinksmixer.com/drink9949.html" }, { "directions": "Pour all ingredients in equal parts into a margarita glass. Serve unstirred.", @@ -94408,7 +94408,7 @@ "Kahlua\u00ae coffee liqueur" ], "title": "Boys are Stupid recipe", - "url": "http://www.drinksmixer.com/drink9950.html" + "url": "https://www.drinksmixer.com/drink9950.html" }, { "directions": "Pour all ingredients into a hurricane glass half-filled with ice. Stir well, and garnish with a slice of orange, a cherry and a piece of cantaloupe melon.", @@ -94423,7 +94423,7 @@ "Perrier\u00ae lime soda water" ], "title": "Broken Heart Zombie Mai Tai recipe", - "url": "http://www.drinksmixer.com/drink9951.html" + "url": "https://www.drinksmixer.com/drink9951.html" }, { "directions": "Stir all ingredients together in a tall glass filled with crushed ice, and serve.", @@ -94434,7 +94434,7 @@ "pineapple juice" ], "title": "Butch's Blue Lagoon #2 recipe", - "url": "http://www.drinksmixer.com/drink9952.html" + "url": "https://www.drinksmixer.com/drink9952.html" }, { "directions": "Pour the coconut rum and orange-pine-banana juice into a shot glass. Add a splash of everclear, and carefully ignite. After several seconds, extinguish, and shoot.", @@ -94445,7 +94445,7 @@ "Everclear\u00ae alcohol" ], "title": "Cap'n Togs Warning Shot recipe", - "url": "http://www.drinksmixer.com/drink9956.html" + "url": "https://www.drinksmixer.com/drink9956.html" }, { "directions": "Stir ingredients together in a collins glass half-filled with ice cubes, and serve.", @@ -94454,7 +94454,7 @@ "Ocean Spray\u00ae cranberry juice" ], "title": "Cape Cod #2 recipe", - "url": "http://www.drinksmixer.com/drink9957.html" + "url": "https://www.drinksmixer.com/drink9957.html" }, { "directions": "Stir the DeKuyper Sour Apple Pucker and Chambord raspberry liqueur together with the pine-apple juice over ice in a small collins glass. Garnish with 2 cherries, and serve.", @@ -94464,7 +94464,7 @@ "pineapple juice" ], "title": "Cherry Fucker recipe", - "url": "http://www.drinksmixer.com/drink9959.html" + "url": "https://www.drinksmixer.com/drink9959.html" }, { "directions": "Pour the tennessee whiskey, kentucky bourbon, tequila, rum and vodka into a cocktail shaker half-filled with ice cubes. Shake well, and strain into a highball glass. Add the butterscotch and apple schnapps, and serve.", @@ -94478,7 +94478,7 @@ "apple schnapps" ], "title": "Cluster Fuck recipe", - "url": "http://www.drinksmixer.com/drink9960.html" + "url": "https://www.drinksmixer.com/drink9960.html" }, { "directions": "Combine the vermouth, Southern Comfort and bitters with 2 - 3 ice cubes in a mixing glass. Stir gently, don't bruise the spirits and cloud the drink. Place a maraschino cherry in a chilled cocktail glass and strain the whiskey mixture over the cherry. Rub the cut edge of a twist of lemon peel over the rim of the glass and twist it over the drink to release the oils. Then drop it in, and serve.", @@ -94488,7 +94488,7 @@ "Angostura\u00ae bitters" ], "title": "Comfort Manhattan recipe", - "url": "http://www.drinksmixer.com/drink9961.html" + "url": "https://www.drinksmixer.com/drink9961.html" }, { "directions": "Softly stir ingredients together in a highball glass filled with ice cubes, and serve.", @@ -94498,7 +94498,7 @@ "lemon-lime soda" ], "title": "Corkscrew #2 recipe", - "url": "http://www.drinksmixer.com/drink9962.html" + "url": "https://www.drinksmixer.com/drink9962.html" }, { "directions": "Stir all ingredients together in a punch bowl and serve chilled in a cup full of ice.", @@ -94508,7 +94508,7 @@ "orange juice" ], "title": "Cranberry Twister recipe", - "url": "http://www.drinksmixer.com/drink9963.html" + "url": "https://www.drinksmixer.com/drink9963.html" }, { "directions": "Chill the jagermeister and rumplemintz in a cocktail shaker with ice, and strain into a shot glass. Top with everclear, and serve. ", @@ -94518,7 +94518,7 @@ "Everclear\u00ae alcohol" ], "title": "Crossbones recipe", - "url": "http://www.drinksmixer.com/drink9964.html" + "url": "https://www.drinksmixer.com/drink9964.html" }, { "directions": "Shake ingredients with ice, strain into a double-shot glass and serve.", @@ -94529,7 +94529,7 @@ "pineapple juice" ], "title": "Dennis the Menace recipe", - "url": "http://www.drinksmixer.com/drink9967.html" + "url": "https://www.drinksmixer.com/drink9967.html" }, { "directions": "Stir all ingredients together in an old-fashioned glass, and shoot.", @@ -94539,7 +94539,7 @@ "apple juice" ], "title": "Desert Bastard recipe", - "url": "http://www.drinksmixer.com/drink9968.html" + "url": "https://www.drinksmixer.com/drink9968.html" }, { "directions": "Shake the Dr. McGillicuddy's vanilla schnapps and gin together in a cocktail shaker. Pour into an old-fashioned or rocks glass and stir in the milk. Garnish with a cherry, and serve.", @@ -94549,7 +94549,7 @@ "milk" ], "title": "Diablo de Blanco recipe", - "url": "http://www.drinksmixer.com/drink9969.html" + "url": "https://www.drinksmixer.com/drink9969.html" }, { "directions": "Pour the Amaretto almond liqueur into a shot glass leaving at least a quarter-inch of space at the top. Slowly pour the Bacardi 151 rum on top. Have a full cup or glass of Dr. Pepper ready. Ignite the 151 rum in the shot glass, and drop the flaming shot glass into the Dr. Pepper. Drink immediately.", @@ -94559,7 +94559,7 @@ "Dr. Pepper\u00ae soda" ], "title": "Dr. Pepper Flame recipe", - "url": "http://www.drinksmixer.com/drink9970.html" + "url": "https://www.drinksmixer.com/drink9970.html" }, { "directions": "Pour the Bailey's irish cream, rum and vodka into a cocktail glass. Add milk to taste, and top with whipped cream. Add a drop of chocolate sauce, and serve.", @@ -94572,7 +94572,7 @@ "chocolate sauce" ], "title": "Eat My Pussy recipe", - "url": "http://www.drinksmixer.com/drink9971.html" + "url": "https://www.drinksmixer.com/drink9971.html" }, { "directions": "Pour the vodka, gin, rum and blue curacao into a chilled collins glass. Top off with lemonade, stir and serve.", @@ -94584,7 +94584,7 @@ "lemonade" ], "title": "Electric Lemonade #2 recipe", - "url": "http://www.drinksmixer.com/drink9973.html" + "url": "https://www.drinksmixer.com/drink9973.html" }, { "directions": "Stir ingredients together with a couple of ice cubes in a collins glass, and serve.", @@ -94594,7 +94594,7 @@ "raspberry liqueur" ], "title": "Eraser recipe", - "url": "http://www.drinksmixer.com/drink9974.html" + "url": "https://www.drinksmixer.com/drink9974.html" }, { "directions": "Pour all three ingredients into a cocktail shaker half-filled with ice cubes. Shake well, strain into an old-fashioned glass half-filled with ice cubes, and serve.", @@ -94604,7 +94604,7 @@ "grenadine syrup" ], "title": "Felix Longwater recipe", - "url": "http://www.drinksmixer.com/drink9975.html" + "url": "https://www.drinksmixer.com/drink9975.html" }, { "directions": "Pour both ingredients into a shot glass in equal parts, and serve.", @@ -94613,7 +94613,7 @@ "Goldschlager\u00ae cinnamon schnapps" ], "title": "Fire and Ice recipe", - "url": "http://www.drinksmixer.com/drink9976.html" + "url": "https://www.drinksmixer.com/drink9976.html" }, { "directions": "Add both ingredients to a shot glass. Stir to dissolve the crushed Fisherman's Friend candy tablet, and serve.", @@ -94622,7 +94622,7 @@ "Fisherman's Friend\u00ae menthol candy" ], "title": "Fisherman's Friend recipe", - "url": "http://www.drinksmixer.com/drink9977.html" + "url": "https://www.drinksmixer.com/drink9977.html" }, { "directions": "Shake the tequila, cranberry juice and the lime juice in a cocktail shaker half-filled with ice cubes. Strain into a salt-rimmed cocktail glass with a lime wedge, and serve.", @@ -94632,7 +94632,7 @@ "lime juice" ], "title": "Fisting in a Mexican Prison recipe", - "url": "http://www.drinksmixer.com/drink9978.html" + "url": "https://www.drinksmixer.com/drink9978.html" }, { "directions": "Combine all ingredients (except grenadine) together over ice in a cocktail shaker. Shake and strain into a hurricane glass filled with ice. Float grenadine on top, and serve.", @@ -94646,7 +94646,7 @@ "grenadine syrup" ], "title": "A Tropical Dream recipe", - "url": "http://www.drinksmixer.com/drink9979.html" + "url": "https://www.drinksmixer.com/drink9979.html" }, { "directions": "Shake all ingredients in a cocktail shaker half-filled with ice cubes. Strain into a cocktail glass, and serve.", @@ -94656,7 +94656,7 @@ "Bailey's\u00ae Irish cream" ], "title": "Conquistador recipe", - "url": "http://www.drinksmixer.com/drink9981.html" + "url": "https://www.drinksmixer.com/drink9981.html" }, { "directions": "Stir ingredients gently together in a chilled cocktail glass with a small amount of crushed ice, and serve.", @@ -94665,7 +94665,7 @@ "ginger ale" ], "title": "Creme Soda recipe", - "url": "http://www.drinksmixer.com/drink9983.html" + "url": "https://www.drinksmixer.com/drink9983.html" }, { "directions": "Pour the Plymouth gin and Rose's lime juice into a cocktail shaker half-filled with ice cubes. Shake well, and strain into highball glass with ice cubes. Fill with Sprite, garnish with a lime wedge, and serve.", @@ -94675,7 +94675,7 @@ "Sprite\u00ae soda" ], "title": "Fizzy Gimlet recipe", - "url": "http://www.drinksmixer.com/drink9984.html" + "url": "https://www.drinksmixer.com/drink9984.html" }, { "directions": "Pour the extra dry vermouth, 1-oz only of vodka, Campari bitters and 1-oz only of orange juice into a cocktail shaker with 5 ice cubes. Shake for 10 seconds. Add the remaining 3-oz of orange juice, 1-oz only of cranberry juice, lemon cordial and stir. Strain into a jug. Add the absinthe and ignite. Allow the flame to extinguish by itself. \r", @@ -94691,7 +94691,7 @@ "grenadine syrup" ], "title": "Flame Blazer recipe", - "url": "http://www.drinksmixer.com/drink9985.html" + "url": "https://www.drinksmixer.com/drink9985.html" }, { "directions": "Place 2 highball glasses next to each other, one right side up, and one upside down. Stack a shot glass on on in between the two highball glasses. \r", @@ -94704,7 +94704,7 @@ "Bacardi\u00ae 151 rum" ], "title": "Flaming Tiki Torch recipe", - "url": "http://www.drinksmixer.com/drink9986.html" + "url": "https://www.drinksmixer.com/drink9986.html" }, { "directions": "Pour scotch and tequila into a large shot glass. Add hot sauce, morton salt and shoot.", @@ -94715,7 +94715,7 @@ "Morton\u00ae salt" ], "title": "Freddy Kreuger recipe", - "url": "http://www.drinksmixer.com/drink9987.html" + "url": "https://www.drinksmixer.com/drink9987.html" }, { "directions": "Cut up both melons and add to blender. Blend well and strain. Add Skyy melon vodka to a cocktail shaker half-filled with ice cubes. Add about 2-4 oz of the blended melon juice. Shake well, and strain into a cocktail glass. Add a melon ball for garnish, and serve.", @@ -94725,7 +94725,7 @@ "cantaloupe melon" ], "title": "Fresh Melon Martini recipe", - "url": "http://www.drinksmixer.com/drink9988.html" + "url": "https://www.drinksmixer.com/drink9988.html" }, { "directions": "Shake all ingredients together in a cocktail shaker. Strain into a double-shot glass, and serve.", @@ -94736,7 +94736,7 @@ "pineapple juice" ], "title": "Fuzzy Iron Worker recipe", - "url": "http://www.drinksmixer.com/drink9990.html" + "url": "https://www.drinksmixer.com/drink9990.html" }, { "directions": "Fill in order into shot glass.", @@ -94746,7 +94746,7 @@ "orange juice" ], "title": "Fuzzy Worm recipe", - "url": "http://www.drinksmixer.com/drink9991.html" + "url": "https://www.drinksmixer.com/drink9991.html" }, { "directions": "Pour the tequila and pink grapefuit juice into a highball glass almost filled with ice cubes. Pouring slowly and carefully over the back of a teaspoon, float the galliano on top of the drink, and serve.", @@ -94756,7 +94756,7 @@ "Galliano\u00ae herbal liqueur" ], "title": "Sally Fudpucker recipe", - "url": "http://www.drinksmixer.com/drink9992.html" + "url": "https://www.drinksmixer.com/drink9992.html" }, { "directions": "Pour the Jack Daniel's Tennessee whiskey, Jim Beam bourbon whiskey, dry gin and Absolut vodka into a highball glass half-filled with ice cubes. Add Squirt, and serve.", @@ -94768,7 +94768,7 @@ "Squirt\u00ae citrus soda" ], "title": ".50 Caliber recipe", - "url": "http://www.drinksmixer.com/drink9993.html" + "url": "https://www.drinksmixer.com/drink9993.html" }, { "directions": "Pour the Strongbow cider and V energy drink in equal parts into an old-fashioned glass filled with ice cubes. Stir briefly, and serve.", @@ -94777,7 +94777,7 @@ "V\u00ae energy drink" ], "title": "1968 recipe", - "url": "http://www.drinksmixer.com/drink9994.html" + "url": "https://www.drinksmixer.com/drink9994.html" }, { "directions": "Pour each liquor into a seperate shot glass. Take down each shot in quick succession.", @@ -94787,7 +94787,7 @@ "Jagermeister\u00ae herbal liqueur" ], "title": "3 Strikes, You're Out recipe", - "url": "http://www.drinksmixer.com/drink9996.html" + "url": "https://www.drinksmixer.com/drink9996.html" }, { "directions": "Pour the Bacardi 151 rum into a highball glass filled with ice cubes. Add the vodka and amaretto. Fill with 7-up, and serve.", @@ -94798,7 +94798,7 @@ "7-Up\u00ae soda" ], "title": "357 Magnum recipe", - "url": "http://www.drinksmixer.com/drink9997.html" + "url": "https://www.drinksmixer.com/drink9997.html" }, { "directions": "Mix all three ingredients with ice in a chilled cocktail glass, and serve.", @@ -94808,7 +94808,7 @@ "cranberry juice" ], "title": "73 Bus recipe", - "url": "http://www.drinksmixer.com/drink9999.html" + "url": "https://www.drinksmixer.com/drink9999.html" }, { "directions": "Pour the gin, triple sec and juices into a cocktail shaker half-filled with ice cubes. Shake well, and pour straight into a cocktail glass. Unsweetened cranberry juice is best if you don't like sweet drinks.", @@ -94819,7 +94819,7 @@ "cranberry juice" ], "title": "73 Bus #2 recipe", - "url": "http://www.drinksmixer.com/drink10000.html" + "url": "https://www.drinksmixer.com/drink10000.html" }, { "directions": "Combine all ingredients in a beef pilsner. Stir together, and serve.", @@ -94830,7 +94830,7 @@ "Smirnoff\u00ae vodka" ], "title": "A Clockwork Tangerine recipe", - "url": "http://www.drinksmixer.com/drink10001.html" + "url": "https://www.drinksmixer.com/drink10001.html" }, { "directions": "Combine the Absolut vanilla vodka, Monster energy drink and ice cubes in a blender. Blend until slushy, pour into a highball glass, and serve.", @@ -94840,7 +94840,7 @@ "ice cubes" ], "title": "Absolute Monster recipe", - "url": "http://www.drinksmixer.com/drink10003.html" + "url": "https://www.drinksmixer.com/drink10003.html" }, { "directions": "Chill each ingredient. Pour into a shot glass in equal parts, and serve.", @@ -94851,7 +94851,7 @@ "Absolut\u00ae vodka" ], "title": "Absolute Suicide recipe", - "url": "http://www.drinksmixer.com/drink10004.html" + "url": "https://www.drinksmixer.com/drink10004.html" }, { "directions": "Combine all ingredients in a cocktail shaker half-filled with ice cubes. Shake well, and pour into a cocktail glass. Dust with cinnamon, and serve.", @@ -94862,7 +94862,7 @@ "cinnamon" ], "title": "Acapulco Dream Cream recipe", - "url": "http://www.drinksmixer.com/drink10005.html" + "url": "https://www.drinksmixer.com/drink10005.html" }, { "directions": "Pour the Bacardi, Moonshine and Everclear into an old-fashioned or highball glass. Add the 7-up, stir briefly, and serve.", @@ -94873,7 +94873,7 @@ "7-Up\u00ae soda" ], "title": "Acid Water recipe", - "url": "http://www.drinksmixer.com/drink10006.html" + "url": "https://www.drinksmixer.com/drink10006.html" }, { "directions": "Pour the watermelon vodka and Midori melon liqueur into a cocktail shaker half-filled with ice cubes. Shake briefly, strain into a double-sized shot glass, and serve.", @@ -94882,7 +94882,7 @@ "Midori\u00ae melon liqueur" ], "title": "African on Acid recipe", - "url": "http://www.drinksmixer.com/drink10008.html" + "url": "https://www.drinksmixer.com/drink10008.html" }, { "directions": "Pour the Di Amore amaretto, Malibu rum and Bacardi rum over 5 ice cubes in a hurricane glass. Fill the rest of the glass with orange juice and pineapple juice, to taste, and serve.", @@ -94894,7 +94894,7 @@ "pineapple juice" ], "title": "After Work Special recipe", - "url": "http://www.drinksmixer.com/drink10010.html" + "url": "https://www.drinksmixer.com/drink10010.html" }, { "directions": "Combine both ingredients in equal parts in an old-fashioned glass, and serve.", @@ -94903,7 +94903,7 @@ "Courvoisier\u00ae cognac" ], "title": "Alize Emerald recipe", - "url": "http://www.drinksmixer.com/drink10012.html" + "url": "https://www.drinksmixer.com/drink10012.html" }, { "directions": "Pour equal parts of Midori melon liqueur and pineapple juice into a shot glass. Top off with a touch of cream, and serve.", @@ -94913,7 +94913,7 @@ "cream" ], "title": "Alligator Sperm recipe", - "url": "http://www.drinksmixer.com/drink10013.html" + "url": "https://www.drinksmixer.com/drink10013.html" }, { "directions": "Combine all ingredients together in a blender with ice. Blend on high until smooth, pour into a hurricane glass, and serve.", @@ -94927,7 +94927,7 @@ "pineapple" ], "title": "Anchors Away recipe", - "url": "http://www.drinksmixer.com/drink10014.html" + "url": "https://www.drinksmixer.com/drink10014.html" }, { "directions": "Pour Canadian rye whiskey, Cointreau, sweet vermouth and bitters into a cocktail shaker half-filled with ice cubes. Stir ingredients together to chill. Strain over fresh ice in a cocktail glass, add an orange twist, and serve.", @@ -94938,7 +94938,7 @@ "Angostura\u00ae bitters" ], "title": "Andy's Manhatten recipe", - "url": "http://www.drinksmixer.com/drink10015.html" + "url": "https://www.drinksmixer.com/drink10015.html" }, { "directions": "Pour the vodka and Frangelico hazelnut liqueur into an ice-filled cocktail shaker. Shake well and strain into a cocktail glass. Serve with an orange twist.", @@ -94947,7 +94947,7 @@ "Frangelico\u00ae hazelnut liqueur" ], "title": "Angel's Kiss #2 recipe", - "url": "http://www.drinksmixer.com/drink10016.html" + "url": "https://www.drinksmixer.com/drink10016.html" }, { "directions": "Stir ingredients together in a mug with ice, and serve.", @@ -94956,7 +94956,7 @@ "Bacardi\u00ae 151 rum" ], "title": "Apple 151 recipe", - "url": "http://www.drinksmixer.com/drink10018.html" + "url": "https://www.drinksmixer.com/drink10018.html" }, { "directions": "Mix the boiling water with the single package of sour apple jell-o. Stir for 2 minutes until all dissolved. Add 2 cups of DeKuyper Sour Apple Pucker schnapps, and mix well. Pour into small cups with lids and let set overnight. Serve, preferably at parties.", @@ -94966,7 +94966,7 @@ "water" ], "title": "Apple Jell-o Shots recipe", - "url": "http://www.drinksmixer.com/drink10021.html" + "url": "https://www.drinksmixer.com/drink10021.html" }, { "directions": "Pour the apple juice into the old-fashioned glass filled previously with 3 to 5 ice cubes and add the soda. Stir before you serve. You can mix the juice and the soda in the fifty-fifty percent relation too, but it is faster energy-delivering and even healthier my way.", @@ -94975,7 +94975,7 @@ "soda" ], "title": "Apple Spritzer recipe", - "url": "http://www.drinksmixer.com/drink10023.html" + "url": "https://www.drinksmixer.com/drink10023.html" }, { "directions": "Pour the apricot brandy, Scotch whisky and sweet vermouth into an ice-filled old-fashioned glass. Stir gently and serve.", @@ -94985,7 +94985,7 @@ "sweet vermouth" ], "title": "Apricot Kiss recipe", - "url": "http://www.drinksmixer.com/drink10025.html" + "url": "https://www.drinksmixer.com/drink10025.html" }, { "directions": "Combine all ingredients in a cocktail shaker. Shake well, strain into a cocktail glass, and serve.", @@ -94996,7 +94996,7 @@ "Gordon's\u00ae gin" ], "title": "Aragorn recipe", - "url": "http://www.drinksmixer.com/drink10026.html" + "url": "https://www.drinksmixer.com/drink10026.html" }, { "directions": "Cut the cantaloupe melon into small pieces. Mix all alcohol and fruit juice in a large container such as a cooler. Slice the fruit and place in the alcohol and let marinate. Serve in a tall glass with ice and fruit as garnish.", @@ -95010,7 +95010,7 @@ "bananas" ], "title": "Attempted Suicide recipe", - "url": "http://www.drinksmixer.com/drink10028.html" + "url": "https://www.drinksmixer.com/drink10028.html" }, { "directions": "Pour the Hennessy cognac into a highball glass half-filled with ice cubes. Add the Bacardi Silver rum, top with the Coca-cola, stir briefly and serve.", @@ -95020,7 +95020,7 @@ "Coca-Cola\u00ae" ], "title": "Bacardi Daug recipe", - "url": "http://www.drinksmixer.com/drink10029.html" + "url": "https://www.drinksmixer.com/drink10029.html" }, { "directions": "Pour a glass of sprite remix into a large highball glass or any other good useful cup then add Bacardi O. Stir, add a twist or piece of orange for flavor, and serve.", @@ -95029,7 +95029,7 @@ "Bacardi\u00ae orange rum" ], "title": "Bacardi Remix recipe", - "url": "http://www.drinksmixer.com/drink10030.html" + "url": "https://www.drinksmixer.com/drink10030.html" }, { "directions": "Pour the tequila, Vana Tallin cream liqueur and vodka into a highball glass. Add the milk and cocoa powder and stir everything together. Serve with a drinkstick.", @@ -95041,7 +95041,7 @@ "cocoa powder" ], "title": "Bald Estonian recipe", - "url": "http://www.drinksmixer.com/drink10031.html" + "url": "https://www.drinksmixer.com/drink10031.html" }, { "directions": "Place the bananas and grapes into a blender and mix until it is a \"smooth\" liquid. Add the ice and blend until crushed. Add milk, mix until smooth and pour into a hurricane glass. Serve.", @@ -95052,7 +95052,7 @@ "milk" ], "title": "Banana Grape Smoothie recipe", - "url": "http://www.drinksmixer.com/drink10032.html" + "url": "https://www.drinksmixer.com/drink10032.html" }, { "directions": "Shake the creme de cacao, banana liqueur, Bailey's irish cream and milk together in a cocktail shaker. Take a cocktail glass, and swirl chocolate syrup in the glass and add ice. Pour the mixture from the cocktail shaker into the glass, top with whipped cream, and serve.", @@ -95063,7 +95063,7 @@ "milk" ], "title": "Banana Cream recipe", - "url": "http://www.drinksmixer.com/drink10034.html" + "url": "https://www.drinksmixer.com/drink10034.html" }, { "directions": "Pour equal amounts of tequila and margarita mix into separate shot glasses. Lay person back in barber shop chair. Lay towl on chest of that person. Someone is to stand behind that person and pour the shots in to that persons mouth. They close and swish to blend and drink. ", @@ -95072,7 +95072,7 @@ "strawberry margarita mix" ], "title": "Barber Chair Shot recipe", - "url": "http://www.drinksmixer.com/drink10035.html" + "url": "https://www.drinksmixer.com/drink10035.html" }, { "directions": "Build ingredients on ice in a highball glass, and serve.", @@ -95082,7 +95082,7 @@ "cranberry juice" ], "title": "Barney on Acid Highball recipe", - "url": "http://www.drinksmixer.com/drink10036.html" + "url": "https://www.drinksmixer.com/drink10036.html" }, { "directions": "Combine all ingredients in a cocktail shaker with ice. Shake well, strain into shot glasses, and serve.", @@ -95092,7 +95092,7 @@ "Smirnoff\u00ae vodka" ], "title": "Bart Simpson #2 recipe", - "url": "http://www.drinksmixer.com/drink10037.html" + "url": "https://www.drinksmixer.com/drink10037.html" }, { "directions": "Combine all ingredients in a cocktail shaker over ice. Close the shaker and shake briskly two or three times. Strain into a large (9-oz) martini or cocktail glass, and serve.", @@ -95104,7 +95104,7 @@ "cranberry juice" ], "title": "Beetle Juice recipe", - "url": "http://www.drinksmixer.com/drink10038.html" + "url": "https://www.drinksmixer.com/drink10038.html" }, { "directions": "Pour the cognac, Grand Marnier and triple sec into a highball glass in that order. Add sweet and sour mix and Sprite (or 7-Up) lemon-lime soda, both to taste. Serve.", @@ -95116,7 +95116,7 @@ "Sprite\u00ae soda" ], "title": "Beautiful Side Ride recipe", - "url": "http://www.drinksmixer.com/drink10040.html" + "url": "https://www.drinksmixer.com/drink10040.html" }, { "directions": "Fill 1/4 of a punch bowl with orange juice. Fill another 1/4 of the bowl with apple juice. Add 1/2 can of canned cherry juice, then add white rum to taste. Serve in cups. ", @@ -95127,7 +95127,7 @@ "white rum" ], "title": "Belizan Punch recipe", - "url": "http://www.drinksmixer.com/drink10043.html" + "url": "https://www.drinksmixer.com/drink10043.html" }, { "directions": "Stir ingredients together in a cocktail shaker half-filled with ice cubes. Strain into an old-fashioned glass or large shot glass, and shoot.", @@ -95138,7 +95138,7 @@ "7-Up\u00ae soda" ], "title": "Bend Me Over #2 recipe", - "url": "http://www.drinksmixer.com/drink10044.html" + "url": "https://www.drinksmixer.com/drink10044.html" }, { "directions": "Pour the gold rum and Southern Comfort into an old-fashioned glass half-filled with ice cubes. Add guava juice to taste, and serve.", @@ -95148,7 +95148,7 @@ "guava juice" ], "title": "Berryessa Blast recipe", - "url": "http://www.drinksmixer.com/drink10045.html" + "url": "https://www.drinksmixer.com/drink10045.html" }, { "directions": "Pour the pineapple juice and Captain Morgan's Parrot Bay coconut rum into a collins glass filled with ice cubes. Drizzle a little grenadine on top and throw however many cherries you like on top of that.... tastes like candy.", @@ -95159,7 +95159,7 @@ "maraschino cherries" ], "title": "Betsie Temple recipe", - "url": "http://www.drinksmixer.com/drink10046.html" + "url": "https://www.drinksmixer.com/drink10046.html" }, { "directions": "Stir ingredients together in a shot glass, and shoot.", @@ -95169,7 +95169,7 @@ "Jagermeister\u00ae herbal liqueur" ], "title": "Bin Laden #2 recipe", - "url": "http://www.drinksmixer.com/drink10047.html" + "url": "https://www.drinksmixer.com/drink10047.html" }, { "directions": "Fill a hurricane glass half-way with ice. Add the Absolut vodka and DeKuyper Cheri-Beri Pucker. Fill with lemonade, and serve.", @@ -95179,7 +95179,7 @@ "lemonade" ], "title": "Bird Bomb recipe", - "url": "http://www.drinksmixer.com/drink10048.html" + "url": "https://www.drinksmixer.com/drink10048.html" }, { "directions": "Pour the jagermeister over several ice cubes in a highball glass. Fill with Mountain Dew Pitch Black, and serve.", @@ -95188,7 +95188,7 @@ "Mountain Dew\u00ae Pitch Black soda" ], "title": "Black and Blue Buck recipe", - "url": "http://www.drinksmixer.com/drink10050.html" + "url": "https://www.drinksmixer.com/drink10050.html" }, { "directions": "Combine all ingredients in a blender. Blend until the ice is crushed and the entire drink is creamy. Pour into a collins glass. Garnish with whipped cream and cherry, and serve.", @@ -95202,7 +95202,7 @@ "ice cubes" ], "title": "Black and White Cherry recipe", - "url": "http://www.drinksmixer.com/drink10051.html" + "url": "https://www.drinksmixer.com/drink10051.html" }, { "directions": "Stir the ingredients together in a whiskey sour glass, and drink through a straw.", @@ -95214,7 +95214,7 @@ "Blue Curacao liqueur" ], "title": "Black Death recipe", - "url": "http://www.drinksmixer.com/drink10052.html" + "url": "https://www.drinksmixer.com/drink10052.html" }, { "directions": "Layer ingredients in a cocktail glass, and serve.", @@ -95225,7 +95225,7 @@ "grenadine syrup" ], "title": "Black Forest Cake recipe", - "url": "http://www.drinksmixer.com/drink10053.html" + "url": "https://www.drinksmixer.com/drink10053.html" }, { "directions": "Combine equal amounts of Opal Nera black sambuca and Goldschlager in a shot glass, and serve.", @@ -95234,7 +95234,7 @@ "Goldschlager\u00ae cinnamon schnapps" ], "title": "Black Gold #2 recipe", - "url": "http://www.drinksmixer.com/drink10054.html" + "url": "https://www.drinksmixer.com/drink10054.html" }, { "directions": "Mix the Jagermeister and Mountain Dew Pitch Black over ice in a highball glass and serve.", @@ -95243,7 +95243,7 @@ "Mountain Dew\u00ae Pitch Black soda" ], "title": "Black Nazi recipe", - "url": "http://www.drinksmixer.com/drink10055.html" + "url": "https://www.drinksmixer.com/drink10055.html" }, { "directions": "Pour the Jack Daniel's, Dr. Pepper and Coca-Cola into a beer mug (pint glass). Fill up with ice, and serve.", @@ -95253,7 +95253,7 @@ "Coca-Cola\u00ae" ], "title": "Black Tooth recipe", - "url": "http://www.drinksmixer.com/drink10056.html" + "url": "https://www.drinksmixer.com/drink10056.html" }, { "directions": "Place the liquors in seperate shot glasses. This is a series of shots; first shoot the Rumple Minze, then J\ufffdgermeister, then Goldschl\ufffdger. Do them fast, and they are very smooth. Afterwards, you will initially just taste the cinnamon of the Goldschl\ufffdger, but then the Rumple Minze's peppermint flavor seems to make a return, and it tastes like you just ate a mint.", @@ -95263,7 +95263,7 @@ "Goldschlager\u00ae cinnamon schnapps" ], "title": "Blitzkrieg recipe", - "url": "http://www.drinksmixer.com/drink10057.html" + "url": "https://www.drinksmixer.com/drink10057.html" }, { "directions": "Half-fill a highball glass with ice. Pour the grenadine around the inside of the glass and on top of the ice to give that bloody look to it. Next, add the vodka (more if you prefer), then the sour apple pucker. Add the ginger ale, and then fill with 7-up. Garnish as desired, and serve.", @@ -95275,7 +95275,7 @@ "7-Up\u00ae soda" ], "title": "Bloody Monkey recipe", - "url": "http://www.drinksmixer.com/drink10058.html" + "url": "https://www.drinksmixer.com/drink10058.html" }, { "directions": "Pour all ingredients into a cocktail shaker half-filled with ice cubes. Shake and strain into a cocktail glass, garnish with a lemon twist, and serve.", @@ -95286,7 +95286,7 @@ "lemon juice" ], "title": "Blue Balalaika recipe", - "url": "http://www.drinksmixer.com/drink10061.html" + "url": "https://www.drinksmixer.com/drink10061.html" }, { "directions": "Pour all ingredients over crushed ice in a cocktail glass, and serve.", @@ -95296,7 +95296,7 @@ "orange liqueur" ], "title": "Blue Bucky recipe", - "url": "http://www.drinksmixer.com/drink10062.html" + "url": "https://www.drinksmixer.com/drink10062.html" }, { "directions": "Pour the light rum, blue curacao, coconut milk and pineapple juice into a highball glass filled with ice cubes. Shake or stir well. Garnish with a pineapple chunk and a maraschino cherry, and serve.", @@ -95307,7 +95307,7 @@ "pineapple juice" ], "title": "Blue Downy recipe", - "url": "http://www.drinksmixer.com/drink10063.html" + "url": "https://www.drinksmixer.com/drink10063.html" }, { "directions": "Stir ingredients together with crushed ice in an old-fashioned glass, and serve.", @@ -95317,7 +95317,7 @@ "orange liqueur" ], "title": "Blue Zero recipe", - "url": "http://www.drinksmixer.com/drink10064.html" + "url": "https://www.drinksmixer.com/drink10064.html" }, { "directions": "Combine the Smirnoff blueberry vodka, triple sec and blueberry juice in a cocktail shaker half-filled with ice cubes. Shake well and strain into a cocktail glass. Top with Sprite, garnish with fresh blueberries, and serve.", @@ -95328,7 +95328,7 @@ "Sprite\u00ae soda" ], "title": "Blueberry Martini recipe", - "url": "http://www.drinksmixer.com/drink10065.html" + "url": "https://www.drinksmixer.com/drink10065.html" }, { "directions": "Combine both ingredients in equal parts in an old-fashioned glass, ice optional, and serve.", @@ -95337,7 +95337,7 @@ "black sambuca" ], "title": "Boot to the Head recipe", - "url": "http://www.drinksmixer.com/drink10067.html" + "url": "https://www.drinksmixer.com/drink10067.html" }, { "directions": "Simply pour tonic water over bourbon whiskey and serve as is or with ice. A thirst quencher.", @@ -95346,7 +95346,7 @@ "tonic water" ], "title": "Bourbon Supremo recipe", - "url": "http://www.drinksmixer.com/drink10068.html" + "url": "https://www.drinksmixer.com/drink10068.html" }, { "directions": "Pour the bourbon whiskey into a highball glass half-filled with ice cubes. Add the juice of the lime and fill with coke. Garnish with a lime wedge and serve.", @@ -95356,7 +95356,7 @@ "lime" ], "title": "Bourbonime recipe", - "url": "http://www.drinksmixer.com/drink10069.html" + "url": "https://www.drinksmixer.com/drink10069.html" }, { "directions": "Layer the midori melon liqueur, followed by Sambuca then Bailey's irish cream. Add drops of grenadine to give the effect of a bleeding brain, and serve.", @@ -95367,7 +95367,7 @@ "grenadine syrup" ], "title": "Brain Hemmorhage #2 recipe", - "url": "http://www.drinksmixer.com/drink10070.html" + "url": "https://www.drinksmixer.com/drink10070.html" }, { "directions": "Pour the vanilla vodka and DeKuyper Sour Apple Pucker into a highball glass. Fill with orange juice, and serve.", @@ -95377,7 +95377,7 @@ "orange juice" ], "title": "Brazilian Breeze recipe", - "url": "http://www.drinksmixer.com/drink10071.html" + "url": "https://www.drinksmixer.com/drink10071.html" }, { "directions": "Pour the DeKuyper Sour Apple Pucker into a tall glass. Add the Bacardi 151 rum, then add the Pepsi (alternatively, use Dr. Pepper). Stir and serve.", @@ -95387,7 +95387,7 @@ "Pepsi\u00ae cola" ], "title": "Brown Eyed Pucker recipe", - "url": "http://www.drinksmixer.com/drink10072.html" + "url": "https://www.drinksmixer.com/drink10072.html" }, { "directions": "Stir ingredients together in a highball glass, and serve.", @@ -95396,7 +95396,7 @@ "raspberry ginger ale" ], "title": "Bubblegum Delight recipe", - "url": "http://www.drinksmixer.com/drink10074.html" + "url": "https://www.drinksmixer.com/drink10074.html" }, { "directions": "Pour both ingredients into a shot glass, and shoot.", @@ -95405,7 +95405,7 @@ "Wild Turkey\u00ae bourbon whiskey" ], "title": "Buffalo Chip recipe", - "url": "http://www.drinksmixer.com/drink10075.html" + "url": "https://www.drinksmixer.com/drink10075.html" }, { "directions": "Stir ingredients together in a highball glass, and serve.", @@ -95415,7 +95415,7 @@ "Malibu\u00ae coconut rum" ], "title": "Bust Your Black Nut recipe", - "url": "http://www.drinksmixer.com/drink10077.html" + "url": "https://www.drinksmixer.com/drink10077.html" }, { "directions": "Stir the butterscotch schnapps and cream soda together in a highball glass, and serve.", @@ -95424,7 +95424,7 @@ "cream soda" ], "title": "Butterbeer recipe", - "url": "http://www.drinksmixer.com/drink10078.html" + "url": "https://www.drinksmixer.com/drink10078.html" }, { "directions": "Boil water and mix with (1) 3-oz package of Island Pineapple Jello. Mix until jello is completely dissolved. Add 3/4-cup of Malibu coconut rum. Add 1/2-cup of Cruzan pineapple rum. Mix again and pour into 2-oz plastic cups. \r", @@ -95435,7 +95435,7 @@ "Cruzan\u00ae pineapple rum" ], "title": "C-Dot's Pina Colada Jello Shot recipe", - "url": "http://www.drinksmixer.com/drink10079.html" + "url": "https://www.drinksmixer.com/drink10079.html" }, { "directions": "Pour the Malibu rum into a collins glass filled with ice cubes. Fill the glass with yellow lemonade. Stir and serve with a straw.", @@ -95444,7 +95444,7 @@ "yellow lemonade" ], "title": "California Barbie recipe", - "url": "http://www.drinksmixer.com/drink10080.html" + "url": "https://www.drinksmixer.com/drink10080.html" }, { "directions": "Pour the Kirschwasser, Canadian whisky and lemon juice into a highball glass. Fill with ginger ale, garnish with a cherry, and serve.", @@ -95455,7 +95455,7 @@ "ginger ale" ], "title": "Canada Drink recipe", - "url": "http://www.drinksmixer.com/drink10081.html" + "url": "https://www.drinksmixer.com/drink10081.html" }, { "directions": "Make the espresso and place in a cocktail shaker half-filled with ice cubes. Add the vodka, Kahlua coffee liqueur and Bailey's irish cream. Shake vigorously and strain into a cocktail glass. Serve.", @@ -95466,7 +95466,7 @@ "Bailey's\u00ae Irish cream" ], "title": "Cappucini recipe", - "url": "http://www.drinksmixer.com/drink10082.html" + "url": "https://www.drinksmixer.com/drink10082.html" }, { "directions": "Pour Captain Morgan's Original Spiced Rum and Coca-Cola into a highball glass on the rocks. Mix until the coke fizzes at the top, and serve.", @@ -95475,7 +95475,7 @@ "Coca-Cola\u00ae" ], "title": "Captain and Coke recipe", - "url": "http://www.drinksmixer.com/drink10083.html" + "url": "https://www.drinksmixer.com/drink10083.html" }, { "directions": "Pour the Captain Morgan spiced rum into a highball glass filled with ice cubes. Fill with tonic water, stir, and serve.", @@ -95484,7 +95484,7 @@ "tonic water" ], "title": "Captain and Tonic recipe", - "url": "http://www.drinksmixer.com/drink10084.html" + "url": "https://www.drinksmixer.com/drink10084.html" }, { "directions": "Empty a 16 ounce bottle and add 6 ice cubes to it. Add the Bacardi 151 rum, Captain Morgan Original spiced rum, Southern Comfort and pineapple juice. Leave enough room at the top for the foam when you shake it up. Shake until ice cubes are pretty much melted and serve. May be served on ice if desired.", @@ -95495,7 +95495,7 @@ "pineapple juice" ], "title": "Captain Jack Sparrow recipe", - "url": "http://www.drinksmixer.com/drink10085.html" + "url": "https://www.drinksmixer.com/drink10085.html" }, { "directions": "Mix all ingredients except grenadine and pour into a shot glass. Add grenadine and shoot. Shot should be blue on top and red on bottom.", @@ -95507,7 +95507,7 @@ "grenadine syrup" ], "title": "Captain on Acid recipe", - "url": "http://www.drinksmixer.com/drink10086.html" + "url": "https://www.drinksmixer.com/drink10086.html" }, { "directions": "Pour the Southern Comfort and amaretto almond liqueur into a collins glass over 1 or2 ice cubes. Fill the glass with 1/2 sweet and sour mix and 1/2 orange juice. Top with grenadine, and serve.", @@ -95519,7 +95519,7 @@ "grenadine syrup" ], "title": "Car Crash recipe", - "url": "http://www.drinksmixer.com/drink10087.html" + "url": "https://www.drinksmixer.com/drink10087.html" }, { "directions": "Combine all ingredients in a blender with ice and blend until smooth. Pour the mixture into a large cocktail glass and decorate with chocolate and caramel sauce swirls. Garnish with fresh fruit and a flower, and serve.", @@ -95532,7 +95532,7 @@ "milk" ], "title": "Caramel \"J\" recipe", - "url": "http://www.drinksmixer.com/drink10088.html" + "url": "https://www.drinksmixer.com/drink10088.html" }, { "directions": "Pour the DeKuyper Sour Apple Pucker and Buttershots into a highball glass half-filled with ice cubes. Top with 7-up, and serve.", @@ -95542,7 +95542,7 @@ "7-Up\u00ae soda" ], "title": "Caramel Apple recipe", - "url": "http://www.drinksmixer.com/drink10089.html" + "url": "https://www.drinksmixer.com/drink10089.html" }, { "directions": "Pour the Malibu coconut rum into a pina colada glass over ice. Add the pina colada mix and blue curacao; serve unstirred to see color difference, stir when ready to drink. It's very pretty. Serve with whipped cream on top if you wish. ", @@ -95552,7 +95552,7 @@ "Blue Curacao liqueur" ], "title": "Blue Dream recipe", - "url": "http://www.drinksmixer.com/drink10090.html" + "url": "https://www.drinksmixer.com/drink10090.html" }, { "directions": "Stir ingredients over ice in a highball glass, and serve.", @@ -95562,7 +95562,7 @@ "grenadine syrup" ], "title": "Caribbean Breeze #2 recipe", - "url": "http://www.drinksmixer.com/drink10091.html" + "url": "https://www.drinksmixer.com/drink10091.html" }, { "directions": "Combine all ingredients in a blender with ice. Blend well and pour into two seperate wine glasses, and serve.", @@ -95573,7 +95573,7 @@ "orange juice" ], "title": "Caribbean Splash recipe", - "url": "http://www.drinksmixer.com/drink10092.html" + "url": "https://www.drinksmixer.com/drink10092.html" }, { "directions": "Pour the Malibu coconut rum, vanilla schnapps and vodka into a highball glass. Add Sprite, and serve.", @@ -95584,7 +95584,7 @@ "Sprite\u00ae soda" ], "title": "Caribbean Delight recipe", - "url": "http://www.drinksmixer.com/drink10094.html" + "url": "https://www.drinksmixer.com/drink10094.html" }, { "directions": "Pour the Maker's Mark bourbon whiskey and triple sec into an old-fashioned glass with 2 - 3 ice cubes. Top with Sierra Mist lemon-lime soda, to taste, and serve.", @@ -95594,7 +95594,7 @@ "Sierra Mist\u00ae soda" ], "title": "Cassidy Mist recipe", - "url": "http://www.drinksmixer.com/drink10095.html" + "url": "https://www.drinksmixer.com/drink10095.html" }, { "directions": "Combine tequila, limeade and ice in a highball glass. Squeeze lime juice from the slice into mixture and then drop the rind in the glass as well. Stir and serve.", @@ -95604,7 +95604,7 @@ "lime" ], "title": "Cheaterita recipe", - "url": "http://www.drinksmixer.com/drink10097.html" + "url": "https://www.drinksmixer.com/drink10097.html" }, { "directions": "Take a pint of freshly poured cold Carling and drink (neck) half of it in one. Pause for thought. Then with out stopping pour in the entire bottle of Reef and drink the remainder at your leisure.\r", @@ -95613,7 +95613,7 @@ "Orange Reef\u00ae vodka" ], "title": "Cheef recipe", - "url": "http://www.drinksmixer.com/drink10098.html" + "url": "https://www.drinksmixer.com/drink10098.html" }, { "directions": "Pour Red bull into a beer mug. Pour the cherry vodka seperately into a shot glass, drop into the beer mug, and chug.", @@ -95622,7 +95622,7 @@ "cherry vodka" ], "title": "Cherry Bomb #5 recipe", - "url": "http://www.drinksmixer.com/drink10099.html" + "url": "https://www.drinksmixer.com/drink10099.html" }, { "directions": "Mix both the ice-cream and cherries together, and freeze in a mason jar or similar container.", @@ -95631,7 +95631,7 @@ "cherries" ], "title": "Cherry Ice-Cream recipe", - "url": "http://www.drinksmixer.com/drink10101.html" + "url": "https://www.drinksmixer.com/drink10101.html" }, { "directions": "Pour the Malibu coconut rum and Everclear into a cup. Add Cherry Coke, and serve. ", @@ -95641,7 +95641,7 @@ "Coca-Cola\u00ae Cherry Coke" ], "title": "Cherry Paradise recipe", - "url": "http://www.drinksmixer.com/drink10102.html" + "url": "https://www.drinksmixer.com/drink10102.html" }, { "directions": "Pour Crown Royal Canadian whisky over ice (preferably 3-4 cubes), add Cherry Coca-Cola, stir lightly, and serve.", @@ -95650,7 +95650,7 @@ "Coca-Cola\u00ae Cherry Coke" ], "title": "Cherry Popper #3 recipe", - "url": "http://www.drinksmixer.com/drink10103.html" + "url": "https://www.drinksmixer.com/drink10103.html" }, { "directions": "Mix the Jell-o, water, and vodka. Do not boil the water, do not let the jell-o solidify. Prepare a funnel for the beer, pour a double shot of the mix in the top and funnel it! If a funnel isn't readily available pour the mix in a double shot glass, drop the shot glass in a full beer cup and chug it all. Don't puss out - pop that cherry.", @@ -95661,7 +95661,7 @@ "beer" ], "title": "Cherry Poppers recipe", - "url": "http://www.drinksmixer.com/drink10104.html" + "url": "https://www.drinksmixer.com/drink10104.html" }, { "directions": "Pour the cherry juice into the old-fashioned glass filled previously with 3 to 5 ice cubes and add the mineral water. Stir before you serve. You can mix the juice and the mineral water in the fifty-fifty percent relation too, but it is faster energy-delivering and even healthier this way.", @@ -95670,7 +95670,7 @@ "mineral water" ], "title": "Cherry Spritzer recipe", - "url": "http://www.drinksmixer.com/drink10105.html" + "url": "https://www.drinksmixer.com/drink10105.html" }, { "directions": "Build as listed, garnish with orange, then scream like a wookie.", @@ -95682,7 +95682,7 @@ "orange soda" ], "title": "Chewbacca recipe", - "url": "http://www.drinksmixer.com/drink10106.html" + "url": "https://www.drinksmixer.com/drink10106.html" }, { "directions": "Combine all ingredients in a cocktail shaker half-filled with ice cubes. Stir, pour into a chilled cocktail glass, and serve. ", @@ -95694,7 +95694,7 @@ "half-and-half" ], "title": "Chocolate Candy recipe", - "url": "http://www.drinksmixer.com/drink10107.html" + "url": "https://www.drinksmixer.com/drink10107.html" }, { "directions": "Pour the Godiva milk chocolate liqueur into a shot glass. Float the Rumple Minze on top. Tastes just like a chocolate covered candy cane.", @@ -95703,7 +95703,7 @@ "Rumple Minze\u00ae peppermint liqueur" ], "title": "Chocolate Covered Candy Cane recipe", - "url": "http://www.drinksmixer.com/drink10108.html" + "url": "https://www.drinksmixer.com/drink10108.html" }, { "directions": "Combine the milk, ice cream and brownie in a blender and blend for at least 30 seconds. Let the froth settle before pouring into a tall glass. Add a mountain of whipped cream to the top and scatter the flaked chocolate onto the top.", @@ -95715,7 +95715,7 @@ "chocolate" ], "title": "Chocolate Fudge Shake recipe", - "url": "http://www.drinksmixer.com/drink10109.html" + "url": "https://www.drinksmixer.com/drink10109.html" }, { "directions": "Blend ingredients in a blender until smooth. Serve in a chilled wine goblet.", @@ -95726,7 +95726,7 @@ "chocolate ice cream" ], "title": "Chocolate Pirate recipe", - "url": "http://www.drinksmixer.com/drink10110.html" + "url": "https://www.drinksmixer.com/drink10110.html" }, { "directions": "Combine both ingredients in a shot glass. Stir lightly, and serve.", @@ -95735,7 +95735,7 @@ "DeKuyper\u00ae triple sec" ], "title": "Chokorange recipe", - "url": "http://www.drinksmixer.com/drink10111.html" + "url": "https://www.drinksmixer.com/drink10111.html" }, { "directions": "Add the spiced rum, Malibu coconut rum, orange juice, lemon juice, lime juice and sugar to a cocktail shaker with ice. Shake and strain into a collins glass with ice. Fill with 7-up, and serve.", @@ -95749,7 +95749,7 @@ "7-Up\u00ae soda" ], "title": "Citrus Rum Cooler recipe", - "url": "http://www.drinksmixer.com/drink10115.html" + "url": "https://www.drinksmixer.com/drink10115.html" }, { "directions": "Pour the raspberry lemonade into a highball glass with several ice cubes. Add the vodka's by stirring in as you pour, and serve.", @@ -95759,7 +95759,7 @@ "Smirnoff\u00ae Watermelon Twist vodka" ], "title": "Cock 'n Balls recipe", - "url": "http://www.drinksmixer.com/drink10116.html" + "url": "https://www.drinksmixer.com/drink10116.html" }, { "directions": "Combine ingredients in a cocktail shaker and stir. Strain over ice into a collins glass. Garnish with an orange wheel, and serve.", @@ -95770,7 +95770,7 @@ "180\u00ae citrus energy drink" ], "title": "Cocky Carrot recipe", - "url": "http://www.drinksmixer.com/drink10117.html" + "url": "https://www.drinksmixer.com/drink10117.html" }, { "directions": "Pour the Stolichnaya (Stoli) vodka into a highball glass over 5 ice cubes. Fill with Lemon Perrier, and add the juice extracted from half a lemon. Stir and serve. ", @@ -95780,7 +95780,7 @@ "lemon juice" ], "title": "Cool Breeze recipe", - "url": "http://www.drinksmixer.com/drink10121.html" + "url": "https://www.drinksmixer.com/drink10121.html" }, { "directions": "Combine all ingredients in a cocktail or martini shaker with ice and 2 squeezed lime wedges. Shake violently for 10 seconds. Strain into a martini or cocktail glass garnished with a lemon twist, and serve.", @@ -95790,7 +95790,7 @@ "cranberry juice" ], "title": "Cosmopolitan Cocktail #4 recipe", - "url": "http://www.drinksmixer.com/drink10123.html" + "url": "https://www.drinksmixer.com/drink10123.html" }, { "directions": "Add vodka and DeKuyper Sour Apple Pucker to an ice-filled cocktail or martini shaker. Splash enough cranberry juice to give red tint. Shake and strain into a cocktail glass, and serve.", @@ -95800,7 +95800,7 @@ "cranberry juice" ], "title": "Cranapple Martini recipe", - "url": "http://www.drinksmixer.com/drink10124.html" + "url": "https://www.drinksmixer.com/drink10124.html" }, { "directions": "Pour Canadian Club whisky into shot glasses, and top with Maple Syrup. For added flavour, stir with a cinammon stick.", @@ -95809,7 +95809,7 @@ "maple syrup" ], "title": "Crazy Moose recipe", - "url": "http://www.drinksmixer.com/drink10125.html" + "url": "https://www.drinksmixer.com/drink10125.html" }, { "directions": "Pour the Jim Beam Bourbon whiskey into a highball glass. Add the Sierra Mist and a couple of ice cubes, and serve.", @@ -95818,7 +95818,7 @@ "Sierra Mist\u00ae soda" ], "title": "Crazy Ninja recipe", - "url": "http://www.drinksmixer.com/drink10126.html" + "url": "https://www.drinksmixer.com/drink10126.html" }, { "directions": "Place ice and vodka in a highball glass. Fill to top with orange soda, and serve.", @@ -95827,7 +95827,7 @@ "orange soda" ], "title": "Creamsicle #6 recipe", - "url": "http://www.drinksmixer.com/drink10127.html" + "url": "https://www.drinksmixer.com/drink10127.html" }, { "directions": "Combine all ingredients in a cocktail shaker or blender with crushed ice, depending whether you want it chilled or not. May have to adjust orange juice and cream for taste, whether you like it tart or not. These are just approx. on juice and cream. Excellent drink for the person who likes creamy drinks.", @@ -95838,7 +95838,7 @@ "orange juice" ], "title": "Creamsicle #7 recipe", - "url": "http://www.drinksmixer.com/drink10128.html" + "url": "https://www.drinksmixer.com/drink10128.html" }, { "directions": "Combine all three ingredients in a large pint glass, stir quickly and chug.", @@ -95848,7 +95848,7 @@ "Bud Light\u00ae lager" ], "title": "D.W.I. recipe", - "url": "http://www.drinksmixer.com/drink10131.html" + "url": "https://www.drinksmixer.com/drink10131.html" }, { "directions": "Pour ingredients into an iced mixing glass. Serve on rocks.", @@ -95859,7 +95859,7 @@ "Irish cream" ], "title": "Dana's Nicotine Fit recipe", - "url": "http://www.drinksmixer.com/drink10132.html" + "url": "https://www.drinksmixer.com/drink10132.html" }, { "directions": "Layer in order; butterscotch first, irish cream, jagermeister, vodka into a shot glass, and serve.", @@ -95870,7 +95870,7 @@ "Irish cream" ], "title": "Dark and Veiny recipe", - "url": "http://www.drinksmixer.com/drink10133.html" + "url": "https://www.drinksmixer.com/drink10133.html" }, { "directions": "Mix the blue curacao, peach schnapps and orange juice together in a mixing glass. Pour over crushed ice in an old-fashioned glass or large cocktail glass, and serve.", @@ -95880,7 +95880,7 @@ "orange juice" ], "title": "Davey Crockett recipe", - "url": "http://www.drinksmixer.com/drink10134.html" + "url": "https://www.drinksmixer.com/drink10134.html" }, { "directions": "Pour the jagermeister into a shot glass. Drop into a pint of Blue Moon Belgian ale, and serve.", @@ -95889,7 +95889,7 @@ "Jagermeister\u00ae herbal liqueur" ], "title": "Deer's Tounge recipe", - "url": "http://www.drinksmixer.com/drink10136.html" + "url": "https://www.drinksmixer.com/drink10136.html" }, { "directions": "Combine all ingredients in an old-fashioned or lowball glass; ignite, extinguish and serve.", @@ -95901,7 +95901,7 @@ "limes" ], "title": "Detroit Fermi recipe", - "url": "http://www.drinksmixer.com/drink10137.html" + "url": "https://www.drinksmixer.com/drink10137.html" }, { "directions": "Mix everything in a large bowl with lots of ice. Serve into punch cups or glasses and drink through straws.", @@ -95913,7 +95913,7 @@ "white rum" ], "title": "Devil's Blood recipe", - "url": "http://www.drinksmixer.com/drink10138.html" + "url": "https://www.drinksmixer.com/drink10138.html" }, { "directions": "Fill a hurricane glass with ice add all ingredients. Shake or stir vigorously. Top with lemonade, to taste, and serve.", @@ -95926,7 +95926,7 @@ "lemonade" ], "title": "Dib Dab recipe", - "url": "http://www.drinksmixer.com/drink10139.html" + "url": "https://www.drinksmixer.com/drink10139.html" }, { "directions": "Pour Newfoundland Screech dark rum and Kahlua coffee liqueur over ice in a cocktail glass. Fill with milk or light cream, stir and serve.", @@ -95936,7 +95936,7 @@ "milk" ], "title": "Dirty Grandmother recipe", - "url": "http://www.drinksmixer.com/drink10141.html" + "url": "https://www.drinksmixer.com/drink10141.html" }, { "directions": "Mix the firewater and pina colada mix in a shaker with ice. Strain into a cocktail glass and serve. ", @@ -95945,7 +95945,7 @@ "pina colada mix" ], "title": "Double Bubble recipe", - "url": "http://www.drinksmixer.com/drink10143.html" + "url": "https://www.drinksmixer.com/drink10143.html" }, { "directions": "Shake the Absolut vodka, Kahlua coffee liqueur, espresso coffee and chocolate topping with ice and strain into a chilled cocktail glass. In a fresh shaker, shake cream and DeKuyper Buttershots (butterscotch liqueur) until thickened and float on top of the chocolate mix. Garnish with grated chocolate and chocoloate topping, and serve.", @@ -95959,7 +95959,7 @@ "chocolate" ], "title": "Double Fudge Martini #2 recipe", - "url": "http://www.drinksmixer.com/drink10144.html" + "url": "https://www.drinksmixer.com/drink10144.html" }, { "directions": "Stir ingredients together in a glass and serve.", @@ -95968,7 +95968,7 @@ "Coca-Cola\u00ae" ], "title": "Douchebag recipe", - "url": "http://www.drinksmixer.com/drink10145.html" + "url": "https://www.drinksmixer.com/drink10145.html" }, { "directions": "Pour ingredients in equal parts into a cocktail glass; stir and serve.", @@ -95977,7 +95977,7 @@ "Jagermeister\u00ae herbal liqueur" ], "title": "Dr. Jager recipe", - "url": "http://www.drinksmixer.com/drink10146.html" + "url": "https://www.drinksmixer.com/drink10146.html" }, { "directions": "Place a 1-oz shot glass filled with amaretto almond liqueur into an old-fashioned glass. Place beer around the shot; fill with cola, and chug.", @@ -95987,7 +95987,7 @@ "cola" ], "title": "Dr. Pepper #6 recipe", - "url": "http://www.drinksmixer.com/drink10147.html" + "url": "https://www.drinksmixer.com/drink10147.html" }, { "directions": "Fill a shot glass 2/3 full with the blackberry liquor, pour the absinthe over the back of a spoon with the spoon just touching the top of the liquor in order to create a layer of the absinthe on top of the liquor. Serve.", @@ -95996,7 +95996,7 @@ "absinthe herbal liqueur" ], "title": "Dragon's Breath recipe", - "url": "http://www.drinksmixer.com/drink10148.html" + "url": "https://www.drinksmixer.com/drink10148.html" }, { "directions": "Mix hot water and jello. Add liqueur. Pour into 2 ounce glasses or cups. Serve after the jello has set.", @@ -96006,7 +96006,7 @@ "vanilla liqueur" ], "title": "Dreamsicle Jello Shots recipe", - "url": "http://www.drinksmixer.com/drink10149.html" + "url": "https://www.drinksmixer.com/drink10149.html" }, { "directions": "In a 12 - 16 oz coffee mug or glass, add the Bailey's irish cream, Crown Royal Canadian whisky, Kahlua coffee liqueur and almost fill with brewed coffeee made less than 1 hour beforehand. Top with whipped cream; drizzle creme de cacao on top and serve.", @@ -96019,7 +96019,7 @@ "coffee" ], "title": "Duck Fart Coffee recipe", - "url": "http://www.drinksmixer.com/drink10150.html" + "url": "https://www.drinksmixer.com/drink10150.html" }, { "directions": "Add crushed ice, gin, vodka, and red bull to a cocktail shaker, or use two glasses to mix. Pour into a collins glass over ice, add a splash of grenadine and garnish with cherries.", @@ -96031,7 +96031,7 @@ "grenadine syrup" ], "title": "El Torro Loco recipe", - "url": "http://www.drinksmixer.com/drink10152.html" + "url": "https://www.drinksmixer.com/drink10152.html" }, { "directions": "Muddle the kumquats in the bottom of a mixing glass. Add the other ingredients and shake vigorously. Double strain into a collins glass, and serve.", @@ -96044,7 +96044,7 @@ "gomme syrup" ], "title": "Emily Emily recipe", - "url": "http://www.drinksmixer.com/drink10155.html" + "url": "https://www.drinksmixer.com/drink10155.html" }, { "directions": "Carefully layer the Kahlua coffee liqueur over the Dr. McGillicuddy's Vanilla Schnapps in a shot glass. Serve.", @@ -96053,7 +96053,7 @@ "Kahlua\u00ae coffee liqueur" ], "title": "Black and White Shot recipe", - "url": "http://www.drinksmixer.com/drink10158.html" + "url": "https://www.drinksmixer.com/drink10158.html" }, { "directions": "Stir ingredients together in equal parts in a shot glass, and shoot.", @@ -96062,7 +96062,7 @@ "Aftershock\u00ae Hot & Cool cinnamon schnapps" ], "title": "Evershock recipe", - "url": "http://www.drinksmixer.com/drink10159.html" + "url": "https://www.drinksmixer.com/drink10159.html" }, { "directions": "Shake all but the Sprite in a cocktail shaker with ice. Pour over a glass half-filled with ice cubes. Add the Sprite to taste, and a maraschino cherry, and serve.", @@ -96075,7 +96075,7 @@ "Sprite\u00ae soda" ], "title": "Fashion Victim recipe", - "url": "http://www.drinksmixer.com/drink10161.html" + "url": "https://www.drinksmixer.com/drink10161.html" }, { "directions": "Pour the Bacardi 151 rum into a freshly opened bottle of Corona lager. Fill to the brim with Tabasco sauce. Serve cold, lime optional.", @@ -96085,7 +96085,7 @@ "Tabasco\u00ae sauce" ], "title": "Fiery Hot Anus recipe", - "url": "http://www.drinksmixer.com/drink10163.html" + "url": "https://www.drinksmixer.com/drink10163.html" }, { "directions": "Pour habenero sauce into a shot glass; add everclear. Dash cayenne pepper on top and serve.", @@ -96095,7 +96095,7 @@ "cayenne peppers" ], "title": "Fire in the Hole recipe", - "url": "http://www.drinksmixer.com/drink10164.html" + "url": "https://www.drinksmixer.com/drink10164.html" }, { "directions": "Blend the Jack Daniel's Tennessee whiskey, grenadine and Kahlua coffee liqueur together with the ice. Pour into a whiskey sour glass; layer the melted caramel on top, then add the 151. Ignite, and serve.", @@ -96108,7 +96108,7 @@ "Bacardi\u00ae 151 rum" ], "title": "Flaming Duck Quiff recipe", - "url": "http://www.drinksmixer.com/drink10165.html" + "url": "https://www.drinksmixer.com/drink10165.html" }, { "directions": "Fill a shot glass three-quarters full with creme de cacao. Top with Bacardi 151 rum and ignite. Allow to burn for 10- 20 seconds, extinguish and serve.", @@ -96117,7 +96117,7 @@ "Bacardi\u00ae 151 rum" ], "title": "Flaming Hot Chocolate recipe", - "url": "http://www.drinksmixer.com/drink10166.html" + "url": "https://www.drinksmixer.com/drink10166.html" }, { "directions": "Pour the grapefruit juice and Yukon Jack into an old-fashioned glass half-filled with ice cubes. Stir and serve.", @@ -96126,7 +96126,7 @@ "Yukon Jack\u00ae Canadian whisky" ], "title": "Flatlander's Folly recipe", - "url": "http://www.drinksmixer.com/drink10168.html" + "url": "https://www.drinksmixer.com/drink10168.html" }, { "directions": "Combine all ingredients with 5 - 10 ice cubes in a blender. Blend until the ice is melted or close to it. The ice will melt soon anyway but leave the drink nice and cold. By the time the ice melts during blending it should have some nice head on it. (Hence the foamy.) Serve in glass of choice and enjoy.", @@ -96138,7 +96138,7 @@ "7-Up\u00ae soda" ], "title": "Foamy Irishman recipe", - "url": "http://www.drinksmixer.com/drink10169.html" + "url": "https://www.drinksmixer.com/drink10169.html" }, { "directions": "Pour the sambuca into the bottle of a beer mug. Slowly add the Guinness to float it on top. Serve.", @@ -96147,7 +96147,7 @@ "Guinness\u00ae stout" ], "title": "Freak Show recipe", - "url": "http://www.drinksmixer.com/drink10170.html" + "url": "https://www.drinksmixer.com/drink10170.html" }, { "directions": "Combine all ingredients together in a blender. Blend until smooth and pour into a tall glass. Top with whipped cream, and serve.", @@ -96159,7 +96159,7 @@ "vanilla ice cream" ], "title": "Frozen Dreamsicle recipe", - "url": "http://www.drinksmixer.com/drink10171.html" + "url": "https://www.drinksmixer.com/drink10171.html" }, { "directions": "Pour the Canadian whisky over ice into an old-fashioned glass. Add the sweet vermouth, amaretto and Yukon Jack. Top with a cherry, stir and serve.", @@ -96170,7 +96170,7 @@ "Yukon Jack\u00ae Canadian whisky" ], "title": "Gay Mountie recipe", - "url": "http://www.drinksmixer.com/drink10173.html" + "url": "https://www.drinksmixer.com/drink10173.html" }, { "directions": "Pour both ingredients in equal parts into a shot glass, stir and serve.", @@ -96179,7 +96179,7 @@ "Goldschlager\u00ae cinnamon schnapps" ], "title": "German Mouthwash recipe", - "url": "http://www.drinksmixer.com/drink10174.html" + "url": "https://www.drinksmixer.com/drink10174.html" }, { "directions": "Stir all ingredients together in an old-fashioned glass almost filled with ice cubes, and serve.", @@ -96190,7 +96190,7 @@ "Coca-Cola\u00ae" ], "title": "Gil's Revenge recipe", - "url": "http://www.drinksmixer.com/drink10175.html" + "url": "https://www.drinksmixer.com/drink10175.html" }, { "directions": "Combine the vodka, rum, raspberry liqueur, triple sec, peach schnapps, and cranberry liqueur in a cocktail shaker filled with ice. Shake well for about 1 to 2 minutes. Pour into a highball glass half-filled with ice. Garnish with a strawberry and orange slice.", @@ -96206,7 +96206,7 @@ "orange" ], "title": "Ginein's Raspberry Surprise recipe", - "url": "http://www.drinksmixer.com/drink10176.html" + "url": "https://www.drinksmixer.com/drink10176.html" }, { "directions": "Add the gin to the lemonade in a pitcher. Serve into glasses or cups.", @@ -96215,7 +96215,7 @@ "lemonade" ], "title": "Ginemade recipe", - "url": "http://www.drinksmixer.com/drink10177.html" + "url": "https://www.drinksmixer.com/drink10177.html" }, { "directions": "Pour the amaretto almond liqueur and irish cream into a highball glass 3/4 filled with ice cubes. Fill with ginger ale, to taste, stir briskly and serve.", @@ -96225,7 +96225,7 @@ "Schweppes\u00ae ginger ale" ], "title": "Ginger Float recipe", - "url": "http://www.drinksmixer.com/drink10178.html" + "url": "https://www.drinksmixer.com/drink10178.html" }, { "directions": "Pour the Dr McGillicuddy's mint schnapps over 3 or 4 ice cubes in an 8-oz old-fashioned or lowball glass. Add ginger ale, more to taste if desired, and stir lightly. Serve.", @@ -96234,7 +96234,7 @@ "Dr. Mcgillicuddy's\u00ae Mentholmint schnapps" ], "title": "Gingermint recipe", - "url": "http://www.drinksmixer.com/drink10179.html" + "url": "https://www.drinksmixer.com/drink10179.html" }, { "directions": "Combine all ingredients (except passion-fruit) in a blender. Blend well and stop. Add passion-fruit, blend again quickly in order to keep seeds intact. Pour into cocktail glasses, and serve.", @@ -96246,7 +96246,7 @@ "ice" ], "title": "Giraffe snot recipe", - "url": "http://www.drinksmixer.com/drink10180.html" + "url": "https://www.drinksmixer.com/drink10180.html" }, { "directions": "Fill a highball glass with ice. Add rum and mango nectar. Top off glass with pineapple juice. Stir. Garnish with a slice of pineapple, and serve.", @@ -96256,7 +96256,7 @@ "pineapple juice" ], "title": "Go-Go Girl recipe", - "url": "http://www.drinksmixer.com/drink10181.html" + "url": "https://www.drinksmixer.com/drink10181.html" }, { "directions": "Shake the Chardonnay, the banana liqueur and the vodka together in a cocktail shaker with 2 ice cubes for 30 seconds. Pour into a cocktail glass with a cherry at the bottom, and serve.", @@ -96267,7 +96267,7 @@ "cherry" ], "title": "Gold Wizard recipe", - "url": "http://www.drinksmixer.com/drink10182.html" + "url": "https://www.drinksmixer.com/drink10182.html" }, { "directions": "Combine all ingredients in a cocktail shaker. Shake well, strain into cocktail glasses, and serve.", @@ -96279,7 +96279,7 @@ "Yellow Chartreuse\u00ae" ], "title": "Golden Martini recipe", - "url": "http://www.drinksmixer.com/drink10183.html" + "url": "https://www.drinksmixer.com/drink10183.html" }, { "directions": "Combine both ingredients over crushed ice in a collins glass, and serve.", @@ -96288,7 +96288,7 @@ "lemonade" ], "title": "Golden Salsa recipe", - "url": "http://www.drinksmixer.com/drink10184.html" + "url": "https://www.drinksmixer.com/drink10184.html" }, { "directions": "Pour the Bacardi gold rum and Bacardi Coco rum, along with the pineapple juice into a cocktail shaker half-filled with ice cubes. Shake untill well chilled. Strain into a highball glass filled with ice cubes, and add a splash of sweet and sour mix. Stir lightly and serve.", @@ -96299,7 +96299,7 @@ "sweet and sour mix" ], "title": "Goombay Smash #3 recipe", - "url": "http://www.drinksmixer.com/drink10185.html" + "url": "https://www.drinksmixer.com/drink10185.html" }, { "directions": "Dissolve the jello in the boiling water. Add the DeKuyper Buttershots and stir. Pour into small cups and refrigerate.", @@ -96309,7 +96309,7 @@ "DeKuyper\u00ae Buttershots liqueur" ], "title": "Green Apple and Butter Jello Shots recipe", - "url": "http://www.drinksmixer.com/drink10186.html" + "url": "https://www.drinksmixer.com/drink10186.html" }, { "directions": "Pour all ingredients into a cocktail shaker half-filled with ice cubes. Shake well and pour over ice cubes in an old-fashioned glass. Serve with a lime wedge.", @@ -96321,7 +96321,7 @@ "sweet and sour mix" ], "title": "Green Goblin Cocktail recipe", - "url": "http://www.drinksmixer.com/drink10187.html" + "url": "https://www.drinksmixer.com/drink10187.html" }, { "directions": "Layer the McGuinness melon liqueur and Phillips butterscotch schnapps in a shot glass. Add a splash of ginger ale, and serve.", @@ -96331,7 +96331,7 @@ "ginger ale" ], "title": "Green Hornet Shot recipe", - "url": "http://www.drinksmixer.com/drink10188.html" + "url": "https://www.drinksmixer.com/drink10188.html" }, { "directions": "Combine either Wild Turkey 151 or Bacardi 151 proof rum with the green chartreuse in an old-fashioned rocks glass or serve up in a cocktail glass.", @@ -96340,7 +96340,7 @@ "Green Chartreuse\u00ae" ], "title": "Green Lizard recipe", - "url": "http://www.drinksmixer.com/drink10189.html" + "url": "https://www.drinksmixer.com/drink10189.html" }, { "directions": "Mix the benedictine, gin and lemon juice together in a mixing glass. Sweeten to taste. Pour into shot glass(es), and serve.", @@ -96351,7 +96351,7 @@ "sugar" ], "title": "Guillotine Shot recipe", - "url": "http://www.drinksmixer.com/drink10191.html" + "url": "https://www.drinksmixer.com/drink10191.html" }, { "directions": "Stir ingredients together in a margarita glass, and serve.", @@ -96360,7 +96360,7 @@ "hazelnut liqueur" ], "title": "Hair Dryer recipe", - "url": "http://www.drinksmixer.com/drink10192.html" + "url": "https://www.drinksmixer.com/drink10192.html" }, { "directions": "Pour the Captain Morgan's Parrot Bay Mango rum and orange juice into a collins glass half-filled with ice cubes. Add a chunk of mango, or cubes, and stir. Add more rum to taste if desired. Serve.", @@ -96370,7 +96370,7 @@ "mango" ], "title": "Abbi's Tropical Delight recipe", - "url": "http://www.drinksmixer.com/drink10194.html" + "url": "https://www.drinksmixer.com/drink10194.html" }, { "directions": "Combine all ingredients in a blender. Blend well until smooth and pour into a pitcher. Serve in glasses of choice.", @@ -96384,7 +96384,7 @@ "ice" ], "title": "Hairy Wookie recipe", - "url": "http://www.drinksmixer.com/drink10195.html" + "url": "https://www.drinksmixer.com/drink10195.html" }, { "directions": "Fill a highball glass with ice. Build drink, in order, topping it with the Wild Turkey 101. A couple of extra lemons don't hurt, either.", @@ -96398,7 +96398,7 @@ "Wild Turkey\u00ae 101 bourbon whiskey" ], "title": "Han Solo recipe", - "url": "http://www.drinksmixer.com/drink10196.html" + "url": "https://www.drinksmixer.com/drink10196.html" }, { "directions": "Combine the schnapps and Malibu rum in a highball glass; add in the pineapple juice. Add in the mango nectar and guava juice til the taste is suitable (may want to go light on the guava juice for it's heavy distinctive taste) then top off with a splash of passion fruit juice, and serve.", @@ -96411,7 +96411,7 @@ "Ceres\u00ae passion-fruit juice" ], "title": "Happy Juice recipe", - "url": "http://www.drinksmixer.com/drink10197.html" + "url": "https://www.drinksmixer.com/drink10197.html" }, { "directions": "Combine the tuaca, triple sec and Bailey's irish cream in a cocktail shaker half-filled with ice cubes. Shake well, strain into a cocktail glass, and serve.", @@ -96421,7 +96421,7 @@ "Bailey's\u00ae Irish cream" ], "title": "Hard Dreamsicle recipe", - "url": "http://www.drinksmixer.com/drink10198.html" + "url": "https://www.drinksmixer.com/drink10198.html" }, { "directions": "Place all ingredients in a blender with one cup of ice. Blend at the highest setting. Serve in a hurricane glass with a straw, and garnish with lemon and/or strawberry. (Make sure if you don't get La Paz strawberry margarita mix, that you get a margarita mix that has strawberry puree, otherwise the drink isn't as good).", @@ -96433,7 +96433,7 @@ "vodka" ], "title": "Hard Strawberry Lemonade recipe", - "url": "http://www.drinksmixer.com/drink10199.html" + "url": "https://www.drinksmixer.com/drink10199.html" }, { "directions": "Pour the Malibu coconut rum into a collins glass filled with ice cubes. Add the Dole pineapple juice and tonic water, and stir. Place a chunk of pineapple on the top, and serve with a straw.", @@ -96444,7 +96444,7 @@ "pineapple" ], "title": "Hawaiian Barbie recipe", - "url": "http://www.drinksmixer.com/drink10200.html" + "url": "https://www.drinksmixer.com/drink10200.html" }, { "directions": "Pour the Bacardi flavored rums into a cocktail shaker half-filled with ice cubes. Add the cranberry juice and pineapple juice and shake well. Strain into a hurricane glass filled with ice cubes, and serve.", @@ -96457,7 +96457,7 @@ "pineapple juice" ], "title": "Bacardi Hawaiian Punch recipe", - "url": "http://www.drinksmixer.com/drink10202.html" + "url": "https://www.drinksmixer.com/drink10202.html" }, { "directions": "Shake ingredients together in a cocktail shaker with ice cubes. Strain into a shot glass, and serve.", @@ -96466,7 +96466,7 @@ "Inferno\u00ae Pepper Pot vodka" ], "title": "Heaven and Hell recipe", - "url": "http://www.drinksmixer.com/drink10203.html" + "url": "https://www.drinksmixer.com/drink10203.html" }, { "directions": "Pour and stir each ingredient into a mixing glass with ice, stirring continuously. Strain into shot glasses, and serve.", @@ -96478,7 +96478,7 @@ "sweet and sour mix" ], "title": "Hell No recipe", - "url": "http://www.drinksmixer.com/drink10205.html" + "url": "https://www.drinksmixer.com/drink10205.html" }, { "directions": "Combine all ingredients in a cocktail shaker and shake well. Strain into shot glasses, and serve.", @@ -96490,7 +96490,7 @@ "apple juice" ], "title": "Hell's Fairy Bitch recipe", - "url": "http://www.drinksmixer.com/drink10206.html" + "url": "https://www.drinksmixer.com/drink10206.html" }, { "directions": "Mix vodka, rum and grenadine with the Rose's lime juice. Pour into a tall highball glass filled with ice cubes, and fill with Sprite. Add a splash of grenadine, and serve.", @@ -96502,7 +96502,7 @@ "grenadine syrup" ], "title": "Her Period recipe", - "url": "http://www.drinksmixer.com/drink10210.html" + "url": "https://www.drinksmixer.com/drink10210.html" }, { "directions": "Pour the Seagrams gin and Bacardi Limon rum into a collins glass over several ice cubes. Add the Red Bull, stir, and serve.", @@ -96512,7 +96512,7 @@ "Red Bull\u00ae energy drink" ], "title": "High Speed recipe", - "url": "http://www.drinksmixer.com/drink10211.html" + "url": "https://www.drinksmixer.com/drink10211.html" }, { "directions": "Fill half of a shot glass with Sambuca. Slowly fill the other half with vodka (to get layer effect). Add 3 drops of Tabasco sauce (it should swim in between the two layers) and serve.", @@ -96522,7 +96522,7 @@ "Tabasco\u00ae sauce" ], "title": "Hole in the Head recipe", - "url": "http://www.drinksmixer.com/drink10212.html" + "url": "https://www.drinksmixer.com/drink10212.html" }, { "directions": "Build all three ingredients over ice in a cocktail glass, and serve.", @@ -96532,7 +96532,7 @@ "grenadine syrup" ], "title": "Honey Bunny recipe", - "url": "http://www.drinksmixer.com/drink10213.html" + "url": "https://www.drinksmixer.com/drink10213.html" }, { "directions": "Combine all ingredients in a cocktail shaker half-filled with ice cubes. Shake well, strain into an old-fashioned glass, and serve.", @@ -96542,7 +96542,7 @@ "sweet and sour mix" ], "title": "Hot Carl recipe", - "url": "http://www.drinksmixer.com/drink10215.html" + "url": "https://www.drinksmixer.com/drink10215.html" }, { "directions": "Add the Irish whiskey to the hot coffee first. Follow by adding the creme de menthe and creme de cacao, and serve.", @@ -96553,7 +96553,7 @@ "white creme de cacao" ], "title": "Hot Minty Kiss recipe", - "url": "http://www.drinksmixer.com/drink10216.html" + "url": "https://www.drinksmixer.com/drink10216.html" }, { "directions": "Layer the Frangelico hazelut liqueur, coffee and whipped cream on top of one another (Frangelico on the bottom) in an 8-oz highball glass or equivalent. Sprinkle the crushed hazlenuts on top, and serve.", @@ -96564,7 +96564,7 @@ "hazelnuts" ], "title": "Hot Shot #3 recipe", - "url": "http://www.drinksmixer.com/drink10217.html" + "url": "https://www.drinksmixer.com/drink10217.html" }, { "directions": "Fill a highball glass with ice cubes. Add firewater and Southern Comfort, fill with cola and serve.", @@ -96574,7 +96574,7 @@ "cola" ], "title": "Hot Southern Night recipe", - "url": "http://www.drinksmixer.com/drink10218.html" + "url": "https://www.drinksmixer.com/drink10218.html" }, { "directions": "Layer ingredients in a shot glass, and serve.", @@ -96583,7 +96583,7 @@ "Crown Royal\u00ae Canadian whisky" ], "title": "Hpno Chronic recipe", - "url": "http://www.drinksmixer.com/drink10219.html" + "url": "https://www.drinksmixer.com/drink10219.html" }, { "directions": "Layer ingredients in a shot glass, and serve.", @@ -96592,7 +96592,7 @@ "tequila" ], "title": "Hpno Tonic recipe", - "url": "http://www.drinksmixer.com/drink10220.html" + "url": "https://www.drinksmixer.com/drink10220.html" }, { "directions": "Combine all ingrdients into a cocktail shaker half-filled with ice cubes. Shake well, strain into a cocktail glass, and serve.", @@ -96602,7 +96602,7 @@ "pineapple juice" ], "title": "Hpnotiq Breeze #2 recipe", - "url": "http://www.drinksmixer.com/drink10221.html" + "url": "https://www.drinksmixer.com/drink10221.html" }, { "directions": "Pour the Hpnotiq, triple sec, Jose Cuervo gold tequila and lime juice into a collins glass filled with ice cubes. Fill to the top with sweet and sour mix, and serve.", @@ -96614,7 +96614,7 @@ "sweet and sour mix" ], "title": "Hpnotiq Margarita recipe", - "url": "http://www.drinksmixer.com/drink10222.html" + "url": "https://www.drinksmixer.com/drink10222.html" }, { "directions": "Combine all ingredients in a hurricane glass with ice as desired, and mix well. Garnish with maraschino cherries and orange slices (optional), and serve.", @@ -96627,7 +96627,7 @@ "grenadine syrup" ], "title": "Hurricane Sunrise recipe", - "url": "http://www.drinksmixer.com/drink10224.html" + "url": "https://www.drinksmixer.com/drink10224.html" }, { "directions": "Combine all ingredients over ice in a cocktail shaker and shake well. Strain into a martini or cocktail glass and serve.", @@ -96637,7 +96637,7 @@ "pineapple juice" ], "title": "Hypnotic Martini recipe", - "url": "http://www.drinksmixer.com/drink10225.html" + "url": "https://www.drinksmixer.com/drink10225.html" }, { "directions": "Pour the Pernod and creme de menthe into a highball glass filled with ice cubes. Add the lime juice and fill with lemonade; stir. Garnish with a sprig of mint (optional), and serve.", @@ -96648,7 +96648,7 @@ "lemonade" ], "title": "Ice Breaker #3 recipe", - "url": "http://www.drinksmixer.com/drink10227.html" + "url": "https://www.drinksmixer.com/drink10227.html" }, { "directions": "Chill the ingredients, then mix in a highball glass and sprinkle some ground cinnamon on top if desired.", @@ -96657,7 +96657,7 @@ "milk" ], "title": "Ice Shot recipe", - "url": "http://www.drinksmixer.com/drink10228.html" + "url": "https://www.drinksmixer.com/drink10228.html" }, { "directions": "Stir the Tia Maria coffee liqueur and chocolate milk together with 3 ice cubes in a highball or other tall glass. Serve.", @@ -96666,7 +96666,7 @@ "chocolate milk" ], "title": "Iced Fritter recipe", - "url": "http://www.drinksmixer.com/drink10230.html" + "url": "https://www.drinksmixer.com/drink10230.html" }, { "directions": "Pour the Ikon vodka and creme de cacao into a cocktail or martini shaker half-filled with ice cubes. Shake well, and pour into a chilled cocktail or martini glass. Top with three swirls of whipped cream and a cranberry rolled in sugar, and serve.", @@ -96677,7 +96677,7 @@ "cranberry" ], "title": "Ikonoclast recipe", - "url": "http://www.drinksmixer.com/drink10232.html" + "url": "https://www.drinksmixer.com/drink10232.html" }, { "directions": "Pour the coconut rum, Bailey's irish cream, amaretto almond liqueur and Kahlua coffee liqueur into a collins glass 3/4 filled with ice cubes. Add milk to taste. Stir slightly, and serve.", @@ -96689,7 +96689,7 @@ "milk" ], "title": "Intimate Encounter recipe", - "url": "http://www.drinksmixer.com/drink10234.html" + "url": "https://www.drinksmixer.com/drink10234.html" }, { "directions": "Blend all the ingredients except the whipped cream in a cocktail shaker half-filled with ice cubes. Pour into a frappe glass (or similar), cover it with the whipped cream, and serve.", @@ -96700,7 +96700,7 @@ "whipped cream" ], "title": "Irish Shake recipe", - "url": "http://www.drinksmixer.com/drink10236.html" + "url": "https://www.drinksmixer.com/drink10236.html" }, { "directions": "Pour the shot of Blackhouse blackberry schnapps into a collins glass half-filled with ice cubes. Add the Zima. Serve unstirred.", @@ -96709,7 +96709,7 @@ "Zima" ], "title": "Itchy Ass recipe", - "url": "http://www.drinksmixer.com/drink10240.html" + "url": "https://www.drinksmixer.com/drink10240.html" }, { "directions": "Pour the Smirnoff vanilla vodka, Smirnoff green apple vodka, Monin cinnamon syrup and apple juice into a highball glass filled up with ice. Put a shaker on the glass and shake it well. Squeeze a wedge of lime in it and serve.", @@ -96721,7 +96721,7 @@ "lime" ], "title": "Ivan's Holiday recipe", - "url": "http://www.drinksmixer.com/drink10241.html" + "url": "https://www.drinksmixer.com/drink10241.html" }, { "directions": "Pour the tequila, orange juice, vodka and triple sec into a cocktail shaker with crushed ice and shake for about a minute. Strain into hurricane glass. Add a tiny umbrella and slice of lemon (optional), and serve.", @@ -96732,7 +96732,7 @@ "triple sec" ], "title": "Beach Bum Shake recipe", - "url": "http://www.drinksmixer.com/drink10243.html" + "url": "https://www.drinksmixer.com/drink10243.html" }, { "directions": "Combine the Hpnotiq liqueur and Absolut Vanilla vodka over ice in a chilled cocktail glass. Top with Sprite and serve.", @@ -96742,7 +96742,7 @@ "Sprite\u00ae soda" ], "title": "Blue Dragonfly recipe", - "url": "http://www.drinksmixer.com/drink10245.html" + "url": "https://www.drinksmixer.com/drink10245.html" }, { "directions": "Take down the shot of Clan Macgregor Scotch whisky; chase with shot of cherry coke.", @@ -96751,7 +96751,7 @@ "Coca-Cola\u00ae Cherry Coke" ], "title": "Cherry MacGregor recipe", - "url": "http://www.drinksmixer.com/drink10246.html" + "url": "https://www.drinksmixer.com/drink10246.html" }, { "directions": "Pour the Jack Daniel's tennessee whiskey into a shot glass. Top with 151 proof rum, and serve.", @@ -96760,7 +96760,7 @@ "151 proof rum" ], "title": "Jack Ass recipe", - "url": "http://www.drinksmixer.com/drink10248.html" + "url": "https://www.drinksmixer.com/drink10248.html" }, { "directions": "Pour the Jack Daniel's tennessee whiskey, Amaretto Di Saronno, pineapple juice and Sprite over ice in a mason jar, and serve.", @@ -96771,7 +96771,7 @@ "Sprite\u00ae soda" ], "title": "Jack Leg recipe", - "url": "http://www.drinksmixer.com/drink10249.html" + "url": "https://www.drinksmixer.com/drink10249.html" }, { "directions": "Shake ingredients with about a cup of ice. Strain into a cocktail glass with or without ice (whatever you feel), and serve. If not strong enough, make the harder version by doubling the amount of Jack Daniel's.", @@ -96781,7 +96781,7 @@ "Sprite\u00ae soda" ], "title": "Jack's Fruit Punch recipe", - "url": "http://www.drinksmixer.com/drink10250.html" + "url": "https://www.drinksmixer.com/drink10250.html" }, { "directions": "Combine all ingredients in a red wine glass; swirl until mixed. Add several ice cubes and serve. ", @@ -96794,7 +96794,7 @@ "lemon juice" ], "title": "Jackass recipe", - "url": "http://www.drinksmixer.com/drink10252.html" + "url": "https://www.drinksmixer.com/drink10252.html" }, { "directions": "Pour the Cherry 7-UP into a highball glass filled with ice cubes. Add the Smirnoff watermelon vodka, and top with Red Bull. Stir lightly, and serve.", @@ -96804,7 +96804,7 @@ "Red Bull\u00ae energy drink" ], "title": "Jacobo's Melon Bomb recipe", - "url": "http://www.drinksmixer.com/drink10253.html" + "url": "https://www.drinksmixer.com/drink10253.html" }, { "directions": "Pour both ingredients into a collins glass half-filled with ice cubes; stir and serve.", @@ -96813,7 +96813,7 @@ "Jagermeister\u00ae herbal liqueur" ], "title": "Jagerade recipe", - "url": "http://www.drinksmixer.com/drink10255.html" + "url": "https://www.drinksmixer.com/drink10255.html" }, { "directions": "Pour the vodka, dry sherry, lime juice, V8 juice and tomato juice into a beer pilsner over ice and mix well. Season as desired; roughly 3 drops of Tabasco sauce and Worcestershire sauce. Finish with a pinch of celery salt and pepper. Serve with a stick of celery or carrot.", @@ -96829,7 +96829,7 @@ "peppers" ], "title": "Jake's Bloody Mary recipe", - "url": "http://www.drinksmixer.com/drink10256.html" + "url": "https://www.drinksmixer.com/drink10256.html" }, { "directions": "Pour the Captain Morgan spiced rum into a highball glass almost filled with ice cubes. Fill with Holiday Spice Pepsi cola, and serve.", @@ -96838,7 +96838,7 @@ "Pepsi\u00ae Holiday Spice" ], "title": "Holiday Captain Pepsi recipe", - "url": "http://www.drinksmixer.com/drink10257.html" + "url": "https://www.drinksmixer.com/drink10257.html" }, { "directions": "Pour the butterscotch schnapps into a shot glass, and float the Bailey's Irish Cream on top of the schnapps. Pour the grenadine through the Bailey's Irish Cream so that it sinks into the butterscotch schnapps, hence resembling a jam doughnut. Serve.", @@ -96848,7 +96848,7 @@ "grenadine syrup" ], "title": "Jam Doughnut recipe", - "url": "http://www.drinksmixer.com/drink10259.html" + "url": "https://www.drinksmixer.com/drink10259.html" }, { "directions": "Pour the DeKuyper Buttershots butterscotch schnapps and Malibu rum into a highball glass. Fill with chilled orange juice, and serve.", @@ -96858,7 +96858,7 @@ "orange juice" ], "title": "Jamaican Tease recipe", - "url": "http://www.drinksmixer.com/drink10260.html" + "url": "https://www.drinksmixer.com/drink10260.html" }, { "directions": "Pour the Bacardi O, DeKuyper Watermelon Pucker schnapps and Cruzan orange rum into a cup and mix well. Add the Gatorade Fierce Melon; do not stir. Chill for one hour before serving.", @@ -96869,7 +96869,7 @@ "Gatorade\u00ae Fierce Melon energy drink" ], "title": "Jello Love recipe", - "url": "http://www.drinksmixer.com/drink10263.html" + "url": "https://www.drinksmixer.com/drink10263.html" }, { "directions": "Pour the Tropicana kiwi-strawberry juice, the Bacardi white rum, and the DeKuyper razzmatazz liqueur into a highball glass half-filled with ice cubes. Float about 1/2 inch of half-and-half onto the mixture; done by slowly pouring the cream over the back of a spoon so that the cream stays separate from the rest of the drink. Serve.", @@ -96880,7 +96880,7 @@ "half-and-half" ], "title": "Jelly Donut recipe", - "url": "http://www.drinksmixer.com/drink10264.html" + "url": "https://www.drinksmixer.com/drink10264.html" }, { "directions": "Pour the vodka, coconut rum, Midori melon liqueur, banana liqueur, pineapple juice and sweet and sour mix into a collins glass filled with ice cubes. Stir well, and serve.", @@ -96893,7 +96893,7 @@ "sweet and sour mix" ], "title": "Jennifer's Junebug recipe", - "url": "http://www.drinksmixer.com/drink10265.html" + "url": "https://www.drinksmixer.com/drink10265.html" }, { "directions": "Stir ingredients together in an old-fashioned glass half-filled with ice cubes, and serve.", @@ -96902,7 +96902,7 @@ "Wilcox\u00ae chocolate milk" ], "title": "Jim Cox recipe", - "url": "http://www.drinksmixer.com/drink10266.html" + "url": "https://www.drinksmixer.com/drink10266.html" }, { "directions": "Combine all ingredients in a cocktail shaker half-filled with ice cubes. Shake briskly. Pour into a cocktail glass, and serve.", @@ -96913,7 +96913,7 @@ "white grape juice" ], "title": "Jo Jo Superspy recipe", - "url": "http://www.drinksmixer.com/drink10268.html" + "url": "https://www.drinksmixer.com/drink10268.html" }, { "directions": "Pour the Absolut vodka, peach schnapps, DeKuyper Watermelon Pucker schnapps and blue curacao into a highball glass filled with ice cubes. Add the cranberry juice, and serve.", @@ -96925,7 +96925,7 @@ "cranberry juice" ], "title": "Johnny Bravo recipe", - "url": "http://www.drinksmixer.com/drink10270.html" + "url": "https://www.drinksmixer.com/drink10270.html" }, { "directions": "Stir both ingredients together in a cocktail glass with/without shaven ice, as desired, and serve.", @@ -96934,7 +96934,7 @@ "lemon iced tea" ], "title": "K-Snap recipe", - "url": "http://www.drinksmixer.com/drink10272.html" + "url": "https://www.drinksmixer.com/drink10272.html" }, { "directions": "Pour both ingredients into a highball glass filled with ice cubes. Cover and shake; serve immediately.", @@ -96943,7 +96943,7 @@ "cola" ], "title": "K-Town Cherry Cola recipe", - "url": "http://www.drinksmixer.com/drink10273.html" + "url": "https://www.drinksmixer.com/drink10273.html" }, { "directions": "Almost fill a shot glass with vodka, then place a lemon slice across the top of the glass so that it covers half of the diameter. Fill the rest of the shot glass with absinthe, pouring so that is passes through the slice of lemon. \r", @@ -96955,7 +96955,7 @@ "sugar" ], "title": "Kalashnikov Shot recipe", - "url": "http://www.drinksmixer.com/drink10274.html" + "url": "https://www.drinksmixer.com/drink10274.html" }, { "directions": "Pour the Jack Daniel's Tennessee Whiskey into a collins glass 3/4 filled with ice cubes. Add the orange vodka and sweet and sour mix. Splash with Coca-cola, and serve.", @@ -96966,7 +96966,7 @@ "Coca-Cola\u00ae" ], "title": "Kanapeas Kick recipe", - "url": "http://www.drinksmixer.com/drink10276.html" + "url": "https://www.drinksmixer.com/drink10276.html" }, { "directions": "Chill and serve.", @@ -96976,7 +96976,7 @@ "pineapple juice" ], "title": "Blond Headed Slut recipe", - "url": "http://www.drinksmixer.com/drink10277.html" + "url": "https://www.drinksmixer.com/drink10277.html" }, { "directions": "Pour the pineapple juice, orange juice, lemon juice, peach vodka and sugar into a cocktail shaker half-filled with ice cubes. Shake well for 30 seconds. Pour unstrained into a large glass (hurricane or otherwise) and add 7-UP. Stir briefly and serve.", @@ -96989,7 +96989,7 @@ "sugar" ], "title": "Evening in Paris recipe", - "url": "http://www.drinksmixer.com/drink10279.html" + "url": "https://www.drinksmixer.com/drink10279.html" }, { "directions": "Fill a highball glass with cubed ice. Stir in vodka and grapefruit juice. Add the grenadine after stirring, and place it in the center of the drink.", @@ -96999,7 +96999,7 @@ "grenadine syrup" ], "title": "Firefly recipe", - "url": "http://www.drinksmixer.com/drink10280.html" + "url": "https://www.drinksmixer.com/drink10280.html" }, { "directions": "Combine the Smirnoff vodka, triple sec, fresh lime juice and cranberry juice in a cocktail shaker half-filled with ice cubes. Shake well and strain into a frosted cocktail glass. Rub the rim with orange zest (if desired) and drop it into the glass. Serve.", @@ -97011,7 +97011,7 @@ "orange" ], "title": "Cosmopolitan Cocktail #5 recipe", - "url": "http://www.drinksmixer.com/drink10281.html" + "url": "https://www.drinksmixer.com/drink10281.html" }, { "directions": "Pour the tea into a hurricane glass over ice. Add the Malibu mango rum, stir and serve.", @@ -97020,7 +97020,7 @@ "tea" ], "title": "Kato recipe", - "url": "http://www.drinksmixer.com/drink10282.html" + "url": "https://www.drinksmixer.com/drink10282.html" }, { "directions": "Add ingredients to a cocktail shaker half-filled with ice cubes. Shake it up and serve in frozen martini or cocktail glasses. Line the rim with cinnamon and cocoa. Throw in a coffee bean for good luck, and serve.", @@ -97030,7 +97030,7 @@ "espresso" ], "title": "Espresso-tini recipe", - "url": "http://www.drinksmixer.com/drink10283.html" + "url": "https://www.drinksmixer.com/drink10283.html" }, { "directions": "Combine ingredients with ice in a cocktail shaker. Shake, strain into shot glasses, and serve.", @@ -97040,7 +97040,7 @@ "cream" ], "title": "Key Lime Pie #2 recipe", - "url": "http://www.drinksmixer.com/drink10285.html" + "url": "https://www.drinksmixer.com/drink10285.html" }, { "directions": "Pour the Bailey's Irish Cream, Kahlua coffee liqueur and Stoli Vanil vanilla vodka into an Irish coffee cup or glass. Fill the glass with hot coffee and top with whipped cream. Sweeten with sugar or artificial sweetener if desired, and serve. \r", @@ -97052,7 +97052,7 @@ "whipped cream" ], "title": "Killer Coffee recipe", - "url": "http://www.drinksmixer.com/drink10286.html" + "url": "https://www.drinksmixer.com/drink10286.html" }, { "directions": "Pour the Stoli Razberi vodka, melon liqueur and 7-UP into a chilled cocktail glass over a small amount of ice. Top it off with cranberry juice, more if desired, and serve.", @@ -97063,7 +97063,7 @@ "cranberry juice" ], "title": "Killer Kool-Aid (Canada) recipe", - "url": "http://www.drinksmixer.com/drink10287.html" + "url": "https://www.drinksmixer.com/drink10287.html" }, { "directions": "Combine the coffee liqueur, light rum, coconut cream, milk and banana in a blender with half a cup of crushed ice. Blend until smooth. Pour into a hurricane glass, garnish with a slice of banana and serve.", @@ -97075,7 +97075,7 @@ "banana" ], "title": "King Burro recipe", - "url": "http://www.drinksmixer.com/drink10288.html" + "url": "https://www.drinksmixer.com/drink10288.html" }, { "directions": "Add strawberries, Bacardi white rum, DeKuyper Peachtree schnapps, sugar, and lemon juice to a blender with one cup of crushed ice (more or less if desired). Blend until icy with no chunks of ice remaining. Pour into a hurricane glass, garnish with a slice or two of strawberry, and serve.", @@ -97087,7 +97087,7 @@ "lemon juice" ], "title": "Strawberry-Peach Daiquiri recipe", - "url": "http://www.drinksmixer.com/drink10289.html" + "url": "https://www.drinksmixer.com/drink10289.html" }, { "directions": "Combine the Bacardi 151 rum, vodka, and Gatorade Citrus Cooler together over ice in a collins glass, and stir. Finish with a splash of amaretto almond liqueur, and serve. ", @@ -97098,7 +97098,7 @@ "amaretto almond liqueur" ], "title": "Kula-for-Shula recipe", - "url": "http://www.drinksmixer.com/drink10290.html" + "url": "https://www.drinksmixer.com/drink10290.html" }, { "directions": "Pour the Absolut Citron and triple sec into a highball glass filled with ice cubes. Almost fill with sweet and sour mix, and add a splash of lemon-lime soda and splash of cranberry juice. Garnish with a slice of lemon, and serve.", @@ -97110,7 +97110,7 @@ "cranberry juice" ], "title": "Lakeside Lemonade recipe", - "url": "http://www.drinksmixer.com/drink10291.html" + "url": "https://www.drinksmixer.com/drink10291.html" }, { "directions": "Chill the ingredients beforehand. Layer ingredients, in order, into a shot glass; Midori at the bottom (or other melon schnapps), Goldschlager, Jagermeister at the top.", @@ -97120,7 +97120,7 @@ "Jagermeister\u00ae herbal liqueur" ], "title": "Laser Beam Shot recipe", - "url": "http://www.drinksmixer.com/drink10292.html" + "url": "https://www.drinksmixer.com/drink10292.html" }, { "directions": "Pour ingredients into a cocktail shaker half-filled with ice cubes. Shake well, pour into an old-fashioned or highball glass, and serve.", @@ -97132,7 +97132,7 @@ "orange juice" ], "title": "GordBuster from Hell recipe", - "url": "http://www.drinksmixer.com/drink10294.html" + "url": "https://www.drinksmixer.com/drink10294.html" }, { "directions": "Pour the tequila into a highball glass filled with ice cubes. Add the cranberry juice and grapefruit juice. Stir, garnish with a lime wedge, and serve.!", @@ -97142,7 +97142,7 @@ "grapefruit juice" ], "title": "Tequila Seabreeze recipe", - "url": "http://www.drinksmixer.com/drink10295.html" + "url": "https://www.drinksmixer.com/drink10295.html" }, { "directions": "Combine all ingredients in a punch bowl; ice if desired. Stir well.", @@ -97156,7 +97156,7 @@ "salt" ], "title": "Leftover Salmon recipe", - "url": "http://www.drinksmixer.com/drink10296.html" + "url": "https://www.drinksmixer.com/drink10296.html" }, { "directions": "Place the sugar and lemon juice in a cocktail shaker. Swirl the shaker around so that both ingredients are mixed thoroughly. Add ice cubes. Add the vodka, triple sec and margarita mix, and shake well. Strain into a cocktail glass. Add rimmers to make the drink look nice, if you have them.", @@ -97168,7 +97168,7 @@ "lemon juice" ], "title": "Lemon Drop Martini recipe", - "url": "http://www.drinksmixer.com/drink10297.html" + "url": "https://www.drinksmixer.com/drink10297.html" }, { "directions": "Pour the lime vodka into a highball glass half-filled with ice cubes. Add the Mountain Dew, and serve.", @@ -97177,7 +97177,7 @@ "Mountain Dew\u00ae citrus soda" ], "title": "Lime Avenger recipe", - "url": "http://www.drinksmixer.com/drink10298.html" + "url": "https://www.drinksmixer.com/drink10298.html" }, { "directions": "Pour the vodka, triple sec and lime juice into a cocktail shaker with a couple of ice cubes. Shake well, strain into a martini or cocktail glass, and serve.", @@ -97187,7 +97187,7 @@ "lime juice" ], "title": "Limetini recipe", - "url": "http://www.drinksmixer.com/drink10299.html" + "url": "https://www.drinksmixer.com/drink10299.html" }, { "directions": "Pour the Bacardi Limon into a collins glass. Fill with the can of Sprite. Add a piece of lemon, and serve.", @@ -97196,7 +97196,7 @@ "Sprite\u00ae soda" ], "title": "Limon Spritzer recipe", - "url": "http://www.drinksmixer.com/drink10300.html" + "url": "https://www.drinksmixer.com/drink10300.html" }, { "directions": "Pour grenadine into a margarita or cocktail glass. Place some ice cubes in a cocktail shaker, and add the vodka, watermelon schnapps, Midori melon liqueur and sour mix to the shaker. Shake well, pour into the margarita / cocktail glass, and serve.", @@ -97208,7 +97208,7 @@ "grenadine syrup" ], "title": "Liquid Watermelon recipe", - "url": "http://www.drinksmixer.com/drink10302.html" + "url": "https://www.drinksmixer.com/drink10302.html" }, { "directions": "Pour the Irish whiskey into a shot glass. Add the Goldschlager cinnamon schnapps, then the creme de menthe, and serve.", @@ -97218,7 +97218,7 @@ "creme de menthe" ], "title": "Little Leprechaun recipe", - "url": "http://www.drinksmixer.com/drink10304.html" + "url": "https://www.drinksmixer.com/drink10304.html" }, { "directions": "Pour the sake and cranberry juice into a cocktail shaker half-filled with ice cubes. Shake well, and strain into a highball glass. Add the grenadine. Stir very lightly, and serve.", @@ -97228,7 +97228,7 @@ "grenadine syrup" ], "title": "Love Hotel recipe", - "url": "http://www.drinksmixer.com/drink10306.html" + "url": "https://www.drinksmixer.com/drink10306.html" }, { "directions": "Stir ingredients together in a mixing glass half-filled with ice cubes. Strain into a highball glass, and serve.", @@ -97238,7 +97238,7 @@ "DeKuyper\u00ae amaretto almond liqueur" ], "title": "Bottom Bouncer recipe", - "url": "http://www.drinksmixer.com/drink10307.html" + "url": "https://www.drinksmixer.com/drink10307.html" }, { "directions": "First, pour the orange juice into a highball glass. Add the beer. Take a shot glass, pour the amaretto in, then southern comfort. Drop the shot glass into the highball glass, then chug.", @@ -97249,7 +97249,7 @@ "orange juice" ], "title": "Lunchbox recipe", - "url": "http://www.drinksmixer.com/drink10309.html" + "url": "https://www.drinksmixer.com/drink10309.html" }, { "directions": "Pour equal shots of Malibu coconut rum, Southern Comfort, amaretto almond liqueur and Captain Morgan spiced rum into a highball glass. Fill the remainder of the glass with pineapple juice, and add just a splash of grenadine. Shake well to mix all ingredients, and serve.", @@ -97262,7 +97262,7 @@ "grenadine syrup" ], "title": "Luscious Leslie recipe", - "url": "http://www.drinksmixer.com/drink10310.html" + "url": "https://www.drinksmixer.com/drink10310.html" }, { "directions": "Combine all ingredients in a cocktail shaker with/without ice. Shake well, strain into a cocktail glass, and serve.", @@ -97272,7 +97272,7 @@ "lychee juice" ], "title": "Lychee Martini recipe", - "url": "http://www.drinksmixer.com/drink10312.html" + "url": "https://www.drinksmixer.com/drink10312.html" }, { "directions": "Stir ingredients together in a shot glass, and shoot.", @@ -97282,7 +97282,7 @@ "Wild Turkey\u00ae bourbon whiskey" ], "title": "352 Cocktail recipe", - "url": "http://www.drinksmixer.com/drink10313.html" + "url": "https://www.drinksmixer.com/drink10313.html" }, { "directions": "In a large pitcher mix the Corona and limeade mixture (follow the directions on the frozen limeade except substitute one can of water with one can of vodka - cheap is fine). Serve in frosted mugs with ice.", @@ -97293,7 +97293,7 @@ "water" ], "title": "Beer Margarita recipe", - "url": "http://www.drinksmixer.com/drink10315.html" + "url": "https://www.drinksmixer.com/drink10315.html" }, { "directions": "Shake the Grand Marnier, peach schnapps and pineapple juice in a cocktail shaker half-filled with ice cubes. Strain into a shot glass, and shoot.", @@ -97303,7 +97303,7 @@ "pineapple juice" ], "title": "Blonde Headed Slut recipe", - "url": "http://www.drinksmixer.com/drink10316.html" + "url": "https://www.drinksmixer.com/drink10316.html" }, { "directions": "Pour the Country Time lemonade into a highball glass. Add the spiced vodka, stir and serve.", @@ -97312,7 +97312,7 @@ "Countrytime\u00ae yellow lemonade" ], "title": "Spiced Lemon recipe", - "url": "http://www.drinksmixer.com/drink10317.html" + "url": "https://www.drinksmixer.com/drink10317.html" }, { "directions": "Pour the Mountain Dew Baja Blast into a cocktail glass. Add peach schnapps (or Hpnotiq liqueur), stir briefly and serve.", @@ -97321,7 +97321,7 @@ "Mountain Dew\u00ae Baja Blast lime soda" ], "title": "Crystal Telekenisis recipe", - "url": "http://www.drinksmixer.com/drink10318.html" + "url": "https://www.drinksmixer.com/drink10318.html" }, { "directions": "Stir ingredients together in a cup or highball glass, and serve.", @@ -97330,7 +97330,7 @@ "UV\u00ae blue raspberry vodka" ], "title": "Green Spade recipe", - "url": "http://www.drinksmixer.com/drink10321.html" + "url": "https://www.drinksmixer.com/drink10321.html" }, { "directions": "Shake well with ice and strain into a chilled martini or cocktail glass. Garnish with a slice of orange, and serve.", @@ -97340,7 +97340,7 @@ "cranberry juice" ], "title": "Hidden Grapefruit recipe", - "url": "http://www.drinksmixer.com/drink10322.html" + "url": "https://www.drinksmixer.com/drink10322.html" }, { "directions": "Pour the Jim Beam Bourbon whiskey into a highball glass almost filled with ice cubes. Add the cream soda, stir and serve.", @@ -97349,7 +97349,7 @@ "cream soda" ], "title": "Jim's Cream recipe", - "url": "http://www.drinksmixer.com/drink10323.html" + "url": "https://www.drinksmixer.com/drink10323.html" }, { "directions": "Pour the vodka into a shot glass and add some raspberry syrup (should be concentrated, look for it at a Polish section in an international supermarket). Add a few drops of Tabasco hot sauce., and shoot.", @@ -97359,7 +97359,7 @@ "Tabasco\u00ae sauce" ], "title": "Mad Dog Shot recipe", - "url": "http://www.drinksmixer.com/drink10324.html" + "url": "https://www.drinksmixer.com/drink10324.html" }, { "directions": "Pour the Southern Comfort and peach schnapps into a highball glass filled with ice cubes. Fill with equal parts of sour mix and lemon-lime soda. Stir briefly and serve.", @@ -97370,7 +97370,7 @@ "lemon-lime soda" ], "title": "Mail Man's Daughter recipe", - "url": "http://www.drinksmixer.com/drink10325.html" + "url": "https://www.drinksmixer.com/drink10325.html" }, { "directions": "Pour the Malibu rum into a collins glass filled with ice cubes. Fill the rest of the glass with pink lemonade, stir and serve with a straw.", @@ -97379,7 +97379,7 @@ "pink lemonade" ], "title": "Malibu Barbie #2 recipe", - "url": "http://www.drinksmixer.com/drink10326.html" + "url": "https://www.drinksmixer.com/drink10326.html" }, { "directions": "Pour the Malibu coconut rum into a highball glass almost filled with ice cubes. Add the grenadine and top with pineapple juice. Stir and serve.", @@ -97389,7 +97389,7 @@ "grenadine syrup" ], "title": "Malibu Breeze recipe", - "url": "http://www.drinksmixer.com/drink10327.html" + "url": "https://www.drinksmixer.com/drink10327.html" }, { "directions": "Pour the Malibu coconut rum, Absolut vodka, cranberry and pineapple juice into a cocktail shaker half-filled with ice cubes. Shake well, pour into a chilled cocktail glass, and serve.", @@ -97400,7 +97400,7 @@ "pineapple juice" ], "title": "Malibu Paradise recipe", - "url": "http://www.drinksmixer.com/drink10328.html" + "url": "https://www.drinksmixer.com/drink10328.html" }, { "directions": "Fill a highball glass with ice cubes. Pour in the Malibu rum, then Midori melon liqueur (which will sink to the bottom). Gently pour in pineapple juice. Do not shake. Gently splash in a bit of cranberry juice. Do not mix. Drink will be layered, from top to bottom; green, yellow, red.", @@ -97411,7 +97411,7 @@ "cranberry juice" ], "title": "Malibu Reggae Rainbow recipe", - "url": "http://www.drinksmixer.com/drink10329.html" + "url": "https://www.drinksmixer.com/drink10329.html" }, { "directions": "Build the Maker's Mark Bourbon whiskey and Frangelico hazelnut liqueur in an old-fashioned glass over ice and garnish with a maraschino cherry. Alternatively, muddle the cherry with ice before adding the Maker's Mark Bourbon whiskey and Frangelico hazelnut liqueur. ", @@ -97420,7 +97420,7 @@ "Frangelico\u00ae hazelnut liqueur" ], "title": "Manhattan for Rome recipe", - "url": "http://www.drinksmixer.com/drink10332.html" + "url": "https://www.drinksmixer.com/drink10332.html" }, { "directions": "Combine the vanilla vodka, banana liqueur and cream in a cocktail shaker with crushed ice. Shake gently. Serve in highball or shot glasses.", @@ -97430,7 +97430,7 @@ "cream" ], "title": "Manilla Gorilla recipe", - "url": "http://www.drinksmixer.com/drink10333.html" + "url": "https://www.drinksmixer.com/drink10333.html" }, { "directions": "Pour the Bacardi 151 rum and Wild Turkey 101 bourbon whiskey into a shot glass. Stir, and float grenadine on top. Shoot immediately.", @@ -97440,7 +97440,7 @@ "grenadine syrup" ], "title": "Martha Stewart recipe", - "url": "http://www.drinksmixer.com/drink10334.html" + "url": "https://www.drinksmixer.com/drink10334.html" }, { "directions": "Shake ingredients with ice and strain into a chilled martini or cocktail glass. Garnish with a lemon, and serve.", @@ -97450,7 +97450,7 @@ "pineapple juice" ], "title": "Martini Dominikanis recipe", - "url": "http://www.drinksmixer.com/drink10336.html" + "url": "https://www.drinksmixer.com/drink10336.html" }, { "directions": "Pour the cherry-flavored brandy into a collins glass half-filled with ice. Add the Mountain Dew, and serve.", @@ -97459,7 +97459,7 @@ "Mountain Dew\u00ae citrus soda" ], "title": "Marvin The Martian recipe", - "url": "http://www.drinksmixer.com/drink10337.html" + "url": "https://www.drinksmixer.com/drink10337.html" }, { "directions": "Add the Mountain Dew Code Red to a highball glass over ice, then add in the rum, and serve.", @@ -97468,7 +97468,7 @@ "Malibu\u00ae coconut rum" ], "title": "Maui Cocktail recipe", - "url": "http://www.drinksmixer.com/drink10338.html" + "url": "https://www.drinksmixer.com/drink10338.html" }, { "directions": "Fill a container (size of an iced-tea pitcher) almost halfway with ice. Fill to slightly above ice with a decent California White Zinfandel. Add one part peach schnapps, and a splash of sour mix. Fill the remaining space (should be a little less than a quarter of the pitcher) with cranberry juice. Seal and shake vigourously. Serve in glasses.", @@ -97479,7 +97479,7 @@ "sweet and sour mix" ], "title": "Medusa Punch recipe", - "url": "http://www.drinksmixer.com/drink10339.html" + "url": "https://www.drinksmixer.com/drink10339.html" }, { "directions": "Fill a collins glass with ice. Pour in the Malibu coconut rum. Fill with pineapple juice, top with Midori melon liqueur, and serve. ", @@ -97489,7 +97489,7 @@ "Midori\u00ae melon liqueur" ], "title": "Melon Breeze recipe", - "url": "http://www.drinksmixer.com/drink10340.html" + "url": "https://www.drinksmixer.com/drink10340.html" }, { "directions": "Stir ingredients together in a 2-oz shot glass, and shoot.", @@ -97498,7 +97498,7 @@ "Grand Marnier\u00ae orange liqueur" ], "title": "Menace Shot recipe", - "url": "http://www.drinksmixer.com/drink10341.html" + "url": "https://www.drinksmixer.com/drink10341.html" }, { "directions": "Pour the sour lemonade into a highball glass filled with ice cubes. Add the sloe gin (see how pretty they \"bleed together\") then add the vodka. Stir and serve.", @@ -97508,7 +97508,7 @@ "sour lemonade" ], "title": "Menstrual Cycle recipe", - "url": "http://www.drinksmixer.com/drink10342.html" + "url": "https://www.drinksmixer.com/drink10342.html" }, { "directions": "Pour all ingredients (chilled beforehand) into a large container or punch bowl, preferably on top of another similar container filled with ice. Allow to chill. Serve in punch cups or tall glasses.", @@ -97519,7 +97519,7 @@ "Sprite\u00ae soda" ], "title": "Merry Christmas recipe", - "url": "http://www.drinksmixer.com/drink10343.html" + "url": "https://www.drinksmixer.com/drink10343.html" }, { "directions": "Add condensed milk, evaporated milk, Scotch whiskey, vanilla essence and glycerine to a saucepan. Stir well. Dissolve coffee in boiling water. Mix in. Chill. Add cream if desired.", @@ -97533,7 +97533,7 @@ "water" ], "title": "Irish Cream #4 recipe", - "url": "http://www.drinksmixer.com/drink10344.html" + "url": "https://www.drinksmixer.com/drink10344.html" }, { "directions": "Add ingredients to a cocktail shaker half-filled with ice cubes, and shake well. Strain into a martini or cocktail glass, add a slice of lime peel and serve.", @@ -97543,7 +97543,7 @@ "Cointreau\u00ae orange liqueur" ], "title": "Balalika recipe", - "url": "http://www.drinksmixer.com/drink10345.html" + "url": "https://www.drinksmixer.com/drink10345.html" }, { "directions": "Pour the Kahlua coffee liqueur, Stoli vodka and Rose's grenadine into a shot glass in that order. Add a dash of Tabasco sauce or Habanero pepper sauce, and serve.", @@ -97554,7 +97554,7 @@ "Tabasco\u00ae sauce" ], "title": "Flaming Bloody Rectum recipe", - "url": "http://www.drinksmixer.com/drink10348.html" + "url": "https://www.drinksmixer.com/drink10348.html" }, { "directions": "Pour the Kahlua coffee liqueur, Stoli vodka and Rose's grenadine into a shot glass in that order, and serve.", @@ -97564,7 +97564,7 @@ "Rose's\u00ae grenadine syrup" ], "title": "Bloody Rectum recipe", - "url": "http://www.drinksmixer.com/drink10349.html" + "url": "https://www.drinksmixer.com/drink10349.html" }, { "directions": "Pour the Crown Royal Canadian Whisky, peach schnapps, blue curacao and cranberry juice all into a cocktail shaker half-filled with ice cubes. Shake well, strain into shot glasses or a single large shot glass, and serve.", @@ -97575,7 +97575,7 @@ "cranberry juice" ], "title": "Blue Flush recipe", - "url": "http://www.drinksmixer.com/drink10350.html" + "url": "https://www.drinksmixer.com/drink10350.html" }, { "directions": "Shake ingredients together in a cocktail shaker half-filled with ice cubes. Pour into a highball glass half-filled with ice cubes, and serve.", @@ -97585,7 +97585,7 @@ "orange juice" ], "title": "Bronze Monkey recipe", - "url": "http://www.drinksmixer.com/drink10351.html" + "url": "https://www.drinksmixer.com/drink10351.html" }, { "directions": "Pour both ingredients into a shot glass, stir and serve.", @@ -97594,7 +97594,7 @@ "Stoli\u00ae Razberi vodka" ], "title": "Broo-ha-ha recipe", - "url": "http://www.drinksmixer.com/drink10352.html" + "url": "https://www.drinksmixer.com/drink10352.html" }, { "directions": "Use any appropriate glass filled with ice cubes, and mix 3 parts of your vodka of choice (preferably not cheap vodka, use Finlandia, Absolut or Grey Goose), with 1 part Coke, or follow the amounts above in a highball or old-fashioned glass. ", @@ -97603,7 +97603,7 @@ "Coca-Cola\u00ae" ], "title": "Brown-eye recipe", - "url": "http://www.drinksmixer.com/drink10353.html" + "url": "https://www.drinksmixer.com/drink10353.html" }, { "directions": "Pour the Southern Comfort into a highball glass; add the orange soda and the root beer. Stir lightly. Add more Southern Comfort for strength if desired, and serve.", @@ -97613,7 +97613,7 @@ "root beer" ], "title": "Bubble Comfort recipe", - "url": "http://www.drinksmixer.com/drink10354.html" + "url": "https://www.drinksmixer.com/drink10354.html" }, { "directions": "Pour the cranberry juice, Malibu coconut rum, Canada Dry cranberry soda and Crown Royal Canadian Whisky into a cocktail shaker half-filled with ice cubes. Shake well. Pour into a highball glass filled with ice cubes, and serve.", @@ -97624,7 +97624,7 @@ "Crown Royal\u00ae Canadian whisky" ], "title": "Buck's Peter recipe", - "url": "http://www.drinksmixer.com/drink10355.html" + "url": "https://www.drinksmixer.com/drink10355.html" }, { "directions": "Pour all ingredients into a cocktail glass; add grenadine last. Serve and admire the sunset!", @@ -97634,7 +97634,7 @@ "grenadine syrup" ], "title": "Burning Sunset recipe", - "url": "http://www.drinksmixer.com/drink10356.html" + "url": "https://www.drinksmixer.com/drink10356.html" }, { "directions": "Pour the banana liqueur into a shot glass. Layer the Cape Velvet cream liqueur on top. Add two drops of Nachtmusiek or other chocolate liqueur on top of the Cape Velvet cream liqueur, and serve.", @@ -97644,7 +97644,7 @@ "Nachtmusiek\u00ae chocolate liqueur" ], "title": "Bushman's Balls recipe", - "url": "http://www.drinksmixer.com/drink10357.html" + "url": "https://www.drinksmixer.com/drink10357.html" }, { "directions": "Pour the Captain Morgan spiced rum into a highball glass. Add the Tang, and serve. It should taste akin to an orange dreamsicle.", @@ -97653,7 +97653,7 @@ "Tang\u00ae powdered soft drink" ], "title": "Captang Poontag recipe", - "url": "http://www.drinksmixer.com/drink10358.html" + "url": "https://www.drinksmixer.com/drink10358.html" }, { "directions": "Pour the Crown Royal Canadian Whisky into a glass filled with a can of Red Bull, and serve.", @@ -97662,7 +97662,7 @@ "Red Bull\u00ae energy drink" ], "title": "Cherry Bomb #6 recipe", - "url": "http://www.drinksmixer.com/drink10359.html" + "url": "https://www.drinksmixer.com/drink10359.html" }, { "directions": "Frost the rim of an old-fashioned glass with sugar and lemon. Add the vanilla vodka and Frangelico hazelnut liqueur; stir together. Lick the sugar rim, shoot the mixture, and bite a piece of lemon.\n\n", @@ -97671,7 +97671,7 @@ "Stoli\u00ae Vanil vodka" ], "title": "Chocolate Cake Shot recipe", - "url": "http://www.drinksmixer.com/drink10360.html" + "url": "https://www.drinksmixer.com/drink10360.html" }, { "directions": "Combine both ingredients in a mixing glass or cocktail shaker with ice and shake well. Strain into a shot glass, and serve.", @@ -97680,7 +97680,7 @@ "Goldschlager\u00ae cinnamon schnapps" ], "title": "Cinnamon Toast #3 recipe", - "url": "http://www.drinksmixer.com/drink10361.html" + "url": "https://www.drinksmixer.com/drink10361.html" }, { "directions": "Stir ingredients together in a shot glass, and serve.", @@ -97689,7 +97689,7 @@ "amaretto almond liqueur" ], "title": "Cocky Motherfucker recipe", - "url": "http://www.drinksmixer.com/drink10362.html" + "url": "https://www.drinksmixer.com/drink10362.html" }, { "directions": "Add the V8 juice, Worcestershire sauce, horseradish, celery salt and pepper to a mason jar, cover and shake well. Add vodka and shake again. Sample and add additional celery salt, pepper or horseradish to taste.", @@ -97702,7 +97702,7 @@ "peppers" ], "title": "Coffey's Hot Irish Bloody Mary recipe", - "url": "http://www.drinksmixer.com/drink10363.html" + "url": "https://www.drinksmixer.com/drink10363.html" }, { "directions": "1. Pour the amaretto almond liqueur, peach schnapps, Southern Comfort, sour mix and triple sec into a cocktail shaker half-filled with ice cubes. \r", @@ -97716,7 +97716,7 @@ "Blue Curacao liqueur" ], "title": "Confederate recipe", - "url": "http://www.drinksmixer.com/drink10364.html" + "url": "https://www.drinksmixer.com/drink10364.html" }, { "directions": "Combine all ingredients in a blender, and blend well. Store in glass bottles, and place in refrigerator.", @@ -97731,7 +97731,7 @@ "white rum" ], "title": "Homemade Coquito Bueno recipe", - "url": "http://www.drinksmixer.com/drink10365.html" + "url": "https://www.drinksmixer.com/drink10365.html" }, { "directions": "Layer the limoncello, Campari bitters and vodka in that order into a shot glass. Flame the vodka, drop in a straw, and serve.", @@ -97741,7 +97741,7 @@ "Campari\u00ae bitters" ], "title": "Devil's Breath recipe", - "url": "http://www.drinksmixer.com/drink10366.html" + "url": "https://www.drinksmixer.com/drink10366.html" }, { "directions": "Pour the blue curacao, peach schynapps and Captain Morgan spiced rum into a cocktail shaker half-filled with ice cubes. Shake well, and strain into a highball glass. Add the Sierra Mist and Squirt (both chilled), stir lightly and serve.", @@ -97753,7 +97753,7 @@ "Squirt\u00ae citrus soda" ], "title": "Divine recipe", - "url": "http://www.drinksmixer.com/drink10367.html" + "url": "https://www.drinksmixer.com/drink10367.html" }, { "directions": "Stir both ingredients together in a large shot glass or old-fashioned glass. Shoot.", @@ -97762,7 +97762,7 @@ "Southern Comfort\u00ae peach liqueur" ], "title": "Drunksimus Maximus recipe", - "url": "http://www.drinksmixer.com/drink10368.html" + "url": "https://www.drinksmixer.com/drink10368.html" }, { "directions": "Layer ingredients in order into a shot glass; Tia Maria coffee liqueur at the bottom, Sauza tequila on top. Serve to shoot.", @@ -97772,7 +97772,7 @@ "Sauza\u00ae Hornitos Reposado tequila" ], "title": "Dutch Disaster recipe", - "url": "http://www.drinksmixer.com/drink10369.html" + "url": "https://www.drinksmixer.com/drink10369.html" }, { "directions": "Add vodka and triple sec to a highball glass or old-fashioned glass. Add Rockstar energy drink, then add cranberry juice and serve.", @@ -97783,7 +97783,7 @@ "cranberry juice" ], "title": "Electric Ski-mask recipe", - "url": "http://www.drinksmixer.com/drink10370.html" + "url": "https://www.drinksmixer.com/drink10370.html" }, { "directions": "Pour the vodka and the energy drink into a cocktail shaker with ice. Shake well and strain into a shot glasses for serving.", @@ -97792,7 +97792,7 @@ "Red Bull\u00ae energy drink" ], "title": "Energy Shot recipe", - "url": "http://www.drinksmixer.com/drink10371.html" + "url": "https://www.drinksmixer.com/drink10371.html" }, { "directions": "Fill a cup 3/4 of the way with Pepsi or Diet Pepsi. Add in the whiskey until it's about an inch from the top. Stir for 5 seconds. Add in 3-4 spoonfuls of milk. Stir until it starts getting foamy at the top. The foam should rise a bit. ", @@ -97802,7 +97802,7 @@ "milk" ], "title": "Foaming Pepsi recipe", - "url": "http://www.drinksmixer.com/drink10372.html" + "url": "https://www.drinksmixer.com/drink10372.html" }, { "directions": "Pour the Bacardi Raz and Stolichnaya raspberry vodka (Stoli Razberi) followed by the orange juice and Red Bull into a highball glass. Splash with cranberry juice. Garnish with a slice of orange, with a cherry on a pick, and serve.", @@ -97814,7 +97814,7 @@ "cranberry juice" ], "title": "Fruity as Fuck recipe", - "url": "http://www.drinksmixer.com/drink10373.html" + "url": "https://www.drinksmixer.com/drink10373.html" }, { "directions": "Fill a collins glass or pint glass half-way with Coca-cola. Add the Jack Daniel's Tennessee Whiskey and Jagermeister. Add the rest of the Coke, and serve.", @@ -97824,7 +97824,7 @@ "Jack Daniel's\u00ae Tennessee whiskey" ], "title": "Fuck You #2 recipe", - "url": "http://www.drinksmixer.com/drink10374.html" + "url": "https://www.drinksmixer.com/drink10374.html" }, { "directions": "Pour all three ingredients into a 2-oz shot glass, and serve.", @@ -97834,7 +97834,7 @@ "Rockstar\u00ae energy drink" ], "title": "Fucked by a Rockstar recipe", - "url": "http://www.drinksmixer.com/drink10375.html" + "url": "https://www.drinksmixer.com/drink10375.html" }, { "directions": "Fill a 2-oz shot glass half-way with citrus vodka, then add the lemon-lime soda of choice filling up the remaining portion of the shot glass. Shoot.", @@ -97843,7 +97843,7 @@ "lemon-lime soda" ], "title": "Green Day recipe", - "url": "http://www.drinksmixer.com/drink10376.html" + "url": "https://www.drinksmixer.com/drink10376.html" }, { "directions": "Pour all ingredients into a collins glass, stir, and serve.", @@ -97853,7 +97853,7 @@ "lemonade" ], "title": "Green Spade #2 recipe", - "url": "http://www.drinksmixer.com/drink10378.html" + "url": "https://www.drinksmixer.com/drink10378.html" }, { "directions": "Combine all ingredients in a cocktail shaker with ice cubes. Shake well, strain into a large cocktail glass, and serve.", @@ -97864,7 +97864,7 @@ "sweet and sour mix" ], "title": "Grinch's Christmas recipe", - "url": "http://www.drinksmixer.com/drink10379.html" + "url": "https://www.drinksmixer.com/drink10379.html" }, { "directions": "Pour all ingredients into a cocktail shaker half-filled with ice cubes. Shake well and pour into a cocktail glass over crushed or shaven ice. Garnish with a cherry, and serve.", @@ -97874,7 +97874,7 @@ "triple sec" ], "title": "Her Inner Secret recipe", - "url": "http://www.drinksmixer.com/drink10380.html" + "url": "https://www.drinksmixer.com/drink10380.html" }, { "directions": "Coat the bottom of a collins glass with chocolate syrup. Fill the glass half-way with ice cubes. Add Kahlua coffee liqueur, Irish cream and creme de cacao. Fill with chocolate milk and shake gently. Sprinkle with chocolate shavings if desired, and serve.", @@ -97886,7 +97886,7 @@ "chocolate milk" ], "title": "Hershey Highway recipe", - "url": "http://www.drinksmixer.com/drink10381.html" + "url": "https://www.drinksmixer.com/drink10381.html" }, { "directions": "Pour the Bombay gin and sake into a highball glass filled with ice cubes. Add the triple sec, swirl and leave briefly to chill before serving.", @@ -97896,7 +97896,7 @@ "triple sec" ], "title": "Hokkaido Highball recipe", - "url": "http://www.drinksmixer.com/drink10382.html" + "url": "https://www.drinksmixer.com/drink10382.html" }, { "directions": "Pour all ingredients into a cocktail shaker with a few ice cubes. Shake well, strain into a chilled cocktail glass, and serve.", @@ -97906,7 +97906,7 @@ "pineapple juice" ], "title": "Hypnotic Martini #2 recipe", - "url": "http://www.drinksmixer.com/drink10383.html" + "url": "https://www.drinksmixer.com/drink10383.html" }, { "directions": "Stir ingredients together in a mixing glass half-filled with ice cubes. Strain into a cocktail glass, add an umbrella and sword shaped tooth pick and serve.", @@ -97916,7 +97916,7 @@ "RedRum\u00ae rum" ], "title": "Island Murder recipe", - "url": "http://www.drinksmixer.com/drink10385.html" + "url": "https://www.drinksmixer.com/drink10385.html" }, { "directions": "Pour the DeKuyper Blue Island Pucker schnapps into an old-fashioned glass 3/4 filled with ice cubes. Add the Sprite Remix, stir and serve with a stirring straw.", @@ -97925,7 +97925,7 @@ "DeKuyper\u00ae Island Blue Pucker schnapps" ], "title": "Island Remix recipe", - "url": "http://www.drinksmixer.com/drink10386.html" + "url": "https://www.drinksmixer.com/drink10386.html" }, { "directions": "Pour the Alize Bleu liqueur down the side of an old-fashioned glass filled with ice cubes. Allow it to sit before adding the Gekkaikan sake. Add Sunny Delight orange juice, stir and serve.", @@ -97935,7 +97935,7 @@ "Sunny Delight\u00ae orange juice" ], "title": "J-Pop Idol recipe", - "url": "http://www.drinksmixer.com/drink10387.html" + "url": "https://www.drinksmixer.com/drink10387.html" }, { "directions": "Stir ingredients together in a shot glass, and serve.", @@ -97944,7 +97944,7 @@ "butterscotch liqueur" ], "title": "Jackass Shot recipe", - "url": "http://www.drinksmixer.com/drink10388.html" + "url": "https://www.drinksmixer.com/drink10388.html" }, { "directions": "Coat the rim of a shot glass with sugar using sugar syrup to stick. Add the Chambord raspberry liqueur to the shot glass, and carefully layer the Bailey's Irish Cream on top. Serve.", @@ -97955,7 +97955,7 @@ "sugar" ], "title": "Jam Donut recipe", - "url": "http://www.drinksmixer.com/drink10389.html" + "url": "https://www.drinksmixer.com/drink10389.html" }, { "directions": "Mix all ingredients together over ice in a highball glass. Shake up, then top with sprite and serve.", @@ -97968,7 +97968,7 @@ "Blue Curacao liqueur" ], "title": "100 Miles per Hour recipe", - "url": "http://www.drinksmixer.com/drink10390.html" + "url": "https://www.drinksmixer.com/drink10390.html" }, { "directions": "Come all ingredients in a blender; add ice untill there is no funnel. Take out the middle of the blenders lid, and while still blending add a squirt of whipped cream. Serve with whipped cream on top and a maraschino cherry.", @@ -97984,7 +97984,7 @@ "whipped cream" ], "title": "187 Cocktail recipe", - "url": "http://www.drinksmixer.com/drink10391.html" + "url": "https://www.drinksmixer.com/drink10391.html" }, { "directions": "Combine the Captain Morgan Original spiced rum and Parrot Bay mango rum in a cocktail shaker half-filled with ice cubes. Add the blue curacao, shake well and strain into a cocktail glass. Add Sprite and lemonade, and serve.", @@ -97996,7 +97996,7 @@ "lemonade" ], "title": "2000 Flushes recipe", - "url": "http://www.drinksmixer.com/drink10392.html" + "url": "https://www.drinksmixer.com/drink10392.html" }, { "directions": "Combine all ingredients in a cocktail shaker half-filled with ice cubes. Shake well, and strain into a collins glass. Garnish with a slice of orange, and serve.", @@ -98007,7 +98007,7 @@ "Bailey's\u00ae Irish cream" ], "title": "Alien Orgasm recipe", - "url": "http://www.drinksmixer.com/drink10393.html" + "url": "https://www.drinksmixer.com/drink10393.html" }, { "directions": "Pour all 6 whiskeys into an old-fashioned glass. Add ice cubes, and serve.", @@ -98020,7 +98020,7 @@ "Jameson\u00ae Irish whiskey" ], "title": "6 Wise Men recipe", - "url": "http://www.drinksmixer.com/drink10394.html" + "url": "https://www.drinksmixer.com/drink10394.html" }, { "directions": "Pour the Chablis white wine into a tall wine glass, and top with 7-Up. Add mandarin juice, and serve.", @@ -98030,7 +98030,7 @@ "mandarin juice" ], "title": "80's Orange Wine Cooler recipe", - "url": "http://www.drinksmixer.com/drink10395.html" + "url": "https://www.drinksmixer.com/drink10395.html" }, { "directions": "Pour the Chablis white wine into a tall wine glass, and top with 7-Up. Add peach juice, and serve.", @@ -98040,7 +98040,7 @@ "peach juice" ], "title": "80's Peach Wine Cooler recipe", - "url": "http://www.drinksmixer.com/drink10396.html" + "url": "https://www.drinksmixer.com/drink10396.html" }, { "directions": "Mix together the blackberry, raspberry, strawberry and blueberry juice together in a mixing glass. Pour the Chablis white wine into a tall wine glass, and top with 7-Up. Add the juice mixture, and serve.", @@ -98053,7 +98053,7 @@ "blueberry juice" ], "title": "80's Berry Wine Cooler recipe", - "url": "http://www.drinksmixer.com/drink10397.html" + "url": "https://www.drinksmixer.com/drink10397.html" }, { "directions": "Combine all ingredients in a blender, blend until combined. Pour into an exotic glass and serve.", @@ -98066,7 +98066,7 @@ "ice" ], "title": "A Lark's Tropical Heaven recipe", - "url": "http://www.drinksmixer.com/drink10398.html" + "url": "https://www.drinksmixer.com/drink10398.html" }, { "directions": "Cover the bottom of a highball glass with a thin layer of grenadine, then fill the glass with ice. Combine the 42 Degress vodka, Southern comfort liqueur and orange juice in a cocktail shaker half-filled with ice cubes. Strain over the ice into the highball glass. Garnish with two cherries, and serve.", @@ -98078,7 +98078,7 @@ "orange juice" ], "title": "Sloe Comfortable Screw Watching a Sunrise recipe", - "url": "http://www.drinksmixer.com/drink10399.html" + "url": "https://www.drinksmixer.com/drink10399.html" }, { "directions": "Pour the Bailey's Irish cream and DeKuyper Buttershots into a cocktail shaker with ice. Shake briefly and strain into a shot glass. Add Absolut vodka, and serve.", @@ -98088,7 +98088,7 @@ "Absolut\u00ae vodka" ], "title": "Absolut Wet Spot recipe", - "url": "http://www.drinksmixer.com/drink10400.html" + "url": "https://www.drinksmixer.com/drink10400.html" }, { "directions": "Combine the Bacardi Limon rum, amaretto and cranberry juice in a cocktail shaker half-filled with ice cubes. Shake, strain into a cocktail glass, and serve.", @@ -98098,7 +98098,7 @@ "cranberry juice" ], "title": "Alaine Cocktail recipe", - "url": "http://www.drinksmixer.com/drink10401.html" + "url": "https://www.drinksmixer.com/drink10401.html" }, { "directions": "Build ingredients with 1 - 2 ice cubes in a highball glass, and serve.", @@ -98110,7 +98110,7 @@ "black peppers" ], "title": "Alamo recipe", - "url": "http://www.drinksmixer.com/drink10402.html" + "url": "https://www.drinksmixer.com/drink10402.html" }, { "directions": "Mix both shots together in a shot glass, reciting \"... and now your double jeopardy categories ...\" then toss back a good one!", @@ -98119,7 +98119,7 @@ "vanilla extract" ], "title": "Alex Trebek recipe", - "url": "http://www.drinksmixer.com/drink10403.html" + "url": "https://www.drinksmixer.com/drink10403.html" }, { "directions": "Pour the butterscotch schnapps into a shot glass. Layer the Bailey's Irish cream on top, and finally add the DeKuyper Sour Apple Pucker schnapps. Serve.", @@ -98129,7 +98129,7 @@ "DeKuyper\u00ae Sour Apple Pucker schnapps" ], "title": "Alien Nipple #2 recipe", - "url": "http://www.drinksmixer.com/drink10404.html" + "url": "https://www.drinksmixer.com/drink10404.html" }, { "directions": "Pour the peach schnapps, coconut rum, Maui Blue Hawaiian schnapps, Melloni and pineapple juice into a mixing glass half-filled with ice cubes. Stir well and strain into a cocktail glass. Top with chilled 7-Up, garnish with lime, and serve.", @@ -98142,7 +98142,7 @@ "7-Up\u00ae soda" ], "title": "Angry Pirate recipe", - "url": "http://www.drinksmixer.com/drink10405.html" + "url": "https://www.drinksmixer.com/drink10405.html" }, { "directions": "Add all ingredients to a cocktail shaker with cracked ice. Shake and pour into an old fashioned glass over cracked ice and serve.", @@ -98152,7 +98152,7 @@ "sweet and sour mix" ], "title": "Apple Coconut Sour recipe", - "url": "http://www.drinksmixer.com/drink10406.html" + "url": "https://www.drinksmixer.com/drink10406.html" }, { "directions": "Add Skyy vodka and Appleton Estate rum to a hurricane glass over ice cubes. Peel and squeeze a segment or two of sweet Clementine, peeled. Drop in. Add Schweppes club soda, stir, and serve.", @@ -98162,7 +98162,7 @@ "Schweppes\u00ae club soda" ], "title": "Appleton Skyy Soda recipe", - "url": "http://www.drinksmixer.com/drink10407.html" + "url": "https://www.drinksmixer.com/drink10407.html" }, { "directions": "Mix ingredients together over ice cubes in a collins glass. Pour into a cocktail shaker and give one brisk shake. Pour back into the glass, garnish with a lime, and serve.", @@ -98173,7 +98173,7 @@ "Sprite\u00ae soda" ], "title": "Applicious Quencher recipe", - "url": "http://www.drinksmixer.com/drink10408.html" + "url": "https://www.drinksmixer.com/drink10408.html" }, { "directions": "Combine all ingredients in a cocktail shaker half-filled with ice cubes. Shake well, strain into a cocktail glass, and serve.", @@ -98185,7 +98185,7 @@ "Kahlua\u00ae coffee liqueur" ], "title": "Arielle's Fuck 'n Run recipe", - "url": "http://www.drinksmixer.com/drink10409.html" + "url": "https://www.drinksmixer.com/drink10409.html" }, { "directions": "Pour the milk and sugar into a cocktail shaker half-filled with ice cubes. Add the blue curacao and orange juice. Shake well, strain into a highball glass, and serve.", @@ -98196,7 +98196,7 @@ "sugar" ], "title": "Atomic Orange Cream recipe", - "url": "http://www.drinksmixer.com/drink10411.html" + "url": "https://www.drinksmixer.com/drink10411.html" }, { "directions": "Pour all ingredients into an old-fashioned glass 3/4 filled with ice cubes. Stir and serve.", @@ -98208,7 +98208,7 @@ "half-and-half" ], "title": "B-2 recipe", - "url": "http://www.drinksmixer.com/drink10413.html" + "url": "https://www.drinksmixer.com/drink10413.html" }, { "directions": "Stir ingredients together in a highball glass, and serve.", @@ -98218,7 +98218,7 @@ "Mountain Dew\u00ae lime soda" ], "title": "Ba-dew-si recipe", - "url": "http://www.drinksmixer.com/drink10414.html" + "url": "https://www.drinksmixer.com/drink10414.html" }, { "directions": "Shake ingredients together with cracked ice in a cocktail shaker. Strain into an old-fashioned glass over ice cubes. Garnish with a maraschino cherry and orange slice, and serve.", @@ -98228,7 +98228,7 @@ "grenadine syrup" ], "title": "Bacardi Refresher recipe", - "url": "http://www.drinksmixer.com/drink10415.html" + "url": "https://www.drinksmixer.com/drink10415.html" }, { "directions": "Pour the Bacardi vanilla rum into a collins glass 1/3 filled with ice. Fill the rest of the glass with Coca-cola, and serve.", @@ -98237,7 +98237,7 @@ "Coca-Cola\u00ae" ], "title": "Bacardi Vanilla Coke recipe", - "url": "http://www.drinksmixer.com/drink10416.html" + "url": "https://www.drinksmixer.com/drink10416.html" }, { "directions": "Combine all ingredients in a blender with half a cup of crushed ice. Blend well, pour into a tall glass, and serve.", @@ -98249,7 +98249,7 @@ "banana" ], "title": "Bahama Mama #3 recipe", - "url": "http://www.drinksmixer.com/drink10417.html" + "url": "https://www.drinksmixer.com/drink10417.html" }, { "directions": "Stir ingredients together with ice in a highball glass, and serve.", @@ -98259,7 +98259,7 @@ "Bailey's\u00ae Irish cream" ], "title": "Bailey's Co-Op recipe", - "url": "http://www.drinksmixer.com/drink10418.html" + "url": "https://www.drinksmixer.com/drink10418.html" }, { "directions": "Pour both ingredients into a brandy snifter, stir lightly, and serve.", @@ -98268,7 +98268,7 @@ "Malibu\u00ae coconut rum" ], "title": "Bailey-Bu recipe", - "url": "http://www.drinksmixer.com/drink10419.html" + "url": "https://www.drinksmixer.com/drink10419.html" }, { "directions": "Fill a highball glass with ice cubes. Add the Jameson Irish Whiskey, and top it off with Dr. Pepper. Serve,", @@ -98277,7 +98277,7 @@ "Dr. Pepper\u00ae soda" ], "title": "Ballchain Blaster recipe", - "url": "http://www.drinksmixer.com/drink10420.html" + "url": "https://www.drinksmixer.com/drink10420.html" }, { "directions": "Pour the brandy and vodka into a mason jar. Add the root beer and a splash of red wine, and serve.", @@ -98288,7 +98288,7 @@ "red wine" ], "title": "Bargo recipe", - "url": "http://www.drinksmixer.com/drink10421.html" + "url": "https://www.drinksmixer.com/drink10421.html" }, { "directions": "Pour the cherry vodka into a highball glass half-filled with ice cubes. Add the Dr. Pepper and orange juice, stir and serve.", @@ -98298,7 +98298,7 @@ "orange juice" ], "title": "Bat Chain Puller recipe", - "url": "http://www.drinksmixer.com/drink10422.html" + "url": "https://www.drinksmixer.com/drink10422.html" }, { "directions": "Mix all ingredients together with an ice cube or two, shaking vigorously and pour into a highball glass over 3 - 5 ice cubes. Serve.", @@ -98309,7 +98309,7 @@ "lime juice" ], "title": "Battery Skydiver recipe", - "url": "http://www.drinksmixer.com/drink10424.html" + "url": "https://www.drinksmixer.com/drink10424.html" }, { "directions": "Stir the vodka, rum and orange juice together over crushed ice in a hurricane glass. Garnish with a cherry, and serve.", @@ -98319,7 +98319,7 @@ "orange juice" ], "title": "Beezer Punch recipe", - "url": "http://www.drinksmixer.com/drink10425.html" + "url": "https://www.drinksmixer.com/drink10425.html" }, { "directions": "Pour the Bailey's Irish cream into a shot glass. Add the Hennessy cognac brandy. Drop the shot glass into a half-pint of Guinness lager, and chug.", @@ -98329,7 +98329,7 @@ "Bailey's\u00ae Irish cream" ], "title": "Belfast Bomb recipe", - "url": "http://www.drinksmixer.com/drink10426.html" + "url": "https://www.drinksmixer.com/drink10426.html" }, { "directions": "Pour Blue Moon ale into a beer mug, filling it half way. Fill the other half with Guinness stout, pouring it over a spoon, and serve.", @@ -98338,7 +98338,7 @@ "Blue Moon\u00ae Belgian ale" ], "title": "Belgian Waffle recipe", - "url": "http://www.drinksmixer.com/drink10427.html" + "url": "https://www.drinksmixer.com/drink10427.html" }, { "directions": "Fill a martini shaker about half full with ice cubes. Pour about a shot of tequila, triple sec, peach schnapps, and light rum. Fill with a roughly equal amount of pineapple juice (to taste), and shake well. Pour into a large glass with crushed ice. Top off with dark rum and stir a little. Garnish and serve.", @@ -98351,7 +98351,7 @@ "dark rum" ], "title": "Bermuda Mai Tai recipe", - "url": "http://www.drinksmixer.com/drink10428.html" + "url": "https://www.drinksmixer.com/drink10428.html" }, { "directions": "Pour the vodka, light rum and dark rum into a cocktail shaker half-filled with ice cubes. Shake well, and strain into a highball glass filled with ice cubes. Add Sprite and a splash of pineapple juice. Serve with a twist of lime (or lemon), and serve.", @@ -98363,7 +98363,7 @@ "pineapple juice" ], "title": "Astronaut recipe", - "url": "http://www.drinksmixer.com/drink10429.html" + "url": "https://www.drinksmixer.com/drink10429.html" }, { "directions": "Add all ingredients to a cocktail shaker half-filled with ice cubes. Shake well and strain into a chilled martini or cocktail glass. Garnish with frozen blueberries placed inside the glass.", @@ -98374,7 +98374,7 @@ "cranberry juice" ], "title": "Berry Fusion Martini recipe", - "url": "http://www.drinksmixer.com/drink10430.html" + "url": "https://www.drinksmixer.com/drink10430.html" }, { "directions": "Combine all ingredients together with ice cubes in a cocktail shaker, and pour into a highball glass filled with ice cubes. Garnish with a pickle spear, olives, and a lime slice.", @@ -98388,7 +98388,7 @@ "tomato juice" ], "title": "Bite Your Mama Bloody Mary recipe", - "url": "http://www.drinksmixer.com/drink10431.html" + "url": "https://www.drinksmixer.com/drink10431.html" }, { "directions": "Combine the Absolut Mandrin vodka, Tanqueray gin, Tuaca citrus liqueur, Grand Marnier orange liqueur and orange juice in a cocktail shaker half-filled with ice cubes. Strain into a cocktail glass, float Red Bull energy drink on top. Garnish with flamed orange peel, and serve.", @@ -98401,7 +98401,7 @@ "Red Bull\u00ae energy drink" ], "title": "Bizonkadonk Martini recipe", - "url": "http://www.drinksmixer.com/drink10433.html" + "url": "https://www.drinksmixer.com/drink10433.html" }, { "directions": "Pour Jagermeister liqueur into a rocks or old-fashioned glass or large shot glass. Top with a splash of cola, cover with bar napkin and slam on table top; shoot it immediately.", @@ -98410,7 +98410,7 @@ "cola" ], "title": "Black Lab recipe", - "url": "http://www.drinksmixer.com/drink10434.html" + "url": "https://www.drinksmixer.com/drink10434.html" }, { "directions": "Combine all ingredients in a cocktail shaker half-filled with ice cubes. Shake well, strain into a chilled highball glass filled with ice cubes, and serve.", @@ -98420,7 +98420,7 @@ "Jagermeister\u00ae herbal liqueur" ], "title": "Black Sabbath recipe", - "url": "http://www.drinksmixer.com/drink10435.html" + "url": "https://www.drinksmixer.com/drink10435.html" }, { "directions": "Pour the vodka and Kahlua coffee liqueur into an old-fashioned glass half-filled with ice cubes. Add the peppermint schnapps, and serve.", @@ -98430,7 +98430,7 @@ "peppermint schnapps" ], "title": "Black Santa recipe", - "url": "http://www.drinksmixer.com/drink10436.html" + "url": "https://www.drinksmixer.com/drink10436.html" }, { "directions": "Pour both ingredients into a highball glass half-filled with ice cubes. Stir and serve.", @@ -98439,7 +98439,7 @@ "Black Haus\u00ae blackberry schnapps" ], "title": "Blackberry 7 recipe", - "url": "http://www.drinksmixer.com/drink10437.html" + "url": "https://www.drinksmixer.com/drink10437.html" }, { "directions": "Stir ingredients together in a shot glass, and serve.", @@ -98448,7 +98448,7 @@ "Mountain Dew\u00ae lime soda" ], "title": "BlackBurst recipe", - "url": "http://www.drinksmixer.com/drink10438.html" + "url": "https://www.drinksmixer.com/drink10438.html" }, { "directions": "1. Grasp bottle lid firmly with left hand, and the bottle with your right hand. (lid pointing up; towards the sky and the bottle down; towards the ground)\r", @@ -98457,7 +98457,7 @@ "Kool-Aid\u00ae Cherry mix" ], "title": "Blood Punch recipe", - "url": "http://www.drinksmixer.com/drink10439.html" + "url": "https://www.drinksmixer.com/drink10439.html" }, { "directions": "Chill ingredients and layer in following order into a shot glass: Aftershock cinnamon schnapps, Blue Curacao liqueur, Jagermeister liqueur. Serve immediately.", @@ -98467,7 +98467,7 @@ "Jagermeister\u00ae herbal liqueur" ], "title": "Bloody Bruiser recipe", - "url": "http://www.drinksmixer.com/drink10440.html" + "url": "https://www.drinksmixer.com/drink10440.html" }, { "directions": "Stir ingredients together in an old-fashioned or highball glass with cracked ice, and serve.", @@ -98480,7 +98480,7 @@ "celery salt" ], "title": "Bloody Dragon recipe", - "url": "http://www.drinksmixer.com/drink10441.html" + "url": "https://www.drinksmixer.com/drink10441.html" }, { "directions": "Pour all ingredients into a cocktail shaker half-filled with ice cubes. Shake well and strain into a collins glass over ice cubes. Garnish with an orange slice if desired.", @@ -98490,7 +98490,7 @@ "orange juice" ], "title": "Bloody Sharkbite recipe", - "url": "http://www.drinksmixer.com/drink10442.html" + "url": "https://www.drinksmixer.com/drink10442.html" }, { "directions": "Pour the vodka, blue Curacao liqueur and Chambord raspberry liqueur into a cocktail shaker half-filled with ice cubes. Shake briefly, strain into a shot glass and serve.", @@ -98500,7 +98500,7 @@ "Chambord\u00ae raspberry liqueur" ], "title": "Bloody Smurf #2 recipe", - "url": "http://www.drinksmixer.com/drink10443.html" + "url": "https://www.drinksmixer.com/drink10443.html" }, { "directions": "Pour the coconut rum and blue curacao into a tall glass half-filled wtih ice cubes. Fill the rest of the glass with 7-up, stir lightly and serve.", @@ -98510,7 +98510,7 @@ "7-Up\u00ae soda" ], "title": "Blue Coconut recipe", - "url": "http://www.drinksmixer.com/drink10444.html" + "url": "https://www.drinksmixer.com/drink10444.html" }, { "directions": "Mix all ingredients together in a punch bowl and stir. Chill in refrigerator. Add sugar and fruit if desired. Chill over night if adding fruit. Serve in punch cups.", @@ -98520,7 +98520,7 @@ "pineapple juice" ], "title": "Blue Dinosaurs recipe", - "url": "http://www.drinksmixer.com/drink10445.html" + "url": "https://www.drinksmixer.com/drink10445.html" }, { "directions": "Pour all ingredients into a collins glass, stir well, and serve.", @@ -98530,7 +98530,7 @@ "Blue Curacao liqueur" ], "title": "Blue Midnight recipe", - "url": "http://www.drinksmixer.com/drink10446.html" + "url": "https://www.drinksmixer.com/drink10446.html" }, { "directions": "Pour the Cointreau orange liqueur into a highball glass half-filled with ice cubes. Add the lime juice, fill with lemonade and serve.", @@ -98540,7 +98540,7 @@ "lemonade" ], "title": "Blue Moon recipe", - "url": "http://www.drinksmixer.com/drink10447.html" + "url": "https://www.drinksmixer.com/drink10447.html" }, { "directions": "Add the vodka to a highball glass, then fill to the brim with pre-mixed Kool-Aid. Serve. Alternatively, use another variety of Kool-Aid and rename the drink to match.", @@ -98549,7 +98549,7 @@ "Kool-Aid\u00ae Blue Raspberry mix" ], "title": "Blue Volcano recipe", - "url": "http://www.drinksmixer.com/drink10448.html" + "url": "https://www.drinksmixer.com/drink10448.html" }, { "directions": "Place all ingredients in a cocktail shaker 3/4 filled with ice cubes. Shake vigorously and strain into a cocktail glass. Garnish with olives and serve.", @@ -98559,7 +98559,7 @@ "dry vermouth" ], "title": "Bluecheese Martini recipe", - "url": "http://www.drinksmixer.com/drink10449.html" + "url": "https://www.drinksmixer.com/drink10449.html" }, { "directions": "Pour the peach schnapps and grenadine syrup into the bottom of a Champagne flute. Fill with Champagne, and serve.", @@ -98569,7 +98569,7 @@ "grenadine syrup" ], "title": "Blushing Bride recipe", - "url": "http://www.drinksmixer.com/drink10450.html" + "url": "https://www.drinksmixer.com/drink10450.html" }, { "directions": "Pour the Bailey's Irish cream into a shot glass. Layer the banana liqueur on top. Top with a dash of whipped cream, and serve.", @@ -98579,7 +98579,7 @@ "whipped cream" ], "title": "Boize Kumm recipe", - "url": "http://www.drinksmixer.com/drink10451.html" + "url": "https://www.drinksmixer.com/drink10451.html" }, { "directions": "Pour both ingredients over ice in an old-fashioned glass, stir and serve.", @@ -98588,7 +98588,7 @@ "Yoo-hoo\u00ae chocolate milk" ], "title": "Boo Hoo recipe", - "url": "http://www.drinksmixer.com/drink10453.html" + "url": "https://www.drinksmixer.com/drink10453.html" }, { "directions": "Shake ingredients over ice, strain into a shot glass and serve.", @@ -98598,7 +98598,7 @@ "pineapple juice" ], "title": "Booty Call recipe", - "url": "http://www.drinksmixer.com/drink10454.html" + "url": "https://www.drinksmixer.com/drink10454.html" }, { "directions": "Pour the Seagram's VO Canadian whisky into a rocks or old-fashioned glass filled with ice cubes. Add the peach schnapps, stir and serve.", @@ -98607,7 +98607,7 @@ "peach schnapps" ], "title": "Branding Iron recipe", - "url": "http://www.drinksmixer.com/drink10456.html" + "url": "https://www.drinksmixer.com/drink10456.html" }, { "directions": "Pour the Amaretto di Saronno, creme de menthe, vodka and creme de cacao into a cocktail shaker half-filled with ice cubes. Shake well, and pour into a chilled rocks or old-fashioned glass. Garnish with mint leaves and almond powder, and serve.", @@ -98618,7 +98618,7 @@ "creme de cacao" ], "title": "Breeze of Saronno recipe", - "url": "http://www.drinksmixer.com/drink10457.html" + "url": "https://www.drinksmixer.com/drink10457.html" }, { "directions": "Stir the Lipton iced tea and Everclear together in a large shot glass. Top with whipped cream, and serve.", @@ -98628,7 +98628,7 @@ "whipped cream" ], "title": "Brisky Joe recipe", - "url": "http://www.drinksmixer.com/drink10458.html" + "url": "https://www.drinksmixer.com/drink10458.html" }, { "directions": "Stir ingredients together with ice in a mixing glass. Strain into a cocktail glass, and serve.", @@ -98637,7 +98637,7 @@ "Tia Maria\u00ae coffee liqueur" ], "title": "Brown and Beige recipe", - "url": "http://www.drinksmixer.com/drink10459.html" + "url": "https://www.drinksmixer.com/drink10459.html" }, { "directions": "Stir ingredients together in an old-fashioned glass, and shoot.", @@ -98646,7 +98646,7 @@ "Red Bull\u00ae energy drink" ], "title": "Bruce Leroy recipe", - "url": "http://www.drinksmixer.com/drink10460.html" + "url": "https://www.drinksmixer.com/drink10460.html" }, { "directions": "Take a pint glass or mug and fill with ice cubes. Half-fill the glass with Mickey Finn's Butterscotch and Vanilla liqueur (available at grocery stores) and fill the rest of the glass with root beer before serving.", @@ -98655,7 +98655,7 @@ "root beer" ], "title": "Butterbeer #2 recipe", - "url": "http://www.drinksmixer.com/drink10462.html" + "url": "https://www.drinksmixer.com/drink10462.html" }, { "directions": "Put all ingredients into a cocktail shaker with ice, shake and strain into a cocktail glass. Add hershey's chocolate syrup to the cocktail glass if desired. Serve.", @@ -98666,7 +98666,7 @@ "Coca-Cola\u00ae" ], "title": "Butterfinger #2 recipe", - "url": "http://www.drinksmixer.com/drink10463.html" + "url": "https://www.drinksmixer.com/drink10463.html" }, { "directions": "Pour both ingredients into a shot glass, and shoot.", @@ -98675,7 +98675,7 @@ "butterscotch liqueur" ], "title": "Butterscotch Bomb recipe", - "url": "http://www.drinksmixer.com/drink10464.html" + "url": "https://www.drinksmixer.com/drink10464.html" }, { "directions": "Pour the butterscotch schnapps and Southern Comfort peach liqueur into a highball glass with a little ice. Top with Coca-cola to taste, and serve.", @@ -98685,7 +98685,7 @@ "Coca-Cola\u00ae" ], "title": "Buttery So-Co recipe", - "url": "http://www.drinksmixer.com/drink10465.html" + "url": "https://www.drinksmixer.com/drink10465.html" }, { "directions": "Combine all ingredients in a pitcher and chill, preferably in ice. Pour into suitable glasses. Garnish rim of each glass with a lime slice, and serve.", @@ -98696,7 +98696,7 @@ "ginger ale" ], "title": "Cabin Cooler recipe", - "url": "http://www.drinksmixer.com/drink10467.html" + "url": "https://www.drinksmixer.com/drink10467.html" }, { "directions": "Pour the Cabo Wabo tequila into an old-fashioned glass. Add the Red Bull, and shoot.", @@ -98705,7 +98705,7 @@ "Red Bull\u00ae energy drink" ], "title": "Cabo Bomb recipe", - "url": "http://www.drinksmixer.com/drink10468.html" + "url": "https://www.drinksmixer.com/drink10468.html" }, { "directions": "Pour the batida de coco into a collins glass filled with ice cubes. Fill with cactus fruit juice, stir and serve.", @@ -98714,7 +98714,7 @@ "cactus fruit juice" ], "title": "Cactus Bat recipe", - "url": "http://www.drinksmixer.com/drink10469.html" + "url": "https://www.drinksmixer.com/drink10469.html" }, { "directions": "Pour the vodka and Kahlua coffee liqueur into a collins glass filled with ice cubes. Add the Bailey's Irish cream, fill the glass with milk, stir and serve.", @@ -98725,7 +98725,7 @@ "milk" ], "title": "Calm Monkey recipe", - "url": "http://www.drinksmixer.com/drink10470.html" + "url": "https://www.drinksmixer.com/drink10470.html" }, { "directions": "Pour the vodka, peach schnapps, melon liqueur and cranberry juice into a cocktail shaker half-filled with ice cubes. Shake well and strain into a large cocktail glass. Add a speared cherry, and serve.", @@ -98736,7 +98736,7 @@ "cranberry juice" ], "title": "Canadian Princess recipe", - "url": "http://www.drinksmixer.com/drink10471.html" + "url": "https://www.drinksmixer.com/drink10471.html" }, { "directions": "Stir together in a shot glass, and shoot.", @@ -98747,7 +98747,7 @@ "Jose Cuervo\u00ae Especial gold tequila" ], "title": "Three Wise Men and Their Bastard Cousin recipe", - "url": "http://www.drinksmixer.com/drink10473.html" + "url": "https://www.drinksmixer.com/drink10473.html" }, { "directions": "Pour the dark rum into a cocktail shaker half-filled with ice cubes. Add the creme de cacao and double cream. Shake well and strain into a chilled cocktail glass. Sprinkle with grated nutmeg on top, and serve.", @@ -98758,7 +98758,7 @@ "nutmeg" ], "title": "Alexander Baby recipe", - "url": "http://www.drinksmixer.com/drink10474.html" + "url": "https://www.drinksmixer.com/drink10474.html" }, { "directions": "Add the lime, sugar and mint sprigs to a highball glass and muddle with a muddler. Add several ice cubes and pour in the Bacardi apple rum. Top with club soda (adjust to taste), and stir. Garnish with an apple slice and a lime wedge, and serve.", @@ -98770,7 +98770,7 @@ "mint" ], "title": "Apple Mojito recipe", - "url": "http://www.drinksmixer.com/drink10475.html" + "url": "https://www.drinksmixer.com/drink10475.html" }, { "directions": "Combine all ingredients (except powdered cocoa) in a bender. Blend until smooth and pour into a cocktail glass. Garnish with a dusting of powdered cocoa, and serve.", @@ -98783,7 +98783,7 @@ "cocoa" ], "title": "Banana Foster Martini recipe", - "url": "http://www.drinksmixer.com/drink10476.html" + "url": "https://www.drinksmixer.com/drink10476.html" }, { "directions": "Stir together the Smirnoff Raspberry Twist vodka and Sprite lemon-lime soda in a highball glass. Serve straight up.", @@ -98792,7 +98792,7 @@ "Sprite\u00ae soda" ], "title": "Blow Job #2 recipe", - "url": "http://www.drinksmixer.com/drink10477.html" + "url": "https://www.drinksmixer.com/drink10477.html" }, { "directions": "Pour the Grey Goose vodka and Hpnotiq liqueur into a cocktail shaker 1/4 filled with ice cubes. Shake well and pour into a martini glass. Top with a generous splash of champagne, and serve.", @@ -98802,7 +98802,7 @@ "Brut\u00ae Champagne" ], "title": "Blue Rox's Martini recipe", - "url": "http://www.drinksmixer.com/drink10478.html" + "url": "https://www.drinksmixer.com/drink10478.html" }, { "directions": "Pour all ingredients into a cocktail shaker half-filled with ice cubes. Shake firmly and pour into a cocktail glass. Serve.", @@ -98813,7 +98813,7 @@ "cranberry juice" ], "title": "Candy Apple Martini recipe", - "url": "http://www.drinksmixer.com/drink10479.html" + "url": "https://www.drinksmixer.com/drink10479.html" }, { "directions": "Pour the vodka into a highball glass filled with ice cubes. Add the cranberry juice and Sprite soda. Top with the Malibu coconut rum and pineapple juice in the center of the drink. Stir slightly and serve.", @@ -98825,7 +98825,7 @@ "pineapple juice" ], "title": "Cape Cod Islander recipe", - "url": "http://www.drinksmixer.com/drink10480.html" + "url": "https://www.drinksmixer.com/drink10480.html" }, { "directions": "Combine both ingredients in a shot glass and shoot.", @@ -98834,7 +98834,7 @@ "Jack Daniel's\u00ae Tennessee whiskey" ], "title": "Captain Jack recipe", - "url": "http://www.drinksmixer.com/drink10481.html" + "url": "https://www.drinksmixer.com/drink10481.html" }, { "directions": "Combine all ingredients in a shot glass, and shoot.", @@ -98844,7 +98844,7 @@ "Grey Goose\u00ae vodka" ], "title": "Captain Jack Sparrow #3 recipe", - "url": "http://www.drinksmixer.com/drink10482.html" + "url": "https://www.drinksmixer.com/drink10482.html" }, { "directions": "Drop the cherries and some ice into a highball glass. Pour the Cabo Wabo anejo tequila, Captain Morgan Private Stock dark rum, Minute Maid limeade and 99 Oranges orange schnapps into the glass. Add a splash of maraschino cherry juice on top, and serve.", @@ -98857,7 +98857,7 @@ "maraschino cherries" ], "title": "Captain Jack Sparrow #2 recipe", - "url": "http://www.drinksmixer.com/drink10483.html" + "url": "https://www.drinksmixer.com/drink10483.html" }, { "directions": "Pour the DeKuyper Raspberry Pucker schnapps into a cocktail shaker half-filled with ice cubes. Add the Red Bull energy drink and shake well. Strain into a highball glass or old-fashioned glass, and serve.", @@ -98866,7 +98866,7 @@ "Red Bull\u00ae energy drink" ], "title": "Blue Pucker Bomb recipe", - "url": "http://www.drinksmixer.com/drink10484.html" + "url": "https://www.drinksmixer.com/drink10484.html" }, { "directions": "Stir ingredients together in a highball glass, ice if preferred, and serve.", @@ -98875,7 +98875,7 @@ "7-Up Plus soda" ], "title": "Captain Plah recipe", - "url": "http://www.drinksmixer.com/drink10485.html" + "url": "https://www.drinksmixer.com/drink10485.html" }, { "directions": "Combine the vanilla vodka, toffee liqueur and Aftershock cinnamon schnapps in a cocktail shaker half-filled with ice cubes. Shake well, strain into a cocktail glass, and serve.", @@ -98885,7 +98885,7 @@ "Aftershock\u00ae Hot & Cool cinnamon schnapps" ], "title": "Carrot Cake Martini recipe", - "url": "http://www.drinksmixer.com/drink10486.html" + "url": "https://www.drinksmixer.com/drink10486.html" }, { "directions": "Build ingredients in order in a shot glass, and shoot.", @@ -98896,7 +98896,7 @@ "Malibu\u00ae coconut rum" ], "title": "Cha Cha Unocha recipe", - "url": "http://www.drinksmixer.com/drink10488.html" + "url": "https://www.drinksmixer.com/drink10488.html" }, { "directions": "Pour the Whaler's Pineapple Paradise rum into a cocktail shaker half-filled with ice cubes. Add the Grand Marnier orange liqueur, pineapple juice and grenadine. Shake well and strain into a champagne glass. Top with Champagne. Garnish with a strawberry slice on the rim, and serve.", @@ -98909,7 +98909,7 @@ "strawberry" ], "title": "Champagne Hula recipe", - "url": "http://www.drinksmixer.com/drink10489.html" + "url": "https://www.drinksmixer.com/drink10489.html" }, { "directions": "Combine both ingredients in a highball glass, stir and serve.", @@ -98918,7 +98918,7 @@ "WKD\u00ae Original Vodka Blue" ], "title": "Cheeky Vimto recipe", - "url": "http://www.drinksmixer.com/drink10490.html" + "url": "https://www.drinksmixer.com/drink10490.html" }, { "directions": "Pour the grenadine into a shot glass, then carefully pour the Bacardi 151 on top; the two should not mix. Light it on fire, blow out the flames and shoot.", @@ -98927,7 +98927,7 @@ "grenadine syrup" ], "title": "Cherry Bomb #7 recipe", - "url": "http://www.drinksmixer.com/drink10491.html" + "url": "https://www.drinksmixer.com/drink10491.html" }, { "directions": "Pour ingredients, in order, into a collins glass filled with ice cubes. Garnish with a slice of orange and a maraschino cherry, and serve.", @@ -98937,7 +98937,7 @@ "grenadine syrup" ], "title": "Cherry Hooker recipe", - "url": "http://www.drinksmixer.com/drink10492.html" + "url": "https://www.drinksmixer.com/drink10492.html" }, { "directions": "Combine equal parts of Absolut Citron vodka and sweet and sour mix over ice in a cocktail shaker. Shake well; add juice of one lemon slice and grenadine, then strain into a large shot glass or small old-fashioned glass. Sprinkle sugar around the rim of the shot glass, and serve.", @@ -98948,7 +98948,7 @@ "grenadine syrup" ], "title": "Cherry Lemon Drop recipe", - "url": "http://www.drinksmixer.com/drink10493.html" + "url": "https://www.drinksmixer.com/drink10493.html" }, { "directions": "Pour vodka and grapefruit juice into a highball glass half-filled with ice cubes. Top with 7-Up, stir, and serve. ", @@ -98958,7 +98958,7 @@ "7-Up\u00ae cherry soda" ], "title": "Cherry Vodka Greyhound recipe", - "url": "http://www.drinksmixer.com/drink10494.html" + "url": "https://www.drinksmixer.com/drink10494.html" }, { "directions": "Place a single maraschino cherry into a shot glass. Add the mango rum and cherry brandy, then serve.", @@ -98968,7 +98968,7 @@ "maraschino cherry" ], "title": "Cherry Zinger recipe", - "url": "http://www.drinksmixer.com/drink10495.html" + "url": "https://www.drinksmixer.com/drink10495.html" }, { "directions": "Pour the Peruvian Pisco into a highball glass filled with ice cubes. Add a spoonful of lemon juice, then fill with ginger ale. Serve.", @@ -98978,7 +98978,7 @@ "ginger ale" ], "title": "Chilcano de Pisco recipe", - "url": "http://www.drinksmixer.com/drink10496.html" + "url": "https://www.drinksmixer.com/drink10496.html" }, { "directions": "Place all ingredients in a cocktail shaker with a few ice cubes. Shake well, strain into a cocktail glass, and serve.", @@ -98988,7 +98988,7 @@ "milk" ], "title": "Chocolate Boobie recipe", - "url": "http://www.drinksmixer.com/drink10497.html" + "url": "https://www.drinksmixer.com/drink10497.html" }, { "directions": "Pour the Bacardi white rum and Kahlua coffee liqueur into a collins glass filled with ice cubes. Fill with Coca-cola, and serve.", @@ -98998,7 +98998,7 @@ "Coca-Cola\u00ae" ], "title": "Chocolate Coke recipe", - "url": "http://www.drinksmixer.com/drink10498.html" + "url": "https://www.drinksmixer.com/drink10498.html" }, { "directions": "Build ingredients in a champagne flute, and serve.", @@ -99008,7 +99008,7 @@ "Champagne" ], "title": "Christini Martini recipe", - "url": "http://www.drinksmixer.com/drink10501.html" + "url": "https://www.drinksmixer.com/drink10501.html" }, { "directions": "First take slices of pear and place them on a saucer, pour on raw sugar, douse in the overproof rum, and light. When caramelised this will become the drink garnish.\r", @@ -99022,7 +99022,7 @@ "overproof rum" ], "title": "Citizen Cane recipe", - "url": "http://www.drinksmixer.com/drink10502.html" + "url": "https://www.drinksmixer.com/drink10502.html" }, { "directions": "Take a lemon wedge, notch a slice into the middle and use it to moisten the rim of a chilled cocktail glass. Frost the moistened outer rim of the glass with superfine sugar. Shake ingredients together with cracked ice and strain into prepared cocktail glass. Garnish with lemon twist, and serve.", @@ -99032,7 +99032,7 @@ "lemon juice" ], "title": "Classic Sidecar recipe", - "url": "http://www.drinksmixer.com/drink10503.html" + "url": "https://www.drinksmixer.com/drink10503.html" }, { "directions": "Pour a shot of Malibu coconut rum into the bottom of a cordial glass. Top up with milk (the colder the better), stir, and serve.", @@ -99041,7 +99041,7 @@ "milk" ], "title": "Coconut Milk recipe", - "url": "http://www.drinksmixer.com/drink10504.html" + "url": "https://www.drinksmixer.com/drink10504.html" }, { "directions": "Pour the Malibu coconut rum into a highball glass filled with ice cubes. Add the orange juice, and stir. Garnish with a slice of orange on the rim, and serve.", @@ -99050,7 +99050,7 @@ "orange juice" ], "title": "Coconut Orange recipe", - "url": "http://www.drinksmixer.com/drink10505.html" + "url": "https://www.drinksmixer.com/drink10505.html" }, { "directions": "Stir ingredients together in a highball glass filled with ice cubes, and serve.", @@ -99059,7 +99059,7 @@ "Coca-Cola\u00ae" ], "title": "Coke Safari recipe", - "url": "http://www.drinksmixer.com/drink10506.html" + "url": "https://www.drinksmixer.com/drink10506.html" }, { "directions": "Pour the Stolichnaya Red Label vodka into a highball glass filled with ice cubes. Add the Mountain Dew Code Red soda, and serve.", @@ -99068,7 +99068,7 @@ "Mountain Dew\u00ae Code Red soda" ], "title": "Commie Bastard recipe", - "url": "http://www.drinksmixer.com/drink10507.html" + "url": "https://www.drinksmixer.com/drink10507.html" }, { "directions": "Stir ingredients together in a highball glass, and serve.", @@ -99078,7 +99078,7 @@ "orange juice" ], "title": "Confusion recipe", - "url": "http://www.drinksmixer.com/drink10508.html" + "url": "https://www.drinksmixer.com/drink10508.html" }, { "directions": "Combine all of the ingredients in an old-fashioned glass filled with ice cubes, and serve.", @@ -99089,7 +99089,7 @@ "Sprite\u00ae soda" ], "title": "Cool Paradise recipe", - "url": "http://www.drinksmixer.com/drink10509.html" + "url": "https://www.drinksmixer.com/drink10509.html" }, { "directions": "Add vodka to a Champagne flute, add a dash of limoncello (to taste), and a dash of blue curacao (to taste). Fill the glass with lemonade. Add ice if desired, and serve.", @@ -99100,7 +99100,7 @@ "lemonade" ], "title": "Coral Queensland recipe", - "url": "http://www.drinksmixer.com/drink10510.html" + "url": "https://www.drinksmixer.com/drink10510.html" }, { "directions": "Combine all ingredients in a cocktail shaker half-filled with ice cubes. Shake well, and strain into a cocktail or martini glass. Garnish with a lime wedge on the rim, and serve.", @@ -99112,7 +99112,7 @@ "lime juice" ], "title": "Cosmo Kurant recipe", - "url": "http://www.drinksmixer.com/drink10511.html" + "url": "https://www.drinksmixer.com/drink10511.html" }, { "directions": "Pour the Phillips Butter Ripple schnapps into an old-fashioned glass filled with ice cubes. Fill with milk, add a touch of grenadine, and serve.", @@ -99122,7 +99122,7 @@ "grenadine syrup" ], "title": "Cotton Candy #2 recipe", - "url": "http://www.drinksmixer.com/drink10512.html" + "url": "https://www.drinksmixer.com/drink10512.html" }, { "directions": "Combine and chill all ingredients in a cocktail shaker. Pour into a shot glass, and serve.", @@ -99132,7 +99132,7 @@ "sweet and sour mix" ], "title": "Country Apple recipe", - "url": "http://www.drinksmixer.com/drink10513.html" + "url": "https://www.drinksmixer.com/drink10513.html" }, { "directions": "Shake gin and cran-raspberry juice with cracked ice in a cocktail shaker; pour into a martini glass. Garnish with a maraschino cherry, and serve.", @@ -99141,7 +99141,7 @@ "cranberry-raspberry juice" ], "title": "Cranberry Gin recipe", - "url": "http://www.drinksmixer.com/drink10514.html" + "url": "https://www.drinksmixer.com/drink10514.html" }, { "directions": "Mix all ingredients a day ahead and place in freezer. When ready to serve, take out of freezer and scoop and serve with ginger ale, if desired.", @@ -99153,7 +99153,7 @@ "Popov\u00ae vodka" ], "title": "Cranberry Vodka Slush recipe", - "url": "http://www.drinksmixer.com/drink10515.html" + "url": "https://www.drinksmixer.com/drink10515.html" }, { "directions": "Combine all ingredients together in a collins glass filled with ice cubes. Stir well, and serve.", @@ -99165,7 +99165,7 @@ "pineapple juice" ], "title": "Crazy Cocktail recipe", - "url": "http://www.drinksmixer.com/drink10516.html" + "url": "https://www.drinksmixer.com/drink10516.html" }, { "directions": "Shake the Malibu coconut rum, white rum, melon liqueur, orange juice and cream in a cocktail shaker half-filled with ice cubes. Strain into a highball glass filled with ice cubes. Add the syrup last, and serve.", @@ -99178,7 +99178,7 @@ "orange juice" ], "title": "Cream Bomb recipe", - "url": "http://www.drinksmixer.com/drink10517.html" + "url": "https://www.drinksmixer.com/drink10517.html" }, { "directions": "Pour a can of Budweiser B-to-the-EPour into a pint glass. Drop in a shot of Crown Royal Canadian whisky, and shoot.", @@ -99187,7 +99187,7 @@ "Budweiser\u00ae B to the E" ], "title": "Crown the King recipe", - "url": "http://www.drinksmixer.com/drink10518.html" + "url": "https://www.drinksmixer.com/drink10518.html" }, { "directions": "Combine the 99 Bananas banana schnapps, Kahlua coffee liqueur and Godiva chocolate liqueur in a cocktail shaker. Shake well and pour into a shot glass. Drop a cherry into the glass, consume the liquid and eat the cherry.", @@ -99198,7 +99198,7 @@ "cherry" ], "title": "Banana Split #2 recipe", - "url": "http://www.drinksmixer.com/drink10519.html" + "url": "https://www.drinksmixer.com/drink10519.html" }, { "directions": "1. Pour the Harp ale into a pint glass. Add food colouring to bring the Harp ale to a nicely Irish green. Slowly add the Guinness (pour over a teaspoon so that the Harp ale and the Guinness don't mix). \r", @@ -99208,7 +99208,7 @@ "food coloring" ], "title": "Black and Green recipe", - "url": "http://www.drinksmixer.com/drink10520.html" + "url": "https://www.drinksmixer.com/drink10520.html" }, { "directions": "Combine all ingredients in a cocktail shaker half-filled with ice cubes. Shake well. Drizzle the chocolate syrup into an old-fashioned glass, coating the edges and leaving a pool of chocolate in the base of the glass. Pour the contents of the cocktail shaker through a strainer into the chocolate-lined glass, and serve.", @@ -99219,7 +99219,7 @@ "chocolate syrup" ], "title": "Dali Lama recipe", - "url": "http://www.drinksmixer.com/drink10521.html" + "url": "https://www.drinksmixer.com/drink10521.html" }, { "directions": "Combine all ingredients in a blender and blend until smooth. Add water to taste if required. Rim a margarita glass with sugar if desired. Pour the blended drink mixture into the margarita glass and serve.", @@ -99230,7 +99230,7 @@ "ice cubes" ], "title": "Dancing Dana recipe", - "url": "http://www.drinksmixer.com/drink10522.html" + "url": "https://www.drinksmixer.com/drink10522.html" }, { "directions": "Pour white tequila into a shot glass and lay drops of Tabasco sauce on top. Do not mix, and allow the Tabasco sauce to settle. For decoration, place red pepper in glass. Eat the pepper as quickly as possible, immediately followed by shot.", @@ -99240,7 +99240,7 @@ "pepper" ], "title": "Death by Shot recipe", - "url": "http://www.drinksmixer.com/drink10523.html" + "url": "https://www.drinksmixer.com/drink10523.html" }, { "directions": "Pour the tequila and tabasco into a shot glass. Place salt on your hand, lick it, bite a lime wedge, count to 3 and slam the drink.", @@ -99251,7 +99251,7 @@ "limes" ], "title": "Death Row recipe", - "url": "http://www.drinksmixer.com/drink10524.html" + "url": "https://www.drinksmixer.com/drink10524.html" }, { "directions": "Pour all ingredients into a highball glass almost filled with ice cubes. Stir briefly, and serve.", @@ -99264,7 +99264,7 @@ "sweet and sour mix" ], "title": "Death Star recipe", - "url": "http://www.drinksmixer.com/drink10525.html" + "url": "https://www.drinksmixer.com/drink10525.html" }, { "directions": "Shake all ingredients with ice and then strain into a cocktail glass. Garnish with a couple of whole coffee beans, and serve.", @@ -99274,7 +99274,7 @@ "creme de cacao" ], "title": "Deep Dark Love recipe", - "url": "http://www.drinksmixer.com/drink10526.html" + "url": "https://www.drinksmixer.com/drink10526.html" }, { "directions": "Mix ingredients together in a pitcher. Serve into punch cups, and serve.", @@ -99284,7 +99284,7 @@ "beer" ], "title": "Detox recipe", - "url": "http://www.drinksmixer.com/drink10527.html" + "url": "https://www.drinksmixer.com/drink10527.html" }, { "directions": "Drink the Yoohoo down to the top of the label, fill with rum and shake. Chocolate will seperate out leaving a diaper stain appearance.", @@ -99293,7 +99293,7 @@ "spiced rum" ], "title": "Diaper Stripes recipe", - "url": "http://www.drinksmixer.com/drink10528.html" + "url": "https://www.drinksmixer.com/drink10528.html" }, { "directions": "Combine all ingredients in a cocktail shaker half-filled with ice cubes. Shake well and strain into an old-fashioned glass half-filled with ice cubes. Serve.", @@ -99304,7 +99304,7 @@ "Barenjager\u00ae honey liqueur" ], "title": "Diarrhea Bomb recipe", - "url": "http://www.drinksmixer.com/drink10529.html" + "url": "https://www.drinksmixer.com/drink10529.html" }, { "directions": "Pour the Smirnoff vodka into a collins glass filled with ice cubes. Add the Country Time pink lemonade, and splash in some Gatorade fruit punch. Add a small glowstick for garnish, and serve with a straw.", @@ -99314,7 +99314,7 @@ "Gatorade\u00ae fruit punch" ], "title": "Disco Lemonade recipe", - "url": "http://www.drinksmixer.com/drink10530.html" + "url": "https://www.drinksmixer.com/drink10530.html" }, { "directions": "Combine all ingredients in a cocktail shaker half-filled with ice cubes. Shake well, strain into a cocktail glass and serve.", @@ -99324,7 +99324,7 @@ "Malibu\u00ae coconut rum" ], "title": "Cosmo Killer recipe", - "url": "http://www.drinksmixer.com/drink10531.html" + "url": "https://www.drinksmixer.com/drink10531.html" }, { "directions": "Combine all ingredients together in a highball glass, stir and serve.", @@ -99334,7 +99334,7 @@ "grenadine syrup" ], "title": "Don't Worry About It recipe", - "url": "http://www.drinksmixer.com/drink10532.html" + "url": "https://www.drinksmixer.com/drink10532.html" }, { "directions": "Pour all ingredients into a beer pilsner. Fill with milk, add ice, and serve.", @@ -99345,7 +99345,7 @@ "milk" ], "title": "Bullfrog #3 recipe", - "url": "http://www.drinksmixer.com/drink10533.html" + "url": "https://www.drinksmixer.com/drink10533.html" }, { "directions": "Stir ingredients together with ice in a collins glass, and serve.", @@ -99354,7 +99354,7 @@ "Monster\u00ae energy drink" ], "title": "Crank and Vodka recipe", - "url": "http://www.drinksmixer.com/drink10534.html" + "url": "https://www.drinksmixer.com/drink10534.html" }, { "directions": "Combine all ingredients together with a few ice cubes in a mixing glass; stir. Strain into a shot glass, and serve.", @@ -99364,7 +99364,7 @@ "Crown Royal\u00ae Canadian whisky" ], "title": "Donkey Punch recipe", - "url": "http://www.drinksmixer.com/drink10535.html" + "url": "https://www.drinksmixer.com/drink10535.html" }, { "directions": "Fill a cocktail glass with crushed ice. Add Stoli O vodk, and almost fill the glass with 7-up. Top with a splash of orange juice, and serve.", @@ -99374,7 +99374,7 @@ "orange juice" ], "title": "Double-O-Seven recipe", - "url": "http://www.drinksmixer.com/drink10536.html" + "url": "https://www.drinksmixer.com/drink10536.html" }, { "directions": "Pour the vodka into a highball glass filled with ice cubes. Add the amaretto, top with the Coca-cola, and serve.", @@ -99384,7 +99384,7 @@ "Coca-Cola\u00ae" ], "title": "Dr. Pepper #7 recipe", - "url": "http://www.drinksmixer.com/drink10537.html" + "url": "https://www.drinksmixer.com/drink10537.html" }, { "directions": "Pour both ingredients into a highball glass filled with ice cubes, and serve.", @@ -99393,7 +99393,7 @@ "DeKuyper\u00ae Apple Barrel schnapps" ], "title": "Dr. Mysti's Apple recipe", - "url": "http://www.drinksmixer.com/drink10538.html" + "url": "https://www.drinksmixer.com/drink10538.html" }, { "directions": "Stir ingredients together in a coffee mug, and serve with a cinnamon stick.", @@ -99402,7 +99402,7 @@ "cider" ], "title": "Drambuie Cider recipe", - "url": "http://www.drinksmixer.com/drink10539.html" + "url": "https://www.drinksmixer.com/drink10539.html" }, { "directions": "Stir ingredients together in a coffee mug, top with whipped cream, and serve.", @@ -99412,7 +99412,7 @@ "whipping cream" ], "title": "Drambuie Coffee recipe", - "url": "http://www.drinksmixer.com/drink10540.html" + "url": "https://www.drinksmixer.com/drink10540.html" }, { "directions": "Combine all three ingredients together in a cocktail shaker half-filled with ice cubes. Shake well, strain into a cocktail glass and serve.", @@ -99422,7 +99422,7 @@ "espresso" ], "title": "Drambuie Espresso Martini recipe", - "url": "http://www.drinksmixer.com/drink10541.html" + "url": "https://www.drinksmixer.com/drink10541.html" }, { "directions": "Combine the vodka, creme de cacao, ice cubes, cherries and juice in a sherry glass. Stir, top with milk, stir again and serve.", @@ -99435,7 +99435,7 @@ "milk" ], "title": "Dripping Wet Pink recipe", - "url": "http://www.drinksmixer.com/drink10542.html" + "url": "https://www.drinksmixer.com/drink10542.html" }, { "directions": "Combine all ingredients in a cocktail shaker half-filled with ice cubes. Shake well, strain into an old fashioned glass with or without ice cubes, and serve. ", @@ -99445,7 +99445,7 @@ "grenadine syrup" ], "title": "Drop the Hammer on the Turkey recipe", - "url": "http://www.drinksmixer.com/drink10543.html" + "url": "https://www.drinksmixer.com/drink10543.html" }, { "directions": "Pour the Bacardi Razz rum into a highball glass almost filled with ice cubes. Add the Rockstar energy drink, stir and serve.", @@ -99454,7 +99454,7 @@ "Rockstar\u00ae energy drink" ], "title": "Drunken Rumsfeld recipe", - "url": "http://www.drinksmixer.com/drink10544.html" + "url": "https://www.drinksmixer.com/drink10544.html" }, { "directions": "Pour the brandy and dry vermouth into an old-fashioned or rocks glass half-filled with ice cubes. Stir, garnish with 2 olives, and serve.", @@ -99463,7 +99463,7 @@ "dry vermouth" ], "title": "Dry Brandy Manhattan recipe", - "url": "http://www.drinksmixer.com/drink10545.html" + "url": "https://www.drinksmixer.com/drink10545.html" }, { "directions": "Combine all ingredients together in a cocktail shaker half-filled with ice cubes. Shake well, and strain into a chilled martini or cocktail glass. Add a thin slice of Red Delicious apple and serve.", @@ -99474,7 +99474,7 @@ "sweet and sour mix" ], "title": "Dubonnet Kiss recipe", - "url": "http://www.drinksmixer.com/drink10546.html" + "url": "https://www.drinksmixer.com/drink10546.html" }, { "directions": "Pour ingredients in order into a shot glass, and serve.", @@ -99484,7 +99484,7 @@ "sloe gin" ], "title": "Areola recipe", - "url": "http://www.drinksmixer.com/drink10547.html" + "url": "https://www.drinksmixer.com/drink10547.html" }, { "directions": "Stir ingredients together in a mixing glass with some ice cubes. Strain into a shot glass, and serve.", @@ -99493,7 +99493,7 @@ "Bailey's\u00ae Irish cream" ], "title": "E.T. recipe", - "url": "http://www.drinksmixer.com/drink10550.html" + "url": "https://www.drinksmixer.com/drink10550.html" }, { "directions": "Blend the rum and ice cream together in a shot glass or mixing glass, and serve.", @@ -99502,7 +99502,7 @@ "chocolate ice cream" ], "title": "Eady Rider recipe", - "url": "http://www.drinksmixer.com/drink10551.html" + "url": "https://www.drinksmixer.com/drink10551.html" }, { "directions": "Pour blue curacao and creme de cacao over ice cubes in an old fashioned glass. Float half and half on top to taste, and serve.", @@ -99512,7 +99512,7 @@ "half-and-half" ], "title": "Easter Egg recipe", - "url": "http://www.drinksmixer.com/drink10552.html" + "url": "https://www.drinksmixer.com/drink10552.html" }, { "directions": "Pour rootbeer schnapps and vanilla flavored schnapps into a cup. Pour in a can of rootbeer. Add ice or ice-cream if desired, and serve.", @@ -99522,7 +99522,7 @@ "vanilla schnapps" ], "title": "Easy Rootbeer Float recipe", - "url": "http://www.drinksmixer.com/drink10553.html" + "url": "https://www.drinksmixer.com/drink10553.html" }, { "directions": "Fill a cocktail shaker 1/2 full with ice, add ingredients, shake, shake, shake until cold and frothy. Pour into a well chilled martini / cocktail glass. Top with a dusting of nutmeg, and serve.", @@ -99532,7 +99532,7 @@ "nutmeg" ], "title": "Eggnotini recipe", - "url": "http://www.drinksmixer.com/drink10554.html" + "url": "https://www.drinksmixer.com/drink10554.html" }, { "directions": "Stir ingredients together in a cocktail glass over crushed ice, and serve.", @@ -99541,7 +99541,7 @@ "Snapple\u00ae Lemonade soda" ], "title": "El Mahon recipe", - "url": "http://www.drinksmixer.com/drink10555.html" + "url": "https://www.drinksmixer.com/drink10555.html" }, { "directions": "Pour the Bacardi 151 rum into a shot glass. Add the Southern Comfort and Captain Morgan spiced rum; the mixture should turn dark and obtain a fire smell. Serve; beware the delayed hard-hitting bite.", @@ -99551,7 +99551,7 @@ "Captain Morgan\u00ae spiced rum" ], "title": "El Negro recipe", - "url": "http://www.drinksmixer.com/drink10556.html" + "url": "https://www.drinksmixer.com/drink10556.html" }, { "directions": "Combine all ingredients in a cocktail shaker half-filled with cracked ice; shake well and strain into a chilled cocktail glass. Garnish with an orange twist. Grenadine and lemon juice are optional.", @@ -99563,7 +99563,7 @@ "grenadine syrup" ], "title": "El Presidente Cocktail #3 recipe", - "url": "http://www.drinksmixer.com/drink10557.html" + "url": "https://www.drinksmixer.com/drink10557.html" }, { "directions": "Pour the Hennessy cognac into a highball glass filled with ice cubes. Stir in the triple sec and pineapple juice, and serve.", @@ -99573,7 +99573,7 @@ "pineapple juice" ], "title": "Electric Relaxation recipe", - "url": "http://www.drinksmixer.com/drink10558.html" + "url": "https://www.drinksmixer.com/drink10558.html" }, { "directions": "Pour the cranberry-raspberry juice into a champagne saucer and stir in the Smirnoff Vanilla Twist vodka next. Add a splash of Malibu coconut rum on top and serve.", @@ -99583,7 +99583,7 @@ "cranberry-raspberry juice" ], "title": "Elven Blood recipe", - "url": "http://www.drinksmixer.com/drink10559.html" + "url": "https://www.drinksmixer.com/drink10559.html" }, { "directions": "Stir ingredients together in an old-fashioned glass, and serve.", @@ -99593,7 +99593,7 @@ "amaretto almond liqueur" ], "title": "Dr. Canadian recipe", - "url": "http://www.drinksmixer.com/drink10561.html" + "url": "https://www.drinksmixer.com/drink10561.html" }, { "directions": "Pour the Maker's Mark bourbon whiskey into a highball glass. Add the ice cold root beer, a small scoop of vanilla ice cream, and serve.", @@ -99603,7 +99603,7 @@ "vanilla ice cream" ], "title": "Eskay Slammer recipe", - "url": "http://www.drinksmixer.com/drink10563.html" + "url": "https://www.drinksmixer.com/drink10563.html" }, { "directions": "1. Stir the boiling water with the jell-o mix in a medium sized bowl until completely dissolved (orange flavor is the best but can be used with any other flavor as well). Let it sit and wait until it is at room temperature.\r", @@ -99613,7 +99613,7 @@ "water" ], "title": "Evie's Jello Shot Delight recipe", - "url": "http://www.drinksmixer.com/drink10564.html" + "url": "https://www.drinksmixer.com/drink10564.html" }, { "directions": "Add half amount of V8 juice to pitcher. Add all other ingredients, except vodka and stir vigorously. Add remaining amount of V8 juice and stir again. Add vodka; stir once more. Pour into ice-filled glasses, garnish with celery stalks and serve. (Serves 12-13)", @@ -99628,7 +99628,7 @@ "red cayenne peppers" ], "title": "Eye Opening Bloody Mary recipe", - "url": "http://www.drinksmixer.com/drink10565.html" + "url": "https://www.drinksmixer.com/drink10565.html" }, { "directions": "Combine all of the rums into a tumbler with ice. Add enough cranberry to turn the drink a light red color. Shake well and strain into a rocks glass. Shoot.", @@ -99641,7 +99641,7 @@ "cranberry juice" ], "title": "Fainting Goat recipe", - "url": "http://www.drinksmixer.com/drink10566.html" + "url": "https://www.drinksmixer.com/drink10566.html" }, { "directions": "Combine all ingredients in a tall glass filled with ice cubes, stir and serve.", @@ -99651,7 +99651,7 @@ "lemonade" ], "title": "Fallen Angel recipe", - "url": "http://www.drinksmixer.com/drink10567.html" + "url": "https://www.drinksmixer.com/drink10567.html" }, { "directions": "Pour all ingredients into an old-fashioned or rocks glass, stir and shoot.", @@ -99663,7 +99663,7 @@ "DeKuyper\u00ae Hot Damn cinnamon schnapps" ], "title": "Fat Girl recipe", - "url": "http://www.drinksmixer.com/drink10568.html" + "url": "https://www.drinksmixer.com/drink10568.html" }, { "directions": "Stir ingredients together in an old-fashioned glass half-filled with ice cubes, and serve.", @@ -99673,7 +99673,7 @@ "half-and-half" ], "title": "Fat Lighter recipe", - "url": "http://www.drinksmixer.com/drink10569.html" + "url": "https://www.drinksmixer.com/drink10569.html" }, { "directions": "Pour the Kazkar Feni apple liqueur into a highball glass with several ice cubes. Add the fresh lime juice and fill with 7-Up. Stir, garnish with a mint sprig and lime wedge, and serve.", @@ -99683,7 +99683,7 @@ "7-Up\u00ae soda" ], "title": "Feni Highball recipe", - "url": "http://www.drinksmixer.com/drink10570.html" + "url": "https://www.drinksmixer.com/drink10570.html" }, { "directions": "Crush the apple slices with the sugar in the bottom of a highball glass. Stir thoroughly and top with ice. Add the Kazkar Feni cashew apple liqueur, top off with apple juice and stir. Garnish with an apple wheel and lime wedge, and serve.", @@ -99694,7 +99694,7 @@ "apple juice" ], "title": "Feni Mojito recipe", - "url": "http://www.drinksmixer.com/drink10571.html" + "url": "https://www.drinksmixer.com/drink10571.html" }, { "directions": "Combine all ingredients (except grenadine) in a blender with half a cup of crushed ice. Blend well, pour into a collins glass and serve.", @@ -99706,7 +99706,7 @@ "grenadine syrup" ], "title": "Fijian Punch recipe", - "url": "http://www.drinksmixer.com/drink10573.html" + "url": "https://www.drinksmixer.com/drink10573.html" }, { "directions": "Pour the jello and vodka into a double-shot glass, and stir. Add Mountain Dew soda, stir again, and serve. (NOTE: Not all the jello will dissolve.)", @@ -99716,7 +99716,7 @@ "grape jello" ], "title": "Flagella recipe", - "url": "http://www.drinksmixer.com/drink10574.html" + "url": "https://www.drinksmixer.com/drink10574.html" }, { "directions": "Mix together the vodka and Hqnotiq liqueur in a double-shot glass. Layer grenadine over the mixture and the Bailey's over that. Add a splash of Everclear over that and light the shot on fire. Extinguish, and serve.", @@ -99728,7 +99728,7 @@ "Everclear\u00ae alcohol" ], "title": "Flaming Angry Dragon recipe", - "url": "http://www.drinksmixer.com/drink10575.html" + "url": "https://www.drinksmixer.com/drink10575.html" }, { "directions": "Stir ingredients together in a shot glass. Ignite and drink through a straw, quickly.", @@ -99737,7 +99737,7 @@ "Blue Curacao liqueur" ], "title": "Flaming Blue Fuck recipe", - "url": "http://www.drinksmixer.com/drink10576.html" + "url": "https://www.drinksmixer.com/drink10576.html" }, { "directions": "Combine ice cubes with the pineapple juice, banana schnapps, and peach schnapps in a cocktail shaker and shake. Pour into a large collins glass then layer the Bacardi 151 on top with the back of a spoon. Ignite and allow to burn, extinguish and serve.", @@ -99749,7 +99749,7 @@ "pineapple juice" ], "title": "Flaming Cock Smack recipe", - "url": "http://www.drinksmixer.com/drink10577.html" + "url": "https://www.drinksmixer.com/drink10577.html" }, { "directions": "Pour the Devil Springs vodka into a shot glass, and seperately pour the Coca-Cola into an old-fashioned glass. Ignite the vodka in the shot glass and drop the glass into the old-fashioned glass of Coca-Cola. Down it all.", @@ -99758,7 +99758,7 @@ "Coca-Cola\u00ae" ], "title": "Flaming Dr. Pepper #3 recipe", - "url": "http://www.drinksmixer.com/drink10578.html" + "url": "https://www.drinksmixer.com/drink10578.html" }, { "directions": "Simply pour the ingredients into a double shot shot glass and serve.", @@ -99768,7 +99768,7 @@ "orange juice" ], "title": "Flaming Nerd recipe", - "url": "http://www.drinksmixer.com/drink10579.html" + "url": "https://www.drinksmixer.com/drink10579.html" }, { "directions": "Pour the grain alcohol into a shot glass, and drop the tabasco sauce on top. Ignite, extinguish and shoot.", @@ -99777,7 +99777,7 @@ "Tabasco\u00ae sauce" ], "title": "Flaming Open Wound recipe", - "url": "http://www.drinksmixer.com/drink10580.html" + "url": "https://www.drinksmixer.com/drink10580.html" }, { "directions": "Stir ingredients together in a shot glass, and shoot.", @@ -99788,7 +99788,7 @@ "cream" ], "title": "Fluffy Pink Angel recipe", - "url": "http://www.drinksmixer.com/drink10581.html" + "url": "https://www.drinksmixer.com/drink10581.html" }, { "directions": "Stir ingredients together in a collins glass filled with ice cubes, and serve.", @@ -99798,7 +99798,7 @@ "ginger ale" ], "title": "Fog Horn recipe", - "url": "http://www.drinksmixer.com/drink10582.html" + "url": "https://www.drinksmixer.com/drink10582.html" }, { "directions": "Pour the Grey Goose L'Orange vodka into a highball glass over several ice cubes. Fill with Orangina orange soda, stir briefly and serve.", @@ -99807,7 +99807,7 @@ "Orangina\u00ae orange soda" ], "title": "French Screwdriver recipe", - "url": "http://www.drinksmixer.com/drink10583.html" + "url": "https://www.drinksmixer.com/drink10583.html" }, { "directions": "Combine both ingredients in a shot glass, and serve.", @@ -99816,7 +99816,7 @@ "Grand Marnier\u00ae orange liqueur" ], "title": "Frieght Train #2 recipe", - "url": "http://www.drinksmixer.com/drink10584.html" + "url": "https://www.drinksmixer.com/drink10584.html" }, { "directions": "Stir ingredients together in a cocktail glass, and serve.", @@ -99825,7 +99825,7 @@ "Fresca\u00ae grapefruit soda" ], "title": "Frodka recipe", - "url": "http://www.drinksmixer.com/drink10585.html" + "url": "https://www.drinksmixer.com/drink10585.html" }, { "directions": "Combine all ingredients in a cocktail shaker half-filled with ice cubes. Shake well and pour into an old-fashioned glass. Add Coca-Cola, and serve.", @@ -99837,7 +99837,7 @@ "Coca-Cola\u00ae" ], "title": "Frosted Coke recipe", - "url": "http://www.drinksmixer.com/drink10586.html" + "url": "https://www.drinksmixer.com/drink10586.html" }, { "directions": "Stir together the absinthe and vodka in a mixing glass and strain into a highball glass half filled with ice. Fill the rest of the way up with Fresca soda. Garnish with a sprig of mint, and serve.", @@ -99847,7 +99847,7 @@ "Fresca\u00ae grapefruit soda" ], "title": "Frostmark 5 on Ice recipe", - "url": "http://www.drinksmixer.com/drink10587.html" + "url": "https://www.drinksmixer.com/drink10587.html" }, { "directions": "Stir ingredients together with ice cubes in a mixing glass. Strain into a shot glass, and serve.", @@ -99857,7 +99857,7 @@ "DeKuyper\u00ae Cheri-Beri Pucker schnapps" ], "title": "Fruit Salad Slammer recipe", - "url": "http://www.drinksmixer.com/drink10588.html" + "url": "https://www.drinksmixer.com/drink10588.html" }, { "directions": "Stir ingredients together in a highball glass with ice cubes, and serve.", @@ -99867,7 +99867,7 @@ "lemon juice" ], "title": "Bacardi-ade recipe", - "url": "http://www.drinksmixer.com/drink10590.html" + "url": "https://www.drinksmixer.com/drink10590.html" }, { "directions": "Mix vodka and Mountain Dew soda in a cocktail shaker with ice. Strain into a shot glass. Add a small splash of grenadine, and serve.", @@ -99877,7 +99877,7 @@ "grenadine syrup" ], "title": "Camel Concoction recipe", - "url": "http://www.drinksmixer.com/drink10591.html" + "url": "https://www.drinksmixer.com/drink10591.html" }, { "directions": "Stir ingredients together in a collins glass almost filled with ice cubes, and serve.", @@ -99886,7 +99886,7 @@ "black cherry soda" ], "title": "Cherry Popper #4 recipe", - "url": "http://www.drinksmixer.com/drink10592.html" + "url": "https://www.drinksmixer.com/drink10592.html" }, { "directions": "Blend the orange juice, ginger ale, and Seagram's gin in a blender. Once well blended cut and add lemon. Blend further and strain into two tall glasses to serve.", @@ -99897,7 +99897,7 @@ "lemon" ], "title": "Down Home Punch #3 recipe", - "url": "http://www.drinksmixer.com/drink10593.html" + "url": "https://www.drinksmixer.com/drink10593.html" }, { "directions": "Stir ingredients together in a shot glass, and serve.", @@ -99906,7 +99906,7 @@ "Hpnotiq\u00ae liqueur" ], "title": "Frutty Fuck-Me-Up recipe", - "url": "http://www.drinksmixer.com/drink10594.html" + "url": "https://www.drinksmixer.com/drink10594.html" }, { "directions": "Pour the Jeremiah Weed whiskey into a cocktail shaker half-filled with ice cubes. Add the blue curacao, triple sec and Southern Comfort peach liqueur and add a can of tonic water. Shake vigorously, despite the building pressure. Shake until much of the carbonation from the tonic water subsides and creates a petillent, clear teal beverage. Pour over a minimal amount of ice in a collins glass, and serve.", @@ -99918,7 +99918,7 @@ "tonic water" ], "title": "Fucked Up Shark recipe", - "url": "http://www.drinksmixer.com/drink10595.html" + "url": "https://www.drinksmixer.com/drink10595.html" }, { "directions": "Combine the vodka, peach schnapps and grapefruit juice together in a cocktail shaker half-filled with crushed ice. Shake and strain into a highball glass. Serve with a cherry on top.", @@ -99928,7 +99928,7 @@ "pink grapefruit juice" ], "title": "Fuzzy Pussy recipe", - "url": "http://www.drinksmixer.com/drink10596.html" + "url": "https://www.drinksmixer.com/drink10596.html" }, { "directions": "Pour both ingredients into an old-fashioned glass or rocks glass half-filled with ice cubes, and serve.", @@ -99937,7 +99937,7 @@ "apple juice" ], "title": "G-Drink recipe", - "url": "http://www.drinksmixer.com/drink10597.html" + "url": "https://www.drinksmixer.com/drink10597.html" }, { "directions": "Combine the gin, lemon juice and Swedish punsch in a cocktail shaker with 3 - 4 ice cubes. Shake well, pour into a chilled martini cocktail glass, and serve.", @@ -99947,7 +99947,7 @@ "Swedish punsch" ], "title": "Garbo Cocktail recipe", - "url": "http://www.drinksmixer.com/drink10600.html" + "url": "https://www.drinksmixer.com/drink10600.html" }, { "directions": "Combine all ingredients in a cocktail shaker with 3 - 4 ice cubes. Shake well, strain into a cocktail glass, and serve.", @@ -99957,7 +99957,7 @@ "sweet and sour mix" ], "title": "Gateraide recipe", - "url": "http://www.drinksmixer.com/drink10601.html" + "url": "https://www.drinksmixer.com/drink10601.html" }, { "directions": "Muddle the mint leaves and lime wedges with cane sugar and Grand Marnier orange liqueur in a cocktail shaker. Add crushed ice and pour in the Mount Gay Barbados rum. Using a swizzle stick, stir the ingredients together so that the rum, lime and mint layers through the drink. Top up with apple juice. Serve with a mint garnish.", @@ -99970,7 +99970,7 @@ "apple juice" ], "title": "Gay Marine recipe", - "url": "http://www.drinksmixer.com/drink10602.html" + "url": "https://www.drinksmixer.com/drink10602.html" }, { "directions": "Stir ingredients together in a cocktail glass, and serve.", @@ -99981,7 +99981,7 @@ "cranberry juice" ], "title": "George's Jungle recipe", - "url": "http://www.drinksmixer.com/drink10603.html" + "url": "https://www.drinksmixer.com/drink10603.html" }, { "directions": "Pour all ingredients into a shot glass, stir and serve.", @@ -99992,7 +99992,7 @@ "butterscotch schnapps" ], "title": "German Chocolate Cake #2 recipe", - "url": "http://www.drinksmixer.com/drink10604.html" + "url": "https://www.drinksmixer.com/drink10604.html" }, { "directions": "Stir ingredients together over ice in a short glass, and serve.", @@ -100001,7 +100001,7 @@ "7-Up\u00ae soda" ], "title": "Ghetto Margarita recipe", - "url": "http://www.drinksmixer.com/drink10606.html" + "url": "https://www.drinksmixer.com/drink10606.html" }, { "directions": "Stir ingredients together in a highball glass, and serve.", @@ -100010,7 +100010,7 @@ "Orangina\u00ae orange soda" ], "title": "Gina's Pussy recipe", - "url": "http://www.drinksmixer.com/drink10608.html" + "url": "https://www.drinksmixer.com/drink10608.html" }, { "directions": "Place salt on a dish and rub rim of a margarita glass with a lime wedge. Dip glass in the salt to coat rim thoroughly. Pour teguila, triple sec, lime juice, sweet and sour, orange juice, and ice into a blender. Set on high speed until well blended. Pour into a margarita glass. Garnish with a lime, and serve. Optionally, pour Grand Marnier orange liqueur on top for a float, then serve.", @@ -100023,7 +100023,7 @@ "Grand Marnier\u00ae orange liqueur" ], "title": "Gino's Perfect Margarita recipe", - "url": "http://www.drinksmixer.com/drink10609.html" + "url": "https://www.drinksmixer.com/drink10609.html" }, { "directions": "Place the Archers peach schnapps, vodka and strawberry puree in a glass and shake well. Add several cubes of ice and then add half-and-half until near the top. Slowly pour the grenadine syrup around the edge of the glass (it should produce some odd red colors around the glass, hence the name); serve.", @@ -100035,7 +100035,7 @@ "half-and-half" ], "title": "Girl From Mars recipe", - "url": "http://www.drinksmixer.com/drink10610.html" + "url": "https://www.drinksmixer.com/drink10610.html" }, { "directions": "Combine all ingredients in a cocktail shaker half-filled with ice cubes. Shake well and strain into a chilled cocktail glass. Garnish with raspberry pieces, and serve.", @@ -100046,7 +100046,7 @@ "guava nectar" ], "title": "Go Go recipe", - "url": "http://www.drinksmixer.com/drink10611.html" + "url": "https://www.drinksmixer.com/drink10611.html" }, { "directions": "Place a shot glass filled with Goldschlager cinnamon schnapps into the bottom of a wide glass, Fill the outer glass with Red Bull until it flows into the shot glass. Allow to mix for 20 seconds and then drink as fast as possible.", @@ -100055,7 +100055,7 @@ "Red Bull\u00ae energy drink" ], "title": "Gold Bomb recipe", - "url": "http://www.drinksmixer.com/drink10612.html" + "url": "https://www.drinksmixer.com/drink10612.html" }, { "directions": "Stir ingredients together in a highball glass filled with ice cubes, and serve.", @@ -100064,7 +100064,7 @@ "Sprite\u00ae Zero soda" ], "title": "Goose Egg recipe", - "url": "http://www.drinksmixer.com/drink10613.html" + "url": "https://www.drinksmixer.com/drink10613.html" }, { "directions": "Stir ingredients together in a highball glass almost filled with ice cubes, and serve.", @@ -100074,7 +100074,7 @@ "orange juice" ], "title": "Gordon Freeman recipe", - "url": "http://www.drinksmixer.com/drink10614.html" + "url": "https://www.drinksmixer.com/drink10614.html" }, { "directions": "Pour the tequila and apple juice into an old-fashioned glass half-filled with ice cubes. Stir briefly, and serve.", @@ -100083,7 +100083,7 @@ "apple juice" ], "title": "Granny Tequila recipe", - "url": "http://www.drinksmixer.com/drink10615.html" + "url": "https://www.drinksmixer.com/drink10615.html" }, { "directions": "Pour the Grey Goose vodka into a double-shot glass. Add the Makers Mark bourbon whiskey, the Cointreau orange liqueur and Rose's infused blue raspberry mixer (the mixture should turn a dirty green); serve.", @@ -100094,7 +100094,7 @@ "Rose's\u00ae blue raspberry mixer" ], "title": "Green Card recipe", - "url": "http://www.drinksmixer.com/drink10616.html" + "url": "https://www.drinksmixer.com/drink10616.html" }, { "directions": "Pour the Finlandia lime vodka into a highball glass filled with ice cubes. Add the Cointreau orange liqueur then Kerns guava juice. Squeeze in a lime wedge, and serve.", @@ -100104,7 +100104,7 @@ "Kerns\u00ae guava juice" ], "title": "Guttersnipe recipe", - "url": "http://www.drinksmixer.com/drink10621.html" + "url": "https://www.drinksmixer.com/drink10621.html" }, { "directions": "Combine all ingredients in a cocktail shaker half-filled with ice cubes. Shake well and strain into a collins glass filled with ice cubes. Garnish with a maraschino cherry, and serve.", @@ -100118,7 +100118,7 @@ "Hpnotiq\u00ae liqueur" ], "title": "H-Bomb Cocktail recipe", - "url": "http://www.drinksmixer.com/drink10622.html" + "url": "https://www.drinksmixer.com/drink10622.html" }, { "directions": "Shake and strain into a chilled martini glass rimmed with colored sugar. Garnish with a lemon slice, and serve.", @@ -100128,7 +100128,7 @@ "7-Up\u00ae soda" ], "title": "H2O Martini recipe", - "url": "http://www.drinksmixer.com/drink10623.html" + "url": "https://www.drinksmixer.com/drink10623.html" }, { "directions": "Float the Stroh rum on top of peppermint liqueur in a shot glass, and shoot.", @@ -100137,7 +100137,7 @@ "peppermint liqueur" ], "title": "Half Breed recipe", - "url": "http://www.drinksmixer.com/drink10624.html" + "url": "https://www.drinksmixer.com/drink10624.html" }, { "directions": "Stir ingredients together in a highball glass, and serve.", @@ -100147,7 +100147,7 @@ "Milwaukee's\u00ae Best Ice lager" ], "title": "Hammer of Thor recipe", - "url": "http://www.drinksmixer.com/drink10625.html" + "url": "https://www.drinksmixer.com/drink10625.html" }, { "directions": "Stir the black sambuca and amber rum together in a cocktail glass over crushed or shaven ice. Add Coca-cola to taste, and serve.", @@ -100157,7 +100157,7 @@ "Coca-Cola\u00ae" ], "title": "Hammerhead recipe", - "url": "http://www.drinksmixer.com/drink10626.html" + "url": "https://www.drinksmixer.com/drink10626.html" }, { "directions": "Pour all ingredients into a hurricane glass filled with crushed ice. Garnish with a slice of orange and a cherry, and serve.", @@ -100172,7 +100172,7 @@ "7-Up\u00ae soda" ], "title": "Happy Camper #2 recipe", - "url": "http://www.drinksmixer.com/drink10627.html" + "url": "https://www.drinksmixer.com/drink10627.html" }, { "directions": "Stir both ingredients together in a mixing glass with a few ice cubes. Strain into a shot glass, and serve.", @@ -100181,7 +100181,7 @@ "Hawaiian Punch\u00ae" ], "title": "Hawaiian Passion recipe", - "url": "http://www.drinksmixer.com/drink10628.html" + "url": "https://www.drinksmixer.com/drink10628.html" }, { "directions": "Mix the Hawaiian punch and Everclear grain alcohol together in a punch bowl. Cyphen some off into a smaller bowl and freeze it, put the frozen mix into the punch bowl and serve.", @@ -100190,7 +100190,7 @@ "Hawaiian Punch\u00ae" ], "title": "Hawaiian Punch in the Balls recipe", - "url": "http://www.drinksmixer.com/drink10629.html" + "url": "https://www.drinksmixer.com/drink10629.html" }, { "directions": "Stir ingredients together in a cocktail glass over crushed ice, and serve.", @@ -100199,7 +100199,7 @@ "apple juice" ], "title": "Hennessy and Apple recipe", - "url": "http://www.drinksmixer.com/drink10630.html" + "url": "https://www.drinksmixer.com/drink10630.html" }, { "directions": "Pour the strawberry liqueur, white creme de cacao and French vanilla coffee creamer into an old-fashioned glass half-filled with ice cubes. Top with milk and serve.", @@ -100210,7 +100210,7 @@ "milk" ], "title": "Hermie's Hard Neapolitan recipe", - "url": "http://www.drinksmixer.com/drink10631.html" + "url": "https://www.drinksmixer.com/drink10631.html" }, { "directions": "Stir ingredients together in a highball glass almost filled with ice cubes, and serve.", @@ -100222,7 +100222,7 @@ "Mountain Dew\u00ae lime soda" ], "title": "Home Alone recipe", - "url": "http://www.drinksmixer.com/drink10632.html" + "url": "https://www.drinksmixer.com/drink10632.html" }, { "directions": "Stir all ingredients together in an old-fashioned glass. Add a twist of lemon and serve.", @@ -100234,7 +100234,7 @@ "ginger beer" ], "title": "Hornless Unicorn recipe", - "url": "http://www.drinksmixer.com/drink10633.html" + "url": "https://www.drinksmixer.com/drink10633.html" }, { "directions": "Layer the Irish cream and Goldschlager cinnamon schnapps in a shot glass. Very gently, pour the Bacardi 151 on top. Carefully ignite the 151. Throw small handfuls of cinnamon powder on top 2 - 3 times to make sparks. Blow out and serve.", @@ -100245,7 +100245,7 @@ "cinnamon" ], "title": "Hot Apple Pie with Sparks recipe", - "url": "http://www.drinksmixer.com/drink10634.html" + "url": "https://www.drinksmixer.com/drink10634.html" }, { "directions": "Measure the Scotch whisky in a toddy glass. Place brown sugar or honey in a measuring cup or other heatproof small container. Spoon in butter, and pour on 2 oz (1/3) of the hot water; stir till butter and sugar are completely dissolved into a syrupy consistency (about 30 secs). Pour on the rest of the water, stir briefly, then pour the works on top of the Scotch. Stir gently; serve.", @@ -100256,7 +100256,7 @@ "water" ], "title": "Hot Butter Scotch Toddy recipe", - "url": "http://www.drinksmixer.com/drink10635.html" + "url": "https://www.drinksmixer.com/drink10635.html" }, { "directions": "Shake the vodka, cranberry juice and lime juice in a cocktail shaker half-filled with ice cubes. Strain into a cocktail glass. Make a small snowball of crushed ice in the palm of your hand. It needs to sit a little higher in the glass than the cranberry mixture. Carefully pour the blue curacao over the top of the ice. Serve with a US flag swizzler.", @@ -100267,7 +100267,7 @@ "Blue Curacao liqueur" ], "title": "Inauguratini recipe", - "url": "http://www.drinksmixer.com/drink10636.html" + "url": "https://www.drinksmixer.com/drink10636.html" }, { "directions": "Fill a beer glass with vodka, and fill a shot glass with beer. Drop the shot of beer into the glass of vodka, and chug.", @@ -100276,7 +100276,7 @@ "beer" ], "title": "Atomic Submarine recipe", - "url": "http://www.drinksmixer.com/drink10637.html" + "url": "https://www.drinksmixer.com/drink10637.html" }, { "directions": "Shake all ingredients together in a cocktail shaker. Strain into a collins glass filled with ice cubes, and serve.", @@ -100290,7 +100290,7 @@ "7-Up\u00ae soda" ], "title": "Blue MotherFucker #2 recipe", - "url": "http://www.drinksmixer.com/drink10638.html" + "url": "https://www.drinksmixer.com/drink10638.html" }, { "directions": "Pour the fruit punch into a shot glass. Add the Midori melon liqueur on top, and then follow with the Bacardi white rum, and serve.", @@ -100300,7 +100300,7 @@ "fruit punch" ], "title": "Bo Jo recipe", - "url": "http://www.drinksmixer.com/drink10639.html" + "url": "https://www.drinksmixer.com/drink10639.html" }, { "directions": "Pour the Malibu coconut rum and Kahlua coffee liqueur into a highball glass filled with ice cubes. Fill with orange juice, garnish with a cherry, and serve.", @@ -100310,7 +100310,7 @@ "orange juice" ], "title": "Cabo Beach Party recipe", - "url": "http://www.drinksmixer.com/drink10640.html" + "url": "https://www.drinksmixer.com/drink10640.html" }, { "directions": "Stir together equal amounts of orange juice and Tropicana Peach Orchard Punch juice. Add as much Jagermeister as desired, stir again, and serve.", @@ -100320,7 +100320,7 @@ "orange juice" ], "title": "German Wake-Up Call recipe", - "url": "http://www.drinksmixer.com/drink10641.html" + "url": "https://www.drinksmixer.com/drink10641.html" }, { "directions": "Stir ingredients together in a double-shot glass, and serve; result should be neon blue.", @@ -100331,7 +100331,7 @@ "Sprite\u00ae soda" ], "title": "Gummy Worm recipe", - "url": "http://www.drinksmixer.com/drink10642.html" + "url": "https://www.drinksmixer.com/drink10642.html" }, { "directions": "Stir ingredients together in a highball glass with 3 - 4 ice cubes, and serve.", @@ -100340,7 +100340,7 @@ "apple juice" ], "title": "Heste Pis recipe", - "url": "http://www.drinksmixer.com/drink10643.html" + "url": "https://www.drinksmixer.com/drink10643.html" }, { "directions": "Stir ingredients together with a couple ice cubes in a highball glass, and serve.", @@ -100349,7 +100349,7 @@ "mango juice" ], "title": "Hot Carl #2 recipe", - "url": "http://www.drinksmixer.com/drink10644.html" + "url": "https://www.drinksmixer.com/drink10644.html" }, { "directions": "Stir ingredients together in a punch bowl, with/without ice, and serve. Serves 4.", @@ -100360,7 +100360,7 @@ "fruit punch" ], "title": "Hot Nils recipe", - "url": "http://www.drinksmixer.com/drink10645.html" + "url": "https://www.drinksmixer.com/drink10645.html" }, { "directions": "Pour the Skyy spiced vodka and Vernors ginger ale into a highball glass filled with ice cubes. Add a straw, and serve.", @@ -100369,7 +100369,7 @@ "Vernors\u00ae Original ginger soda" ], "title": "Hottness recipe", - "url": "http://www.drinksmixer.com/drink10646.html" + "url": "https://www.drinksmixer.com/drink10646.html" }, { "directions": "Fill a shot glass with cinnamon schnapps. Drop the full shot glass into a frosted mug o' beer, and serve.", @@ -100378,7 +100378,7 @@ "beer" ], "title": "Hot 'n' Frosty recipe", - "url": "http://www.drinksmixer.com/drink10647.html" + "url": "https://www.drinksmixer.com/drink10647.html" }, { "directions": "Stir ingredients together over ice in a highball glass, and serve.", @@ -100387,7 +100387,7 @@ "7-Up\u00ae soda" ], "title": "Hpnotiq and 7 recipe", - "url": "http://www.drinksmixer.com/drink10648.html" + "url": "https://www.drinksmixer.com/drink10648.html" }, { "directions": "Pour the Champagne into a Champagne flute. Add the Hpnotiq liqueur, and serve.", @@ -100396,7 +100396,7 @@ "Champagne" ], "title": "Hpnotiq Champagne recipe", - "url": "http://www.drinksmixer.com/drink10649.html" + "url": "https://www.drinksmixer.com/drink10649.html" }, { "directions": "Pour the chilled Hpnotiq liqueur and Champagne into a Champagne flute. Slowly add Chambord raspberry liqueur. Garnish with cherries, and serve.", @@ -100406,7 +100406,7 @@ "Chambord\u00ae raspberry liqueur" ], "title": "Hpnotiq Heaven recipe", - "url": "http://www.drinksmixer.com/drink10650.html" + "url": "https://www.drinksmixer.com/drink10650.html" }, { "directions": "Fill a hurricane glass with crushed ice, add the light, dark, and coconut rum and fill with Tropicana Twister. Stir and serve with orange and cherry garnish.", @@ -100417,7 +100417,7 @@ "Tropicana\u00ae Tropical Fruit Furry Twister" ], "title": "Tropicana Hurricane recipe", - "url": "http://www.drinksmixer.com/drink10651.html" + "url": "https://www.drinksmixer.com/drink10651.html" }, { "directions": "Shake and strain through ice into a shot glass, and serve.", @@ -100426,7 +100426,7 @@ "Jack Daniel's\u00ae Tennessee whiskey" ], "title": "Hurricane Jack recipe", - "url": "http://www.drinksmixer.com/drink10652.html" + "url": "https://www.drinksmixer.com/drink10652.html" }, { "directions": "Combine the vodka and rum in a cocktail shaker half-filled with ice cubes. Shake well and strain into a highball glass. Add the chilled grape soda and serve.", @@ -100436,7 +100436,7 @@ "NuGrape\u00ae soda" ], "title": "Idaho Dimetapp recipe", - "url": "http://www.drinksmixer.com/drink10654.html" + "url": "https://www.drinksmixer.com/drink10654.html" }, { "directions": "Shake the above ingredients over ice in a cocktail shaker. Pour into a martini cocktail glass with a sour apple sugar rim. Garnish with an apple slice, and serve.", @@ -100447,7 +100447,7 @@ "sweet and sour mix" ], "title": "Indian Apple Martini recipe", - "url": "http://www.drinksmixer.com/drink10655.html" + "url": "https://www.drinksmixer.com/drink10655.html" }, { "directions": "Pour all ingredients into a highball glass filled with ice cubes, stir and serve.", @@ -100460,7 +100460,7 @@ "Sprite\u00ae soda" ], "title": "Indian Summer Cocktail recipe", - "url": "http://www.drinksmixer.com/drink10656.html" + "url": "https://www.drinksmixer.com/drink10656.html" }, { "directions": "1. Pour a double shot of vodka into a double shot glass. Holding a pint glass upside-down over the shot glass press the shot glass firmly to the bottom of the pint glass. Flip over. \r", @@ -100470,7 +100470,7 @@ "Bass\u00ae pale ale" ], "title": "Irish Depth Charge recipe", - "url": "http://www.drinksmixer.com/drink10657.html" + "url": "https://www.drinksmixer.com/drink10657.html" }, { "directions": "Pour both the Jameson Irish whiskey and Red Bull into a cocktail shaker half-filled with ice cubes. Shake and pour into an old-fashioned glass, and serve.", @@ -100479,7 +100479,7 @@ "Red Bull\u00ae energy drink" ], "title": "Irish Energy recipe", - "url": "http://www.drinksmixer.com/drink10658.html" + "url": "https://www.drinksmixer.com/drink10658.html" }, { "directions": "Fill a shot glass half with Kahlua, half with amaretto, and a splash of Bacardi 151 rum. Drop it into a pint of Guinness, and serve.", @@ -100490,7 +100490,7 @@ "Guinness\u00ae stout" ], "title": "Irish Rootbeer recipe", - "url": "http://www.drinksmixer.com/drink10659.html" + "url": "https://www.drinksmixer.com/drink10659.html" }, { "directions": "Blend the orange juice, milk, sugar and ice together for 30 seconds. Pour into collins glasses, and serve.", @@ -100501,7 +100501,7 @@ "sugar" ], "title": "Island Milk recipe", - "url": "http://www.drinksmixer.com/drink10660.html" + "url": "https://www.drinksmixer.com/drink10660.html" }, { "directions": "Pour the Jack Daniel's Tennessee whiskey and amaretto almond liqueur over ice in a mixing glass. Swirl and strain into a double-shot glass, and serve.", @@ -100510,7 +100510,7 @@ "amaretto almond liqueur" ], "title": "Italian Assassin recipe", - "url": "http://www.drinksmixer.com/drink10661.html" + "url": "https://www.drinksmixer.com/drink10661.html" }, { "directions": "Shake Galliano herbal liqueur, Kahlua coffee liqueur and milk together in a cocktail shaker. Strain into a chilled cocktail glass. Add Coca-cola, and serve.", @@ -100521,7 +100521,7 @@ "Coca-Cola\u00ae" ], "title": "Italian Bulldog recipe", - "url": "http://www.drinksmixer.com/drink10662.html" + "url": "https://www.drinksmixer.com/drink10662.html" }, { "directions": "Pour all ingredients into a cocktail shaker half-filled with ice cubes. Shake well, strain into a shot glass, and serve.", @@ -100531,7 +100531,7 @@ "lemon juice" ], "title": "Italian Ice #2 recipe", - "url": "http://www.drinksmixer.com/drink10663.html" + "url": "https://www.drinksmixer.com/drink10663.html" }, { "directions": "Stir together in a shot glass, and serve.", @@ -100540,7 +100540,7 @@ "Jack Daniel's\u00ae Tennessee whiskey" ], "title": "Jacardi recipe", - "url": "http://www.drinksmixer.com/drink10664.html" + "url": "https://www.drinksmixer.com/drink10664.html" }, { "directions": "Put the ice cubes into a tall glass, and add Jack Daniel's Tennessee whiskey. Stirring continuously, add the Coca-cola, grenadine, cherry juice, and top off with a cherry.", @@ -100553,7 +100553,7 @@ "ice cubes" ], "title": "Jack and Cherries recipe", - "url": "http://www.drinksmixer.com/drink10665.html" + "url": "https://www.drinksmixer.com/drink10665.html" }, { "directions": "Stir together in a shot glass, and serve.", @@ -100562,7 +100562,7 @@ "peppermint schnapps" ], "title": "Jack Frost #2 recipe", - "url": "http://www.drinksmixer.com/drink10666.html" + "url": "https://www.drinksmixer.com/drink10666.html" }, { "directions": "Pour all ingredients into a collins glass filled with ice cubes. Stir slowly, and serve.", @@ -100573,7 +100573,7 @@ "Sprite\u00ae soda" ], "title": "Javanese Sunrise recipe", - "url": "http://www.drinksmixer.com/drink10669.html" + "url": "https://www.drinksmixer.com/drink10669.html" }, { "directions": "Pour all ingredients into a highball glass half-filled with ice cubes, stir and serve.", @@ -100584,7 +100584,7 @@ "grenadine syrup" ], "title": "Mind Bomb recipe", - "url": "http://www.drinksmixer.com/drink10670.html" + "url": "https://www.drinksmixer.com/drink10670.html" }, { "directions": "Stir ingredients together in a shot glass, and serve.", @@ -100594,7 +100594,7 @@ "tequila" ], "title": "Jeep Fuel recipe", - "url": "http://www.drinksmixer.com/drink10671.html" + "url": "https://www.drinksmixer.com/drink10671.html" }, { "directions": "Combine all ingredients in a cocktail shaker half-filled with ice cubes. Shake well, strain into a highball glass, and serve.", @@ -100604,7 +100604,7 @@ "orange juice" ], "title": "Jenny Great recipe", - "url": "http://www.drinksmixer.com/drink10672.html" + "url": "https://www.drinksmixer.com/drink10672.html" }, { "directions": "Stir ingredients together in a chilled cocktail glass, and serve.", @@ -100614,7 +100614,7 @@ "Sprite\u00ae soda" ], "title": "Cherrytini recipe", - "url": "http://www.drinksmixer.com/drink10673.html" + "url": "https://www.drinksmixer.com/drink10673.html" }, { "directions": "Stir all ingredients together in a highball glass half-filled with ice cubes, and serve.", @@ -100625,7 +100625,7 @@ "ginger ale" ], "title": "Flip Passion recipe", - "url": "http://www.drinksmixer.com/drink10674.html" + "url": "https://www.drinksmixer.com/drink10674.html" }, { "directions": "Pour both ingredients into a big highball glass, almost filled with ice cubes. Stir well, and serve.", @@ -100634,7 +100634,7 @@ "Nestea\u00ae iced tea" ], "title": "Iced Jim recipe", - "url": "http://www.drinksmixer.com/drink10675.html" + "url": "https://www.drinksmixer.com/drink10675.html" }, { "directions": "Stir ingredients together in a punch bowl, and serve.", @@ -100643,7 +100643,7 @@ "Hawaiian Punch\u00ae" ], "title": "Jager Punch recipe", - "url": "http://www.drinksmixer.com/drink10676.html" + "url": "https://www.drinksmixer.com/drink10676.html" }, { "directions": "Pour all ingredients into a large collins glass filled with ice cubes. Garnish with a slice of lemon or lime, and serve.", @@ -100653,7 +100653,7 @@ "7-Up\u00ae soda" ], "title": "Japanese Jim recipe", - "url": "http://www.drinksmixer.com/drink10677.html" + "url": "https://www.drinksmixer.com/drink10677.html" }, { "directions": "Stir ingredients together in a shot glass, and serve.", @@ -100662,7 +100662,7 @@ "Rumple Minze\u00ae peppermint liqueur" ], "title": "Jet Fuel recipe", - "url": "http://www.drinksmixer.com/drink10678.html" + "url": "https://www.drinksmixer.com/drink10678.html" }, { "directions": "Pour Jim Beam bourbon whiskey into a 16-oz glass half-filled with ice cubes. Fill glass with Coca-Cola, stir lightly, and serve.", @@ -100671,7 +100671,7 @@ "Coca-Cola\u00ae" ], "title": "Jim Beam and Coke recipe", - "url": "http://www.drinksmixer.com/drink10679.html" + "url": "https://www.drinksmixer.com/drink10679.html" }, { "directions": "Pour Jim Beam bourbon whiskey into a 16-oz glass half-filled with ice cubes. Fill glass with ginger ale, (any brand), stir lightly and serve.", @@ -100680,7 +100680,7 @@ "ginger ale" ], "title": "Jim Beam and Ginger recipe", - "url": "http://www.drinksmixer.com/drink10680.html" + "url": "https://www.drinksmixer.com/drink10680.html" }, { "directions": "Stir ingredients together in an old-fashioned glass half-filled with ice cubes, and serve.", @@ -100692,7 +100692,7 @@ "orange juice" ], "title": "Jim Frost recipe", - "url": "http://www.drinksmixer.com/drink10681.html" + "url": "https://www.drinksmixer.com/drink10681.html" }, { "directions": "Pour the Jim Beam bourbon whiskey into a collins glass half-filled with ice cubes. Fill with Dr. Pepper soda, stir lightly and serve. ", @@ -100701,7 +100701,7 @@ "Dr. Pepper\u00ae soda" ], "title": "Jim Pepper recipe", - "url": "http://www.drinksmixer.com/drink10682.html" + "url": "https://www.drinksmixer.com/drink10682.html" }, { "directions": "Pour Jim Beam bourbon whiskey into a collins glass filled with ice cubes. Fill with coke, and lace with grenadine, to taste. Garnish with a cherry (optional) and serve.", @@ -100711,7 +100711,7 @@ "grenadine syrup" ], "title": "Jim Rogers recipe", - "url": "http://www.drinksmixer.com/drink10683.html" + "url": "https://www.drinksmixer.com/drink10683.html" }, { "directions": "Pour all ingredients into an old fashioned glass over three ice cubes, mix and serve.", @@ -100721,7 +100721,7 @@ "lime juice" ], "title": "Jimbull recipe", - "url": "http://www.drinksmixer.com/drink10684.html" + "url": "https://www.drinksmixer.com/drink10684.html" }, { "directions": "Combine all ingredients in a cocktail shaker half-filled with ice cubes. Shake well, strain into a collins glass, and serve.", @@ -100732,7 +100732,7 @@ "pineapple juice" ], "title": "Johnny on the Spot recipe", - "url": "http://www.drinksmixer.com/drink10685.html" + "url": "https://www.drinksmixer.com/drink10685.html" }, { "directions": "Pour vodka and tonic water over a fair amount of ice in a highball glass. Squeeze juices from lime and mandarin slices and garnish. Make sure to use ripe, sweet limes to counterbalance the tonic water.", @@ -100743,7 +100743,7 @@ "mandarin" ], "title": "Johnny Rev recipe", - "url": "http://www.drinksmixer.com/drink10686.html" + "url": "https://www.drinksmixer.com/drink10686.html" }, { "directions": "Mix the boiling water with a package of green apple jell-o. Allow the jell-o to dissolve for 1 minute. Add chilled DeKuyper Sour Apple Pucker schnapps; stir until well combined. Pour into 1-oz disposable shot glasses which can be found at most party and food supply stores. Refridgerate for several hours until jell-o sets. Makes about 20 shot-sized servings.", @@ -100753,7 +100753,7 @@ "water" ], "title": "Jolly Rancher Jello Shots recipe", - "url": "http://www.drinksmixer.com/drink10687.html" + "url": "https://www.drinksmixer.com/drink10687.html" }, { "directions": "Combine both ingredients in a cocktail shaker half-filled with ice cubes. Shake well and strain into a highball glass filled with ice cubes. Garnish with a slice of banana, and serve.", @@ -100762,7 +100762,7 @@ "Sunny Delight\u00ae California Style orange juice" ], "title": "Juicy Fruit #2 recipe", - "url": "http://www.drinksmixer.com/drink10688.html" + "url": "https://www.drinksmixer.com/drink10688.html" }, { "directions": "Build all ingredients in an old-fashioned with ice cubes, and serve.", @@ -100773,7 +100773,7 @@ "cranberry juice" ], "title": "Julian's Midori recipe", - "url": "http://www.drinksmixer.com/drink10689.html" + "url": "https://www.drinksmixer.com/drink10689.html" }, { "directions": "Gently pour ingredients into a 1.5-oz or 2-oz shot glass. When drinking, hold in mouth for a few seconds mixing ingredients with tongue to bring out the flavor. Swallow and feel the warmth of the brandy.", @@ -100783,7 +100783,7 @@ "white creme de cacao" ], "title": "Junior Mint #2 recipe", - "url": "http://www.drinksmixer.com/drink10690.html" + "url": "https://www.drinksmixer.com/drink10690.html" }, { "directions": "Mix the cherry jell-o with boiling water; add vodka and gin. Pour into paper shot cups and refrigerate for 3 hours before serving.", @@ -100794,7 +100794,7 @@ "cherry jell-o" ], "title": "Junk It All recipe", - "url": "http://www.drinksmixer.com/drink10691.html" + "url": "https://www.drinksmixer.com/drink10691.html" }, { "directions": "Pour the Kahlua coffee liqueur into a mug, followed by the cream, and then the Courvoisier, and stir them together. Microwave on high for about 30 seconds, and serve.", @@ -100804,7 +100804,7 @@ "light cream" ], "title": "Napoleon's Mexican Winter recipe", - "url": "http://www.drinksmixer.com/drink10692.html" + "url": "https://www.drinksmixer.com/drink10692.html" }, { "directions": "Pour Jim Beam bourbon whiskey into a large collins glass, fill with Lipton Brisk iced tea, stir and serve.", @@ -100813,7 +100813,7 @@ "Lipton\u00ae Brisk iced tea" ], "title": "Brisky Jim recipe", - "url": "http://www.drinksmixer.com/drink10693.html" + "url": "https://www.drinksmixer.com/drink10693.html" }, { "directions": "Pour the vodka into a cocktail shaker half-filled with ice cubes. Add the peach juice and iced tea. Shake well, and strain into a highball glass filled with ice cubes. Decorate with a lime wedge, and serve.", @@ -100823,7 +100823,7 @@ "peach juice" ], "title": "Buffalo Tea recipe", - "url": "http://www.drinksmixer.com/drink10694.html" + "url": "https://www.drinksmixer.com/drink10694.html" }, { "directions": "Combine peach schnapps and coffee liqueur over ice cubes in an old-fashioned glass. Add half-and-half, and serve.", @@ -100833,7 +100833,7 @@ "half-and-half" ], "title": "Creamy Pflueger recipe", - "url": "http://www.drinksmixer.com/drink10695.html" + "url": "https://www.drinksmixer.com/drink10695.html" }, { "directions": "Pour both Jim Beam bourbon whiskey's into a shooter glass, and serve.", @@ -100842,7 +100842,7 @@ "Jim Beam Black Label bourbon whiskey" ], "title": "Double Jim recipe", - "url": "http://www.drinksmixer.com/drink10696.html" + "url": "https://www.drinksmixer.com/drink10696.html" }, { "directions": "Stir both ingredients together in a collins glass, and serve.", @@ -100851,7 +100851,7 @@ "Dr. Pepper\u00ae soda" ], "title": "Jim and the Doctor recipe", - "url": "http://www.drinksmixer.com/drink10697.html" + "url": "https://www.drinksmixer.com/drink10697.html" }, { "directions": "Pour the Bacardi Vanil rum into an old-fashioned glass half-filled with crushed ice. Add the Pepsi vanilla cola and lime juice. Stir well. Add the lemon juice, and serve.", @@ -100862,7 +100862,7 @@ "lemon juice" ], "title": "Kab-z Vanilla recipe", - "url": "http://www.drinksmixer.com/drink10698.html" + "url": "https://www.drinksmixer.com/drink10698.html" }, { "directions": "Dissolve the jell-o with hot water. Add vodka and triple sec. Pour in plastic shot glasses. Chill until formed, and serve.", @@ -100873,7 +100873,7 @@ "lime jell-o" ], "title": "Kamikaze Wigglers recipe", - "url": "http://www.drinksmixer.com/drink10699.html" + "url": "https://www.drinksmixer.com/drink10699.html" }, { "directions": "Shake the above ingredients with ice and strain into a cocktail glass. Garnish with a lemon curl and speared cherry, and serve.", @@ -100883,7 +100883,7 @@ "sweet and sour mix" ], "title": "Kazkar Kocktail recipe", - "url": "http://www.drinksmixer.com/drink10700.html" + "url": "https://www.drinksmixer.com/drink10700.html" }, { "directions": "Pour out or consume the mountain dew until it reaches the top of the label. Add the Kool-aid and fill the rest up with vodka. Shake, and chill. Serve as is from the bottle, or into glasses.", @@ -100893,7 +100893,7 @@ "Kool-Aid\u00ae" ], "title": "Kentucky Bullfrog recipe", - "url": "http://www.drinksmixer.com/drink10701.html" + "url": "https://www.drinksmixer.com/drink10701.html" }, { "directions": "Pour the rums over some crushed ice in a tall collins glass. Fill with pineapple juice, and serve.", @@ -100903,7 +100903,7 @@ "pineapple juice" ], "title": "Kevin on the Floor recipe", - "url": "http://www.drinksmixer.com/drink10702.html" + "url": "https://www.drinksmixer.com/drink10702.html" }, { "directions": "Combine all ingredients in a cocktail shaker half-filled with ice cubes. Shake well, strain into a chilled cocktail glass, and serve. \r", @@ -100915,7 +100915,7 @@ "half-and-half" ], "title": "Key Lime Martini #3 recipe", - "url": "http://www.drinksmixer.com/drink10703.html" + "url": "https://www.drinksmixer.com/drink10703.html" }, { "directions": "Pour vodka, Ke Ke Beach liqueur and lime juice into a cocktail shaker filled with ice cubes. Shake and pour into a chilled martini cocktail glass. Serve with a twist of lime.", @@ -100925,7 +100925,7 @@ "Rose's\u00ae lime juice" ], "title": "Key Lime Martini #2 recipe", - "url": "http://www.drinksmixer.com/drink10704.html" + "url": "https://www.drinksmixer.com/drink10704.html" }, { "directions": "Pour equal parts of each ingredient into a shot glass, and shoot.", @@ -100934,7 +100934,7 @@ "Wild Turkey\u00ae bourbon whiskey" ], "title": "Kickin' Chicken recipe", - "url": "http://www.drinksmixer.com/drink10705.html" + "url": "https://www.drinksmixer.com/drink10705.html" }, { "directions": "Shake and strain into a cocktail (martini) glass filled with cracked ice. Garnish with lemon and lime peel, and serve.", @@ -100948,7 +100948,7 @@ "peach juice" ], "title": "Kill Bill recipe", - "url": "http://www.drinksmixer.com/drink10706.html" + "url": "https://www.drinksmixer.com/drink10706.html" }, { "directions": "Stir ingredients together in a small rocks glass. Ignite, allow to burn momentarily, and extinguish before serving.", @@ -100957,7 +100957,7 @@ "Blue Curacao liqueur" ], "title": "Killer Sniff recipe", - "url": "http://www.drinksmixer.com/drink10707.html" + "url": "https://www.drinksmixer.com/drink10707.html" }, { "directions": "Pour the whiskey, Southern Comfort, ginger ale and lime juice into a highball glass half-filled with crushed ice. Add a slice of lime to the rim of the glass, and serve.", @@ -100969,7 +100969,7 @@ "lime" ], "title": "Kinky Sex recipe", - "url": "http://www.drinksmixer.com/drink10709.html" + "url": "https://www.drinksmixer.com/drink10709.html" }, { "directions": "Stir the rum and kiwi juice together in a mixing glass half-filled with ice cubes. Strain into a hurricane glass filled with ice cubes. Add soda, garnish with a fresh slice of kiwi, and serve.", @@ -100979,7 +100979,7 @@ "soda" ], "title": "Kiwi Casa recipe", - "url": "http://www.drinksmixer.com/drink10710.html" + "url": "https://www.drinksmixer.com/drink10710.html" }, { "directions": "Stir ingredients together in a shot glass, and shoot.", @@ -100989,7 +100989,7 @@ "Kahlua\u00ae coffee liqueur" ], "title": "Knockout Shot recipe", - "url": "http://www.drinksmixer.com/drink10711.html" + "url": "https://www.drinksmixer.com/drink10711.html" }, { "directions": "Stir together in a collins glass. Add ice if desired, and serve.", @@ -100999,7 +100999,7 @@ "Sierra Mist\u00ae soda" ], "title": "Kodi Odie recipe", - "url": "http://www.drinksmixer.com/drink10712.html" + "url": "https://www.drinksmixer.com/drink10712.html" }, { "directions": "Stir al ingredients together in a large punch bowl. Serve in punch cups.", @@ -101011,7 +101011,7 @@ "fruit punch" ], "title": "Koontaka Punch recipe", - "url": "http://www.drinksmixer.com/drink10713.html" + "url": "https://www.drinksmixer.com/drink10713.html" }, { "directions": "Combine all ingredients together in a cocktail shaker half-filled with ice cubes. Shake well, and strain into several shot glasses. Serve as individual shots.", @@ -101025,7 +101025,7 @@ "grenadine syrup" ], "title": "Kreeper recipe", - "url": "http://www.drinksmixer.com/drink10714.html" + "url": "https://www.drinksmixer.com/drink10714.html" }, { "directions": "Pour all liquors into a highball glass 3/4 filled with ice cubes. Add a small splash of orange juice, top with Coca-cola (or equivalent), and serve.", @@ -101039,7 +101039,7 @@ "Coca-Cola\u00ae" ], "title": "L.I.E. recipe", - "url": "http://www.drinksmixer.com/drink10716.html" + "url": "https://www.drinksmixer.com/drink10716.html" }, { "directions": "Tear up the mint leaves and add them to an old-fashioned glass containing the lime juice and sugar. Press the laves with the back of a spoon against the glass to release the aroma. Add vodka. Fill the glass with ice cubes and top off with club soda. Add the raspberries. Mix it with a spoon so that mint leaves and raspberries get distributed throughout the glass. Serve.", @@ -101052,7 +101052,7 @@ "mint" ], "title": "La Mojita recipe", - "url": "http://www.drinksmixer.com/drink10717.html" + "url": "https://www.drinksmixer.com/drink10717.html" }, { "directions": "Combine all ingredients together in a cocktail shaker half-filled with ice cubes. Shake well and strain into a cocktail glass. Garnish with a slice of apple or twist of peel, and serve.", @@ -101063,7 +101063,7 @@ "Amaretto Di Saronno\u00ae liqueur" ], "title": "Lack Affection recipe", - "url": "http://www.drinksmixer.com/drink10718.html" + "url": "https://www.drinksmixer.com/drink10718.html" }, { "directions": "Stir ingredients together in a red wine glass, and serve.", @@ -101073,7 +101073,7 @@ "club soda" ], "title": "Lamasina recipe", - "url": "http://www.drinksmixer.com/drink10719.html" + "url": "https://www.drinksmixer.com/drink10719.html" }, { "directions": "Stir ingredients together in a highball glass filled with ice cubes, and serve.", @@ -101084,7 +101084,7 @@ "sweet and sour mix" ], "title": "Leah's Piece of Ass recipe", - "url": "http://www.drinksmixer.com/drink10720.html" + "url": "https://www.drinksmixer.com/drink10720.html" }, { "directions": "Pour the butterscotch schnapps and Kona coffee liqueur into a cocktail glass over ice. Top with a quick splash of cream, stir and serve.", @@ -101094,7 +101094,7 @@ "cream" ], "title": "Leaky Buttery Nipple recipe", - "url": "http://www.drinksmixer.com/drink10721.html" + "url": "https://www.drinksmixer.com/drink10721.html" }, { "directions": "Combine equal parts of each ingredient in a cocktail shaker with a few ice cubes. Shake well, strain into a double-shot glass, and serve.", @@ -101103,7 +101103,7 @@ "sweet and sour mix" ], "title": "Lemon Drop #8 recipe", - "url": "http://www.drinksmixer.com/drink10722.html" + "url": "https://www.drinksmixer.com/drink10722.html" }, { "directions": "Combine ingredients in a cocktail shaker half-filled with ice cubes; shake well. Swirl half a lemon around the rim of a margarita glass and dip in sugar. Pour the contents of the cocktail shaker into the glass, and serve.", @@ -101115,7 +101115,7 @@ "sugar" ], "title": "Lemon Drop Martini #2 recipe", - "url": "http://www.drinksmixer.com/drink10723.html" + "url": "https://www.drinksmixer.com/drink10723.html" }, { "directions": "Pour all ingredients into a mixing glass half-filled with ice cubes. Stir well. Strain into a cocktail glass over crushed ice, and serve.", @@ -101126,7 +101126,7 @@ "Sierra Mist\u00ae soda" ], "title": "Lemon Icetini recipe", - "url": "http://www.drinksmixer.com/drink10724.html" + "url": "https://www.drinksmixer.com/drink10724.html" }, { "directions": "Muddle the fresh lime with the caster sugar, then add the liquors and shake with plenty of ice. Pour into a highball glass, add a dash of lemonade, and serve.", @@ -101139,7 +101139,7 @@ "lemonade" ], "title": "Lime Chiver recipe", - "url": "http://www.drinksmixer.com/drink10726.html" + "url": "https://www.drinksmixer.com/drink10726.html" }, { "directions": "Layer the ingredients in the order listed in a shot glass, and serve.", @@ -101149,7 +101149,7 @@ "half-and-half" ], "title": "Creamy Anyie recipe", - "url": "http://www.drinksmixer.com/drink10727.html" + "url": "https://www.drinksmixer.com/drink10727.html" }, { "directions": "Stir ingredients together in a mug, and serve.", @@ -101159,7 +101159,7 @@ "milk" ], "title": "Lindsey's Night Cap recipe", - "url": "http://www.drinksmixer.com/drink10728.html" + "url": "https://www.drinksmixer.com/drink10728.html" }, { "directions": "Pour the Southern Comfort into a highball glass. Add Sprite and a splash of lemon juice. Add ice, and serve.", @@ -101169,7 +101169,7 @@ "lemon juice" ], "title": "Lion Tamer #2 recipe", - "url": "http://www.drinksmixer.com/drink10729.html" + "url": "https://www.drinksmixer.com/drink10729.html" }, { "directions": "Add all ingredients to a cocktail shaker half-filled with ice cubes. Shake well, strain into a cocktail glass, and serve.", @@ -101179,7 +101179,7 @@ "grape juice" ], "title": "Liquid Panty Remover #2 recipe", - "url": "http://www.drinksmixer.com/drink10730.html" + "url": "https://www.drinksmixer.com/drink10730.html" }, { "directions": "Mix Gatorade Lemon-Lime energy drink and cherry limeade together in a cocktail glass. Stir continuously as you add the Malibu mango rum, and serve.", @@ -101189,7 +101189,7 @@ "Gatorade\u00ae Lemon-Lime energy drink" ], "title": "Liquid Skittles recipe", - "url": "http://www.drinksmixer.com/drink10731.html" + "url": "https://www.drinksmixer.com/drink10731.html" }, { "directions": "Stir ingredients together with 3 - 5 ice cubes in a collins glass, and serve.", @@ -101198,7 +101198,7 @@ "Amp\u00ae energy drink" ], "title": "Liquid Uranium recipe", - "url": "http://www.drinksmixer.com/drink10732.html" + "url": "https://www.drinksmixer.com/drink10732.html" }, { "directions": "Combine all ingredients in a cocktail shaker half-filled with ice cubes. Shake vigorously. As chilled, pour into shot glasses and shoot.", @@ -101209,7 +101209,7 @@ "whipped cream" ], "title": "Bitch's Skim Milk recipe", - "url": "http://www.drinksmixer.com/drink10733.html" + "url": "https://www.drinksmixer.com/drink10733.html" }, { "directions": "Place the ice cubes in the bottom of a collins glass with the sugar. Add the vodka, followed by the milk. Stir and serve.", @@ -101220,7 +101220,7 @@ "ice cubes" ], "title": "Lithium recipe", - "url": "http://www.drinksmixer.com/drink10734.html" + "url": "https://www.drinksmixer.com/drink10734.html" }, { "directions": "Combine all ingredients in a cocktail shaker half-filled with ice cubes. Shake well, strain into a cocktail glass, and serve.", @@ -101232,7 +101232,7 @@ "blueberry juice" ], "title": "Little Black Devil recipe", - "url": "http://www.drinksmixer.com/drink10735.html" + "url": "https://www.drinksmixer.com/drink10735.html" }, { "directions": "Stir ingredients together in a mixing glass with ice cubes. Strain into a shot glass. Serve with a cherry-flavored lollipop with a plastic stick where possible.", @@ -101241,7 +101241,7 @@ "cherry juice" ], "title": "Lollishot recipe", - "url": "http://www.drinksmixer.com/drink10736.html" + "url": "https://www.drinksmixer.com/drink10736.html" }, { "directions": "Stir ingredients together in a mixing glass with ice cubes. Strain into a shot glass. Serve with an apple-flavored lollipop with a plastic stick where possible.", @@ -101250,7 +101250,7 @@ "Rose's\u00ae sour apple mix" ], "title": "Sour Lollishot recipe", - "url": "http://www.drinksmixer.com/drink10737.html" + "url": "https://www.drinksmixer.com/drink10737.html" }, { "directions": "Stir ingredients together in a mixing glass with ice cubes. Strain into a shot glass. Serve with a pineapple-flavored lollipop with a plastic stick where possible.", @@ -101260,7 +101260,7 @@ "pineapple juice" ], "title": "Sweet Lollishot recipe", - "url": "http://www.drinksmixer.com/drink10738.html" + "url": "https://www.drinksmixer.com/drink10738.html" }, { "directions": "Pour all ingredients into a cocktail shaker filled with ice cubes. Shake well. Pour all contents into a highball glass. Garnish with a piece of pineapple and a maraschino cherry, and serve.", @@ -101273,7 +101273,7 @@ "grenadine syrup" ], "title": "Love Byte recipe", - "url": "http://www.drinksmixer.com/drink10739.html" + "url": "https://www.drinksmixer.com/drink10739.html" }, { "directions": "Combine all ingredients together in a blender with 1/2 - 1 cup of crushed ice. Blend well, pour into a margarita glass, and serve.", @@ -101284,7 +101284,7 @@ "strawberry daiquiri mix" ], "title": "Lovely Lauren recipe", - "url": "http://www.drinksmixer.com/drink10740.html" + "url": "https://www.drinksmixer.com/drink10740.html" }, { "directions": "Fill a parfait glass with ice-cubes, add ingredients and stir until pink. Absente may be used instead of Absinthe with several dashes of wormwood extract.", @@ -101294,7 +101294,7 @@ "Cortas\u00ae grenadine syrup" ], "title": "Lover's Kiss #2 recipe", - "url": "http://www.drinksmixer.com/drink10741.html" + "url": "https://www.drinksmixer.com/drink10741.html" }, { "directions": "PourJim Beam bourbon whiskey into a collins glass almost filled with ice cubes. Add orange soda and orange juice, and stir. Garnish with an orange slice, and serve.", @@ -101304,7 +101304,7 @@ "orange juice" ], "title": "Lynyrd Skynyrd recipe", - "url": "http://www.drinksmixer.com/drink10742.html" + "url": "https://www.drinksmixer.com/drink10742.html" }, { "directions": "Pour vodka over a couple of ice cubes in a cocktail glass. Add ginger beer, garnish with a cherry, and serve.", @@ -101313,7 +101313,7 @@ "Jamaican ginger beer" ], "title": "Lynna's Gingerbread Man recipe", - "url": "http://www.drinksmixer.com/drink10743.html" + "url": "https://www.drinksmixer.com/drink10743.html" }, { "directions": "Combine all ingredients togehter in a cocktail shaker half-filled with ice cubes. Shake well, and empty contents into a pina-colada glass. Garnish with a pineapple wedge, and serve.", @@ -101324,7 +101324,7 @@ "Hennessy\u00ae cognac" ], "title": "Machiavelli Pina Colada recipe", - "url": "http://www.drinksmixer.com/drink10744.html" + "url": "https://www.drinksmixer.com/drink10744.html" }, { "directions": "Shake or stir with ice cubes. Serve in a tall glass.", @@ -101333,7 +101333,7 @@ "cranberry juice" ], "title": "Mancran Cocktail recipe", - "url": "http://www.drinksmixer.com/drink10746.html" + "url": "https://www.drinksmixer.com/drink10746.html" }, { "directions": "Pour the Midori melon liqueur into a shot glass. Float the Bailey's Irish cream on top. Drop the grenadine down through the center, creating a dead, mangled frog effect, and serve.", @@ -101343,7 +101343,7 @@ "grenadine syrup" ], "title": "Mangled Frog recipe", - "url": "http://www.drinksmixer.com/drink10747.html" + "url": "https://www.drinksmixer.com/drink10747.html" }, { "directions": "Combine in blender with about half a cup of crushed ice. Grind only to broken/crushed state. Pour into a margarita glass. Garnish with lime and/or mango slice, and serve.", @@ -101353,7 +101353,7 @@ "mango juice" ], "title": "Mango Margarita #2 recipe", - "url": "http://www.drinksmixer.com/drink10748.html" + "url": "https://www.drinksmixer.com/drink10748.html" }, { "directions": "Combine all ingredients together in a cocktail shaker 1/3 filled with ice cubes. Shake well, and pour into a salt-rimmed margarita glass. Garnish with a lime wedge, and serve.", @@ -101365,7 +101365,7 @@ "lime juice" ], "title": "MargaFeni recipe", - "url": "http://www.drinksmixer.com/drink10749.html" + "url": "https://www.drinksmixer.com/drink10749.html" }, { "directions": "Build all the ingredients in an old-fashioned glass and serve with a chilli pepper or jalapeno pepper wedged onto the rim of the glass.", @@ -101375,7 +101375,7 @@ "Tabasco\u00ae sauce" ], "title": "Mariachi recipe", - "url": "http://www.drinksmixer.com/drink10750.html" + "url": "https://www.drinksmixer.com/drink10750.html" }, { "directions": "Stir ingredients together in a shot glass (without allowing any curdling), and shoot.", @@ -101385,7 +101385,7 @@ "milk" ], "title": "Marijuana Milkshake recipe", - "url": "http://www.drinksmixer.com/drink10751.html" + "url": "https://www.drinksmixer.com/drink10751.html" }, { "directions": "Stir ingredients together in a shot glass, and serve.", @@ -101394,7 +101394,7 @@ "Kahlua\u00ae coffee liqueur" ], "title": "Maya Kiss recipe", - "url": "http://www.drinksmixer.com/drink10752.html" + "url": "https://www.drinksmixer.com/drink10752.html" }, { "directions": "Combine all ingredients together in a blender, with/without ice. Blend well, pour over ice (if not already used) in a hurricane glass and serve.", @@ -101408,7 +101408,7 @@ "ice" ], "title": "Amaretto Seduction recipe", - "url": "http://www.drinksmixer.com/drink10753.html" + "url": "https://www.drinksmixer.com/drink10753.html" }, { "directions": "Pour the Southern Comfort peach liqueur into a highball glass half-filled with ice cubes. Add grenadine and Captain Morgan spiced rum. Top with a healthy dose of Royal Crown cola. Serve unstirred topped with a lime wedge and maraschino cherry.", @@ -101419,7 +101419,7 @@ "Royal Crown\u00ae cola" ], "title": "Black Napkin recipe", - "url": "http://www.drinksmixer.com/drink10754.html" + "url": "https://www.drinksmixer.com/drink10754.html" }, { "directions": "Float the whiskey on top of the irish cream in a shot glass. Top with whipped cream. Shoot without using your hands.", @@ -101429,7 +101429,7 @@ "whipped cream" ], "title": "Blow Job #3 recipe", - "url": "http://www.drinksmixer.com/drink10755.html" + "url": "https://www.drinksmixer.com/drink10755.html" }, { "directions": "Add all ingredients to a cocktail shaker half-filled with ice cubes. Shake well, strain into a shot glass, and serve.", @@ -101439,7 +101439,7 @@ "lime juice" ], "title": "Blue Freezie recipe", - "url": "http://www.drinksmixer.com/drink10756.html" + "url": "https://www.drinksmixer.com/drink10756.html" }, { "directions": "Pour over a couple of ice cubes in a highball glass, and serve.", @@ -101448,7 +101448,7 @@ "7-Up\u00ae soda" ], "title": "Canadian Skittle recipe", - "url": "http://www.drinksmixer.com/drink10757.html" + "url": "https://www.drinksmixer.com/drink10757.html" }, { "directions": "Mix the jello mix with the boiling water until powder is fully dissolved and then add the rest of the water and the alcohol. Pour the mixture into either shot glasses or paper cups, and chill as per usual.", @@ -101459,7 +101459,7 @@ "water" ], "title": "Caribbean Blue Jello Shots recipe", - "url": "http://www.drinksmixer.com/drink10758.html" + "url": "https://www.drinksmixer.com/drink10758.html" }, { "directions": "Shake ingredients together with cracked ice in a cocktail shaker. Strain into a chilled cocktail glass. Garnish with a lime twist, and serve.", @@ -101469,7 +101469,7 @@ "grenadine syrup" ], "title": "Crimson Martini recipe", - "url": "http://www.drinksmixer.com/drink10760.html" + "url": "https://www.drinksmixer.com/drink10760.html" }, { "directions": "Fill a hurricane glass with ice, then add the Kahlua coffee liqueur, Bailey's Irish cream and butterscotch schnapps. Add half-and-half as desired. For less cream, put in an old fashioned glass.", @@ -101480,7 +101480,7 @@ "half-and-half" ], "title": "Deep Pleasure recipe", - "url": "http://www.drinksmixer.com/drink10761.html" + "url": "https://www.drinksmixer.com/drink10761.html" }, { "directions": "Combine all ingredients together in a highball glass filled with ice cubes, and serve.", @@ -101496,7 +101496,7 @@ "cranberry juice" ], "title": "Dirty Dick recipe", - "url": "http://www.drinksmixer.com/drink10762.html" + "url": "https://www.drinksmixer.com/drink10762.html" }, { "directions": "Layer in a shot glass in this order; brandy, tequila then rum. Ignite. Extinguish within several seconds and serve.", @@ -101506,7 +101506,7 @@ "blackberry brandy" ], "title": "Flaming Asshole #2 recipe", - "url": "http://www.drinksmixer.com/drink10763.html" + "url": "https://www.drinksmixer.com/drink10763.html" }, { "directions": "Combine the Seagrams gin, vodka and crushed ice together in a cocktail shaker. Shake well, strain into a champagne flute, top with Sprite soda, and serve.", @@ -101517,7 +101517,7 @@ "Sprite\u00ae soda" ], "title": "Crawl Down My Pussy recipe", - "url": "http://www.drinksmixer.com/drink10764.html" + "url": "https://www.drinksmixer.com/drink10764.html" }, { "directions": "Pour the port into a pint glass half-filled with ice cubes. Add the sambuca, followed by the WKD, and serve.", @@ -101527,7 +101527,7 @@ "WKD\u00ae Original Vodka Blue" ], "title": "CV Special recipe", - "url": "http://www.drinksmixer.com/drink10765.html" + "url": "https://www.drinksmixer.com/drink10765.html" }, { "directions": "Pour all ingredients into a highball glass filled with ice cubes, stir and serve.", @@ -101538,7 +101538,7 @@ "coffee" ], "title": "Fucking Monkey recipe", - "url": "http://www.drinksmixer.com/drink10766.html" + "url": "https://www.drinksmixer.com/drink10766.html" }, { "directions": "Combine all ingredients together in a cocktail shaker half-filled with ice cubes. Shake well, strain into shot glasses, and serve.", @@ -101550,7 +101550,7 @@ "pineapple juice" ], "title": "Hokey Pokey recipe", - "url": "http://www.drinksmixer.com/drink10767.html" + "url": "https://www.drinksmixer.com/drink10767.html" }, { "directions": "Combine equal parts of each ingredient together in a cocktail shaker half-filled with ice cubes. Shake well, strain into shot glasses, and serve.", @@ -101564,7 +101564,7 @@ "Blue Curacao liqueur" ], "title": "Killer Shots recipe", - "url": "http://www.drinksmixer.com/drink10768.html" + "url": "https://www.drinksmixer.com/drink10768.html" }, { "directions": "Mix briefly over ice in a mixing glass and strain into a cocktail glass. Add a lemon or orange twist if desired, and serve.", @@ -101574,7 +101574,7 @@ "orange bitters" ], "title": "Mayflower Martini recipe", - "url": "http://www.drinksmixer.com/drink10769.html" + "url": "https://www.drinksmixer.com/drink10769.html" }, { "directions": "Fill a shot glass 1/4 way full with your chosen flavor of Pop Rocks popping candy (preferably strawberry or watermelon). Add Midori melon liqueur and shoot.", @@ -101583,7 +101583,7 @@ "Pop Rocks\u00ae candy" ], "title": "Melon Popper recipe", - "url": "http://www.drinksmixer.com/drink10770.html" + "url": "https://www.drinksmixer.com/drink10770.html" }, { "directions": "Salt the rim of a margarita glass and add crushed ice. Pour all ingredients into the glass, stir and serve.", @@ -101593,7 +101593,7 @@ "sweet and sour mix" ], "title": "Melonrita recipe", - "url": "http://www.drinksmixer.com/drink10771.html" + "url": "https://www.drinksmixer.com/drink10771.html" }, { "directions": "Build ingredients in a cocktail shaker half-filled with ice cubes. Shake and strain carefully into a sugar-rimmed 10-oz cocktail glass so as not to knock sugar off rim. Garnish with a large lemon twist, and serve.", @@ -101604,7 +101604,7 @@ "Ocean Spray\u00ae cranberry juice" ], "title": "Metropolitan #2 recipe", - "url": "http://www.drinksmixer.com/drink10772.html" + "url": "https://www.drinksmixer.com/drink10772.html" }, { "directions": "Pour the tequila and Kahlua coffee liqueur into a coffee mug; fill with coffee. Top with whipped cream, and serve.", @@ -101615,7 +101615,7 @@ "whipped cream" ], "title": "Mexican Coffee #2 recipe", - "url": "http://www.drinksmixer.com/drink10773.html" + "url": "https://www.drinksmixer.com/drink10773.html" }, { "directions": "Add vodka, triple sec and lime juice to a cocktail shaker half-filled with ice cubes. Shake, strain into a salt rimmed cocktail glass, and serve.", @@ -101625,7 +101625,7 @@ "lime juice" ], "title": "Mexican Martini #2 recipe", - "url": "http://www.drinksmixer.com/drink10774.html" + "url": "https://www.drinksmixer.com/drink10774.html" }, { "directions": "Pour the Scotch whisky and Drambuie into an old-fashioned glass. Add the shot of the tequila, and serve.", @@ -101635,7 +101635,7 @@ "tequila" ], "title": "Mexican Skirt recipe", - "url": "http://www.drinksmixer.com/drink10775.html" + "url": "https://www.drinksmixer.com/drink10775.html" }, { "directions": "Stir ingredients together in a shot glass, and serve.", @@ -101644,7 +101644,7 @@ "milk" ], "title": "Mexican Titty recipe", - "url": "http://www.drinksmixer.com/drink10776.html" + "url": "https://www.drinksmixer.com/drink10776.html" }, { "directions": "Pour the lemon juice, gold tequila and triple into a cocktail shaker half-filled with ice cubes. Shake well and strain into a beer glass. Fill glass with Stella Artois lager, and serve.", @@ -101655,7 +101655,7 @@ "lemon juice" ], "title": "Mexican Wife Beater recipe", - "url": "http://www.drinksmixer.com/drink10777.html" + "url": "https://www.drinksmixer.com/drink10777.html" }, { "directions": "Pour desired amount of tequila into mug or glass. Add the juice of one lime. Fill the rest of the glass with beer (preferably corona or dos equis). Add the hot-sauce of your preference, and a dash of chili powder. Stir the contents of the drink and add ice if desired.", @@ -101667,7 +101667,7 @@ "chili powder" ], "title": "Michealado recipe", - "url": "http://www.drinksmixer.com/drink10778.html" + "url": "https://www.drinksmixer.com/drink10778.html" }, { "directions": "Shake all ingredients (except orange juice) together with ice in a cocktail shaker. Strain into a collins glass filled with ice cubes, add orange juice and serve.", @@ -101679,7 +101679,7 @@ "orange juice" ], "title": "Mid-Summer Tea recipe", - "url": "http://www.drinksmixer.com/drink10779.html" + "url": "https://www.drinksmixer.com/drink10779.html" }, { "directions": "Shake ingredients together in a cocktail shaker half-filled with ice cubes. Strain into a large cocktail glass, and serve.", @@ -101690,7 +101690,7 @@ "sweet and sour mix" ], "title": "Midgetini recipe", - "url": "http://www.drinksmixer.com/drink10780.html" + "url": "https://www.drinksmixer.com/drink10780.html" }, { "directions": "Combine ingredients together in a beer mug / pint glass, stir well, and serve.\r", @@ -101701,7 +101701,7 @@ "blackcurrant cordial" ], "title": "Midland Mayham recipe", - "url": "http://www.drinksmixer.com/drink10781.html" + "url": "https://www.drinksmixer.com/drink10781.html" }, { "directions": "Pour the vodka, triple sec and peach schnapps into a collins glass half-filled with ice cubes. Fill halfway with club soda, garnish with a cherry and serve.", @@ -101712,7 +101712,7 @@ "club soda" ], "title": "Anyie on the Beach recipe", - "url": "http://www.drinksmixer.com/drink10782.html" + "url": "https://www.drinksmixer.com/drink10782.html" }, { "directions": "Stir ingredients together in a highball glass, and serve.", @@ -101722,7 +101722,7 @@ "lemonade" ], "title": "Bellatrix Ball recipe", - "url": "http://www.drinksmixer.com/drink10783.html" + "url": "https://www.drinksmixer.com/drink10783.html" }, { "directions": "Make sun tea with the tamarinds, squishing them before putting them into the water. Add the tequila. Add ice if you have some. Serve in cups.", @@ -101732,7 +101732,7 @@ "tamarinds" ], "title": "La Tamarinda recipe", - "url": "http://www.drinksmixer.com/drink10784.html" + "url": "https://www.drinksmixer.com/drink10784.html" }, { "directions": "Pour the vodka into a sugar-rimmed champagne flute and fill the rest of the glass with Champagne. Top with the Curacao, and serve.", @@ -101742,7 +101742,7 @@ "Blue Curacao liqueur" ], "title": "Midnight Kiss recipe", - "url": "http://www.drinksmixer.com/drink10785.html" + "url": "https://www.drinksmixer.com/drink10785.html" }, { "directions": "Combine ingredients together in a cocktail shaker with crushed ice. Shake well and strain into a highball glass, Garnish with a lime twist, and serve.", @@ -101752,7 +101752,7 @@ "lime juice" ], "title": "Midnight Martini #2 recipe", - "url": "http://www.drinksmixer.com/drink10786.html" + "url": "https://www.drinksmixer.com/drink10786.html" }, { "directions": "Melt the chocolate in a pan until it becomes syrupy, and in a separate container, combine the milk and the coffee. Pour in chocolate and Southern Comfort and stir. Sprinkle the cinnamon on top and serve.", @@ -101764,7 +101764,7 @@ "cinnamon" ], "title": "Midnight Mocha recipe", - "url": "http://www.drinksmixer.com/drink10787.html" + "url": "https://www.drinksmixer.com/drink10787.html" }, { "directions": "Combine all ingredients (except sweet and sour mix) in a cocktail shaker filled with ice cubes. Shake well. Pour entire contents into a hurricane glass, top with sour mix and serve.", @@ -101779,7 +101779,7 @@ "sweet and sour mix" ], "title": "Midori Madness recipe", - "url": "http://www.drinksmixer.com/drink10788.html" + "url": "https://www.drinksmixer.com/drink10788.html" }, { "directions": "Combine ingredients in a cocktail shaker. Shake well and strain into a martini cocktail glass. Garnish with an orange slice and serve.", @@ -101788,7 +101788,7 @@ "sweet and sour mix" ], "title": "Midori Sour #3 recipe", - "url": "http://www.drinksmixer.com/drink10789.html" + "url": "https://www.drinksmixer.com/drink10789.html" }, { "directions": "Combine spirits over ice in a cocktail shaker, shake, and strain into a martini glass. Garnish with a segment or two of peeled clementine or tangelo, and serve.", @@ -101797,7 +101797,7 @@ "sweet vermouth" ], "title": "Midtwinkle Martini recipe", - "url": "http://www.drinksmixer.com/drink10790.html" + "url": "https://www.drinksmixer.com/drink10790.html" }, { "directions": "Combine all ingredients together in a pitcher and mix thoroughly. Lightly garnish with lemon and peaches. Add 4 large ice cubes before serving.", @@ -101811,7 +101811,7 @@ "grenadine syrup" ], "title": "Mighty Christy's Hangover recipe", - "url": "http://www.drinksmixer.com/drink10791.html" + "url": "https://www.drinksmixer.com/drink10791.html" }, { "directions": "Pour equal parts of each ingredient into a shot glass, stir and serve.", @@ -101820,7 +101820,7 @@ "Romana\u00ae black sambuca" ], "title": "Migraine recipe", - "url": "http://www.drinksmixer.com/drink10792.html" + "url": "https://www.drinksmixer.com/drink10792.html" }, { "directions": "Stir ingredients together in a collins glass filled with ice cubes, and serve.", @@ -101830,7 +101830,7 @@ "cranberry juice" ], "title": "Mike's Cosmopolitan recipe", - "url": "http://www.drinksmixer.com/drink10793.html" + "url": "https://www.drinksmixer.com/drink10793.html" }, { "directions": "Stir ingredients together over ice in a whiskey sour glass, and serve.", @@ -101839,7 +101839,7 @@ "Scotch whisky" ], "title": "Milk Stiffy recipe", - "url": "http://www.drinksmixer.com/drink10794.html" + "url": "https://www.drinksmixer.com/drink10794.html" }, { "directions": "Layer the ingredients in the order listed into a shot glass, and serve.", @@ -101849,7 +101849,7 @@ "Frangelico\u00ae hazelnut liqueur" ], "title": "Milky Way #2 recipe", - "url": "http://www.drinksmixer.com/drink10795.html" + "url": "https://www.drinksmixer.com/drink10795.html" }, { "directions": "Pour the Dr. McGillicuddy's vanilla schnapps and Kahlua coffee liqueur into an old-fashioned glass filled with ice cubes. Top with cream or milk, to taste, and serve.", @@ -101859,7 +101859,7 @@ "milk" ], "title": "Milli Vanilli recipe", - "url": "http://www.drinksmixer.com/drink10796.html" + "url": "https://www.drinksmixer.com/drink10796.html" }, { "directions": "Shake with ice, strain into a shot glass and serve.", @@ -101870,7 +101870,7 @@ "lime juice" ], "title": "Mind Eraser #4 recipe", - "url": "http://www.drinksmixer.com/drink10797.html" + "url": "https://www.drinksmixer.com/drink10797.html" }, { "directions": "Stir ingredients together over crushed ice in a cocktail glass, and serve.", @@ -101879,7 +101879,7 @@ "root beer" ], "title": "Miss Tina recipe", - "url": "http://www.drinksmixer.com/drink10798.html" + "url": "https://www.drinksmixer.com/drink10798.html" }, { "directions": "Prepare half a pint of lager. Seperately mix a \"Jack & Coke\" without ice. Pour your Jack Daniel's into a glass and pour over the coke. Once you have the two drinks pour the Jack D. mix into the half lager and stir a little. Serve.", @@ -101889,7 +101889,7 @@ "Coca-Cola\u00ae" ], "title": "Misty recipe", - "url": "http://www.drinksmixer.com/drink10799.html" + "url": "https://www.drinksmixer.com/drink10799.html" }, { "directions": "Fill a whiskey sour glass up about halfway with ice. Pour the cognac and the sweet and sour mix into the glass. Top with the ginger ale. Serve stirred, with a straw.", @@ -101899,7 +101899,7 @@ "Canada Dry\u00ae ginger ale" ], "title": "Mitosis recipe", - "url": "http://www.drinksmixer.com/drink10800.html" + "url": "https://www.drinksmixer.com/drink10800.html" }, { "directions": "Stir ingredients together in a cocktail glass, and serve.", @@ -101908,7 +101908,7 @@ "Coca-Cola\u00ae" ], "title": "Mock Beer recipe", - "url": "http://www.drinksmixer.com/drink10801.html" + "url": "https://www.drinksmixer.com/drink10801.html" }, { "directions": "Stir ingredients together in an old-fashioned glass with/without ice as desired, and serve.", @@ -101917,7 +101917,7 @@ "cranberry-apple juice" ], "title": "Model United Nations recipe", - "url": "http://www.drinksmixer.com/drink10802.html" + "url": "https://www.drinksmixer.com/drink10802.html" }, { "directions": "Stir ingredients together in a cup, (ingredients pre-chilled or mixed with ice), and serve.", @@ -101926,7 +101926,7 @@ "amaretto almond liqueur" ], "title": "Moheezy recipe", - "url": "http://www.drinksmixer.com/drink10803.html" + "url": "https://www.drinksmixer.com/drink10803.html" }, { "directions": "Squeeze and add the lime slices into an old-fashioned glass. Add the mint leaves and decorate with mint leaves on the stem. Add the ice, sugar and soda water to make simple syrup. Use a large wooden spoon to crush and infuse the ingredients together. Add the rum last, and serve.", @@ -101939,7 +101939,7 @@ "lime" ], "title": "Mojito Tampa recipe", - "url": "http://www.drinksmixer.com/drink10804.html" + "url": "https://www.drinksmixer.com/drink10804.html" }, { "directions": "Pour the Frangelico hazelnut liqueur into a shot glass, and layer the cream on top. Sprinkle with nutmeg, and serve.", @@ -101949,7 +101949,7 @@ "nutmeg" ], "title": "Monk's Nuts recipe", - "url": "http://www.drinksmixer.com/drink10805.html" + "url": "https://www.drinksmixer.com/drink10805.html" }, { "directions": "Build the ingredients in a shot glass in the above order, and serve.", @@ -101959,7 +101959,7 @@ "Baja Rosa\u00ae strawberry cream liqueur" ], "title": "Monsen Miser recipe", - "url": "http://www.drinksmixer.com/drink10806.html" + "url": "https://www.drinksmixer.com/drink10806.html" }, { "directions": "Stir ingredients together in a cup with ice, and serve.", @@ -101968,7 +101968,7 @@ "Monster\u00ae energy drink" ], "title": "Monster Squad recipe", - "url": "http://www.drinksmixer.com/drink10807.html" + "url": "https://www.drinksmixer.com/drink10807.html" }, { "directions": "Pour the butterscotch schnapps into a coffee mug, fill mug with hot coffee (decaf, regular, or instant) add milk to taste and sugar if you wish (the schnapps adds a bit of sugar so be careful). Add the Kahlua coffee liqueur, stir and serve.", @@ -101980,7 +101980,7 @@ "Kahlua\u00ae coffee liqueur" ], "title": "Monty's Coffee recipe", - "url": "http://www.drinksmixer.com/drink10808.html" + "url": "https://www.drinksmixer.com/drink10808.html" }, { "directions": "Combine all ingredients together in a cocktail shaker half-filled with ice cubes. Shake well and pour into a chilled cocktail glass. Garnish with a black grape and lime twist, and serve.", @@ -101990,7 +101990,7 @@ "lime juice" ], "title": "Moon Inn Cocktail recipe", - "url": "http://www.drinksmixer.com/drink10809.html" + "url": "https://www.drinksmixer.com/drink10809.html" }, { "directions": "Stir ingredients together in a jug or pitcher, and serve.", @@ -102004,7 +102004,7 @@ "Bacardi\u00ae O rum" ], "title": "Moose Juice #2 recipe", - "url": "http://www.drinksmixer.com/drink10810.html" + "url": "https://www.drinksmixer.com/drink10810.html" }, { "directions": "Stir nice and easy together in a punch bowl. Serve in punch cups.", @@ -102017,7 +102017,7 @@ "fruit juice" ], "title": "Moose Juice recipe", - "url": "http://www.drinksmixer.com/drink10811.html" + "url": "https://www.drinksmixer.com/drink10811.html" }, { "directions": "Stir ingredients together over ice in a whiskey sour glass, and serve. ", @@ -102027,7 +102027,7 @@ "Yukon Jack\u00ae Canadian whisky" ], "title": "Mooselips recipe", - "url": "http://www.drinksmixer.com/drink10812.html" + "url": "https://www.drinksmixer.com/drink10812.html" }, { "directions": "Stir equal parts of each ingredient together in a mixing glass. Strain into a shot glass, and serve.", @@ -102037,7 +102037,7 @@ "Jagermeister\u00ae herbal liqueur" ], "title": "Morbid Angel recipe", - "url": "http://www.drinksmixer.com/drink10813.html" + "url": "https://www.drinksmixer.com/drink10813.html" }, { "directions": "Stir the whisky, schnapps and rum together in a large glass, Fill with Mountain Dew lime soda, and serve.", @@ -102048,7 +102048,7 @@ "Mountain Dew\u00ae lime soda" ], "title": "Morning After recipe", - "url": "http://www.drinksmixer.com/drink10814.html" + "url": "https://www.drinksmixer.com/drink10814.html" }, { "directions": "Shake ingredients together in a cocktail shaker. Strain into a martini cocktail glass. Garnish with shaved ginger and a slice of apple.", @@ -102059,7 +102059,7 @@ "apple juice" ], "title": "Ginger Apple Martini recipe", - "url": "http://www.drinksmixer.com/drink10815.html" + "url": "https://www.drinksmixer.com/drink10815.html" }, { "directions": "Mix all liquid ingredients with ice in a cocktail shaker. Stir and strain into a cocktail glass. Add a lychee nut, and serve.", @@ -102070,7 +102070,7 @@ "lychee" ], "title": "Mott Street Manhattan recipe", - "url": "http://www.drinksmixer.com/drink10816.html" + "url": "https://www.drinksmixer.com/drink10816.html" }, { "directions": "Stir ingredients together in a highball glass and serve.", @@ -102079,7 +102079,7 @@ "Mountain Dew\u00ae lime soda" ], "title": "Mount Fuji #2 recipe", - "url": "http://www.drinksmixer.com/drink10817.html" + "url": "https://www.drinksmixer.com/drink10817.html" }, { "directions": "Stir the gin together with the Dr. Pepper in a highball glass. Carefully layer the Bacardi 151 rum on top, ignite and serve.", @@ -102089,7 +102089,7 @@ "Bacardi\u00ae 151 rum" ], "title": "Mr. Gerbik recipe", - "url": "http://www.drinksmixer.com/drink10818.html" + "url": "https://www.drinksmixer.com/drink10818.html" }, { "directions": "Put the frozen lemonade into a pitcher, then pour the beers over the lemonade, then pour the whiskey into the lemonade container, and pour into the pitcher. Mix and add ice as necessary before serving.", @@ -102099,7 +102099,7 @@ "pink lemonade" ], "title": "Mr. T Whiskey recipe", - "url": "http://www.drinksmixer.com/drink10819.html" + "url": "https://www.drinksmixer.com/drink10819.html" }, { "directions": "Pour all ingredients into a large punch bowl with plenty of ice. Stir vigorously, and serve into cups.", @@ -102112,7 +102112,7 @@ "orange juice" ], "title": "Muddy Puddle recipe", - "url": "http://www.drinksmixer.com/drink10820.html" + "url": "https://www.drinksmixer.com/drink10820.html" }, { "directions": "Combine ingredients together in a cocktail shaker half-filled with ice cubes. Shake well, strain into a highball glass, and serve.", @@ -102122,7 +102122,7 @@ "Bailey's\u00ae Irish cream" ], "title": "Muscle Relaxer recipe", - "url": "http://www.drinksmixer.com/drink10821.html" + "url": "https://www.drinksmixer.com/drink10821.html" }, { "directions": "Combine all ingredients together in a cocktail shaker half-filled with ice cubes. Shake well, strain into a highball glass and serve.", @@ -102134,7 +102134,7 @@ "Juicy Juice\u00ae watermelon juice" ], "title": "My Wife's Snatch recipe", - "url": "http://www.drinksmixer.com/drink10822.html" + "url": "https://www.drinksmixer.com/drink10822.html" }, { "directions": "Stir ingredients together in a highball glass filled with ice cubes, and serve.", @@ -102146,7 +102146,7 @@ "grenadine syrup" ], "title": "Nagshead Lemonade recipe", - "url": "http://www.drinksmixer.com/drink10823.html" + "url": "https://www.drinksmixer.com/drink10823.html" }, { "directions": "Pour both ingredients into seperate shot glasses. Drink half the Pepsi, shoot the Bacardi Limon, then finish the Pepsi shot. Rinse and repeat.", @@ -102155,7 +102155,7 @@ "Pepsi\u00ae Twist cola" ], "title": "Naked Twister Shots recipe", - "url": "http://www.drinksmixer.com/drink10824.html" + "url": "https://www.drinksmixer.com/drink10824.html" }, { "directions": "Stir ingredients together in a double-shot glass, and shoot.", @@ -102165,7 +102165,7 @@ "orange juice" ], "title": "Napalm Bomb recipe", - "url": "http://www.drinksmixer.com/drink10825.html" + "url": "https://www.drinksmixer.com/drink10825.html" }, { "directions": "Pour the tequila into a shot glass; add the Kahlua coffee liqueur and serve.", @@ -102174,7 +102174,7 @@ "Kahlua\u00ae coffee liqueur" ], "title": "Nasty Mexican recipe", - "url": "http://www.drinksmixer.com/drink10826.html" + "url": "https://www.drinksmixer.com/drink10826.html" }, { "directions": "Pour a can of Natural Ice lager into a pint glass, add cranberry juice, and serve.", @@ -102183,7 +102183,7 @@ "cranberry juice" ], "title": "Natural Right recipe", - "url": "http://www.drinksmixer.com/drink10827.html" + "url": "https://www.drinksmixer.com/drink10827.html" }, { "directions": "Stir ingredients together in a highball glass half-filled with ice cubes, and serve.", @@ -102193,7 +102193,7 @@ "iced tea" ], "title": "Nectar of the Gods recipe", - "url": "http://www.drinksmixer.com/drink10828.html" + "url": "https://www.drinksmixer.com/drink10828.html" }, { "directions": "Layer the Jagermeister on top of the sambuca in a shot glass, and serve.", @@ -102202,7 +102202,7 @@ "sambuca" ], "title": "Negropolitan recipe", - "url": "http://www.drinksmixer.com/drink10829.html" + "url": "https://www.drinksmixer.com/drink10829.html" }, { "directions": "Stir ingredients together in a highball glass half-filled with ice cubes, and serve.", @@ -102211,7 +102211,7 @@ "orange soda" ], "title": "Nermish recipe", - "url": "http://www.drinksmixer.com/drink10830.html" + "url": "https://www.drinksmixer.com/drink10830.html" }, { "directions": "Pour the jagermeister into the glass then the creme de bananes over it(using one of many common layering techniques). Serve as is.", @@ -102220,7 +102220,7 @@ "creme de bananes" ], "title": "New Dawn recipe", - "url": "http://www.drinksmixer.com/drink10831.html" + "url": "https://www.drinksmixer.com/drink10831.html" }, { "directions": "Place the mint leaf in a shot glass. Pour the liquors into the glass, stir and serve. ", @@ -102231,7 +102231,7 @@ "mint" ], "title": "Flaming Mouth Wash recipe", - "url": "http://www.drinksmixer.com/drink10832.html" + "url": "https://www.drinksmixer.com/drink10832.html" }, { "directions": "Stir ingredients together with ice cubes or cracked ice in an old-fashioned glass. Garnish with a lemon wedge and drop in a maraschino cherry before serving.", @@ -102241,7 +102241,7 @@ "soda" ], "title": "New Old Fashioned recipe", - "url": "http://www.drinksmixer.com/drink10833.html" + "url": "https://www.drinksmixer.com/drink10833.html" }, { "directions": "Brew a pot of strong black coffee. Add the coffee to a warmed coffee mug and add the Vandermint. Top with a dollop of whipped cream and top that with dark chocolate shavings. Serve.", @@ -102252,7 +102252,7 @@ "chocolate" ], "title": "New York Hot Chocolate recipe", - "url": "http://www.drinksmixer.com/drink10835.html" + "url": "https://www.drinksmixer.com/drink10835.html" }, { "directions": "Shake with ice and strain into a cocktail glass. Garnish with chocolate shavings and serve.", @@ -102262,7 +102262,7 @@ "white creme de cacao" ], "title": "New York Peppermint Patty Cocktail recipe", - "url": "http://www.drinksmixer.com/drink10836.html" + "url": "https://www.drinksmixer.com/drink10836.html" }, { "directions": "Shake the first 5 ingredients and strain into a highball glass filled with ice cubes. Top glass with a small dash of soda. garnish with berries and serve.", @@ -102275,7 +102275,7 @@ "soda" ], "title": "Berry Rum Rickey recipe", - "url": "http://www.drinksmixer.com/drink10837.html" + "url": "https://www.drinksmixer.com/drink10837.html" }, { "directions": "Fill two cocktail glasses with ice water; set aside. Fill a cocktail shaker with ice, add vanilla vodka, creme de cacao, and Frangelico hazelnut liqueur. Shake vigorously. Empty glasses of ice water, and dip edges into a flat dish filled with sweetened cocoa powder. Strain the contents of the cocktail shaker into the 2 cocktail glasses, and add a twist of lemon to each before serving.", @@ -102287,7 +102287,7 @@ "lemon" ], "title": "Chocolate Cake Martini recipe", - "url": "http://www.drinksmixer.com/drink10838.html" + "url": "https://www.drinksmixer.com/drink10838.html" }, { "directions": "Add the vodka and white sambuca to a cocktail shaker with 3 - 4 ice cubes. Shake and strain into a hurricane glass filled with ice cubes. Fill with raspberry lemonade, stir gently and serve.", @@ -102297,7 +102297,7 @@ "raspberry lemonade" ], "title": "Flaming Mr. Fish recipe", - "url": "http://www.drinksmixer.com/drink10839.html" + "url": "https://www.drinksmixer.com/drink10839.html" }, { "directions": "Pour ingredients into a mixing glass half-filled with ice cubes and stir. Pour into a white wine glass, and serve.", @@ -102307,7 +102307,7 @@ "peach schnapps" ], "title": "Mojo's Suntan Lotion recipe", - "url": "http://www.drinksmixer.com/drink10840.html" + "url": "https://www.drinksmixer.com/drink10840.html" }, { "directions": "Combine all ingredients together in a cocktail shaker half-filled with ice cubes. Shake well, strain into a cocktail glass, and serve.", @@ -102318,7 +102318,7 @@ "Sprite\u00ae soda" ], "title": "Nick's Mountain Dew recipe", - "url": "http://www.drinksmixer.com/drink10841.html" + "url": "https://www.drinksmixer.com/drink10841.html" }, { "directions": "Pour the gin and pineapple juice into a highball glass with a few ice cubes. Add a bit of tonic water if desired. Garnish with slices of lemon and orange, and serve.", @@ -102328,7 +102328,7 @@ "tonic water" ], "title": "Nicky's 1 a.m. Sunrise recipe", - "url": "http://www.drinksmixer.com/drink10842.html" + "url": "https://www.drinksmixer.com/drink10842.html" }, { "directions": "Pour ingredients into a highball glass half-filled with ice. Stir, garnish with 2 slices of lemon, and serve.", @@ -102339,7 +102339,7 @@ "fruit punch" ], "title": "Nicky's Dry Jello recipe", - "url": "http://www.drinksmixer.com/drink10843.html" + "url": "https://www.drinksmixer.com/drink10843.html" }, { "directions": "Stir ingredients together with ice cubes in a mixing glass. Strain into a cocktail glass, garnish with a maraschino cherry, and serve.", @@ -102348,7 +102348,7 @@ "Alize\u00ae Gold Passion liqueur" ], "title": "Nicky's Kingpin recipe", - "url": "http://www.drinksmixer.com/drink10844.html" + "url": "https://www.drinksmixer.com/drink10844.html" }, { "directions": "Pour the Ballantine's Scotch whisky into a highball glass half-filled with ice cubes. Add the honey and sugar. Add the juice from one whole lemon, saving a slice or two for garnish. Stir and serve.", @@ -102359,7 +102359,7 @@ "lemon juice" ], "title": "Nicky's Lemonade recipe", - "url": "http://www.drinksmixer.com/drink10845.html" + "url": "https://www.drinksmixer.com/drink10845.html" }, { "directions": "Pour the Tanqueray gin and Hpnotiq liqueur into a highball glass half-filled with ice cubes. Garnish with slices of lemon. Add a little sugar to sweeten only if desired. Stir and serve.", @@ -102368,7 +102368,7 @@ "Hpnotiq\u00ae liqueur" ], "title": "Nicky's Primo recipe", - "url": "http://www.drinksmixer.com/drink10846.html" + "url": "https://www.drinksmixer.com/drink10846.html" }, { "directions": "Pour ingredients over an ice cube in a cocktail glass. Stir, add a maraschino cherry, and serve.", @@ -102378,7 +102378,7 @@ "cranberry ginger ale" ], "title": "Nicky's Red Devil recipe", - "url": "http://www.drinksmixer.com/drink10847.html" + "url": "https://www.drinksmixer.com/drink10847.html" }, { "directions": "Stir ingredients together in a highball glass. Optional; add a small scoop of ice cream, chocolate fudge stirred and mixed, or a healthy dose of whipped cream on top.", @@ -102390,7 +102390,7 @@ "chocolate milk" ], "title": "Nicky's Sweet Tooth recipe", - "url": "http://www.drinksmixer.com/drink10848.html" + "url": "https://www.drinksmixer.com/drink10848.html" }, { "directions": "Put high-quality instant coffee into a blender, and dissolve it using a minimal amount of boiling water. Add whole milk and vanilla ice cream (with chocolate chips where possible). Blend it all together. Add Amarula and stir well. Pour into a hurricane glass and freeze it for about 15-20 minutes. Garnish with whipped cream on top.", @@ -102402,7 +102402,7 @@ "water" ], "title": "Nightwalker recipe", - "url": "http://www.drinksmixer.com/drink10849.html" + "url": "https://www.drinksmixer.com/drink10849.html" }, { "directions": "Mix all the liquid ingredients in a small punch bowl or pitcher. Grate the nutmeg into it, leave for 10 mins then seive out the nutmeg. Add the diced cucumber. Chill before serving.", @@ -102415,7 +102415,7 @@ "cucumber" ], "title": "Nikipumpin Mix recipe", - "url": "http://www.drinksmixer.com/drink10850.html" + "url": "https://www.drinksmixer.com/drink10850.html" }, { "directions": "Pour both ingredients into a brandy snifter. Tilt glass and flame the liquor. When flamed cover it completely so no oxygen escapes (very important). You will feel a suction to the hand, pop your hand off, take the shot, and immediately cover the glass again so no oxygen escapes. Make a slight hole in between your index and thumb, and inhale as much as u can, and hold it. That is the Nitrous Oxide!", @@ -102424,7 +102424,7 @@ "Grand Marnier\u00ae orange liqueur" ], "title": "Nitrous Oxide recipe", - "url": "http://www.drinksmixer.com/drink10851.html" + "url": "https://www.drinksmixer.com/drink10851.html" }, { "directions": "Pour the Captain Morgan spiced rum into a collins glass filled with ice cubes. Fill with 7-Up, stir and serve.", @@ -102433,7 +102433,7 @@ "7-Up\u00ae soda" ], "title": "Nixon recipe", - "url": "http://www.drinksmixer.com/drink10852.html" + "url": "https://www.drinksmixer.com/drink10852.html" }, { "directions": "Stir all ingredients together in an old-fashioned glass half-filled with ice cubes (on the rocks), and serve.", @@ -102443,7 +102443,7 @@ "sweet and sour mix" ], "title": "No Fucking Idea recipe", - "url": "http://www.drinksmixer.com/drink10853.html" + "url": "https://www.drinksmixer.com/drink10853.html" }, { "directions": "Pour the brandy over ice in an old-fashioned glass. Add Dr. Pepper, and serve.", @@ -102452,7 +102452,7 @@ "Dr. Pepper\u00ae soda" ], "title": "No Worries recipe", - "url": "http://www.drinksmixer.com/drink10854.html" + "url": "https://www.drinksmixer.com/drink10854.html" }, { "directions": "Stir ingredients together in a highball glass filled with ice cubes, and serve.", @@ -102461,7 +102461,7 @@ "Minute Maid\u00ae orange juice" ], "title": "Noidish Pancake recipe", - "url": "http://www.drinksmixer.com/drink10855.html" + "url": "https://www.drinksmixer.com/drink10855.html" }, { "directions": "Pour the apple-flavored ingredients into a white wine glass half-filled with ice. Stir well. Top with 7-Up or Sprite, stir lightly and serve.", @@ -102472,7 +102472,7 @@ "7-Up\u00ae soda" ], "title": "Norm the Niner recipe", - "url": "http://www.drinksmixer.com/drink10856.html" + "url": "https://www.drinksmixer.com/drink10856.html" }, { "directions": "Add all ingredients to a large container (60-oz +) and stir well. Chill before serving.", @@ -102482,7 +102482,7 @@ "Minute Maid\u00ae Strawberry Passion juice" ], "title": "Not-for-Granny Smith Apple Punch recipe", - "url": "http://www.drinksmixer.com/drink10857.html" + "url": "https://www.drinksmixer.com/drink10857.html" }, { "directions": "Combine all ingredients together in a cocktail shaker with a few ice cubes. Shake well, strain into a shot glass, and serve.", @@ -102492,7 +102492,7 @@ "sweet and sour mix" ], "title": "Novicain recipe", - "url": "http://www.drinksmixer.com/drink10858.html" + "url": "https://www.drinksmixer.com/drink10858.html" }, { "directions": "Stir ingredients together in a highball glass filled with ice cubes, and serve.", @@ -102502,7 +102502,7 @@ "cranberry juice" ], "title": "NT Pucker Punch Fizz recipe", - "url": "http://www.drinksmixer.com/drink10859.html" + "url": "https://www.drinksmixer.com/drink10859.html" }, { "directions": "Combine the orange juice, blue Curacao liqueur and vodka in a small punch bowl or large pitcher. Chill for about 3 hours until cold. Just before serving, add the ginger ale. Stir gently. Serve over ice. Makes about 8 cups.", @@ -102513,7 +102513,7 @@ "ginger ale" ], "title": "Nuclear Waste #3 recipe", - "url": "http://www.drinksmixer.com/drink10860.html" + "url": "https://www.drinksmixer.com/drink10860.html" }, { "directions": "Stir ingredients together in a collins glass half-filled with ice cubes, and serve.", @@ -102522,7 +102522,7 @@ "Coca-Cola\u00ae Vanilla Coke" ], "title": "Nut Buster recipe", - "url": "http://www.drinksmixer.com/drink10861.html" + "url": "https://www.drinksmixer.com/drink10861.html" }, { "directions": "Shake all ingredients briefly together in a highball glass, and serve.", @@ -102532,7 +102532,7 @@ "Dr. Pepper\u00ae soda" ], "title": "302 recipe", - "url": "http://www.drinksmixer.com/drink10862.html" + "url": "https://www.drinksmixer.com/drink10862.html" }, { "directions": "Layer the Bailey's Irish cream over the butterscotch schnapps in a large shot glass. Add a few drops of grenadine, and serve.", @@ -102542,7 +102542,7 @@ "grenadine syrup" ], "title": "Clit Lickin' Cowgirl recipe", - "url": "http://www.drinksmixer.com/drink10863.html" + "url": "https://www.drinksmixer.com/drink10863.html" }, { "directions": "Combine all ingredients together in a cocktail shaker half-filled with ice cubes. Shake well, strain into shot glasses, and serve.", @@ -102554,7 +102554,7 @@ "pineapple juice" ], "title": "Asia 9.0 recipe", - "url": "http://www.drinksmixer.com/drink10864.html" + "url": "https://www.drinksmixer.com/drink10864.html" }, { "directions": "Stir ingredients together in a pint glass, and serve.", @@ -102566,7 +102566,7 @@ "Archers\u00ae peach schnapps" ], "title": "Bacardi Geezer recipe", - "url": "http://www.drinksmixer.com/drink10865.html" + "url": "https://www.drinksmixer.com/drink10865.html" }, { "directions": "Pour vodka, blue cura\ufffdao and orange juice into a cocktail shaker half-filled with ice cubes, and shake well. Strain into a champagne flute then top with Prosecco wine and serve.", @@ -102577,7 +102577,7 @@ "Prosecco\u00ae sparkling wine" ], "title": "Baldini Blues recipe", - "url": "http://www.drinksmixer.com/drink10866.html" + "url": "https://www.drinksmixer.com/drink10866.html" }, { "directions": "Add all ingredients to a hurricane glass filled with ice cubes. Stir well, add a cherry and serve.", @@ -102588,7 +102588,7 @@ "cranberry juice" ], "title": "Banilla Splash recipe", - "url": "http://www.drinksmixer.com/drink10868.html" + "url": "https://www.drinksmixer.com/drink10868.html" }, { "directions": "Stir ingredients together in a highball glass filled with ice cubes, and serve.", @@ -102598,7 +102598,7 @@ "Sprite\u00ae soda" ], "title": "Blue Dolphin #2 recipe", - "url": "http://www.drinksmixer.com/drink10869.html" + "url": "https://www.drinksmixer.com/drink10869.html" }, { "directions": "Pour Phillip's Butter Ripple schnapps into a highball glass filled with ice cubes. Fill the glass with root beer, and serve.", @@ -102607,7 +102607,7 @@ "A&W\u00ae root beer" ], "title": "Butter Ripple Fantasy recipe", - "url": "http://www.drinksmixer.com/drink10870.html" + "url": "https://www.drinksmixer.com/drink10870.html" }, { "directions": "Stir the McGuinness Creme de Bananes liqueur and the chocolate milk together in an old-fashioned glass half-filled with ice cubes. Garnish with banana slice and serve.", @@ -102617,7 +102617,7 @@ "chocolate milk" ], "title": "Chocolate Banana Fudgsicle recipe", - "url": "http://www.drinksmixer.com/drink10871.html" + "url": "https://www.drinksmixer.com/drink10871.html" }, { "directions": "Combine all ingredients in an iced cocktail shaker. Shake vigorously then strain into a cocktail glass (sugared rim optional) and garnish with a lime wedge before serving.", @@ -102628,7 +102628,7 @@ "cranberry juice" ], "title": "Clint's Cosmopolitan recipe", - "url": "http://www.drinksmixer.com/drink10872.html" + "url": "https://www.drinksmixer.com/drink10872.html" }, { "directions": "Combine all ingredients with some crushed ice in a blender. Blend for 2 minuets. Pour into a cocktail glass and garnish with dessicated coconut and fruit identical to the flavor of the ice-cream.", @@ -102638,7 +102638,7 @@ "ice cream" ], "title": "Cream Samba recipe", - "url": "http://www.drinksmixer.com/drink10873.html" + "url": "https://www.drinksmixer.com/drink10873.html" }, { "directions": "Stir ingredients together in a collins glass filled with ice cubes, and serve. ", @@ -102650,7 +102650,7 @@ "Coca-Cola\u00ae" ], "title": "Devil Juice recipe", - "url": "http://www.drinksmixer.com/drink10874.html" + "url": "https://www.drinksmixer.com/drink10874.html" }, { "directions": "Drink or pour out a couple oz of the Dr. Pepper (down to bottom of the buldge of a 20-oz bottle) then top off with Dr. McG's. If your soda isn't cold, the drink can be poured over ice, but it's better cold and straight up.", @@ -102659,7 +102659,7 @@ "Dr. Mcgillicuddy's\u00ae Vanilla Schnapps" ], "title": "Dr. Feelgood recipe", - "url": "http://www.drinksmixer.com/drink10875.html" + "url": "https://www.drinksmixer.com/drink10875.html" }, { "directions": "Pour the gin into a highball glass filled with ice cubes. Almost fill with tonic water and top with grenadine syrup. Stir, garnish with maraschino cherries, and serve.", @@ -102669,7 +102669,7 @@ "grenadine syrup" ], "title": "Erin's Gin & Tonic recipe", - "url": "http://www.drinksmixer.com/drink10876.html" + "url": "https://www.drinksmixer.com/drink10876.html" }, { "directions": "Stir ingredients together in an old-fashioned or rocks glass filled with ice cubes, and serve.", @@ -102679,7 +102679,7 @@ "cranberry juice" ], "title": "Fruity Pebble #2 recipe", - "url": "http://www.drinksmixer.com/drink10877.html" + "url": "https://www.drinksmixer.com/drink10877.html" }, { "directions": "Stir ingredients together in a collins glass 3/4 filled with ice cubes, and serve.", @@ -102688,7 +102688,7 @@ "Dole Pine-Orange-Banana Juice" ], "title": "Grey Goose Driver recipe", - "url": "http://www.drinksmixer.com/drink10879.html" + "url": "https://www.drinksmixer.com/drink10879.html" }, { "directions": "Stir ingredients together in a highball glass, and serve.", @@ -102698,7 +102698,7 @@ "Red Bull\u00ae energy drink" ], "title": "Hennessy, Apple and Red recipe", - "url": "http://www.drinksmixer.com/drink10880.html" + "url": "https://www.drinksmixer.com/drink10880.html" }, { "directions": "Shake with cracked ice and strain into a chilled cocktail glass. Garnish with an olive, and serve.", @@ -102709,7 +102709,7 @@ "cranberry juice" ], "title": "Key Westtini recipe", - "url": "http://www.drinksmixer.com/drink10881.html" + "url": "https://www.drinksmixer.com/drink10881.html" }, { "directions": "Assemble all ingredients in a mixing glass with ice and shake vigorously. Strain into a chilled margarita glass with a blend of salt and sugar (colored salt optional) on the rim of the glass. Garnish with fresh cranberries and lemon peel, and serve.", @@ -102722,7 +102722,7 @@ "cranberry juice" ], "title": "Marcelita recipe", - "url": "http://www.drinksmixer.com/drink10883.html" + "url": "https://www.drinksmixer.com/drink10883.html" }, { "directions": "Pour all ingredients into a cocktail shaker with 3 - 4 ice cubes. Shake well, strain into a shot glass, and serve.", @@ -102733,7 +102733,7 @@ "single cream" ], "title": "Nuttier Russian recipe", - "url": "http://www.drinksmixer.com/drink10884.html" + "url": "https://www.drinksmixer.com/drink10884.html" }, { "directions": "Pour the Merlot and Pinot Grigio and ginger ale (or sprite) into a mixing glass half-filled with ice cubes. Add Stolichnaya vodka, Amaretto Di Saronno liqueur and Alize cognac. Shake gently. Pour into a collins glass half-filled with ice cubes. Top off with Grand Marnier orange liqueur, and serve.", @@ -102747,7 +102747,7 @@ "Grand Marnier\u00ae orange liqueur" ], "title": "Nutty Bartender recipe", - "url": "http://www.drinksmixer.com/drink10885.html" + "url": "https://www.drinksmixer.com/drink10885.html" }, { "directions": "Pour the Father O'Leary's Velvet and Butterscotch Cream liqueurs, and the cream, over ice in a cocktail shaker half-filled with ice cubes. Shake well. Add half a part of Frangelico hazelnut liqueur. Shake and strain into a cocktail glass, and serve.", @@ -102758,7 +102758,7 @@ "cream" ], "title": "Nutty Nipple recipe", - "url": "http://www.drinksmixer.com/drink10886.html" + "url": "https://www.drinksmixer.com/drink10886.html" }, { "directions": "Pour Captain Morgan's Tattoo orange rum and sour mix into a cocktail shaker half-filled with ice cubes. Shake and pour contents into a highball glass. Top with root beer, stir lightly and serve.", @@ -102768,7 +102768,7 @@ "sweet and sour mix" ], "title": "Nypaver's Black Sherbert recipe", - "url": "http://www.drinksmixer.com/drink10887.html" + "url": "https://www.drinksmixer.com/drink10887.html" }, { "directions": "Pour the can of Amp energy drink into a tall glass. Add the Bacardi O rum (more or less acccording to taste), and serve. ", @@ -102777,7 +102777,7 @@ "Bacardi\u00ae O rum" ], "title": "O Thing recipe", - "url": "http://www.drinksmixer.com/drink10888.html" + "url": "https://www.drinksmixer.com/drink10888.html" }, { "directions": "Stir ingredients together in a shot glass, and serve.", @@ -102786,7 +102786,7 @@ "olive juice" ], "title": "O-Brye recipe", - "url": "http://www.drinksmixer.com/drink10889.html" + "url": "https://www.drinksmixer.com/drink10889.html" }, { "directions": "Combine all ingredients together in a cocktail shaker half-filled with ice cubes. Shake and strain into a hurricane glass filled with ice cubes, and serve.", @@ -102799,7 +102799,7 @@ "7-Up\u00ae soda" ], "title": "Oasis #2 recipe", - "url": "http://www.drinksmixer.com/drink10890.html" + "url": "https://www.drinksmixer.com/drink10890.html" }, { "directions": "Combine all ingredients together in a large shot glass or small rocks glass. Stir and serve.", @@ -102810,7 +102810,7 @@ "Wild Turkey\u00ae 101 bourbon whiskey" ], "title": ".46 Magnum recipe", - "url": "http://www.drinksmixer.com/drink10891.html" + "url": "https://www.drinksmixer.com/drink10891.html" }, { "directions": "Pour the Hennessy cognac over ice cubes in a collins glass. Fill with Vanilla Coke, stir lightly and serve.", @@ -102819,7 +102819,7 @@ "Coca-Cola\u00ae Vanilla Coke" ], "title": "Andy's Drink recipe", - "url": "http://www.drinksmixer.com/drink10892.html" + "url": "https://www.drinksmixer.com/drink10892.html" }, { "directions": "Stir ingredients together in a champagne tulip glass, and serve.", @@ -102830,7 +102830,7 @@ "grenadine syrup" ], "title": "Beef Curtains recipe", - "url": "http://www.drinksmixer.com/drink10893.html" + "url": "https://www.drinksmixer.com/drink10893.html" }, { "directions": "Stir ingredients together in a shot glass, and serve.", @@ -102839,7 +102839,7 @@ "Johnnie Walker\u00ae Black Label Scotch whisky" ], "title": "Black Haze recipe", - "url": "http://www.drinksmixer.com/drink10894.html" + "url": "https://www.drinksmixer.com/drink10894.html" }, { "directions": "Pour Jim Beam bourbon whiskey over roughly 3 ice cubes in an old-fashioned glass. Add Coca-cola until the glass is nearly full, then add cherry grenadine. Mix together with a straw, and serve.", @@ -102849,7 +102849,7 @@ "Coca-Cola\u00ae" ], "title": "Bloody Jim recipe", - "url": "http://www.drinksmixer.com/drink10895.html" + "url": "https://www.drinksmixer.com/drink10895.html" }, { "directions": "Stir ingredients together in a shot glass, and serve.", @@ -102859,7 +102859,7 @@ "Jagermeister\u00ae herbal liqueur" ], "title": "Cowboy Killer recipe", - "url": "http://www.drinksmixer.com/drink10896.html" + "url": "https://www.drinksmixer.com/drink10896.html" }, { "directions": "Build ingredients in above order in a shot glass, and slam.", @@ -102869,7 +102869,7 @@ "Dr. Pepper\u00ae soda" ], "title": "Dr. Rum recipe", - "url": "http://www.drinksmixer.com/drink10897.html" + "url": "https://www.drinksmixer.com/drink10897.html" }, { "directions": "Shake with ice, strain into a chilled cocktail glass, and serve.", @@ -102879,7 +102879,7 @@ "orange juice" ], "title": "Fuzzy Monkey #2 recipe", - "url": "http://www.drinksmixer.com/drink10898.html" + "url": "https://www.drinksmixer.com/drink10898.html" }, { "directions": "Stir ingredients together in a collins glass filled with ice cubes, and serve.", @@ -102888,7 +102888,7 @@ "Gatorade\u00ae energy drink" ], "title": "GatorBeam recipe", - "url": "http://www.drinksmixer.com/drink10899.html" + "url": "https://www.drinksmixer.com/drink10899.html" }, { "directions": "Pour the Kahlua coffee liqueur into a frosted (note: important) brandy snifter glass. Add the gin, and mix well. Drizzle the hot melted chocolate over the drink, being sure to let it slightly drip onto the side of the glass. Do not mix. Serve.", @@ -102898,7 +102898,7 @@ "chocolate" ], "title": "Greenbrier Creek recipe", - "url": "http://www.drinksmixer.com/drink10900.html" + "url": "https://www.drinksmixer.com/drink10900.html" }, { "directions": "Combine all ingredients (except cola) in a cocktail shaker half-filled with ice cubes, and shake well. Strain over ice in a collins glass, top with cola, and serve.", @@ -102912,7 +102912,7 @@ "Coca-Cola\u00ae" ], "title": "Island Jim recipe", - "url": "http://www.drinksmixer.com/drink10901.html" + "url": "https://www.drinksmixer.com/drink10901.html" }, { "directions": "Stir all ingredients together in a large shot glass, and serve.", @@ -102923,7 +102923,7 @@ "Midori\u00ae melon liqueur" ], "title": "Jim and Jill Went Up the Hill recipe", - "url": "http://www.drinksmixer.com/drink10902.html" + "url": "https://www.drinksmixer.com/drink10902.html" }, { "directions": "Stir ingredients together in a double-shot glass, and serve.", @@ -102934,7 +102934,7 @@ "Jose Cuervo\u00ae Especial gold tequila" ], "title": "Jim the Destroyer recipe", - "url": "http://www.drinksmixer.com/drink10903.html" + "url": "https://www.drinksmixer.com/drink10903.html" }, { "directions": "Combine all ingredients together in a large shot glass, stir and serve.", @@ -102944,7 +102944,7 @@ "Romana\u00ae black sambuca" ], "title": "Jimmy Conway recipe", - "url": "http://www.drinksmixer.com/drink10904.html" + "url": "https://www.drinksmixer.com/drink10904.html" }, { "directions": "Mix all the ingredients together in a huge vat and stir with a big cauldron stick, great for college and frat parties.", @@ -102957,7 +102957,7 @@ "Hawaiian Punch\u00ae" ], "title": "Jimmy Hendrix recipe", - "url": "http://www.drinksmixer.com/drink10905.html" + "url": "https://www.drinksmixer.com/drink10905.html" }, { "directions": "Pour the Jim Beam bourbon whiskey into a large collins glass half-filled with ice cubes. Add a can of Nestea peach iced tea. Stir and serve.", @@ -102966,7 +102966,7 @@ "Nestea\u00ae peach iced tea" ], "title": "Jimmy's Heaven recipe", - "url": "http://www.drinksmixer.com/drink10906.html" + "url": "https://www.drinksmixer.com/drink10906.html" }, { "directions": "Combine all ingredients together in a 1.5-oz shot glass, and serve.", @@ -102976,7 +102976,7 @@ "Bacardi\u00ae dark rum" ], "title": "Liquid Angel Dust recipe", - "url": "http://www.drinksmixer.com/drink10908.html" + "url": "https://www.drinksmixer.com/drink10908.html" }, { "directions": "Add all ingredients to a cocktail shaker with a few ice cubes. Shake well, strain into shot glasses, and serve.", @@ -102988,7 +102988,7 @@ "Midori\u00ae melon liqueur" ], "title": "Liquid Machete recipe", - "url": "http://www.drinksmixer.com/drink10909.html" + "url": "https://www.drinksmixer.com/drink10909.html" }, { "directions": "Stir ingredients together in a double-shot glass, and serve.", @@ -102999,7 +102999,7 @@ "Gordon's\u00ae gin" ], "title": "Loch Ness Demon recipe", - "url": "http://www.drinksmixer.com/drink10910.html" + "url": "https://www.drinksmixer.com/drink10910.html" }, { "directions": "Pour the Goldschlager cinnamon schnapps into the bottom of a 1.5-oz shot glass. Add the DeKuyper Buttershots butterscotch liqueur, float the Bailey's Irish cream on top, and serve.", @@ -103009,7 +103009,7 @@ "Bailey's\u00ae Irish cream" ], "title": "Oatmeal Cinnamon Cookie recipe", - "url": "http://www.drinksmixer.com/drink10911.html" + "url": "https://www.drinksmixer.com/drink10911.html" }, { "directions": "Stir ingredients together in an aperitif glass, and serve.", @@ -103018,7 +103018,7 @@ "DeKuyper\u00ae Buttershots liqueur" ], "title": "Oatmeal Cookie #2 recipe", - "url": "http://www.drinksmixer.com/drink10912.html" + "url": "https://www.drinksmixer.com/drink10912.html" }, { "directions": "Add all ingredients to a cocktail shaker. Shake and strain into shot glasses, and serve.", @@ -103029,7 +103029,7 @@ "Bailey's\u00ae Irish cream" ], "title": "Oatmeal Cookie Rummy recipe", - "url": "http://www.drinksmixer.com/drink10913.html" + "url": "https://www.drinksmixer.com/drink10913.html" }, { "directions": "Add all liquors and sour mix to a large cocktail glass filled with ice, stir and serve.", @@ -103044,7 +103044,7 @@ "sweet and sour mix" ], "title": "The Marvin recipe", - "url": "http://www.drinksmixer.com/drink10914.html" + "url": "https://www.drinksmixer.com/drink10914.html" }, { "directions": "Get a 5 gallon water keg (you can buy one at a retail store). Fill it up 3/4 with ice. Add all liquids. Stir well (with arm for flavor), and serve up.", @@ -103055,7 +103055,7 @@ "orange juice" ], "title": "Uncle Ron's Goombay Smash recipe", - "url": "http://www.drinksmixer.com/drink10915.html" + "url": "https://www.drinksmixer.com/drink10915.html" }, { "directions": "Boil the sugar and water in a bowl. Chill for 20 minutes.\r", @@ -103068,7 +103068,7 @@ "sugar" ], "title": "3 for a Dollar Special recipe", - "url": "http://www.drinksmixer.com/drink10916.html" + "url": "https://www.drinksmixer.com/drink10916.html" }, { "directions": "First pour the Rumple Minze into a chilled shot glass. Now carefully add the Tabasco using a spoon. The idea is to form a even layer of Tabasco on the Rumple Minze without actually mixing them. Add the tequila on top and shoot.", @@ -103078,7 +103078,7 @@ "Tabasco\u00ae sauce" ], "title": "A Tender Touch recipe", - "url": "http://www.drinksmixer.com/drink10918.html" + "url": "https://www.drinksmixer.com/drink10918.html" }, { "directions": "Pour all ingredients into a cocktail shaker half-filled with ice cubes. Shake well, strain into a highball glass 3/4 filled with ice cubes, and serve.", @@ -103090,7 +103090,7 @@ "creme de bananes" ], "title": "Absolut Anti-freeze #2 recipe", - "url": "http://www.drinksmixer.com/drink10919.html" + "url": "https://www.drinksmixer.com/drink10919.html" }, { "directions": "Pour ingredients over ice cubes in a tall glass, stir and serve.", @@ -103099,7 +103099,7 @@ "Captain Morgan\u00ae Parrot Bay coconut rum" ], "title": "Adrenaline Rush recipe", - "url": "http://www.drinksmixer.com/drink10920.html" + "url": "https://www.drinksmixer.com/drink10920.html" }, { "directions": "Shake all ingredients together in a cocktail shaker with a few ice cubes. Strain into a whiskey sour glass, and serve.", @@ -103110,7 +103110,7 @@ "lemon juice" ], "title": "Alexander Young recipe", - "url": "http://www.drinksmixer.com/drink10921.html" + "url": "https://www.drinksmixer.com/drink10921.html" }, { "directions": "Shake ingredients together with a few ice cubes and serve straight up with a twist of lemon in a cocktail glass.", @@ -103119,7 +103119,7 @@ "vodka" ], "title": "Alize Bleu Bling Martini recipe", - "url": "http://www.drinksmixer.com/drink10922.html" + "url": "https://www.drinksmixer.com/drink10922.html" }, { "directions": "Pour the amaretto almond liqueur into a highball glass. Pour milk or cream into the glass until the glass is 2/3rds the way full. Top off the glass with Pepsi and serve.", @@ -103129,7 +103129,7 @@ "Pepsi\u00ae cola" ], "title": "Almond Amaretto Float recipe", - "url": "http://www.drinksmixer.com/drink10923.html" + "url": "https://www.drinksmixer.com/drink10923.html" }, { "directions": "Add all the ingredients except the champagne to a cocktail shaker with some crushed ice. Shake well. Pour the champagne into a cocktail glass. Add the mixture, garnish it with some mint leaves, and serve.", @@ -103141,7 +103141,7 @@ "orange juice" ], "title": "Amsterdamned recipe", - "url": "http://www.drinksmixer.com/drink10924.html" + "url": "https://www.drinksmixer.com/drink10924.html" }, { "directions": "Pour all ingredients into an extremely large container or bucket. Mix together and serve at your nearest party. ", @@ -103159,7 +103159,7 @@ "grapes" ], "title": "An Orgy of Liquors recipe", - "url": "http://www.drinksmixer.com/drink10925.html" + "url": "https://www.drinksmixer.com/drink10925.html" }, { "directions": "Shake ingredients with a couple ice cubes in a cocktail shaker. Strain into a shot glass, and serve. ", @@ -103168,7 +103168,7 @@ "Southern Comfort\u00ae peach liqueur" ], "title": "Angel Piss recipe", - "url": "http://www.drinksmixer.com/drink10926.html" + "url": "https://www.drinksmixer.com/drink10926.html" }, { "directions": "Combine ingredients in a blender for 2 minutes, and serve.", @@ -103178,7 +103178,7 @@ "sugar" ], "title": "Apple and Starfruit Juice recipe", - "url": "http://www.drinksmixer.com/drink10927.html" + "url": "https://www.drinksmixer.com/drink10927.html" }, { "directions": "Pour the Smirnoff Green Apple vodka into a highball glass. Add the Red Bull (pre-chilled), and serve.", @@ -103187,7 +103187,7 @@ "Red Bull\u00ae energy drink" ], "title": "Apple Bomb recipe", - "url": "http://www.drinksmixer.com/drink10928.html" + "url": "https://www.drinksmixer.com/drink10928.html" }, { "directions": "Blend ingredients together in a mixing glass. Serve on the rocks in a cocktail glass.", @@ -103196,7 +103196,7 @@ "apple juice" ], "title": "Apple Jim recipe", - "url": "http://www.drinksmixer.com/drink10929.html" + "url": "https://www.drinksmixer.com/drink10929.html" }, { "directions": "Add ingredients to a cocktail shaker shaker half-filled with ice cubes. Shake well. Strain into cocktail glass, and serve.", @@ -103206,7 +103206,7 @@ "sweet and sour mix" ], "title": "Apple Martini #2 recipe", - "url": "http://www.drinksmixer.com/drink10930.html" + "url": "https://www.drinksmixer.com/drink10930.html" }, { "directions": "Combine ingredients together in a tall glass filled with ice cubes. Garnish with a fresh lime and a mint sprig, and serve.", @@ -103216,7 +103216,7 @@ "Rose's\u00ae lime juice" ], "title": "ApriJim Nectar recipe", - "url": "http://www.drinksmixer.com/drink10931.html" + "url": "https://www.drinksmixer.com/drink10931.html" }, { "directions": "Stir all ingredients together in a large punch bowl and freeze until ready to serve.", @@ -103231,7 +103231,7 @@ "food coloring" ], "title": "Arctic Punch recipe", - "url": "http://www.drinksmixer.com/drink10932.html" + "url": "https://www.drinksmixer.com/drink10932.html" }, { "directions": "Pour Jim Beam whiskey over ice in a collins glass. Fill with Arizona iced tea, and serve.", @@ -103240,7 +103240,7 @@ "AriZona\u00ae iced tea" ], "title": "Arizona Jim recipe", - "url": "http://www.drinksmixer.com/drink10933.html" + "url": "https://www.drinksmixer.com/drink10933.html" }, { "directions": "Pour all ingredients except grenadine into a cocktail shaker half-filled with ice cubes. Shake well and strain into a hurricane glass filled with ice cubes. Add grenadine, and serve.", @@ -103255,7 +103255,7 @@ "grenadine syrup" ], "title": "AsiaToo recipe", - "url": "http://www.drinksmixer.com/drink10934.html" + "url": "https://www.drinksmixer.com/drink10934.html" }, { "directions": "Pour Bacardi Limon rum straight into a collins glass half-filled with ice cubes. Add Minute Maid pink lemonade. Stir with a straw, and serve.", @@ -103264,7 +103264,7 @@ "Minute Maid\u00ae pink lemonade" ], "title": "Bacardi Pink recipe", - "url": "http://www.drinksmixer.com/drink10935.html" + "url": "https://www.drinksmixer.com/drink10935.html" }, { "directions": "Combine cocunut rum and melon liqueur together in a cocktail shaker with a few ice cubes. Add the sweet and sour mix and pineapple juice to taste. Shake well. Strain into a cocktail glass. Add the banana schnapps, and serve.", @@ -103276,7 +103276,7 @@ "pineapple juice" ], "title": "Banana Lifesaver recipe", - "url": "http://www.drinksmixer.com/drink10936.html" + "url": "https://www.drinksmixer.com/drink10936.html" }, { "directions": "Combine all whiskies in a shot glass, top with grenadine last and stir.", @@ -103287,7 +103287,7 @@ "grenadine syrup" ], "title": "Beam Me Up Jimmy recipe", - "url": "http://www.drinksmixer.com/drink10937.html" + "url": "https://www.drinksmixer.com/drink10937.html" }, { "directions": "Stir together in a highball glass, and serve.", @@ -103297,7 +103297,7 @@ "Red Bull\u00ae energy drink" ], "title": "Beast Juice recipe", - "url": "http://www.drinksmixer.com/drink10938.html" + "url": "https://www.drinksmixer.com/drink10938.html" }, { "directions": "Mix all ingredients except the lager in a blender with ice. Pour into a large pilsner/pint glass, then add the Corona (which should be chilled) over the top. Garnish with a slice of lime, and serve.", @@ -103308,7 +103308,7 @@ "Corona\u00ae lager" ], "title": "Beergarita recipe", - "url": "http://www.drinksmixer.com/drink10939.html" + "url": "https://www.drinksmixer.com/drink10939.html" }, { "directions": "Combine ingredients together in a blender with ice; blend well. Pour into a Champagne flute, and serve.", @@ -103317,7 +103317,7 @@ "peach" ], "title": "Bellini #3 recipe", - "url": "http://www.drinksmixer.com/drink10940.html" + "url": "https://www.drinksmixer.com/drink10940.html" }, { "directions": "Pour the Apfelkorn and Bacardi Breezer over 3 ice cubes in a whiskey sour glass, stir, and serve.", @@ -103326,7 +103326,7 @@ "Bacardi Breezer\u00ae Lime" ], "title": "Bertiebreezer recipe", - "url": "http://www.drinksmixer.com/drink10941.html" + "url": "https://www.drinksmixer.com/drink10941.html" }, { "directions": "Stir ingredients with a few ice cubes in a mixing glass. Strain into a 2-oz shot glass, and serve.", @@ -103338,7 +103338,7 @@ "sweet and sour mix" ], "title": "Big Comfy Couch recipe", - "url": "http://www.drinksmixer.com/drink10942.html" + "url": "https://www.drinksmixer.com/drink10942.html" }, { "directions": "Add about 4 ice cubes to an old fashioned glass. Add the amaretto, tequila, and whiskey sour mix, then Pepsi. Garnish with an umbrella and serve.", @@ -103349,7 +103349,7 @@ "whisky sour mix" ], "title": "Big Titty Ho on a Motorcycle recipe", - "url": "http://www.drinksmixer.com/drink10944.html" + "url": "https://www.drinksmixer.com/drink10944.html" }, { "directions": "Stir all ingredients together in an old-fashioned glass on the rocks, and serve.", @@ -103360,7 +103360,7 @@ "Sprite\u00ae soda" ], "title": "Bighorn recipe", - "url": "http://www.drinksmixer.com/drink10945.html" + "url": "https://www.drinksmixer.com/drink10945.html" }, { "directions": "Pour both ingredients into a beer mug, stir lightly and serve.", @@ -103369,7 +103369,7 @@ "Jim Beam\u00ae bourbon whiskey" ], "title": "Bill Murray and The Ghostbusters recipe", - "url": "http://www.drinksmixer.com/drink10946.html" + "url": "https://www.drinksmixer.com/drink10946.html" }, { "directions": "Pour Jim Beam whiskey into a collins glass filled with ice cubes. Fill with birch beer, stir lightly and serve.", @@ -103378,7 +103378,7 @@ "birch beer" ], "title": "Birch Beam recipe", - "url": "http://www.drinksmixer.com/drink10948.html" + "url": "https://www.drinksmixer.com/drink10948.html" }, { "directions": "Combine ingredients in a cocktail shaker with a few ice cubes. Shake vigorously until chilled. Strain into a whiskey sour glass and serve.", @@ -103388,7 +103388,7 @@ "Red Bull\u00ae energy drink" ], "title": "Black Death #4 recipe", - "url": "http://www.drinksmixer.com/drink10949.html" + "url": "https://www.drinksmixer.com/drink10949.html" }, { "directions": "Pour the Bacardi 151 into a shot glass. Add the Chartreuse and softly pour the Frangelico liqueur on top for a cloudy efffect before serving.", @@ -103398,7 +103398,7 @@ "Frangelico\u00ae hazelnut liqueur" ], "title": "Black Rose #2 recipe", - "url": "http://www.drinksmixer.com/drink10950.html" + "url": "https://www.drinksmixer.com/drink10950.html" }, { "directions": "Pour the vodka and Kahlua coffee liqueur into a mixing glass with a few ice cubes and stir well. Pour that and the Coca-cola into an old-fashioned glass, and stir. Pour Guinness on top from a height to create a creamy head, and serve.", @@ -103409,7 +103409,7 @@ "Guinness\u00ae stout" ], "title": "Black Russian #4 recipe", - "url": "http://www.drinksmixer.com/drink10951.html" + "url": "https://www.drinksmixer.com/drink10951.html" }, { "directions": "Pour both the Jack Daniels and black sambuca into a shot glass in equal parts, and shoot.", @@ -103418,7 +103418,7 @@ "black sambuca" ], "title": "Black Sabbath #2 recipe", - "url": "http://www.drinksmixer.com/drink10952.html" + "url": "https://www.drinksmixer.com/drink10952.html" }, { "directions": "Stir ingredients together in a cocktail shaker over ice. Strain into a shot glass, and serve.", @@ -103428,7 +103428,7 @@ "Absolut\u00ae Kurant vodka" ], "title": "Blackberry Lane recipe", - "url": "http://www.drinksmixer.com/drink10953.html" + "url": "https://www.drinksmixer.com/drink10953.html" }, { "directions": "Pour both ingredients into a Champagne flute filled with crushed or shaven ice. Add more syrup if necessary to obtain a blood red complexion, and serve.", @@ -103437,7 +103437,7 @@ "raspberry syrup" ], "title": "Blood recipe", - "url": "http://www.drinksmixer.com/drink10954.html" + "url": "https://www.drinksmixer.com/drink10954.html" }, { "directions": "Combine all ingredients in a large glass. Garnish with a radish or a celery stick, and serve.", @@ -103451,7 +103451,7 @@ "hot pepper sauce" ], "title": "Bloody Demon From Hell recipe", - "url": "http://www.drinksmixer.com/drink10955.html" + "url": "https://www.drinksmixer.com/drink10955.html" }, { "directions": "Stir ingredients together in a shot glass, and serve.", @@ -103461,7 +103461,7 @@ "grenadine syrup" ], "title": "Bloody Tampon #2 recipe", - "url": "http://www.drinksmixer.com/drink10956.html" + "url": "https://www.drinksmixer.com/drink10956.html" }, { "directions": "Add the vodka, peaches and pink lemonade to a blender. Fill the rest of the blender up with ice; blend well. Pour into cocktail glasses, and serve.", @@ -103471,7 +103471,7 @@ "pink lemonade" ], "title": "Bloomer Dropper recipe", - "url": "http://www.drinksmixer.com/drink10957.html" + "url": "https://www.drinksmixer.com/drink10957.html" }, { "directions": "Stir all ingredients together in a large punch bowl with a large block of ice.", @@ -103481,7 +103481,7 @@ "Faygo\u00ae Twist soda" ], "title": "Blue Haze recipe", - "url": "http://www.drinksmixer.com/drink10959.html" + "url": "https://www.drinksmixer.com/drink10959.html" }, { "directions": "Mix equal parts of DeKuyper's Island Blue Pucker and Dekuyper's Watermelon Pucker in a shot glass, and serve.", @@ -103490,7 +103490,7 @@ "DeKuyper\u00ae Watermelon Pucker schnapps" ], "title": "Blue Hooter recipe", - "url": "http://www.drinksmixer.com/drink10960.html" + "url": "https://www.drinksmixer.com/drink10960.html" }, { "directions": "Pour all ingredients into a cocktail shaker half-filled with ice cubes. Shake well, strain into a highball glass half-filled with ice cubes, and serve.", @@ -103501,7 +103501,7 @@ "pineapple juice" ], "title": "Bobby's Way recipe", - "url": "http://www.drinksmixer.com/drink10962.html" + "url": "https://www.drinksmixer.com/drink10962.html" }, { "directions": "Pour the cachaca into a shot glass unchilled. Add the grenadine drops and serve.", @@ -103510,7 +103510,7 @@ "grenadine syrup" ], "title": "Bombeirinho recipe", - "url": "http://www.drinksmixer.com/drink10963.html" + "url": "https://www.drinksmixer.com/drink10963.html" }, { "directions": "Combine all ingredients except cinnamon in a blender and blend at high speed until smooth. Pour into a chilled margarita glass. Sprinkle the top with cinnamon, and serve.", @@ -103522,7 +103522,7 @@ "cinnamon" ], "title": "Border Patrol recipe", - "url": "http://www.drinksmixer.com/drink10964.html" + "url": "https://www.drinksmixer.com/drink10964.html" }, { "directions": "Build ingredients in order listed in a highball glass, Coca-cola on top, and serve.", @@ -103533,7 +103533,7 @@ "Coca-Cola\u00ae" ], "title": "Brazilian Bitch recipe", - "url": "http://www.drinksmixer.com/drink10965.html" + "url": "https://www.drinksmixer.com/drink10965.html" }, { "directions": "Add the beer and rum to a pint glass. Fill with spicy clamato juice. Sprinkle clamato rimmer on top, and serve.", @@ -103543,7 +103543,7 @@ "clamato juice" ], "title": "Brian's Beaver Juice recipe", - "url": "http://www.drinksmixer.com/drink10966.html" + "url": "https://www.drinksmixer.com/drink10966.html" }, { "directions": "Layer ingredients in order in a shot glass, and serve.", @@ -103552,7 +103552,7 @@ "Bailey's\u00ae Irish cream" ], "title": "Brown Eyed Girl recipe", - "url": "http://www.drinksmixer.com/drink10967.html" + "url": "https://www.drinksmixer.com/drink10967.html" }, { "directions": "Fill an old-fashioned glass with ice cubes. Add the vodka, Kahlua coffee liqueur, creme de bananes and creme de cacao. Add milk until glass is full. Pour mixture into blender and blend until smooth. Return to glass and serve.", @@ -103564,7 +103564,7 @@ "milk" ], "title": "Buffalo's Milk recipe", - "url": "http://www.drinksmixer.com/drink10968.html" + "url": "https://www.drinksmixer.com/drink10968.html" }, { "directions": "Stir ingredients together in a punch bowl, and serve.", @@ -103575,7 +103575,7 @@ "Kool-Aid\u00ae Cherry mix" ], "title": "Bullfrog #4 recipe", - "url": "http://www.drinksmixer.com/drink10969.html" + "url": "https://www.drinksmixer.com/drink10969.html" }, { "directions": "Fill a collins glass with ice cubes. Pour in the vodka, Chambord raspberry liqueur, Kahlua coffee liqueur and Irish cream. Stir, then fill up the glass with equal portions of milk and Dr. Pepper soda. Stir again and serve.", @@ -103588,7 +103588,7 @@ "Dr. Pepper\u00ae soda" ], "title": "Burberry Bulldog recipe", - "url": "http://www.drinksmixer.com/drink10970.html" + "url": "https://www.drinksmixer.com/drink10970.html" }, { "directions": "Pour the Jose Cuervo tequila, Southern Comfort peach liqueur, Captain Morgan spiced rum and Kahlua coffee liqueur into a beer mug. Add hot sauce and an extremely hot cup of coffee, then top with Bacardi and serve.", @@ -103602,7 +103602,7 @@ "Bacardi\u00ae white rum" ], "title": "Burning Demon Piss recipe", - "url": "http://www.drinksmixer.com/drink10971.html" + "url": "https://www.drinksmixer.com/drink10971.html" }, { "directions": "Add all three ingredients to a cocktail shaker with a few ice cubes. Shake well, strain into a chilled cocktail glass, and serve.", @@ -103612,7 +103612,7 @@ "Kahlua\u00ae coffee liqueur" ], "title": "Buttsniffer recipe", - "url": "http://www.drinksmixer.com/drink10972.html" + "url": "https://www.drinksmixer.com/drink10972.html" }, { "directions": "Fill a shot glass half with triple sec, half mandarin vodka; then drop into a pint glass half-filled with Rockstar energy drink, and serve.", @@ -103622,7 +103622,7 @@ "Rockstar\u00ae energy drink" ], "title": "Cactus Cooler recipe", - "url": "http://www.drinksmixer.com/drink10973.html" + "url": "https://www.drinksmixer.com/drink10973.html" }, { "directions": "Fill a highball glass almost completely with ice cubes or cracked ice. Add the Captain Morgan spiced rum, Coca-cola and Sprite. Stir and serve.", @@ -103632,7 +103632,7 @@ "Sprite\u00ae soda" ], "title": "Captain Defender recipe", - "url": "http://www.drinksmixer.com/drink10975.html" + "url": "https://www.drinksmixer.com/drink10975.html" }, { "directions": "Mix Captain Morgan spiced rum, Yukon Jack whisky and Malibu coconut rum together in a whiskey sour glass over ice. Add a splash of lime juice, top with ginger ale, and serve.", @@ -103644,7 +103644,7 @@ "ginger ale" ], "title": "Captain Jack Sparrow #4 recipe", - "url": "http://www.drinksmixer.com/drink10976.html" + "url": "https://www.drinksmixer.com/drink10976.html" }, { "directions": "Combine vodka, clamato juice, horseradish, lime juice, celery salt, Worcestershire sauce and Tabasco sauce in a cocktail shaker half-filled with ice cubes. Shake well, and strain into a highball glass half-filled with ice cubes. Top with cracked black pepper, garnish with a squid and serve.", @@ -103661,7 +103661,7 @@ "celery salt" ], "title": "Captain Nemo recipe", - "url": "http://www.drinksmixer.com/drink10977.html" + "url": "https://www.drinksmixer.com/drink10977.html" }, { "directions": "Make ice cubes using Vita Coco coconut water. Add to a glass of your favorite rum, and serve.", @@ -103670,7 +103670,7 @@ "Vita Coco\u00ae coconut water" ], "title": "Captain Vita Coco recipe", - "url": "http://www.drinksmixer.com/drink10978.html" + "url": "https://www.drinksmixer.com/drink10978.html" }, { "directions": "Stir ingredients together in a parfait glass filled with crushed ice, and serve.", @@ -103680,7 +103680,7 @@ "pineapple juice" ], "title": "Caribbean Barefooted recipe", - "url": "http://www.drinksmixer.com/drink10979.html" + "url": "https://www.drinksmixer.com/drink10979.html" }, { "directions": "Stir ingredients together in a mixing glass or shaker tin with some ice. Strain into a shot glass, and serve.", @@ -103690,7 +103690,7 @@ "butterscotch schnapps" ], "title": "Carnival Apple recipe", - "url": "http://www.drinksmixer.com/drink10980.html" + "url": "https://www.drinksmixer.com/drink10980.html" }, { "directions": "Combine the 151 rum and DeKuyper Sour Apple Pucker schnapps together in a mixing glass. Add the cranberry juice and shake; serve shot glasses.", @@ -103700,7 +103700,7 @@ "cranberry juice" ], "title": "Carrie Special recipe", - "url": "http://www.drinksmixer.com/drink10981.html" + "url": "https://www.drinksmixer.com/drink10981.html" }, { "directions": "Combine the rums and whiskey over ice in a cocktail shaker. Shake well. Add the apple cider and stir lightly. Pour into a pint glass, and serve.", @@ -103711,7 +103711,7 @@ "apple cider" ], "title": "Cemetary Cider recipe", - "url": "http://www.drinksmixer.com/drink10983.html" + "url": "https://www.drinksmixer.com/drink10983.html" }, { "directions": "Serve in a chilled Champagne flute.", @@ -103720,7 +103720,7 @@ "Champagne" ], "title": "Champagne Bleu recipe", - "url": "http://www.drinksmixer.com/drink10984.html" + "url": "https://www.drinksmixer.com/drink10984.html" }, { "directions": "Combine all whiskeys together in a 24 oz. mug glass with about 4-5 ice cubes. Fill the glass with any brand of birch beer, and serve.", @@ -103734,7 +103734,7 @@ "birch beer" ], "title": "Charles Bronson recipe", - "url": "http://www.drinksmixer.com/drink10985.html" + "url": "https://www.drinksmixer.com/drink10985.html" }, { "directions": "Stir Crown Royal whisky and butterscotch schnapps together in a mixing glass with ice cubes. Shake and strain into a large shot glass, and serve.", @@ -103743,7 +103743,7 @@ "Crown Royal\u00ae Canadian whisky" ], "title": "Charley Town Beatdown recipe", - "url": "http://www.drinksmixer.com/drink10986.html" + "url": "https://www.drinksmixer.com/drink10986.html" }, { "directions": "Pour the maraschino cherry juice into a bottle of Corona Extra lager, shake gently before drinking.", @@ -103752,7 +103752,7 @@ "Corona\u00ae Extra lager" ], "title": "Cherry Corona recipe", - "url": "http://www.drinksmixer.com/drink10987.html" + "url": "https://www.drinksmixer.com/drink10987.html" }, { "directions": "Muddle (crush) the chili pepper, lime wedges, and sugar in a chilled old fashioned glass. Add Grand Marnier. Add ice cubes to just over the top of the liquid, stir until sugar dissolves, and serve.\r", @@ -103763,7 +103763,7 @@ "chili pepper" ], "title": "Chili Marnier recipe", - "url": "http://www.drinksmixer.com/drink10988.html" + "url": "https://www.drinksmixer.com/drink10988.html" }, { "directions": "Add the Tuaca citrus liqueur and Bailey's irish cream to a small rocks glass. Splash hot coffee on top, and serve.", @@ -103773,7 +103773,7 @@ "coffee" ], "title": "Chip Shot recipe", - "url": "http://www.drinksmixer.com/drink10989.html" + "url": "https://www.drinksmixer.com/drink10989.html" }, { "directions": "Pour equal parts of each ingredient into a shot glass. Suck on a lemon and shoot.", @@ -103782,7 +103782,7 @@ "Frangelico\u00ae hazelnut liqueur" ], "title": "Chocolate Chip Cookie recipe", - "url": "http://www.drinksmixer.com/drink10990.html" + "url": "https://www.drinksmixer.com/drink10990.html" }, { "directions": "Add all ingredients to a cocktail shaker with a few ice cubes. Shake well, strain into a whiskey sour glass and serve.", @@ -103792,7 +103792,7 @@ "milk" ], "title": "Chocolate Rattlesnake recipe", - "url": "http://www.drinksmixer.com/drink10991.html" + "url": "https://www.drinksmixer.com/drink10991.html" }, { "directions": "Shake all ingredients together in a cocktail shaker with a few ice cubes. Strain into a 2-oz shot glass and serve.", @@ -103802,7 +103802,7 @@ "lemon-lime soda" ], "title": "Chris Anders Shot recipe", - "url": "http://www.drinksmixer.com/drink10992.html" + "url": "https://www.drinksmixer.com/drink10992.html" }, { "directions": "Pour the Captain Morgan Parrot Bay coconut rum into a cup, then pour in the eggnog after. Stir it around a bit to mix it together, and serve.", @@ -103811,7 +103811,7 @@ "eggnog" ], "title": "Christmas In The Tropics recipe", - "url": "http://www.drinksmixer.com/drink10993.html" + "url": "https://www.drinksmixer.com/drink10993.html" }, { "directions": "Shake ingredients together in a cocktail shaker with a few ice cubes. Strain into a shot glass, and serve.", @@ -103820,7 +103820,7 @@ "Goldschlager\u00ae cinnamon schnapps" ], "title": "Cinnamon Apple Shooter recipe", - "url": "http://www.drinksmixer.com/drink10994.html" + "url": "https://www.drinksmixer.com/drink10994.html" }, { "directions": "Shake ingredients together with ice in a cocktail shaker. Strain into a shot glass, and serve.", @@ -103830,7 +103830,7 @@ "cream" ], "title": "Citrus Kiss recipe", - "url": "http://www.drinksmixer.com/drink10995.html" + "url": "https://www.drinksmixer.com/drink10995.html" }, { "directions": "1. Juice a lemon and a lime half; cut into wedges and add into a cocktail shaker along with the mint leaves and sugar (use superfine sugar or simple syrup if available). Muddle ingredients to release oils from the mint leaves.\r", @@ -103843,7 +103843,7 @@ "club soda" ], "title": "Citrus Tequila Fizz recipe", - "url": "http://www.drinksmixer.com/drink10996.html" + "url": "https://www.drinksmixer.com/drink10996.html" }, { "directions": "Layer the Bailey's Irish cream over the peppermint schnapps in a shot glass, and serve.", @@ -103852,7 +103852,7 @@ "Bailey's\u00ae Irish cream" ], "title": "Clit Lickin' Cowgirl #2 recipe", - "url": "http://www.drinksmixer.com/drink10997.html" + "url": "https://www.drinksmixer.com/drink10997.html" }, { "directions": "Get a huge vat, mix all bottles of liquor together (at least 1 liter bottles), then mix with any flavors of kool aid desired. Make sure you get lots of kool-aid mix, water, and liquors first.", @@ -103866,7 +103866,7 @@ "Kool-Aid\u00ae" ], "title": "Closed Caskets and Broken Skulls recipe", - "url": "http://www.drinksmixer.com/drink10998.html" + "url": "https://www.drinksmixer.com/drink10998.html" }, { "directions": "Stir in a shot glass, and serve.", @@ -103876,7 +103876,7 @@ "vodka" ], "title": "Closed Coffin recipe", - "url": "http://www.drinksmixer.com/drink10999.html" + "url": "https://www.drinksmixer.com/drink10999.html" }, { "directions": "Add all ingredients to a blender. Blend until smooth. Pour into a hurricane glass, and serve.", @@ -103891,7 +103891,7 @@ "crushed ice" ], "title": "Cold Hearted Threesome recipe", - "url": "http://www.drinksmixer.com/drink11000.html" + "url": "https://www.drinksmixer.com/drink11000.html" }, { "directions": "Add all ingredients to a mixing glass half-filled with cracked ice. Stir well, strain into a large shot glass, and serve.", @@ -103904,7 +103904,7 @@ "Coca-Cola\u00ae" ], "title": "Colorado Motherfucker #2 recipe", - "url": "http://www.drinksmixer.com/drink11001.html" + "url": "https://www.drinksmixer.com/drink11001.html" }, { "directions": "Pour Jim Beam bourbon whiskey over ice cubes in a highball glass. Add Coca-cola, squeeze in the lemon wedges and serve.", @@ -103914,7 +103914,7 @@ "lemon" ], "title": "Commodore Highball recipe", - "url": "http://www.drinksmixer.com/drink11002.html" + "url": "https://www.drinksmixer.com/drink11002.html" }, { "directions": "Pour the Bombay Sapphire gin and pomegranate juice into a rocks glass filled with ice cubes. Fill with tonic water, stir and serve.", @@ -103924,7 +103924,7 @@ "tonic water" ], "title": "Corey's Pomegranate Tonic recipe", - "url": "http://www.drinksmixer.com/drink11003.html" + "url": "https://www.drinksmixer.com/drink11003.html" }, { "directions": "Combine ingredients with ice in a blender. Blend well, pour into a cocktail glass and serve.", @@ -103934,7 +103934,7 @@ "pina colada mix" ], "title": "Cotton Candy recipe", - "url": "http://www.drinksmixer.com/drink11004.html" + "url": "https://www.drinksmixer.com/drink11004.html" }, { "directions": "Fill a highball glass half way with ice cubes, then combine all liquids and pour over the ice. The drink turns a nice unearthly green colour. You can add more or less Sobe if desired. Other energy drinks can be substituted; AMP is a good alternative.", @@ -103944,7 +103944,7 @@ "Sobe\u00ae Energy drink" ], "title": "Counter Strike recipe", - "url": "http://www.drinksmixer.com/drink11005.html" + "url": "https://www.drinksmixer.com/drink11005.html" }, { "directions": "Mix vodkas, lemon juice, and raspberry schnapps together in a cocktail shaker half-filled with ice cubes. Shake until very cold. Strain into a large shot glass. Top with a splash of sprite, and serve.", @@ -103956,7 +103956,7 @@ "lemon" ], "title": "Country Time recipe", - "url": "http://www.drinksmixer.com/drink11006.html" + "url": "https://www.drinksmixer.com/drink11006.html" }, { "directions": "Mix ingredients together with ice and serve in a rocks glass with or without ice.", @@ -103965,7 +103965,7 @@ "peach schnapps" ], "title": "Bald Slut recipe", - "url": "http://www.drinksmixer.com/drink11007.html" + "url": "https://www.drinksmixer.com/drink11007.html" }, { "directions": "Almost fill a shot glass with butterscotch schnapps. Top with Angostura bitters forming a very thin layer across the top, and serve.", @@ -103974,7 +103974,7 @@ "Angostura\u00ae bitters" ], "title": "Buttersweet Symphony recipe", - "url": "http://www.drinksmixer.com/drink11008.html" + "url": "https://www.drinksmixer.com/drink11008.html" }, { "directions": "Pour the Malibu coconut rum and DeKuyper Peachtree schnapps into a margarita glass filled with crushed ice. Fill the rest of the glass with equal parts of orange and pineapple juice. Add a splash of grenadine, top with an orange slice and a cherry and serve.", @@ -103986,7 +103986,7 @@ "grenadine syrup" ], "title": "Cowgirl Quencher recipe", - "url": "http://www.drinksmixer.com/drink11009.html" + "url": "https://www.drinksmixer.com/drink11009.html" }, { "directions": "Stir ingredients together in an old-fashioned or rocks glass, and serve.", @@ -103995,7 +103995,7 @@ "apple juice" ], "title": "Crapple Juice recipe", - "url": "http://www.drinksmixer.com/drink11010.html" + "url": "https://www.drinksmixer.com/drink11010.html" }, { "directions": "Add all ingredients to a cocktail shaker half-filled with ice cubes. Shake well and pour into a hurricane glass with an orange and cherry garnish, and serve.", @@ -104007,7 +104007,7 @@ "milk" ], "title": "Creamsicle #8 recipe", - "url": "http://www.drinksmixer.com/drink11011.html" + "url": "https://www.drinksmixer.com/drink11011.html" }, { "directions": "Combine all the ingredients in a cocktail shaker half-filled with ice cubes. Shake vigorously, strain into a highball glass, and serve.", @@ -104018,7 +104018,7 @@ "sherbet" ], "title": "Cuban Immigrant recipe", - "url": "http://www.drinksmixer.com/drink11012.html" + "url": "https://www.drinksmixer.com/drink11012.html" }, { "directions": "Add all ingredients to a large container with plenty of ice. Add pieces of fruit (lemons and oranges), stir well and serve in punch cups or glasses.", @@ -104030,7 +104030,7 @@ "Hi-C\u00ae fruit punch" ], "title": "Delaware Morning Breath recipe", - "url": "http://www.drinksmixer.com/drink11013.html" + "url": "https://www.drinksmixer.com/drink11013.html" }, { "directions": "Pour the peach schnapps and Malibu coconut rum into a highball glass filled with ice cubes. Add cranberry and orange juices. Garnish the drink with 2 cherries, and serve.", @@ -104041,7 +104041,7 @@ "orange juice" ], "title": "Dimple Cocktail recipe", - "url": "http://www.drinksmixer.com/drink11014.html" + "url": "https://www.drinksmixer.com/drink11014.html" }, { "directions": "Pour the vodka over ice cubes in a highball glass. Fill the glass the rest of the way with Sprite. Add grenadine, garnish with a cherry, and serve.", @@ -104051,7 +104051,7 @@ "grenadine syrup" ], "title": "Dirty Shirley recipe", - "url": "http://www.drinksmixer.com/drink11016.html" + "url": "https://www.drinksmixer.com/drink11016.html" }, { "directions": "Stir ingredients together in an old-fashioned glass half-filled with ice cubes, and serve.", @@ -104061,7 +104061,7 @@ "Pimp\u00ae apple juice" ], "title": "Dirty South recipe", - "url": "http://www.drinksmixer.com/drink11017.html" + "url": "https://www.drinksmixer.com/drink11017.html" }, { "directions": "Pour all ingredients into a cocktail glass at room temperature. Add a handful of peanuts, and serve.", @@ -104071,7 +104071,7 @@ "coffee liqueur" ], "title": "Dirty Toilet recipe", - "url": "http://www.drinksmixer.com/drink11018.html" + "url": "https://www.drinksmixer.com/drink11018.html" }, { "directions": "Pour all ingredients into a collins glass filled with crushed ice. Stir well, and serve.", @@ -104081,7 +104081,7 @@ "Sprite\u00ae soda" ], "title": "Doggystyle recipe", - "url": "http://www.drinksmixer.com/drink11020.html" + "url": "https://www.drinksmixer.com/drink11020.html" }, { "directions": "Add Seagrams 7 whisky and grenadine syrup to a highball glass filled with ice. Almost fill the glass with orange juice, leaving just enough room to add the pina colada mix. Stir and serve.", @@ -104092,7 +104092,7 @@ "orange juice" ], "title": "Dorado recipe", - "url": "http://www.drinksmixer.com/drink11021.html" + "url": "https://www.drinksmixer.com/drink11021.html" }, { "directions": "Add all ingredients to a cocktail shaker half-filled with ice cubes. Shake well, strain into a cocktail glass, and serve.", @@ -104104,7 +104104,7 @@ "pineapple juice" ], "title": "Ego's Tang recipe", - "url": "http://www.drinksmixer.com/drink11022.html" + "url": "https://www.drinksmixer.com/drink11022.html" }, { "directions": "Pour the mango juice and Dr. Pepper Vanilla to a cocktail glass. In two seperate mixing glasses, mix the Patron tequila with the lime juice, and the Agavero tequila with the lemon juice. Pour both into the cocktail glass. Top with Tapatio, and serve.", @@ -104118,7 +104118,7 @@ "Tapatio\u00ae hot sauce" ], "title": "El Chupacabras recipe", - "url": "http://www.drinksmixer.com/drink11023.html" + "url": "https://www.drinksmixer.com/drink11023.html" }, { "directions": "Layer ingredients in a shot glass (Kahlua at the bottom). Chill and serve as a shot.", @@ -104128,7 +104128,7 @@ "Kahlua\u00ae coffee liqueur" ], "title": "Antwoine recipe", - "url": "http://www.drinksmixer.com/drink11024.html" + "url": "https://www.drinksmixer.com/drink11024.html" }, { "directions": "Brew espresso fresh. Pour into a cocktail shaker half-filled with ice cubes and add other ingredients. Shake well, strain into a cocktail glass, and serve.", @@ -104139,7 +104139,7 @@ "espresso" ], "title": "Espresso Martini #2 recipe", - "url": "http://www.drinksmixer.com/drink11025.html" + "url": "https://www.drinksmixer.com/drink11025.html" }, { "directions": "Mix evenly in a shot glass and serve cold.", @@ -104149,7 +104149,7 @@ "chocolate milk" ], "title": "Face Raper recipe", - "url": "http://www.drinksmixer.com/drink11026.html" + "url": "https://www.drinksmixer.com/drink11026.html" }, { "directions": "Stir the pink lemonade and vodka in a glass filled with ice. Add Brut champagne or sparkling wine until full, and serve.", @@ -104159,7 +104159,7 @@ "Brut\u00ae Champagne" ], "title": "Fancy Panties recipe", - "url": "http://www.drinksmixer.com/drink11027.html" + "url": "https://www.drinksmixer.com/drink11027.html" }, { "directions": "Fill a short glass with ice cubes. Add the Absolut Kurant vodka, Chambord raspbery liqueur, sour mix and cranberry juice. Stir well. Splash tonic water; stir again. Garnish as desired, and serve.", @@ -104171,7 +104171,7 @@ "tonic water" ], "title": "Federal Law recipe", - "url": "http://www.drinksmixer.com/drink11028.html" + "url": "https://www.drinksmixer.com/drink11028.html" }, { "directions": "Mix drink ingredients together, shake for 5 seconds, serve over ice in a cocktail glass. Best enjoyed while bubbles are still \"fizzing\".", @@ -104181,7 +104181,7 @@ "Sprite\u00ae soda" ], "title": "Filthy Bitch recipe", - "url": "http://www.drinksmixer.com/drink11029.html" + "url": "https://www.drinksmixer.com/drink11029.html" }, { "directions": "Pour the Captain Morgan Parrot Bay coconut rum, amaretto almond liqueur and triple sec into a collins glass 3/4 filled with ice cubes. Stir and fill up the rest of the glass with equal portions of pineapple juice and Sprite. Top with a little grenadine and some cherries if desired, and serve.", @@ -104193,7 +104193,7 @@ "Sprite\u00ae soda" ], "title": "Final Exam Relief recipe", - "url": "http://www.drinksmixer.com/drink11030.html" + "url": "https://www.drinksmixer.com/drink11030.html" }, { "directions": "Add equal parts of each liquor to a cocktail shaker half-filled with ice cubes. Shake well, strain into shot glasses and serve.", @@ -104205,7 +104205,7 @@ "151 proof rum" ], "title": "Five Star General #2 recipe", - "url": "http://www.drinksmixer.com/drink11031.html" + "url": "https://www.drinksmixer.com/drink11031.html" }, { "directions": "Place a dash of Tabasco sauce on some body part. Lick the Tabasco off, take the shot, and bite the Jalepeno, then hold on for dear life.", @@ -104215,7 +104215,7 @@ "Tabasco\u00ae sauce" ], "title": "Flaming Meggers recipe", - "url": "http://www.drinksmixer.com/drink11034.html" + "url": "https://www.drinksmixer.com/drink11034.html" }, { "directions": "1. Place a 1-oz shot glass on a saucer, then fill the glass with equal amount of peach schnapps and Midori melon liqueur. Across the rim of the glass, place a slice of lime and sprinkle with caster sugar. Pour sambuca over the lime so it flows onto the saucer. Ignite the lime and the liquor on the saucer.\r", @@ -104227,7 +104227,7 @@ "caster sugar" ], "title": "Flaming Orchard recipe", - "url": "http://www.drinksmixer.com/drink11035.html" + "url": "https://www.drinksmixer.com/drink11035.html" }, { "directions": "Add the Bacardi 151 and Dr. McGillicuddy's Fireball whiskey to a shot glass, top with Tabasco sauce, and serve.", @@ -104237,7 +104237,7 @@ "Tabasco\u00ae sauce" ], "title": "Flaming Ring of Fire recipe", - "url": "http://www.drinksmixer.com/drink11036.html" + "url": "https://www.drinksmixer.com/drink11036.html" }, { "directions": "Pour the tequila over the chartreuse in a 2-oz shot glass. Add desired amount of tabasco sauce, and serve. (1-2 drops for the weak, 3-4 for the mid-strength, 4-7 for the adventurous, 7+ for the herculean efforts.)", @@ -104247,7 +104247,7 @@ "Tabasco\u00ae sauce" ], "title": "Flatliner #3 recipe", - "url": "http://www.drinksmixer.com/drink11037.html" + "url": "https://www.drinksmixer.com/drink11037.html" }, { "directions": "Add all ingredients to an old-fashioned glass with/without ice as desired. Stir lightly and serve.", @@ -104258,7 +104258,7 @@ "Black Haus\u00ae blackberry schnapps" ], "title": "Four Jokers recipe", - "url": "http://www.drinksmixer.com/drink11038.html" + "url": "https://www.drinksmixer.com/drink11038.html" }, { "directions": "Add the vodka, Chambord raspberry liqueur and Rose's watermelon cocktail infusion to a cocktail shaker half-filled with ice cubes. Shake vigorously for 20 seconds. Pour into a chilled cocktail glass, and serve.", @@ -104268,7 +104268,7 @@ "Rose's\u00ae Watermelon Cocktail Infusion" ], "title": "French Watermelon Matini recipe", - "url": "http://www.drinksmixer.com/drink11039.html" + "url": "https://www.drinksmixer.com/drink11039.html" }, { "directions": "Combine Kool-Aid orange mix, sugar, and Bacardi O orange rum in a blender with ice. Blend until smooth and frosty, pour into a tall glass and serve.", @@ -104278,7 +104278,7 @@ "Kool-Aid\u00ae Orange mix" ], "title": "Frozen O recipe", - "url": "http://www.drinksmixer.com/drink11040.html" + "url": "https://www.drinksmixer.com/drink11040.html" }, { "directions": "Combine all above ingredients in a blender and blend well. Pour into glasses and serve.", @@ -104292,7 +104292,7 @@ "orange juice" ], "title": "Fruit Daydream recipe", - "url": "http://www.drinksmixer.com/drink11041.html" + "url": "https://www.drinksmixer.com/drink11041.html" }, { "directions": "Add all ingredients to a cocktail shaker half-filled with ice cubes. Shake well, strain over ice cubes in a highball glass and serve.", @@ -104303,7 +104303,7 @@ "grenadine syrup" ], "title": "General Cocktail recipe", - "url": "http://www.drinksmixer.com/drink11042.html" + "url": "https://www.drinksmixer.com/drink11042.html" }, { "directions": "Fill a mixing glass with ice. Pour in the Stoli peach vodka, lemonade and cranberry juice. Shake well and strain into a cocktail glass. Garnish with a slice of lemon, and serve.", @@ -104313,7 +104313,7 @@ "cranberry juice" ], "title": "Georgia Promenade recipe", - "url": "http://www.drinksmixer.com/drink11043.html" + "url": "https://www.drinksmixer.com/drink11043.html" }, { "directions": "Add all three ingredients to a cocktail shaker with some ice cubes. Shake well, and strain into a chilled cocktail glass. Garnish with cherries and serve.", @@ -104323,7 +104323,7 @@ "Rose's\u00ae lime juice" ], "title": "Gin by Me recipe", - "url": "http://www.drinksmixer.com/drink11044.html" + "url": "https://www.drinksmixer.com/drink11044.html" }, { "directions": "Place the mint sprigs and sugar syrup in the bottom of an old-fashioned glass. Stir about to bruise the mint slightly. Fill the glass with chopped / shaved ice. Add the lemon juice and gin and stir until a frost begins to form. Decorate with extra mint sprigs, and serve.", @@ -104335,7 +104335,7 @@ "ice" ], "title": "Gin Cup recipe", - "url": "http://www.drinksmixer.com/drink11045.html" + "url": "https://www.drinksmixer.com/drink11045.html" }, { "directions": "Muddle the raspberries in the base of a whiskey sour glass with creme de mure and creme de framboise, then add crushed ice filling the glass. Add rest of ingredients and stir until the drink is a blood red color, and serve.", @@ -104347,7 +104347,7 @@ "lemon juice" ], "title": "Gin-berry recipe", - "url": "http://www.drinksmixer.com/drink11046.html" + "url": "https://www.drinksmixer.com/drink11046.html" }, { "directions": "Stir ingredients together in a highball glass 3/4 filled with ice cubes. Add a straw and serve.", @@ -104356,7 +104356,7 @@ "ginger ale" ], "title": "Gingeronno recipe", - "url": "http://www.drinksmixer.com/drink11047.html" + "url": "https://www.drinksmixer.com/drink11047.html" }, { "directions": "Shake ingredients with ice and strain into a cocktail glass. Garnish with an orange slice, and serve.", @@ -104367,7 +104367,7 @@ "Cynar\u00ae artichoke liqueur" ], "title": "Girasole Cocktail recipe", - "url": "http://www.drinksmixer.com/drink11048.html" + "url": "https://www.drinksmixer.com/drink11048.html" }, { "directions": "Pour on the rocks in an old-fashioned glass, stir and serve.", @@ -104376,7 +104376,7 @@ "Captain Morgan\u00ae Original spiced rum" ], "title": "Glow Job recipe", - "url": "http://www.drinksmixer.com/drink11049.html" + "url": "https://www.drinksmixer.com/drink11049.html" }, { "directions": "Combine all ingredients in a blender with lots of ice. Blend well, pour into a suitable glass and serve.", @@ -104388,7 +104388,7 @@ "orange juice" ], "title": "God's Alabama Slammer recipe", - "url": "http://www.drinksmixer.com/drink11050.html" + "url": "https://www.drinksmixer.com/drink11050.html" }, { "directions": "Stir ingredients together with some ice cubes in a collins glass, and serve.", @@ -104398,7 +104398,7 @@ "milk" ], "title": "Golden Almonds recipe", - "url": "http://www.drinksmixer.com/drink11051.html" + "url": "https://www.drinksmixer.com/drink11051.html" }, { "directions": "Combine the three ingredients in a single shot glass, stir and serve.", @@ -104408,7 +104408,7 @@ "Malibu\u00ae coconut rum" ], "title": "Golden Shower #2 recipe", - "url": "http://www.drinksmixer.com/drink11052.html" + "url": "https://www.drinksmixer.com/drink11052.html" }, { "directions": "Combine whiskey's and vodka in equal parts in a shot glass, and serve.", @@ -104420,7 +104420,7 @@ "Jim Beam Black Label bourbon whiskey" ], "title": "Got Kicked in the Jimmy recipe", - "url": "http://www.drinksmixer.com/drink11053.html" + "url": "https://www.drinksmixer.com/drink11053.html" }, { "directions": "Put ice cream, banana, strawberries, and strawberry syrup in a blender. Blend until consistency of a smoothie. Add vodka, and blend again. Serve in regular drinking glass.", @@ -104432,7 +104432,7 @@ "vodka" ], "title": "Grandes Smoothie recipe", - "url": "http://www.drinksmixer.com/drink11054.html" + "url": "https://www.drinksmixer.com/drink11054.html" }, { "directions": "Pour Jim Beam bourbon whiskey into a collins glass filled with ice. Fill with grape soda, and serve.", @@ -104441,7 +104441,7 @@ "grape soda" ], "title": "Grape Beam recipe", - "url": "http://www.drinksmixer.com/drink11055.html" + "url": "https://www.drinksmixer.com/drink11055.html" }, { "directions": "Add all ingredients to a cocktail shaker half-filled with ice cubes. Shake well, strain into a highball glass filled with ice cubes, and serve.", @@ -104454,7 +104454,7 @@ "Blue Curacao liqueur" ], "title": "Green Goddamn #2 recipe", - "url": "http://www.drinksmixer.com/drink11056.html" + "url": "https://www.drinksmixer.com/drink11056.html" }, { "directions": "Stir the vodka and the 7-Up Plus in a highball glass 3/4 filled with ice cubes, and serve.", @@ -104463,7 +104463,7 @@ "7-Up Plus soda" ], "title": "Grizzy Adams recipe", - "url": "http://www.drinksmixer.com/drink11057.html" + "url": "https://www.drinksmixer.com/drink11057.html" }, { "directions": "Pour the vodka, triple sec and amaretto over ice in a cocktail glass. Fill glass with desired amount of lemonade. Garnish with lemon slice, and serve.", @@ -104474,7 +104474,7 @@ "lemonade" ], "title": "Grown-up Lemonade recipe", - "url": "http://www.drinksmixer.com/drink11058.html" + "url": "https://www.drinksmixer.com/drink11058.html" }, { "directions": "Stir together in a highball glass filled with ice cubes, and serve with a straw.", @@ -104483,7 +104483,7 @@ "cola" ], "title": "Gummi Bear recipe", - "url": "http://www.drinksmixer.com/drink11059.html" + "url": "https://www.drinksmixer.com/drink11059.html" }, { "directions": "Stir all ingredients together with crushed ice in an old-fashioned glass, and serve.", @@ -104495,7 +104495,7 @@ "Red Bull\u00ae energy drink" ], "title": "Hairy Muff recipe", - "url": "http://www.drinksmixer.com/drink11060.html" + "url": "https://www.drinksmixer.com/drink11060.html" }, { "directions": "Stir ingredients together in a large punch bowl or other container. Add ice to chill, and serve.", @@ -104509,7 +104509,7 @@ "orange juice" ], "title": "Hard Core Hunch Punch recipe", - "url": "http://www.drinksmixer.com/drink11061.html" + "url": "https://www.drinksmixer.com/drink11061.html" }, { "directions": "Stir ingredients together in a highball glass filled with ice cubes, and serve.", @@ -104520,7 +104520,7 @@ "Sprite\u00ae soda" ], "title": "Hawaiian Russian recipe", - "url": "http://www.drinksmixer.com/drink11062.html" + "url": "https://www.drinksmixer.com/drink11062.html" }, { "directions": "Stir ingredients together in a shot glass, and serve.", @@ -104529,7 +104529,7 @@ "DeKuyper\u00ae Hot Damn cinnamon schnapps" ], "title": "Hot Apple Pie #3 recipe", - "url": "http://www.drinksmixer.com/drink11063.html" + "url": "https://www.drinksmixer.com/drink11063.html" }, { "directions": "Stir the Jim Beam bourbon whiskey and the hot water together in a coffee mug. Float butter on top. Garnish with a cinnamon stick and a slice of lemon, and serve.", @@ -104539,7 +104539,7 @@ "butter" ], "title": "Hot Buttered Jim recipe", - "url": "http://www.drinksmixer.com/drink11064.html" + "url": "https://www.drinksmixer.com/drink11064.html" }, { "directions": "Pour the Bacardi rum, DeKuyper Hot Damn cinnamon schnapps and Tabasco sauce into shot glass. Stir and serve.", @@ -104549,7 +104549,7 @@ "Tabasco\u00ae sauce" ], "title": "Hot Chicana recipe", - "url": "http://www.drinksmixer.com/drink11065.html" + "url": "https://www.drinksmixer.com/drink11065.html" }, { "directions": "Stir ingredients together in a highball glass with some ice cubes. Garnish with pineapple, and serve.", @@ -104559,7 +104559,7 @@ "cranberry juice" ], "title": "Hot Rod recipe", - "url": "http://www.drinksmixer.com/drink11066.html" + "url": "https://www.drinksmixer.com/drink11066.html" }, { "directions": "Using a lime juicer, squeeze the juice of two whole limes into a highball glass filled with ice. Add the dry vermouth and top off with ginger ale. Stir until all ingredients are mixed. Garnish with a wedge of lime, and serve.", @@ -104569,7 +104569,7 @@ "ginger ale" ], "title": "Desperation Cocktail recipe", - "url": "http://www.drinksmixer.com/drink11067.html" + "url": "https://www.drinksmixer.com/drink11067.html" }, { "directions": "Stir together in an old-fashioned glass, and serve.", @@ -104579,7 +104579,7 @@ "Worcestershire sauce" ], "title": "Hot Tequila recipe", - "url": "http://www.drinksmixer.com/drink11068.html" + "url": "https://www.drinksmixer.com/drink11068.html" }, { "directions": "Pour the Hpnotiq liqueur and Hennessy cognac into a highball glass filled with crushed ice. Fill the rest of the glass with Sprite or 7-UP, stir well, and serve.", @@ -104589,7 +104589,7 @@ "Sprite\u00ae soda" ], "title": "Hulk recipe", - "url": "http://www.drinksmixer.com/drink11069.html" + "url": "https://www.drinksmixer.com/drink11069.html" }, { "directions": "Serve in equal parts in a 2-oz shot glass.", @@ -104600,7 +104600,7 @@ "Wild Turkey\u00ae 101 bourbon whiskey" ], "title": "I See Dead People recipe", - "url": "http://www.drinksmixer.com/drink11070.html" + "url": "https://www.drinksmixer.com/drink11070.html" }, { "directions": "Add all ingredients to a cocktail shaker half-filled with ice cubes. Shake well, strain into a cocktail glass, and serve.", @@ -104611,7 +104611,7 @@ "grenadine syrup" ], "title": "Kick in the Nuts recipe", - "url": "http://www.drinksmixer.com/drink11071.html" + "url": "https://www.drinksmixer.com/drink11071.html" }, { "directions": "Stir ingredients together in a highball glass filled with ice cubes, and serve.", @@ -104620,7 +104620,7 @@ "Juicy Juice\u00ae peach juice" ], "title": "Apeachy Procaccini recipe", - "url": "http://www.drinksmixer.com/drink11072.html" + "url": "https://www.drinksmixer.com/drink11072.html" }, { "directions": "Stir ingredients together in a highball glass filled with ice cubes, and serve.", @@ -104629,7 +104629,7 @@ "limeade" ], "title": "Crime Loyal recipe", - "url": "http://www.drinksmixer.com/drink11073.html" + "url": "https://www.drinksmixer.com/drink11073.html" }, { "directions": "Add all ingredients (except 7-Up) to a cocktail shaker with a few ice cubes, Shake well, strain into an old-fashioned glass, top with 7-Up, and serve.", @@ -104640,7 +104640,7 @@ "7-Up\u00ae soda" ], "title": "Doggy Style On the Beach recipe", - "url": "http://www.drinksmixer.com/drink11074.html" + "url": "https://www.drinksmixer.com/drink11074.html" }, { "directions": "Pour the creme de menthe into a shot glass. Layer the blue curacao on top, and the cream on top of that. Serve.", @@ -104650,7 +104650,7 @@ "light cream" ], "title": "Iceberg #2 recipe", - "url": "http://www.drinksmixer.com/drink11075.html" + "url": "https://www.drinksmixer.com/drink11075.html" }, { "directions": "Pour both ingredients into a highball glass almost filled with ice cubes. Stir and serve.", @@ -104659,7 +104659,7 @@ "Nestea\u00ae iced tea" ], "title": "Iced Comfort recipe", - "url": "http://www.drinksmixer.com/drink11076.html" + "url": "https://www.drinksmixer.com/drink11076.html" }, { "directions": "Pour Wild Turkey whiskey over ice in a collins glass. Fill with Turkey Hill iced tea, stir and serve.", @@ -104668,7 +104668,7 @@ "Turkey Hill\u00ae iced tea" ], "title": "Iced Wild Turkey Hill recipe", - "url": "http://www.drinksmixer.com/drink11077.html" + "url": "https://www.drinksmixer.com/drink11077.html" }, { "directions": "Blend the ice cream with the Bols Pumpkin Smash and Frangelico hazelnut liqueur in a blender. Blend well and pour into a Champagne flute. Pour Bacardi 151 rum over the top and garnish with nutmeg or cinnamon. ", @@ -104679,7 +104679,7 @@ "vanilla ice cream" ], "title": "Ichabod Crane recipe", - "url": "http://www.drinksmixer.com/drink11078.html" + "url": "https://www.drinksmixer.com/drink11078.html" }, { "directions": "1. Stir the juices together in a freezable container and freeze until ice. Crush the ice finely with the lemon zest, and mix salt into the crushed ice. \r", @@ -104694,7 +104694,7 @@ "Pepsi\u00ae cola" ], "title": "Icy Ice recipe", - "url": "http://www.drinksmixer.com/drink11079.html" + "url": "https://www.drinksmixer.com/drink11079.html" }, { "directions": "Stir ingredients together in a shot glass, and serve. Adjust amounts to taste if desired.", @@ -104704,7 +104704,7 @@ "Sprite\u00ae soda" ], "title": "Incredible Chak recipe", - "url": "http://www.drinksmixer.com/drink11080.html" + "url": "https://www.drinksmixer.com/drink11080.html" }, { "directions": "Shake ingredients in a cocktail shaker with ice and strain into a cocktail glass. Garnish with a lemon wedge and a cherry, and serve.", @@ -104715,7 +104715,7 @@ "lemon juice" ], "title": "Indy Melonade recipe", - "url": "http://www.drinksmixer.com/drink11081.html" + "url": "https://www.drinksmixer.com/drink11081.html" }, { "directions": "Pour all ingredients into a cocktail shaker half-filled with crushed ice, and shake well. Strain into a collins glass half-filled with crushed ice, and serve.", @@ -104727,7 +104727,7 @@ "Minute Maid\u00ae grape punch" ], "title": "Infidelity recipe", - "url": "http://www.drinksmixer.com/drink11082.html" + "url": "https://www.drinksmixer.com/drink11082.html" }, { "directions": "Fill a chilled beer mug about 3/4 full with lager, top off with the V8 spicy vegetable juice, and serve.", @@ -104736,7 +104736,7 @@ "V8\u00ae vegetable juice" ], "title": "Bud Bomb Breakfast recipe", - "url": "http://www.drinksmixer.com/drink11083.html" + "url": "https://www.drinksmixer.com/drink11083.html" }, { "directions": "Fill a collins glass with ice, add ingredients, and stir. Garnish with a cherry, and serve.", @@ -104749,7 +104749,7 @@ "orange juice" ], "title": "C.R. Sun Tan Lotion recipe", - "url": "http://www.drinksmixer.com/drink11084.html" + "url": "https://www.drinksmixer.com/drink11084.html" }, { "directions": "Stir ingredients together over ice in a coffee mug, and serve.", @@ -104759,7 +104759,7 @@ "eggnog" ], "title": "Christmas Nipple recipe", - "url": "http://www.drinksmixer.com/drink11085.html" + "url": "https://www.drinksmixer.com/drink11085.html" }, { "directions": "Stir ingredients together and serve in a tall glass.", @@ -104769,7 +104769,7 @@ "Kool-Aid\u00ae Strawberry mix" ], "title": "Kai's Drunken Love recipe", - "url": "http://www.drinksmixer.com/drink11086.html" + "url": "https://www.drinksmixer.com/drink11086.html" }, { "directions": "Stir in an old-fashioned glass, and serve.\r", @@ -104779,7 +104779,7 @@ "creme de menthe" ], "title": "Ronin Grasshopper recipe", - "url": "http://www.drinksmixer.com/drink11087.html" + "url": "https://www.drinksmixer.com/drink11087.html" }, { "directions": "Stir rum and apple juice together in a highball glass. Add a pinch of cinnamon, and serve.", @@ -104789,7 +104789,7 @@ "cinnamon" ], "title": "Strudel recipe", - "url": "http://www.drinksmixer.com/drink11088.html" + "url": "https://www.drinksmixer.com/drink11088.html" }, { "directions": "Serve on ice in a highball glass.", @@ -104799,7 +104799,7 @@ "soda water" ], "title": "007 recipe", - "url": "http://www.drinksmixer.com/drink11090.html" + "url": "https://www.drinksmixer.com/drink11090.html" }, { "directions": "Pour the Jim Beam bourbon whiskey into a beer mug filled with Budweiser, and serve.", @@ -104808,7 +104808,7 @@ "Budweiser\u00ae lager" ], "title": "1964 Car Bomb recipe", - "url": "http://www.drinksmixer.com/drink11092.html" + "url": "https://www.drinksmixer.com/drink11092.html" }, { "directions": "Stir ingredients together in a tall glass, and serve.", @@ -104817,7 +104817,7 @@ "Aftershock\u00ae Hot & Cool cinnamon schnapps" ], "title": "2 Step recipe", - "url": "http://www.drinksmixer.com/drink11093.html" + "url": "https://www.drinksmixer.com/drink11093.html" }, { "directions": "In a shaker over ice, pour equal parts of vodka and Malibu. Add a splash of pineapple juice, and blue curacao (for color). Shake and strain into shot glasses, and serve.", @@ -104828,7 +104828,7 @@ "Blue Curacao liqueur" ], "title": "2000 Flushes #2 recipe", - "url": "http://www.drinksmixer.com/drink11094.html" + "url": "https://www.drinksmixer.com/drink11094.html" }, { "directions": "Stir together in a shot glass, and serve.", @@ -104837,7 +104837,7 @@ "Bacardi\u00ae 151 rum" ], "title": "250 recipe", - "url": "http://www.drinksmixer.com/drink11095.html" + "url": "https://www.drinksmixer.com/drink11095.html" }, { "directions": "Pour all into a cocktail shaker filled with ice cubes. Shake well and serve with ice in a shot glass.", @@ -104849,7 +104849,7 @@ "Jose Cuervo\u00ae Especial gold tequila" ], "title": "Three Wise Men on a Cold Mexican Night recipe", - "url": "http://www.drinksmixer.com/drink11096.html" + "url": "https://www.drinksmixer.com/drink11096.html" }, { "directions": "Stir ingredients together in a shot glass, and serve.", @@ -104859,7 +104859,7 @@ "Rumple Minze\u00ae peppermint liqueur" ], "title": "352 Shot recipe", - "url": "http://www.drinksmixer.com/drink11097.html" + "url": "https://www.drinksmixer.com/drink11097.html" }, { "directions": "Serve hot in a coffee mug.", @@ -104870,7 +104870,7 @@ "creme de cacao" ], "title": "3rd World Mocha recipe", - "url": "http://www.drinksmixer.com/drink11099.html" + "url": "https://www.drinksmixer.com/drink11099.html" }, { "directions": "Add all ingredients to a cocktail shaker filled with ice cubes. Shake well (until red-ish). Serve into shot glasses as appropriate.", @@ -104882,7 +104882,7 @@ "grenadine syrup" ], "title": "5 Deadly Venoms recipe", - "url": "http://www.drinksmixer.com/drink11100.html" + "url": "https://www.drinksmixer.com/drink11100.html" }, { "directions": "Stir ingredients together in an old-fashioned glass, and serve.", @@ -104895,7 +104895,7 @@ "grenadine syrup" ], "title": "57 Chevy #2 recipe", - "url": "http://www.drinksmixer.com/drink11101.html" + "url": "https://www.drinksmixer.com/drink11101.html" }, { "directions": "Pour ingredients into an old fashioned glass, straight up or on the rocks, and serve.", @@ -104904,7 +104904,7 @@ "Dooley's Original Toffee & Vodka" ], "title": "5th Avenue recipe", - "url": "http://www.drinksmixer.com/drink11102.html" + "url": "https://www.drinksmixer.com/drink11102.html" }, { "directions": "Stir ingredients together in a double-shot glass, and serve.", @@ -104917,7 +104917,7 @@ "Bailey's\u00ae Irish cream" ], "title": "6-Shooter recipe", - "url": "http://www.drinksmixer.com/drink11103.html" + "url": "https://www.drinksmixer.com/drink11103.html" }, { "directions": "Stir ingredients together in a collins glass, and serve.", @@ -104926,7 +104926,7 @@ "7-Up\u00ae soda" ], "title": "7 Coconuts recipe", - "url": "http://www.drinksmixer.com/drink11104.html" + "url": "https://www.drinksmixer.com/drink11104.html" }, { "directions": "Fill a highball glass with ice cubes. Add the Seagrams 7 and the other half with 7-Up or Sprite or any lemon lime soda, and serve. Can also be made with Seagrams VO.", @@ -104935,7 +104935,7 @@ "7-Up\u00ae soda" ], "title": "7 on 7 recipe", - "url": "http://www.drinksmixer.com/drink11105.html" + "url": "https://www.drinksmixer.com/drink11105.html" }, { "directions": "Add to a shot glass, and shoot.", @@ -104945,7 +104945,7 @@ "Firewater\u00ae cinnamon schnapps" ], "title": "911 recipe", - "url": "http://www.drinksmixer.com/drink11106.html" + "url": "https://www.drinksmixer.com/drink11106.html" }, { "directions": "Add all ingredients to a cocktail shaker half-filled with ice cubes. Shake well, strain into a highball glass filled with ice cubes, and serve with a straw.", @@ -104955,7 +104955,7 @@ "pineapple juice" ], "title": "A Crow Left of the Murder recipe", - "url": "http://www.drinksmixer.com/drink11107.html" + "url": "https://www.drinksmixer.com/drink11107.html" }, { "directions": "Add all ingredients to a cocktail / martini glass, garnish with Tang around the rim and serve.", @@ -104966,7 +104966,7 @@ "orange juice" ], "title": "A Nap at Charlie's recipe", - "url": "http://www.drinksmixer.com/drink11108.html" + "url": "https://www.drinksmixer.com/drink11108.html" }, { "directions": "Combine all ingredients in a goblet with a sugared rim. Hold up to light and swirl contemplatively. ", @@ -104977,7 +104977,7 @@ "amaretto almond liqueur" ], "title": "A Pimp Named Slickback recipe", - "url": "http://www.drinksmixer.com/drink11109.html" + "url": "https://www.drinksmixer.com/drink11109.html" }, { "directions": "Add cloves to the lemon. Pour into a heat-proof goblet, sweeten with white sugar (to taste), and serve.", @@ -104989,7 +104989,7 @@ "sugar" ], "title": "Hot Irish #2 recipe", - "url": "http://www.drinksmixer.com/drink11110.html" + "url": "https://www.drinksmixer.com/drink11110.html" }, { "directions": "Add all ingredients to a cocktail shaker, shake 3 - 4 times and strain over ice in a cocktail glass.", @@ -104999,7 +104999,7 @@ "cranberry juice" ], "title": "A Roa recipe", - "url": "http://www.drinksmixer.com/drink11111.html" + "url": "https://www.drinksmixer.com/drink11111.html" }, { "directions": "Fill a shot glass half full of Southern Comfort, then fill the rest of the way with the Stoli (preferrably stored in freezer) leaving a small amount of room at the top. Then splash a bit of the Grey Goose to top it off. Sit and enjoy!", @@ -105009,7 +105009,7 @@ "Grey Goose\u00ae L'Orange vodka" ], "title": "A Short Southern Screw recipe", - "url": "http://www.drinksmixer.com/drink11112.html" + "url": "https://www.drinksmixer.com/drink11112.html" }, { "directions": "Mix the vodka with the Tabasco sauce. Add the Red Bull and drink immediately. ", @@ -105019,7 +105019,7 @@ "Red Bull\u00ae energy drink" ], "title": "AA Discount recipe", - "url": "http://www.drinksmixer.com/drink11113.html" + "url": "https://www.drinksmixer.com/drink11113.html" }, { "directions": "Mix all ingredients together in a cocktail shaker with ice. Serve in a cordial glass or shot glass.", @@ -105030,7 +105030,7 @@ "Frangelico\u00ae hazelnut liqueur" ], "title": "Abbie's French Kiss recipe", - "url": "http://www.drinksmixer.com/drink11114.html" + "url": "https://www.drinksmixer.com/drink11114.html" }, { "directions": "Pour 3/4 of a full shot of absinthe in a sundae glass. put a brown sugar cube on a spoon with holes in it and rest it on the rim of the sundae glass. Pour the remaining 1/4 of the shot of absinthe onto the brown sugar cube, light the brown sugar on fire (put the flame under the spoon). Let the flame burn for a minute while the brown sugar drips into the glass and caramelizes. stir the caramelized sugar into the glass. Add the water to the glass, stir again. and serve.", @@ -105040,7 +105040,7 @@ "water" ], "title": "Absinthe Czech Ritual recipe", - "url": "http://www.drinksmixer.com/drink11115.html" + "url": "https://www.drinksmixer.com/drink11115.html" }, { "directions": "Pour the Absolut vodka, Red Bull and sparkling wine into a pitcher 1/3 filled with ice. Serve into wine glasses.", @@ -105050,7 +105050,7 @@ "sparkling white wine" ], "title": "Absolut Chambulls recipe", - "url": "http://www.drinksmixer.com/drink11117.html" + "url": "https://www.drinksmixer.com/drink11117.html" }, { "directions": "Pour the Absolut Vanilia vodka over ice cubes in a cocktail shaker. Add the gomme syrup, fresh lime juice and a splash of pineapple juice. Shake or stir well. Strain into a chilled martini glass, garnish with a lime wedge, and serve.", @@ -105061,7 +105061,7 @@ "pineapple juice" ], "title": "Absolut Hunk recipe", - "url": "http://www.drinksmixer.com/drink11118.html" + "url": "https://www.drinksmixer.com/drink11118.html" }, { "directions": "Spoon ice cream into a blender, pouring vodka and rum over it. Blend together, gradually adding ice until desired thickness. Serve in large party cups. Garnish w/ peanut butter cup optional.", @@ -105072,7 +105072,7 @@ "ice cubes" ], "title": "Absolut Reese's recipe", - "url": "http://www.drinksmixer.com/drink11119.html" + "url": "https://www.drinksmixer.com/drink11119.html" }, { "directions": "Add the ingredients to a cocktail shaker half-filled with ice cubes. Shake well, pour into a cup, and serve.", @@ -105083,7 +105083,7 @@ "cranberry juice" ], "title": "Absolut Train Wreck recipe", - "url": "http://www.drinksmixer.com/drink11120.html" + "url": "https://www.drinksmixer.com/drink11120.html" }, { "directions": "Layer about a third of an ounce of each ingredient in a shot glass in the order listed, and serve.", @@ -105093,7 +105093,7 @@ "Bailey's\u00ae Irish cream" ], "title": "Absolut Trifle recipe", - "url": "http://www.drinksmixer.com/drink11121.html" + "url": "https://www.drinksmixer.com/drink11121.html" }, { "directions": "Stir together in a highball glass, and serve.", @@ -105102,7 +105102,7 @@ "Red Jak\u00ae energy drink" ], "title": "Absolutely Jak'd recipe", - "url": "http://www.drinksmixer.com/drink11122.html" + "url": "https://www.drinksmixer.com/drink11122.html" }, { "directions": "Add all ingredients to a cocktail shaker half-filled with ice cubes. Shake well and strain into a highball glass rimmed with lemon zest and sugar.", @@ -105114,7 +105114,7 @@ "lemon juice" ], "title": "ACID Pitchshifter recipe", - "url": "http://www.drinksmixer.com/drink11123.html" + "url": "https://www.drinksmixer.com/drink11123.html" }, { "directions": "Add the vodka, Bailey's irish cream and 7-up to an old-fashioned glass filled with ice cubes, and serve.", @@ -105124,7 +105124,7 @@ "7-Up\u00ae soda" ], "title": "After Five #2 recipe", - "url": "http://www.drinksmixer.com/drink11124.html" + "url": "https://www.drinksmixer.com/drink11124.html" }, { "directions": "Pour the Jagermeister and Malibu coconut rum into a 2-oz shot glass, then pour a little Bailey's Irish Cream around the edge so you get tendrils into the mixture. Float a bit of 151 on the top and light. Blow out after a couple of seconds & shoot. Goes down smooth, then the 151 burn hits - hence the name Afterburn.", @@ -105135,7 +105135,7 @@ "Bacardi\u00ae 151 rum" ], "title": "Afterburn recipe", - "url": "http://www.drinksmixer.com/drink11125.html" + "url": "https://www.drinksmixer.com/drink11125.html" }, { "directions": "Stir in an old-fashioned glass, and serve.", @@ -105145,7 +105145,7 @@ "Southern Comfort\u00ae peach liqueur" ], "title": "Agent Orange #3 recipe", - "url": "http://www.drinksmixer.com/drink11126.html" + "url": "https://www.drinksmixer.com/drink11126.html" }, { "directions": "Roughly pour the ingredients together in similar proportions into a shot glass, making sure you finish with the Bailey's - which should sink to the bottom then swirl through the blue.", @@ -105155,7 +105155,7 @@ "Bailey's\u00ae Irish cream" ], "title": "Agua recipe", - "url": "http://www.drinksmixer.com/drink11127.html" + "url": "https://www.drinksmixer.com/drink11127.html" }, { "directions": "Very similar to a normal Agua. Roughly put the ingredients together in similar proportions into a shot glass, making sure you finish with the Bailey's - which should sink to the bottom then swirl through the blue-green.", @@ -105166,7 +105166,7 @@ "Bailey's\u00ae Irish cream" ], "title": "Agua Mouthwash recipe", - "url": "http://www.drinksmixer.com/drink11128.html" + "url": "https://www.drinksmixer.com/drink11128.html" }, { "directions": "Pour the Jack Daniel's, Southern Comfort and raspberry schnapps into a highball glass filled with ice cubes. Fill with cranberry juice, top with a splash of sour mix, and serve.", @@ -105178,7 +105178,7 @@ "sweet and sour mix" ], "title": "Alaskan Thunder recipe", - "url": "http://www.drinksmixer.com/drink11129.html" + "url": "https://www.drinksmixer.com/drink11129.html" }, { "directions": "Pour the vanilla vodka and coffee liqueur over ice cubes in an old-fashioned glass. Fill with light cream and serve.", @@ -105188,7 +105188,7 @@ "light cream" ], "title": "Albino Russian recipe", - "url": "http://www.drinksmixer.com/drink11130.html" + "url": "https://www.drinksmixer.com/drink11130.html" }, { "directions": "Combine all ingredients into a blender and blend for 30 seconds. Add a few cubes of ice to the blend if you prefer a frozen drink. Pour contents into a tall glass and enjoy.", @@ -105200,7 +105200,7 @@ "milk" ], "title": "Alco Choco Milkshake recipe", - "url": "http://www.drinksmixer.com/drink11131.html" + "url": "https://www.drinksmixer.com/drink11131.html" }, { "directions": "Pour both ingredients over ice in a large cocktail glass, and serve.", @@ -105209,7 +105209,7 @@ "Hpnotiq\u00ae liqueur" ], "title": "Alize and Hpno recipe", - "url": "http://www.drinksmixer.com/drink11132.html" + "url": "https://www.drinksmixer.com/drink11132.html" }, { "directions": "Stir ingredients over ice cubes in a highball glass, and serve.", @@ -105220,7 +105220,7 @@ "tonic water" ], "title": "Allegro recipe", - "url": "http://www.drinksmixer.com/drink11133.html" + "url": "https://www.drinksmixer.com/drink11133.html" }, { "directions": "Mix the Amaretto and Bailey's together in a cocktail shaker; strain into a coffee mug. Add milk to taste/to fill the mug, and serve.", @@ -105230,7 +105230,7 @@ "milk" ], "title": "Almond Fog recipe", - "url": "http://www.drinksmixer.com/drink11134.html" + "url": "https://www.drinksmixer.com/drink11134.html" }, { "directions": "Pour both ingredients into a small old-fashioned glass. Add a few grains of grinded coffee. Mix with a spoon, drink a shot. ", @@ -105239,7 +105239,7 @@ "amaretto almond liqueur" ], "title": "Almond Gravy recipe", - "url": "http://www.drinksmixer.com/drink11135.html" + "url": "https://www.drinksmixer.com/drink11135.html" }, { "directions": "Boil some water and place a sugar cube in a coffee mug. Pour over the amaretto, then add the hot water and stir until dissolved. Add milk to taste, and serve.", @@ -105250,7 +105250,7 @@ "milk" ], "title": "Almond Grog recipe", - "url": "http://www.drinksmixer.com/drink11136.html" + "url": "https://www.drinksmixer.com/drink11136.html" }, { "directions": "Measure in a cocktail shaker with ice. Strain into a chilled martini glass, and serve.", @@ -105260,7 +105260,7 @@ "Frangelico\u00ae hazelnut liqueur" ], "title": "Almond Joy #3 recipe", - "url": "http://www.drinksmixer.com/drink11137.html" + "url": "https://www.drinksmixer.com/drink11137.html" }, { "directions": "Fill a highball glass with ice cubes. Add the Ice 101 and Tequila Rose. Fill with equal parts Bailey's Irish Cream and your favorite amaretto. Stir and serve.", @@ -105271,7 +105271,7 @@ "amaretto almond liqueur" ], "title": "Alrighty Then! recipe", - "url": "http://www.drinksmixer.com/drink11138.html" + "url": "https://www.drinksmixer.com/drink11138.html" }, { "directions": "Shake the amarula cream, vodka and coffee liqueur together in a cocktail shaker. Strain into a cocktail glass. Top up with cola, and serve.", @@ -105282,7 +105282,7 @@ "Coca-Cola\u00ae" ], "title": "Amalyzer recipe", - "url": "http://www.drinksmixer.com/drink11139.html" + "url": "https://www.drinksmixer.com/drink11139.html" }, { "directions": "Pour amaretto, sweet and sour mix, and bacardi into a cocktail shaker. Shake and serve over ice in an old-fashioned glass.", @@ -105292,7 +105292,7 @@ "Bacardi\u00ae 151 rum" ], "title": "Amaretto 151 recipe", - "url": "http://www.drinksmixer.com/drink11140.html" + "url": "https://www.drinksmixer.com/drink11140.html" }, { "directions": "Mix Amaretto di Saronno in equal parts with E&J or if u choose a bit more E&J. Mix to your taste with sweet and sour mix in a shaker. Add ice and shake well. Pour into your favorite glass and watch for the hook - its real slow and tasty.", @@ -105302,7 +105302,7 @@ "sweet and sour mix" ], "title": "Amaretto Chi-City recipe", - "url": "http://www.drinksmixer.com/drink11141.html" + "url": "https://www.drinksmixer.com/drink11141.html" }, { "directions": "Add all ingredients to a cocktail shaker half-filled with ice cubes. Shake vigorously, pour over ice in a highball glass, and serve.", @@ -105314,7 +105314,7 @@ "pineapple juice" ], "title": "Amaretto Sour #2 recipe", - "url": "http://www.drinksmixer.com/drink11142.html" + "url": "https://www.drinksmixer.com/drink11142.html" }, { "directions": "Pour the amaretto, lemon juice, and simple syrup into a shaker two-thirds full of ice cubes. Shake well. Strain into a chilled sour glass. Garnish with the cherry, and serve.", @@ -105325,7 +105325,7 @@ "maraschino cherry" ], "title": "Amaretto Sour #3 recipe", - "url": "http://www.drinksmixer.com/drink11143.html" + "url": "https://www.drinksmixer.com/drink11143.html" }, { "directions": "Shake all ingredients together with ice in a cocktail shaker. Strain into a large shot glass or small old-fashioned glass, and serve.", @@ -105336,7 +105336,7 @@ "orange juice" ], "title": "Amaretto Sourball recipe", - "url": "http://www.drinksmixer.com/drink11144.html" + "url": "https://www.drinksmixer.com/drink11144.html" }, { "directions": "Blend all ingredients with crushed ice and pour into a cocktail glass. Garnish with a cherry and serve.", @@ -105347,7 +105347,7 @@ "coconut milk" ], "title": "Amarula Colada recipe", - "url": "http://www.drinksmixer.com/drink11145.html" + "url": "https://www.drinksmixer.com/drink11145.html" }, { "directions": "Add all ingredients to a cocktail shaker half-filled with ice cubes. Shake vigorously, pour into a highball glass, and serve.", @@ -105358,7 +105358,7 @@ "pineapple juice" ], "title": "Ambrosia Martini recipe", - "url": "http://www.drinksmixer.com/drink11147.html" + "url": "https://www.drinksmixer.com/drink11147.html" }, { "directions": "Pour the vodka into a collins glass filled with ice cubes. Add the juices, gently top with passoa, and serve.", @@ -105369,7 +105369,7 @@ "pineapple juice" ], "title": "Amy's Risky Passion recipe", - "url": "http://www.drinksmixer.com/drink11148.html" + "url": "https://www.drinksmixer.com/drink11148.html" }, { "directions": "Layer ingredients in order into a shot glass - Cointreau on top, and serve.", @@ -105379,7 +105379,7 @@ "Cointreau\u00ae orange liqueur" ], "title": "Anabolic Steroid #2 recipe", - "url": "http://www.drinksmixer.com/drink11149.html" + "url": "https://www.drinksmixer.com/drink11149.html" }, { "directions": "Add the Ice 101 to a tall glass. Fill to the top with chocolate milk. Mix very thoroughly and keep drink as cold as possible until finished. Tastes exactly like Andes Candies.", @@ -105388,7 +105388,7 @@ "chocolate milk" ], "title": "Andes Candies recipe", - "url": "http://www.drinksmixer.com/drink11150.html" + "url": "https://www.drinksmixer.com/drink11150.html" }, { "directions": "Blend all ingredients in a blender until smooth. Pour into two hurricane glasses and serve chilled.", @@ -105400,7 +105400,7 @@ "crushed ice" ], "title": "Andy's Ivory recipe", - "url": "http://www.drinksmixer.com/drink11151.html" + "url": "https://www.drinksmixer.com/drink11151.html" }, { "directions": "Stir ingredients together in a highball glass filled with ice cubes, and serve.", @@ -105409,7 +105409,7 @@ "orange soda" ], "title": "Angel Highball recipe", - "url": "http://www.drinksmixer.com/drink11152.html" + "url": "https://www.drinksmixer.com/drink11152.html" }, { "directions": "Shake all ingredients together in a cocktail shaker half-filled with ice cubes. Pour into a cocktail glass, and serve. ", @@ -105419,7 +105419,7 @@ "Tropicana\u00ae orange juice" ], "title": "Angela's Cantaloupe Martini recipe", - "url": "http://www.drinksmixer.com/drink11154.html" + "url": "https://www.drinksmixer.com/drink11154.html" }, { "directions": "Pour 1/2 oz. of each; Stolichnaya Rasberi vodka, Absolut Mandrin vodka, Midori melon liqueur and Malibu coconut rum over ice in a cocktail glass. Fill with equal amounts of cranberry juice, orange juice and pineapple juice, and serve.", @@ -105433,7 +105433,7 @@ "pineapple juice" ], "title": "Angelfire recipe", - "url": "http://www.drinksmixer.com/drink11155.html" + "url": "https://www.drinksmixer.com/drink11155.html" }, { "directions": "Build in a glass over ice.", @@ -105442,7 +105442,7 @@ "lychee soda" ], "title": "Animazement recipe", - "url": "http://www.drinksmixer.com/drink11156.html" + "url": "https://www.drinksmixer.com/drink11156.html" }, { "directions": "Pour into a shot glass and serve.", @@ -105452,7 +105452,7 @@ "Crown Royal\u00ae Canadian whisky" ], "title": "Anthrax recipe", - "url": "http://www.drinksmixer.com/drink11157.html" + "url": "https://www.drinksmixer.com/drink11157.html" }, { "directions": "Add all ingredients to a cocktail shaker half-filled with ice cubes. Shake well, strain into a cocktail glass, and serve.", @@ -105463,7 +105463,7 @@ "Mozart\u00ae chocolate liqueur" ], "title": "Antoines Tarred Image recipe", - "url": "http://www.drinksmixer.com/drink11158.html" + "url": "https://www.drinksmixer.com/drink11158.html" }, { "directions": "Pour the Jim Beam into a collins glass. Fill with Sunkist soda depending on how strong you want it. Stir and serve.", @@ -105472,7 +105472,7 @@ "Sunkist\u00ae orange soda" ], "title": "Kist from Jim recipe", - "url": "http://www.drinksmixer.com/drink11159.html" + "url": "https://www.drinksmixer.com/drink11159.html" }, { "directions": "Add the first three ingredients into an iced shaker. Shake to the rhythm of your favorite summertime tune. Strain into a cocktail glass, and sink the grenadine to the bottom. Gently stir the grenadine up to give the drink a peach color, and serve.", @@ -105483,7 +105483,7 @@ "grenadine syrup" ], "title": "Apeach Martini recipe", - "url": "http://www.drinksmixer.com/drink11160.html" + "url": "https://www.drinksmixer.com/drink11160.html" }, { "directions": "Stir ingredients together in an old fashioned glass and serve.", @@ -105493,7 +105493,7 @@ "DeKuyper\u00ae Hot Damn cinnamon schnapps" ], "title": "Apple Jacks recipe", - "url": "http://www.drinksmixer.com/drink11161.html" + "url": "https://www.drinksmixer.com/drink11161.html" }, { "directions": "Chill a champagne or cocktail glass. Shake ingredients in a cocktail shaker half-filled with ice cubes. Strain into glass and serve.", @@ -105503,7 +105503,7 @@ "apple juice" ], "title": "Apple Martini #3 recipe", - "url": "http://www.drinksmixer.com/drink11162.html" + "url": "https://www.drinksmixer.com/drink11162.html" }, { "directions": "Pour liqueurs into a shot glass, top with cinnamon and serve.", @@ -105513,7 +105513,7 @@ "cinnamon" ], "title": "Apple Pie Shot #4 recipe", - "url": "http://www.drinksmixer.com/drink11163.html" + "url": "https://www.drinksmixer.com/drink11163.html" }, { "directions": "Put the juice, cider, and cinnamon sticks into a pan and let simmer on the stove for about 2 hours (not boil). Turn off heat, pour in 1 liter or 2/3 liter Everclear (no taste of alcohol) to the batch and pour into punch cups. Very potent, tastes exactly like apple pie. ", @@ -105524,7 +105524,7 @@ "Everclear\u00ae alcohol" ], "title": "Apple Pie Punch recipe", - "url": "http://www.drinksmixer.com/drink11164.html" + "url": "https://www.drinksmixer.com/drink11164.html" }, { "directions": "Chill all ingredients in a mixing tin over ice. Rim the glass with cinnamon and sugar (liberally). Shake and strain into a margarita glass, there will be usually be a lot left in the tin, for seconds or thirds. Sauza tequila (a light tequila) is recommended for this cocktail. Enjoy, tastes just like sweet apple pie!", @@ -105535,7 +105535,7 @@ "sweet and sour mix" ], "title": "Apple Pie Margarita recipe", - "url": "http://www.drinksmixer.com/drink11165.html" + "url": "https://www.drinksmixer.com/drink11165.html" }, { "directions": "Peel grapefruit and orange and remove all the seeds and pith. Core the apple and chop coarsely. Place all the fruits in a blender until smooth. Chill in the refrigereator for about 30-45 mins. Pour into a jug, add lemon juice and syrup and stir well to mix. Fill glass with ice shavings or ice cubes, pour and garnish according to your liking.", @@ -105548,7 +105548,7 @@ "ice cubes" ], "title": "Apple Tango recipe", - "url": "http://www.drinksmixer.com/drink11166.html" + "url": "https://www.drinksmixer.com/drink11166.html" }, { "directions": "Pour both ingredients into a cocktail shaker half-filled with ice cubes. Shake well, strain into a cocktail glass, and serve.", @@ -105557,7 +105557,7 @@ "cranberry juice" ], "title": "Appletini #2 recipe", - "url": "http://www.drinksmixer.com/drink11167.html" + "url": "https://www.drinksmixer.com/drink11167.html" }, { "directions": "Stir ingredients with/without ice in a hurricane glass, and serve.", @@ -105568,7 +105568,7 @@ "Captain Morgan\u00ae Parrot Bay mango rum" ], "title": "3 Fingers of Ron Burgundy recipe", - "url": "http://www.drinksmixer.com/drink11168.html" + "url": "https://www.drinksmixer.com/drink11168.html" }, { "directions": "Pour equal parts Goldschlager and apple vodka directly into a glass of your choice (brand of vodka also of your choice, although good quality vodka is recommended), make sure they have mixed thoroughly, and drink. Ice is optional; the drink is better cold. ", @@ -105582,7 +105582,7 @@ "Smirnoff\u00ae Green Apple Twist vodka" ], "title": "Appleschlager recipe", - "url": "http://www.drinksmixer.com/drink11169.html" + "url": "https://www.drinksmixer.com/drink11169.html" }, { "directions": "Mix all ingredients in a cocktail shaker half-filled with ice cubes. Shake and pour into a chilled cocktail glass, and serve.", @@ -105592,7 +105592,7 @@ "sweet and sour mix" ], "title": "Aquatini recipe", - "url": "http://www.drinksmixer.com/drink11170.html" + "url": "https://www.drinksmixer.com/drink11170.html" }, { "directions": "Add pink lemonade to the Everclear. Then add the watermelon Smirnoff. Top with whipped cream and take it to the head.", @@ -105603,7 +105603,7 @@ "whipped cream" ], "title": "Ashy Larry recipe", - "url": "http://www.drinksmixer.com/drink11171.html" + "url": "https://www.drinksmixer.com/drink11171.html" }, { "directions": "Pour the four ingredients into a cocktail shaker over ice. Shake very well. Pour the shaken mixture into a cocktail glass over ice. Serve with a cherry and a orange slice.", @@ -105614,7 +105614,7 @@ "Blue Curacao liqueur" ], "title": "Asskicker recipe", - "url": "http://www.drinksmixer.com/drink11172.html" + "url": "https://www.drinksmixer.com/drink11172.html" }, { "directions": "Add the vodka, everclear, coconut juice and pineapple juice to a cocktail shaker half-filled with ice cubes. Shake well, and pour into a collins glass. Fill with 7-Up, stir and serve.", @@ -105626,7 +105626,7 @@ "7-Up\u00ae soda" ], "title": "Asskicker #2 recipe", - "url": "http://www.drinksmixer.com/drink11173.html" + "url": "https://www.drinksmixer.com/drink11173.html" }, { "directions": "Pour the creme de menthe into a sugar frosted highball glass. Add the vodka and a few ice cubes. Top with lemonade, and serve. ", @@ -105636,7 +105636,7 @@ "lemonade" ], "title": "Atomic Green recipe", - "url": "http://www.drinksmixer.com/drink11174.html" + "url": "https://www.drinksmixer.com/drink11174.html" }, { "directions": "Fill a glass with roughly 4 - 6oz. of Sparks alcoholic energy drink. Drop in a shot of Jagermeister and shoot.", @@ -105645,7 +105645,7 @@ "Sparks\u00ae energy drink" ], "title": "Atomic Jager Bomb recipe", - "url": "http://www.drinksmixer.com/drink11175.html" + "url": "https://www.drinksmixer.com/drink11175.html" }, { "directions": "Add all ingredients to a cocktail shaker with a few ice cubes. Shake well, strain into an old-fashioned glass, and serve.", @@ -105659,7 +105659,7 @@ "orange juice" ], "title": "August Moon recipe", - "url": "http://www.drinksmixer.com/drink11176.html" + "url": "https://www.drinksmixer.com/drink11176.html" }, { "directions": "Add the vodka and Roncoco liqueur to a a cocktail shaker and shake with ice. Pour into a shot glass and top with a bit of grenadine. Drink the shot, cover the glass with your hand and with a straw, inhale the alcohol vapor that lasts in the shot (with your hand still on it).", @@ -105669,7 +105669,7 @@ "grenadine syrup" ], "title": "Axel recipe", - "url": "http://www.drinksmixer.com/drink11177.html" + "url": "https://www.drinksmixer.com/drink11177.html" }, { "directions": "Shake ingredients in a cocktail shaker with ice. Pour over ice in an old-fashioned glass, and serve.", @@ -105679,7 +105679,7 @@ "Irish cream" ], "title": "B-52 #3 recipe", - "url": "http://www.drinksmixer.com/drink11178.html" + "url": "https://www.drinksmixer.com/drink11178.html" }, { "directions": "Pour ingredients in order into a highball glass filled with ice cubes, and serve.", @@ -105690,7 +105690,7 @@ "Squirt\u00ae citrus soda" ], "title": "Bacardi Big Skeet recipe", - "url": "http://www.drinksmixer.com/drink11180.html" + "url": "https://www.drinksmixer.com/drink11180.html" }, { "directions": "Stir ingredients together in a collins glass filled with ice cubes, and serve.", @@ -105699,7 +105699,7 @@ "Pepsi\u00ae cola" ], "title": "Bacardi Limon and Pepsi recipe", - "url": "http://www.drinksmixer.com/drink11181.html" + "url": "https://www.drinksmixer.com/drink11181.html" }, { "directions": "Add all ingredients to a cocktail shaker half-filled with ice cubes. Shake well, strain into a 2-oz shot glass, and serve.", @@ -105710,7 +105710,7 @@ "pineapple juice" ], "title": "Bacio del Muerte recipe", - "url": "http://www.drinksmixer.com/drink11182.html" + "url": "https://www.drinksmixer.com/drink11182.html" }, { "directions": "Add the rum and amaretto to a wine glass, and ignite the liquid. Cover the wine glass with the palm of your hand. Lift your hand off of the rim just a little on one side. Suck out the fumes, without exhaling take the shot and then exhale. ", @@ -105719,7 +105719,7 @@ "amaretto almond liqueur" ], "title": "Backdraft #2 recipe", - "url": "http://www.drinksmixer.com/drink11183.html" + "url": "https://www.drinksmixer.com/drink11183.html" }, { "directions": "Combine all ingredients into a shot glass, stir and drink.", @@ -105730,7 +105730,7 @@ "Henry McKenna\u00ae bourbon whiskey" ], "title": "Back in the Old Days 1963 recipe", - "url": "http://www.drinksmixer.com/drink11184.html" + "url": "https://www.drinksmixer.com/drink11184.html" }, { "directions": "Add the vodka, orange juice and 7-up to a collins glass filled with ice cubes, and serve.", @@ -105740,7 +105740,7 @@ "7-Up\u00ae soda" ], "title": "Back Packer recipe", - "url": "http://www.drinksmixer.com/drink11185.html" + "url": "https://www.drinksmixer.com/drink11185.html" }, { "directions": "Stir ingredients together and serve in a cup.", @@ -105751,7 +105751,7 @@ "fruit punch" ], "title": "Bad News Bear recipe", - "url": "http://www.drinksmixer.com/drink11186.html" + "url": "https://www.drinksmixer.com/drink11186.html" }, { "directions": "Shake all ingredients together with ice in a cocktail shaker. Pour with ice into a hurricane glass and serve with an orange slice.", @@ -105763,7 +105763,7 @@ "pineapple juice" ], "title": "Bahama Mama #4 recipe", - "url": "http://www.drinksmixer.com/drink11187.html" + "url": "https://www.drinksmixer.com/drink11187.html" }, { "directions": "Stir ingredients together in a highball glass filled with ice cubes, and serve.", @@ -105772,7 +105772,7 @@ "Coca-Cola\u00ae Diet Lime Coke" ], "title": "Bahamas Bacardi recipe", - "url": "http://www.drinksmixer.com/drink11188.html" + "url": "https://www.drinksmixer.com/drink11188.html" }, { "directions": "Put 1 or 1/2 teaspoon of salt into a shot glass. Pour the tequila in. Then if you have the skills, layer the irish cream on top (or mix). Shoot.\r", @@ -105782,7 +105782,7 @@ "salt" ], "title": "Ball Sweat recipe", - "url": "http://www.drinksmixer.com/drink11189.html" + "url": "https://www.drinksmixer.com/drink11189.html" }, { "directions": "Add the tequila to a shot glass; top with 7-Up and serve.", @@ -105791,7 +105791,7 @@ "7-Up\u00ae soda" ], "title": "Bam Bam recipe", - "url": "http://www.drinksmixer.com/drink11190.html" + "url": "https://www.drinksmixer.com/drink11190.html" }, { "directions": "Add all ingredients to a cocktail shaker with several ice cubes. Shake once, pour into a large cocktail or hurricane glass and serve with a slice of lime.", @@ -105801,7 +105801,7 @@ "cranberry juice" ], "title": "Bamm Passion recipe", - "url": "http://www.drinksmixer.com/drink11191.html" + "url": "https://www.drinksmixer.com/drink11191.html" }, { "directions": "Add all ingredients to a blender and blend for 1 minute until thick and smooth consistency. Pour into a champagne flute, garnish with a strawberry and a straw, and serve.", @@ -105814,7 +105814,7 @@ "ice" ], "title": "Banana Rocket recipe", - "url": "http://www.drinksmixer.com/drink11192.html" + "url": "https://www.drinksmixer.com/drink11192.html" }, { "directions": "Pour all ingredients into a cocktail shaker half-filled with ice, but be careful to not build up too much pressure from the cream soda. Mix, then pour into a large cocktail glass and garnish as desired. Drink slowly.", @@ -105824,7 +105824,7 @@ "cream soda" ], "title": "Banana Split #3 recipe", - "url": "http://www.drinksmixer.com/drink11193.html" + "url": "https://www.drinksmixer.com/drink11193.html" }, { "directions": "Add all ingredients to a cocktail shaker half-filled with ice cubes. Shake well. Strain into a parfait glass over ice, and serve.", @@ -105837,7 +105837,7 @@ "half-and-half" ], "title": "Banana Split #4 recipe", - "url": "http://www.drinksmixer.com/drink11194.html" + "url": "https://www.drinksmixer.com/drink11194.html" }, { "directions": "Add all ingredients to a blender with ice, to make a smoothie-like consistancy. Pour into a pina-colada glass, garnish as desired and serve.", @@ -105846,7 +105846,7 @@ "yoghurt" ], "title": "Bacardi Smoothie recipe", - "url": "http://www.drinksmixer.com/drink11195.html" + "url": "https://www.drinksmixer.com/drink11195.html" }, { "directions": "Combine ingredients in a cocktail shaker with ice. Shake and strain into a shot glass, and serve.", @@ -105856,7 +105856,7 @@ "creme de bananes" ], "title": "Barenana Popsicle recipe", - "url": "http://www.drinksmixer.com/drink11196.html" + "url": "https://www.drinksmixer.com/drink11196.html" }, { "directions": "Fill a shot glass with 1/2 DeKuyper Grape Pucker schnapps and 1/2 Bacardi Limon. Fill a lowball or old-fashioned glass with enough red bull to reach top of shot glass when dropped in, then drop the shot glass in and drink.", @@ -105866,7 +105866,7 @@ "Red Bull\u00ae energy drink" ], "title": "Bazooka Joe #3 recipe", - "url": "http://www.drinksmixer.com/drink11197.html" + "url": "https://www.drinksmixer.com/drink11197.html" }, { "directions": "Combine ingredients in a cocktail shaker half-filled with ice cubes. Shake well, strain into a frosty champagne flute, and serve.", @@ -105877,7 +105877,7 @@ "half-and-half" ], "title": "BC Snowball recipe", - "url": "http://www.drinksmixer.com/drink11198.html" + "url": "https://www.drinksmixer.com/drink11198.html" }, { "directions": "Combine ingredients into a stainless steel shaker over ice and shake until completely cold. Strain into an old-fashioned glass, and serve.", @@ -105887,7 +105887,7 @@ "cranberry juice" ], "title": "Bear Juice recipe", - "url": "http://www.drinksmixer.com/drink11199.html" + "url": "https://www.drinksmixer.com/drink11199.html" }, { "directions": "Stir ingredients together over ice in an old-fashioned glass, and serve.", @@ -105896,7 +105896,7 @@ "tomato juice" ], "title": "Beaver Rub recipe", - "url": "http://www.drinksmixer.com/drink11200.html" + "url": "https://www.drinksmixer.com/drink11200.html" }, { "directions": "Mix the DeKuyper apple pucker and Goldschlager in a shaker with ice. Strain into a shot glass. Top with about a 1/4\" of amaretto, and serve.", @@ -105906,7 +105906,7 @@ "amaretto almond liqueur" ], "title": "Apple Pie Shot #5 recipe", - "url": "http://www.drinksmixer.com/drink11201.html" + "url": "https://www.drinksmixer.com/drink11201.html" }, { "directions": "Shake ingredients together in a cocktail shaker half-filled with ice cubes. Strain into highball glass, and serve. ", @@ -105916,7 +105916,7 @@ "pineapple juice" ], "title": "Beaver Shot recipe", - "url": "http://www.drinksmixer.com/drink11202.html" + "url": "https://www.drinksmixer.com/drink11202.html" }, { "directions": "Preferably use a regular beer (blonde) or a light beer. Pour clamato into the glass (3-4 oz for a 12 oz beer) and top with beer. Very pleasant in hot weather or when you want to cut down on alcohol.", @@ -105925,7 +105925,7 @@ "clamato juice" ], "title": "Beer and Clamato recipe", - "url": "http://www.drinksmixer.com/drink11204.html" + "url": "https://www.drinksmixer.com/drink11204.html" }, { "directions": "Add both ingredients to a beer mug, and serve.", @@ -105934,7 +105934,7 @@ "7-Up\u00ae soda" ], "title": "Beer Cooler recipe", - "url": "http://www.drinksmixer.com/drink11205.html" + "url": "https://www.drinksmixer.com/drink11205.html" }, { "directions": "Pour Red Bull into a small glass. Add vodka. In a double-shot glass pour the peach schnapps and carefully place the shot glass into the small glass containing the Red Bull and vodka. Serve.", @@ -105944,7 +105944,7 @@ "Red Bull\u00ae energy drink" ], "title": "Beeta Bomb recipe", - "url": "http://www.drinksmixer.com/drink11206.html" + "url": "https://www.drinksmixer.com/drink11206.html" }, { "directions": "Add the vodka, orange curacao and triple sec to a cocktail shaker half-filled with ice cubes. Shake well and strain into a martini cocktail glass. Float the cranberry juice, then the soda water, the the ginger ale. Garnish with a clementine wedge (if available) or a lightly flamed orange peel twist, and serve.", @@ -105957,7 +105957,7 @@ "ginger ale" ], "title": "Clementine Martini recipe", - "url": "http://www.drinksmixer.com/drink11207.html" + "url": "https://www.drinksmixer.com/drink11207.html" }, { "directions": "Pour all ingredients into a cocktail shaker half-filled with ice cubes. Shake well, and strain into a margarita glass (salt rim if desired). Makes 2 servings.", @@ -105969,7 +105969,7 @@ "triple sec" ], "title": "Margarita Cocktail #4 recipe", - "url": "http://www.drinksmixer.com/drink11208.html" + "url": "https://www.drinksmixer.com/drink11208.html" }, { "directions": "Shake all ingredients together in a cocktail shaker half-filled with ice cubes. Pour into shot glasses, and serve.", @@ -105979,7 +105979,7 @@ "Red Bull\u00ae energy drink" ], "title": "Big Balls recipe", - "url": "http://www.drinksmixer.com/drink11210.html" + "url": "https://www.drinksmixer.com/drink11210.html" }, { "directions": "Stir ingredients together in a highball glass, and serve.", @@ -105988,7 +105988,7 @@ "Sierra Mist\u00ae soda" ], "title": "Big Bear recipe", - "url": "http://www.drinksmixer.com/drink11211.html" + "url": "https://www.drinksmixer.com/drink11211.html" }, { "directions": "Pour the Midori melon liqueur into a pint glass or 500ml tall glass. Fill to the top with ice. Carefully add the vodka which should remain seperate above the Midori. Pour orange and cranberry juice in equal measures until the glass is 3/4 full. Pour a ring of cherry brandy. Add 1/3 of a can of red-bull (or similar energy drink), and finally pour a ring of galliano on top, and serve.\r", @@ -106002,7 +106002,7 @@ "Galliano\u00ae herbal liqueur" ], "title": "Big Red Hooter #2 recipe", - "url": "http://www.drinksmixer.com/drink11212.html" + "url": "https://www.drinksmixer.com/drink11212.html" }, { "directions": "Add equal parts of each ingredient to a cocktail shaker half-filled with ice cubes. Shake well, strain into a chilled martini glass with an orange slice, and serve.", @@ -106012,7 +106012,7 @@ "peach schnapps" ], "title": "Bikini Martini recipe", - "url": "http://www.drinksmixer.com/drink11213.html" + "url": "https://www.drinksmixer.com/drink11213.html" }, { "directions": "Add all ingredients in equal parts to a cocktail shaker with ice and shake well. Strain into a shot glass, and serve.", @@ -106023,7 +106023,7 @@ "watermelon mix" ], "title": "Bill Violator recipe", - "url": "http://www.drinksmixer.com/drink11214.html" + "url": "https://www.drinksmixer.com/drink11214.html" }, { "directions": "Add all ingredients to a cocktail shaker half-filled with ice cubes. Shake well, strain into a margarita glass, and serve.", @@ -106034,7 +106034,7 @@ "Barenjager\u00ae honey liqueur" ], "title": "Biohazard recipe", - "url": "http://www.drinksmixer.com/drink11215.html" + "url": "https://www.drinksmixer.com/drink11215.html" }, { "directions": "Pour the Crown Royal and Peachtree schnapps into a shot glass. Fill a plastic cup or old-fashioned glass with sufficient Red Bull (and with/without ice), then drop the shot into it, and serve.", @@ -106044,7 +106044,7 @@ "Red Bull\u00ae energy drink" ], "title": "Bitch Blaster recipe", - "url": "http://www.drinksmixer.com/drink11216.html" + "url": "https://www.drinksmixer.com/drink11216.html" }, { "directions": "Pour the amaretto into a highball glass half-filled with ice cubes. Add the sour mix and top with orange soda. Add a splash of grenadine and a cherry for garnish, and serve.", @@ -106055,7 +106055,7 @@ "grenadine syrup" ], "title": "Bitchin Orange recipe", - "url": "http://www.drinksmixer.com/drink11218.html" + "url": "https://www.drinksmixer.com/drink11218.html" }, { "directions": "Make tea, mix with juice and Campari. Stir well. Pomegranate juice can probably substituted with 100% cranberry juice as well. Tazo tea could be subsituted with a strong hibiscus tea, or another strong fruity tea. Use 1 or 2 ounces of Campari depending upon how bitter you want the drink. If you like your tea sweet add 1 tsp of sugar. ", @@ -106066,7 +106066,7 @@ "sugar" ], "title": "Bitter Tea recipe", - "url": "http://www.drinksmixer.com/drink11219.html" + "url": "https://www.drinksmixer.com/drink11219.html" }, { "directions": "Add all ingredients (except Campari) to a cocktail shaker half-filled with ice cubes. Shake well and pour into a cocktail glass. Add the Campari to create a multi-colored cocktail and serve.", @@ -106079,7 +106079,7 @@ "orange juice" ], "title": "Bittersweet Symphony recipe", - "url": "http://www.drinksmixer.com/drink11220.html" + "url": "https://www.drinksmixer.com/drink11220.html" }, { "directions": "Float the Johnnie Walker scotch over the Jagermeister, and serve.", @@ -106088,7 +106088,7 @@ "Jagermeister\u00ae herbal liqueur" ], "title": "Black Jesus recipe", - "url": "http://www.drinksmixer.com/drink11222.html" + "url": "https://www.drinksmixer.com/drink11222.html" }, { "directions": "Pour over ice cubes in a whiskey sour glass. Stir, and serve.", @@ -106098,7 +106098,7 @@ "coffee liqueur" ], "title": "Black Metal recipe", - "url": "http://www.drinksmixer.com/drink11223.html" + "url": "https://www.drinksmixer.com/drink11223.html" }, { "directions": "Fill half a pint glass with the Smirnoff Black Ice and then slowly fill the rest of the glass with Guinness. The two should stay seperated. Serve.", @@ -106107,7 +106107,7 @@ "Smirnoff\u00ae Black Ice" ], "title": "Black on Black recipe", - "url": "http://www.drinksmixer.com/drink11224.html" + "url": "https://www.drinksmixer.com/drink11224.html" }, { "directions": "Stir all ingredients together in a beer glass. Garnish with a cherry and lemon wedge. When done right it should taste like a grape otter pop.", @@ -106122,7 +106122,7 @@ "sweet and sour mix" ], "title": "Black Opal recipe", - "url": "http://www.drinksmixer.com/drink11225.html" + "url": "https://www.drinksmixer.com/drink11225.html" }, { "directions": "Stir together in a highball glass filled with ice cubes, and serve.", @@ -106131,7 +106131,7 @@ "Fresca\u00ae Black Cherry soda" ], "title": "Black Sea Urchin recipe", - "url": "http://www.drinksmixer.com/drink11226.html" + "url": "https://www.drinksmixer.com/drink11226.html" }, { "directions": "Pour the Baja Rosa into a shot glass. Drizzle the black sambuca on top, allow them to mix, and serve.", @@ -106140,7 +106140,7 @@ "black sambuca" ], "title": "Black Silk Panties recipe", - "url": "http://www.drinksmixer.com/drink11227.html" + "url": "https://www.drinksmixer.com/drink11227.html" }, { "directions": "Pour the amaretto into a large beer mug. Gently pour in the pint of Guinness, lightly stir, and serve.", @@ -106149,7 +106149,7 @@ "amaretto almond liqueur" ], "title": "Black Tooth #2 recipe", - "url": "http://www.drinksmixer.com/drink11228.html" + "url": "https://www.drinksmixer.com/drink11228.html" }, { "directions": "Stir together in an old-fashioned glass filled with ice cubes, and serve.", @@ -106158,7 +106158,7 @@ "Jack Daniel's\u00ae Tennessee whiskey" ], "title": "Blackjack recipe", - "url": "http://www.drinksmixer.com/drink11229.html" + "url": "https://www.drinksmixer.com/drink11229.html" }, { "directions": "Add the tomato juice, Tabasco, Worcestershire, and Jager into a cocktail shaker with ice cubes. Shake and strain into a highball glass. Garnish with a lime wedge if you like, and serve.", @@ -106169,7 +106169,7 @@ "Worcestershire sauce" ], "title": "Bleeding Nazi recipe", - "url": "http://www.drinksmixer.com/drink11230.html" + "url": "https://www.drinksmixer.com/drink11230.html" }, { "directions": "Pour the Coca-cola into a tall glass, followed by the vodka. Add just a splash of Bacardi rum just for taste. Sit back and enjoy.", @@ -106179,7 +106179,7 @@ "Bacardi\u00ae white rum" ], "title": "Blind Bat recipe", - "url": "http://www.drinksmixer.com/drink11231.html" + "url": "https://www.drinksmixer.com/drink11231.html" }, { "directions": "Pour together into a shot glass and serve.", @@ -106188,7 +106188,7 @@ "gin" ], "title": "Bloody Sleigh Ride recipe", - "url": "http://www.drinksmixer.com/drink11232.html" + "url": "https://www.drinksmixer.com/drink11232.html" }, { "directions": "Add ingredients to a cocktail shaker with a few ice cubes. Shake well, strain into a shot glass and serve.", @@ -106198,7 +106198,7 @@ "cranberry juice" ], "title": "Blood of Christ recipe", - "url": "http://www.drinksmixer.com/drink11233.html" + "url": "https://www.drinksmixer.com/drink11233.html" }, { "directions": "Pour ingredients into a cocktail shaker half-filled with ice. Shake and pour into a martini cocktail glass. Garnish with a slice of blood orange if available.", @@ -106208,7 +106208,7 @@ "orange juice" ], "title": "Blood Orange Martini recipe", - "url": "http://www.drinksmixer.com/drink11234.html" + "url": "https://www.drinksmixer.com/drink11234.html" }, { "directions": "Stir all ingredients together in a collins glass, and serve.", @@ -106219,7 +106219,7 @@ "cola" ], "title": "Bloodthirsty Pirate recipe", - "url": "http://www.drinksmixer.com/drink11236.html" + "url": "https://www.drinksmixer.com/drink11236.html" }, { "directions": "Stir the grenadine, strawberry daiquiri mix and Everclear together in a highball glass filled with ice cubes. Add the Von Dutch, and serve.", @@ -106230,7 +106230,7 @@ "grenadine syrup" ], "title": "Bloody Dutchman recipe", - "url": "http://www.drinksmixer.com/drink11237.html" + "url": "https://www.drinksmixer.com/drink11237.html" }, { "directions": "Stir ingredients together in a whiskey sour glass. Garnish with a lemon wedge, and serve.", @@ -106239,7 +106239,7 @@ "tomato juice" ], "title": "Bloody Jager recipe", - "url": "http://www.drinksmixer.com/drink11238.html" + "url": "https://www.drinksmixer.com/drink11238.html" }, { "directions": "Place the crushed popsicle into the bottom of a tall glass. Add vodka (to taste) and kool-aid. Stir gently, and serve.", @@ -106249,7 +106249,7 @@ "popsicle" ], "title": "Bloody Leech recipe", - "url": "http://www.drinksmixer.com/drink11239.html" + "url": "https://www.drinksmixer.com/drink11239.html" }, { "directions": "Pour the Hpnotiq into a tall glass with ice. Add the pineapple juice, then follow with a few splashes of grenadine. Stir and serve.", @@ -106259,7 +106259,7 @@ "grenadine syrup" ], "title": "Bloody Passion #2 recipe", - "url": "http://www.drinksmixer.com/drink11240.html" + "url": "https://www.drinksmixer.com/drink11240.html" }, { "directions": "Pour the liquor into a collins glass with 3 ice cubes. Add the Mountain Dew and lime juice, and lastly the Tropicana, and serve.", @@ -106274,7 +106274,7 @@ "lime juice" ], "title": "Bloody Urine recipe", - "url": "http://www.drinksmixer.com/drink11241.html" + "url": "https://www.drinksmixer.com/drink11241.html" }, { "directions": "Pour the spiced rum and Kool-Aid into a cocktail shaker half-filled with ice cubes. Shake well, pour into a highball glass (incl. ice) and serve.", @@ -106283,7 +106283,7 @@ "Kool-Aid\u00ae Cherry mix" ], "title": "Bloody Vampire recipe", - "url": "http://www.drinksmixer.com/drink11242.html" + "url": "https://www.drinksmixer.com/drink11242.html" }, { "directions": "Layer in a shot glass; Irish cream on top, and serve.", @@ -106292,7 +106292,7 @@ "Irish cream" ], "title": "Blowjob recipe", - "url": "http://www.drinksmixer.com/drink11244.html" + "url": "https://www.drinksmixer.com/drink11244.html" }, { "directions": "Stir together in a shot glass, and shoot.", @@ -106301,7 +106301,7 @@ "Bailey's\u00ae Irish cream" ], "title": "Blue and White recipe", - "url": "http://www.drinksmixer.com/drink11245.html" + "url": "https://www.drinksmixer.com/drink11245.html" }, { "directions": "Pour both ingredients into a beer glass. Drink fast.", @@ -106310,7 +106310,7 @@ "Gatorade\u00ae Riptide Rush energy drink" ], "title": "Blue Bomb recipe", - "url": "http://www.drinksmixer.com/drink11246.html" + "url": "https://www.drinksmixer.com/drink11246.html" }, { "directions": "Pour ingredients into a glass over ice, and stir. Garnish with raspberries, and serve.", @@ -106320,7 +106320,7 @@ "raspberries" ], "title": "Blue Bombsicle recipe", - "url": "http://www.drinksmixer.com/drink11247.html" + "url": "https://www.drinksmixer.com/drink11247.html" }, { "directions": "Pour both ingredients into a large mug or container and add 4 large ice cubes. Stir well, and serve.", @@ -106329,7 +106329,7 @@ "Gatorade\u00ae Cool Blue Raspberry energy drink" ], "title": "Blue Brain Trasher recipe", - "url": "http://www.drinksmixer.com/drink11248.html" + "url": "https://www.drinksmixer.com/drink11248.html" }, { "directions": "Pour all ingredients into a highball glass filled with ice cubes. Stir well, and serve.", @@ -106343,7 +106343,7 @@ "pineapple juice" ], "title": "Blue Devil recipe", - "url": "http://www.drinksmixer.com/drink11249.html" + "url": "https://www.drinksmixer.com/drink11249.html" }, { "directions": "Mix Cointreau and blue curacao liqueur together in a highball glass and fill up with Sprite soda.", @@ -106353,7 +106353,7 @@ "Sprite\u00ae soda" ], "title": "Blue Dong recipe", - "url": "http://www.drinksmixer.com/drink11250.html" + "url": "https://www.drinksmixer.com/drink11250.html" }, { "directions": "Pour the Jone's into a collins glass and mix in the Everclear well, before serving.", @@ -106362,7 +106362,7 @@ "Jone's Soda\u00ae Berry Lemonade" ], "title": "Blue Fire recipe", - "url": "http://www.drinksmixer.com/drink11251.html" + "url": "https://www.drinksmixer.com/drink11251.html" }, { "directions": "Stir ingredients together in a highball glass 3/4 filled with ice cubes, and serve.", @@ -106374,7 +106374,7 @@ "orange juice" ], "title": "Blue Hawaiian #2 recipe", - "url": "http://www.drinksmixer.com/drink11252.html" + "url": "https://www.drinksmixer.com/drink11252.html" }, { "directions": "Combine vodka, blue curacao, lime juice, and honey in a shaker with ice. Shake well, then pour through a strainer into a cocktail glass containing ice. Makes 1 serving.", @@ -106385,7 +106385,7 @@ "lime juice" ], "title": "Blue Helena recipe", - "url": "http://www.drinksmixer.com/drink11253.html" + "url": "https://www.drinksmixer.com/drink11253.html" }, { "directions": "Pour ingredients into a Pina Colada glass (can be decorated by dipping the top of the glass in syrup and then in sugar). Also possible to use spoon to achieve layers. Serve.", @@ -106396,7 +106396,7 @@ "pineapple juice" ], "title": "Blue Hotty recipe", - "url": "http://www.drinksmixer.com/drink11254.html" + "url": "https://www.drinksmixer.com/drink11254.html" }, { "directions": "Place some mint leaves in the bottom of a highball glass. Bruise them with a muddle. Add ice and pour in the blue curacao and cranberry juice. Top off with club soda as desired, stir and serve.", @@ -106407,7 +106407,7 @@ "club soda" ], "title": "Blue Incan recipe", - "url": "http://www.drinksmixer.com/drink11255.html" + "url": "https://www.drinksmixer.com/drink11255.html" }, { "directions": "Place some ice in a highball glass. Add the UV, blue curacao and triple sec. Top with Smirnoff, and serve.", @@ -106418,7 +106418,7 @@ "Smirnoff\u00ae Black Ice" ], "title": "Blue Insanity recipe", - "url": "http://www.drinksmixer.com/drink11256.html" + "url": "https://www.drinksmixer.com/drink11256.html" }, { "directions": "Combine in a shot glass, and serve.", @@ -106427,7 +106427,7 @@ "Monster\u00ae energy drink" ], "title": "Blue Monster recipe", - "url": "http://www.drinksmixer.com/drink11257.html" + "url": "https://www.drinksmixer.com/drink11257.html" }, { "directions": "Pour ingredients into a cocktail shaker half-filled with ice cubes. Shake well, pour into a hurricane glass and serve.", @@ -106441,7 +106441,7 @@ "sweet and sour mix" ], "title": "Blue Pixie Stick recipe", - "url": "http://www.drinksmixer.com/drink11258.html" + "url": "https://www.drinksmixer.com/drink11258.html" }, { "directions": "Stir the vanilla vodka, blueberry juice and apple juice together in a highball glass filled with ice cubes. Top with 2 - 3 fresh blueberries.", @@ -106452,7 +106452,7 @@ "blueberries" ], "title": "Blue Richie recipe", - "url": "http://www.drinksmixer.com/drink11259.html" + "url": "https://www.drinksmixer.com/drink11259.html" }, { "directions": "Place 2 - 3 crushed ice cubes in a parfait glass. Pour the blue curacao over the ice, and add the vodka. Top with cream, and serve.", @@ -106462,7 +106462,7 @@ "light cream" ], "title": "Blue Russian recipe", - "url": "http://www.drinksmixer.com/drink11260.html" + "url": "https://www.drinksmixer.com/drink11260.html" }, { "directions": "Stir ingredients together in a cocktail glass, and serve.", @@ -106473,7 +106473,7 @@ "cranberry juice" ], "title": "Blushin' Russian #2 recipe", - "url": "http://www.drinksmixer.com/drink11261.html" + "url": "https://www.drinksmixer.com/drink11261.html" }, { "directions": "Pour the gin, vodka, rum, tequila and Cointreau into a cocktail shaker half-filled with ice cubes. Shake well, and strain into a collins glass filled with ice cubes. Add pineapple juice, and stir. Garnish as desired, and serve.", @@ -106486,7 +106486,7 @@ "pineapple juice" ], "title": "Bohus Jude recipe", - "url": "http://www.drinksmixer.com/drink11262.html" + "url": "https://www.drinksmixer.com/drink11262.html" }, { "directions": "Drop a double-shot glass of Jagermeister into a 3/4 pint of Samuel Adams, and serve.", @@ -106495,7 +106495,7 @@ "Samuel Adams\u00ae Black Lager" ], "title": "Boilerjager recipe", - "url": "http://www.drinksmixer.com/drink11263.html" + "url": "https://www.drinksmixer.com/drink11263.html" }, { "directions": "Pour the gin, Cointreau and juices into a cocktail shaker half-filled with ice cubes. Shake well and strain into a cocktail glass. Add a lemon twist, and serve.", @@ -106506,7 +106506,7 @@ "lime juice" ], "title": "Bombay Cosmo recipe", - "url": "http://www.drinksmixer.com/drink11264.html" + "url": "https://www.drinksmixer.com/drink11264.html" }, { "directions": "Stir ingredients together over ice in a highball glass, and serve.", @@ -106516,7 +106516,7 @@ "pineapple juice" ], "title": "Bomber recipe", - "url": "http://www.drinksmixer.com/drink11265.html" + "url": "https://www.drinksmixer.com/drink11265.html" }, { "directions": "Pour the Jagermeister and coconut rum into a pint glass filled with ice cubes. Fill with an energy drink, and serve.", @@ -106526,7 +106526,7 @@ "Red Bull\u00ae energy drink" ], "title": "Bone recipe", - "url": "http://www.drinksmixer.com/drink11266.html" + "url": "https://www.drinksmixer.com/drink11266.html" }, { "directions": "Pour in order into a shot glass, and serve.", @@ -106536,7 +106536,7 @@ "DeKuyper\u00ae Buttershots liqueur" ], "title": "Bone #2 recipe", - "url": "http://www.drinksmixer.com/drink11267.html" + "url": "https://www.drinksmixer.com/drink11267.html" }, { "directions": "Chill the Malibu. Shake with ice in a stainless steel shaker. Pour 1/3 to 1/2 can of Red Bull into a highball glass. Add Malibu by straining into the glass, and serve.", @@ -106545,7 +106545,7 @@ "Red Bull\u00ae energy drink" ], "title": "Bone Fish Shot recipe", - "url": "http://www.drinksmixer.com/drink11268.html" + "url": "https://www.drinksmixer.com/drink11268.html" }, { "directions": "Pour the Bailey's irish cream into a shot glass. Top with the Scotch, and serve.", @@ -106554,7 +106554,7 @@ "Johnnie Walker\u00ae Red Label Scotch whisky" ], "title": "Boob Grabber recipe", - "url": "http://www.drinksmixer.com/drink11269.html" + "url": "https://www.drinksmixer.com/drink11269.html" }, { "directions": "Mix the Sour Puss and rootbeer schnapps together in a shot glass. Mix the 7-Up and margarita mix together in a highball glass. Drop the shot glass into the highball glass, and serve.", @@ -106565,7 +106565,7 @@ "margarita mix" ], "title": "Bottle Cap recipe", - "url": "http://www.drinksmixer.com/drink11270.html" + "url": "https://www.drinksmixer.com/drink11270.html" }, { "directions": "Stir all ingredients together in a highball glass filled with ice cubes, and serve.", @@ -106577,7 +106577,7 @@ "cranberry juice" ], "title": "Booty Call 101 recipe", - "url": "http://www.drinksmixer.com/drink11271.html" + "url": "https://www.drinksmixer.com/drink11271.html" }, { "directions": "Add all ingredients to a large cooler. Serve as appropriate.", @@ -106589,7 +106589,7 @@ "lemonade" ], "title": "Boro Punch recipe", - "url": "http://www.drinksmixer.com/drink11272.html" + "url": "https://www.drinksmixer.com/drink11272.html" }, { "directions": "Add all ingredients to a cocktail shaker half-filled with ice cubes, in equal parts. Shake vigorously. Pour into a margarita or large cocktail glass with a cocoa dipped rim, and serve.", @@ -106600,7 +106600,7 @@ "cocoa" ], "title": "Boston Cream Pie recipe", - "url": "http://www.drinksmixer.com/drink11273.html" + "url": "https://www.drinksmixer.com/drink11273.html" }, { "directions": "Pour the vodka into a shot glass, and add the Bailey's slowly so it sits on top of the vodka and it creates a layer. Leave just a little room at the top and squeeze a little bit of the chocolate so it runs through the drink, serve.", @@ -106610,7 +106610,7 @@ "Nestle\u00ae chocolate syrup" ], "title": "Bounty Bar recipe", - "url": "http://www.drinksmixer.com/drink11274.html" + "url": "https://www.drinksmixer.com/drink11274.html" }, { "directions": "Combine all ingredients in a blender with ice. Blend well, and pour into a margarita glass, Drizzle extra chocolate syrup over it and serve. Should taste like a bounty bar.", @@ -106620,7 +106620,7 @@ "Bailey's\u00ae Irish cream" ], "title": "Bounty Bar Margarita recipe", - "url": "http://www.drinksmixer.com/drink11275.html" + "url": "https://www.drinksmixer.com/drink11275.html" }, { "directions": "Stir together in a cocktail glass, and serve.", @@ -106630,7 +106630,7 @@ "ouzo anise liqueur" ], "title": "Bouzo recipe", - "url": "http://www.drinksmixer.com/drink11276.html" + "url": "https://www.drinksmixer.com/drink11276.html" }, { "directions": "Pour the jagermeister into a shot glass, then add the soda. Take the shot. Also works well with six soda to one jager as a cocktail.", @@ -106639,7 +106639,7 @@ "Jagermeister\u00ae herbal liqueur" ], "title": "Black Cherrymeister recipe", - "url": "http://www.drinksmixer.com/drink11277.html" + "url": "https://www.drinksmixer.com/drink11277.html" }, { "directions": "Stir ingredients together in a highball glass half-filled with ice cubes, and serve.", @@ -106650,7 +106650,7 @@ "pineapple juice" ], "title": "Pineapple Bomber #2 recipe", - "url": "http://www.drinksmixer.com/drink11278.html" + "url": "https://www.drinksmixer.com/drink11278.html" }, { "directions": "Mix the Red Bull with the Bombay Sapphire gin. Serve in a highball glass with ice. Garnish with a lime slice.", @@ -106659,7 +106659,7 @@ "Red Bull\u00ae energy drink" ], "title": "Brahma Bull recipe", - "url": "http://www.drinksmixer.com/drink11279.html" + "url": "https://www.drinksmixer.com/drink11279.html" }, { "directions": "Pour the Absolut Raspberri Vodka into an ice filled cocktail glass. Add the Chambord raspberry liqueur and Sprite and then the grenadine. Top with a cherry, and serve.", @@ -106670,7 +106670,7 @@ "grenadine syrup" ], "title": "Aruba recipe", - "url": "http://www.drinksmixer.com/drink11280.html" + "url": "https://www.drinksmixer.com/drink11280.html" }, { "directions": "Stir ingredients together in a collins glass 2/3 filled with ice cubes, and serve.", @@ -106680,7 +106680,7 @@ "orange soda" ], "title": "Big Red recipe", - "url": "http://www.drinksmixer.com/drink11281.html" + "url": "https://www.drinksmixer.com/drink11281.html" }, { "directions": "Pour the peach schnapps into a shot glass. Slowly add the Bailey's, top with the grenadine, and serve.", @@ -106690,7 +106690,7 @@ "grenadine syrup" ], "title": "Brain Hemorrhage recipe", - "url": "http://www.drinksmixer.com/drink11282.html" + "url": "https://www.drinksmixer.com/drink11282.html" }, { "directions": "Pour all ingredients over ice into a cocktail shaker. Shake it for 10 seconds and pour it out into a highball glass filled with ice cubes, then serve.", @@ -106700,7 +106700,7 @@ "aged tequila" ], "title": "Brandy Mexi recipe", - "url": "http://www.drinksmixer.com/drink11283.html" + "url": "https://www.drinksmixer.com/drink11283.html" }, { "directions": "Serve in a coffee mug. An excellent way to drink jack. Using decaf changes the flavor for the better with the whiskey.", @@ -106709,7 +106709,7 @@ "coffee" ], "title": "Breakfast at Lucas's recipe", - "url": "http://www.drinksmixer.com/drink11284.html" + "url": "https://www.drinksmixer.com/drink11284.html" }, { "directions": "Stir in a shot glass, and serve.", @@ -106718,7 +106718,7 @@ "DeKuyper\u00ae Sour Apple Pucker schnapps" ], "title": "Apple Jacks #2 recipe", - "url": "http://www.drinksmixer.com/drink11285.html" + "url": "https://www.drinksmixer.com/drink11285.html" }, { "directions": "Add the Bacardi silver rum, Crown Royal and Wild Turkey whiskeys to a cocktail shaker half-filled with ice cubes. Shake well and strain into a large shot glass or small old-fashioned/lowball glass. Splash cranberry juice on top, float the Bacardi 151 on top, and serve. \r", @@ -106730,7 +106730,7 @@ "Bacardi\u00ae 151 rum" ], "title": "Breath of God #2 recipe", - "url": "http://www.drinksmixer.com/drink11286.html" + "url": "https://www.drinksmixer.com/drink11286.html" }, { "directions": "Pour all three ingredients into an old-fashioned glass over ice and serve.", @@ -106740,7 +106740,7 @@ "vodka" ], "title": "Brick recipe", - "url": "http://www.drinksmixer.com/drink11288.html" + "url": "https://www.drinksmixer.com/drink11288.html" }, { "directions": "Add all ingredients to a blender. Blend well; serve in glasses of choice.", @@ -106752,7 +106752,7 @@ "Coca-Cola\u00ae" ], "title": "Brown and Red Weekend recipe", - "url": "http://www.drinksmixer.com/drink11289.html" + "url": "https://www.drinksmixer.com/drink11289.html" }, { "directions": "Pour the Coca-Cola into a large cup, add 3 scoops of vanilla ice cream, and serve.", @@ -106761,7 +106761,7 @@ "vanilla ice cream" ], "title": "Brown Cow #3 recipe", - "url": "http://www.drinksmixer.com/drink11290.html" + "url": "https://www.drinksmixer.com/drink11290.html" }, { "directions": "Combine all ingredients with crushed ice in a shaker. Shake and pour into a glass. Lightly dust with cinnamon, and serve.", @@ -106771,7 +106771,7 @@ "Coca-Cola\u00ae" ], "title": "Brown Elephant recipe", - "url": "http://www.drinksmixer.com/drink11291.html" + "url": "https://www.drinksmixer.com/drink11291.html" }, { "directions": "Stir ingredients together in a highball glass filled with ice cubes, and serve.", @@ -106780,7 +106780,7 @@ "Red Bull\u00ae energy drink" ], "title": "Bubble Bomb recipe", - "url": "http://www.drinksmixer.com/drink11292.html" + "url": "https://www.drinksmixer.com/drink11292.html" }, { "directions": "Combine vodka and butterscotch liqueur in a cocktail shaker half-filled with ice cubes. Shake for 30 seconds and pour into a martini or any other glass. Pour cream soda into glass, stir and serve.", @@ -106790,7 +106790,7 @@ "cream soda" ], "title": "Bubble Cream Martini recipe", - "url": "http://www.drinksmixer.com/drink11293.html" + "url": "https://www.drinksmixer.com/drink11293.html" }, { "directions": "All ingredients to a cocktail shaker half-filled with ice cubes. Shake vigorously, pour into a highball glass filled with ice cubes, and serve.", @@ -106803,7 +106803,7 @@ "grenadine syrup" ], "title": "Bubble gum #3 recipe", - "url": "http://www.drinksmixer.com/drink11294.html" + "url": "https://www.drinksmixer.com/drink11294.html" }, { "directions": "Pour both ingredients over ice in a tall glass, and serve.", @@ -106812,7 +106812,7 @@ "club soda" ], "title": "Bubblin' Dublin recipe", - "url": "http://www.drinksmixer.com/drink11295.html" + "url": "https://www.drinksmixer.com/drink11295.html" }, { "directions": "Mix in five gallon bucket. If too strong mix to taste.", @@ -106822,7 +106822,7 @@ "orange juice" ], "title": "Bucket recipe", - "url": "http://www.drinksmixer.com/drink11297.html" + "url": "https://www.drinksmixer.com/drink11297.html" }, { "directions": "Rim a shot glass with hot sauce and place some at the bottom of the glass. Fill with equal parts of Jack Daniel's and 151 rum, and shoot.", @@ -106832,7 +106832,7 @@ "hot pepper sauce" ], "title": "Buffalo Sweat #3 recipe", - "url": "http://www.drinksmixer.com/drink11298.html" + "url": "https://www.drinksmixer.com/drink11298.html" }, { "directions": "Stir ingredients together in a collins glass filled with ice cubes, and serve. ", @@ -106842,7 +106842,7 @@ "orange juice" ], "title": "Bull Driver recipe", - "url": "http://www.drinksmixer.com/drink11299.html" + "url": "https://www.drinksmixer.com/drink11299.html" }, { "directions": "Stir together in an old-fashioned glass filled with ice cubes, and serve.", @@ -106852,7 +106852,7 @@ "Jack Daniel's\u00ae Tennessee whiskey" ], "title": "Bull Jacks recipe", - "url": "http://www.drinksmixer.com/drink11300.html" + "url": "https://www.drinksmixer.com/drink11300.html" }, { "directions": "Fill a collins glass with ice, pour in the ingredients as listed, then pour the glass' contents into a blender, and use the blender to make it smooth. Pour back into the glass, and serve.", @@ -106865,7 +106865,7 @@ "cola" ], "title": "Bullet to the Head recipe", - "url": "http://www.drinksmixer.com/drink11301.html" + "url": "https://www.drinksmixer.com/drink11301.html" }, { "directions": "Stir in equal amounts in a highball glass over ice, and serve.", @@ -106874,7 +106874,7 @@ "Hpnotiq\u00ae liqueur" ], "title": "Incredible Goose recipe", - "url": "http://www.drinksmixer.com/drink11302.html" + "url": "https://www.drinksmixer.com/drink11302.html" }, { "directions": "Stir ingredients together in a highball glass with a slice of tomato on the side, and serve.", @@ -106883,7 +106883,7 @@ "tomato juice" ], "title": "Bulls Eye recipe", - "url": "http://www.drinksmixer.com/drink11303.html" + "url": "https://www.drinksmixer.com/drink11303.html" }, { "directions": "Make a regular shot of tequila; add 5 drops of tabasco sauce, and serve.", @@ -106892,7 +106892,7 @@ "Tabasco\u00ae sauce" ], "title": "Burnt Mexican recipe", - "url": "http://www.drinksmixer.com/drink11304.html" + "url": "https://www.drinksmixer.com/drink11304.html" }, { "directions": "Pour the rum and Goldschlager into a shot glass and serve. Also works best when screaming \"Arrrr!\" immediately after consumption.", @@ -106901,7 +106901,7 @@ "Goldschlager\u00ae cinnamon schnapps" ], "title": "Burried Treasure #2 recipe", - "url": "http://www.drinksmixer.com/drink11305.html" + "url": "https://www.drinksmixer.com/drink11305.html" }, { "directions": "Stir ingredients together in a collins glass filled with ice cubes, and serve.", @@ -106913,7 +106913,7 @@ "cream soda" ], "title": "Butter Cookie recipe", - "url": "http://www.drinksmixer.com/drink11306.html" + "url": "https://www.drinksmixer.com/drink11306.html" }, { "directions": "Add both ingredients to a cocktail shaker with ice. Shake well and pour into a shot glass, and serve.", @@ -106922,7 +106922,7 @@ "Crown Royal\u00ae Canadian whisky" ], "title": "ButterCrown recipe", - "url": "http://www.drinksmixer.com/drink11307.html" + "url": "https://www.drinksmixer.com/drink11307.html" }, { "directions": "Add all ingredients to a cocktail shaker half-filled with ice cubes. Shake and pour into a pina colada glass. Garnish with whipped cream and caramel.", @@ -106933,7 +106933,7 @@ "cream" ], "title": "Butterscotch Dream recipe", - "url": "http://www.drinksmixer.com/drink11308.html" + "url": "https://www.drinksmixer.com/drink11308.html" }, { "directions": "Add all ingredients to a blender with 2 cups of ice cubes. Blend until thick like a shake, and pour into a collins glass. Add or subtract ice to liking for thickness. This is also good unblended on the rocks. Makes two drinks.", @@ -106943,7 +106943,7 @@ "butterscotch schnapps" ], "title": "Butterscotch Mudslide Shake recipe", - "url": "http://www.drinksmixer.com/drink11309.html" + "url": "https://www.drinksmixer.com/drink11309.html" }, { "directions": "Pour the Buttershots liqueur into the shot glass first, then add the Tequila Rose liqueur, and serve.", @@ -106952,7 +106952,7 @@ "DeKuyper\u00ae Buttershots liqueur" ], "title": "Buttery Nipple #4 recipe", - "url": "http://www.drinksmixer.com/drink11310.html" + "url": "https://www.drinksmixer.com/drink11310.html" }, { "directions": "Layer ingredients in equal parts in a shot glass; Rumple Minze bottom, then Hot Damn!, then Jagermeister, and finally Midori on top. Serve.", @@ -106963,7 +106963,7 @@ "Midori\u00ae melon liqueur" ], "title": "C4 recipe", - "url": "http://www.drinksmixer.com/drink11311.html" + "url": "https://www.drinksmixer.com/drink11311.html" }, { "directions": "Add all ingredients to a beer mug, stir and serve.", @@ -106973,7 +106973,7 @@ "pineapple juice" ], "title": "Cactus Jack recipe", - "url": "http://www.drinksmixer.com/drink11313.html" + "url": "https://www.drinksmixer.com/drink11313.html" }, { "directions": "Pour the espresso into a small cup. Add sambuca, and serve.", @@ -106982,7 +106982,7 @@ "white sambuca" ], "title": "Cafe Oliver recipe", - "url": "http://www.drinksmixer.com/drink11314.html" + "url": "https://www.drinksmixer.com/drink11314.html" }, { "directions": "Pour the rum, triple sec, grenadine and bitters into a highball glass filled with ice cubes. Top with champagne, stir and serve.", @@ -106994,7 +106994,7 @@ "Champagne" ], "title": "Cajun Water recipe", - "url": "http://www.drinksmixer.com/drink11315.html" + "url": "https://www.drinksmixer.com/drink11315.html" }, { "directions": "Pour the raspberry schnapps into an old-fashioned glass filled with ice cubes. Add half-and-half to taste, and serve.", @@ -107003,7 +107003,7 @@ "half-and-half" ], "title": "California Stripper recipe", - "url": "http://www.drinksmixer.com/drink11316.html" + "url": "https://www.drinksmixer.com/drink11316.html" }, { "directions": "Pour the Campari over ice in a highball glass. Add bitter lemon, garnish with a lemon peel, and serve.", @@ -107012,7 +107012,7 @@ "Schweppes\u00ae bitter lemon soda" ], "title": "Campari and Bitter Lemon recipe", - "url": "http://www.drinksmixer.com/drink11317.html" + "url": "https://www.drinksmixer.com/drink11317.html" }, { "directions": "Stir ingredients (except cream) together in a highball glass filled with ice cubes, and serve. Top with whipped cream, and serve.", @@ -107025,7 +107025,7 @@ "whipped cream" ], "title": "Canadian Hangover recipe", - "url": "http://www.drinksmixer.com/drink11318.html" + "url": "https://www.drinksmixer.com/drink11318.html" }, { "directions": "Stir ingredients together with ice in a mixing glass. Strain into a shot glass, and serve.", @@ -107034,7 +107034,7 @@ "Yukon Jack\u00ae Canadian whisky" ], "title": "Canadian Hillbilly recipe", - "url": "http://www.drinksmixer.com/drink11319.html" + "url": "https://www.drinksmixer.com/drink11319.html" }, { "directions": "Pour the 151, Mailbu, and pineapple juice into a mixer full of ice, shake, and strain into a rocks glass. Tilt the rocks glass and pour the Chambord onto the glass. The Chambord will sink to the bottom giving you a golden top layer and a purple bottom layer. Serve.", @@ -107045,7 +107045,7 @@ "Chambord\u00ae raspberry liqueur" ], "title": "Cancun Current recipe", - "url": "http://www.drinksmixer.com/drink11321.html" + "url": "https://www.drinksmixer.com/drink11321.html" }, { "directions": "Combine all ingredients in a cocktail shaker half-filled with ice cubes. Shake for a few seconds. Pour into a highball glass. Garnish with a pineapple slice and cherry, and serve.", @@ -107060,7 +107060,7 @@ "banana liqueur" ], "title": "Cancun Rum Runner recipe", - "url": "http://www.drinksmixer.com/drink11322.html" + "url": "https://www.drinksmixer.com/drink11322.html" }, { "directions": "Shake alcohol and grenadine with ice cubes in a cocktail shaker; strain into a cocktail glass. Fill with ginger ale, and serve.", @@ -107071,7 +107071,7 @@ "ginger ale" ], "title": "Candy Apple Martini #2 recipe", - "url": "http://www.drinksmixer.com/drink11323.html" + "url": "https://www.drinksmixer.com/drink11323.html" }, { "directions": "Pour ingredients into shaker with ice, shake, and serve in a 2-oz shot glass. Don't put too much grenadine or it will kill the taste. It's only there for color.", @@ -107082,7 +107082,7 @@ "grenadine syrup" ], "title": "Candy Cane Shot recipe", - "url": "http://www.drinksmixer.com/drink11324.html" + "url": "https://www.drinksmixer.com/drink11324.html" }, { "directions": "Pour the Captain Morgan Tattoo into an old-fashioned glass filled with ice cubes. Top with coke with a slice of lime, and serve.", @@ -107091,7 +107091,7 @@ "Coca-Cola\u00ae" ], "title": "Cannonball recipe", - "url": "http://www.drinksmixer.com/drink11325.html" + "url": "https://www.drinksmixer.com/drink11325.html" }, { "directions": "Pour vodka over a handful of ice cubes in a cocktail shaker. Add cranberry-raspberry juice, and shake for 5 secs. Pour mixture into a collins glass filled with ice cubes, and serve.", @@ -107100,7 +107100,7 @@ "cranberry-raspberry juice" ], "title": "Cape Coral recipe", - "url": "http://www.drinksmixer.com/drink11326.html" + "url": "https://www.drinksmixer.com/drink11326.html" }, { "directions": "Pour the rum over 4 ice cubes in a collins glass. Fill with the Canada Dry ginger ale, and serve.", @@ -107109,7 +107109,7 @@ "Canada Dry\u00ae ginger ale" ], "title": "Captain Bucci recipe", - "url": "http://www.drinksmixer.com/drink11327.html" + "url": "https://www.drinksmixer.com/drink11327.html" }, { "directions": "Add the rums to a cocktail with 2 ice cubes and fill the glass with the Fresca and Juice Juice in equal parts, and serve.", @@ -107120,7 +107120,7 @@ "Fresca\u00ae grapefruit soda" ], "title": "Captain Crisp recipe", - "url": "http://www.drinksmixer.com/drink11328.html" + "url": "https://www.drinksmixer.com/drink11328.html" }, { "directions": "Served with ice. Poor the Captain Morgan spiced rum into a collins glass with a few ice cubes. Add the raspberry iced tea (from concentrate for best results) and serve. ", @@ -107129,7 +107129,7 @@ "Nestea\u00ae raspberry iced tea" ], "title": "Captain Guy recipe", - "url": "http://www.drinksmixer.com/drink11329.html" + "url": "https://www.drinksmixer.com/drink11329.html" }, { "directions": "Add all ingredients (except grenadine) to a cocktail shaker half-filled with ice cubes. Shake well, and pour into a double shot glass. Add 2-3 drops of grenadine, and serve.", @@ -107141,7 +107141,7 @@ "grenadine syrup" ], "title": "Captain Morgan on Acid recipe", - "url": "http://www.drinksmixer.com/drink11330.html" + "url": "https://www.drinksmixer.com/drink11330.html" }, { "directions": "Stir together in a beer mug over ice, and serve.", @@ -107150,7 +107150,7 @@ "Coca-Cola\u00ae Diet Coke" ], "title": "Captain Slim recipe", - "url": "http://www.drinksmixer.com/drink11331.html" + "url": "https://www.drinksmixer.com/drink11331.html" }, { "directions": "Stir ingredients together in a collins glass filled with ice cubes, and serve.", @@ -107160,7 +107160,7 @@ "Sprite\u00ae soda" ], "title": "Captain's Hook recipe", - "url": "http://www.drinksmixer.com/drink11332.html" + "url": "https://www.drinksmixer.com/drink11332.html" }, { "directions": "Stir ingredients together in a highball glass almost filled with ice cubes, and serve.", @@ -107169,7 +107169,7 @@ "Mountain Dew\u00ae Pitch Black soda" ], "title": "Captain's Shadow recipe", - "url": "http://www.drinksmixer.com/drink11333.html" + "url": "https://www.drinksmixer.com/drink11333.html" }, { "directions": "Stir ingredients together in a highball glass with 3-4 ice cubes, and serve.", @@ -107178,7 +107178,7 @@ "Captain Morgan\u00ae Original spiced rum" ], "title": "Captain's Son recipe", - "url": "http://www.drinksmixer.com/drink11334.html" + "url": "https://www.drinksmixer.com/drink11334.html" }, { "directions": "Shake ingredients together in a cocktail shaker with ice. Strain into a cocktail glass, and serve.", @@ -107187,7 +107187,7 @@ "butterscotch schnapps" ], "title": "Caramel Apple Martini recipe", - "url": "http://www.drinksmixer.com/drink11335.html" + "url": "https://www.drinksmixer.com/drink11335.html" }, { "directions": "Shake ingredients together in cocktail shaker with ice. Strain into a shot glass, and serve.", @@ -107197,7 +107197,7 @@ "cranberry juice" ], "title": "Caramel Apple Shot recipe", - "url": "http://www.drinksmixer.com/drink11336.html" + "url": "https://www.drinksmixer.com/drink11336.html" }, { "directions": "Stir ingredients well in a wine goblet, and serve.", @@ -107208,7 +107208,7 @@ "Red Bull\u00ae energy drink" ], "title": "Cardiac Arrest recipe", - "url": "http://www.drinksmixer.com/drink11337.html" + "url": "https://www.drinksmixer.com/drink11337.html" }, { "directions": "Pour vodka, rum, and both juices into a martini shaker with ice. Shake until chilled. Pour into a collins glass over ice. Finish with a splash of grenadine for the sunset effect.", @@ -107220,7 +107220,7 @@ "grenadine syrup" ], "title": "Caribbean Sunset #2 recipe", - "url": "http://www.drinksmixer.com/drink11338.html" + "url": "https://www.drinksmixer.com/drink11338.html" }, { "directions": "Add ingredients to a cocktail shaker half-filled with ice cubes. Shake and strain into a 2-oz shot glass, and serve.", @@ -107232,7 +107232,7 @@ "7-Up\u00ae soda" ], "title": "Carolina Piece of Ass recipe", - "url": "http://www.drinksmixer.com/drink11340.html" + "url": "https://www.drinksmixer.com/drink11340.html" }, { "directions": "Add all ingredients to a cocktail shaker half-filled with ice cubes and shake well. Strain into a collins glass filled with ice cubes. If possible, shake chocolate powder (Cadbury's) over a match/lighter on top, and serve.", @@ -107246,7 +107246,7 @@ "chocolate" ], "title": "Carribean Catholic recipe", - "url": "http://www.drinksmixer.com/drink11341.html" + "url": "https://www.drinksmixer.com/drink11341.html" }, { "directions": "Stir ingredients together in a collins glass filled with ice cubes, and serve.", @@ -107257,7 +107257,7 @@ "orange juice" ], "title": "Caribbean Sunset #3 recipe", - "url": "http://www.drinksmixer.com/drink11342.html" + "url": "https://www.drinksmixer.com/drink11342.html" }, { "directions": "Pour ingredients into a whiskey sour glass with ice, stir slightly, and serve.", @@ -107267,7 +107267,7 @@ "butterscotch schnapps" ], "title": "Carrot Cake #3 recipe", - "url": "http://www.drinksmixer.com/drink11343.html" + "url": "https://www.drinksmixer.com/drink11343.html" }, { "directions": "Combine the first 3 ingredients together in a cocktail shaker with ice. Shake until frothy.\r", @@ -107280,7 +107280,7 @@ "maraschino cherry" ], "title": "Cattie Suprise recipe", - "url": "http://www.drinksmixer.com/drink11344.html" + "url": "https://www.drinksmixer.com/drink11344.html" }, { "directions": "Stir ingredients together in an old-fashioned glass half-filled with ice cubes, and serve.", @@ -107289,7 +107289,7 @@ "Drambuie\u00ae Scotch whisky" ], "title": "Celtic recipe", - "url": "http://www.drinksmixer.com/drink11345.html" + "url": "https://www.drinksmixer.com/drink11345.html" }, { "directions": "Stir ingredients together in a highball glass filled with ice cubes, and serve.", @@ -107299,7 +107299,7 @@ "lemonade" ], "title": "Celtic Kick recipe", - "url": "http://www.drinksmixer.com/drink11346.html" + "url": "https://www.drinksmixer.com/drink11346.html" }, { "directions": "Add all ingredients to a cocktail shaker half-filled with ice cubes. Shake well, and pour over ice in a salt-rimmed margarita glass. Serve.", @@ -107310,7 +107310,7 @@ "sweet and sour mix" ], "title": "Chambord Margarita recipe", - "url": "http://www.drinksmixer.com/drink11348.html" + "url": "https://www.drinksmixer.com/drink11348.html" }, { "directions": "Combine in a large deep bowl surrounded with ice and leave for 1 hour. Stir before serving in champagne glasses.", @@ -107323,7 +107323,7 @@ "soda" ], "title": "Champagne Cup #2 recipe", - "url": "http://www.drinksmixer.com/drink11349.html" + "url": "https://www.drinksmixer.com/drink11349.html" }, { "directions": "Add the Jello and boiling water and stir until powder is dissolved. Allow to cool to room temperature. Slowly add the champagne and stir in. Pour into an ice cube tray and refridgerate until set. To serve, dip trays in hot water for 5 seconds then run a knife around the outside of the shot. Place in a large bowl and serve with tongs. ", @@ -107333,7 +107333,7 @@ "Champagne" ], "title": "Champagne Jello Shots recipe", - "url": "http://www.drinksmixer.com/drink11350.html" + "url": "https://www.drinksmixer.com/drink11350.html" }, { "directions": "Mix well with ice cubes. Add fruit in season. Surround bowl with ice, and serve in champagne glasses.", @@ -107346,7 +107346,7 @@ "sugar" ], "title": "Champagne Punch #3 recipe", - "url": "http://www.drinksmixer.com/drink11351.html" + "url": "https://www.drinksmixer.com/drink11351.html" }, { "directions": "Mix cans of lemonade and limeade first, then add vodka, soda, and beer. Mix well in punch bowl or bucket. Rim edges of cups with pink cosmo sugar for added effect.", @@ -107358,7 +107358,7 @@ "Sprite\u00ae soda" ], "title": "Chaotic Pink recipe", - "url": "http://www.drinksmixer.com/drink11352.html" + "url": "https://www.drinksmixer.com/drink11352.html" }, { "directions": "Freeze the Minute Maid punch cooler (individual pack) in the freezer until icy. Take it out and blend it with some ice then add the absolut vodka and margarita mix. Pour into a margarita glass and serve.", @@ -107368,7 +107368,7 @@ "Minute Maid\u00ae cherry punch" ], "title": "Charap Margarita recipe", - "url": "http://www.drinksmixer.com/drink11353.html" + "url": "https://www.drinksmixer.com/drink11353.html" }, { "directions": "Pour the gin, orange juice and cranberry juice into a highball glass filled with ice cubes. Stir, and serve.", @@ -107378,7 +107378,7 @@ "cranberry juice" ], "title": "Chase Manhattan recipe", - "url": "http://www.drinksmixer.com/drink11354.html" + "url": "https://www.drinksmixer.com/drink11354.html" }, { "directions": "Fill a glass halfway with Smirnoff vodka and split the remaining three ingredients equally over ice or chill in freezer. Can also be made as shot.", @@ -107389,7 +107389,7 @@ "DeKuyper\u00ae creme de bananes" ], "title": "ChaTiffany Especial recipe", - "url": "http://www.drinksmixer.com/drink11355.html" + "url": "https://www.drinksmixer.com/drink11355.html" }, { "directions": "Shake all ingredients together in a cocktail shaker half-filled with ice cubes. Strain into a chilled cocktail glass, and serve.", @@ -107399,7 +107399,7 @@ "cranberry juice" ], "title": "Cheesecake Martini recipe", - "url": "http://www.drinksmixer.com/drink11356.html" + "url": "https://www.drinksmixer.com/drink11356.html" }, { "directions": "Pour the Smirnoff Black Cherry vodka into a collins glass filled with ice cubes. Almost fill with orange juice, adding a splash of sour mix and touch of grenadine before serving.", @@ -107410,7 +107410,7 @@ "grenadine syrup" ], "title": "Cherry Blossom #3 recipe", - "url": "http://www.drinksmixer.com/drink11357.html" + "url": "https://www.drinksmixer.com/drink11357.html" }, { "directions": "Add ingredients to a lowball glass and stir vigourously. When ingredients are mixed, shoot back.", @@ -107419,7 +107419,7 @@ "Nescafe\u00ae Ice Java coffee syrup" ], "title": "Cherry Blossom recipe", - "url": "http://www.drinksmixer.com/drink11358.html" + "url": "https://www.drinksmixer.com/drink11358.html" }, { "directions": "Pour the amaretto and Midori into a highball glass filled with ice cubes. Add cranberry juice to fill, stir well. Add a straw and serve. ", @@ -107429,7 +107429,7 @@ "cranberry juice" ], "title": "Cherry Bomb #8 recipe", - "url": "http://www.drinksmixer.com/drink11359.html" + "url": "https://www.drinksmixer.com/drink11359.html" }, { "directions": "Stir the whisky and the wine together in a sour glass. Top with cola, and serve.", @@ -107439,7 +107439,7 @@ "cola" ], "title": "Cherry Bomb #9 recipe", - "url": "http://www.drinksmixer.com/drink11360.html" + "url": "https://www.drinksmixer.com/drink11360.html" }, { "directions": "Pour vodka and Red Bull energy drink into a small glass. Add grenadine slowly so it sinks to the bottom without mixing for a cool layered effect. ", @@ -107449,7 +107449,7 @@ "grenadine syrup" ], "title": "Cherry Bomb Shot recipe", - "url": "http://www.drinksmixer.com/drink11361.html" + "url": "https://www.drinksmixer.com/drink11361.html" }, { "directions": "Pour the vodka into a shot glass. Add the coke and then a few drops of fresh lemon juice, and serve.", @@ -107459,7 +107459,7 @@ "lemon juice" ], "title": "Cherry Choking recipe", - "url": "http://www.drinksmixer.com/drink11363.html" + "url": "https://www.drinksmixer.com/drink11363.html" }, { "directions": "Pour ingredients into an old-fashioned glass half-filled with ice cubes, and serve.", @@ -107468,7 +107468,7 @@ "Coca-Cola\u00ae" ], "title": "Cherry Coke recipe", - "url": "http://www.drinksmixer.com/drink11364.html" + "url": "https://www.drinksmixer.com/drink11364.html" }, { "directions": "Garnish a cocktail glass with 1 to 2 marashino cherries and a few ice cubes. Shake all ingredients with ice to chill and then strain into the glass and serve.", @@ -107478,7 +107478,7 @@ "cherry liqueur" ], "title": "Cherry Gimlet recipe", - "url": "http://www.drinksmixer.com/drink11365.html" + "url": "https://www.drinksmixer.com/drink11365.html" }, { "directions": "Pit cherries. Muddle cherries in glass. Add vodka, lemon juice, and ice. Top with club soda and stir. Garnish with lemon, and serve.", @@ -107490,7 +107490,7 @@ "cherries" ], "title": "Cherry Sour recipe", - "url": "http://www.drinksmixer.com/drink11366.html" + "url": "https://www.drinksmixer.com/drink11366.html" }, { "directions": "Add all ingredients together in a shaker half filled with ice. Shake until chilled. Strain into a large cocktail glass, and serve.", @@ -107501,7 +107501,7 @@ "cherry juice" ], "title": "Cherrylicious recipe", - "url": "http://www.drinksmixer.com/drink11367.html" + "url": "https://www.drinksmixer.com/drink11367.html" }, { "directions": "Stir ingredients together in a cup, and serve.", @@ -107511,7 +107511,7 @@ "Red Bull\u00ae energy drink" ], "title": "Chi-Town recipe", - "url": "http://www.drinksmixer.com/drink11368.html" + "url": "https://www.drinksmixer.com/drink11368.html" }, { "directions": "Stir the Canadian Mist whisky and Goldschlager cinnamon schnapps together in an old-fashioned glass half-filled with ice cubes. Add apple juice to taste, and serve.", @@ -107521,7 +107521,7 @@ "apple juice" ], "title": "Chicago Apple Cider recipe", - "url": "http://www.drinksmixer.com/drink11369.html" + "url": "https://www.drinksmixer.com/drink11369.html" }, { "directions": "Mix the vodka, green chilli (seedless) and lemon cordial in a cocktail mixer and pour it over ice. Now add fresh lemon juice, a pinch of salt and club soda. Stir it with a twizel stick, and serve.", @@ -107534,7 +107534,7 @@ "salt" ], "title": "Chilli Vodka recipe", - "url": "http://www.drinksmixer.com/drink11371.html" + "url": "https://www.drinksmixer.com/drink11371.html" }, { "directions": "Shake all ingredients well w/ ice, ensuring the honey is fully dissolved. Strain into glass and float a thin lemon slice on top, and serve.", @@ -107545,7 +107545,7 @@ "honey" ], "title": "Chippy recipe", - "url": "http://www.drinksmixer.com/drink11373.html" + "url": "https://www.drinksmixer.com/drink11373.html" }, { "directions": "Pour the Captian Morgan spiced rum into a shot glass. Slowly add pina colada mix, let it settle to the bottom. Serve.", @@ -107554,7 +107554,7 @@ "pina colada mix" ], "title": "Choad Shot recipe", - "url": "http://www.drinksmixer.com/drink11374.html" + "url": "https://www.drinksmixer.com/drink11374.html" }, { "directions": "Pour the Godiva into a shot glass, top with grenadine, and shoot.", @@ -107563,7 +107563,7 @@ "grenadine syrup" ], "title": "Chocolate Covered Cherry #3 recipe", - "url": "http://www.drinksmixer.com/drink11375.html" + "url": "https://www.drinksmixer.com/drink11375.html" }, { "directions": "Pour both ingredients into a cocktail shaker with a few ice cubes. Shake well, strain into a cocktail glass and serve.", @@ -107572,7 +107572,7 @@ "creme de cacao" ], "title": "Chocolate Martini #4 recipe", - "url": "http://www.drinksmixer.com/drink11376.html" + "url": "https://www.drinksmixer.com/drink11376.html" }, { "directions": "Put a little Hersheys syrup in the bottom of a glass and add warm milk (1/2 glass) and mix well. Add Voyant on top to fill glass and then froth up - sprinkle powdered nutmeg or cinnamon on top and serve warm as an after dinner drink.", @@ -107583,7 +107583,7 @@ "nutmeg" ], "title": "Chocolate Charlies recipe", - "url": "http://www.drinksmixer.com/drink11377.html" + "url": "https://www.drinksmixer.com/drink11377.html" }, { "directions": "Dissolve everclear and sugar into a tiny bowl. Pour equal amount into two shot glasses, ignite each shot glass for a couple seconds, then blow them out. Mix the grenadine and chocolate syrup into a third shot glass. Shoot the first two everclear/sugar shots right away followed by the grenadine/chocolate syrup shot.", @@ -107594,7 +107594,7 @@ "chocolate syrup" ], "title": "Chocolate Covered Cherry Bomb recipe", - "url": "http://www.drinksmixer.com/drink11378.html" + "url": "https://www.drinksmixer.com/drink11378.html" }, { "directions": "Combine ingredients with ice firstly in a mixing glass or cocktail shaker. Strain into a shot glass, and serve.", @@ -107603,7 +107603,7 @@ "creme de cacao" ], "title": "Chocolate Covered Raspberry recipe", - "url": "http://www.drinksmixer.com/drink11380.html" + "url": "https://www.drinksmixer.com/drink11380.html" }, { "directions": "Pour all ingredients into an ice-filled cocktail shaker. Shake and pour into 2 chilled cocktail glasses, and serve.", @@ -107616,7 +107616,7 @@ "half-and-half" ], "title": "Chocolate Heaven Martini for 2 recipe", - "url": "http://www.drinksmixer.com/drink11381.html" + "url": "https://www.drinksmixer.com/drink11381.html" }, { "directions": "Mix cocoa and powdered sugar to taste. Dip rim of a large martini glass in caramel sauce, then in cocoa/sugar mixture. Put a drop of chocolate in bottom of glass. Shake Stoli, creme de cacao and praline liqueur in a shaker to chill. Fill glass almost full with crushed or shaved ice. Strain drink into glass. Garnish with shaved chocolate, and serve.", @@ -107630,7 +107630,7 @@ "powdered sugar" ], "title": "Chocolate Martini #5 recipe", - "url": "http://www.drinksmixer.com/drink11382.html" + "url": "https://www.drinksmixer.com/drink11382.html" }, { "directions": "Pour the Van Gogh chocolate vodka and Kahlua coffee liqueur over ice in a highball glass. Top with cream, to taste, and serve.", @@ -107640,7 +107640,7 @@ "cream" ], "title": "Chocolate Russian recipe", - "url": "http://www.drinksmixer.com/drink11383.html" + "url": "https://www.drinksmixer.com/drink11383.html" }, { "directions": "Stir together in a shot glass, and serve.", @@ -107649,7 +107649,7 @@ "milk" ], "title": "Chocolate Shot #2 recipe", - "url": "http://www.drinksmixer.com/drink11384.html" + "url": "https://www.drinksmixer.com/drink11384.html" }, { "directions": "Pour the chocolate vodka over ice in an old-fashioned glass. Add cream soda (IBC preferred), and serve.", @@ -107658,7 +107658,7 @@ "chocolate vodka" ], "title": "Chocolate to Die For recipe", - "url": "http://www.drinksmixer.com/drink11385.html" + "url": "https://www.drinksmixer.com/drink11385.html" }, { "directions": "Combine all ingredient in a osterizer. Put on a glass bottle, and then in the refrigerator. Serve in shot glasses.", @@ -107671,7 +107671,7 @@ "chocolate ice cream" ], "title": "Chocoquito recipe", - "url": "http://www.drinksmixer.com/drink11386.html" + "url": "https://www.drinksmixer.com/drink11386.html" }, { "directions": "Shake all ingredients together in a cocktail shaker half-filled with ice cubes. Strain into a highball glass filled with ice cubes, and serve.", @@ -107682,7 +107682,7 @@ "cranberry juice" ], "title": "Christmas Cheer #2 recipe", - "url": "http://www.drinksmixer.com/drink11387.html" + "url": "https://www.drinksmixer.com/drink11387.html" }, { "directions": "Crush the ginger root and add the ginger syrup, apple juice, sambuca and schnapps. Shake well and strain into a pina colada glass, which should be about half full of crushed ice. Add the goldschlager then sprinkle the cinnamon powder over the top. Serve with a slice of apple floating on the top, and a straw.", @@ -107696,7 +107696,7 @@ "cinnamon" ], "title": "Christmas Elf's Revenge recipe", - "url": "http://www.drinksmixer.com/drink11388.html" + "url": "https://www.drinksmixer.com/drink11388.html" }, { "directions": "First, take a chilled 12-16 oz glass, and fill with ice. Add the gin, vodka, and lime juice. Shake. Top off with sprite, and garnish with lemons. Stir slightly, and serve.", @@ -107707,7 +107707,7 @@ "Sprite\u00ae soda" ], "title": "Chuck Diesel recipe", - "url": "http://www.drinksmixer.com/drink11390.html" + "url": "https://www.drinksmixer.com/drink11390.html" }, { "directions": "Serve in a tall glass without ice.", @@ -107716,7 +107716,7 @@ "Hpnotiq\u00ae liqueur" ], "title": "Chucktown Crunk Juice recipe", - "url": "http://www.drinksmixer.com/drink11391.html" + "url": "https://www.drinksmixer.com/drink11391.html" }, { "directions": "Pour the Bacardi Ciclon rum over ice in an old-fashioned glass. Add Coke to fill or to taste, and serve.", @@ -107725,7 +107725,7 @@ "Coca-Cola\u00ae" ], "title": "Ciclon and Coke recipe", - "url": "http://www.drinksmixer.com/drink11392.html" + "url": "https://www.drinksmixer.com/drink11392.html" }, { "directions": "Sprinkle brown sugar and cinnamon on a plate. Moisten the rim of a glass with water. Then turn the glass upside down onto the plate to rim the glass with the cinnamon and sugar mixture. Turn the glass over. Add the hot cider and rum.", @@ -107736,7 +107736,7 @@ "cinnamon" ], "title": "Cinnamon Bun recipe", - "url": "http://www.drinksmixer.com/drink11393.html" + "url": "https://www.drinksmixer.com/drink11393.html" }, { "directions": "Pour both ingredients in equal parts into a shot glass, and serve.", @@ -107745,7 +107745,7 @@ "Kahlua\u00ae coffee liqueur" ], "title": "Cioccolatino recipe", - "url": "http://www.drinksmixer.com/drink11394.html" + "url": "https://www.drinksmixer.com/drink11394.html" }, { "directions": "Add all ingredients to a cocktail shaker half-filled with ice cubes. Shake vigorously. Strain into chilled martini cocktail glass. Garnish with a thin slice of orange, and serve.", @@ -107756,7 +107756,7 @@ "pineapple juice" ], "title": "Citrini recipe", - "url": "http://www.drinksmixer.com/drink11395.html" + "url": "https://www.drinksmixer.com/drink11395.html" }, { "directions": "Pour the Absolute Citron into a collins glass filled with ice cubes. Fill the rest of the glass with Sprite, and serve.", @@ -107765,7 +107765,7 @@ "Sprite\u00ae soda" ], "title": "Citron and Sprite recipe", - "url": "http://www.drinksmixer.com/drink11396.html" + "url": "https://www.drinksmixer.com/drink11396.html" }, { "directions": "Pour the vodka and Red Bull into a collins glass 3/4 filled with ice cubes. Serve.", @@ -107774,7 +107774,7 @@ "Red Bull\u00ae energy drink" ], "title": "Citrus Bull recipe", - "url": "http://www.drinksmixer.com/drink11397.html" + "url": "https://www.drinksmixer.com/drink11397.html" }, { "directions": "Take an old-fashioned glass and place 2 thin slices of lime and ice into it. Add some perrier to extract the essence of the lime. Add Johnnie Walker Black, with lime juice to finish it off. Add a stirrer and serve.", @@ -107785,7 +107785,7 @@ "limes" ], "title": "Classic Walker recipe", - "url": "http://www.drinksmixer.com/drink11398.html" + "url": "https://www.drinksmixer.com/drink11398.html" }, { "directions": "Stir ingredients together in an old-fashioned glass. Add shaved ice and serve.", @@ -107796,7 +107796,7 @@ "lemon-lime soda" ], "title": "Clear Lemonade recipe", - "url": "http://www.drinksmixer.com/drink11399.html" + "url": "https://www.drinksmixer.com/drink11399.html" }, { "directions": "Mix the first amount of Bacardi 151 with vodka and margarita mix. Layer the last amount of Bacardi on top and light on fire before serving.", @@ -107807,7 +107807,7 @@ "Bacardi\u00ae 151 rum" ], "title": "Cleveland Steamer recipe", - "url": "http://www.drinksmixer.com/drink11401.html" + "url": "https://www.drinksmixer.com/drink11401.html" }, { "directions": "Stir all ingredients in an old-fashioned glass or double shot glass. Place hand over glass, poke a straw through fingers and suck it all up. ", @@ -107817,7 +107817,7 @@ "raspberry cordial" ], "title": "Coat Hanger recipe", - "url": "http://www.drinksmixer.com/drink11402.html" + "url": "https://www.drinksmixer.com/drink11402.html" }, { "directions": "Mix vodka and blue curacao with 7-Up in an old fashioned glass over ice. Add lime juice. Stir. Garnish with twist of lime, and serve.", @@ -107828,7 +107828,7 @@ "lime juice" ], "title": "Cobalt Kiss recipe", - "url": "http://www.drinksmixer.com/drink11403.html" + "url": "https://www.drinksmixer.com/drink11403.html" }, { "directions": "All ingredients to a mixing glass with a few ice cubes. Shake and strain into an old-fashioned glass, and serve.", @@ -107838,7 +107838,7 @@ "151 proof rum" ], "title": "Cocaine Cocktail recipe", - "url": "http://www.drinksmixer.com/drink11404.html" + "url": "https://www.drinksmixer.com/drink11404.html" }, { "directions": "Serve in a shot glass.", @@ -107848,7 +107848,7 @@ "Coca-Cola\u00ae" ], "title": "Cocaracha recipe", - "url": "http://www.drinksmixer.com/drink11405.html" + "url": "https://www.drinksmixer.com/drink11405.html" }, { "directions": "Pour the butterscotch schnapps into the shot glass. Carefully add the Bailey's, letting it float on top, and serve.", @@ -107857,7 +107857,7 @@ "Bailey's\u00ae Irish cream" ], "title": "Cocksucking Cowboy recipe", - "url": "http://www.drinksmixer.com/drink11406.html" + "url": "https://www.drinksmixer.com/drink11406.html" }, { "directions": "Pour all ingrdients (except sloe gin) into a cocktail shaker with a little ice. Shake and pour into an old-fashioned glass. Pour sloe gin on top slowly. Squeeze slice of lemon or lime over top. Serve with straw.", @@ -107868,7 +107868,7 @@ "sloe gin" ], "title": "Cocky Apple Pucker Fucker recipe", - "url": "http://www.drinksmixer.com/drink11407.html" + "url": "https://www.drinksmixer.com/drink11407.html" }, { "directions": "Shake all ingredients in a cocktail shaker half-filled with ice cubes. Strain into an old-fashioned glass, and serve.", @@ -107879,7 +107879,7 @@ "coconut milk" ], "title": "Coconut Batida recipe", - "url": "http://www.drinksmixer.com/drink11408.html" + "url": "https://www.drinksmixer.com/drink11408.html" }, { "directions": "Combine all three ingredients in a cocktail shaker along with store bought ice. Shake and strain into a cocktail glass. Serve.", @@ -107889,7 +107889,7 @@ "Rose's\u00ae blue raspberry mixer" ], "title": "Coconut Breeze recipe", - "url": "http://www.drinksmixer.com/drink11409.html" + "url": "https://www.drinksmixer.com/drink11409.html" }, { "directions": "Fill a cocktail glass 2/3 with ice. Add ingredients, stir, and serve.", @@ -107899,7 +107899,7 @@ "grapefruit juice" ], "title": "Coconut Fusion recipe", - "url": "http://www.drinksmixer.com/drink11410.html" + "url": "https://www.drinksmixer.com/drink11410.html" }, { "directions": "Pour the blue curacao and coconut rum into a highball glass filled with ice cubes. Add cranberry juice to taste, and serve.", @@ -107909,7 +107909,7 @@ "cranberry juice" ], "title": "Coconut Guitar recipe", - "url": "http://www.drinksmixer.com/drink11411.html" + "url": "https://www.drinksmixer.com/drink11411.html" }, { "directions": "Pour the peach schnapps and Midori melon liqueur into a highball glass filled with ice cubes. Add Code Red to taste, and serve.", @@ -107919,7 +107919,7 @@ "Mountain Dew\u00ae Code Red soda" ], "title": "Code Red recipe", - "url": "http://www.drinksmixer.com/drink11412.html" + "url": "https://www.drinksmixer.com/drink11412.html" }, { "directions": "Add all ingredients to a cocktail shaker with a few ice cubes. Shake and strain into a shot glass, and serve.", @@ -107929,7 +107929,7 @@ "hazelnut liqueur" ], "title": "Coffee Nip recipe", - "url": "http://www.drinksmixer.com/drink11413.html" + "url": "https://www.drinksmixer.com/drink11413.html" }, { "directions": "Pour the Malibu, vodka, orange juice and cran-orange juice into a hurricane glass filled with crushed ice. Stir and serve.", @@ -107940,7 +107940,7 @@ "orange juice" ], "title": "Cohutta Twister recipe", - "url": "http://www.drinksmixer.com/drink11414.html" + "url": "https://www.drinksmixer.com/drink11414.html" }, { "directions": "Pour both ingredients into an old-fashioned glass. Garnish with grated dark chocolate sprinkled over the top, and serve.", @@ -107949,7 +107949,7 @@ "Irish cream" ], "title": "Cointreau Caress recipe", - "url": "http://www.drinksmixer.com/drink11415.html" + "url": "https://www.drinksmixer.com/drink11415.html" }, { "directions": "Stir ingredients together in a chilled pint glass/beer mug and serve.", @@ -107958,7 +107958,7 @@ "Red Bull\u00ae energy drink" ], "title": "Colorado Crackpipe recipe", - "url": "http://www.drinksmixer.com/drink11416.html" + "url": "https://www.drinksmixer.com/drink11416.html" }, { "directions": "Pour the SoBe Lizard Blizzard juice into hurricane glass. Add the Jagermeister; serve unstirred.", @@ -107967,7 +107967,7 @@ "Sobe\u00ae Lizard Blizzard juice" ], "title": "Cold Smoke recipe", - "url": "http://www.drinksmixer.com/drink11417.html" + "url": "https://www.drinksmixer.com/drink11417.html" }, { "directions": "Add the barenjager to some mint tea, stir well, and serve. Good for colds.", @@ -107976,7 +107976,7 @@ "tea" ], "title": "Coldsick recipe", - "url": "http://www.drinksmixer.com/drink11418.html" + "url": "https://www.drinksmixer.com/drink11418.html" }, { "directions": "Pour all ingredients into a collins glass almost filled with ice cubes. Stir well and serve.", @@ -107987,7 +107987,7 @@ "half-and-half" ], "title": "Colorado Bulldog #2 recipe", - "url": "http://www.drinksmixer.com/drink11419.html" + "url": "https://www.drinksmixer.com/drink11419.html" }, { "directions": "Combine first 5 ingredients in a cocktail shaker half-filled with ice cubes, and shake well. Strain into a hurricane glass over ice. Add a splash of grenadine, and serve.\r", @@ -108000,7 +108000,7 @@ "grenadine syrup" ], "title": "Combat Cocktail recipe", - "url": "http://www.drinksmixer.com/drink11420.html" + "url": "https://www.drinksmixer.com/drink11420.html" }, { "directions": "Pour rum and iced tea into a chilled cocktail glass. Add a splash of lemon juice, and serve.", @@ -108010,7 +108010,7 @@ "lemon juice" ], "title": "Coney Island Iced Tea recipe", - "url": "http://www.drinksmixer.com/drink11421.html" + "url": "https://www.drinksmixer.com/drink11421.html" }, { "directions": "Pour both normal advokaat and cherry advokaat in shot glass at same time, beside each other. Add butterscotch schnappes. Then add dash of blue curacao. There should be no set layers, it should be a mix of colours.", @@ -108021,7 +108021,7 @@ "Blue Curacao liqueur" ], "title": "Constellation recipe", - "url": "http://www.drinksmixer.com/drink11422.html" + "url": "https://www.drinksmixer.com/drink11422.html" }, { "directions": "Pour amaretto and Coquila liqueur into a cocktail shaker half-filled with crushed ice. Shake until chilled. Pour into a wine glass and add Tequila Rose cream liqueur. Sprinkle dark chocolate shavings on top for garnish/ flavor.", @@ -108031,7 +108031,7 @@ "Tequila Rose\u00ae strawberry cream liqueur" ], "title": "Cordial Cherry recipe", - "url": "http://www.drinksmixer.com/drink11423.html" + "url": "https://www.drinksmixer.com/drink11423.html" }, { "directions": "Pour gin and Rose's lime cordial into a beer mug (frosted preferred). Add Corona lager. Garnish with a lime twist, and serve.", @@ -108041,7 +108041,7 @@ "Rose's\u00ae lime juice" ], "title": "Corogin recipe", - "url": "http://www.drinksmixer.com/drink11424.html" + "url": "https://www.drinksmixer.com/drink11424.html" }, { "directions": "Layer ingredients into a sherry glass, Tia Maria on bottom. Serve.", @@ -108051,7 +108051,7 @@ "amaretto cream liqueur" ], "title": "Corsair recipe", - "url": "http://www.drinksmixer.com/drink11425.html" + "url": "https://www.drinksmixer.com/drink11425.html" }, { "directions": "Pour the Malibu rum and peach schnapps into a cocktail glass. Fill with pink lemonade, or add to taste, and serve.", @@ -108061,7 +108061,7 @@ "pink lemonade" ], "title": "Cotton Candy #4 recipe", - "url": "http://www.drinksmixer.com/drink11426.html" + "url": "https://www.drinksmixer.com/drink11426.html" }, { "directions": "Pour the gin, blue hawaiian schnapps and tom collins mix over ice in a shaker. Shake well. Pour into a tall glass or cup top it off with sprite (to taste), and serve.", @@ -108072,7 +108072,7 @@ "Sprite\u00ae soda" ], "title": "Cotton Candy #3 recipe", - "url": "http://www.drinksmixer.com/drink11427.html" + "url": "https://www.drinksmixer.com/drink11427.html" }, { "directions": "Pour the Kahlua and vodka into a cocktail glass. Stir then add shaved ice. Top with whipped cream and garnish with a coffee bean, and serve.", @@ -108082,7 +108082,7 @@ "whipped cream" ], "title": "Cotton Club recipe", - "url": "http://www.drinksmixer.com/drink11428.html" + "url": "https://www.drinksmixer.com/drink11428.html" }, { "directions": "Pour the sambuca into a shot glass. Float the irish cream, and over it float Bombay Sapphire gin carefully. From the center of the glass, drop in a splash of grenadine, and serve.", @@ -108093,7 +108093,7 @@ "grenadine syrup" ], "title": "Crank Head recipe", - "url": "http://www.drinksmixer.com/drink11430.html" + "url": "https://www.drinksmixer.com/drink11430.html" }, { "directions": "Stir ingredients together in a highball glass filled with ice cubes, and serve.", @@ -108102,7 +108102,7 @@ "Coca-Cola\u00ae Cherry Coke" ], "title": "Cherasberry Rum and Coke recipe", - "url": "http://www.drinksmixer.com/drink11431.html" + "url": "https://www.drinksmixer.com/drink11431.html" }, { "directions": "Pour both ingredients into a cocktail shaker half-filled with ice cubes. Shake well. Strain into a cocktail glass, and serve.", @@ -108111,7 +108111,7 @@ "Ocean Spray\u00ae Cranberry Juice Cocktail" ], "title": "Craptini recipe", - "url": "http://www.drinksmixer.com/drink11432.html" + "url": "https://www.drinksmixer.com/drink11432.html" }, { "directions": "Shake ingredients in a cocktail shaker. Serve on ice.", @@ -108120,7 +108120,7 @@ "pomegranate juice" ], "title": "Crazy Juice recipe", - "url": "http://www.drinksmixer.com/drink11433.html" + "url": "https://www.drinksmixer.com/drink11433.html" }, { "directions": "Add ingredients, shake over ice and pour into a chilled martini glass. Serve.", @@ -108129,7 +108129,7 @@ "Bailey's\u00ae Irish cream" ], "title": "Creamsicle Martini recipe", - "url": "http://www.drinksmixer.com/drink11434.html" + "url": "https://www.drinksmixer.com/drink11434.html" }, { "directions": "Stir ingredients together in a shot glass, and serve.", @@ -108138,7 +108138,7 @@ "Tequila Rose\u00ae strawberry cream liqueur" ], "title": "Creamy Pussy recipe", - "url": "http://www.drinksmixer.com/drink11435.html" + "url": "https://www.drinksmixer.com/drink11435.html" }, { "directions": "Mix equal parts sambuca and cream soda with ice. Serve in a chilled glass.", @@ -108147,7 +108147,7 @@ "cream soda" ], "title": "Creamy Sam recipe", - "url": "http://www.drinksmixer.com/drink11436.html" + "url": "https://www.drinksmixer.com/drink11436.html" }, { "directions": "In an old-fashioned glass, add the vodka. Nearly fill with cranberry juice, and float Midori on top. Garnish with a cherry, and serve.", @@ -108159,7 +108159,7 @@ "Midori\u00ae melon liqueur" ], "title": "Creek Juice recipe", - "url": "http://www.drinksmixer.com/drink11437.html" + "url": "https://www.drinksmixer.com/drink11437.html" }, { "directions": "Shake well with ice. Strain into a wine goblet, add a little club soda, and serve.", @@ -108171,7 +108171,7 @@ "club soda" ], "title": "Crimson Fizz recipe", - "url": "http://www.drinksmixer.com/drink11438.html" + "url": "https://www.drinksmixer.com/drink11438.html" }, { "directions": "Pour both ingredients into an old-fashioned glass 1/2 filled with ice cubes. Stir slightly, and serve.", @@ -108180,7 +108180,7 @@ "apricot nectar" ], "title": "Crimson Passion recipe", - "url": "http://www.drinksmixer.com/drink11439.html" + "url": "https://www.drinksmixer.com/drink11439.html" }, { "directions": "Pour ingredients into a collins glass almost filled with ice cubes, stir slightly and serve.", @@ -108189,7 +108189,7 @@ "Faygo\u00ae rock & rye soda" ], "title": "Crimson Tide #2 recipe", - "url": "http://www.drinksmixer.com/drink11440.html" + "url": "https://www.drinksmixer.com/drink11440.html" }, { "directions": "Shake ingredients together, strain into a shot glass, and serve.", @@ -108198,7 +108198,7 @@ "white creme de cacao" ], "title": "Crispy Crunch recipe", - "url": "http://www.drinksmixer.com/drink11441.html" + "url": "https://www.drinksmixer.com/drink11441.html" }, { "directions": "Pour both ingredients into a highball glass filled with ice cubes, stir and serve.", @@ -108207,7 +108207,7 @@ "ginger ale" ], "title": "Crown & Ginger recipe", - "url": "http://www.drinksmixer.com/drink11442.html" + "url": "https://www.drinksmixer.com/drink11442.html" }, { "directions": "Pour the Crown Royal into an old-fashioned glass filled with ice cubes. Fill the rest with coke, and serve.", @@ -108216,7 +108216,7 @@ "Coca-Cola\u00ae" ], "title": "Crown & Coke recipe", - "url": "http://www.drinksmixer.com/drink11443.html" + "url": "https://www.drinksmixer.com/drink11443.html" }, { "directions": "Pour the alcohol into a mixing glass with ice, and stir well. Strain into a cocktail glass. Add the splashes of 7-up and sour mix, and serve.", @@ -108228,7 +108228,7 @@ "sweet and sour mix" ], "title": "CRS recipe", - "url": "http://www.drinksmixer.com/drink11444.html" + "url": "https://www.drinksmixer.com/drink11444.html" }, { "directions": "Pour hte Crown Royal into a brandy snifter filled with ice. Add Parrot Bay, stir gently and serve.", @@ -108237,7 +108237,7 @@ "Captain Morgan\u00ae Parrot Bay coconut rum" ], "title": "Crum recipe", - "url": "http://www.drinksmixer.com/drink11445.html" + "url": "https://www.drinksmixer.com/drink11445.html" }, { "directions": "Stir together in a chilled cocktail glass, and serve.", @@ -108247,7 +108247,7 @@ "pineapple juice" ], "title": "Cruzan Confusion recipe", - "url": "http://www.drinksmixer.com/drink11446.html" + "url": "https://www.drinksmixer.com/drink11446.html" }, { "directions": "Mix the vodka and Malibu and pour into a double-shot glass. Using a straw that has half and half in it, (by holding your finger on one end) slowly drip a few drops into the shot. The effect is disgusting and amazing. Serve.", @@ -108257,7 +108257,7 @@ "half-and-half" ], "title": "Cum Shot #3 recipe", - "url": "http://www.drinksmixer.com/drink11448.html" + "url": "https://www.drinksmixer.com/drink11448.html" }, { "directions": "Combine Cutty Sark scotch, and Jim Beam bourbon in a shot glass. Stir and serve.", @@ -108266,7 +108266,7 @@ "Jim Beam\u00ae bourbon whiskey" ], "title": "Cutty Beam recipe", - "url": "http://www.drinksmixer.com/drink11450.html" + "url": "https://www.drinksmixer.com/drink11450.html" }, { "directions": "Fill a pint glass with Bacardi and cola, Drop a shot of Di Saronno into the glass and serve.", @@ -108276,7 +108276,7 @@ "cola" ], "title": "D-Dive recipe", - "url": "http://www.drinksmixer.com/drink11451.html" + "url": "https://www.drinksmixer.com/drink11451.html" }, { "directions": "Layer the Kahlua and creme de bananes in that order into a shot glass. Top with Bailey's Irish cream, and serve.", @@ -108286,7 +108286,7 @@ "Bailey's\u00ae Irish cream" ], "title": "Da Monkey recipe", - "url": "http://www.drinksmixer.com/drink11452.html" + "url": "https://www.drinksmixer.com/drink11452.html" }, { "directions": "Combine ingredients in a shaker with slices of lime and cracked ice. Shake hard and well, then strain into a chilled martini glass. The pulp from the lime slices will act as the garnish. Serve.", @@ -108298,7 +108298,7 @@ "triple sec" ], "title": "Daniel Island Cosmopolitan recipe", - "url": "http://www.drinksmixer.com/drink11453.html" + "url": "https://www.drinksmixer.com/drink11453.html" }, { "directions": "Stir ingredients together in a shot glass, and serve.", @@ -108307,7 +108307,7 @@ "cranberry soda" ], "title": "Dark Blood recipe", - "url": "http://www.drinksmixer.com/drink11455.html" + "url": "https://www.drinksmixer.com/drink11455.html" }, { "directions": "Pour the rum, Kahlua, vermouth and lemon into a cocktail shaker half-filled with ice cubes. Shake and strain into a Champagne flute over crushed ice. Top with Coca-cola. Garnish with a lemon slice, and serve.", @@ -108319,7 +108319,7 @@ "Coca-Cola\u00ae" ], "title": "Dark Horse recipe", - "url": "http://www.drinksmixer.com/drink11456.html" + "url": "https://www.drinksmixer.com/drink11456.html" }, { "directions": "Combine equal amounts of both ingredients. Serve cold to very cold in wine glass or similar \"elegant\" presentation. \r", @@ -108328,7 +108328,7 @@ "Smirnoff\u00ae vodka" ], "title": "Dark Mark recipe", - "url": "http://www.drinksmixer.com/drink11457.html" + "url": "https://www.drinksmixer.com/drink11457.html" }, { "directions": "Pour vodka into the milk. Add chocolate flavoring as desired, and serve.", @@ -108338,7 +108338,7 @@ "milk" ], "title": "Dark Pike recipe", - "url": "http://www.drinksmixer.com/drink11458.html" + "url": "https://www.drinksmixer.com/drink11458.html" }, { "directions": "Empty the 4 cans of frozen lemonade into a large container and pour in the Everclear, beer and Red Bull. Mix until all the lemonade has dissolved. Add blackcurrent syrup to taste (this will turn the mixture a dark purple colour). Serve on ice or chilled. ", @@ -108350,7 +108350,7 @@ "blackcurrant syrup" ], "title": "Dark Side of the Force recipe", - "url": "http://www.drinksmixer.com/drink11459.html" + "url": "https://www.drinksmixer.com/drink11459.html" }, { "directions": "Stir with lots of ice in a punch bowl. Serve when chilled.", @@ -108362,7 +108362,7 @@ "Fanta\u00ae orange soda" ], "title": "Dave's Unleaded recipe", - "url": "http://www.drinksmixer.com/drink11460.html" + "url": "https://www.drinksmixer.com/drink11460.html" }, { "directions": "Add all ingredients to a cocktail shaker half-filled with ice. Shake well, and strain into a cocktail glass. Serve.", @@ -108373,7 +108373,7 @@ "Ocean Spray\u00ae cranberry-cherry juice" ], "title": "David's Red Robbin recipe", - "url": "http://www.drinksmixer.com/drink11461.html" + "url": "https://www.drinksmixer.com/drink11461.html" }, { "directions": "Mix the Jack Daniel's and Jagermeister into a 2-oz shot glass, and shoot. Chase with tequila.", @@ -108383,7 +108383,7 @@ "tequila" ], "title": "Dead Man Walking recipe", - "url": "http://www.drinksmixer.com/drink11462.html" + "url": "https://www.drinksmixer.com/drink11462.html" }, { "directions": "Pour the Opal Nera into a shot glass, then over a spoon add the tequila, and serve.", @@ -108392,7 +108392,7 @@ "tequila" ], "title": "Death Shot recipe", - "url": "http://www.drinksmixer.com/drink11463.html" + "url": "https://www.drinksmixer.com/drink11463.html" }, { "directions": "Mix 3 tablespoons Oreo cookie crumbs (available in most groceries in baking isle) plus 1 tablesoon powdered sugar on a flat plate. Coat rim of chilled cocktail Martini glass with lime and then dip rim of glass in Oreo mixture. Set aside.\r", @@ -108403,7 +108403,7 @@ "half-and-half" ], "title": "Death by Chocolate Martini recipe", - "url": "http://www.drinksmixer.com/drink11464.html" + "url": "https://www.drinksmixer.com/drink11464.html" }, { "directions": "Add all ingredients to a cocktail shaker half-filled with ice cubes. Strain into shot glasses, and serve. Makes 2-3 servings.", @@ -108418,7 +108418,7 @@ "Ocean Spray\u00ae Cranberry Juice Cocktail" ], "title": "Death By Sex recipe", - "url": "http://www.drinksmixer.com/drink11465.html" + "url": "https://www.drinksmixer.com/drink11465.html" }, { "directions": "Mix the gin, vodka, Red Bull, and club soda together in a large container. Add lemon juice and cola if needed (to taste). Serve into appropriate cups/glasses.", @@ -108431,7 +108431,7 @@ "cola" ], "title": "Death Mix recipe", - "url": "http://www.drinksmixer.com/drink11466.html" + "url": "https://www.drinksmixer.com/drink11466.html" }, { "directions": "Pour the Bailey's and Kahlua into a shot glass. Top with whipped cream, and serve.", @@ -108441,7 +108441,7 @@ "whipped cream" ], "title": "Deep Throat recipe", - "url": "http://www.drinksmixer.com/drink11467.html" + "url": "https://www.drinksmixer.com/drink11467.html" }, { "directions": "Stir together in a shot glass, and serve.", @@ -108452,7 +108452,7 @@ "pineapple juice" ], "title": "Deez Nutz recipe", - "url": "http://www.drinksmixer.com/drink11468.html" + "url": "https://www.drinksmixer.com/drink11468.html" }, { "directions": "Add all ingredients to a cocktail shaker half-filled with ice cubes and shake. Pour into a collins glass filled with ice, and serve.", @@ -108462,7 +108462,7 @@ "Frangelico\u00ae hazelnut liqueur" ], "title": "Deez Nutz #2 recipe", - "url": "http://www.drinksmixer.com/drink11469.html" + "url": "https://www.drinksmixer.com/drink11469.html" }, { "directions": "Place ice in blender, add remaining items, and mix well into a slushi. Pour into a large glass of 16 oz or more, hurricane glass is recommended. Top drinks with whipped topping and a whole cherry, and drizzle coco syrup over whipped topping. Add a large straw into glass, preferably a large plastic flex straw. Maybe strong tasting due to Kamora, so you can dilute mix with vodka if desired.", @@ -108476,7 +108476,7 @@ "Smirnoff\u00ae vodka" ], "title": "Della's After Dark recipe", - "url": "http://www.drinksmixer.com/drink11470.html" + "url": "https://www.drinksmixer.com/drink11470.html" }, { "directions": "Stir ingredients together over ice in a highball glass, and serve.", @@ -108486,7 +108486,7 @@ "POM\u00ae pomegranate juice" ], "title": "Desert Breeze recipe", - "url": "http://www.drinksmixer.com/drink11471.html" + "url": "https://www.drinksmixer.com/drink11471.html" }, { "directions": "Combine over ice in a shaker. Shake and strain into shot glass, and serve.", @@ -108496,7 +108496,7 @@ "Red Bull\u00ae energy drink" ], "title": "Desert Water #2 recipe", - "url": "http://www.drinksmixer.com/drink11472.html" + "url": "https://www.drinksmixer.com/drink11472.html" }, { "directions": "Shake with ice. Strain into a cocktail glass. Drizzle with chocolate sauce, and serve.", @@ -108505,7 +108505,7 @@ "white chocolate liqueur" ], "title": "Desperate Housewife recipe", - "url": "http://www.drinksmixer.com/drink11473.html" + "url": "https://www.drinksmixer.com/drink11473.html" }, { "directions": "Add equal amounts of all ingredients into an old fashioned glass and serve.", @@ -108516,7 +108516,7 @@ "grenadine syrup" ], "title": "Devil's Blood #2 recipe", - "url": "http://www.drinksmixer.com/drink11474.html" + "url": "https://www.drinksmixer.com/drink11474.html" }, { "directions": "Pour the Mountain Dew in a glass, then mix in the Jagermeister. A lot of the Jager will sink to the bottom, causing a dark, to green effect. Serve over ice.", @@ -108525,7 +108525,7 @@ "Mountain Dew\u00ae citrus soda" ], "title": "Dewmeister recipe", - "url": "http://www.drinksmixer.com/drink11475.html" + "url": "https://www.drinksmixer.com/drink11475.html" }, { "directions": "Frost the rim of a collins glass with salt. Pour the 4 ingredients into a cocktail shaker and shake gently. Pour into the collins glass. Fill with 7-up and garnish with wheel of kiwi fruit and lemon twist. Serve.", @@ -108537,7 +108537,7 @@ "7-Up\u00ae soda" ], "title": "Diabloow recipe", - "url": "http://www.drinksmixer.com/drink11476.html" + "url": "https://www.drinksmixer.com/drink11476.html" }, { "directions": "Pour ingredients into a double-shot glass, and shoot.", @@ -108547,7 +108547,7 @@ "Sprite\u00ae soda" ], "title": "Dick Lick recipe", - "url": "http://www.drinksmixer.com/drink11477.html" + "url": "https://www.drinksmixer.com/drink11477.html" }, { "directions": "Shake and strain up into a large shot glass or small highball glass, and serve.", @@ -108556,7 +108556,7 @@ "Tuaca\u00ae citrus liqueur" ], "title": "Dick Tracy recipe", - "url": "http://www.drinksmixer.com/drink11478.html" + "url": "https://www.drinksmixer.com/drink11478.html" }, { "directions": "Pour ingredients in equal parts into a shot glass, vodka first, and serve.", @@ -108565,7 +108565,7 @@ "cranberry juice" ], "title": "Dimetapp recipe", - "url": "http://www.drinksmixer.com/drink11479.html" + "url": "https://www.drinksmixer.com/drink11479.html" }, { "directions": "Shake ingredients together in a cocktail shaker half-filled with ice cubes. Pour into a collins glass, and serve.", @@ -108576,7 +108576,7 @@ "root beer schnapps" ], "title": "Dingleberry recipe", - "url": "http://www.drinksmixer.com/drink11480.html" + "url": "https://www.drinksmixer.com/drink11480.html" }, { "directions": "Pour the bourbon into an old-fashioned glass filled with ice cubes. Add the Mountain Dew, and serve. ", @@ -108585,7 +108585,7 @@ "Mountain Dew\u00ae citrus soda" ], "title": "Dinguskhan recipe", - "url": "http://www.drinksmixer.com/drink11481.html" + "url": "https://www.drinksmixer.com/drink11481.html" }, { "directions": "Fill a cup or highball glass with ice and combine all ingredients. Stir and serve.", @@ -108601,7 +108601,7 @@ "grenadine syrup" ], "title": "Dirty Ashtray recipe", - "url": "http://www.drinksmixer.com/drink11482.html" + "url": "https://www.drinksmixer.com/drink11482.html" }, { "directions": "Fill half a tall glass with shaved or crushed ice. Add the Bailey's, banana rum, and cream. Serve.", @@ -108611,7 +108611,7 @@ "cream" ], "title": "Dirty Banana #2 recipe", - "url": "http://www.drinksmixer.com/drink11483.html" + "url": "https://www.drinksmixer.com/drink11483.html" }, { "directions": "Pour the butterscotch schnapps into a shot glass. Layer the Bailey's on top. Add the drops of grenadine creating tiny red veins in the layers. Serve.", @@ -108621,7 +108621,7 @@ "grenadine syrup" ], "title": "Dirty Fetus recipe", - "url": "http://www.drinksmixer.com/drink11484.html" + "url": "https://www.drinksmixer.com/drink11484.html" }, { "directions": "Pour in equal parts into a shot glass, stir and serve.", @@ -108630,7 +108630,7 @@ "creme de bananes" ], "title": "Dirty Hooker recipe", - "url": "http://www.drinksmixer.com/drink11485.html" + "url": "https://www.drinksmixer.com/drink11485.html" }, { "directions": "Cut the fruit (orange, pinapple preferably) into desirable size slices. Mix ingredients into something big enough to hold everything (its a lot). An average sized cooler will probably be your best bet here. NO ICE - Fill up a cup of ice then fill with punch and stir. \r", @@ -108643,7 +108643,7 @@ "fruit" ], "title": "Dirty Hunch Punch recipe", - "url": "http://www.drinksmixer.com/drink11486.html" + "url": "https://www.drinksmixer.com/drink11486.html" }, { "directions": "Serve in a shot glass.", @@ -108652,7 +108652,7 @@ "coconut rum" ], "title": "Dirty Monkey #2 recipe", - "url": "http://www.drinksmixer.com/drink11487.html" + "url": "https://www.drinksmixer.com/drink11487.html" }, { "directions": "Pour all ingredients into an old-fashioned glass filled with ice cubes, stir and serve. ", @@ -108662,7 +108662,7 @@ "skimmed milk" ], "title": "Dirty Mother #2 recipe", - "url": "http://www.drinksmixer.com/drink11488.html" + "url": "https://www.drinksmixer.com/drink11488.html" }, { "directions": "Fill a cup with ice. Pour the Kahlua, then add the root beer, and serve.", @@ -108671,7 +108671,7 @@ "A&W\u00ae root beer" ], "title": "Dirty Pat-Trick recipe", - "url": "http://www.drinksmixer.com/drink11489.html" + "url": "https://www.drinksmixer.com/drink11489.html" }, { "directions": "In an old-fashioned glass filled with ice, combine the rum, sherry and lime juice. Fill with club soda. Garnish with lemon peel, and serve.", @@ -108682,7 +108682,7 @@ "club soda" ], "title": "Dirty Rotten recipe", - "url": "http://www.drinksmixer.com/drink11490.html" + "url": "https://www.drinksmixer.com/drink11490.html" }, { "directions": "Cover the rim of a shot glass in chocolate syrup so that when the drinker takes the shot they end up with a chocolate mustache. Fill shot with tequila.", @@ -108691,7 +108691,7 @@ "Hershey's\u00ae chocolate syrup" ], "title": "Dirty Sanchez Shot recipe", - "url": "http://www.drinksmixer.com/drink11491.html" + "url": "https://www.drinksmixer.com/drink11491.html" }, { "directions": "Combine ingredients over ice in an old-fashioned glass. Stir, and serve.", @@ -108701,7 +108701,7 @@ "sweet and sour mix" ], "title": "Dirty Sewer recipe", - "url": "http://www.drinksmixer.com/drink11492.html" + "url": "https://www.drinksmixer.com/drink11492.html" }, { "directions": "Stir all ingredients together in an old-fashioned glass. Fill with ice and serve.", @@ -108711,7 +108711,7 @@ "apple juice" ], "title": "Dirty South #2 recipe", - "url": "http://www.drinksmixer.com/drink11493.html" + "url": "https://www.drinksmixer.com/drink11493.html" }, { "directions": "Add all ingredients to a cocktail shaker half-filled with ice cubes. Shake well, strain into 2 shot glasses, and serve.", @@ -108722,7 +108722,7 @@ "pineapple juice" ], "title": "Dirty Swingers recipe", - "url": "http://www.drinksmixer.com/drink11494.html" + "url": "https://www.drinksmixer.com/drink11494.html" }, { "directions": "Muddle the sugar into the lime wedges in an highball glass. Fill half glass with ice cubes. Pour the rum and angostura into the glass. Stir well. Fill with chinotto, and serve.", @@ -108734,7 +108734,7 @@ "Angostura\u00ae bitters" ], "title": "Dissidente recipe", - "url": "http://www.drinksmixer.com/drink11495.html" + "url": "https://www.drinksmixer.com/drink11495.html" }, { "directions": "Done just like an Irish Car Bomb, pour the whiskey on top of the schnapps in a shot glass, and drop it into a pint of Pabst beer.", @@ -108744,7 +108744,7 @@ "Pabst\u00ae lager" ], "title": "Dixie Car Bomb recipe", - "url": "http://www.drinksmixer.com/drink11496.html" + "url": "https://www.drinksmixer.com/drink11496.html" }, { "directions": "Combine all ingredients in a cocktail shaker half-filled with ice cubes, and shake well. Pour over ice in a tall glass, and serve.", @@ -108756,7 +108756,7 @@ "evaporated milk" ], "title": "Dixie Pearl recipe", - "url": "http://www.drinksmixer.com/drink11497.html" + "url": "https://www.drinksmixer.com/drink11497.html" }, { "directions": "Fill half a shot glass with Bacardi rum. Add a squeeze of lemon juice. Top with Champagne, and serve (to drink, place hand over top, slam on bar and down in one).", @@ -108766,7 +108766,7 @@ "lemon juice" ], "title": "Dizzy Fizzy Slammers recipe", - "url": "http://www.drinksmixer.com/drink11498.html" + "url": "https://www.drinksmixer.com/drink11498.html" }, { "directions": "Chill ingredients in a mixing glass with ice. Strain into a chilled shot glass, and serve.", @@ -108776,7 +108776,7 @@ "Goldschlager\u00ae cinnamon schnapps" ], "title": "Dizzy Nights recipe", - "url": "http://www.drinksmixer.com/drink11499.html" + "url": "https://www.drinksmixer.com/drink11499.html" }, { "directions": "Pour the 151, peach schnapps and cranberry juice into a cocktail shaker half-filled with ice cubes. Shake well and pour into a frosted cocktail glass. Add a splash of Sprite, and serve cold.", @@ -108787,7 +108787,7 @@ "7-Up\u00ae soda" ], "title": "Do Me Now recipe", - "url": "http://www.drinksmixer.com/drink11500.html" + "url": "https://www.drinksmixer.com/drink11500.html" }, { "directions": "Pour all ingredients into a collins glass (lemonade to taste) stir and serve.", @@ -108798,7 +108798,7 @@ "lemonade" ], "title": "Doc's Lemonade recipe", - "url": "http://www.drinksmixer.com/drink11501.html" + "url": "https://www.drinksmixer.com/drink11501.html" }, { "directions": "In a 10 gallon storage tub, place cut up citrus fruit and vodka. Let sit over night. Then pour in the hawaiian pinch, juice and Sprite. Enjoy. Although seeing as this is made for dorm rooms, any of the ingredients can be replaced for whatever is available.", @@ -108810,7 +108810,7 @@ "fruits" ], "title": "Dorm Room Citrus Punch recipe", - "url": "http://www.drinksmixer.com/drink11502.html" + "url": "https://www.drinksmixer.com/drink11502.html" }, { "directions": "Combine all ingredients in a blender with lots of ice (most of blender). Serve in tall glasses.", @@ -108820,7 +108820,7 @@ "Countrytime\u00ae pink lemonade" ], "title": "Dorm Room Special recipe", - "url": "http://www.drinksmixer.com/drink11503.html" + "url": "https://www.drinksmixer.com/drink11503.html" }, { "directions": "Pour ingredients into highball glass, top with ice and serve.", @@ -108830,7 +108830,7 @@ "orange juice" ], "title": "Double Muff Diver recipe", - "url": "http://www.drinksmixer.com/drink11504.html" + "url": "https://www.drinksmixer.com/drink11504.html" }, { "directions": "Add all ingredients to a cocktail shaker with some ice cubes. Shake and strain into double-shot glasses, and serve.", @@ -108840,7 +108840,7 @@ "Bombay Sapphire\u00ae gin" ], "title": "Double Shot From Hell recipe", - "url": "http://www.drinksmixer.com/drink11505.html" + "url": "https://www.drinksmixer.com/drink11505.html" }, { "directions": "Pour the Southern Comfort into a highball glass filled with ice cubes. Fill with Squirt, and serve.", @@ -108849,7 +108849,7 @@ "Squirt\u00ae citrus soda" ], "title": "Double Southern and Squirt recipe", - "url": "http://www.drinksmixer.com/drink11506.html" + "url": "https://www.drinksmixer.com/drink11506.html" }, { "directions": "Slowly pour the beer into the mug as to not make a head. Pour the Dr. Pepper in over a black & tan spoon (concave side of spoon down). Serve.", @@ -108858,7 +108858,7 @@ "Dr. Pepper\u00ae soda" ], "title": "Dr. Beer recipe", - "url": "http://www.drinksmixer.com/drink11507.html" + "url": "https://www.drinksmixer.com/drink11507.html" }, { "directions": "Stir together in an old-fashioned glass, and serve.", @@ -108867,7 +108867,7 @@ "Dr. Pepper\u00ae soda" ], "title": "Dr. Jim recipe", - "url": "http://www.drinksmixer.com/drink11508.html" + "url": "https://www.drinksmixer.com/drink11508.html" }, { "directions": "Pour the Southern Comfort into a highball glass filled with crushed ice. Fill with Dr. Pepper, and serve.", @@ -108876,7 +108876,7 @@ "Dr. Pepper\u00ae soda" ], "title": "Dr. SoCo recipe", - "url": "http://www.drinksmixer.com/drink11509.html" + "url": "https://www.drinksmixer.com/drink11509.html" }, { "directions": "Pour the vodka into a highball glass filled with ice cubes. Add the Dr. Pepper, and serve.", @@ -108885,7 +108885,7 @@ "Dr. Pepper\u00ae soda" ], "title": "Dr. Zhivago recipe", - "url": "http://www.drinksmixer.com/drink11510.html" + "url": "https://www.drinksmixer.com/drink11510.html" }, { "directions": "Stir ingredients together in a highball glass filled with ice, and serve.", @@ -108894,7 +108894,7 @@ "Dr. Pepper\u00ae soda" ], "title": "Dr. Black recipe", - "url": "http://www.drinksmixer.com/drink11511.html" + "url": "https://www.drinksmixer.com/drink11511.html" }, { "directions": "Pour the tequila and Midori liqueur into a cocktail glass. Top with Mountain Dew, and serve.", @@ -108904,7 +108904,7 @@ "Mountain Dew\u00ae citrus soda" ], "title": "Dragon Piss #2 recipe", - "url": "http://www.drinksmixer.com/drink11512.html" + "url": "https://www.drinksmixer.com/drink11512.html" }, { "directions": "In a shaker filled with ice, combine the Midori, Bacardi rum and pineapple juice. Shake well until the shaker is too cold to hold. Then strain the contents into an old-fashioned glass filled with ice.\r", @@ -108916,7 +108916,7 @@ "Dole\u00ae pineapple juice" ], "title": "Dreamin' Caribbean Cocktail recipe", - "url": "http://www.drinksmixer.com/drink11513.html" + "url": "https://www.drinksmixer.com/drink11513.html" }, { "directions": "Mix ingredients in shot glass and prepare to be tough.", @@ -108925,7 +108925,7 @@ "Bacardi\u00ae 151 rum" ], "title": "Drummer Shot recipe", - "url": "http://www.drinksmixer.com/drink11514.html" + "url": "https://www.drinksmixer.com/drink11514.html" }, { "directions": "Combine the Grand Marnier and iced tea in a tall glass. Add ice and/or lemon wedge to drink for extra flavor. The iced tea washes out most of the liquor flavor... so add as much Grand Marnier as you wish.", @@ -108934,7 +108934,7 @@ "lemon iced tea" ], "title": "Drunken Grandma recipe", - "url": "http://www.drinksmixer.com/drink11515.html" + "url": "https://www.drinksmixer.com/drink11515.html" }, { "directions": "Fill blender 2/3 full of ice. Add all other ingredients. Blend to smoothie consistency. Pour into a highball glass, and garnish at will. Serve.", @@ -108947,7 +108947,7 @@ "vanilla extract" ], "title": "Drunken Parrot recipe", - "url": "http://www.drinksmixer.com/drink11516.html" + "url": "https://www.drinksmixer.com/drink11516.html" }, { "directions": "Pour the rye whiskey, Kahlua coffee liqueur and vodka into a beer mug. Top with Pepsi cola, and serve.", @@ -108958,7 +108958,7 @@ "Pepsi\u00ae cola" ], "title": "Drunken Stupor recipe", - "url": "http://www.drinksmixer.com/drink11517.html" + "url": "https://www.drinksmixer.com/drink11517.html" }, { "directions": "Add all ingredients to a cocktail glass over ice and shake well. Garnish with a lemon wedge, and serve.", @@ -108969,7 +108969,7 @@ "creme de cassis" ], "title": "Dutch Punch recipe", - "url": "http://www.drinksmixer.com/drink11518.html" + "url": "https://www.drinksmixer.com/drink11518.html" }, { "directions": "Pour Maker's Mark bourbon whiskey and Jagermeister herbal liqueur into a highball glass filled with ice cubes. Fill with sour mix, top with grenadine, and serve.", @@ -108980,7 +108980,7 @@ "grenadine syrup" ], "title": "Dyer Maker recipe", - "url": "http://www.drinksmixer.com/drink11519.html" + "url": "https://www.drinksmixer.com/drink11519.html" }, { "directions": "Pour all ingredients into a cocktail glass. Stir and serve with or without straw.", @@ -108990,7 +108990,7 @@ "pink grapefruit juice" ], "title": "Edible Panties recipe", - "url": "http://www.drinksmixer.com/drink11520.html" + "url": "https://www.drinksmixer.com/drink11520.html" }, { "directions": "Mix eggs and sugar together until well blended. SLOWLY add brandy. (If added too fast, eggs will break) Add whole milk. Add 1/2 of the heavy cream. \r", @@ -109002,7 +109002,7 @@ "eggs" ], "title": "Egg Nog - Country Style recipe", - "url": "http://www.drinksmixer.com/drink11521.html" + "url": "https://www.drinksmixer.com/drink11521.html" }, { "directions": "Combine the Bacardi Limon rum, Cointreau, and blue Curacao in a shaker with ice. Shake and strain into chilled cocktail glass. Garnish with an orange twist, and serve.", @@ -109012,7 +109012,7 @@ "Blue Curacao liqueur" ], "title": "El Caribe (Caribbean Martini) recipe", - "url": "http://www.drinksmixer.com/drink11522.html" + "url": "https://www.drinksmixer.com/drink11522.html" }, { "directions": "Pour the vodka into a large container. Take the frozen limeade and pour it all inside and stir it. Pour in 12 light beers and stir until it is all liquified. Add ice, and serve.", @@ -109022,7 +109022,7 @@ "light beer" ], "title": "El Stoner recipe", - "url": "http://www.drinksmixer.com/drink11523.html" + "url": "https://www.drinksmixer.com/drink11523.html" }, { "directions": "Mix all the above ingredients together except the sprite. Put in freezer safe containers with a good sealing lid. Make at least 24 hours in advance to give it time to freeze. It won't ever freeze solid because of the alcohol, but will get nice and slushy. \r", @@ -109036,7 +109036,7 @@ "Sprite\u00ae soda" ], "title": "Electric Koolaid Slush recipe", - "url": "http://www.drinksmixer.com/drink11524.html" + "url": "https://www.drinksmixer.com/drink11524.html" }, { "directions": "Pour the Captain Morgan into a hurricane glass filled with crushed ice. Add the juicy juice orange-tangerine juice, stir and serve.", @@ -109045,7 +109045,7 @@ "Juicy Juice\u00ae orange tangerine juice" ], "title": "Captain Ron recipe", - "url": "http://www.drinksmixer.com/drink11525.html" + "url": "https://www.drinksmixer.com/drink11525.html" }, { "directions": "Combine in a large container with lots of ice; serve into cups.", @@ -109058,7 +109058,7 @@ "Squirt\u00ae citrus soda" ], "title": "Elk Creek Water recipe", - "url": "http://www.drinksmixer.com/drink11526.html" + "url": "https://www.drinksmixer.com/drink11526.html" }, { "directions": "Stir ingredients together with ice in an old-fashioned glass, and serve.", @@ -109067,7 +109067,7 @@ "Mountain Dew\u00ae MDX energy drink" ], "title": "Energy Flux recipe", - "url": "http://www.drinksmixer.com/drink11527.html" + "url": "https://www.drinksmixer.com/drink11527.html" }, { "directions": "Pour the green ginger wine into a beer mug. Add the bottle of pumpkin ale, and serve.", @@ -109076,7 +109076,7 @@ "Crabbie's\u00ae green ginger wine" ], "title": "English Pumpkin Pie recipe", - "url": "http://www.drinksmixer.com/drink11528.html" + "url": "https://www.drinksmixer.com/drink11528.html" }, { "directions": "Add ingredients to a mixing glass half-filled with ice. Swirl and strain into a large shot glass, and serve.", @@ -109086,7 +109086,7 @@ "cranberry juice" ], "title": "Angie's Sweet Pussy recipe", - "url": "http://www.drinksmixer.com/drink11529.html" + "url": "https://www.drinksmixer.com/drink11529.html" }, { "directions": "Place the ice cream in a blender and add the Bailey's, milk and rum. Top with ice, and blend well. Pour into a cocktail glass, and serve. ", @@ -109097,7 +109097,7 @@ "coffee ice cream" ], "title": "Chilled Orgasm recipe", - "url": "http://www.drinksmixer.com/drink11530.html" + "url": "https://www.drinksmixer.com/drink11530.html" }, { "directions": "Pour ingredients over ice in a highball glass. Stir until well mixed, and serve.", @@ -109109,7 +109109,7 @@ "simple syrup" ], "title": "Destefano recipe", - "url": "http://www.drinksmixer.com/drink11531.html" + "url": "https://www.drinksmixer.com/drink11531.html" }, { "directions": "Combine all three ingredients in a cup with plenty of ice. The colder the better!", @@ -109119,7 +109119,7 @@ "Sprite\u00ae soda" ], "title": "Erection recipe", - "url": "http://www.drinksmixer.com/drink11532.html" + "url": "https://www.drinksmixer.com/drink11532.html" }, { "directions": "Stir ingredients together in an old-fashioned glass, and serve.", @@ -109130,7 +109130,7 @@ "food coloring" ], "title": "Erik the Red recipe", - "url": "http://www.drinksmixer.com/drink11533.html" + "url": "https://www.drinksmixer.com/drink11533.html" }, { "directions": "Pour coffee liqueur, vodka, and espresso into a cocktail shaker filled with ice. Shake vigorously. Strain into a chilled Martini (cocktail) glass, and serve. The drink should be slightly frothy.", @@ -109140,7 +109140,7 @@ "espresso" ], "title": "Espresso Martini recipe", - "url": "http://www.drinksmixer.com/drink11534.html" + "url": "https://www.drinksmixer.com/drink11534.html" }, { "directions": "Pour the Coke on ice in a highball glass. Add the amaretto almond liqueur, and serve.", @@ -109149,7 +109149,7 @@ "Coca-Cola\u00ae" ], "title": "European Dr. Pepper recipe", - "url": "http://www.drinksmixer.com/drink11535.html" + "url": "https://www.drinksmixer.com/drink11535.html" }, { "directions": "Add Everclear to a shot glass, followed by the orange juice.. then pineapple juice. Make sure the cherry 7-up has been in the refridgerator or on ice still in the can. Pour that in last for a fizzy cherry pop to the shot.. take a stirring stick and give it a small stir, then shoot and enjoy!", @@ -109160,7 +109160,7 @@ "7-Up\u00ae cherry soda" ], "title": "Everlasting Sunset recipe", - "url": "http://www.drinksmixer.com/drink11536.html" + "url": "https://www.drinksmixer.com/drink11536.html" }, { "directions": "Half fill a pint glass with beer. Add the tequila, then top off with limeade, and serve.", @@ -109170,7 +109170,7 @@ "limeade" ], "title": "Desperado recipe", - "url": "http://www.drinksmixer.com/drink11537.html" + "url": "https://www.drinksmixer.com/drink11537.html" }, { "directions": "Add crushed ice to a 10-oz glass until 1/3 full. Pour the Sortilege rye whiskey and fresh apple juice. Add a cinnamon stick. Stir and garnish with a slice of apple. Serve. ", @@ -109181,7 +109181,7 @@ "apple" ], "title": "Evil Spell recipe", - "url": "http://www.drinksmixer.com/drink11538.html" + "url": "https://www.drinksmixer.com/drink11538.html" }, { "directions": "Add crushed ice to a 10-oz glass until 1/3 full. Pour rye whisky, maple syrup, and fill with freshly pressed apple juice. Stir until maple syrup has dissolved and add cinnamon stick. Garnish with apple slice, and serve.", @@ -109193,7 +109193,7 @@ "apple" ], "title": "Evil Spell #2 recipe", - "url": "http://www.drinksmixer.com/drink11539.html" + "url": "https://www.drinksmixer.com/drink11539.html" }, { "directions": "Pour the grain alcohol into a shot glass. Add Goldschlager on top, and serve.", @@ -109202,7 +109202,7 @@ "Goldschlager\u00ae cinnamon schnapps" ], "title": "Extreme Suicide recipe", - "url": "http://www.drinksmixer.com/drink11540.html" + "url": "https://www.drinksmixer.com/drink11540.html" }, { "directions": "Layer the sambuca on the schnapps in a shot glass, and serve.", @@ -109211,7 +109211,7 @@ "white sambuca" ], "title": "Exxon Valdez recipe", - "url": "http://www.drinksmixer.com/drink11541.html" + "url": "https://www.drinksmixer.com/drink11541.html" }, { "directions": "Put the coconut milk in the glass first and then pour the liquors over it. Add 7-up and ice (equal parts) to top off, and serve.", @@ -109224,7 +109224,7 @@ "ice" ], "title": "Fag Juice recipe", - "url": "http://www.drinksmixer.com/drink11542.html" + "url": "https://www.drinksmixer.com/drink11542.html" }, { "directions": "Combine absinthe with cola in a glass filled with ice, easily the best way to drink absinthe.", @@ -109233,7 +109233,7 @@ "cola" ], "title": "Fairy's Kiss recipe", - "url": "http://www.drinksmixer.com/drink11543.html" + "url": "https://www.drinksmixer.com/drink11543.html" }, { "directions": "Combine all ingredients in a blender. Blend well, and pour into a cocktail glass. Top with a cherry, and serve.", @@ -109243,7 +109243,7 @@ "strawberry ice cream" ], "title": "Fallen Angel #2 recipe", - "url": "http://www.drinksmixer.com/drink11544.html" + "url": "https://www.drinksmixer.com/drink11544.html" }, { "directions": "Stir together in a brandy snifter, and serve.", @@ -109252,7 +109252,7 @@ "Hpnotiq\u00ae liqueur" ], "title": "Falling Sky recipe", - "url": "http://www.drinksmixer.com/drink11545.html" + "url": "https://www.drinksmixer.com/drink11545.html" }, { "directions": "Pour the Go Fast! into an old-fashioned or highball glass. Seperately pour the Barenjager into a shot glass. Drop the shot into the Go Fast!, and serve.", @@ -109261,7 +109261,7 @@ "Go Fast\u00ae energy drink" ], "title": "Fast Honey recipe", - "url": "http://www.drinksmixer.com/drink11546.html" + "url": "https://www.drinksmixer.com/drink11546.html" }, { "directions": "Combine in glass over ice (first vodka, then godiva, then milk). Stir thoroughly, and serve.", @@ -109271,7 +109271,7 @@ "milk" ], "title": "Fat Bastard recipe", - "url": "http://www.drinksmixer.com/drink11547.html" + "url": "https://www.drinksmixer.com/drink11547.html" }, { "directions": "Pour the Bacardi rum, Malibu rum and 99 Bananas into a collins glass filled with ice cubes. Fill with orange juice, adding a splash of cranberry juice to top. Stir and serve.", @@ -109283,7 +109283,7 @@ "cranberry juice" ], "title": "Fat Charley recipe", - "url": "http://www.drinksmixer.com/drink11548.html" + "url": "https://www.drinksmixer.com/drink11548.html" }, { "directions": "First add a good load of ice cubes to a punch bowl. Add the blackcurrant squash and then the Fanta, stir it. Then add the vodka and whiskey, stir it. Then add the cider and stir the punch. Finally add the beer and stir for the last time. Serve this punch in highball glasses out of the bowl.", @@ -109296,7 +109296,7 @@ "Fanta\u00ae orange soda" ], "title": "Fear the Flava recipe", - "url": "http://www.drinksmixer.com/drink11549.html" + "url": "https://www.drinksmixer.com/drink11549.html" }, { "directions": "Pour the Rose's grenadine syrup at the bottom of a shot glass. On it, carefully put the hot coffee on top of it, then Stroh 80 rum on top of the coffee. Serve.", @@ -109306,7 +109306,7 @@ "Rose's\u00ae grenadine syrup" ], "title": "Ferrari recipe", - "url": "http://www.drinksmixer.com/drink11553.html" + "url": "https://www.drinksmixer.com/drink11553.html" }, { "directions": "Shake ingredients in a cocktail shaker half-filled with ice cubes. Strain into chilled martini glass, and serve.", @@ -109317,7 +109317,7 @@ "cranberry juice" ], "title": "Figs and the City recipe", - "url": "http://www.drinksmixer.com/drink11554.html" + "url": "https://www.drinksmixer.com/drink11554.html" }, { "directions": "Pour the firewater into the Red Bull energy drink (or Monster) and serve.", @@ -109326,7 +109326,7 @@ "Red Bull\u00ae energy drink" ], "title": "Firebomb recipe", - "url": "http://www.drinksmixer.com/drink11555.html" + "url": "https://www.drinksmixer.com/drink11555.html" }, { "directions": "Stir ingredients together in a collins glass filled with ice cubes. Rim with lime and serve.", @@ -109338,7 +109338,7 @@ "lime juice" ], "title": "Firecrotch recipe", - "url": "http://www.drinksmixer.com/drink11556.html" + "url": "https://www.drinksmixer.com/drink11556.html" }, { "directions": "Mix 4 white alcohols as if you were making a long island (over ice). Near the top of the glass, add the grenadine and then the sprite. Garnish with cherry if wanted. Add more granadine to taste.", @@ -109351,7 +109351,7 @@ "Sprite\u00ae soda" ], "title": "Fireman's Ice Tea recipe", - "url": "http://www.drinksmixer.com/drink11557.html" + "url": "https://www.drinksmixer.com/drink11557.html" }, { "directions": "Mix the redrum, vodka and schnapps in the glass, then add the coke. Should the glass have room, add a few ice cubes, then serve.", @@ -109362,7 +109362,7 @@ "Coca-Cola\u00ae" ], "title": "Firestarter recipe", - "url": "http://www.drinksmixer.com/drink11558.html" + "url": "https://www.drinksmixer.com/drink11558.html" }, { "directions": "Pour into a collins glass filled with ice cubes in the order of appearance, do not stir, soda water will float at the top of the glass giving a two toned appearance, Garnish with 2 cherries on a sword, resting on the top of the glass.", @@ -109373,7 +109373,7 @@ "soda water" ], "title": "Fizzy Watermelon recipe", - "url": "http://www.drinksmixer.com/drink11559.html" + "url": "https://www.drinksmixer.com/drink11559.html" }, { "directions": "Pour a can of Sparks energy drink shared between 2 seperate beer mugs. Shake tequila, Jagermeister, and Rumple Minze on ice and strain into 2 seperate shot glasses. Add 151 to the top of each and ignite. Drop shots into the beer glasses with Sparks in and drink. Serves 2.", @@ -109385,7 +109385,7 @@ "Sparks\u00ae energy drink" ], "title": "Flaming Armageddon recipe", - "url": "http://www.drinksmixer.com/drink11560.html" + "url": "https://www.drinksmixer.com/drink11560.html" }, { "directions": "Layer the Yukon Jack and cinnamon schnapps in a shot glass. Add tabasco and light carefully. Quickly blow out and shoot. ", @@ -109395,7 +109395,7 @@ "Tabasco\u00ae sauce" ], "title": "Flaming Buller recipe", - "url": "http://www.drinksmixer.com/drink11561.html" + "url": "https://www.drinksmixer.com/drink11561.html" }, { "directions": "Layer the first 4 ingredients in a shot glass or pony glass. Carefully flame the 151 rum (the 1/4 oz) and slowly pour on top. Serve.", @@ -109407,7 +109407,7 @@ "Bacardi\u00ae 151 rum" ], "title": "Flaming JT Bomber recipe", - "url": "http://www.drinksmixer.com/drink11562.html" + "url": "https://www.drinksmixer.com/drink11562.html" }, { "directions": "Ignite a shot of 151 rum and place into a mug of beer. Serve.", @@ -109416,7 +109416,7 @@ "beer" ], "title": "Flaming Scab recipe", - "url": "http://www.drinksmixer.com/drink11563.html" + "url": "https://www.drinksmixer.com/drink11563.html" }, { "directions": "Pour the chartreuse first, then top with rum, and serve.", @@ -109425,7 +109425,7 @@ "overproof rum" ], "title": "Flaming Tree recipe", - "url": "http://www.drinksmixer.com/drink11564.html" + "url": "https://www.drinksmixer.com/drink11564.html" }, { "directions": "Pour the whiskey and peach liqueur into a shot glass and leave enough room for a layer of 151 over the top. Light the 151 with a lighter (torch lighter preferable). Extinguish the flame with your hand and immediately shoot.", @@ -109435,7 +109435,7 @@ "Southern Comfort\u00ae peach liqueur" ], "title": "Flaming Turd Rocket recipe", - "url": "http://www.drinksmixer.com/drink11565.html" + "url": "https://www.drinksmixer.com/drink11565.html" }, { "directions": "Take a martini glass and set it on the table. Inside the martini glass put 1/2 ounce of curacao blue and 1/2 ounce of chartreuse green. Then place a 2 inch wide spacer on top of the martini glass so that you can place 3 cocktail glasses one on top of the other above the martini glass (upside down). \r", @@ -109447,7 +109447,7 @@ "Bailey's\u00ae Irish cream" ], "title": "Flaming Lamborghini #2 recipe", - "url": "http://www.drinksmixer.com/drink11566.html" + "url": "https://www.drinksmixer.com/drink11566.html" }, { "directions": "Layer in order then light on fire and sprinkle some cinnamon on top. Extinguish fire and serve.", @@ -109457,7 +109457,7 @@ "Goldschlager\u00ae cinnamon schnapps" ], "title": "Flaming Pumpkin recipe", - "url": "http://www.drinksmixer.com/drink11567.html" + "url": "https://www.drinksmixer.com/drink11567.html" }, { "directions": "In any order, put all amounts into a shaker with ice and shake for about 5-10 secs. Serve in a whiskey sour glass.", @@ -109469,7 +109469,7 @@ "Captain Morgan\u00ae Original spiced rum" ], "title": "Flavor Five recipe", - "url": "http://www.drinksmixer.com/drink11568.html" + "url": "https://www.drinksmixer.com/drink11568.html" }, { "directions": "Shake both ingredients together in a cocktail shaker half-filled with ice cubes. Strain into a martini cocktail glass. Garnish with a lime wedge, and serve.", @@ -109478,7 +109478,7 @@ "Cointreau\u00ae orange liqueur" ], "title": "Fleur De Lis recipe", - "url": "http://www.drinksmixer.com/drink11569.html" + "url": "https://www.drinksmixer.com/drink11569.html" }, { "directions": "Pour a shot of vodka into a shot glass, and top with a spoon of peanut butter. Add a drizzle of chocolate syrup, garnish with a kernal of corn, and serve.", @@ -109489,7 +109489,7 @@ "corn" ], "title": "Floater recipe", - "url": "http://www.drinksmixer.com/drink11570.html" + "url": "https://www.drinksmixer.com/drink11570.html" }, { "directions": "Combine all ingredients in blender. Blend until a light shade of pink is made, then serve up in a pina-colada glass.", @@ -109502,7 +109502,7 @@ "ice" ], "title": "Florida Girl recipe", - "url": "http://www.drinksmixer.com/drink11571.html" + "url": "https://www.drinksmixer.com/drink11571.html" }, { "directions": "Pour all ingredients into a cocktail shaker half-filled with ice cubes. Shake and strain into shot glasses.", @@ -109512,7 +109512,7 @@ "pineapple juice" ], "title": "Flying Goose recipe", - "url": "http://www.drinksmixer.com/drink11572.html" + "url": "https://www.drinksmixer.com/drink11572.html" }, { "directions": "Pour half pint of Guinness into a bubble pint glass. Then place a spoon over the top of the glass upside down then pour the Red Bull or energy drink over the top of the spoon (this helps the drink seperate). Serve.", @@ -109521,7 +109521,7 @@ "Red Bull\u00ae energy drink" ], "title": "Flying Guinness recipe", - "url": "http://www.drinksmixer.com/drink11573.html" + "url": "https://www.drinksmixer.com/drink11573.html" }, { "directions": "Pour the Yukon Jack whisky, Newfoundland Screech dark rum, and Forty Creek whisky into an old-fashioned glass filled with ice cubes. Top off glass with Canada Dry ginger ale, and serve.", @@ -109532,7 +109532,7 @@ "Canada Dry\u00ae ginger ale" ], "title": "Forty 9th Parallel recipe", - "url": "http://www.drinksmixer.com/drink11574.html" + "url": "https://www.drinksmixer.com/drink11574.html" }, { "directions": "Take all of the liquors and pour into a beer mug. Add a double shot of an energy drink of your choice to mellow the taste. Slam.", @@ -109544,7 +109544,7 @@ "Red Bull\u00ae energy drink" ], "title": "Four Horsemen Piledriver recipe", - "url": "http://www.drinksmixer.com/drink11575.html" + "url": "https://www.drinksmixer.com/drink11575.html" }, { "directions": "Pour all liqueurs into a cocktail shaker half-filled with ice. Shake until frosted. Strain into a highball glass filled with ice cubes and add pineapple juice and sweet and sour. Stir, and serve.", @@ -109558,7 +109558,7 @@ "sweet and sour mix" ], "title": "Four Horsemen of the Apocalypse recipe", - "url": "http://www.drinksmixer.com/drink11576.html" + "url": "https://www.drinksmixer.com/drink11576.html" }, { "directions": "Pour the Smirnoff Green Apple Twist vodka into a shaker half-filled with crushed ice. Shake well. and pour into a 2-oz shot glass. Splash some Amaretto Di Saronno into the shot glass, just enough to swirl into the shot, and serve.", @@ -109567,7 +109567,7 @@ "Amaretto Di Saronno\u00ae liqueur" ], "title": "Foxy Shot recipe", - "url": "http://www.drinksmixer.com/drink11577.html" + "url": "https://www.drinksmixer.com/drink11577.html" }, { "directions": "In a tall glass place a shot of water. Add instant coffee and sugar. The more coffee the more stronger. It's up to you how much sugar you will have. With no sugar we call it \"sketos\" (plain or black), with 1 tsp \"metrios\" (medium), and with 2 or more \"glykos\" (sweet). Blend with one of those small hand mixers. Add a splash of milk or more if wanted. Add lots of ice and fill it up with cold water. Serve. ", @@ -109579,7 +109579,7 @@ "water" ], "title": "Frappe #2 recipe", - "url": "http://www.drinksmixer.com/drink11578.html" + "url": "https://www.drinksmixer.com/drink11578.html" }, { "directions": "Stir together in a shot glass, and serve.", @@ -109588,7 +109588,7 @@ "Sun Drop\u00ae citrus soda" ], "title": "Fred's Slo-Drop recipe", - "url": "http://www.drinksmixer.com/drink11579.html" + "url": "https://www.drinksmixer.com/drink11579.html" }, { "directions": "Stir together in a highball glass filled with ice cubes, and serve.", @@ -109597,7 +109597,7 @@ "Fresca\u00ae grapefruit soda" ], "title": "Fremango recipe", - "url": "http://www.drinksmixer.com/drink11580.html" + "url": "https://www.drinksmixer.com/drink11580.html" }, { "directions": "Pour all ingredients into a punch bowl, stir and serve ice cold.", @@ -109607,7 +109607,7 @@ "Champagne" ], "title": "French 69 recipe", - "url": "http://www.drinksmixer.com/drink11581.html" + "url": "https://www.drinksmixer.com/drink11581.html" }, { "directions": "Layer ingredients in equal parts in a shot glass, and serve.", @@ -109617,7 +109617,7 @@ "Irish cream" ], "title": "French Kiss #2 recipe", - "url": "http://www.drinksmixer.com/drink11582.html" + "url": "https://www.drinksmixer.com/drink11582.html" }, { "directions": "Place all ingredients into a cocktail shaker half-filled with ice. Shake and strain into a chilled cocktail glass. Can also be served on the rocks.", @@ -109628,7 +109628,7 @@ "sweet vermouth" ], "title": "French Martini #2 recipe", - "url": "http://www.drinksmixer.com/drink11583.html" + "url": "https://www.drinksmixer.com/drink11583.html" }, { "directions": "Shake all ingredients in a cocktail shaker. Strain into a cocktail glass, and serve.", @@ -109638,7 +109638,7 @@ "Otard\u00ae cognac" ], "title": "French Night recipe", - "url": "http://www.drinksmixer.com/drink11584.html" + "url": "https://www.drinksmixer.com/drink11584.html" }, { "directions": "Stir port and cognac in a glass with about three ice cubes. Perfect if your port is too sweet or you aren't up for just cognac.", @@ -109647,7 +109647,7 @@ "Hennessy\u00ae cognac" ], "title": "French Port recipe", - "url": "http://www.drinksmixer.com/drink11585.html" + "url": "https://www.drinksmixer.com/drink11585.html" }, { "directions": "Combine all ingredients in a cocktail shaker. Shake, strain into a cocktail glass, and serve.", @@ -109657,7 +109657,7 @@ "milk" ], "title": "French Toast #2 recipe", - "url": "http://www.drinksmixer.com/drink11586.html" + "url": "https://www.drinksmixer.com/drink11586.html" }, { "directions": "Add ingredients to a cocktail shaker with ice. Shake and strain into a collins glass filled with ice cubes and lemon slices, and serve.", @@ -109667,7 +109667,7 @@ "mint liqueur" ], "title": "Fresh Air recipe", - "url": "http://www.drinksmixer.com/drink11587.html" + "url": "https://www.drinksmixer.com/drink11587.html" }, { "directions": "Pour the Hot Damn into a shot glass. Float 151 on top, ignite and serve.", @@ -109676,7 +109676,7 @@ "151 proof rum" ], "title": "Friendly Fire recipe", - "url": "http://www.drinksmixer.com/drink11588.html" + "url": "https://www.drinksmixer.com/drink11588.html" }, { "directions": "Pour Amp energy drink into tall slender glass. ignite shot of bacardi 151' and quickly but carefully drop entire shot glass and all into the energy drink so that the flame is extinguished. and then drink quickly. (note: if this procedure is not carried out quickly then the rim of the shot glass may burn the drinkers lip.) ", @@ -109685,7 +109685,7 @@ "Bacardi\u00ae 151 rum" ], "title": "Frog on a Wire recipe", - "url": "http://www.drinksmixer.com/drink11589.html" + "url": "https://www.drinksmixer.com/drink11589.html" }, { "directions": "Mix vodka and icewine in a shaker with ice, shake and strain into a cocktail glass. Add the grapes at the bottom, and serve.", @@ -109695,7 +109695,7 @@ "grapes" ], "title": "Frost Bite recipe", - "url": "http://www.drinksmixer.com/drink11590.html" + "url": "https://www.drinksmixer.com/drink11590.html" }, { "directions": "Pour the Absolut Citron vodka, pineapple vodka and pineapple juice into a cocktail shaker half-filled with ice cubes. Shake and strain into a collins glass 1/4 filled with crushed ice. Pour the RedRum rum on top. Put a slice of pineapple and a cherry on an umbrella and place on the side of glass as garnish.", @@ -109706,7 +109706,7 @@ "RedRum\u00ae rum" ], "title": "Frosty Pineapple Crush recipe", - "url": "http://www.drinksmixer.com/drink11591.html" + "url": "https://www.drinksmixer.com/drink11591.html" }, { "directions": "Combine Kahlua, vodka, milk, and chocolate in blender. Blend until frothy. Serve over ice in a large cocktail glass.", @@ -109717,7 +109717,7 @@ "chocolate" ], "title": "Frothy Snowman recipe", - "url": "http://www.drinksmixer.com/drink11592.html" + "url": "https://www.drinksmixer.com/drink11592.html" }, { "directions": "Place all ingredients in blender with a cup of crushed ice and blend well. Serve in a margarita or hurricane glass. Garnish with a cherry.", @@ -109727,7 +109727,7 @@ "sweet and sour mix" ], "title": "Frozen Cherry Daiquiri recipe", - "url": "http://www.drinksmixer.com/drink11593.html" + "url": "https://www.drinksmixer.com/drink11593.html" }, { "directions": "Mix the limeade, Cointreau and tequila in a mixing glass. Add 2 cups of ice to a blender, and add the strawberries and tequila mixture. Blend until smooth (thin with tequila if necessary). Serve in a margarita glass.", @@ -109738,7 +109738,7 @@ "strawberries" ], "title": "Frozen Real Strawberry Margarita recipe", - "url": "http://www.drinksmixer.com/drink11594.html" + "url": "https://www.drinksmixer.com/drink11594.html" }, { "directions": "Mix one gallon of pink lemonade to half a gallon of raspberry vodka. Pour into Margarita machine and freeze or pour over ice. Great drink for the hot summer day and a good party drink for the non heavy drinker.", @@ -109747,7 +109747,7 @@ "raspberry vodka" ], "title": "Fru Fru Drink recipe", - "url": "http://www.drinksmixer.com/drink11595.html" + "url": "https://www.drinksmixer.com/drink11595.html" }, { "directions": "Combine all ingredients in a cocktail shaker half-filled with ice cubes. Shake well and strain into an old-fashioned glass half-filled with ice cubes. Serve.", @@ -109761,7 +109761,7 @@ "grenadine syrup" ], "title": "Fruit Cocktail #2 recipe", - "url": "http://www.drinksmixer.com/drink11596.html" + "url": "https://www.drinksmixer.com/drink11596.html" }, { "directions": "Pour all ingredients over ice in a collins glass, and serve.", @@ -109773,7 +109773,7 @@ "club soda" ], "title": "Fruity Ball of Fuck recipe", - "url": "http://www.drinksmixer.com/drink11597.html" + "url": "https://www.drinksmixer.com/drink11597.html" }, { "directions": "Drop 3 regular sized ice cubes in a collins glass. Pour cranberry-raspberry juice in, then orange juice, then pour in the 99 Apples or 99 Oranges leaving which ever flavor you like the most last. Stir gently and wait until the drink is sufficiently chilled before serving. You may want to change ratios depending on your tastes and sensitivity to alochol.", @@ -109784,7 +109784,7 @@ "cranberry-raspberry juice" ], "title": "Fruity Exploration recipe", - "url": "http://www.drinksmixer.com/drink11598.html" + "url": "https://www.drinksmixer.com/drink11598.html" }, { "directions": "Mix ingredients in a martini shaker with ice. Shake. Strain into glass of choice - martini or margarita preferably. This really does taste like fruity pebbles. The above ought to make 1 large drink or two medium sized drinks.", @@ -109795,7 +109795,7 @@ "pineapple juice" ], "title": "Fruity Pebbles #2 recipe", - "url": "http://www.drinksmixer.com/drink11599.html" + "url": "https://www.drinksmixer.com/drink11599.html" }, { "directions": "Fill a cocktail shaker with ice and place above ingredients. Shake and fill a collins glass. Garnish with a lemon and enjoy the original Arnold Palmer with a twist of the south!", @@ -109806,7 +109806,7 @@ "lemonade" ], "title": "Fucking Arnold recipe", - "url": "http://www.drinksmixer.com/drink11600.html" + "url": "https://www.drinksmixer.com/drink11600.html" }, { "directions": "Pour the Bacardi rum into a shot glass; top with Anisette, and serve.", @@ -109815,7 +109815,7 @@ "Bacardi\u00ae dark rum" ], "title": "Fuel Injection recipe", - "url": "http://www.drinksmixer.com/drink11601.html" + "url": "https://www.drinksmixer.com/drink11601.html" }, { "directions": "Combine with ice in a highball glass, and serve.", @@ -109825,7 +109825,7 @@ "Mountain Dew\u00ae citrus soda" ], "title": "Full Throttle recipe", - "url": "http://www.drinksmixer.com/drink11602.html" + "url": "https://www.drinksmixer.com/drink11602.html" }, { "directions": "Stir ingredients together in a highball glass filled with ice, and serve.", @@ -109838,7 +109838,7 @@ "pineapple juice" ], "title": "Fun Loving recipe", - "url": "http://www.drinksmixer.com/drink11603.html" + "url": "https://www.drinksmixer.com/drink11603.html" }, { "directions": "Mix in a colins glass until powder is dissolved. Serve.", @@ -109848,7 +109848,7 @@ "Kool-Aid\u00ae" ], "title": "Fuzzy Bunny recipe", - "url": "http://www.drinksmixer.com/drink11604.html" + "url": "https://www.drinksmixer.com/drink11604.html" }, { "directions": "Just mix them together.", @@ -109857,7 +109857,7 @@ "Hennessy\u00ae cognac" ], "title": "Beautiful #2 recipe", - "url": "http://www.drinksmixer.com/drink11605.html" + "url": "https://www.drinksmixer.com/drink11605.html" }, { "directions": "Add all ingredients with a cup of ice into a shaker. Shake well. Makes up to about 6 shots. Should come out to a dirty purple color.", @@ -109869,7 +109869,7 @@ "lime juice" ], "title": "Dirty Gecko recipe", - "url": "http://www.drinksmixer.com/drink11607.html" + "url": "https://www.drinksmixer.com/drink11607.html" }, { "directions": "In a small pitcher or bowl combine tomato juice, bouillon, vodka, Worcestershire sauce, hot sauce, celery salt, lime juice, and lemon juice and stir to blend well. Divide the mixture between two highball glasses containing ice, and garnish with black pepper and celery.", @@ -109886,7 +109886,7 @@ "celery" ], "title": "Eric's Bloody Bull recipe", - "url": "http://www.drinksmixer.com/drink11608.html" + "url": "https://www.drinksmixer.com/drink11608.html" }, { "directions": "Pour the Three Olives orange vodka and peach schnapps over ice in a collins glass. Fill with Red Bull. add pineapple juice on top and serve.", @@ -109897,7 +109897,7 @@ "pineapple juice" ], "title": "Fuzzy Bull Balls recipe", - "url": "http://www.drinksmixer.com/drink11609.html" + "url": "https://www.drinksmixer.com/drink11609.html" }, { "directions": "Pour all four liquors into a collins glass, then fill with ice. Next mix equal parts orange juice and sweet and sour until full. Tastes like candy.", @@ -109910,7 +109910,7 @@ "sweet and sour mix" ], "title": "Fuzzy Goose recipe", - "url": "http://www.drinksmixer.com/drink11610.html" + "url": "https://www.drinksmixer.com/drink11610.html" }, { "directions": "Shake ingredients together in a cocktail shaker half-filled with ice cubes. Strain into an old-fashioned or highball glass filled with ice cubes, and serve.", @@ -109919,7 +109919,7 @@ "orange juice" ], "title": "Fuzzy Hard Navel recipe", - "url": "http://www.drinksmixer.com/drink11611.html" + "url": "https://www.drinksmixer.com/drink11611.html" }, { "directions": "Shake ingredients together in a cocktail shaker half-filled with ice cubes. Strain into a collins glass filled with ice cubes, and serve.", @@ -109929,7 +109929,7 @@ "orange juice" ], "title": "Fuzzy Leprechaun #2 recipe", - "url": "http://www.drinksmixer.com/drink11612.html" + "url": "https://www.drinksmixer.com/drink11612.html" }, { "directions": "Pour the peach schnapps first. Top with orange, and then alcohol. Shoot before it mixes.", @@ -109939,7 +109939,7 @@ "orange juice" ], "title": "Fuzzy Napalm recipe", - "url": "http://www.drinksmixer.com/drink11613.html" + "url": "https://www.drinksmixer.com/drink11613.html" }, { "directions": "Pour the peach and raspberry schnapps over ice in a hurricane glass. Add orange juice, and layer half-and-half on top. Serve.", @@ -109950,7 +109950,7 @@ "half-and-half" ], "title": "Fuzzy Pucker recipe", - "url": "http://www.drinksmixer.com/drink11614.html" + "url": "https://www.drinksmixer.com/drink11614.html" }, { "directions": "Fill half a shot glass with the Bacardi, add lemon juice and then add the champagne.\r", @@ -109960,7 +109960,7 @@ "Champagne" ], "title": "Fuzzy Slammers recipe", - "url": "http://www.drinksmixer.com/drink11615.html" + "url": "https://www.drinksmixer.com/drink11615.html" }, { "directions": "Pour the tequila, peach schnapps and orange juice into a cocktail shaker half-filled with ice cubes. Shake well, and strain into a highball glass. Add grenadine by tilting glass and pouring grenadine down side by flipping the bottle vertically very quickly. The grenadine should go straight to the bottom and then rise up slowly through the drink.", @@ -109971,7 +109971,7 @@ "grenadine syrup" ], "title": "Fuzzy Sunrise recipe", - "url": "http://www.drinksmixer.com/drink11616.html" + "url": "https://www.drinksmixer.com/drink11616.html" }, { "directions": "In a shaker with ice, pour in rum, brandy, apple syrup, squeeze from half of a lemon wedge, and 2 dashes of bitters. Shake hard, and pour into a frosty martini cocktail glass. Top with a dash of cinnamon and garnish with a Gala apple slice. Now enjoy this perfect autumn apple pie like drink.", @@ -109985,7 +109985,7 @@ "Angostura\u00ae bitters" ], "title": "Gala Appletini recipe", - "url": "http://www.drinksmixer.com/drink11617.html" + "url": "https://www.drinksmixer.com/drink11617.html" }, { "directions": "Shake and strain into a margarita glass with shaved ice, and serve.", @@ -109995,7 +109995,7 @@ "Rose's\u00ae lime juice" ], "title": "Gala Margarita recipe", - "url": "http://www.drinksmixer.com/drink11618.html" + "url": "https://www.drinksmixer.com/drink11618.html" }, { "directions": "Blend until creamy, and serve in a hurricane glass. (optional; serve with a twist of lemon)", @@ -110005,7 +110005,7 @@ "cream" ], "title": "Galliano Milkshake recipe", - "url": "http://www.drinksmixer.com/drink11619.html" + "url": "https://www.drinksmixer.com/drink11619.html" }, { "directions": "Pour all three ingredients into a highball glass filled with ice cubes. Works best if you add Hennessey first, then the Alize and Hpnotiq in any order after that. Stir and enjoy!", @@ -110015,7 +110015,7 @@ "Hennessy\u00ae cognac" ], "title": "Gang Related recipe", - "url": "http://www.drinksmixer.com/drink11620.html" + "url": "https://www.drinksmixer.com/drink11620.html" }, { "directions": "Pour Jack Daniel's into a shot glass followed by milk or cream. Splash the Tabasco on top, and serve.", @@ -110025,7 +110025,7 @@ "Tabasco\u00ae sauce" ], "title": "Gay Uncle recipe", - "url": "http://www.drinksmixer.com/drink11621.html" + "url": "https://www.drinksmixer.com/drink11621.html" }, { "directions": "Shoot the first four shots in order listed, suck the lemon then chase it with a beer! ", @@ -110038,7 +110038,7 @@ "beer" ], "title": "Gee String recipe", - "url": "http://www.drinksmixer.com/drink11622.html" + "url": "https://www.drinksmixer.com/drink11622.html" }, { "directions": "Pour the ingredients into a shaker filled with ice. Shake quickly and drain into a cockatil glass. Garnish with an olive. Alternatively add olive juice (from the jar) before mixing, according to taste.", @@ -110047,7 +110047,7 @@ "Martini & Rossi\u00ae bianco vermouth" ], "title": "Genie Martini recipe", - "url": "http://www.drinksmixer.com/drink11623.html" + "url": "https://www.drinksmixer.com/drink11623.html" }, { "directions": "Fill an old-fashioned glass half-way with ice. Pour the UV Blue raspberry vodka, then the Red Bull, and watch the transformation from blue to gieco green,", @@ -110056,7 +110056,7 @@ "Red Bull\u00ae energy drink" ], "title": "Gieco recipe", - "url": "http://www.drinksmixer.com/drink11625.html" + "url": "https://www.drinksmixer.com/drink11625.html" }, { "directions": "Pour all ingredients into shaker. Fill a highball glass almost full of ice cubes, and dump ice into shaker. Shake well and pour drink into highball glass. Garnish with a slice of lime.", @@ -110067,7 +110067,7 @@ "lime" ], "title": "Gin and Juice recipe", - "url": "http://www.drinksmixer.com/drink11626.html" + "url": "https://www.drinksmixer.com/drink11626.html" }, { "directions": "Combine gin and grenadine in shaker tin. Give a few hard shakes. Pour over ice in an old-fashioned glass. Add orange juice, and serve.", @@ -110077,7 +110077,7 @@ "grenadine syrup" ], "title": "Gin Burch recipe", - "url": "http://www.drinksmixer.com/drink11627.html" + "url": "https://www.drinksmixer.com/drink11627.html" }, { "directions": "Pour the gin, grenadine and sour mix into a cocktail shaker half-filled with ice cubes. Shake and pour (incl. ice) into a collins glass. Top with 7-Up, add a cherry and serve.", @@ -110088,7 +110088,7 @@ "7-Up\u00ae soda" ], "title": "Ginadine Fizz recipe", - "url": "http://www.drinksmixer.com/drink11628.html" + "url": "https://www.drinksmixer.com/drink11628.html" }, { "directions": "crush lemon and ginger togerther in a shaker. Add all the spirits. Shake and strain into a collins glass. Top with ginger ale. Garnish with lemon grass (halved) and a slice of fresh ginger.", @@ -110102,7 +110102,7 @@ "ginger" ], "title": "Ginger Bite recipe", - "url": "http://www.drinksmixer.com/drink11629.html" + "url": "https://www.drinksmixer.com/drink11629.html" }, { "directions": "Muddle about four peices of fresh ginger in the bottom of the glass. Put a spoon of bar sugar in the bottom of the glass with one ice cube and a dash of bitters. While stiring add bourbon, bitters and ice. Continue to slowly add the bourbon and ice for about 5-15 minutes to dilute and chill the drink. Just stick to the classic old fashioned method.", @@ -110113,7 +110113,7 @@ "Fee Brothers\u00ae Old-fashioned bitters" ], "title": "Ginger in Fashion recipe", - "url": "http://www.drinksmixer.com/drink11630.html" + "url": "https://www.drinksmixer.com/drink11630.html" }, { "directions": "Shake the vodka, rum (dark or spiced) and orange juice with ice in a cocktail shaker. Pour into a collins glass, Top up with ginger beer, stir and serve.", @@ -110124,7 +110124,7 @@ "ginger beer" ], "title": "Ginger Messiah recipe", - "url": "http://www.drinksmixer.com/drink11631.html" + "url": "https://www.drinksmixer.com/drink11631.html" }, { "directions": "Muddle fresh ginger in the bottom of a bar glass. Add chilled champagne and simple syrup, stir gently and immediately strain into champagne flute. Serve.", @@ -110134,7 +110134,7 @@ "ginger" ], "title": "Ginger-bang Champagne recipe", - "url": "http://www.drinksmixer.com/drink11632.html" + "url": "https://www.drinksmixer.com/drink11632.html" }, { "directions": "Mix all ingredients in a mixing cup with ice. Shake and strain into a shot glass, and serve.", @@ -110144,7 +110144,7 @@ "Goldschlager\u00ae cinnamon schnapps" ], "title": "Gingerbread Man recipe", - "url": "http://www.drinksmixer.com/drink11633.html" + "url": "https://www.drinksmixer.com/drink11633.html" }, { "directions": "Mash 5 spearmint leaves in the bottom of an old-fashioned glass. Add the Everglo and rum, and top with soda.", @@ -110155,7 +110155,7 @@ "spearmint" ], "title": "Glo-Jito recipe", - "url": "http://www.drinksmixer.com/drink11634.html" + "url": "https://www.drinksmixer.com/drink11634.html" }, { "directions": "Shake the Everglo and vodka together with ice in a cocktail shaker. Strain into a red wine glass. Float ginger ale on top. Garnish with a lime, and serve.", @@ -110165,7 +110165,7 @@ "ginger ale" ], "title": "Glo-Tini recipe", - "url": "http://www.drinksmixer.com/drink11635.html" + "url": "https://www.drinksmixer.com/drink11635.html" }, { "directions": "Shake ingredients together in a cocktail shaker half-filled with ice cubes. Strain into shot glasses, and serve.", @@ -110175,7 +110175,7 @@ "sweet and sour mix" ], "title": "Glowstick recipe", - "url": "http://www.drinksmixer.com/drink11636.html" + "url": "https://www.drinksmixer.com/drink11636.html" }, { "directions": "Pour each ingredient over cracked ice into highball glass and stir gently. Serve.", @@ -110185,7 +110185,7 @@ "prune juice" ], "title": "Go With the Flow recipe", - "url": "http://www.drinksmixer.com/drink11637.html" + "url": "https://www.drinksmixer.com/drink11637.html" }, { "directions": "Pour Crown Royal, apple schnapps and pineapple juice over ice in a cocktail shaker. Shake well. Pour into a shot glass, and serve.", @@ -110195,7 +110195,7 @@ "pineapple juice" ], "title": "Golden Delicious #3 recipe", - "url": "http://www.drinksmixer.com/drink11639.html" + "url": "https://www.drinksmixer.com/drink11639.html" }, { "directions": "Peel and slice the mango from the flesh & stone, place mango in the blender with all the ingredients except for the mint leaves. Blend until smooth & creamy. Serve chilled with a garnish of mint leaves.", @@ -110209,7 +110209,7 @@ "sugar" ], "title": "Golden Drop Wineries Mango Daiquiri recipe", - "url": "http://www.drinksmixer.com/drink11640.html" + "url": "https://www.drinksmixer.com/drink11640.html" }, { "directions": "Mix together Golden Grain and Mountain Dew in equal portions. Top off with pineapple juice until the 'bite' subsides. Drink chilled or over ice.", @@ -110219,7 +110219,7 @@ "pineapple juice" ], "title": "Golden Happiness recipe", - "url": "http://www.drinksmixer.com/drink11641.html" + "url": "https://www.drinksmixer.com/drink11641.html" }, { "directions": "Serve in a shot glass.", @@ -110229,7 +110229,7 @@ "Campari\u00ae bitters" ], "title": "Golden Haze recipe", - "url": "http://www.drinksmixer.com/drink11642.html" + "url": "https://www.drinksmixer.com/drink11642.html" }, { "directions": "Shake all ingredients except ginger ale in a shaker with ice. Strain over ice into an old-fashioned glass and top with ginger ale. Garnish with lemon slice. Serve.", @@ -110241,7 +110241,7 @@ "ginger ale" ], "title": "Golden Shower recipe", - "url": "http://www.drinksmixer.com/drink11643.html" + "url": "https://www.drinksmixer.com/drink11643.html" }, { "directions": "Fill an old-fashioned glass with ice cubes. Add the Goldschlager, and fill with 7-Up. Serve.", @@ -110250,7 +110250,7 @@ "7-Up\u00ae soda" ], "title": "Golden Up recipe", - "url": "http://www.drinksmixer.com/drink11644.html" + "url": "https://www.drinksmixer.com/drink11644.html" }, { "directions": "Serve in a shot glass.", @@ -110259,7 +110259,7 @@ "Goldschlager\u00ae cinnamon schnapps" ], "title": "Goldtooth Nazi recipe", - "url": "http://www.drinksmixer.com/drink11645.html" + "url": "https://www.drinksmixer.com/drink11645.html" }, { "directions": "Stir over ice in a large cocktail glass, and serve.", @@ -110270,7 +110270,7 @@ "cream" ], "title": "Good Action recipe", - "url": "http://www.drinksmixer.com/drink11646.html" + "url": "https://www.drinksmixer.com/drink11646.html" }, { "directions": "Combine equal parts Grey Goose vodka and Hennessy cognac in a shot glass, and serve.", @@ -110279,7 +110279,7 @@ "Hennessy\u00ae cognac" ], "title": "Goose & Hen recipe", - "url": "http://www.drinksmixer.com/drink11647.html" + "url": "https://www.drinksmixer.com/drink11647.html" }, { "directions": "Above is for a cocktail. Shake with ice and serve in a highball glass filled with ice cubes. \r", @@ -110290,7 +110290,7 @@ "pineapple juice" ], "title": "Gorilla Punch recipe", - "url": "http://www.drinksmixer.com/drink11648.html" + "url": "https://www.drinksmixer.com/drink11648.html" }, { "directions": "Add vodka, rum, whisky, red wine and cranberry juice to shaker filled about 3/4 full with ice and shake vigorously. Strain into large highball glass with ice, top off with ginger ale and stir if needed. (If preferred, substitute cranberry juice for another dark juice - cherry, grape, ect.)", @@ -110303,7 +110303,7 @@ "ginger ale" ], "title": "Grandpa's Cough Medicine recipe", - "url": "http://www.drinksmixer.com/drink11649.html" + "url": "https://www.drinksmixer.com/drink11649.html" }, { "directions": "Place vodka and green apple schnapps in a martini shaker with plenty of ice. Shake until very well chilled. Pour into two martini glasses and top with thin apple slices.", @@ -110313,7 +110313,7 @@ "apples" ], "title": "Granny Smith's Best Apple Martini recipe", - "url": "http://www.drinksmixer.com/drink11650.html" + "url": "https://www.drinksmixer.com/drink11650.html" }, { "directions": "Shake ingredients in a cocktail shaker half-filled with ice cubes. Strain into a shot glass, and serve.", @@ -110323,7 +110323,7 @@ "Blue Curacao liqueur" ], "title": "Grape Juice recipe", - "url": "http://www.drinksmixer.com/drink11651.html" + "url": "https://www.drinksmixer.com/drink11651.html" }, { "directions": "Place Kahlua in a sherry glass. Make sure coconut cream is in liqueur form (I used microwave). Mix the juice with the coconut cream before pouring into the Kahlua. Stir and serve.", @@ -110333,7 +110333,7 @@ "coconut cream" ], "title": "Great Artius recipe", - "url": "http://www.drinksmixer.com/drink11652.html" + "url": "https://www.drinksmixer.com/drink11652.html" }, { "directions": "Get fresh fruit (apples, oranges, strawberrys, pears) as well as canned fruit with juice (pineapples and peaches). Cut your fruit up and let it soak in a big cooler with the liquor for about 45 minutes. Add in the Hawaiian Punch and lots of ice, and taste. Then add add Sprite and orange juice to your liking. If made properly, then you should not be able to taste any alcohol.", @@ -110348,7 +110348,7 @@ "orange juice" ], "title": "Greek Hunch Punch recipe", - "url": "http://www.drinksmixer.com/drink11653.html" + "url": "https://www.drinksmixer.com/drink11653.html" }, { "directions": "Fill the shot glass 2/3 with vodka and 1/3 with childrens style \"cool lime\" cordial. Serve.", @@ -110357,7 +110357,7 @@ "lime cordial" ], "title": "Green Ambulance recipe", - "url": "http://www.drinksmixer.com/drink11654.html" + "url": "https://www.drinksmixer.com/drink11654.html" }, { "directions": "Pour tomato juice in jug. Add all liquid ingredients first. Make sure you mix horseradish into the juice well. Add seasoning on top of juice then stir. Serve with vodka in an old-fashioned, with/without ice.", @@ -110375,7 +110375,7 @@ "celery salt" ], "title": "Green and Gold Bloody recipe", - "url": "http://www.drinksmixer.com/drink11655.html" + "url": "https://www.drinksmixer.com/drink11655.html" }, { "directions": "Stir together in a 2-oz shot glass, and serve.", @@ -110384,7 +110384,7 @@ "Midori\u00ae melon liqueur" ], "title": "Green and Horny recipe", - "url": "http://www.drinksmixer.com/drink11656.html" + "url": "https://www.drinksmixer.com/drink11656.html" }, { "directions": "Pour the Absolut Mandrin and peach schnapps over ice in a whiskey sour glass. Add Jones green apple soda to taste, and serve.", @@ -110394,7 +110394,7 @@ "Jones\u00ae green apple soda" ], "title": "Green Apple Bomb recipe", - "url": "http://www.drinksmixer.com/drink11657.html" + "url": "https://www.drinksmixer.com/drink11657.html" }, { "directions": "Shake ingredients with ice and strain into large cocktail glass. Add a big squeeze of lime juice. Garnish with a thin granny smith apple slice, and serve.", @@ -110405,7 +110405,7 @@ "lime juice" ], "title": "Green Appletini recipe", - "url": "http://www.drinksmixer.com/drink11658.html" + "url": "https://www.drinksmixer.com/drink11658.html" }, { "directions": "Use a punch bowl. Pour all the Everclear in, then pour the Mountain Dew and pineapple juice in to when you think it's just right. It's always better to have it too strong than too weak.", @@ -110415,7 +110415,7 @@ "pineapple juice" ], "title": "Green Eyed Monster recipe", - "url": "http://www.drinksmixer.com/drink11659.html" + "url": "https://www.drinksmixer.com/drink11659.html" }, { "directions": "Combine equal measures in a straight shot glass - blended not layered. Serve.", @@ -110425,7 +110425,7 @@ "peach schnapps" ], "title": "Green Fairy #2 recipe", - "url": "http://www.drinksmixer.com/drink11660.html" + "url": "https://www.drinksmixer.com/drink11660.html" }, { "directions": "Pour the Hpnotiq into a highball glass filled with ice cubes. Fill up with Mountain Dew soda. Stir slightly; the drink will turn a bright green. Serve.", @@ -110434,7 +110434,7 @@ "Mountain Dew\u00ae citrus soda" ], "title": "Green Machine recipe", - "url": "http://www.drinksmixer.com/drink11661.html" + "url": "https://www.drinksmixer.com/drink11661.html" }, { "directions": "Shake ingredients together in a cocktail shaker; strain into shot glasses, and serve.", @@ -110443,7 +110443,7 @@ "DeKuyper\u00ae Sour Apple Pucker schnapps" ], "title": "Green Tang recipe", - "url": "http://www.drinksmixer.com/drink11663.html" + "url": "https://www.drinksmixer.com/drink11663.html" }, { "directions": "Pour vodka, then zen in an old-fashioned glass with ice. Fill with green tea and stir.", @@ -110453,7 +110453,7 @@ "tea" ], "title": "Green Tee This recipe", - "url": "http://www.drinksmixer.com/drink11664.html" + "url": "https://www.drinksmixer.com/drink11664.html" }, { "directions": "Shake all the ingredients (except syrup) together in a cocktail shaker half-filled with ice cubes. Pour over the strawberry syrup in a cocktail glass. Garnish with an orange peel, and serve.", @@ -110465,7 +110465,7 @@ "strawberry syrup" ], "title": "Guajira recipe", - "url": "http://www.drinksmixer.com/drink11666.html" + "url": "https://www.drinksmixer.com/drink11666.html" }, { "directions": "Pour equal parts Jagermeister herbal liqueur and blue Curacao into a cocktail shaker with a few ice cubes. Add a medium splash of Red Bull energy drink. Shake briefly; strain into a shot glass, and serve.", @@ -110475,7 +110475,7 @@ "Red Bull\u00ae energy drink" ], "title": "Gumball Shot recipe", - "url": "http://www.drinksmixer.com/drink11667.html" + "url": "https://www.drinksmixer.com/drink11667.html" }, { "directions": "Place gummy worms/bears/etc into large tupperware bowl and soak with vodka and schnapps for 4 to 5 days in room temperature. After a few days of soaking, simply take cupfuls of gummies and drink the left over juice. Both are delicious.", @@ -110487,7 +110487,7 @@ "candies" ], "title": "Gummies recipe", - "url": "http://www.drinksmixer.com/drink11668.html" + "url": "https://www.drinksmixer.com/drink11668.html" }, { "directions": "In a cocktail glass 3/4 full with ice, pour vodka and raspberry schnapps. Fill with cranberry juice, stir and serve.", @@ -110497,7 +110497,7 @@ "cranberry juice" ], "title": "Gummy Bear recipe", - "url": "http://www.drinksmixer.com/drink11669.html" + "url": "https://www.drinksmixer.com/drink11669.html" }, { "directions": "Pour ingredients into a shaker with ice. Shake and strain into a double shot glass, and serve.", @@ -110507,7 +110507,7 @@ "cranberry juice" ], "title": "Gummy Bear Shooter recipe", - "url": "http://www.drinksmixer.com/drink11670.html" + "url": "https://www.drinksmixer.com/drink11670.html" }, { "directions": "Fill a highball glass filled with ice cubes half way with Red Bull, then fill the other half with Hpnotiq liqueur. Serve.", @@ -110516,7 +110516,7 @@ "Red Bull\u00ae energy drink" ], "title": "H-Bomb #2 recipe", - "url": "http://www.drinksmixer.com/drink11671.html" + "url": "https://www.drinksmixer.com/drink11671.html" }, { "directions": "Shake ingredients together in a cocktail shaker half-filled with ice cubes. Strain into a highball glass filled with ice cubes, and serve.", @@ -110526,7 +110526,7 @@ "grapefruit juice" ], "title": "Hairless Chiahuahua recipe", - "url": "http://www.drinksmixer.com/drink11672.html" + "url": "https://www.drinksmixer.com/drink11672.html" }, { "directions": "Add ingredients to a cocktail shaker half-filled with ice cubes. Shake well, strain into an old-fashioned glass. Run a slice of lime around lip of glass, sugared rim optional. Garnish with lime or lemon wedge and stemless cherry. Amount of lime juice can be varied by taste. Serve.", @@ -110536,7 +110536,7 @@ "lime juice" ], "title": "Hale Bopp recipe", - "url": "http://www.drinksmixer.com/drink11673.html" + "url": "https://www.drinksmixer.com/drink11673.html" }, { "directions": "Add all ingredients to a cocktail shaker half-filled with ice cubes. Shake well, strain into a highball glass, and serve.", @@ -110550,7 +110550,7 @@ "rum" ], "title": "Happy Birthday Motherfucker recipe", - "url": "http://www.drinksmixer.com/drink11675.html" + "url": "https://www.drinksmixer.com/drink11675.html" }, { "directions": "Combine all ingredients in a punch bowl. Adjust to taste.", @@ -110561,7 +110561,7 @@ "orange juice" ], "title": "Happy Megan recipe", - "url": "http://www.drinksmixer.com/drink11676.html" + "url": "https://www.drinksmixer.com/drink11676.html" }, { "directions": "Pour ingredients over ice in an old-fashioned glass, vodka first and Sprite last. Serve.", @@ -110571,7 +110571,7 @@ "Sprite\u00ae soda" ], "title": "Happy Monkey recipe", - "url": "http://www.drinksmixer.com/drink11677.html" + "url": "https://www.drinksmixer.com/drink11677.html" }, { "directions": "Fill a cocktail glass with ice. Add Southern Comfort and DeKuyper Peachtree schnapps. Fill with Sprite or 7-Up. Add grenadine, and serve.", @@ -110582,7 +110582,7 @@ "grenadine syrup" ], "title": "Harry Dolan recipe", - "url": "http://www.drinksmixer.com/drink11678.html" + "url": "https://www.drinksmixer.com/drink11678.html" }, { "directions": "Shake ingredients together in a cocktail shaker half-filled with ice cubes. Serve,", @@ -110593,7 +110593,7 @@ "cranberry juice" ], "title": "Harry Potter recipe", - "url": "http://www.drinksmixer.com/drink11679.html" + "url": "https://www.drinksmixer.com/drink11679.html" }, { "directions": "Combine ingredients with crushed ice in desired glass.", @@ -110602,7 +110602,7 @@ "Hawaiian Punch\u00ae" ], "title": "Hawaiian Clear recipe", - "url": "http://www.drinksmixer.com/drink11680.html" + "url": "https://www.drinksmixer.com/drink11680.html" }, { "directions": "Pour the Maui blue Hawaiian schnapps, vodka and rum into a 16-oz glass filled with ice cubes. Fill with fresh chilled pineapple juice, stir briefly and serve.", @@ -110613,7 +110613,7 @@ "pineapple juice" ], "title": "Hawaiian Dream recipe", - "url": "http://www.drinksmixer.com/drink11681.html" + "url": "https://www.drinksmixer.com/drink11681.html" }, { "directions": "Pour the coconut rum into a highball glass filled with ice cubes. Fill the glass with equal parts of Hawaiian punch and Sprite soda. Stir, and serve.", @@ -110623,7 +110623,7 @@ "Sprite\u00ae soda" ], "title": "Hawaiian Parrot recipe", - "url": "http://www.drinksmixer.com/drink11682.html" + "url": "https://www.drinksmixer.com/drink11682.html" }, { "directions": "Stir together in a collins glass filled with ice cubes, and serve.", @@ -110634,7 +110634,7 @@ "7-Up\u00ae soda" ], "title": "Hawaiian Punch #2 recipe", - "url": "http://www.drinksmixer.com/drink11683.html" + "url": "https://www.drinksmixer.com/drink11683.html" }, { "directions": "Combine all ingredients together in a cocktail shaker half-filled with ice cubes. Shake and strain into an ice-filled collins glass. Garnish with pineapple spear, maraschino cherry and mint sprig. Serve.", @@ -110647,7 +110647,7 @@ "orgeat syrup" ], "title": "Hawaiian Mai Tai recipe", - "url": "http://www.drinksmixer.com/drink11684.html" + "url": "https://www.drinksmixer.com/drink11684.html" }, { "directions": "Mix vodka, rum, Midori, blue Curacao, tequila and pineapple juice with ice in mixing tin. Shake or flash blend. Pour into glass; top with Sprite. Garnish with cherries coated in sugar. Serve.", @@ -110661,7 +110661,7 @@ "Sprite\u00ae soda" ], "title": "Hayley's Comet recipe", - "url": "http://www.drinksmixer.com/drink11685.html" + "url": "https://www.drinksmixer.com/drink11685.html" }, { "directions": "Pour the vodka, Frangelico and Cointreau into a cocktail shaker half-filled with ice cubes. Shake well, and strain into a cocktail glass (chilled). Garnish with an orange twist, and serve.", @@ -110671,7 +110671,7 @@ "Cointreau\u00ae orange liqueur" ], "title": "Hazy Skyy recipe", - "url": "http://www.drinksmixer.com/drink11686.html" + "url": "https://www.drinksmixer.com/drink11686.html" }, { "directions": "Stir together the Malibu and 151 in a collins glass filled with ice cubes. Add other ingredients, stir and serve.", @@ -110683,7 +110683,7 @@ "Royal Crown\u00ae cola" ], "title": "Head On recipe", - "url": "http://www.drinksmixer.com/drink11687.html" + "url": "https://www.drinksmixer.com/drink11687.html" }, { "directions": "Pour vodka into a collins glass and add ice. Dash with bitters. Fill with equal parts ginger ale and orange juice. Decorate with slice of orange, and serve.", @@ -110694,7 +110694,7 @@ "orange juice" ], "title": "Headless Californian recipe", - "url": "http://www.drinksmixer.com/drink11688.html" + "url": "https://www.drinksmixer.com/drink11688.html" }, { "directions": "Pour liquors into a collins glass filled with ice cubes. Fill with equal parts of pineapple juice and cranberry juice, and serve.", @@ -110705,7 +110705,7 @@ "cranberry juice" ], "title": "Heaven recipe", - "url": "http://www.drinksmixer.com/drink11689.html" + "url": "https://www.drinksmixer.com/drink11689.html" }, { "directions": "Combine in equal parts in a shot glass, and serve.", @@ -110714,7 +110714,7 @@ "Goldschlager\u00ae cinnamon schnapps" ], "title": "Heavy Metal recipe", - "url": "http://www.drinksmixer.com/drink11690.html" + "url": "https://www.drinksmixer.com/drink11690.html" }, { "directions": "Stir together in a cup, and serve.", @@ -110724,7 +110724,7 @@ "Tabasco\u00ae sauce" ], "title": "Heavy Metal #2 recipe", - "url": "http://www.drinksmixer.com/drink11691.html" + "url": "https://www.drinksmixer.com/drink11691.html" }, { "directions": "Fill a glass with half a bottle of Corona. Pour a shot of tequila. Squeeze a lime wedge into the shot glass, and place lime wedge into shot. When you are ready to drink, drop the shot into the glass of Corona and chug fast.", @@ -110733,7 +110733,7 @@ "tequila" ], "title": "Hector Bomb recipe", - "url": "http://www.drinksmixer.com/drink11693.html" + "url": "https://www.drinksmixer.com/drink11693.html" }, { "directions": "Starting by pouring the sambuca into an old fashioned glass setting a snifter above it in 60 degrees angle. Pour the chocolate liquer into the snifter, above it absinthe, lighting it up, rolling the glass, letting it to hit up the pouring from the snifter into the old fashioned, covering it to choke the flames. Serve with a straw.", @@ -110743,7 +110743,7 @@ "Sebor\u00ae Absinth absinthe" ], "title": "Hell recipe", - "url": "http://www.drinksmixer.com/drink11694.html" + "url": "https://www.drinksmixer.com/drink11694.html" }, { "directions": "Fill a tall glass with ice and pour ingredients in order. Similar to a tequila sunrise; the hello kitty is layered when presented but stirred before drinking. ", @@ -110754,7 +110754,7 @@ "soda water" ], "title": "Hello Kitty recipe", - "url": "http://www.drinksmixer.com/drink11695.html" + "url": "https://www.drinksmixer.com/drink11695.html" }, { "directions": "Pour the Stoli Razberi vodka into a collins glass filled with ice cubes. Add the lemonade and float the schnapps. Add a squeeze of lemon and a cherry and serve.", @@ -110764,7 +110764,7 @@ "DeKuyper\u00ae Watermelon Pucker schnapps" ], "title": "Hellola recipe", - "url": "http://www.drinksmixer.com/drink11696.html" + "url": "https://www.drinksmixer.com/drink11696.html" }, { "directions": "Pour over ice in a highball glass, and serve.", @@ -110775,7 +110775,7 @@ "Red Bull\u00ae energy drink" ], "title": "Hendershlager recipe", - "url": "http://www.drinksmixer.com/drink11697.html" + "url": "https://www.drinksmixer.com/drink11697.html" }, { "directions": "Combine the 3 liquids in a mixing glass over ice cubes, Shake and strain into a cocktail glass, garnish with a dash of nutmeg, and serve.", @@ -110786,7 +110786,7 @@ "nutmeg" ], "title": "Hennessy Alexander recipe", - "url": "http://www.drinksmixer.com/drink11698.html" + "url": "https://www.drinksmixer.com/drink11698.html" }, { "directions": "Mix the Jack Black and Jagermeister. Tastes best if the Jagermeister is stored in the freezer. Sip slowly as an apertif, or drink as a refreshing and powerful shooter.", @@ -110795,7 +110795,7 @@ "Jack Daniel's\u00ae Tennessee whiskey" ], "title": "Henry Rollins recipe", - "url": "http://www.drinksmixer.com/drink11699.html" + "url": "https://www.drinksmixer.com/drink11699.html" }, { "directions": "Stir ingredients together in a collins glass, and serve.", @@ -110806,7 +110806,7 @@ "Coors\u00ae Light beer" ], "title": "Herbie Hancock recipe", - "url": "http://www.drinksmixer.com/drink11700.html" + "url": "https://www.drinksmixer.com/drink11700.html" }, { "directions": "Pour the lime juice, soda, and punch into the glass, then add the rum and vodka. Shake and add ice. Top with a cherry. Serve.", @@ -110820,7 +110820,7 @@ "cherry" ], "title": "High on Irony recipe", - "url": "http://www.drinksmixer.com/drink11701.html" + "url": "https://www.drinksmixer.com/drink11701.html" }, { "directions": "Pour all alcohols into a cocktail shaker half-filled with ice cubes. Shake and pour into a highball glass. Add energy drink, and serve.", @@ -110832,7 +110832,7 @@ "Red Bull\u00ae energy drink" ], "title": "Highspeed recipe", - "url": "http://www.drinksmixer.com/drink11702.html" + "url": "https://www.drinksmixer.com/drink11702.html" }, { "directions": "Pour the Jack Daniel's whiskey, Margarita mix, beer, lychee juice, 2 peeled lychees (without seed) into a cocktail glass with ice cubes. Salt the rim of glass and serve.", @@ -110845,7 +110845,7 @@ "salt" ], "title": "Bloody Tory recipe", - "url": "http://www.drinksmixer.com/drink11703.html" + "url": "https://www.drinksmixer.com/drink11703.html" }, { "directions": "Pour the rums into a cocktail glass packed with ice. Fill with cola, and garnish with lime. Serve.", @@ -110855,7 +110855,7 @@ "cola" ], "title": "Captain My Organ recipe", - "url": "http://www.drinksmixer.com/drink11704.html" + "url": "https://www.drinksmixer.com/drink11704.html" }, { "directions": "Mix all ingredients except for mints in a pitcher, then add crushed mints and stir until the mints are completely dissolved.", @@ -110868,7 +110868,7 @@ "peppermint" ], "title": "Hilbert Effect recipe", - "url": "http://www.drinksmixer.com/drink11705.html" + "url": "https://www.drinksmixer.com/drink11705.html" }, { "directions": "Mix the spirits together. Add fruit, let mellow for an hour. Put ice cubes and splash of bitters in bottom of a punch bowl, and add the juices. Add the spirits and fruit.", @@ -110882,7 +110882,7 @@ "fruits" ], "title": "Home Grown English recipe", - "url": "http://www.drinksmixer.com/drink11706.html" + "url": "https://www.drinksmixer.com/drink11706.html" }, { "directions": "In a cocktail shaker, combine orange juice, vodka and nectar. Pour over ice and gently stir in ginger ale. Add twist of lime and serve.", @@ -110893,7 +110893,7 @@ "passion-fruit nectar" ], "title": "Honeymoon recipe", - "url": "http://www.drinksmixer.com/drink11707.html" + "url": "https://www.drinksmixer.com/drink11707.html" }, { "directions": "Fill boston shaker with ice. Add bitters, sake, red vermouth and campari. Stir ingredients until chilled. Strain into a martini glass and flame with either lemon or orange. Garnish with a twist of lemon or orange. Serve.", @@ -110904,7 +110904,7 @@ "Campari\u00ae bitters" ], "title": "Hong Kong recipe", - "url": "http://www.drinksmixer.com/drink11708.html" + "url": "https://www.drinksmixer.com/drink11708.html" }, { "directions": "Add all ingredients to a shaker over ice, shake and pour into a highball glass. Garnish with mint and a straw, and serve.", @@ -110918,7 +110918,7 @@ "sugar" ], "title": "Honkey Tonk Lemonade recipe", - "url": "http://www.drinksmixer.com/drink11709.html" + "url": "https://www.drinksmixer.com/drink11709.html" }, { "directions": "Poor fruit punch into a large cooler or bucket. Slice apples and peaches (you dont have to add apples and peaches, you can add just apples, or just peaches. I reccommend both.) Dump apples and peaches into cooler or bucket. Pour the fifth of pure-grain into the bucket and mix! Serve in cups.", @@ -110929,7 +110929,7 @@ "peaches" ], "title": "Hooch recipe", - "url": "http://www.drinksmixer.com/drink11710.html" + "url": "https://www.drinksmixer.com/drink11710.html" }, { "directions": "Shake ingredients together in a cocktail shaker. Strain into a shot glass, and serve. ", @@ -110939,7 +110939,7 @@ "pineapple juice" ], "title": "Hot Apple Pie #4 recipe", - "url": "http://www.drinksmixer.com/drink11711.html" + "url": "https://www.drinksmixer.com/drink11711.html" }, { "directions": "Combine sugars, butter, ice cream, and spices. Blend until smooth. Place batter in the freezer. Store in freezer for up to one month.\r", @@ -110953,7 +110953,7 @@ "allspice" ], "title": "Hot Buttered Rum Batter #3 recipe", - "url": "http://www.drinksmixer.com/drink11712.html" + "url": "https://www.drinksmixer.com/drink11712.html" }, { "directions": "Mix all ingredients in a cocktail shaker over ice. Shake. Strain into a cocktail glass and serve.", @@ -110965,7 +110965,7 @@ "heavy cream" ], "title": "Hot Buttered Snow recipe", - "url": "http://www.drinksmixer.com/drink11713.html" + "url": "https://www.drinksmixer.com/drink11713.html" }, { "directions": "Mix spirits in mug or coffee glass, add hot chocolate and top with whipped cream and mint leaf.", @@ -110976,7 +110976,7 @@ "hot chocolate" ], "title": "Hot Hopper recipe", - "url": "http://www.drinksmixer.com/drink11714.html" + "url": "https://www.drinksmixer.com/drink11714.html" }, { "directions": "Add ingredients to a cocktail shaker half-filled with ice cubes. Shake and strain into a large cocktail glass over crushed ice. Serve.", @@ -110987,7 +110987,7 @@ "Dr. Pepper\u00ae soda" ], "title": "Hot Lesbian recipe", - "url": "http://www.drinksmixer.com/drink11715.html" + "url": "https://www.drinksmixer.com/drink11715.html" }, { "directions": "Pour the liquors into a regular hot chocolate, and serve.", @@ -110997,7 +110997,7 @@ "hot chocolate" ], "title": "Hot Neopolitan recipe", - "url": "http://www.drinksmixer.com/drink11716.html" + "url": "https://www.drinksmixer.com/drink11716.html" }, { "directions": "In a chilled old fashioned glass mix the first three ingredients, then place a single ice cube in the drink and splash the peppermint schnapps on the ice cube. Serve.", @@ -111008,7 +111008,7 @@ "peppermint schnapps" ], "title": "Hot Spicy Banana recipe", - "url": "http://www.drinksmixer.com/drink11717.html" + "url": "https://www.drinksmixer.com/drink11717.html" }, { "directions": "Mix equal parts of your favorite vanilla and cherry schnapps/liqueurs. Ice it down and serve as shots, or a mixed drink, or any way you want.", @@ -111017,7 +111017,7 @@ "cherry schnapps" ], "title": "Hozark Cherry Cheesecake recipe", - "url": "http://www.drinksmixer.com/drink11718.html" + "url": "https://www.drinksmixer.com/drink11718.html" }, { "directions": "Shake all ingredients in a cocktail shaker half-filled with ice cubes. Pour into a collins glass (incl. ice) and serve.", @@ -111032,7 +111032,7 @@ "Hpnotiq\u00ae liqueur" ], "title": "Hpnotiq Long Island Ice Tea recipe", - "url": "http://www.drinksmixer.com/drink11719.html" + "url": "https://www.drinksmixer.com/drink11719.html" }, { "directions": "Add cherry vodka to a cocktail shaker filled with ice, then add Hpnotiq liqueur. Shake, shake, shake. Pour into a cocktail glass and garnish with maraschino cherry. Serve.", @@ -111041,7 +111041,7 @@ "Hpnotiq\u00ae liqueur" ], "title": "Hpnotiq Martini recipe", - "url": "http://www.drinksmixer.com/drink11720.html" + "url": "https://www.drinksmixer.com/drink11720.html" }, { "directions": "Pour Hpnotiq first followed by the Grey Goose vodka over ice into a highball glass. Fill with cranberry juice. Shake once and enjoy.", @@ -111051,7 +111051,7 @@ "cranberry juice" ], "title": "Hpnotizer recipe", - "url": "http://www.drinksmixer.com/drink11721.html" + "url": "https://www.drinksmixer.com/drink11721.html" }, { "directions": "Stir ingredients together in a tall glass almost filled with ice cubes, and serve.", @@ -111061,7 +111061,7 @@ "orange juice" ], "title": "Hula Bob recipe", - "url": "http://www.drinksmixer.com/drink11722.html" + "url": "https://www.drinksmixer.com/drink11722.html" }, { "directions": "Stir ingredients together in a highball glass filled with ice cubes.", @@ -111071,7 +111071,7 @@ "pineapple juice" ], "title": "Hula Girl recipe", - "url": "http://www.drinksmixer.com/drink11723.html" + "url": "https://www.drinksmixer.com/drink11723.html" }, { "directions": "Pour ingredients into a shaker over ice and shake until well chilled. Strain into a cocktail glass and enjoy. Float a small amount of dark rum on top for a little added flavor.", @@ -111082,7 +111082,7 @@ "grenadine syrup" ], "title": "Humper recipe", - "url": "http://www.drinksmixer.com/drink11724.html" + "url": "https://www.drinksmixer.com/drink11724.html" }, { "directions": "Add ingredients to a cocktail shaker with ice. Shake and strain into a collins glass, and serve.", @@ -111094,7 +111094,7 @@ "pineapple juice" ], "title": "Hurricane Ethel recipe", - "url": "http://www.drinksmixer.com/drink11725.html" + "url": "https://www.drinksmixer.com/drink11725.html" }, { "directions": "Shake rums, passion fruit juice, lime juice and grenadine together. Pour into ice filled hurricane glass.", @@ -111106,7 +111106,7 @@ "grenadine syrup" ], "title": "Hurricane Hawaii recipe", - "url": "http://www.drinksmixer.com/drink11726.html" + "url": "https://www.drinksmixer.com/drink11726.html" }, { "directions": "Pour all ingredients into a cocktail shaker over ice, shake and strain into a shot glass. Serve.", @@ -111117,7 +111117,7 @@ "Bacardi\u00ae Coco rum" ], "title": "Hymen Ripper recipe", - "url": "http://www.drinksmixer.com/drink11727.html" + "url": "https://www.drinksmixer.com/drink11727.html" }, { "directions": "Carefully layer ingredients, in order, into a shot glass; barenjager, goldenschlager, vanilla schnapps. Serve.", @@ -111127,7 +111127,7 @@ "vanilla schnapps" ], "title": "Golden Shot recipe", - "url": "http://www.drinksmixer.com/drink11728.html" + "url": "https://www.drinksmixer.com/drink11728.html" }, { "directions": "Make sure the Gatorade lemon-lime has been chilled as much as possible. Pour Hpnotiq into the shot glass followed by the Gatorade Lemon-Lime. Serve and enjoy the fruity sensation!", @@ -111136,7 +111136,7 @@ "Hpnotiq\u00ae liqueur" ], "title": "Hyp-Gator recipe", - "url": "http://www.drinksmixer.com/drink11729.html" + "url": "https://www.drinksmixer.com/drink11729.html" }, { "directions": "Fill a highball glass with ice. Add Hpnotiq Liquer and fill with Sprite. Add a splash of grenadine, stir, and serve.", @@ -111146,7 +111146,7 @@ "grenadine syrup" ], "title": "Hypno Fusion recipe", - "url": "http://www.drinksmixer.com/drink11730.html" + "url": "https://www.drinksmixer.com/drink11730.html" }, { "directions": "Pour the Hpnotiq into an 8-oz highball glass. Fill the rest with Sprite, and serve.", @@ -111155,7 +111155,7 @@ "Sprite\u00ae soda" ], "title": "Hypnocrite recipe", - "url": "http://www.drinksmixer.com/drink11731.html" + "url": "https://www.drinksmixer.com/drink11731.html" }, { "directions": "Fill a cocktail shaker full with ice. Add vodka and Hpnotiq liqueur, Shake vigorously. Pour into a cocktail glass and top with Squirt. Garnish with a cherry or pineapple chunk, and serve.", @@ -111165,7 +111165,7 @@ "Squirt\u00ae citrus soda" ], "title": "Hypnosis recipe", - "url": "http://www.drinksmixer.com/drink11732.html" + "url": "https://www.drinksmixer.com/drink11732.html" }, { "directions": "Stir ingredients together with a few ice cubes in a cocktail glass, and serve.", @@ -111175,7 +111175,7 @@ "pineapple juice" ], "title": "Hypnotiq Breeze recipe", - "url": "http://www.drinksmixer.com/drink11733.html" + "url": "https://www.drinksmixer.com/drink11733.html" }, { "directions": "Pour in order into a shot glass. Serve.", @@ -111185,7 +111185,7 @@ "cranberry juice" ], "title": "I Love You recipe", - "url": "http://www.drinksmixer.com/drink11734.html" + "url": "https://www.drinksmixer.com/drink11734.html" }, { "directions": "Pour all three liquors over ice in shaker, strain from ice into shot glass. Serve.", @@ -111195,7 +111195,7 @@ "Jagermeister\u00ae herbal liqueur" ], "title": "I'm Good Now recipe", - "url": "http://www.drinksmixer.com/drink11735.html" + "url": "https://www.drinksmixer.com/drink11735.html" }, { "directions": "Fill a collins glass with ice. Add vanilla schnapps, fill glass with favorite soda (anything you would put on ice cream...root beer, dr. pepper, orange) leaving 1/2 inch headspace. Fill with cream.. not milk. Serve.", @@ -111205,7 +111205,7 @@ "soda" ], "title": "Ice Cream Float recipe", - "url": "http://www.drinksmixer.com/drink11736.html" + "url": "https://www.drinksmixer.com/drink11736.html" }, { "directions": "Pour ingredients over ice in a large highball glass and mix together. Serve.", @@ -111214,7 +111214,7 @@ "Nestea\u00ae iced tea" ], "title": "Iced Captain recipe", - "url": "http://www.drinksmixer.com/drink11737.html" + "url": "https://www.drinksmixer.com/drink11737.html" }, { "directions": "Add the ice to a hurricane glass. Pour the other ingredients into a cocktail shaker half-filled with ice cubes, and shake well. Strain into the hurricane glass. Garnish with a slice of pineapple. Serve.", @@ -111226,7 +111226,7 @@ "RedRum\u00ae rum" ], "title": "Iced Pineapple Sunrise recipe", - "url": "http://www.drinksmixer.com/drink11738.html" + "url": "https://www.drinksmixer.com/drink11738.html" }, { "directions": "Pour in order into an old-fashioned glass over ice, and serve.", @@ -111236,7 +111236,7 @@ "Courvoisier\u00ae cognac" ], "title": "Incredible Orange recipe", - "url": "http://www.drinksmixer.com/drink11740.html" + "url": "https://www.drinksmixer.com/drink11740.html" }, { "directions": "Add ingredients to a cocktail shaker half-filled with ice. Shake well. Pour into a frosted martini glass. Add a small wedge of fresh lime on edge of glass, and serve.", @@ -111247,7 +111247,7 @@ "cranberry juice" ], "title": "Indigo Girl recipe", - "url": "http://www.drinksmixer.com/drink11741.html" + "url": "https://www.drinksmixer.com/drink11741.html" }, { "directions": "Mix chilled Captain Morgan Tattoo rum with your favorite energy drink in a shot glass.", @@ -111256,7 +111256,7 @@ "Red Bull\u00ae energy drink" ], "title": "Ink Drop recipe", - "url": "http://www.drinksmixer.com/drink11742.html" + "url": "https://www.drinksmixer.com/drink11742.html" }, { "directions": "Combine ingredients in an old-fashioned glass, and drink fast.", @@ -111265,7 +111265,7 @@ "absinthe herbal liqueur" ], "title": "Instant Death #2 recipe", - "url": "http://www.drinksmixer.com/drink11743.html" + "url": "https://www.drinksmixer.com/drink11743.html" }, { "directions": "Pour ingredients into a shot glass, and serve.", @@ -111274,7 +111274,7 @@ "vodka" ], "title": "Insult Man Shooter recipe", - "url": "http://www.drinksmixer.com/drink11744.html" + "url": "https://www.drinksmixer.com/drink11744.html" }, { "directions": "Combine all ingredients in blender with crushed ice (frozen strawberries also can be added, but optional). Blend, and pour into sugar lined glasses. Top with umbrellas.", @@ -111286,7 +111286,7 @@ "watermelon vodka" ], "title": "Irish Anti-freeze recipe", - "url": "http://www.drinksmixer.com/drink11746.html" + "url": "https://www.drinksmixer.com/drink11746.html" }, { "directions": "Pour Jim Beam and Jameson into a beer mug, than fill with one can of guinness stout. Float bailey's and irish mist on top, stir and serve.", @@ -111298,7 +111298,7 @@ "Irish Mist\u00ae herbal liqueur" ], "title": "Irish C-4 recipe", - "url": "http://www.drinksmixer.com/drink11747.html" + "url": "https://www.drinksmixer.com/drink11747.html" }, { "directions": "Whip cream lightly, just until thickened and set aside. It should still pour but but light enough to float on the coffee. Ideally, the cream layer will stay separate but will come off with the coffee, as it is drunk. Note that no sweetners or flavors are added to the cream.\r", @@ -111309,7 +111309,7 @@ "heavy cream" ], "title": "Irish Coffee - Isle Style recipe", - "url": "http://www.drinksmixer.com/drink11748.html" + "url": "https://www.drinksmixer.com/drink11748.html" }, { "directions": "Combine all liquors into a strainer over ice for a few minutes. Wait for liquor to chill, than strain into a large shot glass and drink.", @@ -111321,7 +111321,7 @@ "Bushmills\u00ae Irish whiskey" ], "title": "Irish Kentuckian recipe", - "url": "http://www.drinksmixer.com/drink11749.html" + "url": "https://www.drinksmixer.com/drink11749.html" }, { "directions": "Shake with ice and strain into a shot glass.", @@ -111332,7 +111332,7 @@ "Jameson\u00ae Irish whiskey" ], "title": "Irish Maul Axe recipe", - "url": "http://www.drinksmixer.com/drink11750.html" + "url": "https://www.drinksmixer.com/drink11750.html" }, { "directions": "Fill up an old fashioned shot glass with 3/4 oz. of Jamesons Irish Whiskey, top off with 1/4 oz. of lime juice, garnish with a lime twist, and serve.", @@ -111341,7 +111341,7 @@ "lime juice" ], "title": "Irish Pecker recipe", - "url": "http://www.drinksmixer.com/drink11751.html" + "url": "https://www.drinksmixer.com/drink11751.html" }, { "directions": "Place a squirt of honey in bottom of shot glass. Add other ingredients and pound it.", @@ -111351,7 +111351,7 @@ "honey" ], "title": "Irish Trespasser recipe", - "url": "http://www.drinksmixer.com/drink11752.html" + "url": "https://www.drinksmixer.com/drink11752.html" }, { "directions": "Build ingredients in order listed in a chilled cocktail glass, and serve.", @@ -111361,7 +111361,7 @@ "Kahlua\u00ae coffee liqueur" ], "title": "Island Trader recipe", - "url": "http://www.drinksmixer.com/drink11753.html" + "url": "https://www.drinksmixer.com/drink11753.html" }, { "directions": "Add the Malibu and amaretto to a cocktail shaker half-filled with ice cubes. Add a splash of pineapple juice. Shake and strain into a shot glass, and serve. ", @@ -111371,7 +111371,7 @@ "pineapple juice" ], "title": "Italian Surfer #2 recipe", - "url": "http://www.drinksmixer.com/drink11755.html" + "url": "https://www.drinksmixer.com/drink11755.html" }, { "directions": "Mix absinthe with the aftershock, then add the pernod and drink straight down stick to 1 to 2 any more in one session and your likely to wake up and not remember a thing. ", @@ -111381,7 +111381,7 @@ "Pernod\u00ae licorice liqueur" ], "title": "Death Dream recipe", - "url": "http://www.drinksmixer.com/drink11756.html" + "url": "https://www.drinksmixer.com/drink11756.html" }, { "directions": "Add all ingredients to a highball glass over 3 - 4 ice cubes. Add a slice of lime, and serve.", @@ -111392,7 +111392,7 @@ "lemonade" ], "title": "J C recipe", - "url": "http://www.drinksmixer.com/drink11757.html" + "url": "https://www.drinksmixer.com/drink11757.html" }, { "directions": "Pour just under half a shot glass full of Dooleys, then add Tequila Rose, leaving enough room to add a dash of Tia Maria. Serve.", @@ -111402,7 +111402,7 @@ "Tia Maria\u00ae coffee liqueur" ], "title": "J-Lu recipe", - "url": "http://www.drinksmixer.com/drink11758.html" + "url": "https://www.drinksmixer.com/drink11758.html" }, { "directions": "Mix everything together in a big bowl. Then fit as many people around the bowl with straws as possible, and drink as fast as possible.", @@ -111413,7 +111413,7 @@ "Sprite\u00ae soda" ], "title": "J-Unit's Wookie Surprise recipe", - "url": "http://www.drinksmixer.com/drink11759.html" + "url": "https://www.drinksmixer.com/drink11759.html" }, { "directions": "Splash the vermouth into chilled 10-oz martini glass, swirl and spill. Half-fill a cocktail shaker with cracked ice, add vodka and shake vigorously. Strain into glass. Garnish with several extra large green olives stuffed with aged Roquefort cheese, one will not be enough.", @@ -111424,7 +111424,7 @@ "cheese" ], "title": "J. R.'s Dallas Martini recipe", - "url": "http://www.drinksmixer.com/drink11760.html" + "url": "https://www.drinksmixer.com/drink11760.html" }, { "directions": "Pour Jack Daniels into a large glass half-filled with ice. Pour cherry coke into the glass. Stir lightly, and serve.", @@ -111433,7 +111433,7 @@ "Coca-Cola\u00ae Cherry Coke" ], "title": "Jack and Cherry Coke recipe", - "url": "http://www.drinksmixer.com/drink11761.html" + "url": "https://www.drinksmixer.com/drink11761.html" }, { "directions": "Pour Jack Daniels into a collins glass half-filled with ice cubes, then fill with lipton brisk, stir and serve.", @@ -111442,7 +111442,7 @@ "Lipton\u00ae Brisk iced tea" ], "title": "Jack Brisk recipe", - "url": "http://www.drinksmixer.com/drink11762.html" + "url": "https://www.drinksmixer.com/drink11762.html" }, { "directions": "Build in a collins glass filled with ice cubes, and serve.", @@ -111453,7 +111453,7 @@ "orange juice" ], "title": "Jack Hammer #3 recipe", - "url": "http://www.drinksmixer.com/drink11763.html" + "url": "https://www.drinksmixer.com/drink11763.html" }, { "directions": "In a shot glass, fill half way up with absinthe first, then jack daniels in the other half and wait for it to settle. Now drink, but dont overdo it! Very strong!", @@ -111462,7 +111462,7 @@ "Jack Daniel's\u00ae Tennessee whiskey" ], "title": "Jack in the Green recipe", - "url": "http://www.drinksmixer.com/drink11764.html" + "url": "https://www.drinksmixer.com/drink11764.html" }, { "directions": "Pour Jack Daniel's into a collins glass over ice. Fill with dr pepper, stir and serve.", @@ -111471,7 +111471,7 @@ "Dr. Pepper\u00ae soda" ], "title": "Jack Pepper recipe", - "url": "http://www.drinksmixer.com/drink11765.html" + "url": "https://www.drinksmixer.com/drink11765.html" }, { "directions": "Pour into a shot glass in order. Top with whipped cream and serve!", @@ -111482,7 +111482,7 @@ "whipped cream" ], "title": "Jack Sauce recipe", - "url": "http://www.drinksmixer.com/drink11766.html" + "url": "https://www.drinksmixer.com/drink11766.html" }, { "directions": "Pour Jack Daniels, Bailey's and Kahlua over 3 ice cubes in an Irish coffee cup. Fill glass with Nesquik chocolate milk, and dash Tullamore Dew on top. Stir and serve.", @@ -111494,7 +111494,7 @@ "Tullamore Dew\u00ae Irish whiskey" ], "title": "Jack Shit recipe", - "url": "http://www.drinksmixer.com/drink11767.html" + "url": "https://www.drinksmixer.com/drink11767.html" }, { "directions": "Mix ingredients in a shaker with ice. Strain into a cocktail glass. Garnish with a fresh lime wheel and a small slice of lemon peel, and serve.", @@ -111505,7 +111505,7 @@ "sweet and sour mix" ], "title": "Jack-in-the-Green recipe", - "url": "http://www.drinksmixer.com/drink11768.html" + "url": "https://www.drinksmixer.com/drink11768.html" }, { "directions": "Fill a cocktail shaker with ice, and add the spirits and orange juice. Splash with grenadine for taste/color. Shake with ice and pour into old-fashioned glass wihout the ice. Shoot and enjoy.", @@ -111517,7 +111517,7 @@ "grenadine syrup" ], "title": "Jackhammer #2 recipe", - "url": "http://www.drinksmixer.com/drink11769.html" + "url": "https://www.drinksmixer.com/drink11769.html" }, { "directions": "Pour ingredients into a cocktail shaker half-filled with ice cubes. Shake and pour into an old-fashioned glass filled with ice. Serve.", @@ -111527,7 +111527,7 @@ "lime juice" ], "title": "Jackhammer #3 recipe", - "url": "http://www.drinksmixer.com/drink11770.html" + "url": "https://www.drinksmixer.com/drink11770.html" }, { "directions": "Mix liquids together starting with the liquor into a blender. Add the cup of ice and blend until it is like a smoothie. Serve.", @@ -111538,7 +111538,7 @@ "ice" ], "title": "Jackoff recipe", - "url": "http://www.drinksmixer.com/drink11771.html" + "url": "https://www.drinksmixer.com/drink11771.html" }, { "directions": "Make a cup of hot cocoa by boiling 3/4 of a cup of water and adding 1 full package of hot cocoa. Add 1/4 cup jack daniels ( more or less depending on how strong you like your drinks). Stir together, and serve.", @@ -111548,7 +111548,7 @@ "water" ], "title": "JaCocoa recipe", - "url": "http://www.drinksmixer.com/drink11772.html" + "url": "https://www.drinksmixer.com/drink11772.html" }, { "directions": "Fill a pint glass with ice. Add jager and rootbeer schnapps, then fill with Pepsi, and serve.", @@ -111558,7 +111558,7 @@ "Pepsi\u00ae cola" ], "title": "Jagasm recipe", - "url": "http://www.drinksmixer.com/drink11773.html" + "url": "https://www.drinksmixer.com/drink11773.html" }, { "directions": "Pour the Mountain Dew into a pint glass (half full), then add in a shot of Jagermeister. You can drink slowly with ice or chug without. Taste of drink will not change with time like some of the other similar ones (Jagermeister and Red Bull).", @@ -111567,7 +111567,7 @@ "Mountain Dew\u00ae citrus soda" ], "title": "Jager and Dew recipe", - "url": "http://www.drinksmixer.com/drink11774.html" + "url": "https://www.drinksmixer.com/drink11774.html" }, { "directions": "Pour all 3 liquors into a cocktail shaker half-filled with ice cubes. Shake, pour into an old-fashioned glass and serve.", @@ -111577,7 +111577,7 @@ "root beer schnapps" ], "title": "Jager Shake recipe", - "url": "http://www.drinksmixer.com/drink11775.html" + "url": "https://www.drinksmixer.com/drink11775.html" }, { "directions": "Fill glass with a shot of jagermeister, top off with the same amount of cherry juice. Serve.", @@ -111586,7 +111586,7 @@ "cherry juice" ], "title": "Jager Volcano recipe", - "url": "http://www.drinksmixer.com/drink11776.html" + "url": "https://www.drinksmixer.com/drink11776.html" }, { "directions": "Pour the Jagermeister into a shot glass. Drop the shot into another glass containing a shot of blackberry brandy, and drink quickly.", @@ -111595,7 +111595,7 @@ "blackberry brandy" ], "title": "Jagerberry recipe", - "url": "http://www.drinksmixer.com/drink11777.html" + "url": "https://www.drinksmixer.com/drink11777.html" }, { "directions": "Pour the Red Jack into a pint glass. Drop in a shot glass filled with Jack Daniel's, and chug.", @@ -111604,7 +111604,7 @@ "Red Jak\u00ae energy drink" ], "title": "Jak Jack recipe", - "url": "http://www.drinksmixer.com/drink11778.html" + "url": "https://www.drinksmixer.com/drink11778.html" }, { "directions": "Pour the rum into a collins glass 1/3 filled with ice. Fill glass with cream soda. Stir gently, and serve.", @@ -111613,7 +111613,7 @@ "A&W\u00ae cream soda" ], "title": "Jake White Special recipe", - "url": "http://www.drinksmixer.com/drink11779.html" + "url": "https://www.drinksmixer.com/drink11779.html" }, { "directions": "Pour all ingredients into a cocktail shaker half-filled with ice cubes. Shake well and strain into shot glasses.", @@ -111625,7 +111625,7 @@ "grenadine syrup" ], "title": "Jamaica Shot recipe", - "url": "http://www.drinksmixer.com/drink11780.html" + "url": "https://www.drinksmixer.com/drink11780.html" }, { "directions": "Basically a Long Beach Iced Tea with Myers in place of light rum, and pineapple in place of cranberry juice. Best if prepared in a mixing cup with ice, shaken, and poured (ice and all) into a hurricane glass. To serve in a Collins glass (which is usually somewhat smaller), cut the bottle pours back to 1/2 oz each, and mixers back to 1 oz each.\r", @@ -111638,7 +111638,7 @@ "sweet and sour mix" ], "title": "Jamaican Iced Tea recipe", - "url": "http://www.drinksmixer.com/drink11781.html" + "url": "https://www.drinksmixer.com/drink11781.html" }, { "directions": "Shake the Tia Maria and Malibu in a cocktail shaker with crushed ice. Strain into a highball glass filled with ice cubes, top with Sprite, and serve.", @@ -111648,7 +111648,7 @@ "Sprite\u00ae soda" ], "title": "Jamaican Rumshaker recipe", - "url": "http://www.drinksmixer.com/drink11782.html" + "url": "https://www.drinksmixer.com/drink11782.html" }, { "directions": "Put the vodka, tequila, gin and triple sec into a shaker with lots of ice. Mix well then pour into a cocktail glass. Pour the orange juice and the jamaican rum. (the rum goes last) Decorate the glass with a slice of orange and a tiny umbrella. Serve.", @@ -111661,7 +111661,7 @@ "orange juice" ], "title": "Jamaican Spirit recipe", - "url": "http://www.drinksmixer.com/drink11783.html" + "url": "https://www.drinksmixer.com/drink11783.html" }, { "directions": "Pour Redrum and fruit punch into a shaker with ice, shake, then pour into a tall glass; float grenadine on top and serve with a straw and pineapple slice/piece for garnish.", @@ -111671,7 +111671,7 @@ "grenadine syrup" ], "title": "Jamaican Sunrise #2 recipe", - "url": "http://www.drinksmixer.com/drink11784.html" + "url": "https://www.drinksmixer.com/drink11784.html" }, { "directions": "Combine Irish Whiskey's into a shot glass, serve and drink.", @@ -111682,7 +111682,7 @@ "Powers\u00ae Irish whiskey" ], "title": "James the Evil Leprechaun recipe", - "url": "http://www.drinksmixer.com/drink11785.html" + "url": "https://www.drinksmixer.com/drink11785.html" }, { "directions": "Shaken or straight up, both are great but you must be prepared for a drink that will tickle the back of your throat and warm your belly.", @@ -111691,7 +111691,7 @@ "Bacardi\u00ae O rum" ], "title": "French Tickler #2 recipe", - "url": "http://www.drinksmixer.com/drink11786.html" + "url": "https://www.drinksmixer.com/drink11786.html" }, { "directions": "Shake vodka, Midori and lime juice over ice. Strain into a margarita or cocktail glass, building over blue curacao. Top with lemonade, and serve.", @@ -111703,7 +111703,7 @@ "lemonade" ], "title": "Japanese Lagoon recipe", - "url": "http://www.drinksmixer.com/drink11787.html" + "url": "https://www.drinksmixer.com/drink11787.html" }, { "directions": "Combine ingredients in shaker. Shake vigorously with ice and pour (incl. ice) into highball glass. Serve.", @@ -111713,7 +111713,7 @@ "pineapple juice" ], "title": "Jeannie in a Bottle recipe", - "url": "http://www.drinksmixer.com/drink11788.html" + "url": "https://www.drinksmixer.com/drink11788.html" }, { "directions": "Combine about 1/3 oz. of each of the above into one shot glass and shoot.", @@ -111723,7 +111723,7 @@ "butterscotch schnapps" ], "title": "Jedi Mind Trick #2 recipe", - "url": "http://www.drinksmixer.com/drink11789.html" + "url": "https://www.drinksmixer.com/drink11789.html" }, { "directions": "Pour equal amounts of each into a shot glass, and serve.", @@ -111733,7 +111733,7 @@ "creme de menthe" ], "title": "Jelly Bean #3 recipe", - "url": "http://www.drinksmixer.com/drink11790.html" + "url": "https://www.drinksmixer.com/drink11790.html" }, { "directions": "Use 1 bottle of each spirit, the Pernod should be a smaller bottle - equivalent to a half bottle. Put all the spirits in the freezer - 10 to -20 Centigrade. Use 1 liter of raspberry juice, if you can't get raspberry juice you can use grenadine. Take care with the quantity, grenadine is a cordial so use a lot less.\r", @@ -111746,7 +111746,7 @@ "lemonade" ], "title": "Jellybean recipe", - "url": "http://www.drinksmixer.com/drink11791.html" + "url": "https://www.drinksmixer.com/drink11791.html" }, { "directions": "Pour the whiskey into a shot glass. Add cola, eat cherry and consume.", @@ -111756,7 +111756,7 @@ "cherry" ], "title": "Jenna Pop! recipe", - "url": "http://www.drinksmixer.com/drink11792.html" + "url": "https://www.drinksmixer.com/drink11792.html" }, { "directions": "Pour all ingredients into a pina-colada glass, adding juices and nectar for last. Do not stir. Squeeze in the juice from lime wedge. Drizzle grenadine on top. Garnish with orange slice, pineapple wedge, and cherry.", @@ -111774,7 +111774,7 @@ "maraschino cherry" ], "title": "Jenni's Punch recipe", - "url": "http://www.drinksmixer.com/drink11793.html" + "url": "https://www.drinksmixer.com/drink11793.html" }, { "directions": "Pour the Red Bull into a highball glass. Mix the jagermeister and Hennessy in a shot glass. Drop the shot into the Red Bull and chug.", @@ -111784,7 +111784,7 @@ "Red Bull\u00ae energy drink" ], "title": "Jenny Bomb recipe", - "url": "http://www.drinksmixer.com/drink11794.html" + "url": "https://www.drinksmixer.com/drink11794.html" }, { "directions": "Stir together in a cup, and serve.", @@ -111794,7 +111794,7 @@ "orange juice" ], "title": "Jerald recipe", - "url": "http://www.drinksmixer.com/drink11795.html" + "url": "https://www.drinksmixer.com/drink11795.html" }, { "directions": "Add all ingredients to a cocktail shaker half-filled with ice cubes. Shake and strain into a shot glass. Serve.", @@ -111804,7 +111804,7 @@ "Jagermeister\u00ae herbal liqueur" ], "title": "Jeri's Hat Trick recipe", - "url": "http://www.drinksmixer.com/drink11796.html" + "url": "https://www.drinksmixer.com/drink11796.html" }, { "directions": "Add all ingredients to a collins glass filled with ice. Stir, and serve.", @@ -111815,7 +111815,7 @@ "Red Bull\u00ae energy drink" ], "title": "Jersey Lemonade recipe", - "url": "http://www.drinksmixer.com/drink11797.html" + "url": "https://www.drinksmixer.com/drink11797.html" }, { "directions": "Pour equal parts of each ingredient into a cocktail shaker over ice, and shake. Strain into a shot glass, and serve.", @@ -111825,7 +111825,7 @@ "Bailey's\u00ae Irish cream" ], "title": "Jessica's Cocoa Bitch recipe", - "url": "http://www.drinksmixer.com/drink11798.html" + "url": "https://www.drinksmixer.com/drink11798.html" }, { "directions": "Stir together in a cup, and serve.", @@ -111836,7 +111836,7 @@ "fruit punch" ], "title": "Jessica's Juice recipe", - "url": "http://www.drinksmixer.com/drink11799.html" + "url": "https://www.drinksmixer.com/drink11799.html" }, { "directions": "Get a beer glass, and fill a 1/4 of it with the whisky. Add vodka until half full, then the Fosters beer until 3/4 full. Add the cider 'til glass is almost full. Add a hint of blackcurrant squash. Serve.", @@ -111848,7 +111848,7 @@ "blackcurrant squash" ], "title": "Jesus Juice recipe", - "url": "http://www.drinksmixer.com/drink11800.html" + "url": "https://www.drinksmixer.com/drink11800.html" }, { "directions": "Stir in a shot glass, and serve.", @@ -111857,7 +111857,7 @@ "white grape juice" ], "title": "Jeweller's Hammer recipe", - "url": "http://www.drinksmixer.com/drink11801.html" + "url": "https://www.drinksmixer.com/drink11801.html" }, { "directions": "Pour all ingredients into a highball glass filled with ice cubes, stir briefly and serve.", @@ -111867,7 +111867,7 @@ "cream of coconut" ], "title": "Jewish Bulldozer recipe", - "url": "http://www.drinksmixer.com/drink11802.html" + "url": "https://www.drinksmixer.com/drink11802.html" }, { "directions": "Pour both ingredients over ice cubes in a collins glass, stir and serve.", @@ -111876,7 +111876,7 @@ "Barq's\u00ae root beer" ], "title": "Jim Barqs recipe", - "url": "http://www.drinksmixer.com/drink11803.html" + "url": "https://www.drinksmixer.com/drink11803.html" }, { "directions": "Fill one 16 oz. red Solo cup with cubed ice. Gently pour 4 oz. of Kentucky's finest table whiskey, Henry McKenna over the ice. Fill remaining space with Sun Drop (approx. 8 oz.) Use second cup as mixer cup, mix four times. Place full cup inside mixer cup, and enjoy. ", @@ -111885,7 +111885,7 @@ "Sun Drop\u00ae citrus soda" ], "title": "Emporia Martini recipe", - "url": "http://www.drinksmixer.com/drink11804.html" + "url": "https://www.drinksmixer.com/drink11804.html" }, { "directions": "Pour creme de framboise into a shot glass and layer surface with double cream poured over a spoon. Must be served at room temperature and drunk slowly and smoothly in one go.", @@ -111894,7 +111894,7 @@ "double cream" ], "title": "Jammie Dodger recipe", - "url": "http://www.drinksmixer.com/drink11805.html" + "url": "https://www.drinksmixer.com/drink11805.html" }, { "directions": "Add ice to and stir together in a collins glass. Garnish with lemon slices and cherries. Serve.", @@ -111905,7 +111905,7 @@ "Sprite\u00ae soda" ], "title": "Jim Beam's Clermont Lemonade recipe", - "url": "http://www.drinksmixer.com/drink11806.html" + "url": "https://www.drinksmixer.com/drink11806.html" }, { "directions": "Combine all Jim Beam whiskey's in an old-fashioned glass, and serve (consume as a shot).", @@ -111917,7 +111917,7 @@ "bonded bourbon whiskey" ], "title": "Jim Beam's Family recipe", - "url": "http://www.drinksmixer.com/drink11807.html" + "url": "https://www.drinksmixer.com/drink11807.html" }, { "directions": "Combine whiskey, Stoli vodka and Frangelico liqueur together in an old-fashioned glass. Fill with Mello Yello soda. Stir and serve.", @@ -111928,7 +111928,7 @@ "Mello Yello\u00ae citrus soda" ], "title": "Jim Carrey recipe", - "url": "http://www.drinksmixer.com/drink11808.html" + "url": "https://www.drinksmixer.com/drink11808.html" }, { "directions": "Combine whiskey, rum, vodka and tequila into a cocktail shaker. Shake and strain into a shot glass. Serve.", @@ -111939,7 +111939,7 @@ "Absolut\u00ae Kurant vodka" ], "title": "Jim the Ripper recipe", - "url": "http://www.drinksmixer.com/drink11809.html" + "url": "https://www.drinksmixer.com/drink11809.html" }, { "directions": "Fill a pitcher with ice. Add all liquors. Add juices and stir. Serve into 2 12-oz glasses.", @@ -111958,7 +111958,7 @@ "sweet and sour mix" ], "title": "Jim's recipe", - "url": "http://www.drinksmixer.com/drink11810.html" + "url": "https://www.drinksmixer.com/drink11810.html" }, { "directions": "Stir together in a 2-oz shot glass, and serve.", @@ -111969,7 +111969,7 @@ "Dole\u00ae grapefruit juice" ], "title": "Jimmy Page recipe", - "url": "http://www.drinksmixer.com/drink11811.html" + "url": "https://www.drinksmixer.com/drink11811.html" }, { "directions": "Stir together in a 2-oz shot glass, and serve.", @@ -111980,7 +111980,7 @@ "Drambuie\u00ae Scotch whisky" ], "title": "Jimmy Page #2 recipe", - "url": "http://www.drinksmixer.com/drink11812.html" + "url": "https://www.drinksmixer.com/drink11812.html" }, { "directions": "Combine bourbon and Irish whiskey in a shot glass, and serve.", @@ -111989,7 +111989,7 @@ "Powers\u00ae Irish whiskey" ], "title": "Jimmy Powers recipe", - "url": "http://www.drinksmixer.com/drink11813.html" + "url": "https://www.drinksmixer.com/drink11813.html" }, { "directions": "Combine whiskies (Bourbon and Scotch) with dry gin in a shot glass, stir lightly, and serve.", @@ -111999,7 +111999,7 @@ "Bombay Sapphire\u00ae gin" ], "title": "Jimmy Tudeski recipe", - "url": "http://www.drinksmixer.com/drink11814.html" + "url": "https://www.drinksmixer.com/drink11814.html" }, { "directions": "Combine Jim Beam Bourbon and Romana black (90 proof) sambuca into a shot glass, and serve!", @@ -112008,7 +112008,7 @@ "Romana\u00ae black sambuca" ], "title": "Jimmy Two Times recipe", - "url": "http://www.drinksmixer.com/drink11815.html" + "url": "https://www.drinksmixer.com/drink11815.html" }, { "directions": "Add the Kamora to a 12-oz serving of Bacardi Silver O3, and serve.", @@ -112017,7 +112017,7 @@ "Kamora\u00ae coffee liqueur" ], "title": "Joe's Orange Highball recipe", - "url": "http://www.drinksmixer.com/drink11816.html" + "url": "https://www.drinksmixer.com/drink11816.html" }, { "directions": "Pour the lime vodka into a highball glass filled with ice cubes. Fill with Sprite soda, and serve.", @@ -112026,7 +112026,7 @@ "Sprite\u00ae soda" ], "title": "John Deer recipe", - "url": "http://www.drinksmixer.com/drink11817.html" + "url": "https://www.drinksmixer.com/drink11817.html" }, { "directions": "Combine the jagermeister and Scotch in a shot glass, and serve.", @@ -112035,7 +112035,7 @@ "Johnnie Walker\u00ae Red Label Scotch whisky" ], "title": "Johnnie Meister recipe", - "url": "http://www.drinksmixer.com/drink11818.html" + "url": "https://www.drinksmixer.com/drink11818.html" }, { "directions": "Pour into an old-fashioned glass over three ice cubes, stir and serve.", @@ -112045,7 +112045,7 @@ "Rose's\u00ae lime juice" ], "title": "Johnniebull recipe", - "url": "http://www.drinksmixer.com/drink11819.html" + "url": "https://www.drinksmixer.com/drink11819.html" }, { "directions": "Combine ingredients in a shaker with ice. Shake and strain into a shot glass, and serve.", @@ -112055,7 +112055,7 @@ "cranberry juice" ], "title": "Jolly Rancher #4 recipe", - "url": "http://www.drinksmixer.com/drink11820.html" + "url": "https://www.drinksmixer.com/drink11820.html" }, { "directions": "Pour ingredients in any order directly into a large cocktail glass. Garnish with lime wedge for a very green drink. It's that simple!", @@ -112065,7 +112065,7 @@ "green apple soda" ], "title": "Jolly Rancher #3 recipe", - "url": "http://www.drinksmixer.com/drink11821.html" + "url": "https://www.drinksmixer.com/drink11821.html" }, { "directions": "Stir together in a collins glass, and serve.", @@ -112074,7 +112074,7 @@ "Jones\u00ae cream soda" ], "title": "Jones recipe", - "url": "http://www.drinksmixer.com/drink11823.html" + "url": "https://www.drinksmixer.com/drink11823.html" }, { "directions": "Fill a highball glass with ice to the top. Nearly fill with vodka of your choice. Top off with under a shot of mountain dew for flavor. Serve.", @@ -112083,7 +112083,7 @@ "Mountain Dew\u00ae citrus soda" ], "title": "Jones Juice recipe", - "url": "http://www.drinksmixer.com/drink11824.html" + "url": "https://www.drinksmixer.com/drink11824.html" }, { "directions": "Pour the Southern Comfort into a cup. Add the ginger ale and raspberry soda. Stir and serve.", @@ -112093,7 +112093,7 @@ "raspberry soda" ], "title": "Jugtown Classic recipe", - "url": "http://www.drinksmixer.com/drink11825.html" + "url": "https://www.drinksmixer.com/drink11825.html" }, { "directions": "Shake all ingredients and ice in a shaker or mixing glass. Strain into a shot glass, and serve.", @@ -112103,7 +112103,7 @@ "pineapple juice" ], "title": "Juicy Fruit #3 recipe", - "url": "http://www.drinksmixer.com/drink11826.html" + "url": "https://www.drinksmixer.com/drink11826.html" }, { "directions": "Add all ingredients to a coffee mug and stir for about 5 or so seconds. Serve.", @@ -112114,7 +112114,7 @@ "lemon juice" ], "title": "Jump Start recipe", - "url": "http://www.drinksmixer.com/drink11827.html" + "url": "https://www.drinksmixer.com/drink11827.html" }, { "directions": "Mix the fruit and alcohol together and let set for 4 to 12 hours. Then add the fruit punch, sunny d, and orange juice concentrate in and let set overnight. Serve in cups.", @@ -112130,7 +112130,7 @@ "fruits" ], "title": "Jungle Juice #5 recipe", - "url": "http://www.drinksmixer.com/drink11828.html" + "url": "https://www.drinksmixer.com/drink11828.html" }, { "directions": "Fill a highball glass with ice. Add the peach schnapps, and fill with cranberry juice. Garnish with lime, and serve.", @@ -112139,7 +112139,7 @@ "cranberry juice" ], "title": "Clay recipe", - "url": "http://www.drinksmixer.com/drink11829.html" + "url": "https://www.drinksmixer.com/drink11829.html" }, { "directions": "Add chocolate liqueur and rum in glass, drizzle with Goldschlager. Can be served over ice or straight up. Makes a great shooter too!", @@ -112149,7 +112149,7 @@ "Goldschlager\u00ae cinnamon schnapps" ], "title": "Dirty Donkey recipe", - "url": "http://www.drinksmixer.com/drink11830.html" + "url": "https://www.drinksmixer.com/drink11830.html" }, { "directions": "Mix the vodka, tropical blue Sourz, pineapple juice and lime juice in a shaker and shake. Crush some ice and pour it in to a highball glass, then add the mix from the shaker. Garnish with some pineapple and then dash some Monin Blue Curacao Syrup so it runs down through the crushed ice. Serve.", @@ -112161,7 +112161,7 @@ "Monin\u00ae blue curacao syrup" ], "title": "Frozen Rainforest recipe", - "url": "http://www.drinksmixer.com/drink11831.html" + "url": "https://www.drinksmixer.com/drink11831.html" }, { "directions": "Pour the Jose Cuervo gold tequila into a shot glass first, then add the A&W Creme Soda. Serve.", @@ -112170,7 +112170,7 @@ "A&W\u00ae cream soda" ], "title": "Hyper Beam recipe", - "url": "http://www.drinksmixer.com/drink11832.html" + "url": "https://www.drinksmixer.com/drink11832.html" }, { "directions": "Add chocolate liqueur and rum in glass, drizzle with Goldschlager. Can be served over ice or straight up. Makes a great shooter too!", @@ -112180,7 +112180,7 @@ "Goldschlager\u00ae cinnamon schnapps" ], "title": "Island Donkey recipe", - "url": "http://www.drinksmixer.com/drink11833.html" + "url": "https://www.drinksmixer.com/drink11833.html" }, { "directions": "Combine all ingredients in a blender. Blend and pour into a brandy snifter. Serve.", @@ -112190,7 +112190,7 @@ "crushed ice" ], "title": "Junior Mint Iced recipe", - "url": "http://www.drinksmixer.com/drink11834.html" + "url": "https://www.drinksmixer.com/drink11834.html" }, { "directions": "Stir well with a few ice cubes in a highball glass, and serve.", @@ -112200,7 +112200,7 @@ "pineapple juice" ], "title": "Kalamazoo recipe", - "url": "http://www.drinksmixer.com/drink11835.html" + "url": "https://www.drinksmixer.com/drink11835.html" }, { "directions": "Add the vodka and the iced tea to a cocktail shaker. After shaking fill the drink in a cocktail glass. Serve with three green olives on a toothpick.", @@ -112210,7 +112210,7 @@ "olives" ], "title": "Kamikazini recipe", - "url": "http://www.drinksmixer.com/drink11836.html" + "url": "https://www.drinksmixer.com/drink11836.html" }, { "directions": "Pour into a highball glass in order listed. Add a twist of lime if you prefer.", @@ -112220,7 +112220,7 @@ "lime" ], "title": "Karl Malden recipe", - "url": "http://www.drinksmixer.com/drink11837.html" + "url": "https://www.drinksmixer.com/drink11837.html" }, { "directions": "Mix all ingredients in a punch bowl; add ice. Serve into cups when chilled.", @@ -112233,7 +112233,7 @@ "blackberry schnapps" ], "title": "Kathleen's Catastrophe recipe", - "url": "http://www.drinksmixer.com/drink11838.html" + "url": "https://www.drinksmixer.com/drink11838.html" }, { "directions": "Pour the Malibu rum, Bailey's Irish cream, Kahlua coffee liqueur and amaretto to a cocktail shaker half-filled with ice cubes. Add cream or milk. Shake well. Strain into a cocktail glass, garnish as desired and serve.", @@ -112245,7 +112245,7 @@ "cream" ], "title": "Kathy's Concoction recipe", - "url": "http://www.drinksmixer.com/drink11839.html" + "url": "https://www.drinksmixer.com/drink11839.html" }, { "directions": "Mix the bourbon, amaretto, and hazelnut liqueur into a tall glass and top off with the soda. Serve.", @@ -112256,7 +112256,7 @@ "Coca-Cola\u00ae" ], "title": "Kentucky Gentleman Top Hat recipe", - "url": "http://www.drinksmixer.com/drink11840.html" + "url": "https://www.drinksmixer.com/drink11840.html" }, { "directions": "Combine all whiskey's into a shot glass, stir and serve.", @@ -112267,7 +112267,7 @@ "Old Fitzgerald\u00ae bourbon whiskey" ], "title": "Kentucky KrackFiends recipe", - "url": "http://www.drinksmixer.com/drink11841.html" + "url": "https://www.drinksmixer.com/drink11841.html" }, { "directions": "Combine whiskies in a 2-oz shot glass, and serve.", @@ -112278,7 +112278,7 @@ "Maker's Mark\u00ae bourbon whiskey" ], "title": "Kentucky Pitbull recipe", - "url": "http://www.drinksmixer.com/drink11842.html" + "url": "https://www.drinksmixer.com/drink11842.html" }, { "directions": "Mix the liquors into an old-fashioned glass with ice. Top off with cola, and serve.", @@ -112289,7 +112289,7 @@ "Coca-Cola\u00ae" ], "title": "Kentucky Tavern Barstool recipe", - "url": "http://www.drinksmixer.com/drink11843.html" + "url": "https://www.drinksmixer.com/drink11843.html" }, { "directions": "Pour ingredients over ice in a highball glass, and stir gently. Garnish with a twist of orange and serve.", @@ -112302,7 +112302,7 @@ "Dr. Pepper\u00ae soda" ], "title": "Kentucky Wilddog recipe", - "url": "http://www.drinksmixer.com/drink11844.html" + "url": "https://www.drinksmixer.com/drink11844.html" }, { "directions": "Pour all ingredients into a cocktail shaker half-filled with ice. Shake and strain into a chilled cocktail glass. Garnish with a lime spiral. Serve.", @@ -112314,7 +112314,7 @@ "cranberry juice" ], "title": "Key Lime Cosmo recipe", - "url": "http://www.drinksmixer.com/drink11845.html" + "url": "https://www.drinksmixer.com/drink11845.html" }, { "directions": "Pour all ingredients into a martini shaker over ice. Shake well until chilled and pour into a cockail glass. Garnish with a maraschino cherry, and serve.", @@ -112324,7 +112324,7 @@ "lime juice" ], "title": "Key Lime Martini #4 recipe", - "url": "http://www.drinksmixer.com/drink11846.html" + "url": "https://www.drinksmixer.com/drink11846.html" }, { "directions": "Shake all ingredients in a cocktail shaker. Coat the rim of a cocktail glass with a lime and then dip it into graham cracker crumbs. Strain the cocktail into the glass and garnish with a lime wedge. ", @@ -112335,7 +112335,7 @@ "Dr. Mcgillicuddy's\u00ae Vanilla Schnapps" ], "title": "Key Lime Pie #3 recipe", - "url": "http://www.drinksmixer.com/drink11847.html" + "url": "https://www.drinksmixer.com/drink11847.html" }, { "directions": "Coat the rim of chilled cocktail glass with lime and dip rim in a mixture of 2 tablespoons crushed grahm crackers and 1 tablespoon powdered sugar(on a flat plate). Set glass aside. Mix Vodka, Ke Ke Beach Liqueur, Rose's and fresh lime juice, and half and half in a cocktail shaker filled with ice cubes. Shake vigorously and pour into the set aside chilled martini cocktail glass. Serve.", @@ -112347,7 +112347,7 @@ "half-and-half" ], "title": "Key Lime Pie Martini recipe", - "url": "http://www.drinksmixer.com/drink11848.html" + "url": "https://www.drinksmixer.com/drink11848.html" }, { "directions": "Add all ingredients to a cocktail tin. Shake. Strain into a collins glass 3/4 filled with ice cubes. Garnish with a slice of orange, and serve.", @@ -112360,7 +112360,7 @@ "orange juice" ], "title": "Key West Cooler recipe", - "url": "http://www.drinksmixer.com/drink11849.html" + "url": "https://www.drinksmixer.com/drink11849.html" }, { "directions": "Shake root beer schnapps and Jagermeister with ice in a cocktail shaker. Pour into shot glass. Add a splash of Coke, and serve.", @@ -112370,7 +112370,7 @@ "Coca-Cola\u00ae" ], "title": "Key West Rootbeer recipe", - "url": "http://www.drinksmixer.com/drink11850.html" + "url": "https://www.drinksmixer.com/drink11850.html" }, { "directions": "Combine all in a blender. Blend extremely well, pour into a large glass (ie. hurricane) and serve.", @@ -112383,7 +112383,7 @@ "crushed ice" ], "title": "Kahlua Cookie recipe", - "url": "http://www.drinksmixer.com/drink11851.html" + "url": "https://www.drinksmixer.com/drink11851.html" }, { "directions": "Pour liquor into a large cooler. Then cut up and add the fruit (canned and fresh). Let the fruit sit in the liquor for 30-45 min. Then add lots of ice and the Hawaiian punch. Add the orange juice and sprite to taste. Serve in punch cups.", @@ -112398,7 +112398,7 @@ "orange juice" ], "title": "Killer Hunch Punch recipe", - "url": "http://www.drinksmixer.com/drink11852.html" + "url": "https://www.drinksmixer.com/drink11852.html" }, { "directions": "Almost fill the glass with ice cubes, then add the alcoholic drinks. Fill about 2/3 of the height with them. Add the Coke, stir it. Add a slice of orange, and maybe a red cocktail cherry, and serve.", @@ -112411,7 +112411,7 @@ "Coca-Cola\u00ae" ], "title": "Killer Ice Tea with Orange recipe", - "url": "http://www.drinksmixer.com/drink11853.html" + "url": "https://www.drinksmixer.com/drink11853.html" }, { "directions": "Shake ingredients with ice in a cocktail shaker. Strain into a cocktail glass frosted with sugar, and serve.", @@ -112421,7 +112421,7 @@ "lemon juice" ], "title": "Killer Kyle recipe", - "url": "http://www.drinksmixer.com/drink11854.html" + "url": "https://www.drinksmixer.com/drink11854.html" }, { "directions": "Rim a margarita glass with salt (optional). Fill with ice. Add ingredients into cocktail shaker and mix. Pour over ice and garnish with maraschino cherries.", @@ -112432,7 +112432,7 @@ "coconut milk" ], "title": "Killer Rita recipe", - "url": "http://www.drinksmixer.com/drink11855.html" + "url": "https://www.drinksmixer.com/drink11855.html" }, { "directions": "Pour a 3/4 pint of Bud Light. Pour the 151 into a shot glass, with the amaretto layered on top. Light shot on fire, sprinkle cinnamon over shot, drop still burning shot into beer and serve.", @@ -112442,7 +112442,7 @@ "amaretto almond liqueur" ], "title": "Firecracker #2 recipe", - "url": "http://www.drinksmixer.com/drink11856.html" + "url": "https://www.drinksmixer.com/drink11856.html" }, { "directions": "Combine all ingredients in a cocktail shaker half-filled with ice cubes. Shake well and strain into a margarita glass filled with ice cubes. Garnish with one slice of banana and one slice of kiwi, and serve.", @@ -112455,7 +112455,7 @@ "Hawaiian Punch\u00ae" ], "title": "King Kamehameha recipe", - "url": "http://www.drinksmixer.com/drink11857.html" + "url": "https://www.drinksmixer.com/drink11857.html" }, { "directions": "Mix together and drink. A sweet, but tasty drink.", @@ -112464,7 +112464,7 @@ "Remy\u00ae Red cognac" ], "title": "King of Krunk's Juice recipe", - "url": "http://www.drinksmixer.com/drink11858.html" + "url": "https://www.drinksmixer.com/drink11858.html" }, { "directions": "Pour the Goldschlager into a whiskey sour glass, followed by the Crown Royal. Serve.", @@ -112473,7 +112473,7 @@ "Goldschlager\u00ae cinnamon schnapps" ], "title": "King's Gold recipe", - "url": "http://www.drinksmixer.com/drink11859.html" + "url": "https://www.drinksmixer.com/drink11859.html" }, { "directions": "Pour ingredients into a cocktail shaker 1/4 to 1/2 filled with ice cubes. Shake and strain into a chilled cocktail glass, and serve.", @@ -112483,7 +112483,7 @@ "Smirnoff\u00ae Black Cherry Twist vodka" ], "title": "Kinky Slinky recipe", - "url": "http://www.drinksmixer.com/drink11860.html" + "url": "https://www.drinksmixer.com/drink11860.html" }, { "directions": "Fill a 475ml glass with ice - about 1/4 of the way. Pour beer into glass. Pour white rum & dark rum into glass. Top-up with apple juice, and serve.\r", @@ -112494,7 +112494,7 @@ "apple juice" ], "title": "Knock-Out recipe", - "url": "http://www.drinksmixer.com/drink11862.html" + "url": "https://www.drinksmixer.com/drink11862.html" }, { "directions": "Pour the vodka into a collins glass filled with ice cubes. Add equal amounts of orange juice and Red Bull, stir and serve.", @@ -112504,7 +112504,7 @@ "Red Bull\u00ae energy drink" ], "title": "Korean Karbomb recipe", - "url": "http://www.drinksmixer.com/drink11863.html" + "url": "https://www.drinksmixer.com/drink11863.html" }, { "directions": "Chill all four mixers in freezer until ice cold. Then mix them all in a small glass and stir, with/without ice. Serve.", @@ -112515,7 +112515,7 @@ "Midori\u00ae melon liqueur" ], "title": "Kryptonite #3 recipe", - "url": "http://www.drinksmixer.com/drink11864.html" + "url": "https://www.drinksmixer.com/drink11864.html" }, { "directions": "Take a double-shot of Jagermeister, followed immediately after by shot gunning the Red Bull (you'd do this the same way you shotgun a beer).", @@ -112524,7 +112524,7 @@ "Red Bull\u00ae energy drink" ], "title": "Kurt Cobain recipe", - "url": "http://www.drinksmixer.com/drink11865.html" + "url": "https://www.drinksmixer.com/drink11865.html" }, { "directions": "Mix vodka, schnapps, and cranberry juice in shaker and strain into cocktail glass. Fill with club soda and sprinkle shaved ice over top. Serve.", @@ -112535,7 +112535,7 @@ "club soda" ], "title": "Kwantini recipe", - "url": "http://www.drinksmixer.com/drink11866.html" + "url": "https://www.drinksmixer.com/drink11866.html" }, { "directions": "Fill the glass two-thirds with ice. Pour orange juice and Sprite over ice, then peach vodka. Add 2-3 drops of purple food coloring. Stir, and serve.", @@ -112546,7 +112546,7 @@ "food coloring" ], "title": "KY Special recipe", - "url": "http://www.drinksmixer.com/drink11867.html" + "url": "https://www.drinksmixer.com/drink11867.html" }, { "directions": "Add the Jagermeister, amaretto, triple sec, pineapple rum, and the Di Saronno (0.15 oz is an estimate, just use a small amount, mainly for color) to a collins glass. Swirl the ingredients together until mixed. Fill the remaining volume of the glass with pineapple juice and full pulp orange juice poured in the center of the glass. \r", @@ -112560,7 +112560,7 @@ "orange juice" ], "title": "L.A. Sunset recipe", - "url": "http://www.drinksmixer.com/drink11868.html" + "url": "https://www.drinksmixer.com/drink11868.html" }, { "directions": "Make the jello with 2 cups of boiling water. Mix in the 5 Hour energy drink and raspberry Stoli. Put in plastic shot cups and let sit overnight in the refrigerator. ", @@ -112571,7 +112571,7 @@ "water" ], "title": "L.S.E. recipe", - "url": "http://www.drinksmixer.com/drink11869.html" + "url": "https://www.drinksmixer.com/drink11869.html" }, { "directions": "Muddle lime and lemon wedges with orange wheel in bottom of collins or tall glass. Fill glass with ice, then pour Grey Goose L'Orange Vodka over ice and muddled fruit. Add the ginger ale followed by grenadine and stir. Serve.", @@ -112584,7 +112584,7 @@ "ginger ale" ], "title": "La Bang-Bang recipe", - "url": "http://www.drinksmixer.com/drink11870.html" + "url": "https://www.drinksmixer.com/drink11870.html" }, { "directions": "Cut the chili into small pieces. Put one or two teaspoons of chopped chili in the glass. Fill the glass with ice (not all the way up, gotta save some space for the vodka). Mix the ice and chili well. Pour vodka and pineapple juice in the glass, mix again. Serve with a straw.", @@ -112594,7 +112594,7 @@ "chili peppers" ], "title": "La Vida Loca recipe", - "url": "http://www.drinksmixer.com/drink11871.html" + "url": "https://www.drinksmixer.com/drink11871.html" }, { "directions": "Layer in a shot glass; milk on top, and serve.", @@ -112603,7 +112603,7 @@ "milk" ], "title": "Lactating Cowboy recipe", - "url": "http://www.drinksmixer.com/drink11872.html" + "url": "https://www.drinksmixer.com/drink11872.html" }, { "directions": "Cut up fruit (use 1 box of fresh strawberries), put into 2 one gallon containers. Add everclear, let soak for a few hours, add juice to containers. Use ladel to serve into beer cups or mugs, then add sprite/7up to fill the cup.", @@ -112615,7 +112615,7 @@ "kiwi-strawberry juice" ], "title": "Ladie's Jungle Juice recipe", - "url": "http://www.drinksmixer.com/drink11873.html" + "url": "https://www.drinksmixer.com/drink11873.html" }, { "directions": "Fill a cocktail shaker half with ice cubes. Add brandy, cassis and half-and-half. Shake vigorously. Strain into chilled cocktail glass, serve straight-up. Garnish with chocolate powder (try to create dots, like on a ladybird beetle for effect).", @@ -112626,7 +112626,7 @@ "chocolate powder" ], "title": "Ladybird recipe", - "url": "http://www.drinksmixer.com/drink11874.html" + "url": "https://www.drinksmixer.com/drink11874.html" }, { "directions": "Mix first four ingrediants, shake well with ice (tequila, sweet sour, triple sec, fresh squeezed lime juice). Pour into a salted glass with ice and pour Grand Marnier over drink. Serve.", @@ -112638,7 +112638,7 @@ "Grand Marnier\u00ae orange liqueur" ], "title": "Lake Quinault Summer Margarita recipe", - "url": "http://www.drinksmixer.com/drink11875.html" + "url": "https://www.drinksmixer.com/drink11875.html" }, { "directions": "Pour all ingredients into a cocktail shaker half-filled with ice cubes. shake and strain into a cocktail glass over some crushed or shaved ice, and serve.", @@ -112650,7 +112650,7 @@ "lime juice" ], "title": "Land Shark recipe", - "url": "http://www.drinksmixer.com/drink11876.html" + "url": "https://www.drinksmixer.com/drink11876.html" }, { "directions": "Pour the Stoli Persik peach vodka and Ketel One into a collins glass half-filled with crushed ice. Add Coca-cola, orange juice and cranberry juice. Add a splash of lime, garnish with 2 lime slices and serve.", @@ -112663,7 +112663,7 @@ "Coca-Cola\u00ae" ], "title": "Larry's Potion recipe", - "url": "http://www.drinksmixer.com/drink11877.html" + "url": "https://www.drinksmixer.com/drink11877.html" }, { "directions": "Pour the Stoli and Chambord into a highball glass filled with ice cubes. Almost fill with club soda, top with a splash of 7-Up and serve.", @@ -112674,7 +112674,7 @@ "7-Up\u00ae soda" ], "title": "Lauren's Razzle Dazzle recipe", - "url": "http://www.drinksmixer.com/drink11878.html" + "url": "https://www.drinksmixer.com/drink11878.html" }, { "directions": "Combine all ingredients in a blender. Blend well and pour into a margarita glass. Garnish with shaved dark chocolate and whipped cream. Serve.", @@ -112687,7 +112687,7 @@ "ice" ], "title": "Lavender Lady recipe", - "url": "http://www.drinksmixer.com/drink11879.html" + "url": "https://www.drinksmixer.com/drink11879.html" }, { "directions": "Pour the white sambuca into a highball glass. Fill up to the top with coca-cola, and serve.", @@ -112696,7 +112696,7 @@ "Coca-Cola\u00ae" ], "title": "Laze on the Deck recipe", - "url": "http://www.drinksmixer.com/drink11881.html" + "url": "https://www.drinksmixer.com/drink11881.html" }, { "directions": "Combine all ingredients into a mixer, shake and serve on the rocks in a cocktail glass (chilled glass another option/ both chilled glass and ice best option). Garnish with lemon and lime wedge. For 'sweet tooths' you can garnish the glass rim with sugar.", @@ -112709,7 +112709,7 @@ "soda water" ], "title": "Lazy Daze recipe", - "url": "http://www.drinksmixer.com/drink11882.html" + "url": "https://www.drinksmixer.com/drink11882.html" }, { "directions": "Place light rum and triple sec in hurricane glass. Add ice and pour over the orange, pineapple and lime juice. Add the grenadine. Then float the dark rum on top, and serve.", @@ -112723,7 +112723,7 @@ "grenadine syrup" ], "title": "Leamos' Mai Tai recipe", - "url": "http://www.drinksmixer.com/drink11883.html" + "url": "https://www.drinksmixer.com/drink11883.html" }, { "directions": "Pour the Jack into a shot glass, add peach schnapps and serve.", @@ -112732,7 +112732,7 @@ "peach schnapps" ], "title": "Leather and Lace #2 recipe", - "url": "http://www.drinksmixer.com/drink11884.html" + "url": "https://www.drinksmixer.com/drink11884.html" }, { "directions": "Fill a cocktail shaker with ice and add all but the Pepsi. Shake vigorously. Fill a highball glass with ice and pour strained mixture into glass. Add the Pepsi and stir. Serve.", @@ -112746,7 +112746,7 @@ "Pepsi\u00ae cola" ], "title": "Leg Spreader #3 recipe", - "url": "http://www.drinksmixer.com/drink11885.html" + "url": "https://www.drinksmixer.com/drink11885.html" }, { "directions": "Fill an old-fashioned glass with ice. Add all ingredients. Stir and serve.", @@ -112757,7 +112757,7 @@ "cranberry juice" ], "title": "Legends of the Fall recipe", - "url": "http://www.drinksmixer.com/drink11886.html" + "url": "https://www.drinksmixer.com/drink11886.html" }, { "directions": "Stir together in a 2-oz shot glass, and serve.", @@ -112767,7 +112767,7 @@ "Sprite\u00ae soda" ], "title": "Lemon Slap recipe", - "url": "http://www.drinksmixer.com/drink11887.html" + "url": "https://www.drinksmixer.com/drink11887.html" }, { "directions": "Layer in above order into a shot glass, and serve.", @@ -112778,7 +112778,7 @@ "Cointreau\u00ae orange liqueur" ], "title": "Lesbian Love recipe", - "url": "http://www.drinksmixer.com/drink11888.html" + "url": "https://www.drinksmixer.com/drink11888.html" }, { "directions": "Shake vodka and Bailey's over ice then pour into a shooter. Swallow and catch your breath. Best if poured into glass a tad bigger than shot glass.", @@ -112787,7 +112787,7 @@ "Bailey's\u00ae Irish cream" ], "title": "Letter Bomb recipe", - "url": "http://www.drinksmixer.com/drink11889.html" + "url": "https://www.drinksmixer.com/drink11889.html" }, { "directions": "Pour the Red Bull into an old fashioned glass. Pour Amaretto into a shot glass. Add shot glass to old fashioned glass, and drink immediately.", @@ -112796,7 +112796,7 @@ "Red Bull\u00ae energy drink" ], "title": "Letter Bomb #2 recipe", - "url": "http://www.drinksmixer.com/drink11890.html" + "url": "https://www.drinksmixer.com/drink11890.html" }, { "directions": "Chill both Jagermeister and Coke. Pour a shot of Jagermeister into chilled glass, then pour Coke over it. Drink through licorice straw, or eat licorice on the side.", @@ -112806,7 +112806,7 @@ "licorice" ], "title": "Licorice Vyos recipe", - "url": "http://www.drinksmixer.com/drink11891.html" + "url": "https://www.drinksmixer.com/drink11891.html" }, { "directions": "Pour the DeKuyper Sour Apple Pucker schnapps into a shot glass. Layer the 151 on top, ignite and serve.", @@ -112815,7 +112815,7 @@ "151 proof rum" ], "title": "Lil' Pimp-in recipe", - "url": "http://www.drinksmixer.com/drink11892.html" + "url": "https://www.drinksmixer.com/drink11892.html" }, { "directions": "Shake all ingredients together and strain into a sugar-rimmed cocktail glass. Garnish with a lemon wheel, and serve.", @@ -112827,7 +112827,7 @@ "lemon juice" ], "title": "Lily Martini recipe", - "url": "http://www.drinksmixer.com/drink11893.html" + "url": "https://www.drinksmixer.com/drink11893.html" }, { "directions": "Shake vodkas, triple sec, sweet and sour, lime and cranberry juice vigorously in a shaker with ice. Strain into a martini glass, garnish with a lime wedge, and serve.", @@ -112840,7 +112840,7 @@ "cranberry juice" ], "title": "Cosmopolitan Cocktail #6 recipe", - "url": "http://www.drinksmixer.com/drink11894.html" + "url": "https://www.drinksmixer.com/drink11894.html" }, { "directions": "Pour the vodka and liqueurs in the above order into a highball glass filled with ice cubes. Stir the ingrediens and fill up with soda water and sprite. Squeeze a lime wedge over (optional but make sure to use one as garnish), and serve.", @@ -112853,7 +112853,7 @@ "Sprite\u00ae soda" ], "title": "Deceased Rabbit recipe", - "url": "http://www.drinksmixer.com/drink11895.html" + "url": "https://www.drinksmixer.com/drink11895.html" }, { "directions": "Pour the grenadine syrup first, then layer the Fireball on top of it. Lastly the 151. Drink and enjoy. Tastes just like candy.", @@ -112863,7 +112863,7 @@ "grenadine syrup" ], "title": "Atomic Fireball recipe", - "url": "http://www.drinksmixer.com/drink11897.html" + "url": "https://www.drinksmixer.com/drink11897.html" }, { "directions": "Both chilled, fill the mug 2/3 full with Strongbow. Add Guinness Stout after the cider has been poured to form a black layer on top. Serve.", @@ -112872,7 +112872,7 @@ "Guinness\u00ae stout" ], "title": "Black Apple recipe", - "url": "http://www.drinksmixer.com/drink11898.html" + "url": "https://www.drinksmixer.com/drink11898.html" }, { "directions": "Combine spirits in a stainless steel shaker. Shake and strain over ice in a cocktail glass. Top glass off with apple juice, and serve.", @@ -112884,7 +112884,7 @@ "apple juice" ], "title": "Black Magick recipe", - "url": "http://www.drinksmixer.com/drink11899.html" + "url": "https://www.drinksmixer.com/drink11899.html" }, { "directions": "Serve in equal parts in a shot glass.", @@ -112893,7 +112893,7 @@ "Red Bull\u00ae energy drink" ], "title": "Bull Moose recipe", - "url": "http://www.drinksmixer.com/drink11900.html" + "url": "https://www.drinksmixer.com/drink11900.html" }, { "directions": "Pour ingredients into a cocktail shaker and shake well. Strain into a cocktail glass. Garnish with a cherry at the bottom, and serve.", @@ -112903,7 +112903,7 @@ "7-Up\u00ae soda" ], "title": "Cherry Martini recipe", - "url": "http://www.drinksmixer.com/drink11901.html" + "url": "https://www.drinksmixer.com/drink11901.html" }, { "directions": "Take a shot glass and add the brown sugar and the flakes of dried prune. Fill the glass with 2/3 Midori melon liqueur and 1/3 tequila. Ignite it, let it burn for about 10 seconds and then blow out the flame. Bottoms up!", @@ -112914,7 +112914,7 @@ "brown sugar" ], "title": "Flaming Ho recipe", - "url": "http://www.drinksmixer.com/drink11902.html" + "url": "https://www.drinksmixer.com/drink11902.html" }, { "directions": "Pour ingredients into a cocktail shaker and shake. Strain into a martini cocktail glass. Garnish with a cherry at the bottom, and serve.", @@ -112923,7 +112923,7 @@ "7-Up\u00ae soda" ], "title": "Grape Martini recipe", - "url": "http://www.drinksmixer.com/drink11903.html" + "url": "https://www.drinksmixer.com/drink11903.html" }, { "directions": "Mix both alcohols together in a tallg lass. Slowly pour the peach nectar in. Stir and add the lime juice. Serve.", @@ -112934,7 +112934,7 @@ "lime juice" ], "title": "Hard Goya recipe", - "url": "http://www.drinksmixer.com/drink11904.html" + "url": "https://www.drinksmixer.com/drink11904.html" }, { "directions": "Stir together in a highball glass 2/3 filled with ice cubes, and serve.", @@ -112943,7 +112943,7 @@ "San Pellegrino\u00ae Limonata soda" ], "title": "Absolut Citron Limonata recipe", - "url": "http://www.drinksmixer.com/drink11905.html" + "url": "https://www.drinksmixer.com/drink11905.html" }, { "directions": "Combine in a cocktail shaker with ice, shake and strain into a chilled shot glass. Serve.", @@ -112953,7 +112953,7 @@ "Blue Curacao liqueur" ], "title": "Blue Ninja #2 recipe", - "url": "http://www.drinksmixer.com/drink11906.html" + "url": "https://www.drinksmixer.com/drink11906.html" }, { "directions": "Chill all ingredients. Pour all ingredients into big enough cup, stir, and enjoy.", @@ -112963,7 +112963,7 @@ "Everfresh\u00ae tropical fruit punch" ], "title": "Hillbilly Kool Aid recipe", - "url": "http://www.drinksmixer.com/drink11907.html" + "url": "https://www.drinksmixer.com/drink11907.html" }, { "directions": "Mix the first four ingredients together and store in a freezable container. Place in freezer for 24 hours until frozen to slush consistency.\r", @@ -112976,7 +112976,7 @@ "nutmeg" ], "title": "Jack Honey Slushee recipe", - "url": "http://www.drinksmixer.com/drink11908.html" + "url": "https://www.drinksmixer.com/drink11908.html" }, { "directions": "Serve in a 2-oz shot glass.", @@ -112985,7 +112985,7 @@ "Malibu\u00ae coconut rum" ], "title": "Jager and Malibu recipe", - "url": "http://www.drinksmixer.com/drink11909.html" + "url": "https://www.drinksmixer.com/drink11909.html" }, { "directions": "Combine both ingredients in a shot glass. Chase with a slice of lime.", @@ -112994,7 +112994,7 @@ "DeKuyper\u00ae Peachtree schnapps" ], "title": "Justine #2 recipe", - "url": "http://www.drinksmixer.com/drink11910.html" + "url": "https://www.drinksmixer.com/drink11910.html" }, { "directions": "Pour the Bacardi Limon rum and Mountain Dew over ice in a collins glass, and serve.", @@ -113003,7 +113003,7 @@ "Mountain Dew\u00ae citrus soda" ], "title": "LimonDew recipe", - "url": "http://www.drinksmixer.com/drink11911.html" + "url": "https://www.drinksmixer.com/drink11911.html" }, { "directions": "Mix both shots into a 2-oz shot glass, and serve.", @@ -113012,7 +113012,7 @@ "Aftershock\u00ae Cool Citrus mint schnapps" ], "title": "Lion's Blood recipe", - "url": "http://www.drinksmixer.com/drink11912.html" + "url": "https://www.drinksmixer.com/drink11912.html" }, { "directions": "Pour the amaretto Di Saronno into a collins (highball) glass filled with ice cubes. Add the Newcastle Brown Ale. Stir and serve.", @@ -113021,7 +113021,7 @@ "Newcastle Brown Ale\u00ae lager" ], "title": "Liquid Bakewell Tart recipe", - "url": "http://www.drinksmixer.com/drink11913.html" + "url": "https://www.drinksmixer.com/drink11913.html" }, { "directions": "Pour the Red Bull into an old fashioned glass, splash the grenadine to reddan the Bull. Pour a shot of Jagermeister and drop it into the glass. Consume that beverage kamikaze style.", @@ -113031,7 +113031,7 @@ "grenadine syrup" ], "title": "Kamikaze Bomber recipe", - "url": "http://www.drinksmixer.com/drink11914.html" + "url": "https://www.drinksmixer.com/drink11914.html" }, { "directions": "Place barenjager in bottom, and baileys on top, in a shot glass. Do not mix.", @@ -113040,7 +113040,7 @@ "Bailey's\u00ae Irish cream" ], "title": "Liquid Candy recipe", - "url": "http://www.drinksmixer.com/drink11915.html" + "url": "https://www.drinksmixer.com/drink11915.html" }, { "directions": "Pour both liquids into an old-fashioned glass over ice. Stir and serve.", @@ -113049,7 +113049,7 @@ "lemon-lime soda" ], "title": "Liquid Candycane recipe", - "url": "http://www.drinksmixer.com/drink11916.html" + "url": "https://www.drinksmixer.com/drink11916.html" }, { "directions": "Pour ingredients into a cocktail shaker. Shake and strain into a cocktail glass, and serve.", @@ -113059,7 +113059,7 @@ "coffee liqueur" ], "title": "Liquid Coffee recipe", - "url": "http://www.drinksmixer.com/drink11917.html" + "url": "https://www.drinksmixer.com/drink11917.html" }, { "directions": "Stir in a shot glass, and serve.", @@ -113068,7 +113068,7 @@ "Bacardi\u00ae 151 rum" ], "title": "Liquid Crack #2 recipe", - "url": "http://www.drinksmixer.com/drink11918.html" + "url": "https://www.drinksmixer.com/drink11918.html" }, { "directions": "Add ingredients to a cocktail shaker. Shake and strain into a chilled martini cocktail glass. Serve.", @@ -113079,7 +113079,7 @@ "orange juice" ], "title": "Liquid Electroshock recipe", - "url": "http://www.drinksmixer.com/drink11919.html" + "url": "https://www.drinksmixer.com/drink11919.html" }, { "directions": "Pour the rum, goldschlager and milk into a highball glass. Stir ingredients. Pour tobasco sauce in after toasting and before drinking. Do not stir the tobasco sauce. Serve with whipped cream or marshmallows. ", @@ -113090,7 +113090,7 @@ "Tabasco\u00ae sauce" ], "title": "Liquid Herpes recipe", - "url": "http://www.drinksmixer.com/drink11920.html" + "url": "https://www.drinksmixer.com/drink11920.html" }, { "directions": "Stir ingredients together in a highball glass half-filled with ice cubes, and serve.", @@ -113099,7 +113099,7 @@ "milk" ], "title": "Liquid Leg Spreader recipe", - "url": "http://www.drinksmixer.com/drink11921.html" + "url": "https://www.drinksmixer.com/drink11921.html" }, { "directions": "Add all ingredients to a cocktail shaker half-filled with ice cubes. Shake and strain into a shot glass. Serve.", @@ -113112,7 +113112,7 @@ "sweet and sour mix" ], "title": "Liquid Marijuana Shot recipe", - "url": "http://www.drinksmixer.com/drink11922.html" + "url": "https://www.drinksmixer.com/drink11922.html" }, { "directions": "Vigorously shake ingredients with ice in a cocktail shaker. Pour over ice in a highball glass, and serve.", @@ -113121,7 +113121,7 @@ "lime juice" ], "title": "Liquid Panty Remover #3 recipe", - "url": "http://www.drinksmixer.com/drink11923.html" + "url": "https://www.drinksmixer.com/drink11923.html" }, { "directions": "Place 5 ice cubes in old-fashioned glass. Pour the Smirnoff triple distilled vodka into glass. Add Green Berry Rush Hawaiian punch and Fruit Juicy red Hawaiian punch. Drink with red straw and enjoy. ", @@ -113131,7 +113131,7 @@ "Hawaiian Punch\u00ae Fruit Juicy Red" ], "title": "LiT recipe", - "url": "http://www.drinksmixer.com/drink11924.html" + "url": "https://www.drinksmixer.com/drink11924.html" }, { "directions": "Mix together in a mixing glass with ice. Strain into a shot glass, and serve.", @@ -113141,7 +113141,7 @@ "Kool-Aid\u00ae Berry Blue mix" ], "title": "Hypnotize Me recipe", - "url": "http://www.drinksmixer.com/drink11925.html" + "url": "https://www.drinksmixer.com/drink11925.html" }, { "directions": "Add in order to a shot glass, and serve.", @@ -113153,7 +113153,7 @@ "white creme de cacao" ], "title": "Lolly Gobble Bliss Bomb recipe", - "url": "http://www.drinksmixer.com/drink11927.html" + "url": "https://www.drinksmixer.com/drink11927.html" }, { "directions": "Pour the schnapps, Bailey's and milk into a cocktail shaker over the ice. Shake, then strain into a long frosted glass, and serve.", @@ -113164,7 +113164,7 @@ "ice cubes" ], "title": "Long Tall Cowboy recipe", - "url": "http://www.drinksmixer.com/drink11928.html" + "url": "https://www.drinksmixer.com/drink11928.html" }, { "directions": "Stir together in a shot glass, and serve.", @@ -113173,7 +113173,7 @@ "Goldschlager\u00ae cinnamon schnapps" ], "title": "Golden Buckle recipe", - "url": "http://www.drinksmixer.com/drink11930.html" + "url": "https://www.drinksmixer.com/drink11930.html" }, { "directions": "Combine preferred vodka with Rose's blue raspberry mixer over ice in a highball glass. Fill glass with cold Sprite, stir and serve.", @@ -113183,7 +113183,7 @@ "Sprite\u00ae soda" ], "title": "Jordan's Blue Razz Buzz recipe", - "url": "http://www.drinksmixer.com/drink11931.html" + "url": "https://www.drinksmixer.com/drink11931.html" }, { "directions": "Combine all ingredients in a cocktail shaker half-filled with ice. Give a couple shakes and pour into a collins glass filled with ice cubes. Add a splash of Coke to make it a little dark on the top half (may use more coke for a less stronger drink). Garnish if desired, and serve.", @@ -113197,7 +113197,7 @@ "Coca-Cola\u00ae" ], "title": "Peach Long Island Iced Tea recipe", - "url": "http://www.drinksmixer.com/drink11932.html" + "url": "https://www.drinksmixer.com/drink11932.html" }, { "directions": "Add all ingredients (except Coke) to a cocktail shaker half-filled with ice cubes. Shake well and strain into a collins glass filled with ice cubes. Top with Coke, stir lightly and serve.", @@ -113212,7 +113212,7 @@ "Rose's\u00ae sweet and sour mix" ], "title": "Long River Tea recipe", - "url": "http://www.drinksmixer.com/drink11933.html" + "url": "https://www.drinksmixer.com/drink11933.html" }, { "directions": "Add all ingredients to a cocktail shaker half-filled with ice cubes. Shake and strain into a highball glass filled with ice, and serve.", @@ -113225,7 +113225,7 @@ "DeKuyper\u00ae Watermelon Pucker schnapps" ], "title": "Long Island Pucker recipe", - "url": "http://www.drinksmixer.com/drink11934.html" + "url": "https://www.drinksmixer.com/drink11934.html" }, { "directions": "Pour all ingredients into a cocktail shaker half-filled with ice cubes. Shake well, pour into a whiskey sour glass and serve.", @@ -113237,7 +113237,7 @@ "Midori\u00ae melon liqueur" ], "title": "Loom Cooler recipe", - "url": "http://www.drinksmixer.com/drink11935.html" + "url": "https://www.drinksmixer.com/drink11935.html" }, { "directions": "Drop a cherry into a shot glass. Add the cranberry and cherry juice, then add the vodka. Place the lid from the cherry jar over the shot glass, and shake. Drink, making sure you eat the cherry last as it gives the sensation of Lost Words.", @@ -113248,7 +113248,7 @@ "cherry" ], "title": "Lost for Words recipe", - "url": "http://www.drinksmixer.com/drink11936.html" + "url": "https://www.drinksmixer.com/drink11936.html" }, { "directions": "Stir ingredients together in a highball glass filled with ice cubes, and serve.", @@ -113259,7 +113259,7 @@ "pink lemonade" ], "title": "Love Juice #2 recipe", - "url": "http://www.drinksmixer.com/drink11937.html" + "url": "https://www.drinksmixer.com/drink11937.html" }, { "directions": "Combine all ingredients in a cocktail shaker and shake well. Strain into a chilled cocktail glass. Garnish with a twist of orange, and serve.", @@ -113270,7 +113270,7 @@ "lime juice" ], "title": "Love Wrench recipe", - "url": "http://www.drinksmixer.com/drink11938.html" + "url": "https://www.drinksmixer.com/drink11938.html" }, { "directions": "Shake all ingredients together in a cocktail shaker half-filled with ice. Strain into a cocktail glass, and serve.", @@ -113280,7 +113280,7 @@ "Godiva\u00ae chocolate liqueur" ], "title": "Lovely Wife recipe", - "url": "http://www.drinksmixer.com/drink11939.html" + "url": "https://www.drinksmixer.com/drink11939.html" }, { "directions": "Pour Bailey's Irish cream into a cocktail glass. Add Hennessy. Stir and serve at room temperature.", @@ -113289,7 +113289,7 @@ "Bailey's\u00ae Irish cream" ], "title": "Luscious Butta recipe", - "url": "http://www.drinksmixer.com/drink11940.html" + "url": "https://www.drinksmixer.com/drink11940.html" }, { "directions": "Thoroughly chill a martini glass then apply small \"leopard spots\" randomly around the inside of the glass using chocolate shell syrup then returning the glass to the freezer to keep cold. (This can be done hours in advance for parties.)\r", @@ -113301,7 +113301,7 @@ "chocolate shell syrup" ], "title": "Lusty Leopard Martini recipe", - "url": "http://www.drinksmixer.com/drink11941.html" + "url": "https://www.drinksmixer.com/drink11941.html" }, { "directions": "Add all ingredients to a cocktail shaker. Muddle until all ingredients are blended and the ice is crushed. Serve in an old-fashioned glass. no garnish.", @@ -113313,7 +113313,7 @@ "lychee" ], "title": "Lychee Caipiroska recipe", - "url": "http://www.drinksmixer.com/drink11942.html" + "url": "https://www.drinksmixer.com/drink11942.html" }, { "directions": "Mix the JD and 7-Up in a glass with ice. Once stirring is still, pour the package of Pop-Rocks over the ice. The Pops Rock will start to melt and fly out of the glass one by one as it is consumed.", @@ -113323,7 +113323,7 @@ "Pop Rocks\u00ae candy" ], "title": "Lynchburg Mine Explosion recipe", - "url": "http://www.drinksmixer.com/drink11943.html" + "url": "https://www.drinksmixer.com/drink11943.html" }, { "directions": "Pour the Absolut Vanilla into a triple-shot glass. Add the 151 and then top with Everclear. Ignite and serve.", @@ -113333,7 +113333,7 @@ "Absolut\u00ae vanilla vodka" ], "title": "Jesus Jackhammer recipe", - "url": "http://www.drinksmixer.com/drink11945.html" + "url": "https://www.drinksmixer.com/drink11945.html" }, { "directions": "Mix all the liquid ingredients into a cocktail shaker and fill to the brim with ice. Shake until cold and then strain into a highball glass. Take the ice from the shaker and put into the glass. Take the blood orange slice and roll it around the edge of the glass and drop it in.", @@ -113345,7 +113345,7 @@ "blood orange" ], "title": "Blood Orange Blast recipe", - "url": "http://www.drinksmixer.com/drink11946.html" + "url": "https://www.drinksmixer.com/drink11946.html" }, { "directions": "Stir together in a shot glass, and serve.", @@ -113354,7 +113354,7 @@ "Mountain Dew\u00ae citrus soda" ], "title": "M&M's Shot recipe", - "url": "http://www.drinksmixer.com/drink11947.html" + "url": "https://www.drinksmixer.com/drink11947.html" }, { "directions": "Drop a shot glass filled with equal parts of Jack Daniel's and Jim Beam into a pint of American beer, and serve.", @@ -113364,7 +113364,7 @@ "beer" ], "title": "M.O.A.B. recipe", - "url": "http://www.drinksmixer.com/drink11948.html" + "url": "https://www.drinksmixer.com/drink11948.html" }, { "directions": "Add the Malibu mango rum to an old-fashioned glass filled with ice cubes. Add the pineapple juice and then the soda/punch. Stir well, and serve.", @@ -113375,7 +113375,7 @@ "Minute Maid\u00ae fruit punch" ], "title": "M3 recipe", - "url": "http://www.drinksmixer.com/drink11949.html" + "url": "https://www.drinksmixer.com/drink11949.html" }, { "directions": "Add all ingredients to a mixing glass over ice. Stir but do not shake. Strain into a martini cocktail glass, and serve.", @@ -113386,7 +113386,7 @@ "cranberry juice" ], "title": "Macintosh recipe", - "url": "http://www.drinksmixer.com/drink11950.html" + "url": "https://www.drinksmixer.com/drink11950.html" }, { "directions": "Fill a shot glass approximately three-quarters full with green chartreuse, and the remainder with black sambuca. Add a couple of drops of Tabasco branded pepper sauce, and shoot.", @@ -113396,7 +113396,7 @@ "Tabasco\u00ae sauce" ], "title": "Mack Attack recipe", - "url": "http://www.drinksmixer.com/drink11951.html" + "url": "https://www.drinksmixer.com/drink11951.html" }, { "directions": "Throw a few rocks into a collins glass. Squeeze in a segment of lime (about 1/2 oz). Pour the Bombay Sapphire gin into the glass and add the cranberry juice. Top up with orange juice and throw in the other segment of lime. Pain free and delicious.", @@ -113408,7 +113408,7 @@ "lime" ], "title": "Mackenzie recipe", - "url": "http://www.drinksmixer.com/drink11952.html" + "url": "https://www.drinksmixer.com/drink11952.html" }, { "directions": "Blend butterscotch schnapps and Baileys together in a shot glass. Add Tabasco sauce and serve.", @@ -113418,7 +113418,7 @@ "Tabasco\u00ae sauce" ], "title": "Mad Pirate recipe", - "url": "http://www.drinksmixer.com/drink11953.html" + "url": "https://www.drinksmixer.com/drink11953.html" }, { "directions": "Chop up the two bananas and place in a blender with the creme de bananes, galliano and vanilla ice cream. Blend until frothy and pour into a highball glass. Garnish with a slice of banana, sit back and enjoy!", @@ -113429,7 +113429,7 @@ "vanilla ice cream" ], "title": "Maggie's Yellow Skoda recipe", - "url": "http://www.drinksmixer.com/drink11954.html" + "url": "https://www.drinksmixer.com/drink11954.html" }, { "directions": "Pour gin, vodka, liqueur, tonic and pina colada into a cocktail shaker half-filled with ice cubes. Crack an egg and drop into shaker. Shake well and strongly. Pour the shaker contents (with ice) into glass and fill up the glass with orange juice. Garnish with two cherrys and a slice of lemon with puting it on the top of the egg foam so that it makes a happy face. ", @@ -113443,7 +113443,7 @@ "egg" ], "title": "Happy Face recipe", - "url": "http://www.drinksmixer.com/drink11955.html" + "url": "https://www.drinksmixer.com/drink11955.html" }, { "directions": "Fill a 10-oz highball glass with ice. Add the DeKuyper Sour Apple Pucker schnapps, DeKuyper Watermelon Pucker schnapps and Jacquins peach schnapps. Fill the remainder of the glass with an even amount of Sprite and Ocean Spray cranberry juice. Serve.", @@ -113455,7 +113455,7 @@ "Ocean Spray\u00ae cranberry juice" ], "title": "Magic Pixie recipe", - "url": "http://www.drinksmixer.com/drink11956.html" + "url": "https://www.drinksmixer.com/drink11956.html" }, { "directions": "Separate eggs and beat yolks until creamy. Whip sugar into yolks. Beat whites until they stand in peaks, adding 1/2 cup additional sugar, if desired. Beat yolks and Maker's Mark together, add whites. Beat cream. Add cream and milk to mixture. Add nutmeg to taste and garnish each cup with nutmeg. Makes 2 1/2 gallons.", @@ -113468,7 +113468,7 @@ "nutmeg" ], "title": "Maker's Mark Bourbon Eggnog recipe", - "url": "http://www.drinksmixer.com/drink11957.html" + "url": "https://www.drinksmixer.com/drink11957.html" }, { "directions": "Pour equal parts of ginger ale and lemon soda into a beer mug filled with ice. Add a round of orange and top with a dash or two of bitters. Very good on a hot, sticky day.", @@ -113478,7 +113478,7 @@ "bitters" ], "title": "Malawi Shandy recipe", - "url": "http://www.drinksmixer.com/drink11958.html" + "url": "https://www.drinksmixer.com/drink11958.html" }, { "directions": "Stir ingredients together in a collins glass half-filled with ice, and serve.", @@ -113487,7 +113487,7 @@ "7-Up\u00ae soda" ], "title": "Mali P&S recipe", - "url": "http://www.drinksmixer.com/drink11960.html" + "url": "https://www.drinksmixer.com/drink11960.html" }, { "directions": "Fill a hurricane glass with ice. Add Malibu, then cranberry and top with Fresca. Serve with lime garnish.", @@ -113497,7 +113497,7 @@ "Fresca\u00ae grapefruit soda" ], "title": "Malibu Fizz recipe", - "url": "http://www.drinksmixer.com/drink11961.html" + "url": "https://www.drinksmixer.com/drink11961.html" }, { "directions": "Stir together in a highball glass filled with ice cubes, and serve.", @@ -113507,7 +113507,7 @@ "Sprite\u00ae soda" ], "title": "Malibu Delight recipe", - "url": "http://www.drinksmixer.com/drink11962.html" + "url": "https://www.drinksmixer.com/drink11962.html" }, { "directions": "Fill a highball glass with ice, and mix ingredients in order. Stir well and enjoy!", @@ -113518,7 +113518,7 @@ "cranberry juice" ], "title": "Malibu Hooter recipe", - "url": "http://www.drinksmixer.com/drink11963.html" + "url": "https://www.drinksmixer.com/drink11963.html" }, { "directions": "Combine the Malibu coconut rum and Absolut Citron vodka with the pineapple juice in a cocktail shaker half-filled with ice cubes. Shake and strain into shot glasses. Serve with whipped cream and a cherry on the very top of each shot.", @@ -113530,7 +113530,7 @@ "maraschino cherries" ], "title": "Malibu Thong Bikini recipe", - "url": "http://www.drinksmixer.com/drink11964.html" + "url": "https://www.drinksmixer.com/drink11964.html" }, { "directions": "Add the vodka and Malibu to a cocktail shaker with ice, shake vigorously. Pour into a chilled highball glass and top up with cranberry juice. Serve.", @@ -113540,7 +113540,7 @@ "cranberry juice" ], "title": "Malibu Woo Woo recipe", - "url": "http://www.drinksmixer.com/drink11965.html" + "url": "https://www.drinksmixer.com/drink11965.html" }, { "directions": "Add ingredients to a cocktail shaker half-filled with ice cubes. Shake well and strain into a cocktail glass. Serve.", @@ -113551,7 +113551,7 @@ "pineapple juice" ], "title": "Man Boobs recipe", - "url": "http://www.drinksmixer.com/drink11966.html" + "url": "https://www.drinksmixer.com/drink11966.html" }, { "directions": "Add the Red Bull to a pilsner glass. Drop a shot of Absolut Mandrin into the glass, and drink immediately.", @@ -113560,7 +113560,7 @@ "Red Bull\u00ae energy drink" ], "title": "Mandarin Bomb recipe", - "url": "http://www.drinksmixer.com/drink11967.html" + "url": "https://www.drinksmixer.com/drink11967.html" }, { "directions": "Fill a mixing glass with ice, add Malibu mango rum, sugar (or Splenda), 7-Up, water and lime wedges. Muddle ingredients and strain into a shot glass, or serve in sugar rimmed martini glass. (Add vodka for more kick if desired)", @@ -113572,7 +113572,7 @@ "water" ], "title": "Mang Tini recipe", - "url": "http://www.drinksmixer.com/drink11968.html" + "url": "https://www.drinksmixer.com/drink11968.html" }, { "directions": "Combine all ingredients in a blender and blend for a short time at a high speed. Pour into a hurricane glass, garnish with a cherry and straw. Serve.", @@ -113585,7 +113585,7 @@ "lemon juice" ], "title": "Mango Daiquiri #2 recipe", - "url": "http://www.drinksmixer.com/drink11969.html" + "url": "https://www.drinksmixer.com/drink11969.html" }, { "directions": "Follow the directions on the jello box with 1 exception. Mix the rum and mango nectar together and substitute this mixture for the cup of cold water indicated in the recipe. Serve in shot glasses.", @@ -113596,7 +113596,7 @@ "water" ], "title": "Mango Jello Shots recipe", - "url": "http://www.drinksmixer.com/drink11970.html" + "url": "https://www.drinksmixer.com/drink11970.html" }, { "directions": "Add all ingredients to a cocktail shaker half-filled with ice cubes. Shake and strain into a cocktail glass, and serve.", @@ -113609,7 +113609,7 @@ "mango puree" ], "title": "Mango Martini recipe", - "url": "http://www.drinksmixer.com/drink11971.html" + "url": "https://www.drinksmixer.com/drink11971.html" }, { "directions": "Add 3 ice cubes to a 12-oz highball glass, then add the gin, mango juice and orange juice. Top the drink off with a dash of lemon juice. Serve.", @@ -113621,7 +113621,7 @@ "ice cubes" ], "title": "Mango Mixer recipe", - "url": "http://www.drinksmixer.com/drink11972.html" + "url": "https://www.drinksmixer.com/drink11972.html" }, { "directions": "Pour both ingredients into a highball glass 3/4 filled with ice cubes. Stir and serve.", @@ -113630,7 +113630,7 @@ "Monster\u00ae energy drink" ], "title": "Mango Tango recipe", - "url": "http://www.drinksmixer.com/drink11973.html" + "url": "https://www.drinksmixer.com/drink11973.html" }, { "directions": "Add ingredients to a cocktail shaker half-filled with ice cubes. Shake and strain into a collins glass filled with ice cubes. Garnish with fresh pineapple and cherry on a skewer. Serve.", @@ -113640,7 +113640,7 @@ "Blue Curacao liqueur" ], "title": "Mango Tango #2 recipe", - "url": "http://www.drinksmixer.com/drink11974.html" + "url": "https://www.drinksmixer.com/drink11974.html" }, { "directions": "Fill a collins with ice. Add and mix all ingredients. Garnish with a lemon, and serve.", @@ -113653,7 +113653,7 @@ "Coca-Cola\u00ae" ], "title": "Manhattan Iced Tea recipe", - "url": "http://www.drinksmixer.com/drink11975.html" + "url": "https://www.drinksmixer.com/drink11975.html" }, { "directions": "Pour the Kahlua into a cocktail glass with some ice. Layer the Stoli Vanil on top. Top with seltzer/soda water and serve.", @@ -113663,7 +113663,7 @@ "soda water" ], "title": "Mar's Mind Eraser recipe", - "url": "http://www.drinksmixer.com/drink11976.html" + "url": "https://www.drinksmixer.com/drink11976.html" }, { "directions": "Add the rum, pineapple juice and orange juice to a cocktail shaker half-filled with ice and shake well. Slowly strain into a cocktail glass and add the strawberry liqueur (it will sink to the bottom giving pink and orange hues reminiscent of a Marbella sunset!).", @@ -113674,7 +113674,7 @@ "orange juice" ], "title": "Marbella Sunset recipe", - "url": "http://www.drinksmixer.com/drink11977.html" + "url": "https://www.drinksmixer.com/drink11977.html" }, { "directions": "Muddle the sugar into the lime wedges in a highball glass. Fill the glass with crushed ice cubes. Pour the tequila and the grapefruit juice into the glass. Stir well, and serve.", @@ -113685,7 +113685,7 @@ "grapefruit juice" ], "title": "Marcos recipe", - "url": "http://www.drinksmixer.com/drink11978.html" + "url": "https://www.drinksmixer.com/drink11978.html" }, { "directions": "Squeeze citrus fruits into pitcher. Add sugar to boiling water until completely dissolved. Let cool and add this simple syrup to pitcher. To serve, combine tequila, green tea, and 2 oz of citrus mixture over ice in a margarita glass.", @@ -113700,7 +113700,7 @@ "green tea" ], "title": "Margariteata recipe", - "url": "http://www.drinksmixer.com/drink11979.html" + "url": "https://www.drinksmixer.com/drink11979.html" }, { "directions": "Add the ice to a blender. Add rum, Kahlua, Bailey's, and pina colada mix. Blend until smooth. Serve in a Margarita glass rimmed with sugar.", @@ -113712,7 +113712,7 @@ "ice" ], "title": "Maria on the Beach recipe", - "url": "http://www.drinksmixer.com/drink11980.html" + "url": "https://www.drinksmixer.com/drink11980.html" }, { "directions": "Pour ingredients into a cocktail shaker with some ice. Shake and strain into a 2-oz shot glass, and serve.", @@ -113722,7 +113722,7 @@ "milk" ], "title": "Marijuana Milkshake recipe", - "url": "http://www.drinksmixer.com/drink11981.html" + "url": "https://www.drinksmixer.com/drink11981.html" }, { "directions": "Combine raspberry Sour Puss and banana liqueur in a collins glass. Top with 7-Up(to taste), ice and orange or lemon slice. ", @@ -113732,7 +113732,7 @@ "7-Up\u00ae soda" ], "title": "Marsupial recipe", - "url": "http://www.drinksmixer.com/drink11982.html" + "url": "https://www.drinksmixer.com/drink11982.html" }, { "directions": "Pour the dark rum, apricot brandy and juices into a cocktail shaker half-filled with ice. Shake well and pour into a collins glass. Top up with ice and drizzle the creme de cassis and grenadine over the top. Serve.", @@ -113745,7 +113745,7 @@ "creme de cassis" ], "title": "Mary Poppins recipe", - "url": "http://www.drinksmixer.com/drink11983.html" + "url": "https://www.drinksmixer.com/drink11983.html" }, { "directions": "Pour the Jose Cuervo into a highball glass filled with ice cubes. Add the rum and top with lemon juice. Serve.", @@ -113755,7 +113755,7 @@ "lemon juice" ], "title": "Marzo Madness recipe", - "url": "http://www.drinksmixer.com/drink11984.html" + "url": "https://www.drinksmixer.com/drink11984.html" }, { "directions": "Add all ingredients to a cocktail shaker with a few ice cubes. Shake and strain into a shot glass or old-fashioned glass. Serve.", @@ -113768,7 +113768,7 @@ "sweet and sour mix" ], "title": "Mass Confusion recipe", - "url": "http://www.drinksmixer.com/drink11985.html" + "url": "https://www.drinksmixer.com/drink11985.html" }, { "directions": "Add all ingredients to a highball glass filled with ice cubes. Cover and shake once, and serve.", @@ -113781,7 +113781,7 @@ "lemon-lime soda" ], "title": "Mass Confusion #2 recipe", - "url": "http://www.drinksmixer.com/drink11986.html" + "url": "https://www.drinksmixer.com/drink11986.html" }, { "directions": "Add all ingredients (except orange skin) to a blender. Blend on high setting for 30 seconds. Add orange skin and blend for 10 seconds. Pour into a tall glass and serve.", @@ -113796,7 +113796,7 @@ "orange" ], "title": "Master Chief recipe", - "url": "http://www.drinksmixer.com/drink11987.html" + "url": "https://www.drinksmixer.com/drink11987.html" }, { "directions": "Combine all ingredients in a blender and blend well. Pour into a highball glass, and serve.", @@ -113809,7 +113809,7 @@ "lemon juice" ], "title": "Maui Fizz recipe", - "url": "http://www.drinksmixer.com/drink11988.html" + "url": "https://www.drinksmixer.com/drink11988.html" }, { "directions": "Pour ingredients into a mixing tin. Shake 8 to 10 times then strain into an old-fashioned glass, and serve.", @@ -113821,7 +113821,7 @@ "Sprite\u00ae soda" ], "title": "Mello Yellow recipe", - "url": "http://www.drinksmixer.com/drink11989.html" + "url": "https://www.drinksmixer.com/drink11989.html" }, { "directions": "In a shot glass mix Irish Cream and Irish Whiskey. Pour beer into a mug, drop in the shot, and serve.", @@ -113831,7 +113831,7 @@ "Irish whiskey" ], "title": "Bomb on Bus recipe", - "url": "http://www.drinksmixer.com/drink11990.html" + "url": "https://www.drinksmixer.com/drink11990.html" }, { "directions": "Mix ingredients together in a blender (except the Angostura), pour into a highball glass and stir with a cinnamon stick. Leave refrigerated for an hour or longer. Pour into another glass topped with ice and add a dash of Angostura bitters. Garnish if desired. \r", @@ -113847,7 +113847,7 @@ "cinnamon" ], "title": "Caribbean Fly recipe", - "url": "http://www.drinksmixer.com/drink11991.html" + "url": "https://www.drinksmixer.com/drink11991.html" }, { "directions": "Stir together in a cup, and serve.", @@ -113857,7 +113857,7 @@ "sweet and sour mix" ], "title": "Dirty Futo recipe", - "url": "http://www.drinksmixer.com/drink11992.html" + "url": "https://www.drinksmixer.com/drink11992.html" }, { "directions": "Add the tequila, melon liqueur, orange juice and triple sec to a blender with some crushed ice. Blend until desired consistency. Pour intoa rimmed margarita glass, and serve.", @@ -113868,7 +113868,7 @@ "triple sec" ], "title": "Melon Margarita #2 recipe", - "url": "http://www.drinksmixer.com/drink11993.html" + "url": "https://www.drinksmixer.com/drink11993.html" }, { "directions": "Pour the vodka into a highball glass filled with ice. Add the lemonade, and top with grenadine. Garnish with a lemon or a cherry, and serve.", @@ -113878,7 +113878,7 @@ "grenadine syrup" ], "title": "Melonade #2 recipe", - "url": "http://www.drinksmixer.com/drink11994.html" + "url": "https://www.drinksmixer.com/drink11994.html" }, { "directions": "Combine ingredients together in a cocktail shaker with a few ice cubes. Shake and strain into a shot glass, and serve.", @@ -113891,7 +113891,7 @@ "sweet and sour mix" ], "title": "Melonchawsey recipe", - "url": "http://www.drinksmixer.com/drink11995.html" + "url": "https://www.drinksmixer.com/drink11995.html" }, { "directions": "Pour the Malibu mango rum into an old-fashioned glass 3/4 filled with ice cubes. Add the Coca-cola, then top it off with Smirnoff Triple Black, and serve.", @@ -113901,7 +113901,7 @@ "Smirnoff\u00ae Ice Triple Black" ], "title": "Mendolsohn recipe", - "url": "http://www.drinksmixer.com/drink11996.html" + "url": "https://www.drinksmixer.com/drink11996.html" }, { "directions": "Combine all ingredients in a punch bowl, mix and serve chilled.", @@ -113911,7 +113911,7 @@ "beer" ], "title": "Meredith's Skip and Go Naked recipe", - "url": "http://www.drinksmixer.com/drink11997.html" + "url": "https://www.drinksmixer.com/drink11997.html" }, { "directions": "Add ingredients to a cocktail shaker half-filled with ice cubes. Shake well and strain into a chilled martini cocktail glass. Garnish with a piece of ruby grapefruit, and serve.", @@ -113923,7 +113923,7 @@ "lemon juice" ], "title": "Metropolis #2 recipe", - "url": "http://www.drinksmixer.com/drink11998.html" + "url": "https://www.drinksmixer.com/drink11998.html" }, { "directions": "Shake the Skyy vodka, cranberry juice and orange juice in a cocktail shaker with a few ice cubes. Strain into a chilled cocktail glass. Garnish with the cranberries, and serve.", @@ -113934,7 +113934,7 @@ "cranberry" ], "title": "Metropolitan recipe", - "url": "http://www.drinksmixer.com/drink11999.html" + "url": "https://www.drinksmixer.com/drink11999.html" }, { "directions": "Add all ingredients to a punch bowl with ice. Serve into cups when chilled.", @@ -113944,7 +113944,7 @@ "Red Bull\u00ae energy drink" ], "title": "Mexicali Crunk Juice recipe", - "url": "http://www.drinksmixer.com/drink12000.html" + "url": "https://www.drinksmixer.com/drink12000.html" }, { "directions": "Pour a shot of tequila and amaretto in seperate shot glasses. Place a very thin layer of Bacardi 151 on top of both shots, light. Shoot the tequila first, then carefully drop the amaretto into a mug of beer. Chug.", @@ -113955,7 +113955,7 @@ "beer" ], "title": "Mexican Bomb recipe", - "url": "http://www.drinksmixer.com/drink12001.html" + "url": "https://www.drinksmixer.com/drink12001.html" }, { "directions": "Mix all ingredients in a 1-gallon jug. Serve in shot glasses.", @@ -113968,7 +113968,7 @@ "beer" ], "title": "Mexican Doo-Doo recipe", - "url": "http://www.drinksmixer.com/drink12002.html" + "url": "https://www.drinksmixer.com/drink12002.html" }, { "directions": "Line up 3 shot glasses; pour the tequila into the first, the grenadine into the second, and the last 2 ingredients into the third. Shoot in that order.", @@ -113979,7 +113979,7 @@ "Louisiana hot sauce" ], "title": "Mexican Flag #2 recipe", - "url": "http://www.drinksmixer.com/drink12003.html" + "url": "https://www.drinksmixer.com/drink12003.html" }, { "directions": "Stir together in a shot glass, and serve.", @@ -113988,7 +113988,7 @@ "Kahlua\u00ae coffee liqueur" ], "title": "Mexican Motherfucker recipe", - "url": "http://www.drinksmixer.com/drink12004.html" + "url": "https://www.drinksmixer.com/drink12004.html" }, { "directions": "Stir with ice in a mixing glass. Strain into a shot glass, and serve.", @@ -113997,7 +113997,7 @@ "Aftershock\u00ae Hot & Cool cinnamon schnapps" ], "title": "Mexican Red Hot recipe", - "url": "http://www.drinksmixer.com/drink12005.html" + "url": "https://www.drinksmixer.com/drink12005.html" }, { "directions": "Stir together in a shot glass, and serve.", @@ -114006,7 +114006,7 @@ "peppermint schnapps" ], "title": "Mexican Snowshoe recipe", - "url": "http://www.drinksmixer.com/drink12006.html" + "url": "https://www.drinksmixer.com/drink12006.html" }, { "directions": "Pour the Corona into a beer mug (or other favorite Hispanic Import) and then drop the wild turkey shot into it, and drink.", @@ -114015,7 +114015,7 @@ "Corona\u00ae lager" ], "title": "Mexican Turkey recipe", - "url": "http://www.drinksmixer.com/drink12007.html" + "url": "https://www.drinksmixer.com/drink12007.html" }, { "directions": "Mix ingredients together, over ice, in a collins glass. Pour into a shaker. Shake a couple times and pour ingredients back into glass. Garnish with lemon.", @@ -114029,7 +114029,7 @@ "peach schnapps" ], "title": "Miami Beach recipe", - "url": "http://www.drinksmixer.com/drink12008.html" + "url": "https://www.drinksmixer.com/drink12008.html" }, { "directions": "Combine ingredients in a shaker and shake. Serve in salted (optional) margarita glasses.", @@ -114041,7 +114041,7 @@ "Cointreau\u00ae orange liqueur" ], "title": "Ultimate Margarita #2 recipe", - "url": "http://www.drinksmixer.com/drink12009.html" + "url": "https://www.drinksmixer.com/drink12009.html" }, { "directions": "Pour Tabasco and lime over ice in a beer mug. Slowly add Tecate beer. Once foam has subsided, quickly pour the Clamato. No need to stir if done right.", @@ -114052,7 +114052,7 @@ "clamato juice" ], "title": "Michelada Cubana recipe", - "url": "http://www.drinksmixer.com/drink12010.html" + "url": "https://www.drinksmixer.com/drink12010.html" }, { "directions": "Stir together in a mixing glass half-filled with ice. Strain into a champagne glass, and serve.", @@ -114061,7 +114061,7 @@ "Champagne" ], "title": "Midori Champagne recipe", - "url": "http://www.drinksmixer.com/drink12011.html" + "url": "https://www.drinksmixer.com/drink12011.html" }, { "directions": "Fill a whiskey sour glass with cubed ice. Pour in Midori, then sour apple, and finish with cranberry juice producing a layered effect. Serve.", @@ -114071,7 +114071,7 @@ "cranberry juice" ], "title": "Midori Firecracker recipe", - "url": "http://www.drinksmixer.com/drink12012.html" + "url": "https://www.drinksmixer.com/drink12012.html" }, { "directions": "Shake Midori and vodka with ice. Strain into a chilled Martini glass. Garnish with a cherry, and serve.", @@ -114080,7 +114080,7 @@ "Stolichnaya\u00ae vodka" ], "title": "Midori Martini recipe", - "url": "http://www.drinksmixer.com/drink12013.html" + "url": "https://www.drinksmixer.com/drink12013.html" }, { "directions": "Add Midori and Malibu to a highball glass full of ice. Fill glass with pineapple juice. Stir and serve.", @@ -114090,7 +114090,7 @@ "pineapple juice" ], "title": "Midori Pearl Diver recipe", - "url": "http://www.drinksmixer.com/drink12014.html" + "url": "https://www.drinksmixer.com/drink12014.html" }, { "directions": "Fill an old-fashioned glass with ice. Add Midori, then Malibu, and top with pineapple juice to create a layered effect. Serve.", @@ -114100,7 +114100,7 @@ "pineapple juice" ], "title": "Midori Splice recipe", - "url": "http://www.drinksmixer.com/drink12015.html" + "url": "https://www.drinksmixer.com/drink12015.html" }, { "directions": "Pour all contents into a cocktail shaker with ice and shake well. Strain into a shot glass and serve.", @@ -114110,7 +114110,7 @@ "DeKuyper\u00ae Sour Apple Pucker schnapps" ], "title": "Mighty Martian recipe", - "url": "http://www.drinksmixer.com/drink12016.html" + "url": "https://www.drinksmixer.com/drink12016.html" }, { "directions": "Fill a 2-oz shot glass halfway with Hot Damn. Fill remaining half with Jager, leaving a little room to top off with Everclear. Igniting optional.", @@ -114120,7 +114120,7 @@ "Everclear\u00ae alcohol" ], "title": "Mighty Mouse recipe", - "url": "http://www.drinksmixer.com/drink12017.html" + "url": "https://www.drinksmixer.com/drink12017.html" }, { "directions": "Shake all the ingredients, except the cranberry juice, with ice and strain into a hurricane glass filled 3/4 with ice. Top with cranberry juice and garnish with a lime wedge.", @@ -114136,7 +114136,7 @@ "Sprite\u00ae soda" ], "title": "Mike's Long Beach recipe", - "url": "http://www.drinksmixer.com/drink12018.html" + "url": "https://www.drinksmixer.com/drink12018.html" }, { "directions": "Mix all 3 ingredients into cup until concoction is a brownish/red color and serve.", @@ -114146,7 +114146,7 @@ "grenadine syrup" ], "title": "Mike's Pimp Juice recipe", - "url": "http://www.drinksmixer.com/drink12019.html" + "url": "https://www.drinksmixer.com/drink12019.html" }, { "directions": "Pour the ingredients over ice, allow it to chill for a moment and then strain into a red wine glass. Garnish with an orange and serve.", @@ -114156,7 +114156,7 @@ "Amaretto Di Saronno\u00ae liqueur" ], "title": "Mikey's Breakfast Banger recipe", - "url": "http://www.drinksmixer.com/drink12020.html" + "url": "https://www.drinksmixer.com/drink12020.html" }, { "directions": "Pour the vodka into an empty mixing glass, and add cran-grape juice and lemon-lime soda. Stir, then pour into a collins glass with ice cubes, and serve.", @@ -114166,7 +114166,7 @@ "lemon-lime soda" ], "title": "Mikey's Grape Drink recipe", - "url": "http://www.drinksmixer.com/drink12021.html" + "url": "https://www.drinksmixer.com/drink12021.html" }, { "directions": "Add all ingredients to a highball glass filled with ice. Serve with some orange slices.", @@ -114177,7 +114177,7 @@ "orange juice" ], "title": "Milhaus recipe", - "url": "http://www.drinksmixer.com/drink12022.html" + "url": "https://www.drinksmixer.com/drink12022.html" }, { "directions": "Fill a glass 3/4 full of ice. Pour cherries and cherry juice over ice. Add lime vodka and sprite. Shake once briskly to mix and get a fizz on top of the drink. Serve.", @@ -114188,7 +114188,7 @@ "cherry juice" ], "title": "Miller's Killer Cocktail recipe", - "url": "http://www.drinksmixer.com/drink12023.html" + "url": "https://www.drinksmixer.com/drink12023.html" }, { "directions": "Pour the mountain dew and gin into an ice-filled highball glass. Stir, add the grenadine (without stirring), and serve.", @@ -114198,7 +114198,7 @@ "grenadine syrup" ], "title": "Milnd's recipe", - "url": "http://www.drinksmixer.com/drink12024.html" + "url": "https://www.drinksmixer.com/drink12024.html" }, { "directions": "Pour the Crown Royal whisky into a shaker filled with a half a cup of ice. Add grenadine and shake thoroughly. Strain into a shot glass and add a splash off coke. Serve.", @@ -114208,7 +114208,7 @@ "Coca-Cola\u00ae" ], "title": "Cherry Coke #2 recipe", - "url": "http://www.drinksmixer.com/drink12025.html" + "url": "https://www.drinksmixer.com/drink12025.html" }, { "directions": "Pour in above order into a large glass or cup.", @@ -114217,7 +114217,7 @@ "Sobe\u00ae No Fear energy drink" ], "title": "Fearless Redneck recipe", - "url": "http://www.drinksmixer.com/drink12026.html" + "url": "https://www.drinksmixer.com/drink12026.html" }, { "directions": "Stir together in a highball glass, and serve.", @@ -114226,7 +114226,7 @@ "Mountain Dew\u00ae citrus soda" ], "title": "Green Nazi recipe", - "url": "http://www.drinksmixer.com/drink12027.html" + "url": "https://www.drinksmixer.com/drink12027.html" }, { "directions": "Fill a glass with about a 1/5 of ice, then pour Jim Beam Black Label until ice is covered. Fill the rest with Pepsi cola, and serve.", @@ -114235,7 +114235,7 @@ "Pepsi\u00ae cola" ], "title": "JB Black and Pepsi recipe", - "url": "http://www.drinksmixer.com/drink12029.html" + "url": "https://www.drinksmixer.com/drink12029.html" }, { "directions": "Pour the Kahlua into a small glass filled with ice. Layer the vodka on top and finish with a splash of club soda. Do not stir. Insert a straw into the bottom of the drink and drink through the straw in one. ", @@ -114245,7 +114245,7 @@ "club soda" ], "title": "Mind Fuck recipe", - "url": "http://www.drinksmixer.com/drink12030.html" + "url": "https://www.drinksmixer.com/drink12030.html" }, { "directions": "Stir in a shot glass, and serve.", @@ -114255,7 +114255,7 @@ "Das Komet\u00ae vanilla liqueur" ], "title": "Mindtrip recipe", - "url": "http://www.drinksmixer.com/drink12032.html" + "url": "https://www.drinksmixer.com/drink12032.html" }, { "directions": "Stir together in a cocktail glass. Top with cinnamon, and serve.", @@ -114266,7 +114266,7 @@ "cinnamon" ], "title": "Ming Tran recipe", - "url": "http://www.drinksmixer.com/drink12033.html" + "url": "https://www.drinksmixer.com/drink12033.html" }, { "directions": "Place all ingredients into a cocktail shaker with ice. Shake till ice cold. Place a cherry in the bottom of a large martini glass, strain contents of shaker into the glass, and serve.", @@ -114278,7 +114278,7 @@ "apricot brandy liqueur" ], "title": "Mingtini recipe", - "url": "http://www.drinksmixer.com/drink12034.html" + "url": "https://www.drinksmixer.com/drink12034.html" }, { "directions": "Pour the Bailey's Irish cream, creme de menthe and hot chocolate into a mug. Top with whipped cream, and shaved chocolate pieces (optional), and serve.", @@ -114290,7 +114290,7 @@ "chocolate" ], "title": "Mint Chocolate Dream recipe", - "url": "http://www.drinksmixer.com/drink12035.html" + "url": "https://www.drinksmixer.com/drink12035.html" }, { "directions": "Pour each ingredient into a shot glass in above order. Allow to settle a bit; the cream liqueur will rise slightly in the glass. Shoot when ready.", @@ -114300,7 +114300,7 @@ "Bacardi\u00ae 151 rum" ], "title": "Mint-Chip Backdraft recipe", - "url": "http://www.drinksmixer.com/drink12036.html" + "url": "https://www.drinksmixer.com/drink12036.html" }, { "directions": "Add the white rum, banana liqueur, apple schnapps and orange juice to a cocktail shaker half-filled with ice cubes. Shake vigorously with ice. Pour into a collins glass, top up with ice and drizzle the creme de menthe over the top. Serve.", @@ -114312,7 +114312,7 @@ "creme de menthe" ], "title": "Minty Crotch recipe", - "url": "http://www.drinksmixer.com/drink12037.html" + "url": "https://www.drinksmixer.com/drink12037.html" }, { "directions": "Put the vanilla and chocolate ice cream into a large martini cocktail glass. Add the half and half and vodka, give it just one stir. Drizzle on the Kahlua, top with a splash of bourbon and the cherry. Serve.", @@ -114326,7 +114326,7 @@ "maraschino cherry" ], "title": "Miscegenation recipe", - "url": "http://www.drinksmixer.com/drink12038.html" + "url": "https://www.drinksmixer.com/drink12038.html" }, { "directions": "In a shaker half-filled with ice cubes, combine gin, lemon juice, pineapple juice and sugar. Shake well. Strain into a collins glass almost filled with ice cubes. Stir and garnish with the cherry and the orange slice.", @@ -114338,7 +114338,7 @@ "maraschino cherry" ], "title": "Miss Kitty recipe", - "url": "http://www.drinksmixer.com/drink12039.html" + "url": "https://www.drinksmixer.com/drink12039.html" }, { "directions": "Almost fill a 12-oz highball glass with ice. Add the whisky, amaretto and cola last. Serve.", @@ -114348,7 +114348,7 @@ "cola" ], "title": "Mister Pibb recipe", - "url": "http://www.drinksmixer.com/drink12040.html" + "url": "https://www.drinksmixer.com/drink12040.html" }, { "directions": "Shake with ice, strain into a 2-oz shot glass, and serve.", @@ -114359,7 +114359,7 @@ "lime juice" ], "title": "MLK recipe", - "url": "http://www.drinksmixer.com/drink12041.html" + "url": "https://www.drinksmixer.com/drink12041.html" }, { "directions": "Pour the Malibu, orange juice and Bailey's into a highball glass. Stir, add a few ice cubes, and serve.", @@ -114369,7 +114369,7 @@ "Bailey's\u00ae Irish cream" ], "title": "MOB recipe", - "url": "http://www.drinksmixer.com/drink12042.html" + "url": "https://www.drinksmixer.com/drink12042.html" }, { "directions": "Shake all ingredents with ice in a martini shaker. Shake and strain into a chilled martini cocktail glass. Serve.", @@ -114379,7 +114379,7 @@ "dark creme de cacao" ], "title": "Mochatini recipe", - "url": "http://www.drinksmixer.com/drink12043.html" + "url": "https://www.drinksmixer.com/drink12043.html" }, { "directions": "Serve in a shot glass.", @@ -114389,7 +114389,7 @@ "Bacardi\u00ae 151 rum" ], "title": "Modest Mouse recipe", - "url": "http://www.drinksmixer.com/drink12044.html" + "url": "https://www.drinksmixer.com/drink12044.html" }, { "directions": "Mix together the Absinth and the Stroh rum. Carefully top the shot with Kahlua, and serve.", @@ -114399,7 +114399,7 @@ "Kahlua\u00ae coffee liqueur" ], "title": "B-52 Flame recipe", - "url": "http://www.drinksmixer.com/drink12045.html" + "url": "https://www.drinksmixer.com/drink12045.html" }, { "directions": "Combine all ingredients in a blender with ice and blend until frothy. Serve in a highball glass.", @@ -114411,7 +114411,7 @@ "peach schnapps" ], "title": "Bangkok Bomb recipe", - "url": "http://www.drinksmixer.com/drink12046.html" + "url": "https://www.drinksmixer.com/drink12046.html" }, { "directions": "In an ice filled cocktail glass, throw in the Wild Turkey and top it off with Coca-cola. Sprinkle powdered sugar around the rim of the glass. Mix and serve.", @@ -114421,7 +114421,7 @@ "sugar" ], "title": "Being Bobby Brown recipe", - "url": "http://www.drinksmixer.com/drink12047.html" + "url": "https://www.drinksmixer.com/drink12047.html" }, { "directions": "Add all ingredients to a cocktail shaker and shake. Strain into a highball glass filled with ice cubes. Garnish with a cherry, and serve.", @@ -114435,7 +114435,7 @@ "Coca-Cola\u00ae" ], "title": "Buttercream Tea recipe", - "url": "http://www.drinksmixer.com/drink12049.html" + "url": "https://www.drinksmixer.com/drink12049.html" }, { "directions": "Stir ingredients in equal parts in a shot glass, and serve.", @@ -114444,7 +114444,7 @@ "DeKuyper\u00ae butterscotch liqueur" ], "title": "Caramel Apple recipe", - "url": "http://www.drinksmixer.com/drink12050.html" + "url": "https://www.drinksmixer.com/drink12050.html" }, { "directions": "Stir together in a collins glass half-filled with ice, and serve.", @@ -114453,7 +114453,7 @@ "Jim Beam Black Label bourbon whiskey" ], "title": "Gangsta's Charm recipe", - "url": "http://www.drinksmixer.com/drink12052.html" + "url": "https://www.drinksmixer.com/drink12052.html" }, { "directions": "Pour the Frangelico and Absolut Citron in equal parts into a shot glass. Dip a lemon wedge into some Malibu rum and then into some sugar. Shoot the drink and then suck on the lemon wedge.", @@ -114465,7 +114465,7 @@ "sugar" ], "title": "Hitler's Chocolate Cake recipe", - "url": "http://www.drinksmixer.com/drink12053.html" + "url": "https://www.drinksmixer.com/drink12053.html" }, { "directions": "Bring 1 gallon apple juice and 1 gallon apple cider to a boil on the stove. After it's boiling, add one cup sugar and 1 liter bottle of Absolute vodka. Remove from heat. Put back into 1 gallon jugs and place in fridge to cool. After it cools, serve it as is.", @@ -114476,7 +114476,7 @@ "Absolut\u00ae vodka" ], "title": "Hot Apple Pie #5 recipe", - "url": "http://www.drinksmixer.com/drink12054.html" + "url": "https://www.drinksmixer.com/drink12054.html" }, { "directions": "Stir all ingredients together in a highball glass. Add ice as desired, and serve.", @@ -114488,7 +114488,7 @@ "Sprite\u00ae soda" ], "title": "Island Breeze #2 recipe", - "url": "http://www.drinksmixer.com/drink12055.html" + "url": "https://www.drinksmixer.com/drink12055.html" }, { "directions": "Fill a cocktail glass with ice cubes. Pour in the peach schnapps. Top off glass with cran-raspberry juice. Enjoy as the sweetness washes over your tongue, teasing your tastebuds.", @@ -114497,7 +114497,7 @@ "cranberry-raspberry juice" ], "title": "Lisa's Tease recipe", - "url": "http://www.drinksmixer.com/drink12056.html" + "url": "https://www.drinksmixer.com/drink12056.html" }, { "directions": "Pour Midori, Absolut and sour mix into a glass on the rocks. Splash with the Sprite. With a spoon turned scoop side down, float your shot of Jager on top. Serve.", @@ -114509,7 +114509,7 @@ "sweet and sour mix" ], "title": "Masturbating Butterfly recipe", - "url": "http://www.drinksmixer.com/drink12057.html" + "url": "https://www.drinksmixer.com/drink12057.html" }, { "directions": "Muddle sugar, mint and squeezed lime wedges in mixing tin until mixture smells like spearmint gum. Fill with ice, add tequila and cassis, shake until the tin is icey to the touch. Pour into a collins glass, top with 7-up and garnish with a sugarcane stick and fresh mint.\n\n", @@ -114522,7 +114522,7 @@ "brown sugar" ], "title": "Mojito Diablo recipe", - "url": "http://www.drinksmixer.com/drink12059.html" + "url": "https://www.drinksmixer.com/drink12059.html" }, { "directions": "Wet the rim of a cocktail glass and press down in sugar to get it on the rim. Put mint leaves and lime juice (per drink) in a cocktail shaker. Mash (\"muddle\") the mint with spoon. Add light rum and ice. Shake, strain, pour. If it's too tart, add sugar to the shaker.", @@ -114533,7 +114533,7 @@ "sugar" ], "title": "Mojito Martini recipe", - "url": "http://www.drinksmixer.com/drink12060.html" + "url": "https://www.drinksmixer.com/drink12060.html" }, { "directions": "Pour orange juice and ginger ale in equal parts into a chilled hi-ball glass. Add mango nectar and stir once or twice. Garnish with speared mandarin piece, and serve.", @@ -114544,7 +114544,7 @@ "mandarin" ], "title": "Momosa recipe", - "url": "http://www.drinksmixer.com/drink12061.html" + "url": "https://www.drinksmixer.com/drink12061.html" }, { "directions": "Pour goldschlager, than jagermeister, than amaretto into a shot glass, and serve.", @@ -114554,7 +114554,7 @@ "amaretto almond liqueur" ], "title": "Monday Night Hit recipe", - "url": "http://www.drinksmixer.com/drink12062.html" + "url": "https://www.drinksmixer.com/drink12062.html" }, { "directions": "Shake ingredients together in a cocktail shaker. Strain into a shot glass; serve.", @@ -114564,7 +114564,7 @@ "melon liqueur" ], "title": "Money Shot recipe", - "url": "http://www.drinksmixer.com/drink12063.html" + "url": "https://www.drinksmixer.com/drink12063.html" }, { "directions": "Add all ingredients to a cocktail shaker. Shake well, strain into a rocks glass or old-fashioned glass filled with ice cubes, and serve.", @@ -114581,7 +114581,7 @@ "cranberry juice" ], "title": "Mongolian Motherfucker #2 recipe", - "url": "http://www.drinksmixer.com/drink12064.html" + "url": "https://www.drinksmixer.com/drink12064.html" }, { "directions": "Stir ingredients together over ice in a short glass, and serve.", @@ -114590,7 +114590,7 @@ "peach schnapps" ], "title": "Monk Special recipe", - "url": "http://www.drinksmixer.com/drink12065.html" + "url": "https://www.drinksmixer.com/drink12065.html" }, { "directions": "Add the Malibu to a 3-oz shot glass with the Red Bull, and shoot.", @@ -114599,7 +114599,7 @@ "Red Bull\u00ae energy drink" ], "title": "Monkey Bite recipe", - "url": "http://www.drinksmixer.com/drink12066.html" + "url": "https://www.drinksmixer.com/drink12066.html" }, { "directions": "Pour the Monster energy drink and Jagermeister into a shaker with ice, shake briefly. Strain into a highball glass filled with ice cubes, and serve.", @@ -114608,7 +114608,7 @@ "Monster\u00ae energy drink" ], "title": "Monstermeister recipe", - "url": "http://www.drinksmixer.com/drink12067.html" + "url": "https://www.drinksmixer.com/drink12067.html" }, { "directions": "Add all ingredients to a large container with ice. Serve into cups.", @@ -114618,7 +114618,7 @@ "lemonade" ], "title": "Mop Water recipe", - "url": "http://www.drinksmixer.com/drink12068.html" + "url": "https://www.drinksmixer.com/drink12068.html" }, { "directions": "Stir ingredients together over ice in a highball glass, and serve.", @@ -114630,7 +114630,7 @@ "Sprite\u00ae soda" ], "title": "Mophead recipe", - "url": "http://www.drinksmixer.com/drink12069.html" + "url": "https://www.drinksmixer.com/drink12069.html" }, { "directions": "Stir ingredients together in a highball glass filled with ice cubes, and serve.", @@ -114641,7 +114641,7 @@ "lemon juice" ], "title": "Morning Energy recipe", - "url": "http://www.drinksmixer.com/drink12070.html" + "url": "https://www.drinksmixer.com/drink12070.html" }, { "directions": "Stir in equal parts in a shot glass, and serve.", @@ -114650,7 +114650,7 @@ "white sambuca" ], "title": "Moroz recipe", - "url": "http://www.drinksmixer.com/drink12071.html" + "url": "https://www.drinksmixer.com/drink12071.html" }, { "directions": "Pour all ingredients except for brandy into a mug filled with ice cubes, and stir. Drizzle brandy on top and serve.", @@ -114663,7 +114663,7 @@ "brandy" ], "title": "Mother Fucking Ape recipe", - "url": "http://www.drinksmixer.com/drink12072.html" + "url": "https://www.drinksmixer.com/drink12072.html" }, { "directions": "Pour the Tullamore Dew irish whiskey into a collins glass over ice cubes, than fill the glass with Mountan dew. Stir lightly and serve.", @@ -114672,7 +114672,7 @@ "Mountain Dew\u00ae citrus soda" ], "title": "Mount Tullamore's Dew recipe", - "url": "http://www.drinksmixer.com/drink12073.html" + "url": "https://www.drinksmixer.com/drink12073.html" }, { "directions": "Add blue curacao, schnapps, vodka, and gatorade together in a cocktail shaker. Shake well, strain into a cocktail glass over ice, and serve.", @@ -114683,7 +114683,7 @@ "Gatorade\u00ae Cool Blue Raspberry energy drink" ], "title": "Mountain Blue recipe", - "url": "http://www.drinksmixer.com/drink12074.html" + "url": "https://www.drinksmixer.com/drink12074.html" }, { "directions": "Add the shots to a collins glass filled with ice cubes. Fill with Moxie energy drink, and serve.", @@ -114693,7 +114693,7 @@ "Moxie\u00ae energy drink" ], "title": "Moxitizer recipe", - "url": "http://www.drinksmixer.com/drink12075.html" + "url": "https://www.drinksmixer.com/drink12075.html" }, { "directions": "Fill an old-fashioned glass with ice cubes. Add Absolut vodka and Kahlua Especial to the glass. Top off with Hershey's Chocolate Milk. Great drink for chocolate & coffee lovers.", @@ -114703,7 +114703,7 @@ "Hershey's\u00ae chocolate milk" ], "title": "Licking Lisa recipe", - "url": "http://www.drinksmixer.com/drink12076.html" + "url": "https://www.drinksmixer.com/drink12076.html" }, { "directions": "Add all ingredients to a cocktail shaker half-filled with ice cubes. Shake and strain into a hurricane glass half-filled with ice, and serve.", @@ -114717,7 +114717,7 @@ "sugar" ], "title": "Mozart 142 recipe", - "url": "http://www.drinksmixer.com/drink12077.html" + "url": "https://www.drinksmixer.com/drink12077.html" }, { "directions": "Stir together in a punch bowl, and serve.", @@ -114727,7 +114727,7 @@ "Lord Calvert\u00ae Canadian whisky" ], "title": "Mr. Beefy recipe", - "url": "http://www.drinksmixer.com/drink12078.html" + "url": "https://www.drinksmixer.com/drink12078.html" }, { "directions": "Add ingredients to a cocktail shaker with plenty of ice. Shake vigorously. Strain into a pre-chilled cocktail glass, and serve.", @@ -114738,7 +114738,7 @@ "Chambord\u00ae raspberry liqueur" ], "title": "Mr. Jetson recipe", - "url": "http://www.drinksmixer.com/drink12079.html" + "url": "https://www.drinksmixer.com/drink12079.html" }, { "directions": "Get a cup that fits the ingredients and then add the DeKuyper Sour Apple Pucker schnapps. Add a can or bottle of Jones Soda Co. Green Apple Soda, stir, and add ice. Serve.", @@ -114747,7 +114747,7 @@ "Jones\u00ae green apple soda" ], "title": "Mr. Jones Pucker recipe", - "url": "http://www.drinksmixer.com/drink12080.html" + "url": "https://www.drinksmixer.com/drink12080.html" }, { "directions": "Pour the Firewater into a shot glass. Top with the Tequila Rose liqueur, and serve.", @@ -114756,7 +114756,7 @@ "Tequila Rose\u00ae strawberry cream liqueur" ], "title": "Mrs. Santa Claus recipe", - "url": "http://www.drinksmixer.com/drink12081.html" + "url": "https://www.drinksmixer.com/drink12081.html" }, { "directions": "Add all ingredients to a shaker with crushed ice. Shake *briefly* (2-3 seconds) and strain into an Irish coffee mug. Serve hot or cold.", @@ -114767,7 +114767,7 @@ "coffee" ], "title": "Mud in a Cup recipe", - "url": "http://www.drinksmixer.com/drink12082.html" + "url": "https://www.drinksmixer.com/drink12082.html" }, { "directions": "Stir ingredients together in a mixing glass with ice. Strain into a chilled cocktail glass. Top off with a slice of pineapple, and serve.", @@ -114776,7 +114776,7 @@ "Looza\u00ae banana nectar" ], "title": "Muddy Madagascar recipe", - "url": "http://www.drinksmixer.com/drink12083.html" + "url": "https://www.drinksmixer.com/drink12083.html" }, { "directions": "Serve in a 2-oz shot glass, and stir, without ice.", @@ -114785,7 +114785,7 @@ "Sambuca di Amore\u00ae liqueur" ], "title": "Mulatto recipe", - "url": "http://www.drinksmixer.com/drink12084.html" + "url": "https://www.drinksmixer.com/drink12084.html" }, { "directions": "Add ingredients to a blender with crushed ice and mix until smooth. Pour into a hurricane glass, and top with a cherry. Tastes like a chocolate shake, but with a kick.", @@ -114797,7 +114797,7 @@ "half-and-half" ], "title": "Multiple Orgasm #2 recipe", - "url": "http://www.drinksmixer.com/drink12085.html" + "url": "https://www.drinksmixer.com/drink12085.html" }, { "directions": "Pour ingredeints into a cocktail shaker half-filled with ice cubes. Shake and strain into a highball glass filled with ice cubes. Add a straw, and serve.", @@ -114807,7 +114807,7 @@ "pineapple juice" ], "title": "Murder of Crows recipe", - "url": "http://www.drinksmixer.com/drink12086.html" + "url": "https://www.drinksmixer.com/drink12086.html" }, { "directions": "Pour all ingredients into an ice-filled cocktail shaker. Shake and strain into a shot glass, and serve.", @@ -114820,7 +114820,7 @@ "pineapple juice" ], "title": "Murky Water recipe", - "url": "http://www.drinksmixer.com/drink12087.html" + "url": "https://www.drinksmixer.com/drink12087.html" }, { "directions": "Very simple shot, pour and serve. Tastes fruity and delicous. Great for anyone looking for a yag bomb but without the horrible taste.", @@ -114829,7 +114829,7 @@ "UV\u00ae blue raspberry vodka" ], "title": "Murky Water #2 recipe", - "url": "http://www.drinksmixer.com/drink12088.html" + "url": "https://www.drinksmixer.com/drink12088.html" }, { "directions": "Add the schnapps to a shot glass. Top with Everclear and lastly the chocolate milk. Shoot.", @@ -114839,7 +114839,7 @@ "chocolate milk" ], "title": "Mustache Ride recipe", - "url": "http://www.drinksmixer.com/drink12089.html" + "url": "https://www.drinksmixer.com/drink12089.html" }, { "directions": "Add ingredients to a cocktail shaker half-filled with ice cubes. Shake and strain into a martini cocktail glass. Garnish with a citrus slice, and serve.", @@ -114849,7 +114849,7 @@ "raspberry puree" ], "title": "My Dear Aunt Ruby recipe", - "url": "http://www.drinksmixer.com/drink12090.html" + "url": "https://www.drinksmixer.com/drink12090.html" }, { "directions": "Stir together in a short glass, and serve.", @@ -114862,7 +114862,7 @@ "DeKuyper\u00ae Hot Damn cinnamon schnapps" ], "title": "Naked on the Bathroom Floor recipe", - "url": "http://www.drinksmixer.com/drink12092.html" + "url": "https://www.drinksmixer.com/drink12092.html" }, { "directions": "Roll the orange slice in some sugar. Drink the Jack Daniel's whiskey, then chase with the sugar-coated orange slice.", @@ -114872,7 +114872,7 @@ "sugar" ], "title": "Namib special recipe", - "url": "http://www.drinksmixer.com/drink12093.html" + "url": "https://www.drinksmixer.com/drink12093.html" }, { "directions": "Stir ingredients together in a highball glass, and serve.", @@ -114881,7 +114881,7 @@ "Sprite\u00ae soda" ], "title": "Natalie's recipe", - "url": "http://www.drinksmixer.com/drink12094.html" + "url": "https://www.drinksmixer.com/drink12094.html" }, { "directions": "Stir together on the rocks in an old-fashioned glass, and serve.", @@ -114890,7 +114890,7 @@ "Grand Marnier\u00ae orange liqueur" ], "title": "Naughtios Anemos recipe", - "url": "http://www.drinksmixer.com/drink12095.html" + "url": "https://www.drinksmixer.com/drink12095.html" }, { "directions": "Pour the rum into an old-fashioned glass with ice. Fill with Vernors ginger soda, add a dash or two of bitters, and serve.", @@ -114900,7 +114900,7 @@ "Angostura\u00ae bitters" ], "title": "Naughty Gnome recipe", - "url": "http://www.drinksmixer.com/drink12096.html" + "url": "https://www.drinksmixer.com/drink12096.html" }, { "directions": "Fill a glass with cubed ice. Add McCormick's vodka. Fill the rest of the glass with Mountain Dew. Stir and enjoy.", @@ -114909,7 +114909,7 @@ "Mountain Dew\u00ae citrus soda" ], "title": "Naughty Nick recipe", - "url": "http://www.drinksmixer.com/drink12097.html" + "url": "https://www.drinksmixer.com/drink12097.html" }, { "directions": "Filter herbs out of Absinth and pour Absinth into glass. Add baker's (superfine) sugar and stir until dissolved. Absinthe will take on a cloudy green color. Add Sprite and sweet and sour mix. Sit back, relax and enjoy.", @@ -114920,7 +114920,7 @@ "sweet and sour mix" ], "title": "Neon Fairy recipe", - "url": "http://www.drinksmixer.com/drink12098.html" + "url": "https://www.drinksmixer.com/drink12098.html" }, { "directions": "Combine ingredients together in a chilled shot glass and serve.", @@ -114929,7 +114929,7 @@ "Mountain Dew\u00ae citrus soda" ], "title": "Neon Green Punch recipe", - "url": "http://www.drinksmixer.com/drink12099.html" + "url": "https://www.drinksmixer.com/drink12099.html" }, { "directions": "Stir the apple pucker and Absolut citron together in a shot glass. Top with lemonade, and serve.", @@ -114939,7 +114939,7 @@ "lemonade" ], "title": "Neon Loki recipe", - "url": "http://www.drinksmixer.com/drink12100.html" + "url": "https://www.drinksmixer.com/drink12100.html" }, { "directions": "Mix all ingredients over ice in a collins glass. Pour into a shaker and give one brisk shake. Pour back into collins glass. Garnish with a lemon. Serve.", @@ -114953,7 +114953,7 @@ "amaretto almond liqueur" ], "title": "New York Motherfucker #2 recipe", - "url": "http://www.drinksmixer.com/drink12102.html" + "url": "https://www.drinksmixer.com/drink12102.html" }, { "directions": "Pour the Kahlua, condensed milk, cream soda and rum into a cocktail shaker with cubed ice and shake. Strain into a hurricane glass. Garnish with a maraschino cherry. If desired, layer Bacardi 151 on top and ignite. Enjoy fireshow, extinguish, and drink.", @@ -114965,7 +114965,7 @@ "Bacardi\u00ae 151 rum" ], "title": "Nichols' Flaming Cocktail recipe", - "url": "http://www.drinksmixer.com/drink12104.html" + "url": "https://www.drinksmixer.com/drink12104.html" }, { "directions": "Pour the vodka and peach schnapps into a martini cocktail glass. Fill with cranberry juice, and serve.", @@ -114975,7 +114975,7 @@ "Ocean Spray\u00ae cranberry juice" ], "title": "Nifty recipe", - "url": "http://www.drinksmixer.com/drink12105.html" + "url": "https://www.drinksmixer.com/drink12105.html" }, { "directions": "Pour the vodka into an old-fashioned glass filled with ice cubes. Top with the Hawaiian Punch juice. Add a lime slice, and serve.", @@ -114985,7 +114985,7 @@ "lime" ], "title": "Ninja Turtle recipe", - "url": "http://www.drinksmixer.com/drink12106.html" + "url": "https://www.drinksmixer.com/drink12106.html" }, { "directions": "Add ice to common plastic cup. Fill cup approximatly halfway with the MacMasters. Fill remaining cup with half Squirt and half Mountain Lightning. Serve with straw.", @@ -114995,7 +114995,7 @@ "Squirt\u00ae citrus soda" ], "title": "Nixon recipe", - "url": "http://www.drinksmixer.com/drink12107.html" + "url": "https://www.drinksmixer.com/drink12107.html" }, { "directions": "Stir ingredients together in an old-fashioned glass 1/2 filled with ice cubes, and serve.", @@ -115008,7 +115008,7 @@ "maraschino cherries" ], "title": "Nookie recipe", - "url": "http://www.drinksmixer.com/drink12109.html" + "url": "https://www.drinksmixer.com/drink12109.html" }, { "directions": "Pour all ingredients into a cocktail shaker half-filled with ice cubes. Shake and strain into a chilled martini cocktail glass, and serve.", @@ -115021,7 +115021,7 @@ "grenadine syrup" ], "title": "Now and Later recipe", - "url": "http://www.drinksmixer.com/drink12110.html" + "url": "https://www.drinksmixer.com/drink12110.html" }, { "directions": "Add all ingredients to a cocktail glass with crushed/shaven ice, stir and serve.", @@ -115032,7 +115032,7 @@ "berries" ], "title": "Nuck'n Futs recipe", - "url": "http://www.drinksmixer.com/drink12111.html" + "url": "https://www.drinksmixer.com/drink12111.html" }, { "directions": "Pour the vanilla vodka into a shot glass. Slowly add the grenadine, and serve.", @@ -115041,7 +115041,7 @@ "grenadine syrup" ], "title": "Nun on the Rag recipe", - "url": "http://www.drinksmixer.com/drink12112.html" + "url": "https://www.drinksmixer.com/drink12112.html" }, { "directions": "Pour the Smirnoff watermelon vodka into a cocktail glass. Add the raspberry sparkling water. Serve with a piece of watermelon and 2 raspberries inside the glass.", @@ -115050,7 +115050,7 @@ "raspberry soda water" ], "title": "Nut Sauce recipe", - "url": "http://www.drinksmixer.com/drink12113.html" + "url": "https://www.drinksmixer.com/drink12113.html" }, { "directions": "Pour ingredients in above order into a shot glass, and serve.", @@ -115059,7 +115059,7 @@ "amaretto almond liqueur" ], "title": "Nutty Islander recipe", - "url": "http://www.drinksmixer.com/drink12114.html" + "url": "https://www.drinksmixer.com/drink12114.html" }, { "directions": "Fill a highball glass with ice. Add vodka, amaretto and Frangelico. Fill with milk. Stir and serve.", @@ -115070,7 +115070,7 @@ "milk" ], "title": "Nutty Russian recipe", - "url": "http://www.drinksmixer.com/drink12116.html" + "url": "https://www.drinksmixer.com/drink12116.html" }, { "directions": "Stir the Kahlua and hazelnut-flavor creamer together in a shot glass, and serve.", @@ -115079,7 +115079,7 @@ "hazelnut creamer" ], "title": "Nuttylua recipe", - "url": "http://www.drinksmixer.com/drink12117.html" + "url": "https://www.drinksmixer.com/drink12117.html" }, { "directions": "Pour the Bacardi O orange rum into an old-fashioned glass half-filled with ice cubes. Add Coke to taste, and serve.", @@ -115088,7 +115088,7 @@ "Coca-Cola\u00ae" ], "title": "O-n-Coke recipe", - "url": "http://www.drinksmixer.com/drink12118.html" + "url": "https://www.drinksmixer.com/drink12118.html" }, { "directions": "Pour the Absolut peach vodka into a collins glass filled with ice cubes. Add the Island Fruit 7-Up and a splash of Canada Dry ginger ale. Stir and serve.", @@ -115098,7 +115098,7 @@ "Canada Dry\u00ae ginger ale" ], "title": "Orange Peach Plus recipe", - "url": "http://www.drinksmixer.com/drink12119.html" + "url": "https://www.drinksmixer.com/drink12119.html" }, { "directions": "Add all ingredients to a cocktail shaker with a few ice cubes. Shake and strain into a shot glass, and serve.", @@ -115110,7 +115110,7 @@ "Goldschlager\u00ae cinnamon schnapps" ], "title": "Oatmeal Cookie #3 recipe", - "url": "http://www.drinksmixer.com/drink12120.html" + "url": "https://www.drinksmixer.com/drink12120.html" }, { "directions": "Pour the Midori melon liqueur into a shot glass. Add the lemonade, and serve.", @@ -115119,7 +115119,7 @@ "lemonade" ], "title": "Oban Water recipe", - "url": "http://www.drinksmixer.com/drink12121.html" + "url": "https://www.drinksmixer.com/drink12121.html" }, { "directions": "Stir ingredients together in a collins glass filled with ice cubes. Top with a cherry and serve.", @@ -115130,7 +115130,7 @@ "cranberry juice" ], "title": "Ocean Breeze recipe", - "url": "http://www.drinksmixer.com/drink12122.html" + "url": "https://www.drinksmixer.com/drink12122.html" }, { "directions": "Fill a highball glass with ice. Add the vodka, then add the juices in equal parts. Float blue Curacao on top. Garnish it with an orange wheel on the glass, and serve.", @@ -115142,7 +115142,7 @@ "orange" ], "title": "Ocean Breeze #2 recipe", - "url": "http://www.drinksmixer.com/drink12123.html" + "url": "https://www.drinksmixer.com/drink12123.html" }, { "directions": "Pour the tequila, orange cognac and triple sec on the rocks in a tall salt-rimmed margarita glass. Add sour mix to taste. Serve.", @@ -115153,7 +115153,7 @@ "sweet and sour mix" ], "title": "OC Margarita recipe", - "url": "http://www.drinksmixer.com/drink12124.html" + "url": "https://www.drinksmixer.com/drink12124.html" }, { "directions": "Pour Absolut, Rumpleminze, and Bacardi 151 into a shot glass. Using a stir stick, drip in 8 drops of Bailey's Irish Cream one at a time to form the tentacles of the Octopus. Serve.", @@ -115164,7 +115164,7 @@ "Bailey's\u00ae Irish cream" ], "title": "Octopus recipe", - "url": "http://www.drinksmixer.com/drink12125.html" + "url": "https://www.drinksmixer.com/drink12125.html" }, { "directions": "Mix blackberry brandy, triple sec, grape pucker schnapps and a splash of 7-up together in a mixing glass with ice. Strain into shot glasses, and serve.", @@ -115175,7 +115175,7 @@ "7-Up\u00ae soda" ], "title": "Oh Yeah! recipe", - "url": "http://www.drinksmixer.com/drink12126.html" + "url": "https://www.drinksmixer.com/drink12126.html" }, { "directions": "In a cocktail shaker, add ingredients and shake up. Pour over ice in old-fashioned glass. Serve with a coffee stirrer.", @@ -115187,7 +115187,7 @@ "cream" ], "title": "Ohio Bulldog recipe", - "url": "http://www.drinksmixer.com/drink12127.html" + "url": "https://www.drinksmixer.com/drink12127.html" }, { "directions": "Pour both ingredients into a double shot glass (or whiskey sour glass, etc.) and serve.", @@ -115196,7 +115196,7 @@ "peppermint schnapps" ], "title": "Oil Rig recipe", - "url": "http://www.drinksmixer.com/drink12129.html" + "url": "https://www.drinksmixer.com/drink12129.html" }, { "directions": "Mix whiskey and Jagermeister in a shot glass and then drop into a half glass of beer. Drink the entire mixture before it mixes and try to take it easy afterwards.", @@ -115206,7 +115206,7 @@ "beer" ], "title": "Oil Spill #2 recipe", - "url": "http://www.drinksmixer.com/drink12130.html" + "url": "https://www.drinksmixer.com/drink12130.html" }, { "directions": "Pour the schnapps and curacao into a shot glass. Carefully layer Jagermeister on top of drink, and serve.", @@ -115216,7 +115216,7 @@ "Jagermeister\u00ae herbal liqueur" ], "title": "Oil Spill #3 recipe", - "url": "http://www.drinksmixer.com/drink12131.html" + "url": "https://www.drinksmixer.com/drink12131.html" }, { "directions": "Blend 1 cup of ice in a blender with the pina colada mix and rum. Set aside. Blend the raspberry vodka with 1 cup of ice. Rim a pina colada glass with sugar. Pour both mixtures one at a time into the glass. Top with a maraschino cherry. For an added effect, add a drop of red food clouring to the vodka portion before combining.", @@ -115228,7 +115228,7 @@ "maraschino cherry" ], "title": "Ola Homey! recipe", - "url": "http://www.drinksmixer.com/drink12132.html" + "url": "https://www.drinksmixer.com/drink12132.html" }, { "directions": "Pour all ingredients into an old-fashioned glass w/out ice, and serve.", @@ -115238,7 +115238,7 @@ "Red Bull\u00ae energy drink" ], "title": "Cider Bite recipe", - "url": "http://www.drinksmixer.com/drink12134.html" + "url": "https://www.drinksmixer.com/drink12134.html" }, { "directions": "Stir ingredients together in a mixing glass with ice. Strain into a shot glass, and serve.", @@ -115249,7 +115249,7 @@ "Red Bull\u00ae energy drink" ], "title": "Fruit Chew recipe", - "url": "http://www.drinksmixer.com/drink12135.html" + "url": "https://www.drinksmixer.com/drink12135.html" }, { "directions": "Stir ingredients together in a highball glass almost filled with ice cubes, and serve.", @@ -115258,7 +115258,7 @@ "Sprite\u00ae soda" ], "title": "Loren's Lay recipe", - "url": "http://www.drinksmixer.com/drink12136.html" + "url": "https://www.drinksmixer.com/drink12136.html" }, { "directions": "Add drops of bitters to bottom of glass and stir in sugar. Once bitters and sugar are combined, add ice and pour in brandy. Top off with 7-up/Sprite and add a splash of grenadine. Serve with cherry/orange slice. Also works with whiskey.", @@ -115270,7 +115270,7 @@ "grenadine syrup" ], "title": "Old Fashioned (Sweet) #2 recipe", - "url": "http://www.drinksmixer.com/drink12137.html" + "url": "https://www.drinksmixer.com/drink12137.html" }, { "directions": "Layer the drinks in above order into a shot glass. Red/white/blue like old glory. Shoot.", @@ -115280,7 +115280,7 @@ "white chocolate liqueur" ], "title": "Old Glory recipe", - "url": "http://www.drinksmixer.com/drink12138.html" + "url": "https://www.drinksmixer.com/drink12138.html" }, { "directions": "Combine all bourbons and rye whiskies into a shot glass, and serve.", @@ -115292,7 +115292,7 @@ "Wild Turkey\u00ae bourbon whiskey" ], "title": "Old Grandpa Jimmy 1969 recipe", - "url": "http://www.drinksmixer.com/drink12139.html" + "url": "https://www.drinksmixer.com/drink12139.html" }, { "directions": "Shake the ingredientes together in a cocktail shaker 3/4 filled with ice. Strain into a Champagne saucer glass, garnish with a cherry, and serve.", @@ -115303,7 +115303,7 @@ "egg" ], "title": "Old Lady recipe", - "url": "http://www.drinksmixer.com/drink12140.html" + "url": "https://www.drinksmixer.com/drink12140.html" }, { "directions": "Add the Galliano liqueur to the Coke. Carefully drop in the vanilla ice cream, being careful so it doesn't overflow too badly. Serve with a straw and spoon.", @@ -115313,7 +115313,7 @@ "Coca-Cola\u00ae" ], "title": "Old Rootbeer Float recipe", - "url": "http://www.drinksmixer.com/drink12141.html" + "url": "https://www.drinksmixer.com/drink12141.html" }, { "directions": "Pour Fanta into a collins glass. Add Oliphanta orange vodka, stir, and serve.", @@ -115322,7 +115322,7 @@ "Fanta\u00ae orange soda" ], "title": "OliFanta recipe", - "url": "http://www.drinksmixer.com/drink12142.html" + "url": "https://www.drinksmixer.com/drink12142.html" }, { "directions": "Mix the Stoli Vanil into the pomegranate juice in an old-fashioned glass, stirring well. Carefully layer Bacardi 151 on top and serve flaming.", @@ -115332,7 +115332,7 @@ "pomegranate juice" ], "title": "Omeed's Mom recipe", - "url": "http://www.drinksmixer.com/drink12143.html" + "url": "https://www.drinksmixer.com/drink12143.html" }, { "directions": "Combine above ingredients together in a highball glass with a couple of ice cubes. Stir and serve with a slice of apple. ", @@ -115342,7 +115342,7 @@ "cranberry juice" ], "title": "Omnipotent recipe", - "url": "http://www.drinksmixer.com/drink12144.html" + "url": "https://www.drinksmixer.com/drink12144.html" }, { "directions": "Pour a shot of gin into a brandy snifter. Add the grenadine and ginger ale, and serve.", @@ -115352,7 +115352,7 @@ "ginger ale" ], "title": "On the Rag recipe", - "url": "http://www.drinksmixer.com/drink12145.html" + "url": "https://www.drinksmixer.com/drink12145.html" }, { "directions": "Pour all ingrediants into a cocktail shaker with a few ice cubes. Shake and strain into a 2-oz shot glass, and serve.", @@ -115362,7 +115362,7 @@ "pineapple juice" ], "title": "Frankenstein recipe", - "url": "http://www.drinksmixer.com/drink12146.html" + "url": "https://www.drinksmixer.com/drink12146.html" }, { "directions": "Pour the Bacardi rum, Smirnoff vodka and peach schnapps over crushed ice in a collins glass. Add Sprite, then cranberry juice last. Top with a slice of lime, and serve.", @@ -115374,7 +115374,7 @@ "Sprite\u00ae soda" ], "title": "One Long Distance Operator recipe", - "url": "http://www.drinksmixer.com/drink12147.html" + "url": "https://www.drinksmixer.com/drink12147.html" }, { "directions": "Pour ingredients into a cocktail shaker half-filled with ice cubes. Shake until chilled and serve immediately in sherry or shot glasses.", @@ -115384,7 +115384,7 @@ "almond syrup" ], "title": "Opaque Bloom recipe", - "url": "http://www.drinksmixer.com/drink12148.html" + "url": "https://www.drinksmixer.com/drink12148.html" }, { "directions": "Combine ingredients in a cocktail shaker 1/4 filled with chopped ice. Shake and strain into a cocktail glass. Serve with a squeeze of lemon.", @@ -115394,7 +115394,7 @@ "pomegranate juice" ], "title": "Oprah's Favorite Pomegranate Martini recipe", - "url": "http://www.drinksmixer.com/drink12149.html" + "url": "https://www.drinksmixer.com/drink12149.html" }, { "directions": "Pour the Red Bull into a highball glass 3/4 filled with ice cubes. Add the Bacardi O rum, and serve.", @@ -115403,7 +115403,7 @@ "Red Bull\u00ae energy drink" ], "title": "Orange Tic Tac recipe", - "url": "http://www.drinksmixer.com/drink12150.html" + "url": "https://www.drinksmixer.com/drink12150.html" }, { "directions": "Pour Red bull into a beer mug. Pour the orange vodka seperately into a shot glass, drop into the beer mug, and chug.", @@ -115412,7 +115412,7 @@ "Red Bull\u00ae energy drink" ], "title": "Orange Bomb #2 recipe", - "url": "http://www.drinksmixer.com/drink12151.html" + "url": "https://www.drinksmixer.com/drink12151.html" }, { "directions": "Mix ingredients in equal parts in a shot glass, and serve.", @@ -115421,7 +115421,7 @@ "ginger ale" ], "title": "Orange Champagne recipe", - "url": "http://www.drinksmixer.com/drink12152.html" + "url": "https://www.drinksmixer.com/drink12152.html" }, { "directions": "Add all ingredients to a cocktail shaker (coffee last so as to not melt the ice). Shake and strain into a cocktail glass. Perch an orange slice on the rim, and serve.", @@ -115432,7 +115432,7 @@ "cream" ], "title": "Orange Coffee Cocktail recipe", - "url": "http://www.drinksmixer.com/drink12153.html" + "url": "https://www.drinksmixer.com/drink12153.html" }, { "directions": "Mix Smirnoff Orange Twist vodka and Vanilla Coke in an old-fashioned glass. Add ice and garnish with a fresh or candied orange slice and serve.", @@ -115441,7 +115441,7 @@ "Coca-Cola\u00ae Vanilla Coke" ], "title": "Orange Cream recipe", - "url": "http://www.drinksmixer.com/drink12154.html" + "url": "https://www.drinksmixer.com/drink12154.html" }, { "directions": "Pour the vanilla vodka into a collins glass with ice. Add orange crush til it tastes good. Serve.", @@ -115450,7 +115450,7 @@ "orange crush" ], "title": "Orange Creamsicle #2 recipe", - "url": "http://www.drinksmixer.com/drink12155.html" + "url": "https://www.drinksmixer.com/drink12155.html" }, { "directions": "Stir ingredients together in a highball glass, and serve.", @@ -115460,7 +115460,7 @@ "orange juice" ], "title": "Orange Crunk Mix recipe", - "url": "http://www.drinksmixer.com/drink12156.html" + "url": "https://www.drinksmixer.com/drink12156.html" }, { "directions": "Pour all ingredients into a highball glass filled with ice cubes, stir briefly and serve.", @@ -115470,7 +115470,7 @@ "cranberry juice" ], "title": "Orange Crush recipe", - "url": "http://www.drinksmixer.com/drink12157.html" + "url": "https://www.drinksmixer.com/drink12157.html" }, { "directions": "Add all ingredients to a blender with crushed ice and blend until smooth. Pour into a champagne saucer. Garnish with a maraschino cherry, and serve.", @@ -115482,7 +115482,7 @@ "sugar" ], "title": "Orange Daiquiri #2 recipe", - "url": "http://www.drinksmixer.com/drink12158.html" + "url": "https://www.drinksmixer.com/drink12158.html" }, { "directions": "Add all ingredients to a cocktail shaker half-filled with ice cubes. Shake and strain into a highball glass filled with ice cubes, and serve.", @@ -115493,7 +115493,7 @@ "half-and-half" ], "title": "Orange Dream recipe", - "url": "http://www.drinksmixer.com/drink12159.html" + "url": "https://www.drinksmixer.com/drink12159.html" }, { "directions": "Mix Absolut Citron vodka and peach schnapps together in a cocktail shaker with ice. Pour into a shot glass. To a seperate, larger glass, add the Red Bull and orange juice. Drop the shot glass into the larger glass and chug.", @@ -115504,7 +115504,7 @@ "orange juice" ], "title": "Orange Fizz Shot recipe", - "url": "http://www.drinksmixer.com/drink12160.html" + "url": "https://www.drinksmixer.com/drink12160.html" }, { "directions": "Mix all three ingredients into a cup and stir well (quick consumption should be possible and is recommended to keep orange juice from reacting with the other ingredients.)", @@ -115514,7 +115514,7 @@ "orange soda" ], "title": "Orange Fucker recipe", - "url": "http://www.drinksmixer.com/drink12161.html" + "url": "https://www.drinksmixer.com/drink12161.html" }, { "directions": "Stir ingredients together over ice in an old-fashioned/lowball glass and serve.", @@ -115523,7 +115523,7 @@ "orange juice" ], "title": "Orange Kitty recipe", - "url": "http://www.drinksmixer.com/drink12162.html" + "url": "https://www.drinksmixer.com/drink12162.html" }, { "directions": "Pour the Red Bull into a pint glass. Drop in a shot glass filled with Stoli Ohranj vodka, and chug.", @@ -115532,7 +115532,7 @@ "Red Bull\u00ae energy drink" ], "title": "Orange Pez recipe", - "url": "http://www.drinksmixer.com/drink12163.html" + "url": "https://www.drinksmixer.com/drink12163.html" }, { "directions": "Pour orange vodka and Godiva into a cocktail shaker filled with ice. Shake and allow to chill. Dip rim of a chilled cocktail glass into orange liqueur and twirl in sugar to coat. Pour contents of shaker into glass, garnish with an orange slice, and serve.", @@ -115543,7 +115543,7 @@ "sugar" ], "title": "Orange Tootsie Pop recipe", - "url": "http://www.drinksmixer.com/drink12164.html" + "url": "https://www.drinksmixer.com/drink12164.html" }, { "directions": "Fill a tall glass halfway with ice. Whisk together the ingredients (not the milk) and pour over the ice. Fill the glass the rest of the way with cold milk. Stir lightly and serve.", @@ -115555,7 +115555,7 @@ "milk" ], "title": "Orange Truffle Mocha recipe", - "url": "http://www.drinksmixer.com/drink12165.html" + "url": "https://www.drinksmixer.com/drink12165.html" }, { "directions": "Stir ingredients together with ice cubes in a tall glass, and serve.", @@ -115565,7 +115565,7 @@ "ruby grapefruit juice" ], "title": "Orangutan recipe", - "url": "http://www.drinksmixer.com/drink12166.html" + "url": "https://www.drinksmixer.com/drink12166.html" }, { "directions": "Shake vodka and triple sec together in a cocktail shaker with cracked ice. Strain into a collins glass over ice cubes, add Angostura bitters and pour on pressed apple juice. Serve.", @@ -115576,7 +115576,7 @@ "apple juice" ], "title": "Orchard Express recipe", - "url": "http://www.drinksmixer.com/drink12167.html" + "url": "https://www.drinksmixer.com/drink12167.html" }, { "directions": "Mix the Everclear and the rum together in a shot glass. Add the Aftershock last to give the shot a nice red color. Serve.", @@ -115586,7 +115586,7 @@ "Aftershock\u00ae Hot & Cool cinnamon schnapps" ], "title": "Oregon Coast Crab Shock recipe", - "url": "http://www.drinksmixer.com/drink12168.html" + "url": "https://www.drinksmixer.com/drink12168.html" }, { "directions": "Stir ingredients together with ice in a mixing glass. Strain into a chilled cocktail glass, and serve.", @@ -115595,7 +115595,7 @@ "orange juice" ], "title": "Orgasm #12 recipe", - "url": "http://www.drinksmixer.com/drink12169.html" + "url": "https://www.drinksmixer.com/drink12169.html" }, { "directions": "Stir ingredients together with ice cubes in a mixing glass. Strain into shot glasses, and serve.", @@ -115606,7 +115606,7 @@ "light cream" ], "title": "Orgasm #11 recipe", - "url": "http://www.drinksmixer.com/drink12170.html" + "url": "https://www.drinksmixer.com/drink12170.html" }, { "directions": "Stir together in a shot glass, and serve.", @@ -115615,7 +115615,7 @@ "Bundaberg\u00ae ginger beer" ], "title": "Orgasm and a Half recipe", - "url": "http://www.drinksmixer.com/drink12171.html" + "url": "https://www.drinksmixer.com/drink12171.html" }, { "directions": "Put cinnamon and sugar, mixed, on the rim of a cocktail glass. Add the Smirnoff, Frangelico, Bailey's, and espresso to the glass and mix thoroughly. Add cream to taste, and serve.", @@ -115629,7 +115629,7 @@ "sugar" ], "title": "Orient Express recipe", - "url": "http://www.drinksmixer.com/drink12172.html" + "url": "https://www.drinksmixer.com/drink12172.html" }, { "directions": "Boil the water in a kettle (as you would if making coffee or tea). Place the sugar cube in the mug and pour the Calvados onto the sugar cube (so that it is absorbed into the sugar). Pour the boiling water directly onto the sugar cube, filling the mug to the top. Stir until sugar is dissolved then drink when cool enough. ", @@ -115639,7 +115639,7 @@ "water" ], "title": "Original Grog recipe", - "url": "http://www.drinksmixer.com/drink12173.html" + "url": "https://www.drinksmixer.com/drink12173.html" }, { "directions": "Add the ice to a 32-oz mason jar. Add liquors and then pineapple juice. Top to the neck with orange juice. Add grenadine, garnish with an orange slice and cherries, and serve.", @@ -115656,7 +115656,7 @@ "orange juice" ], "title": "Original Mulekicker recipe", - "url": "http://www.drinksmixer.com/drink12174.html" + "url": "https://www.drinksmixer.com/drink12174.html" }, { "directions": "Add all ingredients to a mixing glass with ice and stir until a redish pink color. Strain over ice in a brandy snifter, and serve.", @@ -115669,7 +115669,7 @@ "pineapple juice" ], "title": "Oscar recipe", - "url": "http://www.drinksmixer.com/drink12175.html" + "url": "https://www.drinksmixer.com/drink12175.html" }, { "directions": "Pour the vodka over crushed ice in a highball glass. Pour in the Pepsi. Squeeze the orange wedge, letting the juice drip into the glass. Serve.", @@ -115679,7 +115679,7 @@ "orange" ], "title": "Osiris recipe", - "url": "http://www.drinksmixer.com/drink12176.html" + "url": "https://www.drinksmixer.com/drink12176.html" }, { "directions": "Pour in a shot of everclear over ice in a highball glass. Next fill the glass halfway with orange juice. Finish up by filling up the glass with pineapple juice and splashing with grenadine. Serve.", @@ -115690,7 +115690,7 @@ "grenadine syrup" ], "title": "Outer Banks Sunset recipe", - "url": "http://www.drinksmixer.com/drink12177.html" + "url": "https://www.drinksmixer.com/drink12177.html" }, { "directions": "Stir together in a shot glass, and serve.", @@ -115700,7 +115700,7 @@ "DeKuyper\u00ae Sour Apple Pucker schnapps" ], "title": "Outrage recipe", - "url": "http://www.drinksmixer.com/drink12178.html" + "url": "https://www.drinksmixer.com/drink12178.html" }, { "directions": "Add the Ovaltine to hot coffee. Add milk as desired, and serve.", @@ -115710,7 +115710,7 @@ "milk" ], "title": "Ovaltine Java recipe", - "url": "http://www.drinksmixer.com/drink12179.html" + "url": "https://www.drinksmixer.com/drink12179.html" }, { "directions": "Rim a cocktail glass with ovaltine cocoa powder. Add Stoli Vanil vodka and white creme de cacao to a cocktail shaker with a few ice cubes. Shake and strain into the prepared cocktail glass. Garnish with a Hershey kiss, and serve.", @@ -115720,7 +115720,7 @@ "Ovaltine\u00ae cocoa" ], "title": "Ovaltini recipe", - "url": "http://www.drinksmixer.com/drink12180.html" + "url": "https://www.drinksmixer.com/drink12180.html" }, { "directions": "Add the Fireball whiskey to the cranberry juice in a cup. Stir and serve.", @@ -115729,7 +115729,7 @@ "cranberry juice" ], "title": "First Degree Burn recipe", - "url": "http://www.drinksmixer.com/drink12181.html" + "url": "https://www.drinksmixer.com/drink12181.html" }, { "directions": "Combine all ingredients in a water jug. Shake vigorously. Serve over ice.", @@ -115740,7 +115740,7 @@ "water" ], "title": "Bayou Punch recipe", - "url": "http://www.drinksmixer.com/drink12182.html" + "url": "https://www.drinksmixer.com/drink12182.html" }, { "directions": "Pour ingredients into a cocktail shaker. Shake and strain into a shot glass, and serve.", @@ -115749,7 +115749,7 @@ "Jagermeister\u00ae herbal liqueur" ], "title": "Iron Curtain recipe", - "url": "http://www.drinksmixer.com/drink12183.html" + "url": "https://www.drinksmixer.com/drink12183.html" }, { "directions": "Muddle lime wedges in a glass and fill with ice. Add all other ingredients, cover and shake vigorously. Add a straw and serve.", @@ -115761,7 +115761,7 @@ "lime" ], "title": "Puss and Lips recipe", - "url": "http://www.drinksmixer.com/drink12185.html" + "url": "https://www.drinksmixer.com/drink12185.html" }, { "directions": "Add all ingredients to a cocktail shaker with a few ice cubes. Shake and strain into a cocktail glass, and serve.", @@ -115771,7 +115771,7 @@ "Safari\u00ae liqueur" ], "title": "P & P recipe", - "url": "http://www.drinksmixer.com/drink12186.html" + "url": "https://www.drinksmixer.com/drink12186.html" }, { "directions": "Stir all ingredients together and serve in a chilled red wine glass.", @@ -115782,7 +115782,7 @@ "maple syrup" ], "title": "P'tit Caribou recipe", - "url": "http://www.drinksmixer.com/drink12187.html" + "url": "https://www.drinksmixer.com/drink12187.html" }, { "directions": "Pack an 8-oz glass with ice. Add Smirnoff vodka and fruit juice concentrate. Fill glass with Pabst. Dump contents into a shaker. Shake gently, and strain. Makes one big shooter.", @@ -115792,7 +115792,7 @@ "fruit juice" ], "title": "Pabst-Smir recipe", - "url": "http://www.drinksmixer.com/drink12188.html" + "url": "https://www.drinksmixer.com/drink12188.html" }, { "directions": "Pour all ingredients into a cocktail shaker half-filled with ice cubes. Shake and strain into an old-fashioned glass filled with cracked ice, and serve.", @@ -115806,7 +115806,7 @@ "Hpnotiq\u00ae liqueur" ], "title": "Pacific Wet Dream recipe", - "url": "http://www.drinksmixer.com/drink12189.html" + "url": "https://www.drinksmixer.com/drink12189.html" }, { "directions": "Fill a shot glass until 2/3 with triple sec. Carefully add drambuie, trying to keep them in layers. Add a few drops of lime juice (just about a teaspoon), and serve.", @@ -115816,7 +115816,7 @@ "limes" ], "title": "Pai Nosso recipe", - "url": "http://www.drinksmixer.com/drink12191.html" + "url": "https://www.drinksmixer.com/drink12191.html" }, { "directions": "Chill a martini glass. Pour the rum, Pedro Ximenez and Monin pain d'epices (gingerbread) syrup over ice in a mixing glass. By hand, squeeze the juice from half an orange into the glass. Stir slowly and at length. Strain into a martini glass, and serve.", @@ -115827,7 +115827,7 @@ "orange juice" ], "title": "Pain d'Epices recipe", - "url": "http://www.drinksmixer.com/drink12192.html" + "url": "https://www.drinksmixer.com/drink12192.html" }, { "directions": "Stir ingredients together in a highball glass half-filled with ice cubes, and serve.", @@ -115836,7 +115836,7 @@ "Gatorade\u00ae Lemon-Lime energy drink" ], "title": "Allen Oakdale recipe", - "url": "http://www.drinksmixer.com/drink12193.html" + "url": "https://www.drinksmixer.com/drink12193.html" }, { "directions": "Combine ingredients together in a large shot glass. Mix well, and serve.", @@ -115846,7 +115846,7 @@ "peach schnapps" ], "title": "Ball Breaker recipe", - "url": "http://www.drinksmixer.com/drink12194.html" + "url": "https://www.drinksmixer.com/drink12194.html" }, { "directions": "Combine all ingredients together in an old-fashioned glass. Stir and serve.", @@ -115856,7 +115856,7 @@ "Campari\u00ae bitters" ], "title": "Bloat Mary recipe", - "url": "http://www.drinksmixer.com/drink12195.html" + "url": "https://www.drinksmixer.com/drink12195.html" }, { "directions": "Add liquors to a cocktail shaker half-filled with ice. Shake and strain into an old-fashioned glass, top with 7-up, stir briefly and serve.", @@ -115866,7 +115866,7 @@ "7-Up\u00ae soda" ], "title": "Blue Wave recipe", - "url": "http://www.drinksmixer.com/drink12196.html" + "url": "https://www.drinksmixer.com/drink12196.html" }, { "directions": "Add 3 ice cubes to a 10 ounce glass. Add Amarula and Kahlua liqueurs. Top up with milk, stir and serve.", @@ -115876,7 +115876,7 @@ "milk" ], "title": "Brown Elephant #2 recipe", - "url": "http://www.drinksmixer.com/drink12197.html" + "url": "https://www.drinksmixer.com/drink12197.html" }, { "directions": "Mix all ingrediants over ice and stir with straw. Add as much milk as you like.", @@ -115887,7 +115887,7 @@ "milk" ], "title": "Buttery Russian recipe", - "url": "http://www.drinksmixer.com/drink12198.html" + "url": "https://www.drinksmixer.com/drink12198.html" }, { "directions": "Thaw the lemonade concentrate and dump it into a pitcher. Fill the empty lemonade can with vodka and pour into pitcher. Pour in three beers. Add ice and mix.", @@ -115897,7 +115897,7 @@ "Budweiser\u00ae lager" ], "title": "Hop Skip and Go Naked #3 recipe", - "url": "http://www.drinksmixer.com/drink12201.html" + "url": "https://www.drinksmixer.com/drink12201.html" }, { "directions": "Pour the rum and cranberry juice into an old-fashioned glass filled with ice cubes. Garnish with a lime wedge and serve.", @@ -115906,7 +115906,7 @@ "cranberry juice" ], "title": "Lake Chatuge recipe", - "url": "http://www.drinksmixer.com/drink12202.html" + "url": "https://www.drinksmixer.com/drink12202.html" }, { "directions": "Stir ingredients together in a highball glass filled with ice cubes, and serve.", @@ -115918,7 +115918,7 @@ "Polar\u00ae raspberry lime soda" ], "title": "Lover's Kiss #3 recipe", - "url": "http://www.drinksmixer.com/drink12203.html" + "url": "https://www.drinksmixer.com/drink12203.html" }, { "directions": "Stir ingredients together in a shot glass. Tastes like cinnamon syrup.", @@ -115927,7 +115927,7 @@ "maple syrup" ], "title": "Maple K.I.S.S. recipe", - "url": "http://www.drinksmixer.com/drink12204.html" + "url": "https://www.drinksmixer.com/drink12204.html" }, { "directions": "Stir ingredients together in a mixing glass with a few ice cubes. Strain into a shot glass, and serve.", @@ -115937,7 +115937,7 @@ "Kahlua\u00ae coffee liqueur" ], "title": "Neopolitan #2 recipe", - "url": "http://www.drinksmixer.com/drink12205.html" + "url": "https://www.drinksmixer.com/drink12205.html" }, { "directions": "Pour the Rumple Minze and Stolichnaya orange vodka into a highball glass filled with ice cubes. Fill with tonic water. Garnish with an orange or lime. Add splash of Grand Marnier if desired. Serve.", @@ -115947,7 +115947,7 @@ "tonic water" ], "title": "Orange Rumbler recipe", - "url": "http://www.drinksmixer.com/drink12206.html" + "url": "https://www.drinksmixer.com/drink12206.html" }, { "directions": "Pour Midori melon liqueur, Bacardi 151, Sour Apple Pucker, and Malibu Rum into a highball glass. Top off with pineapple juice and 7-Up, stir and serve.", @@ -115960,7 +115960,7 @@ "7-Up\u00ae soda" ], "title": "Pain in the Ass recipe", - "url": "http://www.drinksmixer.com/drink12207.html" + "url": "https://www.drinksmixer.com/drink12207.html" }, { "directions": "Go to your local paint store and purchase a brand new paint can. Fill the paint can completely with ice. \r", @@ -115971,7 +115971,7 @@ "lemonade" ], "title": "Paint Can recipe", - "url": "http://www.drinksmixer.com/drink12208.html" + "url": "https://www.drinksmixer.com/drink12208.html" }, { "directions": "Pour in order into a shot glass, and serve.", @@ -115980,7 +115980,7 @@ "Bailey's\u00ae Irish cream" ], "title": "Paintball recipe", - "url": "http://www.drinksmixer.com/drink12209.html" + "url": "https://www.drinksmixer.com/drink12209.html" }, { "directions": "Pour the moonshine and water into a normal glass, and stick the sausage (the real Pajala Sunrise uses Falukorv/Falun Sausage, a swedish sausage) on the edge of the glass, like you do with lime slices. Serve with a straw and umbrella.", @@ -115990,7 +115990,7 @@ "sausage" ], "title": "Pajala Sunrise recipe", - "url": "http://www.drinksmixer.com/drink12210.html" + "url": "https://www.drinksmixer.com/drink12210.html" }, { "directions": "Fill a collins glass with ice to the top. Squeeze in juice of half of a small lime. Sprinkle salt over top. Add tequila. Fill with Squirt. Give a little stir, then sprinkle a little salt on the top before serving (optional).", @@ -116001,7 +116001,7 @@ "salt" ], "title": "Paloma #2 recipe", - "url": "http://www.drinksmixer.com/drink12211.html" + "url": "https://www.drinksmixer.com/drink12211.html" }, { "directions": "Add ingredients to a shaker with ice. Shake and strain into an aperitif glass, and serve. (Good for kids who wants to have a drink like grown ups.)", @@ -116010,7 +116010,7 @@ "non-alcoholic creme de menthe" ], "title": "Pam Super Juice recipe", - "url": "http://www.drinksmixer.com/drink12212.html" + "url": "https://www.drinksmixer.com/drink12212.html" }, { "directions": "Place ingredients into a cocktail shaker over ice. Shake and strain into a martini cocktail glass. Consume as a shot.", @@ -116021,7 +116021,7 @@ "Blue Curacao liqueur" ], "title": "Pan-Galactic Gargle Blaster #3 recipe", - "url": "http://www.drinksmixer.com/drink12214.html" + "url": "https://www.drinksmixer.com/drink12214.html" }, { "directions": "Fill a collins glass 3/4 full with ice. Slowly add the lime juice , then bulid with gin. Slowly fill with 7-Up leaving green and clear layers intact until just before drinking. Garnish with a twist of lime on a bamboo skewer, and serve.", @@ -116031,7 +116031,7 @@ "7-Up\u00ae soda" ], "title": "Panama City Gin 'n' Juice recipe", - "url": "http://www.drinksmixer.com/drink12217.html" + "url": "https://www.drinksmixer.com/drink12217.html" }, { "directions": "Pour the frangelico into a shot glass. Place a slice of lemon over the glass, pour some sugar over the lemon, then cover with a dash of Grand Marnier (so the sugar becomes sticky and partially dissolves). Drink, then bite the lemon.", @@ -116042,7 +116042,7 @@ "sugar" ], "title": "Pancake recipe", - "url": "http://www.drinksmixer.com/drink12218.html" + "url": "https://www.drinksmixer.com/drink12218.html" }, { "directions": "Add ingredients to a mixing glass half-filled with ice. Stir well. Strain into a highball glass and serve.", @@ -116053,7 +116053,7 @@ "Pepsi\u00ae Diet" ], "title": "Pansy Ass recipe", - "url": "http://www.drinksmixer.com/drink12219.html" + "url": "https://www.drinksmixer.com/drink12219.html" }, { "directions": "Stir the rum, triple sec and lime juice together in an old-fashioned glass 3/4 filled with ice cubes. Fill with Sprite, and serve.", @@ -116064,7 +116064,7 @@ "Sprite\u00ae soda" ], "title": "Panther Piss recipe", - "url": "http://www.drinksmixer.com/drink12220.html" + "url": "https://www.drinksmixer.com/drink12220.html" }, { "directions": "Fill a collins glass with ice. Add ingredients and stir. Garnish with a cherry or two, and serve.", @@ -116074,7 +116074,7 @@ "Hawaiian Punch\u00ae" ], "title": "Panty Dropper #2 recipe", - "url": "http://www.drinksmixer.com/drink12221.html" + "url": "https://www.drinksmixer.com/drink12221.html" }, { "directions": "Fill a 5-gallon cooler (with pour spout) with ice. Add the rum, tequila, Carlos Rosi, and stir. Add remaining ingredients and stir again. Let sit for 5 minutes before serving out.", @@ -116090,7 +116090,7 @@ "limes" ], "title": "Panty Dropper Punch recipe", - "url": "http://www.drinksmixer.com/drink12222.html" + "url": "https://www.drinksmixer.com/drink12222.html" }, { "directions": "Stir together with ice and serve in a cordial glass.", @@ -116099,7 +116099,7 @@ "pineapple juice" ], "title": "Panty Ripper recipe", - "url": "http://www.drinksmixer.com/drink12223.html" + "url": "https://www.drinksmixer.com/drink12223.html" }, { "directions": "Pour all ingredients into a cocktail shaker filled with ice. Shake, strain into a 2-oz shot glass, and serve.", @@ -116110,7 +116110,7 @@ "Sprite\u00ae soda" ], "title": "Par 4 recipe", - "url": "http://www.drinksmixer.com/drink12224.html" + "url": "https://www.drinksmixer.com/drink12224.html" }, { "directions": "Pour 3/4 oz of the grenadine into a pina-colada glass. Blend the orange juice with fresh cream and sugar syrup seperately. Pour into glass. Float 1/4 oz of the grenadine on top. Garnish with orange wheel and mint leaf. Serve.", @@ -116121,7 +116121,7 @@ "sugar syrup" ], "title": "Paradise Sunset recipe", - "url": "http://www.drinksmixer.com/drink12225.html" + "url": "https://www.drinksmixer.com/drink12225.html" }, { "directions": "Mix all ingredients in order as listed in what you would think is a big enough container. Stir well. Can be served chilled, on the rocks, or as is. Very potent.", @@ -116139,7 +116139,7 @@ "blackberry brandy" ], "title": "Paralyzer #3 recipe", - "url": "http://www.drinksmixer.com/drink12226.html" + "url": "https://www.drinksmixer.com/drink12226.html" }, { "directions": "Fill a chilled highball glass with ice. Pour in Kahlua and vodka. Pour in cola next. Very important otherwise the milk will curdle. Top with cold milk and a cherry for the ladies. Add a straw. The drink should be served unstirred. \r", @@ -116151,7 +116151,7 @@ "maraschino cherry" ], "title": "Saskatchewan Paralyzer recipe", - "url": "http://www.drinksmixer.com/drink12227.html" + "url": "https://www.drinksmixer.com/drink12227.html" }, { "directions": "Pour ingredients into a shot glass in above order, stir and serve.", @@ -116162,7 +116162,7 @@ "Captain Morgan\u00ae Parrot Bay mango rum" ], "title": "Pardo's Party recipe", - "url": "http://www.drinksmixer.com/drink12228.html" + "url": "https://www.drinksmixer.com/drink12228.html" }, { "directions": "Pour Grand Marnier, vodka, orange juice and cranberry juice into a cocktail shaker with ice. Shake and strain into a chilled cocktail glass, and serve.", @@ -116173,7 +116173,7 @@ "cranberry juice" ], "title": "Parisian Cocktail #2 recipe", - "url": "http://www.drinksmixer.com/drink12229.html" + "url": "https://www.drinksmixer.com/drink12229.html" }, { "directions": "Pour all the ingredents into a cocktail shaker with ice. Shake, then strain into a frosted margarita glass and serve.", @@ -116183,7 +116183,7 @@ "Kwai Feh\u00ae lychee liqueur" ], "title": "Parma Nova recipe", - "url": "http://www.drinksmixer.com/drink12230.html" + "url": "https://www.drinksmixer.com/drink12230.html" }, { "directions": "Pour the Captain Morgan Parrot Bay mango rum over ice in a collins glass. Add cranberry and orange juice, stir and serve.", @@ -116193,7 +116193,7 @@ "orange juice" ], "title": "Parrot Bay Mango Madras recipe", - "url": "http://www.drinksmixer.com/drink12231.html" + "url": "https://www.drinksmixer.com/drink12231.html" }, { "directions": "Pour both ingredients into a cocktail shaker half-filled with ice. Shake and strain into a hurricane glass filled with ice. Garnish with a fresh peach slice of lime wedge, and serve.", @@ -116202,7 +116202,7 @@ "blueberry juice" ], "title": "Parry Punch recipe", - "url": "http://www.drinksmixer.com/drink12232.html" + "url": "https://www.drinksmixer.com/drink12232.html" }, { "directions": "Pre-crush as much ice as desired. Combine juice, wipe-out (an imitation Malibu rum) and cream in bowl with milkshake blender, add ice. Stir. (Note: as with ice, amount of cream used varies according to the preference of the drinker, has been known to be served without cream.)\r", @@ -116212,7 +116212,7 @@ "Bulla\u00ae thickened cream" ], "title": "Party Colada recipe", - "url": "http://www.drinksmixer.com/drink12233.html" + "url": "https://www.drinksmixer.com/drink12233.html" }, { "directions": "Add all the ingredients in a large cooler. (Note: use 2 cans water to 1 can orange juice concentrate first). Make sure all fruit is bite size. Add whole round slices of lime and slices of 4 or more bananas. Let soak for 1-2 days and consume. You may soak the fruit just in the alcohol for a few hours before adding juices if you choose. Throw in bottles of frozen water to chill.", @@ -116233,7 +116233,7 @@ "pineapple juice" ], "title": "Party Jungle Juice recipe", - "url": "http://www.drinksmixer.com/drink12235.html" + "url": "https://www.drinksmixer.com/drink12235.html" }, { "directions": "Pour everything into a shaker, and shake until frosted. Should turn a blue-grey color. Strain into a glass with or without ice. Serve.", @@ -116244,7 +116244,7 @@ "creme de cassis" ], "title": "Passat #2 recipe", - "url": "http://www.drinksmixer.com/drink12236.html" + "url": "https://www.drinksmixer.com/drink12236.html" }, { "directions": "Blend the frozen grape juice and ice together in a blender. Add the rum and blend until smooth. Add whipped cream to desired smoothness. Pour into a hurricane glass and serve.", @@ -116255,7 +116255,7 @@ "grape juice" ], "title": "Passion recipe", - "url": "http://www.drinksmixer.com/drink12237.html" + "url": "https://www.drinksmixer.com/drink12237.html" }, { "directions": "Add all ingredients (except grenadine) to a cocktail shaker half-filled with ice cubes. Pour a small amount of grenadine into a collins glass half-filled with ice. Pour the contents of the shaker into the glass. Garnish with a cherry or orange slice, and serve.", @@ -116271,7 +116271,7 @@ "Bacardi\u00ae 151 rum" ], "title": "Passion Punch #2 recipe", - "url": "http://www.drinksmixer.com/drink12238.html" + "url": "https://www.drinksmixer.com/drink12238.html" }, { "directions": "Add the vodka and strawberry schnapps to a highball glass filled with ice cubes. Use equal parts of cranberry and orange juice to fill the glass. Serve with a straw.", @@ -116282,7 +116282,7 @@ "orange juice" ], "title": "Passionate Affair recipe", - "url": "http://www.drinksmixer.com/drink12239.html" + "url": "https://www.drinksmixer.com/drink12239.html" }, { "directions": "Add all ingredients to a cocktail shaker with some cracked ice. Shake and pour (incl. ice) into a martini cocktail glass, and serve.", @@ -116293,7 +116293,7 @@ "lime juice" ], "title": "Passionate Cosmo recipe", - "url": "http://www.drinksmixer.com/drink12240.html" + "url": "https://www.drinksmixer.com/drink12240.html" }, { "directions": "Stir ingredients together on the rocks in a highball glass, and serve.", @@ -116302,7 +116302,7 @@ "Red Bull\u00ae energy drink" ], "title": "Passionate Toro recipe", - "url": "http://www.drinksmixer.com/drink12241.html" + "url": "https://www.drinksmixer.com/drink12241.html" }, { "directions": "Pour the Passoa into a collins glass almost filled with ice. Fill to the top with orange juice, stir well, and serve.", @@ -116311,7 +116311,7 @@ "orange juice" ], "title": "Passoa Orange recipe", - "url": "http://www.drinksmixer.com/drink12242.html" + "url": "https://www.drinksmixer.com/drink12242.html" }, { "directions": "Pour ingredients over ice in a collins glass, stir a little and serve.", @@ -116321,7 +116321,7 @@ "grapefruit juice" ], "title": "Patrick's Bloody Mother recipe", - "url": "http://www.drinksmixer.com/drink12243.html" + "url": "https://www.drinksmixer.com/drink12243.html" }, { "directions": "Pour grenadine into a shot glass. Slowly pour in blue Curacao to create a blue layer, then slowly add vodka to create clear top layer. Serve.", @@ -116331,7 +116331,7 @@ "grenadine syrup" ], "title": "Patriot recipe", - "url": "http://www.drinksmixer.com/drink12244.html" + "url": "https://www.drinksmixer.com/drink12244.html" }, { "directions": "Stir ingredients in a mixing glass, strain into collins glass filled with ice. Garnish with a cherry, and serve.", @@ -116342,7 +116342,7 @@ "maraschino syrup" ], "title": "Paul's Manhattan recipe", - "url": "http://www.drinksmixer.com/drink12245.html" + "url": "https://www.drinksmixer.com/drink12245.html" }, { "directions": "Fill up a highball glass with ice cubes. Pour the Southern Comfort, and fill the rest of the glass with 7-up. Serve.", @@ -116351,7 +116351,7 @@ "7-Up\u00ae soda" ], "title": "Pauligno recipe", - "url": "http://www.drinksmixer.com/drink12246.html" + "url": "https://www.drinksmixer.com/drink12246.html" }, { "directions": "Pit the peaches and cut into quarters. Add to a blender with the Absolut peach vodka and the sugar. Blend well and serve in appropriate glass or cup.", @@ -116361,7 +116361,7 @@ "sugar" ], "title": "Peach Delight recipe", - "url": "http://www.drinksmixer.com/drink12248.html" + "url": "https://www.drinksmixer.com/drink12248.html" }, { "directions": "Mix the DeKuyper Sour Peach Liqueur and Smirnoff Raspberry Twist vodka, as well as a dash of lemon-lime soda (such as Sprite or Sierra Mist) in a martini cocktail shaker. Strain into a cocktail glass and drop in a maraschino cherry. Use a dash of maraschino cherry syrup in recipe if desired. Serve.", @@ -116372,7 +116372,7 @@ "maraschino cherry" ], "title": "Peach Puff Martini recipe", - "url": "http://www.drinksmixer.com/drink12251.html" + "url": "https://www.drinksmixer.com/drink12251.html" }, { "directions": "Fill a blender half up with ice. Add peaches (with syrup) and tequila. Blend until frothy. Serve in a margarita glass.", @@ -116381,7 +116381,7 @@ "peaches" ], "title": "Peach Shize recipe", - "url": "http://www.drinksmixer.com/drink12252.html" + "url": "https://www.drinksmixer.com/drink12252.html" }, { "directions": "Add crushed ice to the bottom of an old-fashioned/rocks glass, then pour all of the above ingredients in the same order as above. Decorate with a twisted slice of lemon on a tiny plastic sword with a sweet cherry. Serve.", @@ -116393,7 +116393,7 @@ "cranberry juice" ], "title": "Peachy recipe", - "url": "http://www.drinksmixer.com/drink12253.html" + "url": "https://www.drinksmixer.com/drink12253.html" }, { "directions": "Line the top of a hurricane glass with sugar. Fill cup with ice and add peach schnapps and 7-up. Add a dash of grenadine syrup. Garnish with a sword and cherry, and serve.", @@ -116403,7 +116403,7 @@ "grenadine syrup" ], "title": "Peachy Dream recipe", - "url": "http://www.drinksmixer.com/drink12254.html" + "url": "https://www.drinksmixer.com/drink12254.html" }, { "directions": "Mix ingredients together in a cocktail shaker 1/4-filled with crushed ice. Strain into a chilled cocktail glass, and serve.", @@ -116413,7 +116413,7 @@ "cinnamon schnapps" ], "title": "Peachy Keen recipe", - "url": "http://www.drinksmixer.com/drink12255.html" + "url": "https://www.drinksmixer.com/drink12255.html" }, { "directions": "Shake ingredients with ice and strain into a shot glass. Serve.", @@ -116423,7 +116423,7 @@ "cranberry juice" ], "title": "Peachy Red recipe", - "url": "http://www.drinksmixer.com/drink12256.html" + "url": "https://www.drinksmixer.com/drink12256.html" }, { "directions": "Stir ingredients together with ice in a mixing glass. Strain into a chilled cocktail glass, and serve.", @@ -116433,7 +116433,7 @@ "cranberry juice" ], "title": "Peanut Butter and Jelly Sandwich recipe", - "url": "http://www.drinksmixer.com/drink12257.html" + "url": "https://www.drinksmixer.com/drink12257.html" }, { "directions": "Combine ingredients in a shaker with ice, shake, strain into an old-fashioned glass straight up or on the rocks.\r", @@ -116444,7 +116444,7 @@ "half-and-half" ], "title": "Peanut Butter Cup #2 recipe", - "url": "http://www.drinksmixer.com/drink12258.html" + "url": "https://www.drinksmixer.com/drink12258.html" }, { "directions": "Pour the gin, tonic water and pear syrup into a highball glass almost filled with ice cubes. Stir well and serve.", @@ -116454,7 +116454,7 @@ "pear syrup" ], "title": "Pearasite recipe", - "url": "http://www.drinksmixer.com/drink12259.html" + "url": "https://www.drinksmixer.com/drink12259.html" }, { "directions": "Shake all ingredients together in a cocktail shaker, strain into a 2-oz shot glass, and serve.", @@ -116464,7 +116464,7 @@ "milk" ], "title": "Pearl Diver #2 recipe", - "url": "http://www.drinksmixer.com/drink12260.html" + "url": "https://www.drinksmixer.com/drink12260.html" }, { "directions": "Shake Midori, Malibu and vodka with ice. Strain into a shot glass. Place a straw in milk and cover other end with thumb (to capture milk in straw). Place straw with milk about halfway into shot glass and use thumb to release 1 drop of milk in center of shot. This requires some practice, but if done properly, will form a white \"pearl\" floating in the shot. Very tasty!", @@ -116475,7 +116475,7 @@ "milk" ], "title": "Pearl Diver #3 recipe", - "url": "http://www.drinksmixer.com/drink12261.html" + "url": "https://www.drinksmixer.com/drink12261.html" }, { "directions": "Mix boiling water and jello until jello is dissolved. Add Midori and vodka. Pour into 2-ounce cups. Chill until jello is set.", @@ -116486,7 +116486,7 @@ "water" ], "title": "Pearl Harbour Jello Shot recipe", - "url": "http://www.drinksmixer.com/drink12262.html" + "url": "https://www.drinksmixer.com/drink12262.html" }, { "directions": "Place all liquors in a cocktail shaker with some ice. Shake for approx. 45secs, strain into a 2-oz shot glass and serve.", @@ -116498,7 +116498,7 @@ "Kahlua\u00ae coffee liqueur" ], "title": "Pecan Coffee recipe", - "url": "http://www.drinksmixer.com/drink12263.html" + "url": "https://www.drinksmixer.com/drink12263.html" }, { "directions": "Pour the vodka and schnapps into a cocktail shaker half-filled with ice cubes. Add peach juice and shake until cold (don't use too many cubes). Strain into a shot glass and serve.", @@ -116508,7 +116508,7 @@ "peach juice" ], "title": "Peche Mignon recipe", - "url": "http://www.drinksmixer.com/drink12264.html" + "url": "https://www.drinksmixer.com/drink12264.html" }, { "directions": "Mix the gin and DeKuyper Hot Damn! together in an old-fashioned glass, and serve. ", @@ -116517,7 +116517,7 @@ "DeKuyper\u00ae Hot Damn cinnamon schnapps" ], "title": "Pellston Hottie recipe", - "url": "http://www.drinksmixer.com/drink12265.html" + "url": "https://www.drinksmixer.com/drink12265.html" }, { "directions": "Mix alcohols in an ice-filled cocktail shaker. Add the juice and grenadine, and shake. Pour into a hurricane glass (incl. ice), add puree and serve.", @@ -116530,7 +116530,7 @@ "strawberry puree" ], "title": "Penelope recipe", - "url": "http://www.drinksmixer.com/drink12266.html" + "url": "https://www.drinksmixer.com/drink12266.html" }, { "directions": "Pour all ingredients over ice cubes in a highball glass. Stir well. Garnish with a maraschino cherry and serve.", @@ -116540,7 +116540,7 @@ "banana juice" ], "title": "Penguin's Surprise recipe", - "url": "http://www.drinksmixer.com/drink12267.html" + "url": "https://www.drinksmixer.com/drink12267.html" }, { "directions": "Mix both the schnapps and chocolate milk in a cocktail shaker. Ice optional. Strain into a shot glass, and serve.", @@ -116549,7 +116549,7 @@ "chocolate milk" ], "title": "Peppermint Patty #2 recipe", - "url": "http://www.drinksmixer.com/drink12269.html" + "url": "https://www.drinksmixer.com/drink12269.html" }, { "directions": "Mix the rum, vodka and whiskey together in a cocktail shaker. Add the peppermint extract/essence to taste. Strain into a 2-oz shot glass, and serve.", @@ -116560,7 +116560,7 @@ "peppermint extract" ], "title": "Peppermint Fireball recipe", - "url": "http://www.drinksmixer.com/drink12270.html" + "url": "https://www.drinksmixer.com/drink12270.html" }, { "directions": "Pour the whisky into an old-fashioned glass. Add the Rockstar energy drink and finally the cola, and serve.", @@ -116570,7 +116570,7 @@ "Coca-Cola\u00ae" ], "title": "Lifestyle recipe", - "url": "http://www.drinksmixer.com/drink12272.html" + "url": "https://www.drinksmixer.com/drink12272.html" }, { "directions": "Mix thoroughly in a collins glass without ice, and serve.", @@ -116580,7 +116580,7 @@ "orange juice" ], "title": "Percival's Sister recipe", - "url": "http://www.drinksmixer.com/drink12273.html" + "url": "https://www.drinksmixer.com/drink12273.html" }, { "directions": "Mix above ingredients in shaker, shake hard, and strain into a 2-oz shot glass. Finish off by coating lemon wedge with sugar - bite into it after taking the shot.", @@ -116590,7 +116590,7 @@ "triple sec" ], "title": "Perfect Lemon Drop recipe", - "url": "http://www.drinksmixer.com/drink12274.html" + "url": "https://www.drinksmixer.com/drink12274.html" }, { "directions": "Mix the Grey Goose vodka, triple sec, sugar and lemon juice in a cocktail shaker half filled with ice cubes. Shake well to make sure sugar is blended. Pour strained liquor into a sugar-rimmed martini glass and garnish with a twisted peel of lemon.\r", @@ -116601,7 +116601,7 @@ "lemon juice" ], "title": "Perfect Lemon Drop Martini recipe", - "url": "http://www.drinksmixer.com/drink12275.html" + "url": "https://www.drinksmixer.com/drink12275.html" }, { "directions": "Combine all ingredients in a cocktail shaker and shake with ice. Strain into a chilled salt-rimmed cocktail glass, and serve.", @@ -116614,7 +116614,7 @@ "grenadine syrup" ], "title": "Perfect Margarita #2 recipe", - "url": "http://www.drinksmixer.com/drink12276.html" + "url": "https://www.drinksmixer.com/drink12276.html" }, { "directions": "Stir together in a highball glass, and serve.", @@ -116623,7 +116623,7 @@ "lemonade" ], "title": "Perfect Parrot recipe", - "url": "http://www.drinksmixer.com/drink12277.html" + "url": "https://www.drinksmixer.com/drink12277.html" }, { "directions": "Pour the cognac, raspberry schnapps, lemonade and vodka into a cocktail shaker half-filled with ice cubes. Shake and strain over crushed ice in a highball glass, and serve.", @@ -116634,7 +116634,7 @@ "hard lemonade" ], "title": "Perplexed Pimp recipe", - "url": "http://www.drinksmixer.com/drink12278.html" + "url": "https://www.drinksmixer.com/drink12278.html" }, { "directions": "Pour all the ingredients into a cocktail shaker and shake for about 20 seconds. Pour over a very-crushed amount of ice in a glass of your own choice.", @@ -116644,7 +116644,7 @@ "vodka" ], "title": "Peterborough Parallax recipe", - "url": "http://www.drinksmixer.com/drink12279.html" + "url": "https://www.drinksmixer.com/drink12279.html" }, { "directions": "Add three or four ice cubes to any type of large glass. Add the vodka, orange soda and orange juice. Stir and serve.", @@ -116654,7 +116654,7 @@ "orange juice" ], "title": "Orange Soda Driver recipe", - "url": "http://www.drinksmixer.com/drink12280.html" + "url": "https://www.drinksmixer.com/drink12280.html" }, { "directions": "Pour all three ingredients over ice in a cocktail shaker and shake until chilled. Strain into a shot glass, and serve.", @@ -116664,7 +116664,7 @@ "Jagermeister\u00ae herbal liqueur" ], "title": "Pharmacy School recipe", - "url": "http://www.drinksmixer.com/drink12281.html" + "url": "https://www.drinksmixer.com/drink12281.html" }, { "directions": "Mix all three ingredients together in a double shot glass, and serve.", @@ -116674,7 +116674,7 @@ "green apple schnapps" ], "title": "Philadelphia Eagle recipe", - "url": "http://www.drinksmixer.com/drink12282.html" + "url": "https://www.drinksmixer.com/drink12282.html" }, { "directions": "Pour rum into a highball glass filled with ice cubes. Add lime juice and fill with cranberry juice to taste. Add splash of grenadine, and serve.", @@ -116685,7 +116685,7 @@ "grenadine syrup" ], "title": "Phuck Suck recipe", - "url": "http://www.drinksmixer.com/drink12284.html" + "url": "https://www.drinksmixer.com/drink12284.html" }, { "directions": "Stir together in a shot glass, and serve.", @@ -116694,7 +116694,7 @@ "Monster\u00ae energy drink" ], "title": "Pickerdo recipe", - "url": "http://www.drinksmixer.com/drink12285.html" + "url": "https://www.drinksmixer.com/drink12285.html" }, { "directions": "Mix vodka of your choice and pickle juice together in equal parts in a shot glass, and serve. Especially good with garlic pickle juice.", @@ -116703,7 +116703,7 @@ "pickle juice" ], "title": "Pickled Ruski recipe", - "url": "http://www.drinksmixer.com/drink12286.html" + "url": "https://www.drinksmixer.com/drink12286.html" }, { "directions": "Pour the Buttershots and Bailey's into a double-shot glass. Float Goldschlager on top, and serve.", @@ -116713,7 +116713,7 @@ "Goldschlager\u00ae cinnamon schnapps" ], "title": "Pierced Nipple #2 recipe", - "url": "http://www.drinksmixer.com/drink12287.html" + "url": "https://www.drinksmixer.com/drink12287.html" }, { "directions": "Add all ingredients (except grenadine) to a cocktail shaker half-filled with ice cubes. Add grenadine to achieve a light pink color. Strain into a chilled cocktail glass, and serve.", @@ -116726,7 +116726,7 @@ "Sprite\u00ae soda" ], "title": "Pink Star recipe", - "url": "http://www.drinksmixer.com/drink12288.html" + "url": "https://www.drinksmixer.com/drink12288.html" }, { "directions": "Place a slice of lemon, half a strawberry and mint leaves in the bottom of a highball glass. Pour alcohol in. Fill glass upto top with ice, and pour lemonade over. Stir and serve.", @@ -116740,7 +116740,7 @@ "mint" ], "title": "Pimm's Punch recipe", - "url": "http://www.drinksmixer.com/drink12289.html" + "url": "https://www.drinksmixer.com/drink12289.html" }, { "directions": "Add ingredients to a cocktail shaker half-filled with ice cubes. Shake and pour into a highball glass, and serve.", @@ -116753,7 +116753,7 @@ "grenadine syrup" ], "title": "Pimp Juice #2 recipe", - "url": "http://www.drinksmixer.com/drink12290.html" + "url": "https://www.drinksmixer.com/drink12290.html" }, { "directions": "Pour all four ingredients into a cocktail shaker half-filled with ice and shake well. Strain into a highball glass, and serve.", @@ -116764,7 +116764,7 @@ "pineapple juice" ], "title": "Pimp Juice #3 recipe", - "url": "http://www.drinksmixer.com/drink12291.html" + "url": "https://www.drinksmixer.com/drink12291.html" }, { "directions": "Pour the Pimp Juice into a shot glass, top with Absolut vodka and shoot.", @@ -116773,7 +116773,7 @@ "Pimp\u00ae apple juice" ], "title": "Pimp Ride recipe", - "url": "http://www.drinksmixer.com/drink12292.html" + "url": "https://www.drinksmixer.com/drink12292.html" }, { "directions": "Stir ingredients together in a cocktail glass, and consume in one.", @@ -116784,7 +116784,7 @@ "Tanqueray\u00ae gin" ], "title": "Pimpslap recipe", - "url": "http://www.drinksmixer.com/drink12293.html" + "url": "https://www.drinksmixer.com/drink12293.html" }, { "directions": "Add all of the above ingredients to a blender with plenty of crushed ice, and blend well. Pour into a hurricane glass, garnish as desired and serve.", @@ -116795,7 +116795,7 @@ "pineapples" ], "title": "Pina Colada #4 recipe", - "url": "http://www.drinksmixer.com/drink12294.html" + "url": "https://www.drinksmixer.com/drink12294.html" }, { "directions": "Add the gelatin/jello to the hot juice, and stir until dissolved. Add the rum. Pour into (non-glass) shot glasses or 1-oz portion cups and chill as directed.", @@ -116805,7 +116805,7 @@ "jello" ], "title": "Pina Colada Jello Shots recipe", - "url": "http://www.drinksmixer.com/drink12295.html" + "url": "https://www.drinksmixer.com/drink12295.html" }, { "directions": "Combine ingredients in a blender. Blend until desired consistancy, pour into a Champagne Tulip and serve.", @@ -116816,7 +116816,7 @@ "crushed ice" ], "title": "Puerto Rican Pina Colada recipe", - "url": "http://www.drinksmixer.com/drink12296.html" + "url": "https://www.drinksmixer.com/drink12296.html" }, { "directions": "Combine ingredients in a cocktail shaker half-filled with ice cubes. Shake until frothy. Pour into 1-2 chilled martini cocktail glasses, and serve.", @@ -116829,7 +116829,7 @@ "cinnamon" ], "title": "Pinata recipe", - "url": "http://www.drinksmixer.com/drink12297.html" + "url": "https://www.drinksmixer.com/drink12297.html" }, { "directions": "Add vodka, Southern Comfort, first amount of grenadine, sloe gin, and triple sec to a cocktail shaker half-filled with ice cubes. Add juices and shake briefly. Pour into a highball glass and drizzle a further splash of grenadine around the edge of the glass. Garnish with a cherry and slice of orange, and serve.", @@ -116845,7 +116845,7 @@ "pineapple juice" ], "title": "Pinchaser recipe", - "url": "http://www.drinksmixer.com/drink12298.html" + "url": "https://www.drinksmixer.com/drink12298.html" }, { "directions": "Pour into a cocktail shaker half-filled with ice cubes. Shake vigorously for a few seconds; strain into a martini cocktail glass, and serve.", @@ -116855,7 +116855,7 @@ "pineapple juice" ], "title": "Pineapple Martini recipe", - "url": "http://www.drinksmixer.com/drink12299.html" + "url": "https://www.drinksmixer.com/drink12299.html" }, { "directions": "Shake over ice. Strain into a cocktail glass and serve.", @@ -116865,7 +116865,7 @@ "pineapple juice" ], "title": "Pineapple Midori Colada recipe", - "url": "http://www.drinksmixer.com/drink12300.html" + "url": "https://www.drinksmixer.com/drink12300.html" }, { "directions": "Pour Bacardi onto pineapple slices and leave to chill until ready to serve, then add your wine and juice and you're ready to go. It'd be best if all the ingredients were already chilled. And leave eating the pineapple to last, it tends to ferment the alcohol. Enjoy!", @@ -116876,7 +116876,7 @@ "pineapple" ], "title": "Pineapple Puncher recipe", - "url": "http://www.drinksmixer.com/drink12301.html" + "url": "https://www.drinksmixer.com/drink12301.html" }, { "directions": "Pour pineapple juice over a glass of ice. Add a squirt of grenadine, and serve.", @@ -116885,7 +116885,7 @@ "grenadine syrup" ], "title": "Pineapple Sunrise recipe", - "url": "http://www.drinksmixer.com/drink12302.html" + "url": "https://www.drinksmixer.com/drink12302.html" }, { "directions": "Pour Irish cream, vodka, DeKuyper Buttershots and pineapple juice into a cocktail shaker half-filled with ice. Shake and strain into a shot glass. Slowly add a splash of grenadine to the bottom of each shot glass, and serve.", @@ -116897,7 +116897,7 @@ "grenadine syrup" ], "title": "Pineapple Upside-Down Cake #2 recipe", - "url": "http://www.drinksmixer.com/drink12304.html" + "url": "https://www.drinksmixer.com/drink12304.html" }, { "directions": "Fill a stainless steel shaker 1/2 with cubed ice. Pour all ingredients over the ice. Shake until condensation forms on shaker. Strain into an old-fashioned glass and serve.", @@ -116907,7 +116907,7 @@ "pineapple juice" ], "title": "Pineapple Upside-Down Cake #3 recipe", - "url": "http://www.drinksmixer.com/drink12305.html" + "url": "https://www.drinksmixer.com/drink12305.html" }, { "directions": "Give all ingredients 5 or 6 good shakes in a cocktail shaker half-filled with ice cubes. Pour into a highball glass (without straining). Serve.", @@ -116917,7 +116917,7 @@ "Gatorade\u00ae Fruit Punch energy drink" ], "title": "Pineapples 'n' Cream recipe", - "url": "http://www.drinksmixer.com/drink12306.html" + "url": "https://www.drinksmixer.com/drink12306.html" }, { "directions": "Pour Smirnoff vodka into a highball glass filled with ice cubes. Add a large squeeze of lemon juice; this un-bitters the Vodka taste, if you want it sweeter. Fill to the top with Schweppes pink lemonade, and serve. Comes out a transperant pink colour!", @@ -116927,7 +116927,7 @@ "lemons" ], "title": "Pink Bliss recipe", - "url": "http://www.drinksmixer.com/drink12307.html" + "url": "https://www.drinksmixer.com/drink12307.html" }, { "directions": "Combine lemonade, sprite, grenadine, simple syrup, and ice in a blender (should end up looking like a pink slush). Pour into a pina-colada glass. Add the rums and serve.", @@ -116940,7 +116940,7 @@ "simple syrup" ], "title": "Pink Flamingo #3 recipe", - "url": "http://www.drinksmixer.com/drink12309.html" + "url": "https://www.drinksmixer.com/drink12309.html" }, { "directions": "Combine ingredients in a cocktail shaker half-filled with ice cubes. Shake and strain into a martini cocktail glass with a thin disk of lime floating in drink, and serve.", @@ -116951,7 +116951,7 @@ "cranberry juice" ], "title": "Pink Iguana recipe", - "url": "http://www.drinksmixer.com/drink12310.html" + "url": "https://www.drinksmixer.com/drink12310.html" }, { "directions": "Add ingredients to a cocktail shaker half-filled with ice cubes. Shake and strain into a parfait glass, and serve.", @@ -116961,7 +116961,7 @@ "milk" ], "title": "Pink Lady #2 recipe", - "url": "http://www.drinksmixer.com/drink12311.html" + "url": "https://www.drinksmixer.com/drink12311.html" }, { "directions": "Drain cherries, reserve liquid. Macerate drained cherries in vodka for at least 24 hours (48 preferrably). Mix all ingredients except sloe gin. Serve over ice cubes in a hurricane topped with a splash of sloe gin. Garnish with cherries.", @@ -116974,7 +116974,7 @@ "sloe gin" ], "title": "Pink Lady Punch recipe", - "url": "http://www.drinksmixer.com/drink12312.html" + "url": "https://www.drinksmixer.com/drink12312.html" }, { "directions": "Pour equal parts of vodka and triple sec into a cocktail shaker half-filled with ice. Add splashes of lime juice and grenadine, and serve.", @@ -116985,7 +116985,7 @@ "lime juice" ], "title": "Pink Lemonade #3 recipe", - "url": "http://www.drinksmixer.com/drink12313.html" + "url": "https://www.drinksmixer.com/drink12313.html" }, { "directions": "Stir ingredients together in a highball glass filled with ice cubes, and serve.", @@ -116995,7 +116995,7 @@ "cranberry juice" ], "title": "Pink Mafia recipe", - "url": "http://www.drinksmixer.com/drink12314.html" + "url": "https://www.drinksmixer.com/drink12314.html" }, { "directions": "Stir ingredients together in a highball glass almost filled with ice cubes, and serve.", @@ -117004,7 +117004,7 @@ "pink lemonade" ], "title": "Pink Mikey recipe", - "url": "http://www.drinksmixer.com/drink12315.html" + "url": "https://www.drinksmixer.com/drink12315.html" }, { "directions": "Pour ingredients into a cocktail shaker half-filled with ice, shake and strain into a chilled martini glass. For more dramatic appearance, keep Chambord seperate and pour in slowly at end - it will settle to the bottom.", @@ -117016,6 +117016,6 @@ "espresso" ], "title": "Pink Mocha Martini recipe", - "url": "http://www.drinksmixer.com/drink12316.html" + "url": "https://www.drinksmixer.com/drink12316.html" } ] diff --git a/data/reaction_macros.json b/data/reaction_macros.json index cce6b007c..a81831a0b 100644 --- a/data/reaction_macros.json +++ b/data/reaction_macros.json @@ -12,7 +12,7 @@ "https://i.imgur.com/ubPvLt4.jpg", "https://i.imgur.com/xMlks5p.jpg", "https://i.imgur.com/Awqpq.gif", - "http://nerdist.com/wp-content/uploads/2016/04/Thanks-Obama-2.gif" + "https://nerdist.com/wp-content/uploads/2016/04/Thanks-Obama-2.gif" ], "facepalm_macros": [ "https://i.imgur.com/iWKad22r.jpg", @@ -41,7 +41,7 @@ "https://i.imgur.com/RW2NAcQ.jpg", "https://i.imgur.com/1bmcUnj.gif", "https://i.imgur.com/r43WCSK.gif", - "http://img.photobucket.com/albums/v642/StarRose/GIFS/headdesk.gif" + "https://img.photobucket.com/albums/v642/StarRose/GIFS/headdesk.gif" ], "fetish_macros": [ "https://i.imgur.com/FFy1IEg.jpg", diff --git a/docs/README.md b/docs/README.md index 5e7ccb1fa..bc49e9995 100644 --- a/docs/README.md +++ b/docs/README.md @@ -15,11 +15,11 @@ For each set of docs, a PDF and HTML version is also available. Refresh (this repo) is the newest CloudBot, which cleans up the internals of the bot and brings support for Python 3.4. ## Developers -* [Luke Rogers](http://git.io/theluke) -* [neersighted](http://git.io/neersighted) -* [daboross](http://git.io/dabo) -* [foxlet](http://git.io/foxlet) +* [Luke Rogers](https://git.io/theluke) +* [neersighted](https://git.io/neersighted) +* [daboross](https://git.io/dabo) +* [foxlet](https://git.io/foxlet) ### Thanks to -* [rmmh](http://git.io/rmmh) +* [rmmh](https://git.io/rmmh) * [The Noodle](https://github.com/thenoodle68) diff --git a/docs/installing/win.md b/docs/installing/win.md index 6ef06cf8f..aec61ff5e 100644 --- a/docs/installing/win.md +++ b/docs/installing/win.md @@ -11,7 +11,7 @@ You can usually install `pip` via the following python command in cmd: python3 -m ensurepip ``` -If that doesn't work, follow [this guide](http://simpledeveloper.com/how-to-install-easy_install/) and then run `easy_install pip` in cmd. +If that doesn't work, follow [this guide](https://simpledeveloper.com/how-to-install-easy_install/) and then run `easy_install pip` in cmd. ### Downloading @@ -27,4 +27,4 @@ These can be installed with `pip` (The Python package manager) by running the fo pip install -r requirements.txt -Because installing `lxml` can be quite difficult on Windows (you may get errors running the command above) due to it requiring compilation, you can find a pre-built distribution at [http://www.lfd.uci.edu/~gohlke/pythonlibs/#lxml](http://www.lfd.uci.edu/~gohlke/pythonlibs/#lxml) +Because installing `lxml` can be quite difficult on Windows (you may get errors running the command above) due to it requiring compilation, you can find a pre-built distribution at [https://www.lfd.uci.edu/~gohlke/pythonlibs/#lxml](https://www.lfd.uci.edu/~gohlke/pythonlibs/#lxml) diff --git a/docs/user/googledevconsole_api.md b/docs/user/googledevconsole_api.md index 04984307c..8e0ef3acd 100644 --- a/docs/user/googledevconsole_api.md +++ b/docs/user/googledevconsole_api.md @@ -46,7 +46,7 @@ Select to create a ***Server Key*** ![GDC Server Key](img/gdev_6.png?raw=true "Server Key") -Enter the Public IPs of the Cloudbot instance you plan to assign to this key. If you don't know it, running `wget -qO- http://icanhazip.com/` within your terminal should return it. Click ***Create***. +Enter the Public IPs of the Cloudbot instance you plan to assign to this key. If you don't know it, running `wget -qO- https://icanhazip.com/` within your terminal should return it. Click ***Create***. ![GDC Enter IPs](img/gdev_7.png?raw=true "Enter IPs") diff --git a/docs/user/wordnik_api.md b/docs/user/wordnik_api.md index cd03c71a8..05359a171 100644 --- a/docs/user/wordnik_api.md +++ b/docs/user/wordnik_api.md @@ -5,6 +5,6 @@ In this guide, we will cover the setup of the Wordnik API for use within CloudBo - plugins/wordnik.py ## 1 - Sign Up for a Wordnik Developer Account -You can create an account at http://developer.wordnik.com/. Once you have one, simply fill out the form at that very page. +You can create an account at https://developer.wordnik.com/. Once you have one, simply fill out the form at that very page. ![Sign Up for an Account](img/wn_1.png?raw=true "Sign Up for an Account") diff --git a/plugins/animal_gifs.py b/plugins/animal_gifs.py index 238a40cc8..6c61cbdb3 100644 --- a/plugins/animal_gifs.py +++ b/plugins/animal_gifs.py @@ -1,5 +1,5 @@ """ -All GIFs courtesy of http://bestanimations.com/ +All GIFs courtesy of https://bestanimations.com/ """ import random from urllib.parse import urljoin @@ -7,7 +7,7 @@ from cloudbot import hook from cloudbot.util.http import get_soup -BASE_URL = "http://bestanimations.com/Animals/Mammals/Dogs/" +BASE_URL = "https://bestanimations.com/Animals/Mammals/Dogs/" DOG_PAGES = ( "Dogs.html", "Dogs2.html", # Pugs @@ -35,7 +35,7 @@ def get_random_gif(url): @hook.command(autohelp=False) def doggifs(reply): - """- Returns a random dog GIF from http://bestanimations.com/""" + """- Returns a random dog GIF from https://bestanimations.com/""" page = random.choice(DOG_PAGES) url = urljoin(BASE_URL, page) try: diff --git a/plugins/brainfuck.py b/plugins/brainfuck.py index b3b970ff6..d9438e15b 100644 --- a/plugins/brainfuck.py +++ b/plugins/brainfuck.py @@ -1,5 +1,5 @@ """brainfuck interpreter adapted from (public domain) code at -http://brainfuck.sourceforge.net/brain.py""" +https://brainfuck.sourceforge.net/brain.py""" import random import re diff --git a/plugins/chatbot.py b/plugins/chatbot.py index 5bb7bc432..9b1e73522 100644 --- a/plugins/chatbot.py +++ b/plugins/chatbot.py @@ -21,6 +21,6 @@ def make_api(bot): def chitchat(text): """ - chat with cleverbot.com""" if not container.api: - return "Please add an API key from http://www.cleverbot.com/api to enable this feature." + return "Please add an API key from https://www.cleverbot.com/api to enable this feature." return container.api.say(text) diff --git a/plugins/duckhunt.py b/plugins/duckhunt.py index d9707f28e..dc9f83019 100644 --- a/plugins/duckhunt.py +++ b/plugins/duckhunt.py @@ -629,7 +629,9 @@ def display_scores(score_type: ScoreType, event, text, chan, conn, db): chan_pfx = "Duck {noun} scores in {chan}: ".format( noun=score_type.noun, chan=chan ) - no_ducks = "It appears no one has {verb} any ducks yet." + no_ducks = "It appears no one has {verb} any ducks yet.".format( + verb=score_type.verb + ) out = global_pfx if text else chan_pfx diff --git a/plugins/etymology.py b/plugins/etymology.py index 90b82f416..ba945600c 100644 --- a/plugins/etymology.py +++ b/plugins/etymology.py @@ -20,7 +20,7 @@ def etymology(text, reply): """ - retrieves the etymology of """ - url = "http://www.etymonline.com/index.php" + url = "https://www.etymonline.com/index.php" response = requests.get(url, params={"term": text}) diff --git a/plugins/fact.py b/plugins/fact.py index aeffcbe6d..270254bf3 100644 --- a/plugins/fact.py +++ b/plugins/fact.py @@ -12,7 +12,7 @@ def fact(reply): fact_type = random.choice(types) try: json = http.get_json( - "http://numbersapi.com/random/{}?json".format(fact_type) + "https://numbersapi.com/random/{}?json".format(fact_type) ) except Exception: reply("There was an error contacting the numbersapi.com API.") diff --git a/plugins/feeds.py b/plugins/feeds.py index c8cfd685e..027b55e0e 100644 --- a/plugins/feeds.py +++ b/plugins/feeds.py @@ -11,8 +11,8 @@ def __init__(self, url, limit=3): ALIASES = { - "xkcd": FeedAlias("http://xkcd.com/rss.xml"), - "ars": FeedAlias("http://feeds.arstechnica.com/arstechnica/index"), + "xkcd": FeedAlias("https://xkcd.com/rss.xml"), + "ars": FeedAlias("https://feeds.arstechnica.com/arstechnica/index"), "pip": FeedAlias("https://pypi.python.org/pypi?%3Aaction=rss", 6), "pypi": FeedAlias("https://pypi.python.org/pypi?%3Aaction=rss", 6), "py": FeedAlias("https://pypi.python.org/pypi?%3Aaction=rss", 6), @@ -37,8 +37,8 @@ def __init__(self, url, limit=3): "nz": FeedAlias( "https://news.google.com/news?pz=1&cf=all&ned=nz&hl=en&topic=n&output=rss" ), - "anand": FeedAlias("http://www.anandtech.com/rss/"), - "anandtech": FeedAlias("http://www.anandtech.com/rss/"), + "anand": FeedAlias("https://www.anandtech.com/rss/"), + "anandtech": FeedAlias("https://www.anandtech.com/rss/"), } diff --git a/plugins/giphy.py b/plugins/giphy.py index 8cddd9053..3088566c7 100644 --- a/plugins/giphy.py +++ b/plugins/giphy.py @@ -4,7 +4,7 @@ from cloudbot import hook -api_url = "http://api.giphy.com/v1/gifs" +api_url = "https://api.giphy.com/v1/gifs" @hook.command("gif", "giphy") diff --git a/plugins/google_cse.py b/plugins/google_cse.py index a1a9255cc..dc9392982 100644 --- a/plugins/google_cse.py +++ b/plugins/google_cse.py @@ -5,7 +5,7 @@ Module requires a Google Custom Search API key and a Custom Search Engine ID in order to function. Created By: - - Foxlet + - Foxlet License: GNU General Public License (Version 3) diff --git a/plugins/googleurlparse.py b/plugins/googleurlparse.py index bb8b3613b..0b86e3cfd 100644 --- a/plugins/googleurlparse.py +++ b/plugins/googleurlparse.py @@ -11,7 +11,7 @@ def google_url(match): matches = match.group(1) url = matches - url = "http://{}".format(url) + url = "https://{}".format(url) out = ( "".join( [ diff --git a/plugins/horoscope.py b/plugins/horoscope.py index cfbad0946..8e942c168 100644 --- a/plugins/horoscope.py +++ b/plugins/horoscope.py @@ -14,7 +14,7 @@ Column("sign", String), ) -BASE_URL = URL("http://www.horoscope.com/us/horoscopes/general/") +BASE_URL = URL("https://www.horoscope.com/us/horoscopes/general/") DAILY_URL = BASE_URL / "horoscope-general-daily-today.aspx" SIGN_MAP = { diff --git a/plugins/imgur.py b/plugins/imgur.py index 617c90027..a8af8b1a6 100644 --- a/plugins/imgur.py +++ b/plugins/imgur.py @@ -118,7 +118,7 @@ def imgur(text): # if the search was a subreddit search, add the reddit comment link if is_reddit: - reddit_url = web.try_shorten("http://reddit.com" + item.reddit_comments) + reddit_url = web.try_shorten("https://reddit.com" + item.reddit_comments) url = "{} ({})".format(item.link, reddit_url) else: url = "{}".format(item.link) diff --git a/plugins/issafe.py b/plugins/issafe.py index d1c039bec..ea401fcd1 100644 --- a/plugins/issafe.py +++ b/plugins/issafe.py @@ -4,7 +4,7 @@ Check the Google Safe Browsing list to see a website's safety rating. Created By: - - Foxlet + - Foxlet License: GNU General Public License (Version 3) diff --git a/plugins/jokes.py b/plugins/jokes.py index 33f056497..c9382b41b 100644 --- a/plugins/jokes.py +++ b/plugins/jokes.py @@ -118,7 +118,7 @@ def awesome(text, is_nick_valid): target = text.split(" ")[0] if not is_nick_valid(target): return "Sorry I can't tell {} how awesome they are.".format(target) - link = "http://{}.is-awesome.cool/".format(target) + link = "https://{}.is-awesome.cool/".format(target) return "{}: I am blown away by your recent awesome action(s). Please read \x02{}\x02".format( target, link ) diff --git a/plugins/lastfm.py b/plugins/lastfm.py index 8e0b0485e..15e3f0f0e 100644 --- a/plugins/lastfm.py +++ b/plugins/lastfm.py @@ -11,7 +11,7 @@ from cloudbot.bot import bot from cloudbot.util import database, timeformat, web -api_url = "http://ws.audioscrobbler.com/2.0/?format=json" +api_url = "https://ws.audioscrobbler.com/2.0/?format=json" table = Table( "lastfm", diff --git a/plugins/lmgtfy.py b/plugins/lmgtfy.py index 4d80e3717..6b95d53a4 100644 --- a/plugins/lmgtfy.py +++ b/plugins/lmgtfy.py @@ -8,6 +8,6 @@ def lmgtfy(text): """[phrase] - gets a lmgtfy.com link for the specified phrase""" - link = "http://lmgtfy.com/?q={}".format(quote(text)) + link = "https://lmgtfy.com/?q={}".format(quote(text)) return web.try_shorten(link) diff --git a/plugins/lyricsnmusic.py b/plugins/lyricsnmusic.py index ce65b67ab..756987924 100644 --- a/plugins/lyricsnmusic.py +++ b/plugins/lyricsnmusic.py @@ -6,7 +6,7 @@ from cloudbot.util import web # -api_url = "http://api.lyricsnmusic.com/songs" +api_url = "https://api.lyricsnmusic.com/songs" @hook.command("lyrics") diff --git a/plugins/minecraft_wiki.py b/plugins/minecraft_wiki.py index 0fa3ec5bd..2cef8c9a5 100644 --- a/plugins/minecraft_wiki.py +++ b/plugins/minecraft_wiki.py @@ -7,8 +7,8 @@ from cloudbot import hook from cloudbot.util import formatting -api_url = "http://minecraft.gamepedia.com/api.php?action=opensearch" -mc_url = "http://minecraft.gamepedia.com/" +api_url = "https://minecraft.gamepedia.com/api.php?action=opensearch" +mc_url = "https://minecraft.gamepedia.com/" @hook.command() diff --git a/plugins/myfitnesspal.py b/plugins/myfitnesspal.py index f7e99c725..9577e27f6 100644 --- a/plugins/myfitnesspal.py +++ b/plugins/myfitnesspal.py @@ -8,7 +8,7 @@ from cloudbot import hook from cloudbot.util.http import parse_soup -scrape_url = "http://www.myfitnesspal.com/food/diary/{}" +scrape_url = "https://www.myfitnesspal.com/food/diary/{}" @hook.command("mfp", "myfitnesspal") diff --git a/plugins/mylife.py b/plugins/mylife.py index e72cda1b7..61d63a480 100644 --- a/plugins/mylife.py +++ b/plugins/mylife.py @@ -18,7 +18,7 @@ def get_soup(url): @hook.on_start() async def refresh_fml_cache(loop): """gets a page of random FMLs and puts them into a dictionary""" - url = "http://www.fmylife.com/random" + url = "https://www.fmylife.com/random" soup = await loop.run_in_executor(None, get_soup, url) # the /today bit is there to exclude fml news etc. diff --git a/plugins/octopart.py b/plugins/octopart.py index 58f4a06d7..61883212c 100644 --- a/plugins/octopart.py +++ b/plugins/octopart.py @@ -18,7 +18,7 @@ from cloudbot import hook from cloudbot.bot import bot -API_URL = "http://octopart.com/api/v3/parts/search" +API_URL = "https://octopart.com/api/v3/parts/search" @hook.command("octopart", "octo") diff --git a/plugins/pagecheck.py b/plugins/pagecheck.py index b70cd3855..4086ee4aa 100644 --- a/plugins/pagecheck.py +++ b/plugins/pagecheck.py @@ -12,9 +12,9 @@ def down(text): """ - checks if is online or offline""" if "://" not in text: - text = "http://" + text + text = "https://" + text - text = "http://" + urllib.parse.urlparse(text).netloc + text = "https://" + urllib.parse.urlparse(text).netloc try: r = requests.get(text) @@ -36,7 +36,7 @@ def isup(text): domain = auth or path try: - response = requests.get("http://isup.me/" + domain) + response = requests.get("https://isup.me/" + domain) response.raise_for_status() except requests.exceptions.ConnectionError: return "Failed to get status." diff --git a/plugins/pastebins/sprunge.py b/plugins/pastebins/sprunge.py index 2e9e46f39..3e925b75d 100644 --- a/plugins/pastebins/sprunge.py +++ b/plugins/pastebins/sprunge.py @@ -43,7 +43,7 @@ def paste(self, data, ext): @hook.on_start() def register(): - pastebins.register("sprunge", Sprunge("http://sprunge.us")) + pastebins.register("sprunge", Sprunge("https://sprunge.us")) @hook.on_stop() diff --git a/plugins/reddit_info.py b/plugins/reddit_info.py index 0c0294523..1165e7846 100644 --- a/plugins/reddit_info.py +++ b/plugins/reddit_info.py @@ -17,8 +17,8 @@ user_re = re.compile(r"^(?:/?(?:u(?:ser)?/)?)?(?P.+?)/?$", re.IGNORECASE) sub_re = re.compile(r"^(?:/?(?:r/)?)?(?P.+?)/?$", re.IGNORECASE) -user_url = "http://reddit.com/user/{}/" -subreddit_url = "http://reddit.com/r/{}/" +user_url = "https://reddit.com/user/{}/" +subreddit_url = "https://reddit.com/r/{}/" short_url = "https://redd.it/{}" post_url = "https://reddit.com/comments/{}.json" # This agent should be unique for your cloudbot instance diff --git a/plugins/speedtest.py b/plugins/speedtest.py index 9172efe6a..7d0413c3e 100644 --- a/plugins/speedtest.py +++ b/plugins/speedtest.py @@ -6,7 +6,7 @@ from cloudbot import hook speedtest_re = re.compile(r".*://www.speedtest.net/my-result/([0-9]+)?.*", re.I) -base_url = "http://www.speedtest.net/my-result/{}" +base_url = "https://www.speedtest.net/my-result/{}" @hook.regex(speedtest_re) diff --git a/plugins/steam_store.py b/plugins/steam_store.py index c2a883350..05c78f9bc 100644 --- a/plugins/steam_store.py +++ b/plugins/steam_store.py @@ -9,8 +9,8 @@ # CONSTANTS steam_re = re.compile(r".*://store.steampowered.com/app/([0-9]+)?.*", re.I) -API_URL = "http://store.steampowered.com/api/appdetails/" -STORE_URL = "http://store.steampowered.com/app/{}/" +API_URL = "https://store.steampowered.com/api/appdetails/" +STORE_URL = "https://store.steampowered.com/app/{}/" # OTHER FUNCTIONS @@ -88,7 +88,7 @@ def steam(text, reply): try: request = requests.get( - "http://store.steampowered.com/search/", params=params + "https://store.steampowered.com/search/", params=params ) request.raise_for_status() except requests.RequestException as e: diff --git a/plugins/steam_user.py b/plugins/steam_user.py index 16f508355..936c7ab33 100644 --- a/plugins/steam_user.py +++ b/plugins/steam_user.py @@ -6,7 +6,7 @@ from cloudbot.util import formatting from cloudbot.util.http import parse_xml -API_URL = "http://steamcommunity.com/id/{}/" +API_URL = "https://steamcommunity.com/id/{}/" ID_BASE = 76561197960265728 headers: Dict[str, str] = {} diff --git a/plugins/suggest.py b/plugins/suggest.py index a1972eca2..1066d0d5a 100644 --- a/plugins/suggest.py +++ b/plugins/suggest.py @@ -13,7 +13,7 @@ def suggest(text, reply): try: request = requests.get( - "http://google.com/complete/search", params=params + "https://google.com/complete/search", params=params ) request.raise_for_status() except ( diff --git a/plugins/urban.py b/plugins/urban.py index 828ce7c16..e7ae027b9 100644 --- a/plugins/urban.py +++ b/plugins/urban.py @@ -5,7 +5,7 @@ from cloudbot import hook from cloudbot.util import formatting -base_url = "http://api.urbandictionary.com/v0" +base_url = "https://api.urbandictionary.com/v0" define_url = base_url + "/define" random_url = base_url + "/random" @@ -14,7 +14,7 @@ def urban(text, reply): """ [id] - Looks up on urbandictionary.com.""" - headers = {"Referer": "http://m.urbandictionary.com"} + headers = {"Referer": "https://m.urbandictionary.com"} if text: # clean and split the input diff --git a/plugins/utility.py b/plugins/utility.py index a6ff0586c..8de2f4aab 100644 --- a/plugins/utility.py +++ b/plugins/utility.py @@ -85,7 +85,7 @@ def qrcode(text): argstring = urllib.parse.urlencode(args) - link = "http://chart.googleapis.com/chart?{}".format(argstring) + link = "https://chart.googleapis.com/chart?{}".format(argstring) return web.try_shorten(link) diff --git a/plugins/validate.py b/plugins/validate.py index ecf711b69..0c176d8c9 100644 --- a/plugins/validate.py +++ b/plugins/validate.py @@ -17,7 +17,7 @@ def validate(text): text = text.strip() if not urllib.parse.urlparse(text).scheme: - text = "http://" + text + text = "https://" + text url = api_url + "?uri=" + text url = web.try_shorten(url) diff --git a/plugins/vimeo.py b/plugins/vimeo.py index fad153128..55e2a5567 100644 --- a/plugins/vimeo.py +++ b/plugins/vimeo.py @@ -4,7 +4,7 @@ from cloudbot.util import http, timeformat url_re = re.compile(r"vimeo\.com/([0-9]+)") -api_url = "http://vimeo.com/api/v2/video/{id}.json" +api_url = "https://vimeo.com/api/v2/video/{id}.json" @hook.regex(url_re) diff --git a/plugins/wikipedia.py b/plugins/wikipedia.py index ae61ec0ee..7beab8445 100644 --- a/plugins/wikipedia.py +++ b/plugins/wikipedia.py @@ -8,7 +8,7 @@ from cloudbot import hook from cloudbot.util import formatting -api_prefix = "http://en.wikipedia.org/w/api.php" +api_prefix = "https://en.wikipedia.org/w/api.php" query_url = api_prefix + "?action=query&format=json" search_url = query_url + "&list=search&redirect=1" wp_api_url = URL("https://en.wikipedia.org/api/rest_v1/") diff --git a/plugins/wolframalpha.py b/plugins/wolframalpha.py index 7ebfefb58..0343a093c 100644 --- a/plugins/wolframalpha.py +++ b/plugins/wolframalpha.py @@ -8,8 +8,8 @@ from cloudbot.util import formatting, web from cloudbot.util.http import parse_xml -api_url = "http://api.wolframalpha.com/v2/query" -query_url = "http://www.wolframalpha.com/input/?i={}" +api_url = "https://api.wolframalpha.com/v2/query" +query_url = "https://www.wolframalpha.com/input/?i={}" @hook.command("wolframalpha", "wa", "calc", "ca", "math", "convert") diff --git a/plugins/wordnik.py b/plugins/wordnik.py index 4dadc86e9..52ea79756 100644 --- a/plugins/wordnik.py +++ b/plugins/wordnik.py @@ -14,7 +14,7 @@ logger = logging.getLogger("cloudbot") -API_URL = "http://api.wordnik.com/v4/" +API_URL = "https://api.wordnik.com/v4/" WEB_URL = "https://www.wordnik.com/words/{}" ATTRIB_NAMES = { diff --git a/plugins/wyr.py b/plugins/wyr.py index 2a4d0c269..b0c5c0f99 100644 --- a/plugins/wyr.py +++ b/plugins/wyr.py @@ -8,7 +8,7 @@ - Luke Rogers Special Thanks: - - http://www.rrrather.com/ for adding extra features to their API to make this command possible + - https://www.rrrather.com/ for adding extra features to their API to make this command possible License: BSD 3-Clause License diff --git a/plugins/xkcd.py b/plugins/xkcd.py index b941c429d..8d59e3451 100644 --- a/plugins/xkcd.py +++ b/plugins/xkcd.py @@ -9,8 +9,8 @@ xkcd_re = re.compile(r"(.*:)//(www.xkcd.com|xkcd.com)(.*)", re.I) -XKCD_URL = URL("http://www.xkcd.com/") -ONR_URL = URL("http://www.ohnorobot.com/") +XKCD_URL = URL("https://www.xkcd.com/") +ONR_URL = URL("https://www.ohnorobot.com/") def xkcd_info(xkcd_id, url=False): diff --git a/plugins/youtube.py b/plugins/youtube.py index e1665fd9a..f67f561ff 100644 --- a/plugins/youtube.py +++ b/plugins/youtube.py @@ -65,7 +65,7 @@ def raise_api_errors(response: requests.Response) -> None: def make_short_url(video_id: str) -> str: - return "http://youtu.be/{}".format(video_id) + return "https://youtu.be/{}".format(video_id) ParamValues = Union[int, str] diff --git a/tests/data/dogpile-images.html b/tests/data/dogpile-images.html index 2cdd7668f..ca12f098d 100644 --- a/tests/data/dogpile-images.html +++ b/tests/data/dogpile-images.html @@ -14,7 +14,7 @@