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

Guantánamo Bay

Guantánamo Bay (Spanish: Bahía de Guantánamo) is a bay located in Guantánamo Province at the southeastern end of Cuba. It is the largest harbor on the south side of the island and it is surrounded by steep hills which create an enclave that is cut off from its immediate hinterland.

The United States assumed territorial control over the southern portion of Guantánamo Bay under the 1903 Cuban–American Treaty. The United States exercises complete jurisdiction and control over this territory, while recognizing that Cuba retains ultimate sovereignty. The current government of Cuba regards the U.S. presence in Guantánamo Bay as illegal and insists the Cuban–American Treaty was obtained by threat of force and is in violation of international law. Some legal scholars judge that the lease may be voidable. It is the home of the Guantanamo Bay detention camp, which is governed by the United States.

Climate

U.S. control of Guantánamo Bay

The United States first seized Guantánamo Bay and established a naval base there in 1898 during the Spanish–American War in the Battle of Guantánamo Bay In 1903, the United States and Cuba signed a lease granting the United States permission to use the land as a coaling and naval station. The lease satisfied the Platt Amendment; this amendment stated a naval base at "certain specific points agreed upon by the President of the United States" was needed to "enable the United States to maintain independence of Cuba." The United States and Cuba signed a treaty in 1934, granting the United States a perpetual lease. Private enterprise is not allowed under the treaty.

