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

Duke

A duke (male) (British English: /djk/ or American English: /dk/) or duchess (female) can either be a monarch ruling over a duchy or a member of the nobility, historically of highest rank below the monarch. The title comes from French duc, itself from the Latin dux, 'leader', a term used in republican Rome to refer to a military commander without an official rank (particularly one of Germanic or Celtic origin), and later coming to mean the leading military commander of a province.

During the Middle Ages the title (as Herzog) signified first among the Germanic monarchies. Dukes were the rulers of the provinces and the superiors of the counts in the cities and later, in the feudal monarchies, the highest-ranking peers of the king. A duke may or may not be, ipso facto, a member of the nation's peerage: in the United Kingdom and Spain all dukes are/were also peers of the realm, in France some were and some were not, while the term is not applicable to dukedoms of other nations, even where an institution similar to the peerage (e.g., Grandeeship, Imperial Diet, Hungarian House of Magnates) existed.

This page contains text from Wikipedia, the Free Encyclopedia - https://wn.com/Duke

Java (software platform)

Java is a set of computer software and specifications developed by Sun Microsystems, later acquired by Oracle Corporation, that provides a system for developing application software and deploying it in a cross-platform computing environment. Java is used in a wide variety of computing platforms from embedded devices and mobile phones to enterprise servers and supercomputers. While less common, Java applets run in secure, sandboxed environments to provide many features of native applications and can be embedded in HTML pages.

Writing in the Java programming language is the primary way to produce code that will be deployed as byte code in a Java Virtual Machine (JVM); byte code compilers are also available for other languages, including Ada, JavaScript, Python, and Ruby. In addition, several languages have been designed to run natively on the JVM, including Scala, Clojure and Groovy. Java syntax borrows heavily from C and C++, but object-oriented features are modeled after Smalltalk and Objective-C. Java eschews certain low-level constructs such as pointers and has a very simple memory model where every object is allocated on the heap and all variables of object types are references. Memory management is handled through integrated automatic garbage collection performed by the JVM.

Duke (disambiguation)

A Duke or Grand Duke is a title of nobility for aristocrats of very high rank.

Duke, Dukes, or The Duke may also refer to:

