'+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; })); }); -->

Podcasts:

  • Duke Deuce "Blood Sweat & Tears" (Official Album Visualizer)

    published: 17 Jun 2022
  • Duke's Mark Williams Almost Tears Down A Rim | ACC Must See Moment

    Duke big man Mark Williams takes the feed, absorbs the foul, and finishes with a huge power dunk as Duke took it to UNC in this ACC Must See Moment! SUBSCRIBE: http://bit.ly/Oqg3iE The ACC Digital Network (theACCDN) is a joint venture between Stadium, and Raycom Sports, a long-time television producer and partner of the Atlantic Coast Conference. The cross-platform digital video network covers the spectrum of one of the nation’s top intercollegiate athletic conferences, featuring original on-demand content throughout the entire year. All ACCDN videos are viewable on theACC.com, the ACC mobile and tablet app, as well as various streaming and connected mobile and TV devices. For more information, visit theACC.com and follow @theACCDN on Twitter, and Instagram. Connect with the ACCD...

    published: 06 Feb 2022
  • Duke Of Friday

    Provided to YouTube by Universal Music Group Duke Of Friday · Tears Tears ℗ 1974 Universal Music AB Released on: 1974-06-01 Producer: Tears Associated Performer, Bass Guitar: Matti Vuorinen Associated Performer, Electric Guitar: Eddie Eriksson Associated Performer, Drums: Hans Fogelberg Associated Performer, Vocals: Lars Furberg Composer Lyricist: Lars Furberg Composer Lyricist: Matti Vourinen Auto-generated by YouTube.

    published: 01 Jun 2020
  • Duke Robillard Trio My Tears LIVE @ Blue Frog Studios

    Duke Robillard - March 26 2023 "One of the great players" - BB King // "One of God's guitarists.” The Houston Post. GRAMMY AWARD winner Duke Robillard is an American guitarist & singer. He founded the band Roomful of Blues & was a member of the Fabulous Thunderbirds. Whether it’s a song, a style, an idiom or an image, Duke Robillard will render it with mastery, power, nuance & an unerring grasp of its essence. Visit our website to check out upcoming livestreams from Blue Frog Studios: https://www.bluefrogstudios.ca/ About Blue Frog Studios ⤵️ Blue Frog Studios is Canada's hottest live multimedia recording studio and event venue, located in the west coast beach-side town of White Rock, BC (about 40 mins south of Vancouver). The studio provides world-class sound and lighting, as well as 4...

    published: 01 Apr 2023
  • Tears of the Duke

    Provided to YouTube by Believe SAS Tears of the Duke · Relaxing Piano Crew Weeping Piano ℗ S2S Inc Released on: 2018-08-06 Composer: Relaxing Piano Crew Auto-generated by YouTube.

    published: 30 Aug 2018
  • Duke star Jared McCain in tears as he’s drafted by Sixers

    Sixers take Duke guard Jared McCain 16th overall 🏀 first Duke freshman to score 30 or more points twice in a single NCAA Tournament In a major move, the Philadelphia 76ers have selected 6'3" guard Jared McCain from Duke with the No. 16 overall pick in the NBA Draft. McCain, known for his sharpshooting skills, impressed during his freshman season, hitting 41.4% from three on 5.8 attempts per game. The Sixers are looking to boost their perimeter game, and McCain’s addition could be a game-changer. Stay tuned for more updates on this exciting pick! #NBA #Sixers #NBADraft #JaredMcCain #Duke #Basketball #ThreePointShooter Dream come true! Sixers 1st rounder Jared McCain says this has been his dream since he was 5 https://youtu.be/j6tGHh4NMzM 2023-24 ACC All-Rookie, All-ACC Honorable Mentio...

    published: 27 Jun 2024
  • Ronnie Earl & Duke Robillard - My Tears

    Ronnie Earl & Duke Robillard 2005 "The Duke Meets The Earl"

    published: 21 Oct 2012
  • 3am Chat w/ Aseer The Duke of Tiers - Moor Past Present & Future

    Today will be a 3am discussion with the Noble Aseer, as he shares his wisdom on the moorish and aboriginal paradigm. We'll be flowing straight from the survival scrolls! Tune in! 👁️ Contact Aseer The Duke of Tiers: Www.aseerthedukeoftiers.com FOR DONATIONS: CASHAPP.COM: $DS418 PAYPAL.COM: dukeoftiers@gmail.com ADOT app/Google Play, Apple Play To Purchase The Dark Skull 418: World's Most Dangerous Comic Book Novel!: https://buy.stripe.com/28o6pmgVK8kicE... www.gumroad.com (type Aseer the Duke Tiers in the search) www.cordobaorganics.com Facebook: Aseer Ali Cordoba Brand new Sample Pack Dropped! Producers: Support The Support: Get Trapanese 8 - Discount Code "Trap" https://mgthefuture.com/product/977982 =================== https://www.mgthefuture - urban kits for beatmakers and p...

    published: 17 Feb 2024
  • Duke Vespers Ensemble Concert - Orlando di Lasso's Tears of St. Peter - 3/30/14 at 4PM

    Duke Vespers Ensemble Concert - "Orlando di Lasso's Tears of St. Peter" This concert will feature the rarely performed late-Renaissance masterwork Lagrime di San Pietro by composer Orlando Lasso, which explores the grief of St. Peter after his denial of Christ. This highly expressive sequence of 21 madrigals represents the height of Renaissance polyphony, and combines techniques used throughout Lasso's career.

    published: 30 Mar 2014
