- published: 01 Aug 2024
- views: 16207
'+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; })); }); -->
Oliver Knussen CBE (born 12 June 1952) is a British composer and conductor.
Oliver Knussen was born in Glasgow, Scotland. His father, Stuart Knussen, was principal double bass of the London Symphony Orchestra, and also participated in a number of premieres of Benjamin Britten's music. Oliver Knussen studied composition with John Lambert between 1963 and 1969, and also received encouragement from Britten. He spent several summers studying with Gunther Schuller at Tanglewood in Massachusetts and in Boston. He later became the head of contemporary music activities at Tanglewood, between 1986 and 1993.
He was married to Sue Knussen, a US-born producer and director of music programmes for BBC television and for the UK's Channel 4 – for which she made Leaving Home, an introduction to 20th-century music presented by Simon Rattle in a series of seven one-hour programmes, which won the 1996 BAFTA award for "Best Arts Series". She ran the Los Angeles Philharmonic's education department in the late 1990s. Oliver and Sue Knussen had a daughter, Sonya, who is a mezzo-soprano.
Boston (1833–1850), was an outstanding chestnut Thoroughbred racehorse and a Leading sire in North America three times from 1851 to 1853. He started in about 45 races, winning 40 of these, including 15 in succession. Boston was later one of the initial inductees into the Hall of Fame.
He was a chestnut stallion with a white blaze on his nose and he was foaled in Richmond, Virginia. Boston was bred by the Virginia attorney John Wickham (who had been Aaron Burr's counsel in his trial for treason). He was by the very good racehorse, Timoleon (by the great Sir Archy), his dam was Sister to Tuckahoe by Ball’s Florizel. Boston was inbred to Diomed in the third generation (3m x 3f). He was a half-brother to the Shylock mare who founded a successful family. They were from the number 40 family which traced back to the imported mare, Kitty Fisher.
As a two-year-old, Boston was lost by his breeder in a card game and was given to Wickham's friend Nathaniel Rives, of Richmond to repay his debt of $800. He was named after a popular card game and later given the nickname of "Old Whitenose". Boston had a wilful temperament and was difficult to train. Sent to the stable of John Belcher, and then to the trainer L. White, and then back to Belcher, White said, "The horse should either be castrated or shot—preferably the latter."
A Boston is a cocktail made with London dry gin, apricot brandy, grenadine, and the juice of a lemon.
The Boston refers to a series of various step dances, considered a slow Americanized version of the waltz presumably named after where it originated. It is completed in one measure with the weight kept on the same foot through two successive beats. The "original" Boston is also known as the New York Boston or Boston Point.
Variations of the Boston include:
Horses In A Dream by Boston Manor Purchase, Stream at: https://bostonmanor.bfan.link/horses-in-a-dream Pre-order 'Sundiver' at: https://bostonmanor.bfan.link/sundiver Taken from the album 'Sundiver', out September 6th 2024. Video by Henry Cox - @polytex.studio Lanolin hills That move me To your will Exposed to the soil Everything is moving in slow motion got a feeling I could die for it, die for it Waves that leap up to the surface, percolate & burst & let me lie on it, lie on it Imbue me with your love Share me with desperate blood Like horses dancing through the fields Through water dark as lye You start to multiply and soak me to the bone until I’m yours Everything is moving in slow motion got a feeling I could die for it, die for it Waves that leap up to the surface, percolate &...
Boston Dynamic has unleashed robotic animals on the world.
Samuel Adams, "Your Cousin From Boston, Horses" Marisa Perazzelli (Strategy, 2014) Goodby, Silverstein & Partners San Francisco, California The Brandcenter is a two-year, full-time master's program focused on developing the best creative problem-solvers in the world of brands. Learn more about the Brandcenter: http://www.brandcenter.vcu.edu Follow the Brandcenter on other social media platforms: • Facebook (http://www.facebook.com/VCUBrandcenter) • Twitter (http://www.twitter.com/VCU_Brandcenter) • Instagram (http://www.instagram.com/vcu_brandcenter/) • LinkedIn (http://www.linkedin.com/school/1095073/admin/)
A snow day project, based on a George Washington statue in Boston
He's been a blacksmith for 35 years, and he's the steady, shoe-sculpting hands behind some of racing's biggest stars. Get to know Todd Boston, as he works on a crazy beautiful #KyOaks contender, who goes by the name of #CrazyBeautiful 🌸
My crazy boston terrier Angel (RIP) determined to bite the horse's nose!
Oscar the Boston Terrier meets his first horse on a trip to a local farm! #bostonterrier #dogsandhorses Music: Farewell Musician: Ilya Truhanov URL: https://icons8.com/music
Boston Dynamic's Newest Robot Is Like A Horse On Roller Skates - It can go 9 MPH, jump 4 feet and lift 100 pounds. Plus, it's just damn fun to watch. » Subscribe to NowThis: http://go.nowth.is/News_Subscribe Watch more from NowThis » Like us on Facebook: http://go.nowth.is/News_Facebook » Tweet us on Twitter: http://go.nowth.is/News_Twitter » Follow us on Instagram: http://go.nowth.is/News_Instagram » Find us on Snapchat: http://go.nowth.is/News_Snapchat NowThis is your premier news outlet providing you with all the videos you need to stay up to date on all the latest in trending news. From entertainment to politics, to viral videos and breaking news stories, we’re delivering all you need to know straight to your social feeds. We live where you live. http://www.youtube.com/nowthisnews @...
Ah the king of country @georgestrait! Man I would love to meet with him someday and sing a song together! #georgestrait #therealbostoncowboy #timothyjames #singersongwriter #troubadour #horses #spotify #countrymusic #country #boston #music #viral #love #nashville #youtube #fyp #musician #guitar #applemusic #independentartist
Boston - Horse and Carriage Ride!
Gratuity is mandatory (@Dunkin-Donuts counts) Follow me here: Twitter: @billydeuce86 Instagram: @billydeuce86 TikTok: @billydeuce86 Facebook: https://www.facebook.com/BillyDeuceMusic/
Today we're continuing our city series and this time we're in my home town of Boston! You know the one... And Thank you to Trade. Visit https://drinktrade.com/barfly to receive up to $15 off select plans - and receive a free bag of coffee with your purchase. Recipe at the bottom. And for even more recipes and articles visit our website http://www.theeducatedbarfly.com Shop our awesome dehydrated cocktail garnishes https://shop.theeducatedbarfly.com Our Glassware in Collaboration Amehla 🍸 Nick and Nora Cocktail Coupes https://amzn.to/3oJKtHw 🥃 Old Fashioned Glass Heavy Base https://amzn.to/2Yuv42Q 🍸 Top tools we recommend 🥄 Antique Style Weighted Tin Set: https://amzn.to/2YnjvHH Barfly Measuring Cup Jigger: https://amzn.to/3j4jFfe Barfly Mixing Glass (17oz): https://amzn.to/3iP1DNv GE P...
The Boston cocktail is a citrusy and tart gin-based cocktail with underlying and lingering apricot stone fruit flavours. It's a great drink to showcase your chosen apricot brandy. Note that the recipe may need adjusting depending on the chosen apricot brandy (liqueur) as they will vary in sweetness. REQUEST TO JOIN FACEBOOK GROUP: https://www.facebook.com/groups/366680690723459/ PATREON: https://patreon.com/stevethebartender MARIONETTE APRICOT BRANDY (AUS): https://marionette.com.au/shop/apricot INGREDIENTS - 45mL Gin (1½ oz) - 45mL Apricot Brandy (1½ oz) - 22.5mL Fresh Lemon Juice (¾ oz) - 7.5mL Grenadine (¼ oz) METHOD 1. Combine all ingredients into your cocktail shaker 2. Shake with ice 3. Strain into a chilled cocktail glass 4. Garnish with a slice of apricot Music by Spike's Vib...
►►Alle Tutorials für Barwerkzeuge: http://goo.gl/33rMwj ►►Boston-Shaker im Onlineshop: http://goo.gl/zdlPs2 ►►Dieser Kurs bereitet Dich optimal auf die Prüfung der IHK vor: http://goo.gl/bM71sP ►Facebook: http://fb.com/BarAkademie ►Website: http://BarAkademie.eu ►Instagram: http://instagram.com/barakademie ►Youtube: https://www.youtube.com/user/Barakademie
Today we're making the Ward Eight! This classic drink hails from Boston, but recipes will differ. I like this recipe the best - just whiskey, citrus, and grenadine. Because the build is so simple, it's important to use fresh juice and a quality grenadine. I like a homemade grenadine in the Ward Eight because it has a tart pomegranate flavor that store bought grenadines tend to lack. Of course nothing's stopping you from using whatever grenadine you want, but I do think homemade is the way to go. I'll leave an easy recipe below so you can decide which is best for the Ward Eight! Cheers! Try my grenadine! 👉 https://beveragemixers.com/products/grenadine?sca_ref=6375283.i1mAKIWjO7 Grab the bottles I use here! 👉 https://bit.ly/AndersBottleCollection Patreon: https://www.patreon.com/anderseri...
Marrying G'vine gin with Apricot Brandy dancing in lemon juice and a dash of grenadine and you've got a nice Boston Cocktail. Semi-sour taste worth the sipping, color worth the cocktail.
Which cocktail shaker is the best for your home bar? We pitted 5 of the most popular shakers against each other: The Boston Shaker, The 2 Tin Shaker, The Cobbler, The OXO Shaker, and The Elevated Craft. We've used A TON of different cocktail shakers over the years, so it was particularly enjoyable to finally sit down and evaluate each one. After a thorough evaluation, we came up with a handful of recommendations for your home bar dependent on which style and advantages you care about most. Links to the products we tested: The Boston Shaker: https://amzn.to/3hJjyYV The Cobbler: https://amzn.to/3fAoOLZ The 2-Tin Shaker: https://amzn.to/344w4dx The OXO Shaker: https://amzn.to/3fywbna The Elevated Craft: https://amzn.to/3ozZ5Hy Sections: 0:00 Intro 0:49 The Boston Shaker 2:50 The 2 Tin Sha...
Provided to YouTube by Warner Records Brompton Cocktail · Avenged Sevenfold Avenged Sevenfold ℗ 2007 Warner Records Inc. Viola: Andrew Duckles Unknown: Andy Wallace Unknown: Brian Gardner Cello: Cameron Stone Violin: Caroline Campbell Bass Guitar: Johnny Christ Percussion: Lenny Castro Vocals: M. Shadows Upright Bass: Miles Mosley Violin: Neel Hammond Lead Guitar: Synyster Gates Drums: The Rev Guitar: Zacky Vengeance Writer: James Sullivan Writer: Matthew Sanders Auto-generated by YouTube.
Huikean maukas ja tasapainoinen drinkki. Tässä käytin Japaninaprikoosi -likööriä, joka on hieman kirpeämpi kuin ne, joita esim. Alkon hyllyltä löytyy. Suosittelen kokeilemaan, nam! Boston Cocktail - 45 ml giniä - 30 ml aprikoosilikööriä - 20 ml sitruunamehua (tuoreena, tietenkin) - 7,5 ml Grenadiinia (- 7,5 ml sokerisiirappia) Ravistetaan jäiden kera ja tarjotaan jäähdytetystä coupe- tai martinilasista Juokaa vastuullisesti.
Willkommen zurück bei DrinkLink, deinem Anlaufpunkt für spannende und inspirierende Drinks! Heute tauchen wir in die Welt des Whiskey Sour ein – einem zeitlosen Klassiker, der perfekt die Balance zwischen Süße und Säure trifft. Erfahre in diesem Video die Geschichte, Zubereitung und spannende Variationen dieses Drinks!“ Links: 🥃 Original-Rezept: https://www.diffordsguide.com/cocktails/recipe/2083/whiskey-sour-diffords-recipe 📚 Detaillierte Geschichte: https://bar-vademecum.de 🍸 Cocktail-Kultur: https://cocktail-society.com 📖 Hintergrund zum Whiskey Sour: https://punchdrink.com 🥇 Whiskey-Expertenmeinung: https://www.liquor.com 🧾 Rezepte und Tipps: https://www.thespruceeats.com Community Links: 🎉 https://discord.gg/Mbd8tbwHyV (Unser Discord-Server "Saftladen") 🔴 https://www.twitch.tv/drin...
Which one do you prefer?? Comment below!!!
Oliver Knussen CBE (born 12 June 1952) is a British composer and conductor.
Oliver Knussen was born in Glasgow, Scotland. His father, Stuart Knussen, was principal double bass of the London Symphony Orchestra, and also participated in a number of premieres of Benjamin Britten's music. Oliver Knussen studied composition with John Lambert between 1963 and 1969, and also received encouragement from Britten. He spent several summers studying with Gunther Schuller at Tanglewood in Massachusetts and in Boston. He later became the head of contemporary music activities at Tanglewood, between 1986 and 1993.
He was married to Sue Knussen, a US-born producer and director of music programmes for BBC television and for the UK's Channel 4 – for which she made Leaving Home, an introduction to 20th-century music presented by Simon Rattle in a series of seven one-hour programmes, which won the 1996 BAFTA award for "Best Arts Series". She ran the Los Angeles Philharmonic's education department in the late 1990s. Oliver and Sue Knussen had a daughter, Sonya, who is a mezzo-soprano.