Podcasts:

  • Guantanamo Bay: World's most controversial Prison | Free Doc Bites | Free Documentary

    Worldwide controversy surrounds Guantanamo. The detention camp is infamous for its harsh methods and for not abiding by habeas corpus, a major stain on American rule of law and human rights violation. We take a look at what it’s really like behind the barbed wire fence. __________________________________________________________ Subscribe Free Documentary Channel for free: https://bit.ly/2YJ4XzQ Facebook: https://bit.ly/2QfRxbG Twitter: https://bit.ly/2QlwRiI __________________________________________________________ #FreeDocumentary #Documentary #GuantanamoBay __________________________________________________________ Free Documentary is dedicated to bring high-class documentaries to you on youtube for free. With the latest camera equipment used by well-known filmmakers working for famo...

    published: 30 Oct 2019
  • Trump says Guantanamo Bay will be used to hold up to 30,000 migrants

    President Trump ordered the Pentagon and the Department of Homeland Security to ready Guantanamo Bay to house up to 30,000 migrants in a separate facility from where 9/11 terrorists are being held. ––– Subscribe to ABC News on YouTube: https://abcnews.visitlink.me/59aJ1G ABC News is your daily source of breaking national and world news, exclusive interviews and 24/7 live streaming coverage. Download the ABC News app for the latest headlines and alerts: https://abcnews.go.com/devices Watch 24/7 coverage of breaking news and live events on ABC News Live: https://www.youtube.com/watch?v=gN0PZCe-kwQ&ab_channel=ABCNews Watch full episodes of World News Tonight with David Muir here: https://youtube.com/playlist?list=PLQOa26lW-uI8ixlVw1NWu_l4Eh8iZW_qN&feature=shared Read ABC News reports...

    published: 30 Jan 2025
  • Trump orders detention centre in Guantanamo Bay to hold 30,000 deported migrants | ABC News

    US President Donald Trump has said he will send migrants who are in the US illegally to a new detention centre in Guantanamo Bay. The president said up to 30,000 migrants would be sent to the US facility in Cuba. No timeline has been given for when the centre will open or when migrants will start to be sent there. Subscribe: http://ab.co/1svxLVE Read more here: https://www.abc.net.au/news/2025-01-30/trump-orders-migrants-sent-to-guantanamo-bay/104874682 ABC News provides around the clock coverage of news events as they break in Australia and abroad. It's news when you want it, from Australia's most trusted news organisation. For more from ABC News, click here: https://ab.co/2kxYCZY Watch more ABC News content ad-free on ABC iview: https://ab.co/2OB7Mk1 Go deeper on our ABC News In-depth...

    published: 30 Jan 2025
  • Trump plans to send 30,000 migrants to Guantanamo Bay | BBC News

    President Trump has signed an executive order to set up a 30,000-person facility for undocumented migrants in Guantanamo Bay in Cuba. Donald Trump said the facility - which is separate to the high-security US military prison also located there - will be used to house "criminal illegal aliens" that are deemed to pose a public safety risk in the US. Cuba's government swiftly condemned the announcement, accusing the US of torture and illegal detention on "occupied" land on the island. The US administration's new border tsar, Tom Homan, said that an existing migrant detention centre at the base would be expanded amid an increase in migrant detentions and deportations during the Trump administration. Trump's announcement came as he signed an Act into law requiring undocumented immigrants wh...

    published: 30 Jan 2025
  • BREAKING: Trump Announces Executive Order To Create 30,000-Person Migrant Facility At Guantanamo Bay

    President Trump announces an executive order to create a 30,000-person migrant facility at Guantanamo Bay. Fuel your success with Forbes. Gain unlimited access to premium journalism, including breaking news, groundbreaking in-depth reported stories, daily digests and more. Plus, members get a front-row seat at members-only events with leading thinkers and doers, access to premium video that can help you get ahead, an ad-light experience, early access to select products including NFT drops and more: https://account.forbes.com/membership/?utm_source=youtube&utm_medium=display&utm_campaign=growth_non-sub_paid_subscribe_ytdescript Stay Connected Forbes on Facebook: http://fb.com/forbes Forbes Video on Twitter: http://www.twitter.com/forbes Forbes Video on Instagram: http://instagram.com/fo...

    published: 29 Jan 2025
  • President Trump Signs Executive Order To Send Immigrants To Guantanamo Bay | 10 News First

    Donald Trump is moving to convert the infamous Guantanamo Bay detention centre into a camp for illegal immigrants. That shocking development comes as the U.S. government continues its crackdown on migration. Subscribe to 10 News First to get the latest updates and breaking news: https://bit.ly/37DDbL1 #trump #donaldtrump #guantanamobay #uspolitics #politics Join the conversation and follow us on: Twitter: http://twitter.com/10NewsFirst Facebook: http://www.facebook.com/10NewsFirst/ Instagram: http://www.instagram.com/10NewsFirst/ TikTok: https://www.tiktok.com/@10newsfirst 10 News First airs at 5 pm, seven nights a week in your local market on Network 10. Missed the bulletin? Catch up at https://10play.com.au/news 10 News First is based in Australia and is a division of Paramount.

    published: 30 Jan 2025
  • Guantanamo: Das umstrittenste Gefängnis der Welt | Galileo Lunch Break

    Über diesen Ort wird immer wieder weltweit heftig diskutiert: Das Gefangenenlager Guantanamo. Bekannt und berüchtigt ist es für die harten Methoden. Aber wie sind die Haftbedingungen wirklich? ►Mehr Galileo: http://www.galileo.tv/ ►Galileo auf YouTube abonnieren: http://www.youtube.com/subscription_center?add_user=GalileoOffiziell ►FUNDA HAT EINEN KANAL: https://www.youtube.com/user/FundaVanroy ► Alle Videos findest du auf http://www.sat1.de/tv/galileo/video -----------------------------------Experimente----------------------------------------------- ►Galileo T-Rex*: http://amzn.to/1MppUEH ►Galileo Reptilien zum Nachbauen*: http://amzn.to/1MppWwj ►Galileo das Ökosystem*: http://amzn.to/1F6eBiE ►Galileo Kristalle selbst züchten*: http://amzn.to/1EwWBPf ►Galileo Urzeitkrebse*: http://a...

    published: 21 Jan 2017
  • President Trump on 30,000 Person Migrant Facility at Guantanamo Bay

    President Trump: "Today I'm also signing an executive order to instruct the Departments of Defense and Homeland Security to begin preparing the 30,000 person migrant facility at Guantanamo Bay. Most people don't even know about it." Full video here: https://www.c-span.org/event/white-house-event/president-trump-signs-laken-riley-act/430545 Download the FREE C-SPAN Now App. https://www.c-span.org/c-spanNow/ Discover the C-SPAN Video Library at https://www.c-span.org/quickguide/ Explore C-SPAN's Free Educational Resources at https://www.c-span.org/classroom/ C-SPAN: Created by Cable in 1979. Offered as a public service. Support C-SPAN by Donating Today: https://donorbox.org/support-c-span?utm_source=YouTube&utm_medium=Video_Description&utm_campaign=Donations&utm_content=Donate Subscri...

    published: 29 Jan 2025
  • Trump News | Trump To Open Detention Centre In Guantanamo Bay | Trump Immigration News | N18G

    President Donald Trump signed a memorandum directing the federal government to prepare the US Naval base at Guantanamo Bay, Cuba, to house tens of thousands of migrants. The memorandum calls for the Defense and Homeland Security Departments to provide additional detention space at Guantanamo for “high-priority criminal aliens unlawfully present in the United States.” “Most people don’t even know about it. We have 30,000 beds in Guantanamo to detain the worst criminal illegal aliens threatening the American people. This will double our capacity immediately,” Trump said from the White House earlier in the day #trumpnews #guantanamobay #detentioncenter #trumpimmigrationpolicy #breakingnews #uspolitics #immigrationpolicy Source: Reuters & AP News18 Mobile App - https://onelink.to/des...

    published: 30 Jan 2025
  • What Life For a Prisoner is Actually Like in Guantanamo Bay Prison

    Guantanamo Bay Prison is world famous for being one of the toughest and most brutal prisons on the planet, but what is everyday life actually like for a prisoner there? Today we're going to take a look at this prison located near an US military base, and see what makes it such a brutal and horrific place to be. Watch my SCP Explained - Story & Animation channel: https://www.youtube.com/channel/UC8JfkMtNAp44vmzdtnL4wow 🔔 SUBSCRIBE TO THE INFOGRAPHICS SHOW ► https://www.youtube.com/c/theinfographicsshowOFFICIAL?sub_confirmation=1 🔖 MY SOCIAL PAGES DISCORD ►https://discord.gg/theinfoshow Facebook ► https://www.facebook.com/TheInfographicsShow Twitter ► https://twitter.com/TheInfoShow 💭 SUGGEST A TOPIC https://www.theinfographicsshow.com 📝 SOURCES: https://pastebin.com/UaQUe147 All v...

    published: 07 Mar 2020