Duke Deuce "Blood Sweat & Tears" (Official Album Visualizer)
2:43

Duke Deuce "Blood Sweat & Tears" (Official Album Visualizer)

  • Order:
  • Duration: 2:43
  • Uploaded Date: 17 Jun 2022
  • views: 34953
https://wn.com/Duke_Deuce_Blood_Sweat_Tears_(Official_Album_Visualizer)
Duke's Mark Williams Almost Tears Down A Rim | ACC Must See Moment
0:27

Duke's Mark Williams Almost Tears Down A Rim | ACC Must See Moment

  • Order:
  • Duration: 0:27
  • Uploaded Date: 06 Feb 2022
  • views: 1325
Duke big man Mark Williams takes the feed, absorbs the foul, and finishes with a huge power dunk as Duke took it to UNC in this ACC Must See Moment! SUBSCRIBE: http://bit.ly/Oqg3iE The ACC Digital Network (theACCDN) is a joint venture between Stadium, and Raycom Sports, a long-time television producer and partner of the Atlantic Coast Conference. The cross-platform digital video network covers the spectrum of one of the nation’s top intercollegiate athletic conferences, featuring original on-demand content throughout the entire year. All ACCDN videos are viewable on theACC.com, the ACC mobile and tablet app, as well as various streaming and connected mobile and TV devices. For more information, visit theACC.com and follow @theACCDN on Twitter, and Instagram. Connect with the ACCDigitalNetwork Online: Visit the ACC WEBSITE: http://theacc.com Visit the ACC Facebook: https://www.facebook.com/theACC/ Follow the ACCDN on Twitter: https://twitter.com/theACCDN Follow the ACCDN on Instagram: http://instagram.com/theACCDN http://www.youtube.com/user/ACCDigitalNetwork
https://wn.com/Duke's_Mark_Williams_Almost_Tears_Down_A_Rim_|_Acc_Must_See_Moment
Duke Of Friday
3:20

Duke Of Friday

  • Order:
  • Duration: 3:20
  • Uploaded Date: 01 Jun 2020
  • views: 1214
Provided to YouTube by Universal Music Group Duke Of Friday · Tears Tears ℗ 1974 Universal Music AB Released on: 1974-06-01 Producer: Tears Associated Performer, Bass Guitar: Matti Vuorinen Associated Performer, Electric Guitar: Eddie Eriksson Associated Performer, Drums: Hans Fogelberg Associated Performer, Vocals: Lars Furberg Composer Lyricist: Lars Furberg Composer Lyricist: Matti Vourinen Auto-generated by YouTube.
https://wn.com/Duke_Of_Friday
Duke Robillard Trio My Tears LIVE @ Blue Frog Studios
11:02

