- published: 29 Nov 2008
- views: 509621
'+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; })); }); -->
In November 2008, 10 members of Lashkar-e-Taiba, an Islamic militant organisation based in Pakistan, carried out a series of 12 coordinated shooting and bombing attacks lasting four days across Mumbai. The attacks, which drew widespread global condemnation, began on Wednesday, 26 November and lasted until Saturday, 29 November 2008, killing 164 people and wounding at least 308.
Eight of the attacks occurred in South Mumbai: at Chhatrapati Shivaji Terminus, the Oberoi Trident, the Taj Mahal Palace & Tower,Leopold Cafe, Cama Hospital, the Nariman House Jewish community centre, the Metro Cinema, and in a lane behind the Times of India building and St. Xavier's College. There was also an explosion at Mazagaon, in Mumbai's port area, and in a taxi at Vile Parle. By the early morning of 28 November, all sites except for the Taj hotel had been secured by Mumbai Police and security forces. On 29 November, India's National Security Guards (NSG) conducted 'Operation Black Tornado' to flush out the remaining attackers; it resulted in the deaths of the last remaining attackers at the Taj hotel and ending all fighting in the attacks.
2008 (MMVIII) was a leap year starting on Tuesday (dominical letter FE) of the Gregorian calendar, the 2008th year of the Common Era (CE) and Anno Domini (AD) designations, the 8th year of the 3rd millennium, the 8th year of the 21st century, and the 9th year of the 2000s decade.
2008 was designated as:
The 2011 Mumbai bombings (often referred to as 13 July) were a series of three coordinated bomb explosions at different locations in Mumbai, India, on 13 July 2011 between 18:54 and 19:06 IST. The blasts occurred at the Opera House, at Zaveri Bazaar and at Dadar West localities, leaving 26 killed and 130 injured.
The first device was planted on a motorcycle at Khau Gali in south Mumbai's Zaveri Bazaar and exploded at 18:54 local time. The second device, planted in a tiffin box outside Prasad Chambers and Panchratna Building, in the Opera House area on Charni Road, exploded at 18:55, the area of workplaces of 5,000–6,000 people connected with the diamond-trade industry. The third device was placed on an electric pole at the Dr Antonio Da Silva High School bus stand near Kabutar Khana in Dadar area and exploded at 19:06.
Following the blasts, phone lines were jammed and communications ceased or were available intermittently for at least a few hours. Other metropolitan cities, including Delhi, Chennai, Hyderabad and Bangalore, were also put on high alert. Immediately after the blasts, the Mumbai Police sent an SMS to a few mobile phone users in Mumbai reading,
The 1993 Bombay bombings were a series of 13 bomb explosions that took place in Bombay, India on 12 March 1993. The coordinated attacks were the most destructive bomb explosions in Indian history. This was first of its kind serial-bomb-blasts across the world. The single-day attacks resulted in 257 fatalities and 717 injuries.
The attacks were coordinated by Dawood Ibrahim, don of the Mumbai-based international organised crime syndicate named D-Company. Ibrahim is believed to have ordered and helped organise the bombings in Mumbai, through his subordinates Tiger Memon and Yakub Memon.
The Supreme Court of India gave its judgement on 21 March 2013 after over 20 years of judicial proceedings sentencing the accused. However, the two main suspects in the case, Ibrahim and Tiger Memon, have not yet been arrested or tried. After India's three-judge Supreme Court bench rejected Memon's curative petition, saying the grounds raised by him do not fall within the principles laid down by the apex court in 2002, the Maharashtra state government executed Yakub Memon, on 30 July 2015.
Mumbai (/mʊmˈbaɪ/; also known as Bombay, the official name until 1995) is the capital city of the Indian state of Maharashtra. It is the most populous city in India and the ninth most populous agglomeration in the world, with an estimated city population of 18.4 million. Along with the neighbouring regions of the Mumbai Metropolitan Region, it is one of the most populous urban regions in the world and the seсond most populous metropolitan area in India, with a population of 20.7 million as of 2011. Mumbai lies on the west coast of India and has a deep natural harbour. In 2009, Mumbai was named an alpha world city. It is also the wealthiest city in India, and has the highest GDP of any city in South, West, or Central Asia. Mumbai has the highest number of billionaires and millionaires among all cities in India.
The seven islands that came to constitute Mumbai were home to communities of fishing colonies. For centuries, the islands were under the control of successive indigenous empires before being ceded to the Portuguese and subsequently to the British East India Company when in 1661 King Charles II married the Portuguese Catherine of Braganza, and as part of her dowry Charles received the ports of Tangier and seven islands of Bombay. During the mid-18th century, Bombay was reshaped by the Hornby Vellard project, which undertook reclamation of the area between the seven islands from the sea. Along with construction of major roads and railways, the reclamation project, completed in 1845, transformed Bombay into a major seaport on the Arabian Sea. Bombay in the 19th century was characterized by economic and educational development. During the early 20th century it became a strong base for the Indian independence movement. Upon India's independence in 1947 the city was incorporated into Bombay State. In 1960, following the Samyukta Maharashtra movement, a new state of Maharashtra was created with Bombay as the capital.
The Mumbai Suburban district is a district of the state of Maharashtra in western India. Its headquarters is in Bandra. It consists of three administrative subdivisions : Kurla, Andheri, and Borivali. The district along with Mumbai City district and other suburban communities make up the metropolis of Mumbai on Salsette Island. The district occupies an area of 369 km².
This is the second smallest district of Maharashtra, and it administratively comes under Konkan Division.
The jurisdiction of Mumbai Suburban District is from Bandra to Dahisar, from Kurla (Chuna Bhatti) to Mulund and from Kurla up to Trombay Creek.
Mumbai Suburban District is one of the largest districts in the country by population. The current population is 9,332,481, according to the 2011 census, making it the fifth most populous district in India (out of 672). The Mithi River is the main river in the district.
Mumbai Suburban district was created on 1 October 1990 when Greater Mumbai bifurcated into Mumbai City and Mumbai Suburban district.
Subscribe to our channel http://bit.ly/AJSubscribe Mumbai is reeling in the wake of a string of co-ordinated attacks by armed men which left scores dead and hundreds injured. Security forces on Saturday killed the last of the attackers at the Taj Mahal, three days after the gunmen had holed themselves up with several hostages. Al Jazeeras Sohail Rahman looks at how the attacks and the subsequent security operations unfolded. At Al Jazeera English, we focus on people and events that affect people's lives. We bring topics to light that often go under-reported, listening to all sides of the story and giving a 'voice to the voiceless.' Reaching more than 270 million households in over 140 countries across the globe, our viewers trust Al Jazeera English to keep them informed, inspired,...
Pakistan has placed the main suspect behind the 2008 Mumbai attacks in India under house arrest. Hafiz Saeed was taken from a mosque in Lahore to his home on Sunday. His Jamaat-ud-Dawa charity is accused by India and the UN of being a front for the armed group Lashkar-e-Taiba. Al Jazeera's Kamal Hyder reports from Gwadar. - Subscribe to our channel: http://aje.io/AJSubscribe - Follow us on Twitter: https://twitter.com/AJEnglish - Find us on Facebook: https://www.facebook.com/aljazeera - Check our website: http://www.aljazeera.com/
A Pakistani-American man who has already pleaded guilty to playing a part in the 2008 Mumbai attacks has given new incriminating testimony. David Coleman Headly told a US court the group behind the attacks received assistance from ISI, Pakistan's intelligence service. Al Jazeera's Tom Ackerman reports.
http://video.news.sky.com/skynews/video/ Sky's Gillian Joseph looks at how the events of the Mumbai terror siege unfolded.
Today on the 10th anniversary of the 2008 26/11 attacks, we show you the rare and the unseen pictures of the most tragic event. Watch! Subscribe to Times Now | Click Here ► http://goo.gl/U9ibPb ‘Download the official TIMES NOW mobile app – Give a missed call on 1800 4190 300. Stay updated, stay ahead.’ Subscribe Now To Our Network Channels :- The NewsHour Debate : http://goo.gl/LfNgFF ET Now : http://goo.gl/5XreUq To Stay Updated Download the Times Now App :- Android Google Play : https://goo.gl/zJhWjC Apple App Store : https://goo.gl/d7QBQZ Social Media Links :- Facebook - http://goo.gl/CC7rGc G+ - http://goo.gl/O1iEp5 Twitter - http://goo.gl/uHYsqP Also visit our website - http://www.timesnownews.com
We assess the damage that still remains after the dust is settled and the way forward for India
India is marking 14 years since the 2008 terror attacks in Mumbai. The attacks were carried out by 10 Lashkar-e-Taiba terrorists. At least 166 people lost their lives in the incident. The terrorists targeted multiple places in the attacks including Chhatrapati Shivaji Terminus, Taj and Trident hotels, Nariman House, Leopold Cafe and Cama Hospital. #26112008 #mumbaiterrorattacks #indianews About Channel: WION The World is One News, examines global issues with in-depth analysis. We provide much more than the news of the day. Our aim to empower people to explore their world. With our Global headquarters in New Delhi, we bring you news on the hour, by the hour. We deliver information that is not biased. We are journalists who are neutral to the core and non-partisan when it comes to the ...
Ajmal Kasab confesses to his crimes committed in 2008 in Mumbai. India's financial capital Mumbai was turned into a war zone a decade ago by a group of Pakistani gunmen who launched coordinated attacks in the heart of the city, targeting two luxury hotels, a Jewish centre, a tourist restaurant and a crowded train station. Three days of carnage - beginning on 26 November 2008 - killed 166 people including foreign tourists, and wounded hundreds more. With its imposing, red-tiled dome overlooking the Gateway of India monument, the iconic Taj Mahal Palace hotel was the at the epicentre of the assault. The visceral image of smoke leaping out of the city landmark has come to define perhaps the darkest three days in Mumbai's recent history. In November 2012, India hanged the lone surviving gunman...
On November 26, 2008, 10 Lashkar-E-Taiba terrorists from Pakistan arrived in Mumbai by sea route. For more than 60 hours, the city was caught in the grip of terror. Many locations were attacked - a hospital, railway station, a restaurant, a Jewish center and two luxury hotels, including Taj Mahal Palace. 166 people were killed and over 300 were injured in the attacks. While nine of the ten gunmen were killed in the counter-operation, Mohammed Ajmal Amir Kasab survived and was executed by hanging on November 21, 2012. 15 years on, the youngest survivor and eyewitness, Devika Natwarlal Rotawan, opens up about her ordeal. #2611 #mumbaiattacks #wion About Channel: WION The World is One News examines global issues with in-depth analysis. We provide much more than the news of the day. Our a...
The only surviving gunman from the Mumbai terror attacks has been found guilty of murder and waging war against India. Mohammed Ajmal Kasab was one of ten Pakistani gunmen who killed 166 people during a three day rampage in 2008. Sky's Asia correspondent Alex Crawford reports. SUBSCRIBE to our YouTube channel for more videos: http://www.youtube.com/skynews Follow us on Twitter: https://twitter.com/skynews and https://twitter.com/skynewsbreak Like us on Facebook: https://www.facebook.com/skynews Follow us on Instagram: https://www.instagram.com/skynews For more content go to http://news.sky.com and download our apps: Apple https://itunes.apple.com/gb/app/sky-news/id316391924?mt=8 Android https://play.google.com/store/apps/details?id=com.bskyb.skynews.android&hl=en_GB
The 2008 terror attacks in Mumbai, India, that killed 166 people were masterminded by Pakistani-American David Coleman Headley. Margret Warner and Sebastian Rotella of ProPublica and Frontline discuss how American law enforcement and intelligence agencies missed several opportunities to thwart his plot.
CNN's Saima Mohsin meets a man for whose arrest the U.S. has offered $10 million. He says he wants to help Sandy victims.
On November 26-29, 2008, Mumbai was rocked by multiple coordinated terror attacks. 164 innocent people were killed. Among the targets was the Chabad House; the rabbi, his wife, and four Jewish visitors were killed. We remember all the victims of terrorism.
On November 26, 2008, Mumbai witnessed one of the world’s deadliest terror attacks. A group of ten Pakistani men, with links to the terror group Lashkar-e-Taiba, held the city hostage for 60 hours. At least 164 people died in the coordinated attacks. Actress and celebrity chef Amrita Raichand was trapped in the Taj Mahal Palace Hotel, one of the many iconic landmarks which were laid siege. She tells VICE World News how she survived. Click here to SUBSCRIBE to VICE Asia: https://bit.ly/2LhqAR9 Connect with VICE Asia: Check out our full video catalog: https://bit.ly/2P3Y0pv Videos, daily editorial and more: http://vice.com/en_asia More videos from the VICE network: https://fb.com/viceasia/videos/ Like VICE Asia on Facebook: http://fb.com/viceasia Follow VICE Asia on Twitter: http...
أحداث الأزمة المالية العالمية 2007-2008 في سبتمبر 2008 انفجرت الأزمة الاقتصادية الأمريكية، لتمثل أكبر كارثة اقتصادية شهدتها أمريكا منذ الكساد الكبير في سنة 1929. وامتدت الأزمة تلك لتصبح أزمة عالمية طالت أوروبا وآسيا والشرق الأوسط وتحولت لأزمة عالمية. ولكن .. ما معنى أزمة اقتصادية عالمية؟ وكيف تسبب حركة شراء العقارات في أمريكا فيها؟ وهل يمكن أن نستوعب الأزمة الاقتصادية الحالية في العالم إذا ما وعينا ما حدث في 2008؟ أم أن الأسباب مختلفة؟ #الدحيح #متحف_المستقبل المصادر: :Articles and Related Links Time magazine Banking Takes a Beating By William Blaylock;Christopher http://content.time.com/time/subscriber/article/0,33009,923769-1,00.html The Big Short: Inside the Doomsday Machine (book) https://www.amazon.com/Big-Short-Inside-Doomsday-Machine/dp/0393338827 Liar's Poker by Micheal Lewis...
📲 Subscribe to @olympics: http://oly.ch/Subscribe Team USA faced Spain in the Basketball final of the Olympic Games 2008 in Beijing. It promised to be an incredibly exciting match, and after "only" grabbing the bronze medal in 2004, the "Redeem Team" had again the chance to claim the gold medal for the USA. Enjoy the entire Golden Generation documentary, only on the Olympic Channel: https://bit.ly/2O8R7Bj _____________________________________________________ 🇨🇳 #Beijing2022 replays: https://oly.ch/B22Replays 🇯🇵 #Tokyo2020 replays: https://oly.ch/T20Replays 🗞️ News from the Olympic world: https://oly.ch/News
This video shows the events of the 2008 financial recession. This event affected the whole world and cause major indices to fall about 40% from their highs and took several years to recover. This video is to show the dangers of investing and how no matter what low-risk stock you own, a crash of this magnitude has happened and can happen again so there is no such thing as a no-risk investment. Many companies went into bankruptcy, including bank giant Lehman Brothers, and many others were damaged for many years to come. The closest thing to the 1929 depression, the 2008 recession is the closest thing to the end of capitalism the United States has seen in the 21st century. I hope viewers can take away the notion that investing carries high risk, and you could lose everything if you are not di...
-- About ColdFusion -- ColdFusion is an Australian based online media company independently run by Dagogo Altraide since 2009. Topics cover anything in science, technology, history and business in a calm and relaxed environment. » Podcast I Co-host: https://www.youtube.com/channel/UC6jKUaNXSnuW52CxexLcOJg » Music | https://www.youtube.com/channel/UCGkpFfEMF0eMJlh9xXj2lMw » Twitter | @ColdFusion_TV » Instagram | coldfusiontv » Facebook | https://www.facebook.com/ColdFusioncollective Sources: https://scholar.princeton.edu/sites/default/files/markus/files/16f_reversalrate.pdf https://www.afr.com/policy/economy/the-opiate-of-low-interest-rates-20210209-p570zo https://data.oecd.org/interest/long-term-interest-rates.htm#indicator-chart https://en.wikipedia.org/wiki/2008%E2%80%932011_Iceland...
2008 summer vibes ~nostalgia playlist ~ 2008 throwback mix 2008 summer vibes ~nostalgia playlist ~ 2008 throwback mix Listen on Spotify: https://sptlnk.com/2000s_nostalgia pov: you are on a roadtrip during 2008 summer night while listening to these nostalgic songs by Lady Gaga, Katy Perry, Rihanna, Jason Mraz, Akon, Britney Spears, Coldplay and many more! #nostalgia #nostalgiaplaylist #throwback #2010snostalgia #2010sthrowbacks #nostalgiamusic #2000snostalgia #2000sthrowbacks #2000snostalgia #2000sthrowbacks #summervibes #2008 #2008throwback #2008nostalgia
It's been 10 years since the Lehman Brothers bankruptcy, considered the height of the 2008 Financial Crisis. But what caused this behemoth to go under, and how did we find ourselves in a real estate bubble? Let's find out with a 5 Minute History Lesson. Intro/Outro Music: https://www.bensound.com/royalty-free-music Episode Music: Faster Does It by Kevin MacLeod is licensed under a Creative Commons Attribution license (https://creativecommons.org/licenses/by/4.0/) Source: http://incompetech.com/music/royalty-free/index.html?isrc=USUAN1100794 Artist: http://incompetech.com/ DISCLAIMER: Richard does not have a personal holding in any of the referenced companies
The last time a team from Manchester won the Champions League. The Ferguson era. Man Utd were one of the most dominant teams of the 00's resulting in a glorious victory, with players like Cristiano Ronaldo any many more. Crazy to think about the fact that Ronaldo plays for Manchester United again. Who is your favorite United player of the Champions League run? -------------------------------------------------------------------- Second Channel: https://www.youtube.com/c/VanemasHD Third Channel: https://www.youtube.com/c/VanemasFIFA Vanemas Shorts: https://www.youtube.com/c/VanemasCopyrightFreeMusic Instagram: https://www.instagram.com/vanemas/ Vanemas iPhone and Samsung cases available at https://www.redbubble.com/people/vanemas/shop Contact: [email protected] ----------------------...
A decade after the financial crisis, billionaire investor Warren Buffett explains what was behind the 2008 mayhem, what we can do to limit the damage and opportunities missed last time.
هرچی که لازمه برای خریدن یا نخریدن این ماشین رو گفتم دیگه شما هستید و حمایت همیشگیتون
In November 2008, 10 members of Lashkar-e-Taiba, an Islamic militant organisation based in Pakistan, carried out a series of 12 coordinated shooting and bombing attacks lasting four days across Mumbai. The attacks, which drew widespread global condemnation, began on Wednesday, 26 November and lasted until Saturday, 29 November 2008, killing 164 people and wounding at least 308.
Eight of the attacks occurred in South Mumbai: at Chhatrapati Shivaji Terminus, the Oberoi Trident, the Taj Mahal Palace & Tower,Leopold Cafe, Cama Hospital, the Nariman House Jewish community centre, the Metro Cinema, and in a lane behind the Times of India building and St. Xavier's College. There was also an explosion at Mazagaon, in Mumbai's port area, and in a taxi at Vile Parle. By the early morning of 28 November, all sites except for the Taj hotel had been secured by Mumbai Police and security forces. On 29 November, India's National Security Guards (NSG) conducted 'Operation Black Tornado' to flush out the remaining attackers; it resulted in the deaths of the last remaining attackers at the Taj hotel and ending all fighting in the attacks.