Guantanamo Bay: World's most controversial Prison | Free Doc Bites | Free Documentary
14:20

Guantanamo Bay: World's most controversial Prison | Free Doc Bites | Free Documentary

  • Order:
  • Duration: 14:20
  • Uploaded Date: 30 Oct 2019
  • views: 893309
Worldwide controversy surrounds Guantanamo. The detention camp is infamous for its harsh methods and for not abiding by habeas corpus, a major stain on American rule of law and human rights violation. We take a look at what it’s really like behind the barbed wire fence. __________________________________________________________ Subscribe Free Documentary Channel for free: https://bit.ly/2YJ4XzQ Facebook: https://bit.ly/2QfRxbG Twitter: https://bit.ly/2QlwRiI __________________________________________________________ #FreeDocumentary #Documentary #GuantanamoBay __________________________________________________________ Free Documentary is dedicated to bring high-class documentaries to you on youtube for free. With the latest camera equipment used by well-known filmmakers working for famous production studios. You will see fascinating shots from the deep seas and up in the air, capturing great stories and pictures from everything our beautiful and interesting planet has to offer. Enjoy stories about nature, wildlife, culture, people, history and more to come.
https://wn.com/Guantanamo_Bay_World's_Most_Controversial_Prison_|_Free_Doc_Bites_|_Free_Documentary
Trump says Guantanamo Bay will be used to hold up to 30,000 migrants
3:29

Trump says Guantanamo Bay will be used to hold up to 30,000 migrants

  • Order:
  • Duration: 3:29
  • Uploaded Date: 30 Jan 2025
  • views: 171967
President Trump ordered the Pentagon and the Department of Homeland Security to ready Guantanamo Bay to house up to 30,000 migrants in a separate facility from where 9/11 terrorists are being held. ––– Subscribe to ABC News on YouTube: https://abcnews.visitlink.me/59aJ1G ABC News is your daily source of breaking national and world news, exclusive interviews and 24/7 live streaming coverage. Download the ABC News app for the latest headlines and alerts: https://abcnews.go.com/devices Watch 24/7 coverage of breaking news and live events on ABC News Live: https://www.youtube.com/watch?v=gN0PZCe-kwQ&ab_channel=ABCNews Watch full episodes of World News Tonight with David Muir here: https://youtube.com/playlist?list=PLQOa26lW-uI8ixlVw1NWu_l4Eh8iZW_qN&feature=shared Read ABC News reports online: http://abcnews.go.com ABC News is the home to the #1 evening newscast “World News Tonight with David Muir," “Good Morning America,” “20/20,” “Nightline,” “This Week” with George Stephanopoulos, “ABC News Live Prime” with Linsey Davis, plus the daily news podcast “Start Here.” Connect with ABC News on social media: WhatsApp: https://whatsapp.com/channel/0029VajTNakKWEKkXoAPIR11 Facebook: https://www.facebook.com/ABCNews Instagram: https://www.instagram.com/abcnews TikTok: https://www.tiktok.com/@abcnews X: https://twitter.com/ABC Threads: https://www.threads.net/@abcnews LinkedIn: https://www.linkedin.com/company/abcnews
https://wn.com/Trump_Says_Guantanamo_Bay_Will_Be_Used_To_Hold_Up_To_30,000_Migrants
Trump orders detention centre in Guantanamo Bay to hold 30,000 deported migrants | ABC News
2:09

Trump orders detention centre in Guantanamo Bay to hold 30,000 deported migrants | ABC News

  • Order:
  • Duration: 2:09
  • Uploaded Date: 30 Jan 2025
  • views: 1834