Duke Robillard Trio My Tears LIVE @ Blue Frog Studios

  • Order:
  • Duration: 11:02
  • Uploaded Date: 01 Apr 2023
  • views: 5569
Duke Robillard - March 26 2023 "One of the great players" - BB King // "One of God's guitarists.” The Houston Post. GRAMMY AWARD winner Duke Robillard is an American guitarist & singer. He founded the band Roomful of Blues & was a member of the Fabulous Thunderbirds. Whether it’s a song, a style, an idiom or an image, Duke Robillard will render it with mastery, power, nuance & an unerring grasp of its essence. Visit our website to check out upcoming livestreams from Blue Frog Studios: https://www.bluefrogstudios.ca/ About Blue Frog Studios ⤵️ Blue Frog Studios is Canada's hottest live multimedia recording studio and event venue, located in the west coast beach-side town of White Rock, BC (about 40 mins south of Vancouver). The studio provides world-class sound and lighting, as well as 4K video and audio recording technology with an unparalleled production team. From the 23-foot high ceilings, to the river rock walls and beautiful hardwood floors, you know you are in a special place. In the style of Austin City Limits, our 4800 sq. foot facility seats 100 lucky audience members for unique, up close and personal concerts with some of the world’s most talented entertainers. Anyone who has seen a show or recorded here will tell you that it is one of the best sounding rooms in Canada. Website: http://bluefrogstudios.ca Instagram: https://www.instagram.com/bluefrogstudios/ Facebook: https://www.facebook.com/BlueFrogLive/ Twitter: https://twitter.com/BlueFrogLive #music #bluefrogstudios
https://wn.com/Duke_Robillard_Trio_My_Tears_Live_Blue_Frog_Studios
Tears of the Duke
2:07

Tears of the Duke

  • Order:
  • Duration: 2:07
  • Uploaded Date: 30 Aug 2018
  • views: 37
Provided to YouTube by Believe SAS Tears of the Duke · Relaxing Piano Crew Weeping Piano ℗ S2S Inc Released on: 2018-08-06 Composer: Relaxing Piano Crew Auto-generated by YouTube.
https://wn.com/Tears_Of_The_Duke
Duke star Jared McCain in tears as he’s drafted by Sixers
0:50

Duke star Jared McCain in tears as he’s drafted by Sixers

  • Order:
  • Duration: 0:50
  • Uploaded Date: 27 Jun 2024
  • views: 951
