- published: 02 Jan 2025
- views: 7562
'+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; })); }); -->
Coordinates: 42°45′N 25°30′E / 42.750°N 25.500°E / 42.750; 25.500
Bulgaria (i/bʌlˈɡɛəriə/, /bʊlˈ-/; Bulgarian: България, tr. Bǎlgarija, IPA: [bɐɫˈɡarijɐ]), officially the Republic of Bulgaria (Bulgarian: Република България, tr. Republika Bǎlgarija), is a country in southeastern Europe. It is bordered by Romania to the north, Serbia and Macedonia to the west, Greece and Turkey to the south, and the Black Sea to the east. With a territory of 110,994 square kilometres (42,855 sq mi), Bulgaria is Europe's 16th-largest country.
Organised prehistoric cultures began developing on Bulgarian lands during the Neolithic period. Its ancient history saw the presence of the Thracians and later the Persians,Greeks and Romans. The emergence of a unified Bulgarian state dates back to the establishment of the First Bulgarian Empire in 681 AD, which dominated most of the Balkans and functioned as a cultural hub for Slavs during the Middle Ages. With the downfall of the Second Bulgarian Empire in 1396, its territories came under Ottoman rule for nearly five centuries. The Russo-Turkish War (1877–78) led to the formation of the Third Bulgarian State. The following years saw several conflicts with its neighbours, which prompted Bulgaria to align with Germany in both world wars. In 1946 it became a one-party socialist state as part of the Soviet-led Eastern Bloc. In December 1989 the ruling Communist Party allowed multi-party elections, which subsequently led to Bulgaria's transition into a democracy and a market-based economy.
In European elections, Bulgaria is a constituency of the European Parliament, represented by seventeen MEPs. It covers the member state of Bulgaria.
As of January 2015
The 2007 European election was Bulgaria's first since joining the European Union on 2007-01-01 and was held on 2007-05-20.
The top two parties scored 5 seats each; Citizens for European Development of Bulgaria and Bulgarian Socialist Party, followed by the Movement for Rights and Freedoms with four, Ataka with three, and National Movement Simeon II (NDSV) with one. It was considered likely that the result of the election would cause a major political crisis in Bulgaria, due to the expected weak results of the National Movement.
Bulgaria (Russian: Булга́рия, tr. Bulgariya) was a class 785/OL800 Russian river cruise ship (built in Komárno, Czechoslovakia) which operated in the Volga-Don basin. On 10 July 2011, Bulgaria sank in the Kuybyshev Reservoir of the Volga River near Syukeyevo, Kamsko-Ustyinsky District, Tatarstan, Russia, with 201 passengers and crew aboard when sailing from the town of Bolgar to the regional capital, Kazan. The catastrophe led to 122 confirmed deaths (bodies recovered and identified).
The sinking of Bulgaria is the largest Russian ship disaster since 1986 when the SS Admiral Nakhimov crashed into a cargo ship and 423 people died.
Bulgaria was built at Slovak shipyard in Komárno, Czechoslovakia, in 1955 as Ukraina, and was renamed in February 2010 to Bulgaria after the Volga Bulgaria. Her length was 80.2 metres (263 ft), her beam was 12.5 metres (41 ft), her draft was 1.9 metres (6.2 ft), and her power output was 273 kilowatts (366 hp). She had two engines and two decks. Her cruising speed was 20.5 kilometres per hour (12.7 mph; 11.1 kn), and her original passenger capacity was 233 (then reduced after overhaul).
Romania and Bulgaria officially joined the EU's visa-free Schengen zone on January 1 despite having been European Union members since 2007. Their delayed accession to the now 29-nation zone had been blocked by Austria over migration concerns. Read more about this story in our article: https://f24.my/AqMG.y 🔔 Subscribe to France 24 now: https://f24.my/YTen 🔴 LIVE - Watch FRANCE 24 English 24/7 here: https://f24.my/YTliveEN 🌍 Read the latest International News and Top Stories: https://www.france24.com/en/ Like us on Facebook: https://f24.my/FBen Follow us on X (Twitter): https://f24.my/Xen Browse the news in pictures on Instagram: https://f24.my/IGen Discover our TikTok videos: https://f24.my/TKen Get the latest top stories on Telegram: https://f24.my/TGen
Residents from Romania and Bulgaria can now travel freely in the Schengen area. READ MORE : https://www.euronews.com/2025/01/01/travel-freely-citizens-of-romania-and-bulgaria-celebrate-as-europes-borders-are-opened-to- Subscribe to our channel: https://www.youtube.com/c/euronews?sub_confirmation=1 Watch our LIVE here: https://www.youtube.com/c/euronews/live Subscribe to our thematic channels: NoComment: https://www.youtube.com/c/nocommenttv?sub_confirmation=1 Euronews Green: http://bit.ly/2sMsaDB Euronews Next: https://www.youtube.com/c/EuronewsNext?sub_confirmation=1 Euronews Travel: https://www.youtube.com/c/EuronewsTravel?sub_confirmation=1 Euronews is available on YouTube in 12 languages: https://www.youtube.com/user/euronewsnetwork/channels #EuropeNews
BULGARIA IN 2024: The Weirdest Country In The Balkans | 60 Bizarre Facts 🔔 Subscribe now with all notifications on for more in-depth European travel guides, hidden gems in Europe, and insightful European culture explorations! Hello explorers and welcome back to another exciting video on 'Europe In Detail'! Today, we're embarking on a cultural journey through Bulgaria, a hidden gem nestled in Southeast Europe. This land of mountains, rivers, and the Black Sea coast is a tapestry of ancient history, vibrant traditions, and natural beauty. #bulgaria #sofia #countryfacts #balkans 📺 Watch the entire video for more information! _________________________________________________________________ About Europe In Detail 🎥 Videos about detailed European travel, unexplored European gems, and rich ...
bulgaria SLANDER!! learn everything IMPORTANT you NEED to know about EUROPE'S OLDEST COUNTRY in 5 mins starting NOW!!! I use this guy's music a lot: https://soundcloud.com/svardd Patreon: https://www.patreon.com/user?u=77588880 Instagram: https://www.instagram.com/leowpold #meme #bulgaria #balkan #slander
Rick Steves' Europe Travel Guide © 2016 | Bulgaria, so mysterious to most Americans, has a vivid identity as a crossroads of the Balkans. We'll trace the country's complex history, from ancient Thracian tombs to medieval Orthodox Christian monasteries to Soviet monuments. And we'll enjoy an intimate taste of contemporary culture: the yellow brick road of Sofia; the gregarious craftspeople of the medieval capital, Veliko Tarnovo; and the thriving pedestrian zones of cosmopolitan Plovdiv. #ricksteves #ricksteveseurope #bulgaria Visit http://www.ricksteves.com for more information about this destination and other destinations in Europe. Check out more Rick Steves’ Europe travel resources: • “Rick Steves’ Europe” public television series: https://www.ricksteves.com/watch-read-listen/video/tv...
Hello, I am OS. In this country's documentary, I presented you with important information about life in Bulgaria. I talked about life in Bulgaria, daily life in Bulgaria, Bulgarian festivals, Bulgaria. When you watch the documentary, you will learn interesting information about life in Bulgaria, Bulgarian music, Bulgarian nights, Bulgarian food, and more. I also presented information about the climate in Bulgaria. Life in Bulgaria, Bulgarian culture, Bulgaria travel, traveling in Bulgaria, Bulgarian traditions, rules in Bulgaria, Bulgarian countries, Bulgarian landscape, Bulgarian features, Bulgarian people, Bulgarian cities, Bulgarian Varna, Bulgaria Sofia, citizenship in Bulgaria , Bulgaria visa, Bulgaria vlog, Bulgarian brands, readers in Bulgaria, Bulgaria student relations, Bulgaria ...
Ceremonies were held at Romania and Bulgaria's borders to celebrate becoming fully fledged members of the Schengen Area. READ MORE : https://www.euronews.com/2025/01/01/travel-freely-citizens-of-romania-and-bulgaria-celebrate-as-europes-borders-are-opened-to- Subscribe to our channel: https://www.youtube.com/c/euronews?sub_confirmation=1 Watch our LIVE here: https://www.youtube.com/c/euronews/live Subscribe to our thematic channels: NoComment: https://www.youtube.com/c/nocommenttv?sub_confirmation=1 Euronews Green: http://bit.ly/2sMsaDB Euronews Next: https://www.youtube.com/c/EuronewsNext?sub_confirmation=1 Euronews Travel: https://www.youtube.com/c/EuronewsTravel?sub_confirmation=1 Euronews is available on YouTube in 12 languages: https://www.youtube.com/user/euronewsnetwork/channels...
Olivia and Nathan here! We made it to Sofia, Bulgaria! ____________ [ TRAVEL INSURANCE ] For all our fellow digital nomads out there, here's our preferred travel insurance: https://safetywing.com/?referenceID=onworldtravel&utm_source=onworldtravel&utm_medium=Ambassador [ SUBSCRIBE TO PUT US IN YOUR ALGORITHM ] https://www.youtube.com/onworldtravel?sub_confirmation=1 [ JOIN OUR PATREON COMMUNITY ] https://www.patreon.com/onworldtravel [ MUSIC ] Epidemic Sounds https://share.epidemicsound.com/z2su7u [ FAVORITE TRAVEL CREDIT CARD ] https://www.referyourchasecard.com/6j/YDUCMCAYGV [ GET A $65 AIRBNB DISCOUNT ] For up to $65 off your first AIRBNB https://rb.gy/5eywpf [ NO FREEZE WATER HOSE ] 👉🏽 Use our code: ONWorldTravel for 5% off! https://nofreezewaterhose.com/?ref=hdjck1ijlw [...
SUBSCRIBE to @LeondeLeeuw for more of my solo travel adventures, lifestyle, hikes, food videos, language speaking and living life the best I can! 🌏 ----- ▶ Check out my website: https://www.leondeleeuw.net/ ▶ My books: https://www.leondeleeuw.net/books ▶ Instagram: Leon.X.Lion ▶ Facebook: https://www.facebook.com/leon.deleeuw/ ▶ Odysee channel: https://odysee.com/@leondeleeuw ▶ To send me a donation or gift 💖 through PayPal https://paypal.me/leondeleeuw or Revolut: @leondeleeuw ----- Thank you for your support and keep exploring!
On Sunday, Bulgaria holds its fifth parliamentary election in two years – more than anywhere else in Europe. From Sofia, CGTN Europe's Pablo Gutierrez explains why – and what might happen next. For more: https://www.cgtn.com/europe Social Media Twitter: https://twitter.com/CGTNEurope Facebook: https://www.facebook.com/cgtneuropeofficial Instagram: https://www.instagram.com/cgtneurope/ YouTube: https://www.youtube.com/cgtneurope Flipboard: https://flipboard.com/@CGTNEurope Feedly: https://feedly.com/i/subscription/feed%2Fhttps%3A%2F%2Fwww.cgtn.com%2Frss%2Feurope%2Frss.xml OTT iPhone: https://apps.apple.com/us/app/id1466868682 Apple TV: https://www.cgtnnow.com/help/using-the-apple-tv-app/apple-tv-apps Android: https://play.google.com/store/apps/details?id=com.cgtnamericanow Android TV: h...
This is the YouTube service of Europe Elects. Poll aggregation and election analysis for countries in the European Union. Europe Elects introduces the main political parties ahead of the 11 of July 2021 parliament election in Bulgaria. Please consider a donation on our Patreon. Thank you. Patreon: https://www.patreon.com/EuropeElects Paypal: https://www.paypal.com/pools/c/8bYExe... Twitter: https://twitter.com/EuropeElects Facebook: https://www.facebook.com/EuropeElects/ 0:00 Intro 0:51 GERB - SDS 3:49 ITN 6:00 SBPzB 9:33 DPS 11:50 DB 15:07 IS.MV 18:00 BP Pictures adapted from: -Wikimedia Commons: https://commons.wikimedia.org/wiki/Fi... by Grey Geezer This file is licensed under the Creative Commons Attribution-Share Alike 4.0 International https://commons.wikimedia.org/wiki/F...
Online panel discussion organised by IDM in cooperation with the Political Academy and Karl Renner Institute 01:01 Welcome Address Elisabeth Mayerhofer, Director of the Political Academy 03:14 Panel Discussion Solomon Passy, former Foreign Minister of Bulgaria Velina Tchakarova, Director at the Austrian Institute for European and Security Policy (AIES) Denica Yotova, Programme coordinator of the European Council on Foreign Relations (ECFR) Moderation Sebastian Schäffer, Managing Director at the Institute for the Danube Region and Central Europe (IDM) Facebook: https://www.facebook.com/IDMVienna Twitter: https://twitter.com/IDMVienna Instagram: https://www.instagram.com/idmvienna/ LinkedIn: https://www.linkedin.com/company/idmv... Visit our website: http://www.idm.at/ Newslett...
To help you get your head around this spring’s European elections, we’ve put together this handy explainer.… READ MORE : https://www.euronews.com/2019/03/05/european-parliament-elections-2019-all-you-need-to-know-about-how-they-work What are the top stories today? Click to watch: https://www.youtube.com/playlist?list=PLSyY1udCyYqBeDOz400FlseNGNqReKkFd euronews: the most watched news channel in Europe Subscribe! http://www.youtube.com/subscription_center?add_user=euronews euronews is available in 13 languages: https://www.youtube.com/user/euronewsnetwork/channels In English: Website: http://www.euronews.com/news Facebook: https://www.facebook.com/euronews Twitter: http://twitter.com/euronews Google+: http://google.com/+euronews VKontakte: http://vk.com/en.euronews
Hundreds of millions of citizens are eligible to vote in this year’s European Parliamentary elections. CNBC’s Silvia Amaro explains how voting works across the 28 European countries. ----- Subscribe to us on YouTube: http://cnb.cx/2wuoARM Subscribe to CNBC Life on YouTube: http://cnb.cx/2wAkfMv Like our Facebook page: https://www.facebook.com/cnbcinternational Follow us on Instagram: https://www.instagram.com/cnbcinternational/ Follow us on Twitter: https://twitter.com/CNBCi
(October 14, 2014) Marije Cornelissen presents her vision about the probable development of the main body of the European Union in the next five years. The speaker discusses some current problems in the Euroepan Parliament, concentrating on the economic, climate and foreign crisis. Marije Cornelissen is a former member of the European Parliament, 2009-2014. More about this talk on our website: http://aubg.edu/talks/marije-cornelissen-whats-next-for-the-european-union Playlist with all short previews of this talk: https://www.youtube.com/playlist?list=PLdjXDVaojQZ1jtMvQ-GE_aGuNlqgf_HL4 Find us elsewhere on the web: WEBSITE: http://aubg.edu/talks FACEBOOK: http://www.facebook.com/AUBGTalks TWITTER: http://twitter.com/AUBGTalks GOOGLE+: http://plus.google.com/113278525844733479649/ Find o...
Do you have questions about the upcoming European elections? This explainer is for you. READ MORE : https://www.euronews.com/2024/04/01/what-are-the-european-elections-and-how-do-they-work Subscribe to our channel: https://www.youtube.com/c/euronews?sub_confirmation=1 Watch our LIVE here: https://www.youtube.com/c/euronews/live Subscribe to our thematic channels: NoComment: https://www.youtube.com/c/nocommenttv?sub_confirmation=1 Euronews Green: http://bit.ly/2sMsaDB Euronews Next: https://www.youtube.com/c/EuronewsNext?sub_confirmation=1 Euronews Travel: https://www.youtube.com/c/EuronewsTravel?sub_confirmation=1 Euronews is available on YouTube in 12 languages: https://www.youtube.com/user/euronewsnetwork/channels #EuropeNews
Part 1 here: https://youtu.be/sHkMjkWQcFM Natura 2000: https://en.wikipedia.org/wiki/Natura_2000 Party lists: https://www.youtube.com/watch?v=XchSvlPmKMk
"Democratic Support in the Balkans" - Politics in the EU Workshop featuring Francesco Ronchi. 00:00:12 - Welcome & Introduction by Carlo Invernizzi Accetti 00:01:04 - Lecture by Francesco Ronchi 00:59:00 - Q & A Francesco Ronchi is Administrator at the Directorate for Democracy Support of the European Parliament. Previously, he has been Deputy Chief of Staff in the office of the President of the Socialists and Democrats Group in the European Parliament. From 2011 to 2012 he served the United Nations as an electoral advisor in the Peace Building Mission for Ivory Coast. Since 2014 he has been Adjunct Professor at Sciences Po Paris where he teaches both at the graduate and undergraduate levels. He is also a regular a commentator on European affairs for venues including Le Figaro and The Wa...
Bruegel was excited to host this event where speakers and experts from a variety of fields discussed the evolving party alignments in the European Union. The results of the May 2019 European Parliament election have highlighted the rise of liberal-centrist, green and nativist parties, and a relative decline of the traditionally dominant centre-left and centre-right, against a backdrop of political mobilisation and higher turnout. As the political landscape of Europe continues to shift, its important to understand the ever-changing context in which EU politics occurs.
The Constitution of the Republic of Bulgaria is the supreme and basic law of the Republic of Bulgaria. The current constitution was adopted on 12 July 1991 by the 7th Grand National Assembly of Bulgaria, and defines the country as a unitary parliamentary republic. It has been amended five times (in 2003, 2005, 2006, 2007, and 2015). Chronologically, it is the fourth constitution of Bulgaria, the first being the Tarnovo Constitution of 1879. It was immediately preceded by the two Socialist-era constitutions–the Dimitrov Constitution (named after Georgi Dimitrov), in force between 1947 and 1971, and the Zhivkov Constitution (named after Todor Zhivkov), in force between 1971 and 1991.
Donegal TV Local & European Election Special Email: [email protected] social: www.facebook.com/donegaltv web: www.donegaltv.ie
Speaker: Arnold Platon, Data-visualisation freelancer (Romania) Arnold Platon is an architecture graduate from Romania who currently works in 3D infrastructure design in France. He does various projects as a data-visualisation freelancer, the European Union being one of his main themes. His latest project was a detailed, municipality-level mapping of the 2019 European Elections with the German newspaper Zeit Online.
The Indian Navy has evacuated a bruised sailor from a Malta-flagged hijacked vessel off the coast of Somalia. Indian Navy aircraft and warship respond to hijacked Maltese ship's mayday call in Arabian Sea. #indiannavy #bulgaria #malta 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 is 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 world politics. People are tired of biased reportage and we stand for a globalized united world. So for us, the World is truly One. Please keep discussions on ...
A desperate search is underway in the Russian Volga for more than 100 people who are missing after their cruise ship sank. So far 85 people have been rescued, mostly by a vessel that was nearby when, for reasons unknown, the Bulgaria capsized and went down in just minutes. Rescue workers admit hopes of finding any more survivors are slim. The Bulgaria, with 188 passengers and crew, was on a two-day cruise in the Tatarstan region when it ran into trouble three kilometres from shore. ... http://www.euronews.net/
India and Bulgaria's sweet exchange after the rescue of hijacked ship MV Ruen goes viral. Bulgaria's Deputy Prime Minister thanked India for rescuing the vessel with seven Bulgarians onboard. India's External Affairs Minister, S. Jaishankar, gave a sweet reply to Bulgaria's deputy PM's post. "That's what friends are for," Jaishankar wrote while replying to Mariya Gabriel's thank-you note. The Indian Navy rescued MV Ruen, which was hijacked by Somali pirates on December 14 last year, after a 40-hour high-tempo operation. NATIONAL NEWS #india #bulgaria #hijackedship #mvruen #somalipirates #indiannavy #rescuemission #indianforces #inskolkata #sjaishankar #indianexternalaffairsminister #mariyagabriel #bulgarian #pirates #navy Hindustan Times Videos brings all the News for the Global India...
This video depicts images of the survivors and deceased passengers from the Bulgaria cruise ship which sank in the Volga River in Russia. (Video by the Guardian newspaper). For additional information, go to Cruise Law News: http://www.cruiselawnews.com/2011/07/articles/sinking/cruise-ship-sinks-in-volga-river-in-russia-up-to-100-feared-dead/
Drone video of Black Sam Pirate Ship, Bulgaria, by Contempo-BG
Our long time, over 22 years, client the major Greek shipping/management company Thenamaris Shipmanagement, choose to award Odessos Shipyard for repair work to ‘Seavictory’. For more info, visit: http://www.odessos-yard.bg/
Bulgarian President Rumen Radev expressed his gratitude for the Indian Navy after they successfully carried out a rescue operation on the hijacked cargo ship, MV Ruen, in the Arabian Sea on Friday. Indian Prime Minister Narendra Modi responded to Rumen Radev’s post on social media site X and said he appreciated his message. PM Modi said India remains committed to combating piracy and terrorism in the Indian Ocean region. #india #bulgaria #pmmodi 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 is 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...
Russia's full-scale invasion of Ukraine is now in its third year, and it’s becoming clear that the civilised world's sanctions are a sham. It’s equally clear that if our Western partners’ sanctions policy were based on principles, the Russian economy would not have survived three years of war – especially a war of such intensity, involving so many billions of dollars’ worth of missiles and other weaponry. Sanctions have been used to deter Russia's military aggression. It’s also clear that black gold funds the lion's share of Russia's budget. Oil is what enables Russia to continue its full-scale war against Ukraine. Russia's military budget for 2024 was about US$112 billion, and that figure is set to rise in 2025. According to Bloomberg, spending on national defence and domestic security ...
Един нов и голям проект за кораборемонтен завод КРЗ ОДЕСОС - Odessos Yard и Seastar Team, m/v CAPE, заснет много-камерно от суша, въздух и вода. Проектът беше голямо предизвикателство поради динамичната обстановка по време на снимките и използването на голям набор от различна снимачна техника за различните дейности. Gas industry , drone gas pipeline video Ship drone inspection Ship tanks drone Inspection Shipping Inspections with Drone Technology drone inspections for cargo tanks drone Remote-Access Inspection drone for ship inspections Drone inspection company Ship time lapse video hyperlapse timelapse video Дрон инспекция обследване с дрон covid 19 corona virus картографиране с дрон наблюдение от въздуха инспекция от въздуха инспекция на танкове резервоари танкови сиситеми инспекция на ...
Bulgaria’s Deputy PM Mariya Gabriel expressed gratitude to Indian Navy for successfully rescuing seven Bulgarian nationals. Taking to her ‘X’ handle, Mariya Gabriel shared a tweet thanking PM Modi and EAM Jaishankar for rescuing hijacked vessel MV Ruen from pirates. Reading the words of gratitude from his Bulgarian Counterpart, EAM S Jaishankar replied, “That’s what friends are for” #bulgaria #sjaishankar #externalaffairs #foreignaffairs #republictv #LatestNews #RepublicTV #RepublicTVLive Republic TV is India's no.1 English news channel since its launch. It is your one-stop destination for all the live news updates from India and around the world. Republic TV makes news accessible for you at your convenience, at all times and across devices. At Republic we keep you updated with up-to-th...
Crossing the black sea by ferry - Here goes! Follow me on instagram for more adventures - @laurenhedges #solotravel #womenwhotravel #solotraveler #solotraveltips #solotravelling #solotravelfemale #solotraveller #ferryship #ferrrytravel #theblacksea #ferry #ferryservice #bulgaria #georgia #boatrides #boat #travel #traveling #travelblogger #travellers #wanderlust #doyoutravel #goexplore #travelmore #lovetotravel neverstopexploring #wonderfulplaces #roamtheplanet #travellifestyle #solotraveldiaries #solotravelstories #nomadiclife #womenwhoexplore #womenwhotravel #travelingladies #GoPro #amazing #awesome #exploring #traveltheworld #exploremore #explore #live #life #love #adventures
R/V Meteor during dry dock in Odessos Shipyard - Varna, Bulgaria. The R/V Meteor is a multidisciplinary research vessel operating mainly in high seas. She is owned by the German state, represented by its Federal Ministry of Education and Research. The vessel is operated by Briese Schiffahrts. We thank our longstanding client Briese Schiffahrts for the opportunity to participate in such a great project! We wish METEOR fair winds! More info at https://www.odessos-yard.bg/
Coordinates: 42°45′N 25°30′E / 42.750°N 25.500°E / 42.750; 25.500
Bulgaria (i/bʌlˈɡɛəriə/, /bʊlˈ-/; Bulgarian: България, tr. Bǎlgarija, IPA: [bɐɫˈɡarijɐ]), officially the Republic of Bulgaria (Bulgarian: Република България, tr. Republika Bǎlgarija), is a country in southeastern Europe. It is bordered by Romania to the north, Serbia and Macedonia to the west, Greece and Turkey to the south, and the Black Sea to the east. With a territory of 110,994 square kilometres (42,855 sq mi), Bulgaria is Europe's 16th-largest country.
Organised prehistoric cultures began developing on Bulgarian lands during the Neolithic period. Its ancient history saw the presence of the Thracians and later the Persians,Greeks and Romans. The emergence of a unified Bulgarian state dates back to the establishment of the First Bulgarian Empire in 681 AD, which dominated most of the Balkans and functioned as a cultural hub for Slavs during the Middle Ages. With the downfall of the Second Bulgarian Empire in 1396, its territories came under Ottoman rule for nearly five centuries. The Russo-Turkish War (1877–78) led to the formation of the Third Bulgarian State. The following years saw several conflicts with its neighbours, which prompted Bulgaria to align with Germany in both world wars. In 1946 it became a one-party socialist state as part of the Soviet-led Eastern Bloc. In December 1989 the ruling Communist Party allowed multi-party elections, which subsequently led to Bulgaria's transition into a democracy and a market-based economy.