US President Donald Trump has said he will send migrants who are in the US illegally to a new detention centre in Guantanamo Bay. The president said up to 30,000 migrants would be sent to the US facility in Cuba. No timeline has been given for when the centre will open or when migrants will start to be sent there. Subscribe: http://ab.co/1svxLVE Read more here: https://www.abc.net.au/news/2025-01-30/trump-orders-migrants-sent-to-guantanamo-bay/104874682 ABC News provides around the clock coverage of news events as they break in Australia and abroad. It's news when you want it, from Australia's most trusted news organisation. For more from ABC News, click here: https://ab.co/2kxYCZY Watch more ABC News content ad-free on ABC iview: https://ab.co/2OB7Mk1 Go deeper on our ABC News In-depth channel: https://ab.co/2lNeBn2 Like ABC News on Facebook: http://facebook.com/abcnews.au Follow ABC News on Instagram: http://instagram.com/abcnews_au Follow ABC News on X (Twitter): http://twitter.com/abcnews Note: In most cases, our captions are auto-generated. #ABCNews #ABCNewsAustralia
https://wn.com/Trump_Orders_Detention_Centre_In_Guantanamo_Bay_To_Hold_30,000_Deported_Migrants_|_Abc_News
Trump plans to send 30,000 migrants to Guantanamo Bay | BBC News
3:40

Trump plans to send 30,000 migrants to Guantanamo Bay | BBC News

  • Order:
  • Duration: 3:40
  • Uploaded Date: 30 Jan 2025
  • views: 181871
President Trump has signed an executive order to set up a 30,000-person facility for undocumented migrants in Guantanamo Bay in Cuba. Donald Trump said the facility - which is separate to the high-security US military prison also located there - will be used to house "criminal illegal aliens" that are deemed to pose a public safety risk in the US. Cuba's government swiftly condemned the announcement, accusing the US of torture and illegal detention on "occupied" land on the island. The US administration's new border tsar, Tom Homan, said that an existing migrant detention centre at the base would be expanded amid an increase in migrant detentions and deportations during the Trump administration. Trump's announcement came as he signed an Act into law requiring undocumented immigrants who are arrested for theft or violent crimes to be held in jail pending trial. The US has already been using a facility in Guantanamo - known as the Guantanamo Migrant Operations Center - for decades. In a 2024 report, the International Refugee Assistance Project accused the US government of secretly holding migrants there in "inhumane" conditions indefinitely after detaining them at sea. Clive Myrie presents BBC News at Ten reporting by Sarah Smith in Washington. Subscribe here: http://bit.ly/1rbfUog For more news, analysis and features visit: www.bbc.com/news #BBCNews
https://wn.com/Trump_Plans_To_Send_30,000_Migrants_To_Guantanamo_Bay_|_BBC_News
BREAKING: Trump Announces Executive Order To Create 30,000-Person Migrant Facility At Guantanamo Bay
1:43

BREAKING: Trump Announces Executive Order To Create 30,000-Person Migrant Facility At Guantanamo Bay

  • Order:
  • Duration: 1:43
  • Uploaded Date: 29 Jan 2025
  • views: 492760
President Trump announces an executive order to create a 30,000-person migrant facility at Guantanamo Bay. Fuel your success with Forbes. Gain unlimited access to premium journalism, including breaking news, groundbreaking in-depth reported stories, daily digests and more. Plus, members get a front-row seat at members-only events with leading thinkers and doers, access to premium video that can help you get ahead, an ad-light experience, early access to select products including NFT drops and more: https://account.forbes.com/membership/?utm_source=youtube&utm_medium=display&utm_campaign=growth_non-sub_paid_subscribe_ytdescript Stay Connected Forbes on Facebook: http://fb.com/forbes Forbes Video on Twitter: http://www.twitter.com/forbes Forbes Video on Instagram: http://instagram.com/forbes More From Forbes: http://forbes.com
https://wn.com/Breaking_Trump_Announces_Executive_Order_To_Create_30,000_Person_Migrant_Facility_At_Guantanamo_Bay
President Trump Signs Executive Order To Send Immigrants To Guantanamo Bay | 10 News First
1:31

President Trump Signs Executive Order To Send Immigrants To Guantanamo Bay | 10 News First

  • Order:
  • Duration: 1:31
  • Uploaded Date: 30 Jan 2025
  • views: 8297
Donald Trump is moving to convert the infamous Guantanamo Bay detention centre into a camp for illegal immigrants. That shocking development comes as the U.S. government continues its crackdown on migration. Subscribe to 10 News First to get the latest updates and breaking news: https://bit.ly/37DDbL1 #trump #donaldtrump #guantanamobay #uspolitics #politics Join the conversation and follow us on: Twitter: http://twitter.com/10NewsFirst Facebook: http://www.facebook.com/10NewsFirst/ Instagram: http://www.instagram.com/10NewsFirst/ TikTok: https://www.tiktok.com/@10newsfirst 10 News First airs at 5 pm, seven nights a week in your local market on Network 10. Missed the bulletin? Catch up at https://10play.com.au/news 10 News First is based in Australia and is a division of Paramount.
https://wn.com/President_Trump_Signs_Executive_Order_To_Send_Immigrants_To_Guantanamo_Bay_|_10_News_First
Guantanamo: Das umstrittenste Gefängnis der Welt | Galileo Lunch Break
14:17

