'+pages+''); $('.stream > div:odd').addClass('bgr_color'); updateHeight('#history'); }); window.activateTabArea = ensure(function(tab, areas){ var parsed = false; var parts = (areas || '').split('/'); window.fsonload = $.inArray('fs', parts) >= 0; if(fsonload){ parts.splice(parts.indexOf('fs'), 1); } var replayMode = false; if($.inArray('replay', parts)>=0){ replayMode = 'replay'; } var noSoundMode = false; if($.inArray('nosound', parts)>=0){ noSoundMode = 'nosound'; } if($.inArray('ns', parts)>=0){ noSoundMode = 'ns'; } var previewMode = null; if($.inArray('p', parts)>=0){ previewMode = 'p'; } if($.inArray('preview', parts)>=0){ previewMode = 'preview'; } if($.inArray('repeat', parts)>=0){ replayMode = 'repeat'; } if($.inArray('r', parts)>=0 || $.inArray('ro', parts)>=0){ replayMode = 'r'; } if(replayMode){ parts.splice(parts.indexOf(replayMode), 1); } if(noSoundMode){ parts.splice(parts.indexOf(noSoundMode), 1); } if(previewMode){ parts.splice(parts.indexOf(previewMode), 1); } if(previewMode){ if(!parts.length){ parts = ['1-14', '999:59']; } } var area = parts[0]; if(tab == 'history' && false){ var page = parseInt(area || '1') || 1; $.ajax({ url: 'https://login.wn.com/recent/json/?pp='+history_pp+'&skip='+history_pp*(page-1), dataType: 'jsonp', success: function(response){ $ensure(function(){ renderHistory(response, page); }); } }); return true; } if(tab == 'global_history' && false){ var page = parseInt(area || '1') || 1; globalHistory.fetchStream(page, '', function(){ updateHeight('#global_history'); }); return true; } if(tab == 'my_playlists' && false){ var page = parseInt(area || '1') || 1; myPlaylists.fetchStream(page, '', function(){ updateHeight('#my_playlists'); }); return true; } if(tab == 'my_videos' && false){ var page = parseInt(area || '1') || 1; myVideos.fetchStream(page, '', function(){ updateHeight('#my_videos'); }); return true; } if(tab == 'related_sites' && areas && matchPosition(areas)){ var seconds = parsePosition(areas); scrollRelated(seconds); return false; } if(matchPosition(area) || matchAction(area)){ parts.unshift('1'); area = parts[0]; } if(tab == 'expand' && area && area.match(/\d+/)) { var num = parseInt(area); if(num < 100){ //FIX ME. Load news page with ajax here } else if(num > 1900){ //FIX ME. Load timeline page with ajax here } } else if(tab.match(/^playlist\d+$/)){ var playerId = parseInt(tab.substring(8)); var vp = videoplayers[playerId]; window.descriptionsholder = $('.descriptionsplace'); if(!vp) return; // why? no player? if(replayMode){ $('.replaycurrent'+playerId).attr('checked', true); vp.setReplayCurrent(true); } var playQueue = []; window.playQueue = playQueue; var playQueuePosition = 0; var playShouldStart = null; var playShouldStop = null; var parseList = function(x){ var items = x.split(/;|,/g); var results = []; for (i in items){ try{ var action = parseAction(vp, items[i]); if(!action.video){ if(window.console && console.log) console.log("Warning: No video for queued entry: " + items[i]); }else{ results.push(action); } }catch(e){ if(window.console && console.log) console.log("Warning: Can''t parse queue entry: " + items[i]); } } return results; }; var scrollToPlaylistPosition = function(vp){ var ppos = vp.getPlaylistPosition(); var el = vp.playlistContainer.find('>li').eq(ppos); var par = el.closest('.playlist_scrollarea'); par.scrollTop(el.offset().top-par.height()/2); } var updateVolumeState = function(){ if(noSoundMode){ if(noSoundMode == 'turn-on'){ clog("Sound is on, vsid="+vp.vsid); vp.setVolumeUnMute(); noSoundMode = false; }else{ clog("Sound is off, vsid="+vp.vsid); vp.setVolumeMute(); noSoundMode = 'turn-on'; } } } var playQueueUpdate = function(){ var playPosition = playQueue[playQueuePosition]; vp.playFromPlaylist(playPosition.video); scrollToPlaylistPosition(vp); playShouldStart = playPosition.start; playShouldStop = playPosition.stop; }; var playQueueAdvancePosition = function(){ clog("Advancing play position..."); playQueuePosition ++; while(playQueuePosition < playQueue.length && !playQueue[playQueuePosition].video){ playQueuePosition ++; } if(playQueuePosition < playQueue.length){ playQueueUpdate(); }else if(vp.getReplayCurrent()){ playQueuePosition = 0; playQueueUpdate(); vp.seekTo(playShouldStart); vp.playVideo(); }else{ vp.pauseVideo(); playShouldStop = null; playShouldStart = null; } }; function loadMoreVideos(playerId, vp, start, finish, callback){ var playlistInfo = playlists[playerId-1]; if(playlistInfo.loading >= finish) return; playlistInfo.loading = finish; $.ajax({ url: '/api/upge/cheetah-photo-search/query_videos2', dataType: 'json', data: { query: playlistInfo.query, orderby: playlistInfo.orderby, start: start, count: finish-start }, success: function(response){ var pl = vp.getPlaylist().slice(0); pl.push.apply(pl, response); vp.setPlaylist(pl); callback(); } }); } if(parts.length == 1 && matchDash(parts[0])){ var pl = vp.getActualPlaylist(); var vids = parseDash(parts[0]); parts = []; for(var i = 0; i < vids.length; i++){ playQueue.push({ 'video': pl[vids[i]-1], 'start': 0, 'stop': null }) } if(vids.length){ if(vids[vids.length-1]-1>=pl.length){ loadMoreVideos(playerId, vp, pl.length, vids[vids.length-1], function(){ if(fsonload){ activateTabArea(tab, parts[0]+'/fs'); }else{ activateTabArea(tab, parts[0]); } var pls = vp.getPlaylist(); vp.playFromPlaylist(pls[pls.length-1]); vp.playVideo(); scrollToPlaylistPosition(vp); }); return true; } } if(playQueue){ playQueueUpdate(); vp.playVideo(); parsed = true; playShouldStart = 0; } } if(previewMode){ var vids = []; var dur = 0; var pl = vp.getActualPlaylist(); area = parts[0]; if(parts.length == 1 && matchPosition(parts[0])){ vids = parseDash('1-'+pl.length); dur = parsePosition(parts[0]); parts = []; }else if(parts.length == 1 && matchDash(parts[0])){ vids = parseDash(parts[0]); dur = parsePosition("999:59"); parts = []; } if(parts.length == 2 && matchDash(parts[0]) && matchPosition(parts[1])){ vids = parseDash(parts[0]); dur = parsePosition(parts[1]); parts = []; } for(var i = 0; i < vids.length; i++){ playQueue.push({ 'video': pl[vids[i]-1], 'start': 0, 'stop': dur }) } if(playQueue){ playQueueUpdate(); vp.playVideo(); parsed = true; } } if(parts.length>1){ for(var i = 0; i < parts.length; i++){ var sel = findMatchingVideo(vp, parts[i]); if(sel){ playQueue.push({ 'video': sel, 'start': 0, 'stop': null }) } } if(playQueue){ playQueueUpdate(); vp.playVideo(); parsed = true; } }else if(area){ var sel = findMatchingVideo(vp, area); if(sel){ vp.playFromPlaylist(sel); playShouldStart = 0; parsed = true; } } if(fsonload || replayMode){ playShouldStart = 0; } if(document.location.search.match('at=|queue=')){ var opts = document.location.search.replace(/^\?/,'').split(/&/g); for(var o in opts){ if(opts[o].match(/^at=(\d+:)?(\d+:)?\d+$/)){ playShouldStart = parsePosition(opts[o].substr(3)) } if(opts[o].match(/^queue=/)){ playQueue = parseList(opts[o].substr(6)); if(playQueue){ playQueuePosition = 0; playQueueUpdate(); } } } } if(matchPosition(parts[1])){ playShouldStart = parsePosition(parts[1]); parsed = true; } if(matchAction(parts[1])){ var action = parseAction(vp, area+'/'+parts[1]); playShouldStart = action.start; playShouldStop = action.stop; parsed = true; } if(playShouldStart !== null && !playQueue.length){ playQueue.push({ video: vp.getCurrentVideo(), start: playShouldStart, stop: playShouldStop }); } if(playShouldStart != null){ setInterval(function(){ if(playShouldStop && vp.currentPlayer && vp.currentPlayer.getCurrentTime() > playShouldStop){ playShouldStop = null; if(vp.getCurrentVideo() == playQueue[playQueuePosition].video){ playQueueAdvancePosition(); }else{ playShouldStart = null; } } }, 500); vp.playerContainer.bind('videoplayer.player.statechange', function(e, state){ if(state == 'ended'){ // advance to the next video playQueueAdvancePosition(); } }); vp.playerContainer.bind('videoplayer.player.readychange', function(e, state){ if(state){ updateVolumeState(); if(playShouldStart !== null){ vp.seekTo(playShouldStart); playShouldStart = null; }else{ playShouldStop = null; // someone started other video, stop playing from playQueue } } if(fsonload) { triggerFullscreen(playerId); fsonload = false; } }); } } else if(tab.match(/^wiki\d+$/)){ if(firstTimeActivate){ load_wiki($('#'+tab), function(){ if(area){ var areaNode = $('#'+area); if(areaNode.length>0){ $('html, body').scrollTop(areaNode.offset().top + 10); return true; } } }); } } return parsed; }) window.activateTab = ensure(function(tab, area){ window.activeArea = null; if(tab == 'import_videos'){ if(area){ import_videos(area); }else{ start_import(); } return true; } if(tab == 'chat'){ update_chat_position($('.chat').eq(0)); window.activeArea = 'chat'; jQuery('.tabtrigger').offscreentabs('activateTab', 'chat'); return true; } if(tab in rev_names){ tab = rev_names[tab]; } if(tab.match(':')){ return false; } var sup = $('ul li a[id=#'+tab+']'); if(sup && sup.length>0){ window.activeArea = area; sup.first().click(); if(!window.activateTabArea(tab, area)){ window.activeArea = null; } window.activeArea = null; return true; }else{ var have_tabs = $('#playlist_menu li').length; if(tab.match(/^playlists?\d+$/)){ var to_add = +tab.substring(8).replace(/^s/,'')-have_tabs; if(to_add>0 && have_tabs){ add_more_videos(to_add); return true; } } } return false; }); window.currentPath = ensure(function(){ return window.lastHistory.replace(basepath, '').split('?')[0]; }); window.main_tab = window.main_tab || 'videos'; window.addHistory = ensure(function(path){ if(window.console && console.log) console.log("Adding to history: "+path); if(window.history && history.replaceState && document.location.hostname.match(/^(youtube\.)?(\w{2,3}\.)?wn\.com$/)){ if(path == main_tab || path == main_tab+'/' || path == '' || path == '/') { path = basepath; } else if( path.match('^'+main_tab+'/') ){ path = basepath + '/' + path.replace(main_tab+'/', '').replace('--','/'); } else { path = basepath + '/' + path.replace('--','/'); } if(document.location.search){ path += document.location.search; } if(window.lastHistory) { history.pushState(null, null, path); } else if(window.lastHistory != path){ history.replaceState(null, null, path); window.lastHistory = path; } } else{ path = path.replace('--','/'); if(path == main_tab || path == main_tab+'/' || path == '' || path == '/') { path = ''; } if(window.lastHistory != '/'+path){ window.location.hash = path? '/'+path : ''; window.lastHistory = '/'+path; } } }); $('.tabtrigger li a').live('click', ensure(function() { var tab = $(this).attr('id'); if(tab.substring(0,1) == '#'){ var name = tab.substring(1); if(name in menu_names){ name = menu_names[name][0]; } realTab = rev_names[name]; $('#'+realTab).show(); if(window.console && console.log) console.log("Triggering tab: "+name+(window.activeArea?" activeArea="+window.activeArea:'')); var path = name; if(window.activeArea){ path = path + '/' + window.activeArea; } if(tab.match(/#playlist\d+/) || tab.match(/#details\d+/)){ $('.multiple-playlists').show(); $('.related_playlist').show(); $('.longest_videos_playlist').show(); }else { $('.multiple-playlists').hide(); $('.related_playlist').hide(); $('.longest_videos_playlist').hide(); } // start the related script only when the tab is on screen showing if (tab.match(/related_sites/)) { if (mc) { mc.startCredits(); } } window.activeTab = realTab; addHistory(path); setTimeout(ensure(function(){ if(tab.match(/language--/)){ $('.tabtrigger').offscreentabs('activateTab', 'language'); } if(tab.match(/weather/)) { $('.tabtrigger').offscreentabs('activateTab', 'weather'); loadContinent(); } updateMenus(tab); updateHeight(); }), 10); } return false; })); }); -->