Sixers take Duke guard Jared McCain 16th overall 🏀 first Duke freshman to score 30 or more points twice in a single NCAA Tournament In a major move, the Philadelphia 76ers have selected 6'3" guard Jared McCain from Duke with the No. 16 overall pick in the NBA Draft. McCain, known for his sharpshooting skills, impressed during his freshman season, hitting 41.4% from three on 5.8 attempts per game. The Sixers are looking to boost their perimeter game, and McCain’s addition could be a game-changer. Stay tuned for more updates on this exciting pick! #NBA #Sixers #NBADraft #JaredMcCain #Duke #Basketball #ThreePointShooter Dream come true! Sixers 1st rounder Jared McCain says this has been his dream since he was 5 https://youtu.be/j6tGHh4NMzM 2023-24 ACC All-Rookie, All-ACC Honorable Mention, All-ACC Academic Team Voted to Kyle Macy Freshman All-America Team Selected to the NCAA South Regional All-Tournament Team Named the winner of the Pagliuca Familiy Award at the team's end-of-season banquet, presented to the player that best displayed the commitment and values of Duke basketball CBS Sports/USBWA Freshman of the Week (12/26), ACC Rookie of the Week (1/29) The lone freshman in Duke’s starting lineup for its exhibition against UNC Pembroke -- scored 15 points in 20 minutes, including a perfect 9-for-9 from the free throw line Made first career start against Dartmouth, scoring eight points, including connecting on two shots from deep Played 29 minutes against Arizona, scoring nine points and grabbing four rebounds while adding five assists Recorded first career double-double versus Bucknell, scoring 17 points with 10 rebounds, including four three-pointers in the second half Career-high 11 rebounds versus Arkansas, including seven on the defensive glass First career game with 20+ points in Duke’s win over Charlotte, scoring 21 on 7-of-13 shooting from the field Played a career-high 36 minutes in Duke’s win over No. 10 Baylor -- making two key three-pointers in the second half to help the Blue Devils rally from a second-half deficit and secure a top-10 victory. Connected on at least two three-pointers in seven straight games (12/9/23-1/9/24) Team-high 20 points versus Pittsburgh (1/20) while playing a career-high 38 minutes for the second consecutive game Secured his fifth 20-point performance, using 16 second-half points en route to a game-high 21 total, against Clemson Logged three steals versus the Tigers, all coming within a two-minute span in the closing moments to help secure the comeback win Grabbed 10 boards at Virginia Tech, a team-high, his third game with double-digit rebounds Once again led the team in rebounding at North Carolina, scoring 23 points alongside a career-high 11 boards Third game in a four-contest span with at least 10 boards with an 11-point, 10-rebound double-double vs. Boston College (2/10) Remained in form with another double-double, against Wake Forest (2/12), scoring 17 points and reeling in 10 boards Record-setting day at Florida State (2/17), scoring 35 points on 12-of-20 shooting, including 8-of-11 from beyond the arc, matching Zion WilliamsonHear how to pronounce Zion Williamson’s Duke freshman scoring record and set a new Duke freshman record for 3-pointers in a game Set Duke NCAA Tournament record with eight 3-pointers vs. James Madison (3/24), including six in the first half Did not commit a turnover versus the Dukes, becoming the first freshman since the NCAA Tournament expanded to 64 teams in 1985 to score at least 30 points with no turnovers Became the first Duke freshman to score 30 or more points twice in a single NCAA Tournament, adding 32 in the Elite Eight versus NC State (3/31), tying Zion WilliamsonHear how to pronounce Zion Williamson's freshman NCAA Tournament scoring record HIGH SCHOOL Rated by 247Sports with five stars as the No. 14 player nationally, the No. 3 combo guard and the No. 1 player from the state of California Rated by ESPN with five stars as the No. 10 player nationally, the No. 2 shooting guard and the No. 1 player from the state of California Named the Gatorade California Player of the Year after both his junior and senior seasons Named a McDonald’s All-American, scoring nine points for Team West Averaged 18.0 points, 7.1 rebounds, 4.0 assists and 1.5 steals in 34 games as a senior Helped lead Centennial to a second consecutive California Open Division state title in the 2021-22 season Named the MVP of the Open Division in 2022 Also earned first-team Open Division and All-League honors in 2019 and 2021 Played for Russell Westbrook's Team Why Not on the Nike EYBL circuit Part of the gold medal winning USA U18 National Team in Mexico Initially committed to Duke on March 18, 2022 Also had offers from Gonzaga, Kansas and Houston among others
https://wn.com/Duke_Star_Jared_Mccain_In_Tears_As_He’S_Drafted_By_Sixers
Ronnie Earl & Duke Robillard - My Tears
16:00

Ronnie Earl & Duke Robillard - My Tears

  • Order:
  • Duration: 16:00
  • Uploaded Date: 21 Oct 2012
  • views: 70760
Ronnie Earl & Duke Robillard 2005 "The Duke Meets The Earl"
https://wn.com/Ronnie_Earl_Duke_Robillard_My_Tears
3am Chat w/ Aseer The Duke of Tiers -  Moor Past Present & Future
2:57:55

3am Chat w/ Aseer The Duke of Tiers - Moor Past Present & Future

  • Order:
  • Duration: 2:57:55
  • Uploaded Date: 17 Feb 2024
  • views: 34802