Guantanamo: Das umstrittenste Gefängnis der Welt | Galileo Lunch Break

  • Order:
  • Duration: 14:17
  • Uploaded Date: 21 Jan 2017
  • views: 1822308
Über diesen Ort wird immer wieder weltweit heftig diskutiert: Das Gefangenenlager Guantanamo. Bekannt und berüchtigt ist es für die harten Methoden. Aber wie sind die Haftbedingungen wirklich? ►Mehr Galileo: http://www.galileo.tv/ ►Galileo auf YouTube abonnieren: http://www.youtube.com/subscription_center?add_user=GalileoOffiziell ►FUNDA HAT EINEN KANAL: https://www.youtube.com/user/FundaVanroy ► Alle Videos findest du auf http://www.sat1.de/tv/galileo/video -----------------------------------Experimente----------------------------------------------- ►Galileo T-Rex*: http://amzn.to/1MppUEH ►Galileo Reptilien zum Nachbauen*: http://amzn.to/1MppWwj ►Galileo das Ökosystem*: http://amzn.to/1F6eBiE ►Galileo Kristalle selbst züchten*: http://amzn.to/1EwWBPf ►Galileo Urzeitkrebse*: http://amzn.to/1F6eBiD ►Galileo Süßigkeiten selber machen*: http://amzn.to/1F6eBiC ►Galileo die größten Experimente*: http://amzn.to/1EPvUDW ►Galileo der menschliche Körper*: http://amzn.to/1MnS29l ►Galileo Tornados und Wirbelstürme*: http://amzn.to/1xa4Rgh ►Galileo Gewächshaus*: http://amzn.to/1EPvUDX ►Galileo Chemielabor*: http://amzn.to/1xa4Rgg ►Galileo Fleischfressende Pflanze*: http://amzn.to/1NDtxbr ►Grill Gadgets: http://bit.ly/GrillGadgetsGalileo -------------------*Links sind teilweise Affiliate Links --------------------------- Galileo ist die ProSieben Wissenssendung mit Aiman Abdallah, Stefan Gödde und Funda Vanroy. Täglich um 19.05 Uhr kannst Du auf ProSieben die Welt kennen und verstehen lernen. Galileo nimmt Dich mit auf eine Reise durch das Wissen: Physik, Geschichte, Natur und Internetphänomene, Gesellschaft, Politik und alltägliche Fragen. Die Hosts Harro Füllgrabe, Jan Schwiderek, Jumbo Schreiner, Klas Bömecke, Matthias Fiedler, Akif Aydin und Dionne Wudu nehmen dabei vollen Körpereinsatz in Kauf und gehen allem auf den Grund, was uns interessiert. Impressum: https://www.sat1.de/service/impressum
https://wn.com/Guantanamo_Das_Umstrittenste_Gefängnis_Der_Welt_|_Galileo_Lunch_Break
President Trump on 30,000 Person Migrant Facility at Guantanamo Bay
1:02

President Trump on 30,000 Person Migrant Facility at Guantanamo Bay

  • Order:
  • Duration: 1:02
  • Uploaded Date: 29 Jan 2025
  • views: 13993
President Trump: "Today I'm also signing an executive order to instruct the Departments of Defense and Homeland Security to begin preparing the 30,000 person migrant facility at Guantanamo Bay. Most people don't even know about it." Full video here: https://www.c-span.org/event/white-house-event/president-trump-signs-laken-riley-act/430545 Download the FREE C-SPAN Now App. https://www.c-span.org/c-spanNow/ Discover the C-SPAN Video Library at https://www.c-span.org/quickguide/ Explore C-SPAN's Free Educational Resources at https://www.c-span.org/classroom/ C-SPAN: Created by Cable in 1979. Offered as a public service. Support C-SPAN by Donating Today: https://donorbox.org/support-c-span?utm_source=YouTube&utm_medium=Video_Description&utm_campaign=Donations&utm_content=Donate Subscribe to our YouTube channel: https://www.youtube.com/user/CSPAN Follow us: Facebook: https://www.facebook.com/CSPAN Twitter: https://twitter.com/cspan Instagram: https://www.instagram.com/cspan/ Subscribe: C-SPAN Podcasts: https://www.c-span.org/podcasts/ Newsletters: https://www.c-span.org/connect/ Visit the C-SPAN Shop: https://c-spanshop.org/ #cspan
https://wn.com/President_Trump_On_30,000_Person_Migrant_Facility_At_Guantanamo_Bay
Trump News | Trump To Open Detention Centre In Guantanamo Bay | Trump Immigration News | N18G
8:59