Christmas dinner

Christmas dinner is a meal traditionally eaten at Christmas around the world. It often reflects the culture of the country in which it is eaten.

Asia

India

Indian people cook a variety of foods, including Biryani with chicken or lamb/mutton, chicken and mutton curry, followed by cake or sweets like Kheer. Long established Christian communities such as Goan Catholics have pork dishes as part of their main course of their Christmas dinner. These include Pork Vindaloo and Sorpatel. For dessert a dish called Bebinca is popular.

Japan

Japanese Christmas cake, a white sponge cake covered with cream and decorated with strawberries, is often consumed and Stollen cake, either imported or made locally, is widely available. A successful advertising campaign in the 1970s made eating at KFC around Christmas a national custom. Its chicken meals are so popular during the season that stores take reservations months in advance.

Lebanon

The Lebanese, mostly Christians but also Muslims, celebrate Christmas dinners. The feast, usually on both the night of the 24th and lunch of the 25th, is a big one. Some have the leftovers from the dinner prior at the lunch the next day. Traditional offering for Christmas is sugar coated almonds. Family gets together at both meals. Roast turkey is the most common choice of meal. Roasted duck, Lebanese salad (Tabouleh) and pastries such as Honey cake and "Buche De Noël" are also common. At midnight the Christians are seen to go to mass at church. Beirut celebrates Christmas by conducting glamourous and big Christmas parties. Western style exhibitions of poinsettias, Community Christmas trees and Christmas lights are very popular.