Today will be a 3am discussion with the Noble Aseer, as he shares his wisdom on the moorish and aboriginal paradigm. We'll be flowing straight from the survival scrolls! Tune in! 👁️ Contact Aseer The Duke of Tiers: Www.aseerthedukeoftiers.com FOR DONATIONS: CASHAPP.COM: $DS418 PAYPAL.COM: dukeoftiers@gmail.com ADOT app/Google Play, Apple Play To Purchase The Dark Skull 418: World's Most Dangerous Comic Book Novel!: https://buy.stripe.com/28o6pmgVK8kicE... www.gumroad.com (type Aseer the Duke Tiers in the search) www.cordobaorganics.com Facebook: Aseer Ali Cordoba Brand new Sample Pack Dropped! Producers: Support The Support: Get Trapanese 8 - Discount Code "Trap" https://mgthefuture.com/product/977982 =================== https://www.mgthefuture - urban kits for beatmakers and producers! 🎹👨🏾‍🍳 New Album 2023 - https://mgthefuture.com/album/2668586/2023 🚨 =================== Support The Support! Cashapp $mgthefuture =================== #BeatTalk #MusicProduction #MGTheFuture #ProducerCommunity #3am #thedailies #blackhistorymonth #moorishscience Also, my new REMIX tape is out - get its here (free) https://mgthefuture.com/art-of-the-remix Join the discussion on my Discord 🗣 https://discord.gg/ERazbX2Y2U Follow me on Social Media 🏙 https://www.instagram.com/mgthefuture https://www.twitter.com/twitter
https://wn.com/3Am_Chat_W_Aseer_The_Duke_Of_Tiers_Moor_Past_Present_Future
Duke Vespers Ensemble Concert - Orlando di Lasso's Tears of St. Peter - 3/30/14 at 4PM
1:11:15

Duke Vespers Ensemble Concert - Orlando di Lasso's Tears of St. Peter - 3/30/14 at 4PM

  • Order:
  • Duration: 1:11:15
  • Uploaded Date: 30 Mar 2014
  • views: 3813
Duke Vespers Ensemble Concert - "Orlando di Lasso's Tears of St. Peter" This concert will feature the rarely performed late-Renaissance masterwork Lagrime di San Pietro by composer Orlando Lasso, which explores the grief of St. Peter after his denial of Christ. This highly expressive sequence of 21 madrigals represents the height of Renaissance polyphony, and combines techniques used throughout Lasso's career.
https://wn.com/Duke_Vespers_Ensemble_Concert_Orlando_Di_Lasso's_Tears_Of_St._Peter_3_30_14_At_4Pm
PLAYLIST TIME:
  • Most Related
  • Most Recent
  • Most Popular
  • Top Rated
  • Duke's Mark Williams Almost Tears Down A Rim | ACC Must See Moment
    0:27
    Duke's Mark Williams Almost Tears Down A Rim | ACC Must See Momentremove from playlist
  • Duke Of Friday
    3:20
    Duke Of Fridayremove from playlist
  • Duke Robillard Trio My Tears LIVE @ Blue Frog Studios
    11:02
    Duke Robillard Trio My Tears LIVE @ Blue Frog Studiosremove from playlist
  • Tears of the Duke
    2:07
    Tears of the Dukeremove from playlist
  • Duke star Jared McCain in tears as he’s drafted by Sixers
    0:50
    Duke star Jared McCain in tears as he’s drafted by Sixersremove from playlist
  • 3am Chat w/ Aseer The Duke of Tiers -  Moor Past Present & Future
    2:57:55
    3am Chat w/ Aseer The Duke of Tiers - Moor Past Present & Futureremove from playlist
  • Duke Vespers Ensemble Concert - Orlando di Lasso's Tears of St. Peter - 3/30/14 at 4PM
    1:11:15
    Duke Vespers Ensemble Concert - Orlando di Lasso's Tears of St. Peter - 3/30/14 at 4PMremove from playlist
PLAYLIST TIME:

Duke Deuce "Blood Sweat & Tears" (Official Album Visualizer)