Trump News | Trump To Open Detention Centre In Guantanamo Bay | Trump Immigration News | N18G

  • Order:
  • Duration: 8:59
  • Uploaded Date: 30 Jan 2025
  • views: 4833
President Donald Trump signed a memorandum directing the federal government to prepare the US Naval base at Guantanamo Bay, Cuba, to house tens of thousands of migrants. The memorandum calls for the Defense and Homeland Security Departments to provide additional detention space at Guantanamo for “high-priority criminal aliens unlawfully present in the United States.” “Most people don’t even know about it. We have 30,000 beds in Guantanamo to detain the worst criminal illegal aliens threatening the American people. This will double our capacity immediately,” Trump said from the White House earlier in the day #trumpnews #guantanamobay #detentioncenter #trumpimmigrationpolicy #breakingnews #uspolitics #immigrationpolicy Source: Reuters & AP News18 Mobile App - https://onelink.to/desc-youtube
https://wn.com/Trump_News_|_Trump_To_Open_Detention_Centre_In_Guantanamo_Bay_|_Trump_Immigration_News_|_N18G
What Life For a Prisoner is Actually Like in Guantanamo Bay Prison
11:01

What Life For a Prisoner is Actually Like in Guantanamo Bay Prison

  • Order:
  • Duration: 11:01
  • Uploaded Date: 07 Mar 2020
  • views: 630246
Guantanamo Bay Prison is world famous for being one of the toughest and most brutal prisons on the planet, but what is everyday life actually like for a prisoner there? Today we're going to take a look at this prison located near an US military base, and see what makes it such a brutal and horrific place to be. Watch my SCP Explained - Story & Animation channel: https://www.youtube.com/channel/UC8JfkMtNAp44vmzdtnL4wow 🔔 SUBSCRIBE TO THE INFOGRAPHICS SHOW ► https://www.youtube.com/c/theinfographicsshowOFFICIAL?sub_confirmation=1 🔖 MY SOCIAL PAGES DISCORD ►https://discord.gg/theinfoshow Facebook ► https://www.facebook.com/TheInfographicsShow Twitter ► https://twitter.com/TheInfoShow 💭 SUGGEST A TOPIC https://www.theinfographicsshow.com 📝 SOURCES: https://pastebin.com/UaQUe147 All videos are based on publicly available information unless otherwise noted.
https://wn.com/What_Life_For_A_Prisoner_Is_Actually_Like_In_Guantanamo_Bay_Prison
PLAYLIST TIME:
  • Most Related
  • Most Recent
  • Most Popular
  • Top Rated
  • Guantanamo Bay: World's most controversial Prison | Free Doc Bites | Free Documentary
    14:20
    Guantanamo Bay: World's most controversial Prison | Free Doc Bites | Free Documentaryremove from playlist
  • Trump says Guantanamo Bay will be used to hold up to 30,000 migrants
    3:29
    Trump says Guantanamo Bay will be used to hold up to 30,000 migrantsremove from playlist
  • Trump orders detention centre in Guantanamo Bay to hold 30,000 deported migrants | ABC News
    2:09
    Trump orders detention centre in Guantanamo Bay to hold 30,000 deported migrants | ABC Newsremove from playlist
  • Trump plans to send 30,000 migrants to Guantanamo Bay | BBC News
    3:40
    Trump plans to send 30,000 migrants to Guantanamo Bay | BBC Newsremove from playlist
  • BREAKING: Trump Announces Executive Order To Create 30,000-Person Migrant Facility At Guantanamo Bay
    1:43
    BREAKING: Trump Announces Executive Order To Create 30,000-Person Migrant Facility At Guantanamo Bayremove from playlist
  • President Trump Signs Executive Order To Send Immigrants To Guantanamo Bay | 10 News First
    1:31
    President Trump Signs Executive Order To Send Immigrants To Guantanamo Bay | 10 News Firstremove from playlist
  • Guantanamo: Das umstrittenste Gefängnis der Welt | Galileo Lunch Break
    14:17
    Guantanamo: Das umstrittenste Gefängnis der Welt | Galileo Lunch Breakremove from playlist
  • President Trump on 30,000 Person Migrant Facility at Guantanamo Bay
    1:02
    President Trump on 30,000 Person Migrant Facility at Guantanamo Bayremove from playlist
  • Trump News | Trump To Open Detention Centre In Guantanamo Bay | Trump Immigration News | N18G
    8:59
    Trump News | Trump To Open Detention Centre In Guantanamo Bay | Trump Immigration News | N18Gremove from playlist
  • What Life For a Prisoner is Actually Like in Guantanamo Bay Prison
    11:01
    What Life For a Prisoner is Actually Like in Guantanamo Bay Prisonremove from playlist
PLAYLIST TIME:

Guantanamo Bay: World's most controversial Prison | Free Doc Bites | Free Documentary