People

  • Duke (surname)
  • Dukes (surname)
  • Duke Ihenacho (born 1989), American National Football League player
  • Duke Kahanamoku (1890-1968), Hawaiian swimmer and surfer
  • Duke McKenzie (born 1963), British retired boxer
  • Duke Worne (1888-1933), American silent film director and actor
  • Duke (nickname)
  • Fictional characters

  • Duke (G.I. Joe), from the G.I. Joe TV series, toy line and comic book series
  • Duke the Lost Engine, from The Railway series
  • Uncle Duke, from Doonesbury
  • Tony "Duke" Evers, in the Rocky films
  • Duke Lavery, on the American soap opera General Hospital
  • Duke, from KOF: Maximum Impact
  • Duke of New York, aka "The Duke, A Number One", gang leader in Escape from New York
  • Duke, the dog from the animated film Barnyard and its television spin-off Back at the Barnyard
  • Duke Nukem (character), fictional character and action hero who has been the protagonist in over a dozen video games
  • Podcasts:

    Matching books:

    Duke

    ALBUMS

    D.U.K.E.

    ALBUMS

    DJ Duke

    Duke

    ALBUMS

    Duke

    ALBUMS

    Duke

    ALBUMS

    Yves Baudhuin

    ALBUMS

    Duke

    • 2024-25 Duke Blue Planet | Episode 14 (ACC RS Champs/UNC)

      Run with the squad for a big win at UNC. The Blue Devils rallied from seven down in the second half to get the dub and secure the ACC regular-season title outright.

      published: 11 Mar 2025
    • Duke x Kawtar - Ghali (Official Music Video) | غالي

      Duke x Kawtar - Ghali (Official Music Video) | غالي Subscribe to Duke's YouTube channel here: https://www.youtube.com/@DukeOfficiel1 Written & Composed by: Duke Prod by: Splecter, nolionthebeat Recorded, mixed and mastered by: Duke Guitar by: Benfeddoul Yassine 🎧Listen to "Ghali" on the streaming platforms: https://duke-kawtar.lnk.to/Ghali 🎧Listen to Duke on the streaming platforms: https://DukeOfficial.lnk.to/Platforms Connect with Duke on social media: https://instagram.com/dukeofficiel1 https://www.tiktok.com/@dukeofficiel1 © Digital Distribution: http://www.youtube.com/@ChabakaOfficial https://chabaka.bio.to/Contactus #Duke #Kawtar #Ghali

      published: 09 Nov 2024
    • 🚨 RIVALRY 🚨 Duke Blue Devils vs. North Carolina Tar Heels | Full Game Highlights | ESPN CBB

      Check out these highlights from the storied rivalry matchup where the No. 2 Duke Blue Devils defeat the North Carolina Tar Heels, 82-69. Duke clinched the ACC regular season title with the win. ✔️ Subscribe to ESPN+ http://espnplus.com/youtube ✔️ Get the ESPN App: http://www.espn.com/espn/apps/espn ✔️ Subscribe to ESPN on YouTube: http://es.pn/SUBSCRIBEtoYOUTUBE ✔️ Subscribe to NBA on ESPN on YouTube: http://bit.ly/SUBSCRIBEtoNBAonESPN ✔️ Watch ESPN on YouTube TV: http://es.pn/YouTubeTV

      published: 09 Mar 2025
    • Son del Duke, Kate Candela - Que Bonito/ Ay Amor (Video Oficial)

      Suscríbete: https://ONErpm.lnk.to/KateCandela. Son del Duke, Kate Candela - Que Bonito/ Ay Amor (Video Oficial) 🎧 Escucha toda mi música en tu plataforma favorita: https://ONErpm.lnk.to/KateCandelaAW Escucha “Mix Que Bonito” en tu plataforma favorita: https://onerpm.link/mixquebonito Sígueme en: Instagram: https://www.instagram.com/katecandelaoficial/ Otros éxitos de Kate Candela: Mix Vallenatos 2: https://youtu.be/oVe4cOsP-Yc Mix Vallenatos, Salsa: https://youtu.be/6dS2bEoACk4 Mix Candela: https://youtu.be/qaoAV2uM8LU Señora: https://youtu.be/4KbNCEvocrQ Playlist By Kate Candela: https://ONErpm.lnk.to/KateCandelaVideosOficiales Letra "Mix Que Bonito": Que bonito es imaginar que tú y yo caminábamos por la orilla del mar Que bonito es estar solo los dos amándonos bajo las estrellas...

      published: 18 Jan 2025
    • Duke's Cooper Flagg Named ACC Rookie & Player Of The Year

      Duke freshman phenom Cooper Flagg lived up to the hype this season and has earned recognition that was expected from the time he enrolled at Duke. Flagg was named both the ACC Rookie of the Year and ACC Player of the Year for the 2024-25 season. The 6'9" wing becomes just the fourth player ever to win both awards in the same season, joining former Duke players Jahlil Okafor, Marvin Bagley and Zion Williamson. Flagg finished the season third in the ACC in scoring at 19.4 points per game, 8th with 7.6 rebounds per game and ranked 5th in the conference in shooting percentage at 49.4%. He led the Blue Devils to the ACC regular season championship and No. 1 seed in the 2025 T. Rowe Price ACC Men's Basketball Tournament and is a contender for many major national Player of the Year awards. SUBS...

      published: 10 Mar 2025
    • DUKE - Mimti (Official Music Video)

      DUKE - Mimti (Official Music Video) Subscribe to Duke's YouTube channel here: https://www.youtube.com/@DukeOfficiel1 •Lyricist: Duke •Composer: Alae Zaidoun 🎧Listen to "Mimti" on the streaming platforms: https://dukeofficial.lnk.to/Mimti 🎧Listen to Duke on the streaming platforms: https://DukeOfficial.lnk.to/Platforms Connect with Duke on social media: https://instagram.com/dukeofficiel1 https://www.tiktok.com/@dukeofficiel1 © Digital Distribution: @ChabakaOfficial https://instagram.com/chabaka.music #Duke #Mimti

      published: 30 Dec 2023
    • Duke - KHSSARA (Official Lyric Video, Prod by Abeats)

      Duke - KHSSARA (Official Lyric Video, Prod by Abeats) Subscribe to Duke's YouTube channel here: https://www.youtube.com/@DukeOfficiel1 •Performed by: DUKE •Recorded, Mixed and Mastered by: DUKE •Prod by: Abeats •Cover Art by: Artz •Lyrics Video by: Dreamsbs 🎧Listen to Duke on the streaming platforms: https://DukeOfficial.lnk.to/Platforms Connect with Duke on social media: https://instagram.com/dukeofficiel1 https://www.tiktok.com/@dukeofficiel1 © Digital Distribution: @ChabakaOfficial https://instagram.com/chabaka.music #Duke #KHSSARA

      published: 29 Apr 2023
    • AP Top 25 Poll Released: Duke jumps Auburn for No. 1 spot, Auburn falls to No. 3

      Matt Norlander joins CBS Sports HQ to breakdown the latest AP Poll Top 25 for College Basketball. SUBSCRIBE TO OUR CHANNEL: https://www.youtube.com/user/CBSSports WATCH CBS Sports HQ: https://www.cbssports.com/live/ Paramount Plus: https://www.paramountplus.com FOLLOW US ON: Facebook - https://www.facebook.com/CBSSports/ Instagram - https://www.instagram.com/cbssports/ Twitter - https://twitter.com/CBSSports #cbb #appoll #collegebasketball

      published: 10 Mar 2025
    • DUKE - HYATI (Official Lyric Video, Prod by Splecter & Nolionthebeat)

      DUKE - HYATI (Official Lyric Video, Prod by Splecter & Nolionthebeat) Subscribe to Duke's YouTube channel here: https://www.youtube.com/@DukeOfficiel1 •Prod by: Splecter & Nolionthebeat •Performed by: DUKE •Recorded, Mixed and Mastered by: DUKE •Lyric Video by: Dreamsbs 🎧Listen to Duke on the streaming platforms: https://DukeOfficial.lnk.to/Platforms Connect with Duke on social media: https://instagram.com/dukeofficiel1 https://www.tiktok.com/@dukeofficiel1 © Digital Distribution: @ChabakaOfficial https://instagram.com/chabaka.music #Duke #HYATI

      published: 23 Sep 2023
    • Mix Recuerdos - Son del Duke

      Mix Recuerdos - Son del Duke Autores: Recuerdos: Juan Alejandro Torres Reinoso Debo Ser Una Idiota: Estanis Mogollón Benites Suscríbete a nuestro canal de YouTube https://www.youtube.com/@orquestasondelduke8290 Escucha Mix Recuerdos en tu plataforma favorita https://orcd.co/mix-recuerdos Sigue a Son del Duke en redes sociales Instagram: https://www.instagram.com/sondelduke Facebook: https://www.facebook.com/profile.php?id=100089567167392 TikTok: https://www.tiktok.com/@sondeldukeoficial #sondelduke #mixrecuerdos #cumbia

      published: 08 Feb 2025
    • MIX PALABRITAS -LO NUEVO DE SON DEL DUKE ( EN VIVO ) CHICLAYO

      Importante: El contenido de este vídeo tiene derechos de autor y es exclusivo de el Canal " MIGUELITO MUSIC ". Cualquier reproducción, plagio, descarga y subida nuevamente a youtube conllevaran a una denuncia por copyright. Disfruta el vídeo y ayúdanos a difundir nuestra cuenta oficial..todo contenido de este producto esta bajo permiso y licencia

      published: 22 Mar 2024
    • California Golden Bears vs. Duke Blue Devils | Full Game Highlights | ESPN College Basketball

      Watch highlights from the ACC as No. 3 Duke defeats Cal, 78-57. Cooper Flagg leads the Blue Devils with 27 PTS, 5 REB, 3 AST & 3 STL. ✔️ Subscribe to ESPN+ http://espnplus.com/youtube ✔️ Get the ESPN App: http://www.espn.com/espn/apps/espn ✔️ Subscribe to ESPN on YouTube: http://es.pn/SUBSCRIBEtoYOUTUBE ✔️ Subscribe to NBA on ESPN on YouTube: http://bit.ly/SUBSCRIBEtoNBAonESPN ✔️ Watch ESPN on YouTube TV: http://es.pn/YouTubeTV

      published: 13 Feb 2025
    • Duke Blue Devils vs. North Carolina Tar Heels Full Match Replay | 2025 ACC Men's Basketball

      In a game full of runs, the No. 2 Duke Blue Devils outlasted the North Carolina Tar Heels in Chapel Hill, 82-69. It was a balanced scoring attack that got the job done for the Blue Devils as four players scored in double figures. Kon Knueppel led the way with 17 points while Tyrese Proctor and Sion James each added 16 and Cooper Flagg finished with 15 points, 9 rebounds and 6 assists in the win. R.J. Davis wrapped up his illustrious career in Chapel Hill in style despite the team's loss. Davis did all that he could to keep the game close, scoring a game-high 20 points on 7-15 shooting from the floor, including 4-9 from three-point range while grabbing 3 rebounds, dishing out 3 assists and recording a steal in the loss.

      published: 10 Mar 2025
    • KTM duke 390 modified status 💚🖤💚🖤💚🖤

      published: 20 Jun 2022
    2024-25 Duke Blue Planet | Episode 14 (ACC RS Champs/UNC)
    22:35

    2024-25 Duke Blue Planet | Episode 14 (ACC RS Champs/UNC)

    • Order:
    • Duration: 22:35
    • Uploaded Date: 11 Mar 2025
    • views: 11225
    Run with the squad for a big win at UNC. The Blue Devils rallied from seven down in the second half to get the dub and secure the ACC regular-season title outright.
    https://wn.com/2024_25_Duke_Blue_Planet_|_Episode_14_(Acc_Rs_Champs_Unc)
    Duke x Kawtar - Ghali (Official Music Video) | غالي
    3:10

    Duke x Kawtar - Ghali (Official Music Video) | غالي

    • Order:
    • Duration: 3:10
    • Uploaded Date: 09 Nov 2024
    • views: 7125057
    Duke x Kawtar - Ghali (Official Music Video) | غالي Subscribe to Duke's YouTube channel here: https://www.youtube.com/@DukeOfficiel1 Written & Composed by: Duke Prod by: Splecter, nolionthebeat Recorded, mixed and mastered by: Duke Guitar by: Benfeddoul Yassine 🎧Listen to "Ghali" on the streaming platforms: https://duke-kawtar.lnk.to/Ghali 🎧Listen to Duke on the streaming platforms: https://DukeOfficial.lnk.to/Platforms Connect with Duke on social media: https://instagram.com/dukeofficiel1 https://www.tiktok.com/@dukeofficiel1 © Digital Distribution: http://www.youtube.com/@ChabakaOfficial https://chabaka.bio.to/Contactus #Duke #Kawtar #Ghali
    https://wn.com/Duke_X_Kawtar_Ghali_(Official_Music_Video)_|_غالي
    🚨 RIVALRY 🚨 Duke Blue Devils vs. North Carolina Tar Heels | Full Game Highlights | ESPN CBB
    11:19

    🚨 RIVALRY 🚨 Duke Blue Devils vs. North Carolina Tar Heels | Full Game Highlights | ESPN CBB

    • Order:
    • Duration: 11:19
    • Uploaded Date: 09 Mar 2025
    • views: 550168
    Check out these highlights from the storied rivalry matchup where the No. 2 Duke Blue Devils defeat the North Carolina Tar Heels, 82-69. Duke clinched the ACC regular season title with the win. ✔️ Subscribe to ESPN+ http://espnplus.com/youtube ✔️ Get the ESPN App: http://www.espn.com/espn/apps/espn ✔️ Subscribe to ESPN on YouTube: http://es.pn/SUBSCRIBEtoYOUTUBE ✔️ Subscribe to NBA on ESPN on YouTube: http://bit.ly/SUBSCRIBEtoNBAonESPN ✔️ Watch ESPN on YouTube TV: http://es.pn/YouTubeTV
    https://wn.com/🚨_Rivalry_🚨_Duke_Blue_Devils_Vs._North_Carolina_Tar_Heels_|_Full_Game_Highlights_|_Espn_Cbb
    Son del Duke, Kate Candela - Que Bonito/ Ay Amor (Video Oficial)
    5:05

    Son del Duke, Kate Candela - Que Bonito/ Ay Amor (Video Oficial)

    • Order:
    • Duration: 5:05
    • Uploaded Date: 18 Jan 2025
    • views: 11958247
    Suscríbete: https://ONErpm.lnk.to/KateCandela. Son del Duke, Kate Candela - Que Bonito/ Ay Amor (Video Oficial) 🎧 Escucha toda mi música en tu plataforma favorita: https://ONErpm.lnk.to/KateCandelaAW Escucha “Mix Que Bonito” en tu plataforma favorita: https://onerpm.link/mixquebonito Sígueme en: Instagram: https://www.instagram.com/katecandelaoficial/ Otros éxitos de Kate Candela: Mix Vallenatos 2: https://youtu.be/oVe4cOsP-Yc Mix Vallenatos, Salsa: https://youtu.be/6dS2bEoACk4 Mix Candela: https://youtu.be/qaoAV2uM8LU Señora: https://youtu.be/4KbNCEvocrQ Playlist By Kate Candela: https://ONErpm.lnk.to/KateCandelaVideosOficiales Letra "Mix Que Bonito": Que bonito es imaginar que tú y yo caminábamos por la orilla del mar Que bonito es estar solo los dos amándonos bajo las estrellas Que bonito es soñar contigo decirte cosas que yo no me atrevo al despertar Que bonito es soñar contigo y detener el tiempo cuando estás conmigo y poderte amar (Voz dúo) Que bonito es...soñar (Voz en off) Es que yo me sigo enamorando... Ay Kate y yo tan solo me pierdo en su mirada Estaba soñando cuando apareció con ojos hechiceros el me enloqueció Mis amigas dicen que no es para mi pero es solo él que me hace feliz Es solamente él que me hace feliz es solamente él que me hace feliz Solo se cosecha lo que se plantó por eso me dicen que soy soñadora Y digo lo que representa en mi vida él es mi hambre, mi sed y mi herida Tu sabes no soy débil yo soy mujer fuerte se que siempre tuve los pies en la tierra por ese hombre yo voy hasta la guerra Ay es amor, ayayay es amor... es el amor ay es amor, ayayay es amor... es el amor Estaba soñando cuando apareció con ojos hechiceros él me enloqueció Mis amigas dicen que no es para mi pero es solo él que me hace feliz Es solamente él que me hace feliz es solamente él que me hace feliz Solo se cosecha lo que se plantó por eso me dicen que soy soñadora Tu sabes no soy débil yo soy mujer fuerte se que siempre tuve los pies en la tierra por ese hombre yo voy hasta la guerra Ay es amor, ayayay es amor... es el amor ay es amor, ayayay es amor... es el amor #KateCandela #Sondelduke #Cielitofernandez #MixQueBonito #Mixcevichito #Salsavallenata
    https://wn.com/Son_Del_Duke,_Kate_Candela_Que_Bonito_Ay_Amor_(Video_Oficial)
    Duke's Cooper Flagg Named ACC Rookie & Player Of The Year
    2:03

    Duke's Cooper Flagg Named ACC Rookie & Player Of The Year

    • Order:
    • Duration: 2:03
    • Uploaded Date: 10 Mar 2025
    • views: 6976
    Duke freshman phenom Cooper Flagg lived up to the hype this season and has earned recognition that was expected from the time he enrolled at Duke. Flagg was named both the ACC Rookie of the Year and ACC Player of the Year for the 2024-25 season. The 6'9" wing becomes just the fourth player ever to win both awards in the same season, joining former Duke players Jahlil Okafor, Marvin Bagley and Zion Williamson. Flagg finished the season third in the ACC in scoring at 19.4 points per game, 8th with 7.6 rebounds per game and ranked 5th in the conference in shooting percentage at 49.4%. He led the Blue Devils to the ACC regular season championship and No. 1 seed in the 2025 T. Rowe Price ACC Men's Basketball Tournament and is a contender for many major national Player of the Year awards. SUBSCRIBE: http://bit.ly/Oqg3iE The ACC Digital Network (theACCDN) is a project of 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_Cooper_Flagg_Named_Acc_Rookie_Player_Of_The_Year
    DUKE - Mimti (Official Music Video)
    3:32

    DUKE - Mimti (Official Music Video)

    • Order:
    • Duration: 3:32
    • Uploaded Date: 30 Dec 2023
    • views: 77554967
    DUKE - Mimti (Official Music Video) Subscribe to Duke's YouTube channel here: https://www.youtube.com/@DukeOfficiel1 •Lyricist: Duke •Composer: Alae Zaidoun 🎧Listen to "Mimti" on the streaming platforms: https://dukeofficial.lnk.to/Mimti 🎧Listen to Duke on the streaming platforms: https://DukeOfficial.lnk.to/Platforms Connect with Duke on social media: https://instagram.com/dukeofficiel1 https://www.tiktok.com/@dukeofficiel1 © Digital Distribution: @ChabakaOfficial https://instagram.com/chabaka.music #Duke #Mimti
    https://wn.com/Duke_Mimti_(Official_Music_Video)
    Duke - KHSSARA (Official Lyric Video, Prod by Abeats)
    2:27

    Duke - KHSSARA (Official Lyric Video, Prod by Abeats)

    • Order:
    • Duration: 2:27
    • Uploaded Date: 29 Apr 2023
    • views: 19675344
    Duke - KHSSARA (Official Lyric Video, Prod by Abeats) Subscribe to Duke's YouTube channel here: https://www.youtube.com/@DukeOfficiel1 •Performed by: DUKE •Recorded, Mixed and Mastered by: DUKE •Prod by: Abeats •Cover Art by: Artz •Lyrics Video by: Dreamsbs 🎧Listen to Duke on the streaming platforms: https://DukeOfficial.lnk.to/Platforms Connect with Duke on social media: https://instagram.com/dukeofficiel1 https://www.tiktok.com/@dukeofficiel1 © Digital Distribution: @ChabakaOfficial https://instagram.com/chabaka.music #Duke #KHSSARA
    https://wn.com/Duke_Khssara_(Official_Lyric_Video,_Prod_By_Abeats)
    AP Top 25 Poll Released: Duke jumps Auburn for No. 1 spot, Auburn falls to No. 3
    4:34

    AP Top 25 Poll Released: Duke jumps Auburn for No. 1 spot, Auburn falls to No. 3

    • Order:
    • Duration: 4:34
    • Uploaded Date: 10 Mar 2025
    • views: 12367
    Matt Norlander joins CBS Sports HQ to breakdown the latest AP Poll Top 25 for College Basketball. SUBSCRIBE TO OUR CHANNEL: https://www.youtube.com/user/CBSSports WATCH CBS Sports HQ: https://www.cbssports.com/live/ Paramount Plus: https://www.paramountplus.com FOLLOW US ON: Facebook - https://www.facebook.com/CBSSports/ Instagram - https://www.instagram.com/cbssports/ Twitter - https://twitter.com/CBSSports #cbb #appoll #collegebasketball
    https://wn.com/Ap_Top_25_Poll_Released_Duke_Jumps_Auburn_For_No._1_Spot,_Auburn_Falls_To_No._3
    DUKE - HYATI (Official Lyric Video, Prod by Splecter & Nolionthebeat)
    2:35

    DUKE - HYATI (Official Lyric Video, Prod by Splecter & Nolionthebeat)

    • Order:
    • Duration: 2:35
    • Uploaded Date: 23 Sep 2023
    • views: 40851507
    DUKE - HYATI (Official Lyric Video, Prod by Splecter & Nolionthebeat) Subscribe to Duke's YouTube channel here: https://www.youtube.com/@DukeOfficiel1 •Prod by: Splecter & Nolionthebeat •Performed by: DUKE •Recorded, Mixed and Mastered by: DUKE •Lyric Video by: Dreamsbs 🎧Listen to Duke on the streaming platforms: https://DukeOfficial.lnk.to/Platforms Connect with Duke on social media: https://instagram.com/dukeofficiel1 https://www.tiktok.com/@dukeofficiel1 © Digital Distribution: @ChabakaOfficial https://instagram.com/chabaka.music #Duke #HYATI
    https://wn.com/Duke_Hyati_(Official_Lyric_Video,_Prod_By_Splecter_Nolionthebeat)
    Mix Recuerdos - Son del Duke
    8:06

    Mix Recuerdos - Son del Duke

    • Order:
    • Duration: 8:06
    • Uploaded Date: 08 Feb 2025
    • views: 2413884
    Mix Recuerdos - Son del Duke Autores: Recuerdos: Juan Alejandro Torres Reinoso Debo Ser Una Idiota: Estanis Mogollón Benites Suscríbete a nuestro canal de YouTube https://www.youtube.com/@orquestasondelduke8290 Escucha Mix Recuerdos en tu plataforma favorita https://orcd.co/mix-recuerdos Sigue a Son del Duke en redes sociales Instagram: https://www.instagram.com/sondelduke Facebook: https://www.facebook.com/profile.php?id=100089567167392 TikTok: https://www.tiktok.com/@sondeldukeoficial #sondelduke #mixrecuerdos #cumbia
    https://wn.com/Mix_Recuerdos_Son_Del_Duke
    MIX PALABRITAS  -LO NUEVO DE  SON DEL DUKE ( EN VIVO ) CHICLAYO
    6:53

    MIX PALABRITAS -LO NUEVO DE SON DEL DUKE ( EN VIVO ) CHICLAYO

    • Order:
    • Duration: 6:53
    • Uploaded Date: 22 Mar 2024
    • views: 16593551
    Importante: El contenido de este vídeo tiene derechos de autor y es exclusivo de el Canal " MIGUELITO MUSIC ". Cualquier reproducción, plagio, descarga y subida nuevamente a youtube conllevaran a una denuncia por copyright. Disfruta el vídeo y ayúdanos a difundir nuestra cuenta oficial..todo contenido de este producto esta bajo permiso y licencia
    https://wn.com/Mix_Palabritas_Lo_Nuevo_De_Son_Del_Duke_(_En_Vivo_)_Chiclayo
    California Golden Bears vs. Duke Blue Devils | Full Game Highlights | ESPN College Basketball
    8:15

    California Golden Bears vs. Duke Blue Devils | Full Game Highlights | ESPN College Basketball

    • Order:
    • Duration: 8:15
    • Uploaded Date: 13 Feb 2025
    • views: 237878
    Watch highlights from the ACC as No. 3 Duke defeats Cal, 78-57. Cooper Flagg leads the Blue Devils with 27 PTS, 5 REB, 3 AST & 3 STL. ✔️ Subscribe to ESPN+ http://espnplus.com/youtube ✔️ Get the ESPN App: http://www.espn.com/espn/apps/espn ✔️ Subscribe to ESPN on YouTube: http://es.pn/SUBSCRIBEtoYOUTUBE ✔️ Subscribe to NBA on ESPN on YouTube: http://bit.ly/SUBSCRIBEtoNBAonESPN ✔️ Watch ESPN on YouTube TV: http://es.pn/YouTubeTV
    https://wn.com/California_Golden_Bears_Vs._Duke_Blue_Devils_|_Full_Game_Highlights_|_Espn_College_Basketball
    Duke Blue Devils vs. North Carolina Tar Heels Full Match Replay | 2025 ACC Men's Basketball
    1:08:40

    Duke Blue Devils vs. North Carolina Tar Heels Full Match Replay | 2025 ACC Men's Basketball

    • Order:
    • Duration: 1:08:40
    • Uploaded Date: 10 Mar 2025
    • views: 38049
    In a game full of runs, the No. 2 Duke Blue Devils outlasted the North Carolina Tar Heels in Chapel Hill, 82-69. It was a balanced scoring attack that got the job done for the Blue Devils as four players scored in double figures. Kon Knueppel led the way with 17 points while Tyrese Proctor and Sion James each added 16 and Cooper Flagg finished with 15 points, 9 rebounds and 6 assists in the win. R.J. Davis wrapped up his illustrious career in Chapel Hill in style despite the team's loss. Davis did all that he could to keep the game close, scoring a game-high 20 points on 7-15 shooting from the floor, including 4-9 from three-point range while grabbing 3 rebounds, dishing out 3 assists and recording a steal in the loss.
    https://wn.com/Duke_Blue_Devils_Vs._North_Carolina_Tar_Heels_Full_Match_Replay_|_2025_Acc_Men's_Basketball
    KTM duke 390 modified status 💚🖤💚🖤💚🖤
    0:12

    KTM duke 390 modified status 💚🖤💚🖤💚🖤

    • Order:
    • Duration: 0:12
    • Uploaded Date: 20 Jun 2022
    • views: 7486344
    https://wn.com/Ktm_Duke_390_Modified_Status_💚🖤💚🖤💚🖤
    PLAYLIST TIME:
    • Most Related
    • Most Recent
    • Most Popular
    • Top Rated
    PLAYLIST TIME: 0:00 / 2:29:26

    2024-25 Duke Blue Planet | Episode 14 (ACC RS Champs/UNC)

    Run with the squad for a big win at UNC. The Blue Devils rallied from seven down in the second half to get the dub and secure the ACC regular-season title outright.
    22:35
    2024-25 Duke Blue Planet | Episode 14 (ACC RS Champs/UNC)
    Run with the squad for a big win at UNC. The Blue Devils rallied from seven down in the se...
    published: 11 Mar 2025
    Play in Full Screen
    3:10
    Duke x Kawtar - Ghali (Official Music Video) | غالي
    Duke x Kawtar - Ghali (Official Music Video) | غالي Subscribe to Duke's YouTube channel h...
    published: 09 Nov 2024
    Play in Full Screen
    11:19
    🚨 RIVALRY 🚨 Duke Blue Devils vs. North Carolina Tar Heels | Full Game Highlights | ESPN CBB
    Check out these highlights from the storied rivalry matchup where the No. 2 Duke Blue Devi...
    published: 09 Mar 2025
    Play in Full Screen
    5:05
    Son del Duke, Kate Candela - Que Bonito/ Ay Amor (Video Oficial)
    Suscríbete: https://ONErpm.lnk.to/KateCandela. Son del Duke, Kate Candela - Que Bonito/ Ay...
    published: 18 Jan 2025
    Play in Full Screen
    2:03
    Duke's Cooper Flagg Named ACC Rookie & Player Of The Year
    Duke freshman phenom Cooper Flagg lived up to the hype this season and has earned recognit...
    published: 10 Mar 2025
    Play in Full Screen
    3:32
    DUKE - Mimti (Official Music Video)
    DUKE - Mimti (Official Music Video) Subscribe to Duke's YouTube channel here: https://ww...
    published: 30 Dec 2023
    Play in Full Screen
    2:27
    Duke - KHSSARA (Official Lyric Video, Prod by Abeats)
    Duke - KHSSARA (Official Lyric Video, Prod by Abeats) Subscribe to Duke's YouTube channel...
    published: 29 Apr 2023
    Play in Full Screen
    4:34
    AP Top 25 Poll Released: Duke jumps Auburn for No. 1 spot, Auburn falls to No. 3
    Matt Norlander joins CBS Sports HQ to breakdown the latest AP Poll Top 25 for College Bask...
    published: 10 Mar 2025
    Play in Full Screen
    2:35
    DUKE - HYATI (Official Lyric Video, Prod by Splecter & Nolionthebeat)
    DUKE - HYATI (Official Lyric Video, Prod by Splecter & Nolionthebeat) Subscribe to Duke's...
    published: 23 Sep 2023
    Play in Full Screen
    8:06
    Mix Recuerdos - Son del Duke
    Mix Recuerdos - Son del Duke Autores: Recuerdos: Juan Alejandro Torres Reinoso Debo Ser Un...
    published: 08 Feb 2025
    Play in Full Screen
    6:53
    MIX PALABRITAS -LO NUEVO DE SON DEL DUKE ( EN VIVO ) CHICLAYO
    Importante: El contenido de este vídeo tiene derechos de autor y es exclusivo de el Canal ...
    published: 22 Mar 2024
    Play in Full Screen
    8:15
    California Golden Bears vs. Duke Blue Devils | Full Game Highlights | ESPN College Basketball
    Watch highlights from the ACC as No. 3 Duke defeats Cal, 78-57. Cooper Flagg leads the Blu...
    published: 13 Feb 2025
    Play in Full Screen
    1:08:40
    Duke Blue Devils vs. North Carolina Tar Heels Full Match Replay | 2025 ACC Men's Basketball
    In a game full of runs, the No. 2 Duke Blue Devils outlasted the North Carolina Tar Heels...
    published: 10 Mar 2025
    Play in Full Screen
    0:12
    KTM duke 390 modified status 💚🖤💚🖤💚🖤
    published: 20 Jun 2022
    Play in Full Screen

    Duke

    A duke (male) (British English: /djk/ or American English: /dk/) or duchess (female) can either be a monarch ruling over a duchy or a member of the nobility, historically of highest rank below the monarch. The title comes from French duc, itself from the Latin dux, 'leader', a term used in republican Rome to refer to a military commander without an official rank (particularly one of Germanic or Celtic origin), and later coming to mean the leading military commander of a province.

    During the Middle Ages the title (as Herzog) signified first among the Germanic monarchies. Dukes were the rulers of the provinces and the superiors of the counts in the cities and later, in the feudal monarchies, the highest-ranking peers of the king. A duke may or may not be, ipso facto, a member of the nation's peerage: in the United Kingdom and Spain all dukes are/were also peers of the realm, in France some were and some were not, while the term is not applicable to dukedoms of other nations, even where an institution similar to the peerage (e.g., Grandeeship, Imperial Diet, Hungarian House of Magnates) existed.

    This page contains text from Wikipedia, the Free Encyclopedia - https://wn.com/Duke
    '); } 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: duke

    Edit

    In a title-winning turnabout, Florida does to Houston what Houston did to Duke

    The Tribune San Luis Obispo 09 Apr 2025
    Two days after Duke blew a 14-point second-half lead against Houston, Florida claimed its third national title by overcoming a 12-point second-half deficit against the Cougars ... .
    Edit

    ‘White Lotus’ Star Calls Out ‘Ridiculous’ Duke Backlash

    The Daily Beast 09 Apr 2025
    Jason Isaacs addressed the qualms raised by Duke University after its merchandise was “mistakenly” used in season three of The White Lotus, deeming the whole ordeal “fanciful and ridiculous.” After ...
    Edit

    Houston beats Duke 70-67, Did Duke choke? | Breakfast Ball

    Fox Sports 08 Apr 2025
    Duke lost to Houston 70-67 after allowing 9 points in 35 seconds. Craig Carton, Danny Parkins, Mark Schlereth, and John Fanta discuss what went wrong for Duke ... .
    Edit

    After Duke’s stunning loss to Houston in the Final Four, what’s next for the Blue Devils?

    The Tribune San Luis Obispo 08 Apr 2025
    As Duke recovers from its Final Four loss, it’s time to look ahead to next year’s roster. Who is staying, who is leaving, who could arrive for the Blue Devils next season? ... .
    Edit

    246784 CHRISTOPHER DUKE

    Reflector 08 Apr 2025
    DUKE, CHRISTOPHER LEE 04/06/2025 ... .
    Edit

    This year’s Duke squad latest to join list of heralded units without NCAA title

    The Columbus Telegram 08 Apr 2025
    SAN ANTONIO — Duke had spent much of the season looking like like it was headed to a coronation behind Associated Press national player of the year Cooper Flagg and a roster boasting elite efficiency at both ends. Instead, the ... .
    Edit

    Duke predicted for huge college basketball season in 2025-26

    Sportingnews 08 Apr 2025
    That'd be Jon Scheyer's Duke Blue Devils ... And if Tyrese Proctor sticks around, Duke will enter the season as the ...
    Edit

    Duke opens as 2026 NCAA championship favorite

    Henry Herald 08 Apr 2025
    Although consensus national player of the year Cooper Flagg is expected to leave Duke now that his freshman season is complete, oddsmakers still favor the Blue Devils to win the 2026 national championship ... .
    Edit

    2026 men's college basketball national title odds: Houston, Duke lead pack of favorites

    The Athletic 08 Apr 2025
    Houston opened as the favorite to win the 2026 men's college basketball national title on BetMGM, just ahead of Duke ....
    Edit

    Here's what's next for former Duke's Seafood location on Alki

    Business Journal 08 Apr 2025
    The new owner says he hopes to open by July, noting that the space needs mainly just new paint and furniture ... .
    ×