2:43
Duke Deuce "Blood Sweat & Tears" (Official Album Visualizer)
published: 17 Jun 2022
Play in Full Screen
0:27
Duke's Mark Williams Almost Tears Down A Rim | ACC Must See Moment
Duke big man Mark Williams takes the feed, absorbs the foul, and finishes with a huge powe...
published: 06 Feb 2022
Play in Full Screen
3:20
Duke Of Friday
Provided to YouTube by Universal Music Group Duke Of Friday · Tears Tears ℗ 1974 Univer...
published: 01 Jun 2020
Play in Full Screen
11:02
Duke Robillard Trio My Tears LIVE @ Blue Frog Studios
Duke Robillard - March 26 2023 "One of the great players" - BB King // "One of God's guita...
published: 01 Apr 2023
Play in Full Screen
2:07
Tears of the Duke
Provided to YouTube by Believe SAS Tears of the Duke · Relaxing Piano Crew Weeping Piano...
published: 30 Aug 2018
Play in Full Screen
0:50
Duke star Jared McCain in tears as he’s drafted by Sixers
Sixers take Duke guard Jared McCain 16th overall 🏀 first Duke freshman to score 30 or mor...
published: 27 Jun 2024
Play in Full Screen
16:00
Ronnie Earl & Duke Robillard - My Tears
Ronnie Earl & Duke Robillard 2005 "The Duke Meets The Earl"
published: 21 Oct 2012
Play in Full Screen
2:57:55
3am Chat w/ Aseer The Duke of Tiers - Moor Past Present & Future
Today will be a 3am discussion with the Noble Aseer, as he shares his wisdom on the mooris...
published: 17 Feb 2024
Play in Full Screen
1:11:15
Duke Vespers Ensemble Concert - Orlando di Lasso's Tears of St. Peter - 3/30/14 at 4PM
Duke Vespers Ensemble Concert - "Orlando di Lasso's Tears of St. Peter" This concert will ...
published: 30 Mar 2014
Play in Full Screen
'); } 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)); } }); }); }); // -->

Latest News for: tears duke

Edit

VIDEO: How billionaires created the DEI panic

Media Matters 06 May 2025
“Trump is almost singlehandedly burying political correctness and tearing up the playbook.”. Former Ku Klux Klan Grand Wizard David Duke also praised Trump’s anti-PC campaign, saying that ... David Duke.
Edit

Royal family hoping ‘nothing will distract’ from VE Day after Harry interview

AOL 04 May 2025
The duke, who appeared emotional and close to tears during much of the sit-down chat, described his court defeat as a “good ...
Edit

King Charles makes big decision after receiving Harry's emotional message

The News International 03 May 2025
King Charles makes big decision after receiving Harry's emotional message ... The Duke said he wants to "reconcile" with his family. However, admitting that King Charles "won't speak to me". The tearful Prince put the ball in the King's court ... .
Edit

Prince Harry makes emotional statement on reconciliation with royal family after defeat

The News International 02 May 2025
In an emotional interview with the BBC, the Duke of Sussex said that he "would love a reconciliation" with the royal family, holding back his tears while making the statement ... However, the Duke ...
Edit

Harry's actress ex Cressida Bonas was 'too boho' to be a royal bride...now with her ...

The Daily Mail 24 Apr 2025
He recalled how Cressida was the one who he broke down in tears to when talking about the loss of his mother on a skiing trip to Switzerland the previous year ... 'Wiping my tears, I thanked her ... She looked at the floor, tears running down her cheeks.
Edit

Obituary: Alden Cary “Duke” Ehler, 1931-2025

Seven Days 17 Apr 2025
Alden CaryDuke” Ehler, a man with a big personality and endless amounts of friends, passed peacefully into the arms of his wife, Emily, and son, Michael, on March 31, 2025, encapsulated by his most loving and attentive daughters.
Edit

Prince Harry receives sad news after making unexpected decision

The News International 17 Apr 2025
Prince Harry might be shedding tears after receiving the latest news about the organisation he left in a shocking manner. The Duke of Sussex, who recently announced he would step down as patron of a ...
  • 1
×