Worldwide controversy surrounds Guantanamo. The detention camp is infamous for its harsh methods and for not abiding by habeas corpus, a major stain on American rule of law and human rights violation. We take a look at what it’s really like behind the barbed wire fence. __________________________________________________________ Subscribe Free Documentary Channel for free: https://bit.ly/2YJ4XzQ Facebook: https://bit.ly/2QfRxbG Twitter: https://bit.ly/2QlwRiI __________________________________________________________ #FreeDocumentary #Documentary #GuantanamoBay __________________________________________________________ Free Documentary is dedicated to bring high-class documentaries to you on youtube for free. With the latest camera equipment used by well-known filmmakers working for famous production studios. You will see fascinating shots from the deep seas and up in the air, capturing great stories and pictures from everything our beautiful and interesting planet has to offer. Enjoy stories about nature, wildlife, culture, people, history and more to come.
14:20
Guantanamo Bay: World's most controversial Prison | Free Doc Bites | Free Documentary
Worldwide controversy surrounds Guantanamo. The detention camp is infamous for its harsh m...
published: 30 Oct 2019
Play in Full Screen
3:29
Trump says Guantanamo Bay will be used to hold up to 30,000 migrants
President Trump ordered the Pentagon and the Department of Homeland Security to ready Guan...
published: 30 Jan 2025
Play in Full Screen
2:09
Trump orders detention centre in Guantanamo Bay to hold 30,000 deported migrants | ABC News
US President Donald Trump has said he will send migrants who are in the US illegally to a ...
published: 30 Jan 2025
Play in Full Screen
3:40
Trump plans to send 30,000 migrants to Guantanamo Bay | BBC News
President Trump has signed an executive order to set up a 30,000-person facility for undoc...
published: 30 Jan 2025
Play in Full Screen
1:43
BREAKING: Trump Announces Executive Order To Create 30,000-Person Migrant Facility At Guantanamo Bay
President Trump announces an executive order to create a 30,000-person migrant facility at...
published: 29 Jan 2025
Play in Full Screen
1:31
President Trump Signs Executive Order To Send Immigrants To Guantanamo Bay | 10 News First
Donald Trump is moving to convert the infamous Guantanamo Bay detention centre into a camp...
published: 30 Jan 2025
Play in Full Screen
14:17
Guantanamo: Das umstrittenste Gefängnis der Welt | Galileo Lunch Break
Über diesen Ort wird immer wieder weltweit heftig diskutiert: Das Gefangenenlager Guantana...
published: 21 Jan 2017
Play in Full Screen
1:02
President Trump on 30,000 Person Migrant Facility at Guantanamo Bay
President Trump: "Today I'm also signing an executive order to instruct the Departments of...
published: 29 Jan 2025
Play in Full Screen
8:59
Trump News | Trump To Open Detention Centre In Guantanamo Bay | Trump Immigration News | N18G
President Donald Trump signed a memorandum directing the federal government to prepare the...
published: 30 Jan 2025
Play in Full Screen
11:01
What Life For a Prisoner is Actually Like in Guantanamo Bay Prison
Guantanamo Bay Prison is world famous for being one of the toughest and most brutal prison...
published: 07 Mar 2020
Play in Full Screen

Guantánamo Bay

Guantánamo Bay (Spanish: Bahía de Guantánamo) is a bay located in Guantánamo Province at the southeastern end of Cuba. It is the largest harbor on the south side of the island and it is surrounded by steep hills which create an enclave that is cut off from its immediate hinterland.

The United States assumed territorial control over the southern portion of Guantánamo Bay under the 1903 Cuban–American Treaty. The United States exercises complete jurisdiction and control over this territory, while recognizing that Cuba retains ultimate sovereignty. The current government of Cuba regards the U.S. presence in Guantánamo Bay as illegal and insists the Cuban–American Treaty was obtained by threat of force and is in violation of international law. Some legal scholars judge that the lease may be voidable. It is the home of the Guantanamo Bay detention camp, which is governed by the United States.

Climate

U.S. control of Guantánamo Bay

The United States first seized Guantánamo Bay and established a naval base there in 1898 during the Spanish–American War in the Battle of Guantánamo Bay In 1903, the United States and Cuba signed a lease granting the United States permission to use the land as a coaling and naval station. The lease satisfied the Platt Amendment; this amendment stated a naval base at "certain specific points agreed upon by the President of the United States" was needed to "enable the United States to maintain independence of Cuba." The United States and Cuba signed a treaty in 1934, granting the United States a perpetual lease. Private enterprise is not allowed under the treaty.

'); } 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: guantanamo bay

Edit

‘Misguided mission’: Senators blast detaining migrants at Guantanamo

The Spokesman-Review 30 Mar 2025
military base at Guantanamo Bay, Cuba, where the Trump administration has flown hundreds of migrants for deportation, on Saturday called on the Trump administration to “immediately cease this misguided mission.”.
Edit