Podcasts:

  • This Is How I Cook Christmas Dinner

    Today, follow along as I cook the team a Christmas dinner feast - the way I would normally cook a feast without cameras and recipes. The steps overlap, my time is limited, the recipes are delicious and the team will be well fed. Enjoy ✌️  Timings for Your Christmas Dinner The timings below are for a 3pm dinner. Adjust as needed based on the time you're planning to eat, e.g. if you're eating at 6pm, you would start at 1pm. It's worth noting that these timings should give you plenty of time to still enjoy yourself, and the more you do the day before, the less you have to do on the day. Hour 1: 10am Put the beef in the oven. Make the stuffing, then leave it in the fridge to cool. Make the Yorkshire pudding batter. Hour 2: 11am Peel and cut the potatoes. Start boiling the potatoes. Prepare...

    published: 16 Dec 2023
  • The Perfect Christmas Dinner

    We celebrate multiple Holidays in my family from Hanukkah, to Christmas, to everything in between. So here are all the best holiday recipes you need in one video. Get My Cookbook: http://bit.ly/JWCookbookAmazon Additional Cookbook Options (other stores, international, etc.): https://bit.ly/TheJWCookbook FOLLOW ME: Instagram: https://www.instagram.com/joshuaweissman Tik Tok: https://www.tiktok.com/@flakeysalt Twitter: https://twitter.com/therealweissman Facebook: https://www.facebook.com/thejoshuaweissman Subreddit: https://www.reddit.com/r/JoshuaWeissman/ Discord Server: https://discord.gg/joshuaweissman --------------------------------------------------------------- Recipe: https://www.joshuaweissman.com/post/holiday-feast

    published: 21 Dec 2022
  • 10 Easy Christmas Dinner and Side Dish Recipes | Allrecipes

    Get ready to elevate your holiday feast with this ultimate guide to 10 mouthwatering Christmas dinner and side dish recipes! 0:00 10 Christmas Diner & Side Dish Recipes 0:15 Christmas Prime Rib 2:07 Parmesan Brussels Sprouts 2:35 Lauren's Apple Cider Roast Turkey Recipe 4:49 Easy Yorkshire Pudding Recipe 6:20 Tangy Honey Glazed Ham Recipe 8:09 The Best Mashed Potatoes Recipe 11:06 Holiday Chicken Salad Recipe 12:44 Fresh Cranberry Relish Recipe 14:12 Tofu Turkey I Recipe 17:54 Vegetarian Stuffing -- Get all the Christmas dinner recipes here: - Christmas Prime Rib Recipe: https://www.allrecipes.com/recipe/219587/christmas-prime-rib/ - Parmesan Brussels Sprouts Recipe: https://www.allrecipes.com/recipe/228873/parmesan-brussels-sprouts/ - Lauren’s Apple Cider Roast Turkey: https://www.allre...

    published: 20 Dec 2019
  • Extra Special Christmas Dinners | Gordon Ramsay

    With Christmas, this week, here are a few recipes that take traditional ones and make them even more festive. #GordonRamsay #Cooking Pre-order your copy of Ramsay in 10 here - https://linktr.ee/RamsayIn10 Follow Gordon: TikTok: https://www.tiktok.com/@gordonramsayofficial Instagram: http://www.instagram.com/gordongram Twitter: http://www.twitter.com/gordonramsay Facebook: http://www.facebook.com/GordonRamsay If you liked this clip check out the rest of Gordon's channels: http://www.youtube.com/gordonramsay http://www.youtube.com/kitchennightmares http://www.youtube.com/thefword

    published: 21 Dec 2021
  • Everything I ate at Christmas dinner! #foodie #shorts #christmas #eating

    published: 25 Dec 2024
  • Gordon Ramsay's Ultimate Guide To Christmas Side Dishes

    With Christmas around the corner, here are some side dishes to stun your family. #GordonRamsay #Cooking #Christmas Gordon Ramsay's Ultimate Fit Food/Healthy, Lean and Fit – http://po.st/REpVfP If you liked this clip check out the rest of Gordon's channels: http://www.youtube.com/gordonramsay http://www.youtube.com/kitchennightmares http://www.youtube.com/thefword

    published: 13 Dec 2020
  • British Christmas Dinner ! #christmasdinner

    published: 22 Dec 2023
  • Cooking a Christmas Feast 200 Years ago |1820s Historical ASMR Cooking|

    A wild game pie, gingerbread and a dish that strikingly resembles a...bean burger? Let's recreate these recipes as they were 200 years ago while enjoying the sights and sounds of long ago. Our 2nd Channel! https://www.youtube.com/@frontierpatriot Follow me on Instagram? https://www.instagram.com/justineybeanie/ How about Facebook? facebook.com/profile.php?id=100094684921749

    published: 21 Dec 2023
  • 2024 Christmas Dinner with My Mom and Brother at Sky River Casino Dragon Beaux Roast Duck & Hot Pot

    If you appreciate my videos, please consider helping me continue to make them by sending me a little appreciation, even $1 would be greatly appreciated. Thanks! :) Venmo: "@BinhVu" Last 4 Digits if it Asks Are 6734 Zelle or PayPal (friends and family from a bank account so they don't charge any fees): itsbinhrepaired@gmail.com Patreon: https://www.patreon.com/BinhRepaired Feel free to mail me your old electronics or parts you replaced during an upgrade. Mail: It's Binh Repaired 1288 N Hillview Dr. Milpitas, CA 95035 Tesla referral link: https://www.tesla.com/referral/binh58522

    published: 07 Feb 2025
  • Honey Glazed Roasted Carrots & Parsnips | The Perfect Side For Christmas Dinner!

    These roasted vegetables are the perfect side dish or table filler for you to have this Christmas or at any time of the year. To be specific, these honey glazed roasted carrots and parsnips are the perfect combination of texture and mouth-watering flavour. These roasted veggies will be a guaranteed success for your Christmas day and will leave everyone wanting more and wanting the recipe. Special Thanks To All Patreon Members Ed Angelo D Alpha Leonis Robbie M M Odeh CJE David Taylor Jane M Joukovsky Trip Michael H Mic Hendo Brett George Crossman Featheredindian Auntie Trev Gricelda Gomez Tucker Lutz Scorpion Zevs Bozo Will Stanton Aljo Cammo Ken Ontko Lei Nagata Saul Pineda James W Pharo Mark McLane Ohmachi Josh Al Philp Adrian Keevill Patrick Enman Jonathan Sanchez Naz...

    published: 12 Dec 2022
This Is How I Cook Christmas Dinner
26:47

This Is How I Cook Christmas Dinner

  • Order:
  • Duration: 26:47
  • Uploaded Date: 16 Dec 2023
  • views: 1194747
Today, follow along as I cook the team a Christmas dinner feast - the way I would normally cook a feast without cameras and recipes. The steps overlap, my time is limited, the recipes are delicious and the team will be well fed. Enjoy ✌️  Timings for Your Christmas Dinner The timings below are for a 3pm dinner. Adjust as needed based on the time you're planning to eat, e.g. if you're eating at 6pm, you would start at 1pm. It's worth noting that these timings should give you plenty of time to still enjoy yourself, and the more you do the day before, the less you have to do on the day. Hour 1: 10am Put the beef in the oven. Make the stuffing, then leave it in the fridge to cool. Make the Yorkshire pudding batter. Hour 2: 11am Peel and cut the potatoes. Start boiling the potatoes. Prepare chickens for the oven. Prepare, cook, and cool the baby carrots. Hour 3: 12pm Place the chickens in the oven. Prepare, cook, and cool the sprouts. Start making the gravy. Hour 4: 1pm You should be at a good point now. Tidy up and prepare for the final push to have everything ready on time. About halfway through the hour, start roasting the potatoes. Start cooking the Yorkshire puddings. Hour 5 (final hour): 2pm - Go Time 15 minutes into the last hour, put the beef and chicken back in for the final browning. Once the meat is back in, start finishing the carrots and sprouts. 20 minutes before your meal, start to carve the meat. Plate the vegetables - if they need a quick flash in the oven to get them piping hot, go for it. All going to plan, everything should be on the table with 5 minutes to spare. RECIPES: Rib eye roast beef: https://www.andy-cooks.com/blogs/recipes/roast-beef Yorkshire puddings: https://www.andy-cooks.com/blogs/recipes/yorkshire-puddings Roast chicken with sage and bacon stuffing: https://www.andy-cooks.com/blogs/recipes/roast-chicken Gravy: https://www.andy-cooks.com/blogs/recipes/christmas-gravy Crispy roast potatoes: https://www.andy-cooks.com/blogs/recipes/crispy-roast-potatoes Honey and thyme glazed baby carrots: https://www.andy-cooks.com/blogs/recipes/honey-glazed-baby-carrots Brussels sprouts with bacon and maple syrup: https://www.andy-cooks.com/blogs/recipes/bacon-and-maple-brussels-sprouts FOLLOW ME: Instagram: https://www.instagram.com/andyhearnden TikTok: https://www.tiktok.com/@andy_cooks Facebook: https://www.facebook.com/andy.h.cooks Snapchat: https://story.snapchat.com/p/4730e972-0ae2-4135-8995-a2891534ae1a/1534118165082112 Website with all my recipes: https://www.andy-cooks.com/ Director, Chef and Host: Andy Videographer, Editor: Mitch Henderson Production Manager: Dazz Braeckmans Editor: Caleb Dawkins
https://wn.com/This_Is_How_I_Cook_Christmas_Dinner
The Perfect Christmas Dinner
20:34

The Perfect Christmas Dinner

  • Order:
  • Duration: 20:34
  • Uploaded Date: 21 Dec 2022
  • views: 2096889
We celebrate multiple Holidays in my family from Hanukkah, to Christmas, to everything in between. So here are all the best holiday recipes you need in one video. Get My Cookbook: http://bit.ly/JWCookbookAmazon Additional Cookbook Options (other stores, international, etc.): https://bit.ly/TheJWCookbook FOLLOW ME: Instagram: https://www.instagram.com/joshuaweissman Tik Tok: https://www.tiktok.com/@flakeysalt Twitter: https://twitter.com/therealweissman Facebook: https://www.facebook.com/thejoshuaweissman Subreddit: https://www.reddit.com/r/JoshuaWeissman/ Discord Server: https://discord.gg/joshuaweissman --------------------------------------------------------------- Recipe: https://www.joshuaweissman.com/post/holiday-feast
https://wn.com/The_Perfect_Christmas_Dinner
10 Easy Christmas Dinner and Side Dish Recipes | Allrecipes
20:26

10 Easy Christmas Dinner and Side Dish Recipes | Allrecipes

  • Order:
  • Duration: 20:26
  • Uploaded Date: 20 Dec 2019
  • views: 1197302
Get ready to elevate your holiday feast with this ultimate guide to 10 mouthwatering Christmas dinner and side dish recipes! 0:00 10 Christmas Diner & Side Dish Recipes 0:15 Christmas Prime Rib 2:07 Parmesan Brussels Sprouts 2:35 Lauren's Apple Cider Roast Turkey Recipe 4:49 Easy Yorkshire Pudding Recipe 6:20 Tangy Honey Glazed Ham Recipe 8:09 The Best Mashed Potatoes Recipe 11:06 Holiday Chicken Salad Recipe 12:44 Fresh Cranberry Relish Recipe 14:12 Tofu Turkey I Recipe 17:54 Vegetarian Stuffing -- Get all the Christmas dinner recipes here: - Christmas Prime Rib Recipe: https://www.allrecipes.com/recipe/219587/christmas-prime-rib/ - Parmesan Brussels Sprouts Recipe: https://www.allrecipes.com/recipe/228873/parmesan-brussels-sprouts/ - Lauren’s Apple Cider Roast Turkey: https://www.allrecipes.com/recipe/230122/laurens-apple-cider-roast-turkey/ - Quick and Easy Yorkshire Pudding: https://www.allrecipes.com/recipe/22539/quick-and-easy-yorkshire-pudding/ - Tangy Honey Glazed Ham: https://www.allrecipes.com/recipe/24501/tangy-honey-glazed-ham/ - The Best Mashed Potatoes: https://www.allrecipes.com/recipe/15213/the-best-mashed-potatoes/ - Holiday Chicken Salad: https://www.allrecipes.com/recipe/8584/holiday-chicken-salad/ - Fresh Cranberry Relish: https://www.allrecipes.com/recipe/13667/fresh-cranberry-relish/ - Tofu Turkey I: https://www.allrecipes.com/recipe/14113/tofu-turkey-i/ - Vegetarian Stuffing: https://www.allrecipes.com/recipe/13618/vegetarian-stuffing/ -- Allrecipes Magazine is now available! U.S. subscribers, subscribe here: http://armagazine.com/subscribenow Canadian subscribers, subscribe here: http://themeredithstore.ca/p-282-allrecipes-subscription.aspx *CONNECT* Facebook: http://www.facebook.com/Allrecipes Instagram: https://www.instagram.com/allrecipes/ Pinterest: https://www.pinterest.com/allrecipes/ TikTok: https://www.tiktok.com/@allrecipes *Allrecipes* is the world’s #1 digital food brand. We are on a mission to help cooks of all interests and skill sets discover, and share in, the thrill of home cooking. From top-rated classic dishes to holiday dishes, to diverse international cuisine, to drinks and offbeat eats – we feature recipes that will bring out the inner chef in any cook. Browse our channel for inspiring world-class content and engage with our food-loving community. Allrecipes will energize anyone with a cooking goal to cook with confidence. https://www.youtube.com/@allrecipes
https://wn.com/10_Easy_Christmas_Dinner_And_Side_Dish_Recipes_|_Allrecipes
Extra Special Christmas Dinners | Gordon Ramsay
25:24

Extra Special Christmas Dinners | Gordon Ramsay

  • Order:
  • Duration: 25:24
  • Uploaded Date: 21 Dec 2021
  • views: 2043684
With Christmas, this week, here are a few recipes that take traditional ones and make them even more festive. #GordonRamsay #Cooking Pre-order your copy of Ramsay in 10 here - https://linktr.ee/RamsayIn10 Follow Gordon: TikTok: https://www.tiktok.com/@gordonramsayofficial Instagram: http://www.instagram.com/gordongram Twitter: http://www.twitter.com/gordonramsay Facebook: http://www.facebook.com/GordonRamsay If you liked this clip check out the rest of Gordon's channels: http://www.youtube.com/gordonramsay http://www.youtube.com/kitchennightmares http://www.youtube.com/thefword
https://wn.com/Extra_Special_Christmas_Dinners_|_Gordon_Ramsay
Everything I ate at Christmas dinner! #foodie #shorts #christmas #eating
1:00

Everything I ate at Christmas dinner! #foodie #shorts #christmas #eating

  • Order:
  • Duration: 1:00
  • Uploaded Date: 25 Dec 2024
  • views: 2820716
https://wn.com/Everything_I_Ate_At_Christmas_Dinner_Foodie_Shorts_Christmas_Eating
Gordon Ramsay's Ultimate Guide To Christmas Side Dishes
28:00

Gordon Ramsay's Ultimate Guide To Christmas Side Dishes

  • Order:
  • Duration: 28:00
  • Uploaded Date: 13 Dec 2020
  • views: 2603196
With Christmas around the corner, here are some side dishes to stun your family. #GordonRamsay #Cooking #Christmas Gordon Ramsay's Ultimate Fit Food/Healthy, Lean and Fit – http://po.st/REpVfP If you liked this clip check out the rest of Gordon's channels: http://www.youtube.com/gordonramsay http://www.youtube.com/kitchennightmares http://www.youtube.com/thefword
https://wn.com/Gordon_Ramsay's_Ultimate_Guide_To_Christmas_Side_Dishes
British Christmas Dinner ! #christmasdinner
1:01

British Christmas Dinner ! #christmasdinner

  • Order:
  • Duration: 1:01
  • Uploaded Date: 22 Dec 2023
  • views: 59580
https://wn.com/British_Christmas_Dinner_Christmasdinner
Cooking a Christmas Feast 200 Years ago |1820s Historical ASMR Cooking|
23:13

Cooking a Christmas Feast 200 Years ago |1820s Historical ASMR Cooking|

  • Order:
  • Duration: 23:13
  • Uploaded Date: 21 Dec 2023
  • views: 965302
A wild game pie, gingerbread and a dish that strikingly resembles a...bean burger? Let's recreate these recipes as they were 200 years ago while enjoying the sights and sounds of long ago. Our 2nd Channel! https://www.youtube.com/@frontierpatriot Follow me on Instagram? https://www.instagram.com/justineybeanie/ How about Facebook? facebook.com/profile.php?id=100094684921749
https://wn.com/Cooking_A_Christmas_Feast_200_Years_Ago_|1820S_Historical_Asmr_Cooking|
2024 Christmas Dinner with My Mom and Brother at Sky River Casino Dragon Beaux Roast Duck & Hot Pot
8:15

2024 Christmas Dinner with My Mom and Brother at Sky River Casino Dragon Beaux Roast Duck & Hot Pot

  • Order:
  • Duration: 8:15
  • Uploaded Date: 07 Feb 2025
  • views: 102
If you appreciate my videos, please consider helping me continue to make them by sending me a little appreciation, even $1 would be greatly appreciated. Thanks! :) Venmo: "@BinhVu" Last 4 Digits if it Asks Are 6734 Zelle or PayPal (friends and family from a bank account so they don't charge any fees): itsbinhrepaired@gmail.com Patreon: https://www.patreon.com/BinhRepaired Feel free to mail me your old electronics or parts you replaced during an upgrade. Mail: It's Binh Repaired 1288 N Hillview Dr. Milpitas, CA 95035 Tesla referral link: https://www.tesla.com/referral/binh58522
https://wn.com/2024_Christmas_Dinner_With_My_Mom_And_Brother_At_Sky_River_Casino_Dragon_Beaux_Roast_Duck_Hot_Pot
Honey Glazed Roasted Carrots & Parsnips | The Perfect Side For Christmas Dinner!
6:11

Honey Glazed Roasted Carrots & Parsnips | The Perfect Side For Christmas Dinner!

  • Order:
  • Duration: 6:11
  • Uploaded Date: 12 Dec 2022
  • views: 368078
These roasted vegetables are the perfect side dish or table filler for you to have this Christmas or at any time of the year. To be specific, these honey glazed roasted carrots and parsnips are the perfect combination of texture and mouth-watering flavour. These roasted veggies will be a guaranteed success for your Christmas day and will leave everyone wanting more and wanting the recipe. Special Thanks To All Patreon Members Ed Angelo D Alpha Leonis Robbie M M Odeh CJE David Taylor Jane M Joukovsky Trip Michael H Mic Hendo Brett George Crossman Featheredindian Auntie Trev Gricelda Gomez Tucker Lutz Scorpion Zevs Bozo Will Stanton Aljo Cammo Ken Ontko Lei Nagata Saul Pineda James W Pharo Mark McLane Ohmachi Josh Al Philp Adrian Keevill Patrick Enman Jonathan Sanchez Naz David Snuggs Cat Michae Taliferrue Michael Become a Patron - http://patreon.com/chefjackovens My Knives - www.koiknives.com My Luvele Meal Prep Containers - https://www.luvele.com.au/?ref=qNAC7JWq6gdhha My Seasonings - https://centuriesahead.com.au My Equipment - https://chefjackovens.com/affiliate-links/ My Save It For A Stock Apron - https://shopcjo.myspreadshop.com.au My Website - https://chefjackovens.com If you make this recipe, take a picture, follow, and tag me on Instagram. I love seeing all your creations -https://www.instagram.com/chefjackovens/?hl=en Ingredients - Roasted Vegetables - 4 Tbsp (80ml) - Olive Oil 800g (1.7lbs) - Carrots, Washed 800g (1.7lbs) - Parsnips, Washed Seasoning To Taste Honey Glaze - 3 Tbsp (42g) - Unsalted Butter 3 Tbsp (60g) - Honey 10 - Sage Leaves 1 - Rosemary Sprig Seasoning To Taste #christmasfood #christmasrecipes #roastedvegetables
https://wn.com/Honey_Glazed_Roasted_Carrots_Parsnips_|_The_Perfect_Side_For_Christmas_Dinner
PLAYLIST TIME:
  • Most Related
  • Most Recent
  • Most Popular
  • Top Rated
  • This Is How I Cook Christmas Dinner
    26:47
    This Is How I Cook Christmas Dinnerremove from playlist
  • The Perfect Christmas Dinner
    20:34
    The Perfect Christmas Dinnerremove from playlist
  • 10 Easy Christmas Dinner and Side Dish Recipes | Allrecipes
    20:26
    10 Easy Christmas Dinner and Side Dish Recipes | Allrecipesremove from playlist
  • Extra Special Christmas Dinners | Gordon Ramsay
    25:24
    Extra Special Christmas Dinners | Gordon Ramsayremove from playlist
  • Gordon Ramsay's Ultimate Guide To Christmas Side Dishes
    28:00
    Gordon Ramsay's Ultimate Guide To Christmas Side Dishesremove from playlist
  • Cooking a Christmas Feast 200 Years ago |1820s Historical ASMR Cooking|
    23:13
    Cooking a Christmas Feast 200 Years ago |1820s Historical ASMR Cooking|remove from playlist
  • 2024 Christmas Dinner with My Mom and Brother at Sky River Casino Dragon Beaux Roast Duck & Hot Pot
    8:15
    2024 Christmas Dinner with My Mom and Brother at Sky River Casino Dragon Beaux Roast Duck & Hot Potremove from playlist
  • Honey Glazed Roasted Carrots & Parsnips | The Perfect Side For Christmas Dinner!
    6:11
    Honey Glazed Roasted Carrots & Parsnips | The Perfect Side For Christmas Dinner!remove from playlist
PLAYLIST TIME: 0:00 / 2:40:51

This Is How I Cook Christmas Dinner

Today, follow along as I cook the team a Christmas dinner feast - the way I would normally cook a feast without cameras and recipes. The steps overlap, my time is limited, the recipes are delicious and the team will be well fed. Enjoy ✌️  Timings for Your Christmas Dinner The timings below are for a 3pm dinner. Adjust as needed based on the time you're planning to eat, e.g. if you're eating at 6pm, you would start at 1pm. It's worth noting that these timings should give you plenty of time to still enjoy yourself, and the more you do the day before, the less you have to do on the day. Hour 1: 10am Put the beef in the oven. Make the stuffing, then leave it in the fridge to cool. Make the Yorkshire pudding batter. Hour 2: 11am Peel and cut the potatoes. Start boiling the potatoes. Prepare chickens for the oven. Prepare, cook, and cool the baby carrots. Hour 3: 12pm Place the chickens in the oven. Prepare, cook, and cool the sprouts. Start making the gravy. Hour 4: 1pm You should be at a good point now. Tidy up and prepare for the final push to have everything ready on time. About halfway through the hour, start roasting the potatoes. Start cooking the Yorkshire puddings. Hour 5 (final hour): 2pm - Go Time 15 minutes into the last hour, put the beef and chicken back in for the final browning. Once the meat is back in, start finishing the carrots and sprouts. 20 minutes before your meal, start to carve the meat. Plate the vegetables - if they need a quick flash in the oven to get them piping hot, go for it. All going to plan, everything should be on the table with 5 minutes to spare. RECIPES: Rib eye roast beef: https://www.andy-cooks.com/blogs/recipes/roast-beef Yorkshire puddings: https://www.andy-cooks.com/blogs/recipes/yorkshire-puddings Roast chicken with sage and bacon stuffing: https://www.andy-cooks.com/blogs/recipes/roast-chicken Gravy: https://www.andy-cooks.com/blogs/recipes/christmas-gravy Crispy roast potatoes: https://www.andy-cooks.com/blogs/recipes/crispy-roast-potatoes Honey and thyme glazed baby carrots: https://www.andy-cooks.com/blogs/recipes/honey-glazed-baby-carrots Brussels sprouts with bacon and maple syrup: https://www.andy-cooks.com/blogs/recipes/bacon-and-maple-brussels-sprouts FOLLOW ME: Instagram: https://www.instagram.com/andyhearnden TikTok: https://www.tiktok.com/@andy_cooks Facebook: https://www.facebook.com/andy.h.cooks Snapchat: https://story.snapchat.com/p/4730e972-0ae2-4135-8995-a2891534ae1a/1534118165082112 Website with all my recipes: https://www.andy-cooks.com/ Director, Chef and Host: Andy Videographer, Editor: Mitch Henderson Production Manager: Dazz Braeckmans Editor: Caleb Dawkins
26:47
This Is How I Cook Christmas Dinner
Today, follow along as I cook the team a Christmas dinner feast - the way I would normally...
published: 16 Dec 2023
Play in Full Screen
20:34
The Perfect Christmas Dinner
We celebrate multiple Holidays in my family from Hanukkah, to Christmas, to everything in ...
published: 21 Dec 2022
Play in Full Screen
20:26
10 Easy Christmas Dinner and Side Dish Recipes | Allrecipes
Get ready to elevate your holiday feast with this ultimate guide to 10 mouthwatering Chris...
published: 20 Dec 2019
Play in Full Screen
25:24
Extra Special Christmas Dinners | Gordon Ramsay
With Christmas, this week, here are a few recipes that take traditional ones and make them...
published: 21 Dec 2021
Play in Full Screen
1:00
Everything I ate at Christmas dinner! #foodie #shorts #christmas #eating
published: 25 Dec 2024
Play in Full Screen
28:00
Gordon Ramsay's Ultimate Guide To Christmas Side Dishes
With Christmas around the corner, here are some side dishes to stun your family. #GordonR...
published: 13 Dec 2020
Play in Full Screen
1:01
British Christmas Dinner ! #christmasdinner
published: 22 Dec 2023
Play in Full Screen
23:13
Cooking a Christmas Feast 200 Years ago |1820s Historical ASMR Cooking|
A wild game pie, gingerbread and a dish that strikingly resembles a...bean burger? Let's r...
published: 21 Dec 2023
Play in Full Screen
8:15
2024 Christmas Dinner with My Mom and Brother at Sky River Casino Dragon Beaux Roast Duck & Hot Pot
If you appreciate my videos, please consider helping me continue to make them by sending m...
published: 07 Feb 2025
Play in Full Screen
6:11
Honey Glazed Roasted Carrots & Parsnips | The Perfect Side For Christmas Dinner!
These roasted vegetables are the perfect side dish or table filler for you to have this Ch...
published: 12 Dec 2022
Play in Full Screen

Christmas dinner

Christmas dinner is a meal traditionally eaten at Christmas around the world. It often reflects the culture of the country in which it is eaten.

Asia

India

Indian people cook a variety of foods, including Biryani with chicken or lamb/mutton, chicken and mutton curry, followed by cake or sweets like Kheer. Long established Christian communities such as Goan Catholics have pork dishes as part of their main course of their Christmas dinner. These include Pork Vindaloo and Sorpatel. For dessert a dish called Bebinca is popular.

Japan

Japanese Christmas cake, a white sponge cake covered with cream and decorated with strawberries, is often consumed and Stollen cake, either imported or made locally, is widely available. A successful advertising campaign in the 1970s made eating at KFC around Christmas a national custom. Its chicken meals are so popular during the season that stores take reservations months in advance.

Lebanon

The Lebanese, mostly Christians but also Muslims, celebrate Christmas dinners. The feast, usually on both the night of the 24th and lunch of the 25th, is a big one. Some have the leftovers from the dinner prior at the lunch the next day. Traditional offering for Christmas is sugar coated almonds. Family gets together at both meals. Roast turkey is the most common choice of meal. Roasted duck, Lebanese salad (Tabouleh) and pastries such as Honey cake and "Buche De Noël" are also common. At midnight the Christians are seen to go to mass at church. Beirut celebrates Christmas by conducting glamourous and big Christmas parties. Western style exhibitions of poinsettias, Community Christmas trees and Christmas lights are very popular.

'); } else { var query = elem.find('.keywords').html(); $.ajax({ context: elem, url: 'https://wn.com/api/upge/cheetah-search-adv/video', cache: true, data: { 'query': query }, dataType: 'jsonp', success: function(text) { if (text.length > 0) { video_id = text[0].id; elem.find('.player').html(''); } } }); } } var stopAllYouTubeVideos = function() { var iframes = document.querySelectorAll('iframe'); Array.prototype.forEach.call(iframes, function(iframe) { iframe.contentWindow.postMessage(JSON.stringify({ event: 'command', func: 'pauseVideo' }), '*'); }); } jQuery(function() { jQuery(".playVideo").live("click", function() { if(!$(this).hasClass("played")){ stopAllYouTubeVideos(); var elem = $(this); setTimeout(function(){ mouseOverMe(elem); }, 1000); } }); jQuery(".description_box .expandContent").live("click", function() { elem = $(this).parent().parent().parent().find('.descContent'); if(elem.height() > 51) { elem.css('height', '44px'); $(this).html('Show More '); }else{ elem.css('height', 'auto'); $(this).html('Hide '); } }); jQuery('.interview-play-off').click(function() { $(".interview-play-off").hide(); $(".interview-play").show(); $(".videoplayer-control-pause").click(); }); jQuery(".video-desc .show_author_videos").live("click", function() { query = $(this).attr('title'); container = $(this).parent().parent().parent().find('.video-author-thumbs'); $(this).parent().parent().parent().find('.video-author-thumbs').css('height', '220px'); jQuery.ajax({ url: '/api/upge/cheetah-photo-search/videoresults', data: {'query': query}, success: function(text) { if(!text) { text = i18n("No results"); } container.html(jQuery(text)); } }); }); }); // -->
×