Border mission costing hundreds of millions, expected to continue to rise: Sources

ABC News 30 Mar 2025
The southwestern border mission and the detention operations at Guantanamo Bay have cost close to $330 million through mid-March, according to a U.S. official ... .
Edit

Photos: On Display — The power of public art

The Mercury News 30 Mar 2025
Fun and fantastic works of public art abound in the Bay Area, which is blessed with an abundance of creative talent ... Here are some of our favorite artworks in the Bay Area ... (Dai Sugano/Bay Area News Group) ... (Ray Chavez/Bay Area News Group).
Edit

Judge rejects Hudson's Bay proposal in creditor protection case

North Shore News 30 Mar 2025
TORONTO — An Ontario judge has rejected a Hudson's Bay restructuring agreement, increasing the likelihood that lenders may seek to push the company into receivership ... If Hudson's Bay reached a deal for ...
Edit

Danville Bowl, a community fixture, closing after 64 years

SiliconValley.com 30 Mar 2025
(Dai Sugano/Bay Area News Group) ... (Dai Sugano/Bay Area News Group) ... How this Bay Area man became MLB’s exclusive manufacturer of rosin bags ... How one East Bay small business's creative pivot paid off ... (Dai Sugano/Bay Area News Group).
Edit

Doyle and Farmer help the Rockies beat the Rays 2-1

Wtop 30 Mar 2025
(AP) — Brenton Doyle and Kyle Farmer each hit an RBI single to help the Colorado Rockies beat the Tampa Bay Rays 2-1 on Saturday ... Tampa Bay finished with 12 hits in its second regular-season game at the spring training home of the New York Yankees.
Edit

Tesla protests across Bay Area ignite Trump resistance, but intra-party strife ahead

SiliconValley.com 30 Mar 2025
And on Saturday, scattered protests across the Bay Area that have been building for weeks appeared bigger and more organized than ever ... (Shae Hammond/Bay Area News Group) ... Bay Area protests planned for this weekend targeting Tesla, Musk and Trump.
Edit

‘Flames as big as a house’: Yachtie plucked to safety as inferno engulfs boat

NewstalkZB 30 Mar 2025
A&nbsp;yachtsman was rescued from his liferaft after his boat caught fire and burned to a wreck off the coast of Hawke’s Bay ... Coastguard Hawke's Bay responded to a boat on fire off the coast of Cape Kidnappers yesterday.
Edit

Officials investigate deadly San Jose mobile home fire

NBC Bay Area 30 Mar 2025
The department said that at around 9.20 p.m., firefighters responded to a mobile home that had caught on fire in the 1300 block of Oakland Road at South Bay Mobile Home Park in San Jose ... Copyright Bay City News.
Edit

Florida clinches Elite Eight win over Texas Tech at San Francisco's Chase Center

NBC Bay Area 30 Mar 2025
Watch NBC Bay Area News 📺 Streaming free 24/7 ... Lurie told NBC Bay Area that he had spoken to some of the out-of-town fans visiting San Francisco this weekend ... He also noted that the Bay Area will host World Cup matches and the Super Bowl in 2026.
Edit

Pro Soccer: Big second half lifts Union to fourth straight win

Monterey Herald 30 Mar 2025
Two goals in the second half Saturday broke up a 1-1 draw as Monterey Bay FC has tied the team record for consecutive wins with four after a 3-1 win over Phoenix Rising FC at Cardinale Stadium.
Edit

Demonstrators rally against Elon Musk outside San Jose Tesla showroom

NBC Bay Area 30 Mar 2025
Watch NBC Bay Area News 📺 Streaming free 24/7 ... Similar protests were held in other cities across the Bay Area and the United States on Saturday. Get a weekly recap of the latest San Francisco Bay Area housing news.
Edit

San Jose Foos, city partner to host community block party outside city hall

NBC Bay Area 30 Mar 2025
Watch NBC Bay Area News 📺 Streaming free 24/7 ... "It's nice having a rave out here in the Bay Area, in San Jose, in my hometown, that we can all come together and show each other peace, love, unity, and respect," said Matiel Mackay of San Jose.
Edit

‘God knows what’s in the water’: Los Angeles surfers in limbo as wildfire toxins linger

The Observer 30 Mar 2025
Alex Sinunu was used to surfing three or four times a week in Santa Monica Bay – after all, the beach was just a mile from his home and he could ride his bike there with his board ... Heal the Bay had to come up with their own methodology.
Edit

Interactive light show to bring ‘World of Wonder’ to Milpitas

East Bay Times 30 Mar 2025
The walk-through event was created by International Culture Exchange Group (ICEG), which has been staging interactive light festivals in the South Bay for 14 years ... 7 amazing Bay Area things to do this weekend ... Bay Area Spring Music Guide.
×