- published: 05 Jun 2024
- views: 217728
'+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; })); }); -->
The Balkan Peninsula and the Balkans is a peninsula and a cultural area in Southeast Europe with different and disputed borders. The region takes its name from the Balkan Mountains that stretch from the east of Serbia to the Black Sea at the east of Bulgaria.
The Balkans meet the Adriatic Sea on the northwest, Ionian Sea on the southwest, the Mediterranean and Aegean Sea on the south and southeast, and the Black Sea on the east and northeast. The highest point of the Balkans is Mount Musala 2,925 metres (9,596 ft) on the Rila mountain range in Bulgaria.
From Antiquity through the Middle Ages, the Balkan Mountains had been called by the local Thracian name Haemus. According to Greek mythology, the Thracian king Haemus was turned into a mountain by Zeus as a punishment and the mountain has remained with his name. A reverse name scheme has also been suggested. D. Dechev considers that Haemus (Αἷμος) is derived from a Thracian word *saimon, 'mountain ridge'. A third possibility is that "Haemus" (Αἵμος) derives from the Greek word "haema" (αἵμα) meaning 'blood'. The myth relates to a fight between Zeus and the monster/titan Typhon. Zeus injured Typhon with a thunder bolt and Typhon's blood fell on the mountains from which they got their name.
Yugoslavia (Serbo-Croatian, Macedonian, Slovene: Jugoslavija, Југославија) was a country in Southeast Europe during most of the 20th century. It came into existence after World War I in 1918 under the name of the Kingdom of Serbs, Croats and Slovenes by the merger of the provisional State of Slovenes, Croats and Serbs (itself formed from territories of the former Austro-Hungarian Empire) with the formerly independent Kingdom of Serbia. The Serbian royal House of Karađorđević became the Yugoslav royal dynasty. Yugoslavia gained international recognition on 13 July 1922 at the Conference of Ambassadors in Paris. The country was named after the South Slavic peoples and constituted their first union, following centuries in which the territories had been part of the Ottoman Empire and Austria-Hungary.
Renamed the Kingdom of Yugoslavia on 3 October 1929, it was invaded by the Axis powers on 6 April 1941. In 1943, a Democratic Federal Yugoslavia was proclaimed by the Partisan resistance. In 1944, the king recognised it as the legitimate government, but in November 1945 the monarchy was abolished. Yugoslavia was renamed the Federal People's Republic of Yugoslavia in 1946, when a communist government was established. It acquired the territories of Istria, Rijeka, and Zadar from Italy. Partisan leader Josip Broz Tito ruled the country as president until his death in 1980. In 1963, the country was renamed again as the Socialist Federal Republic of Yugoslavia (SFRY).
1554 Yugoslavia, provisional designation 1940 RE, is a stony asteroid from the middle region of the asteroid belt, about 17 kilometers in diameter. It was discovered by Serbian astronomer Milorad Protić at Belgrade Astronomical Observatory, Serbia, on 6 September 1940.
The asteroid is a member of the Eunomia family, a large group of S-type asteroids and the most prominent family in the intermediate main-belt. It orbits the Sun at a distance of 2.1–3.1 AU once every 4 years and 3 months (1,547 days). Its orbit shows an eccentricity of 0.20 and is tilted by 12 degrees to the plane of the ecliptic. It has a well-defined rotation period of 3.89 hours, measured by several photometric light-curve observations. Based on measurements by the Japanese Akari satellite and the Wide-field Infrared Survey Explorer, the body's albedo is inconclusive – ranging from 0.07 to 0.27 – while the Collaborative Asteroid Lightcurve Link (CALL) assumes an albedo of 0.21, typical for stony asteroids.
#balkan #gambling #romania Check out my merch at ➡️https://theironicshop.com/ ✉️ Join the Postcard Club ✉️ https://www.patreon.com/livingironicallyineurope 🎩Become a member and support the channel:🎩 https://www.youtube.com/channel/UC8SNsIS6XZ6WaEeEPCSVaQg/join Description: In the Balkans gambling is one of the biggest problems in modern society, yet rarely talked about. In this video we go over the issue of gambling & sports betting in Serbia, Romania, and Bosnia, talk about what causes it, and how impactful it is in society as whole. 🔴Follow my Instagram: https://www.instagram.com/livingironicallyineurope/ 🔴Join the Ironic Discord: https://discord.gg/gHhTSRUXxy 🎶Outro Song🎶: https://youtu.be/VDDX2m_vd-g 🎶Explained Intro Song🎶: https://youtu.be/vafpeSvU0DA Sources: https://www.euron...
Check out my merch at ➡️https://theironicshop.com/ ✉️ Join the Postcard Club ✉️ https://www.patreon.com/livingironicallyineurope 🎩Become a member and support the channel:🎩 https://www.youtube.com/channel/UC8SNsIS6XZ6WaEeEPCSVaQg/join Description: If you've ever looked at a GDP map of Europe, you've most likely noticed that the continent is divided into 2 sections, where its eastern part is substantially poorer & less developed. In this video we go over why that's the case. We cover the history of the Balkans, Western Europe, the Ottoman Empire, and subsequent Cold War & the effects after the fall of the Berlin wall on the Balkan peninsula. 🔴Follow my Instagram: https://www.instagram.com/livingironicallyineurope/ 🔴Join the Ironic Discord: https://discord.gg/gHhTSRUXxy 🎶Outro Song🎶: http...
This is a video
In this video we only scratch the surface of a very complex and dilapidated discussion that is not easily discussed, covering the general objective layout. We encourage you to research and talk to Balkan people for further understanding. Thanks SETERRA For sponsoring us! Check them out! https://online.seterra.com/en Check out http://www.GeographyNow.com ! You asked for merch so we made it for you! We now have a Public mailbox too! Feel free to send anything via mail! Our public mailbox address is: 1905 N Wilcox ave, #432 Los Angeles CA, 90068 SUBSCRIBE: http://bit.ly/1Os7W46 BTS info and tidbits? Check out the Facebook fan page: https://www.facebook.com/GeographyNowFanpage/?fref=ts Twitter: https://twitter.com/geographynow Instagram: http://instagram.com/GeographyNow_Official B...
The Balkans are one of the Europe's most beautiful and fascinating regions. From the Coast of Croatia, to the medieval bridges of Bosnia, the Balkans have so much to offer. I've traveled to the South Eastern Europe several times and I want to show you my favorite places! Where is your favorite place in the Balkans? My Second Relaxation channel - https://www.youtube.com/channel/UC95bEkaIgwhxSjSsdMFXYGg Check out my website for travel guides and stock footage - https://sellfy.com/ryanshirley/ Follow me on tiktok and instagram @shirley.films My Travel Videos: Top 10 Capitals in Europe - https://youtu.be/kqPWnNKkzzE Top 10 Places in Greece - https://youtu.be/XhSFK2o-QWM Top 10 Cities In Europe - https://youtu.be/lao2MP2Esi8 Top 10 Places In The Alps - https://youtu.be/Y97wob0akMg To...
SERBIAN SLANDER! learn the TRUTH, the Balkan secret you never know... I 100,000,000% PROMISE!! Patreon: https://www.patreon.com/user?u=77588880 Instagram: https://www.instagram.com/leowpold I use this guy's music a lot: @svardd #balkan #meme #slander #serbia #greece
Welcome to the Balkans! ►MERCH: https://my-store-5193770.creator-spring.com ►Patreon : https://www.patreon.com/scorpo ►Twitter : https://twitter.com/scorpo_yt ►Instagram : https://www.instagram.com/scorpo_yt ►Discord : https://discord.gg/gYUyaMZ 🔔Make sure to enable ALL push notifications!🔔 Hardbass Name: Serbian Folk Song - Serbia Strong Thompson - Bojna Čavoglave Bosnian Folk Song - Bosanska Artiljerija Marshi I UÇK We Are With Marshal Tito! Michael Hunter - Soviet Connection (Houcemate Edit)
Radeći pod sloganom "Iz svakog ugla i sa svake strane", Al Jazeera Balkans svojim neovisnim i nepristrasnim izvještavanjem donosi neispričane priče. Koristeći se mrežom dopisnika, kao i globalnom mrežom dopisništava Al Jazeera mreže, Al Jazeera Balkans gledaocima u regionu donosi, kako regionalne tako i globalne vijesti, te o regionu izvještava gledaoce u svijetu koji prate Al Jazeera English i Al Jazeera Arabic programe. Pratite nas: http://www.youtube.com/ajbalkans http://facebook.com/ajbalkans http://instagram.com/ajbalkans/ http://twitter.com/ajbalkans http://balkans.aljazeera.net #AlJazeeraBalkans #Vijesti #BreakingNews
#ajbpromo
Slavoj Zizek shows us the official geographical limit between Balkan and Central Europe! From 'Liebe Dein Symptom wie Dich selbst': https://www.youtube.com/watch?v=JsqBhir11pk
Yugoslavia. One of Europe’s most complex nations - and one of its largest! From 1918 until the 1980s, it was a diverse European power player, home to countless internal conflicts as well as cultural influences that spread over much of Europe. And today, it simply no longer exists. What happened that completely broke apart the country? Check out today's epic new video to find out! 🔔 SUBSCRIBE TO THE INFOGRAPHICS SHOW ► https://www.youtube.com/c/theinfographicsshowOFFICIAL?sub_confirmation=1 🔖 MY SOCIAL PAGES TikTok ► https://www.tiktok.com/@theinfographicsshow Discord ► https://discord.gg/theinfoshow Facebook ► https://www.facebook.com/TheInfographicsShow Twitter ► https://twitter.com/TheInfoShow 💭 Find more interesting stuff on: https://www.theinfographicsshow.com 📝 SOURCES:https:/...
Why did Yugoslavia Collapse? Yugoslavia. For many, a long-forgotten failed nation. For others, an all-too-painful, and recent, memory. A once-united federation made up of six neighboring republics, Yugoslavia’s existence was never a simple one. With constant ethnic and religious division, it seems that it was only a matter of time before a breakup would be imminent. But was that the only cause of Yugoslavia’s collapse? And how did the ethnic disputes actually lead to the destruction of an entire federation?... ♦Consider supporting the Channel of Patreon : https://www.patreon.com/Knowledgia ♦Please consider to SUBSCRIBE: https://goo.gl/YJNqek ♦Music by Epidemic Sound ♦Sources : https://history.state.gov/milestones/1989-1992/breakup-yugoslavia#:~:text=The%20varied%20reasons%2...
Costing the lives of over 130,000 people, the Yugoslav Wars and resulting conflicts are marked with war crimes, genocide, and ethnic cleansing, and is one of the worst humanitarian crises that occurred since WWII. → Subscribe for new videos at least twice a week! https://www.youtube.com/c/biographics?sub_confirmation=1 Love content? Check out Simon's other YouTube Channels: Biographics: https://www.youtube.com/channel/UClnDI2sdehVm1zm_LmUHsjQ Geographics: https://www.youtube.com/channel/UCHKRfxkMTqiiv4pF99qGKIw MegaProjects: https://www.youtube.com/channel/UC0woBco6Dgcxt0h8SwyyOmw SideProjects: https://www.youtube.com/channel/UC3Wn3dABlgESm8Bzn8Vamgg Casual Criminalist: https://www.youtube.com/channel/UCp1tsmksyf6TgKFMdt8-05Q TopTenz: https://www.youtube.com/user/toptenznet Today I Foun...
Why did Yugoslavia split up? In this video, I attempt to look at the complex situation of the former Yugoslav republics and what led to their breakup. MUSIC Satiate Kevin MacLeod (incompetech.com) Licensed under Creative Commons: By Attribution 3.0 License http://creativecommons.org/licenses/by/3.0/ All images/footage used in this video are either public domain, CC or free use. Fair use as this is a transformative work for educational proposes.
The Breakup of Yugoslavia. The poll: https://www.youtube.com/post/UgwTlVb3vhd0hL4Ok-h4AaABCQ Patreon: https://www.patreon.com/Historyscope Social Media Discord: https://discord.gg/JYCYPvqba6 Reddit: https://www.reddit.com/r/HistoryScope/ Twitter: https://twitter.com/ScopeHistory Instagram: https://www.instagram.com/officialhistoryscope/ Facebook: https://www.facebook.com/averythingchannel/ My music playlist while animating: https://www.youtube.com/playlist?list=PLSxw_OLJxQj2amarphSC68tia4gBSVwth SOURCES: - https://www.britannica.com/place/Kingdom-of-Serbs-Croats-and-Slovenes - https://www.britannica.com/place/Yugoslavia-former-federated-nation-1929-2003 - http://www.yuhistorija.com/doc/LP%20-%20Kindgom%20SCS%20-%20Yugoslavia.pdf - https://www.infoplease.com/history/world/timeline-the...
The Srebrenica massacre is a wake-up call for the international community, which decides to intervene after four years of war. That same year, the warring parties sign a peace treaty. But war soon breaks out again, this time in Kosovo. NATO intervenes and ends the fighting – a controversial mission without a UN mandate. The Balkans are still regarded as a powder keg. The wars of the 1990s have set the region back economically; reconciliation is still difficult today. Part 1 of "Balkans in Flames": https://youtu.be/075VpqfiTPI Part 2 of "Balkans in Flames": https://youtu.be/e-NVFqrVPq0 -- Welcome to the official Get.factual youtube channel! 🌍 We are a documentary streaming channel covering history, science, technology, and nature. Explore worlds distant, forgotten, and unknown; from th...
Answer your emails faster, in the appropriate tone, and with confidence with Grammarly! Go to https://grammarly.com/armchairhistorian to sign up for a FREE account and get 20% off Premium! Sign up for Armchair History TV today! https://armchairhistory.tv/ Promo code: ARMCHAIRHISTORY for 50% OFF Merchandise available at https://store.armchairhistory.tv/ Check out the new Armchair History TV Mobile App too! https://apps.apple.com/us/app/armchair-history-tv/id1514643375 https://play.google.com/store/apps/details?id=tv.uscreen.armchairhistorytv Discord: https://discord.gg/zY5jzKp Twitter: https://twitter.com/ArmchairHist Sources: Ambrose, Stephen E. The Victors. New York: Touchstone Books, 1998. Bailey, Ronald H. Partisans and Guerrillas. World War II. Alexandria, VA: Time-Life Books, 197...
Why Did NATO Bomb Yugoslavia? | Flashback with Palki Sharma Western leaders have called the Ukraine war - the first major European conflict since World War II. But two decades before Russia's invasion, another European country's sovereignty was violated and its cities bombed. It was a ruthless war unleashed by the US-led NATO alliance. Catch the story of NATO's dark chapter on Flashback with Palki Sharma. --- Yugoslavia | Yugoslavia War | World War 2 | Europe | Russia Ukraine War | NATO | Firstpost | World News | Latest News | Global News #yugoslavia #worldwar2 #europe #nato #russiaukrainewar #firstpost #worldnews #latestnews #globalnews #internationalnews #trendingnews Firstpost is an Indian news and media website. Get all the incisive opinions, in-depth analyses and other visual s...
Hello and welcome to Feature History, featuring the fall of Yugoslavia, only half of a video, and hopefully some good quality shitposting in the comments. Patreon https://www.patreon.com/FeatureHistory Twitter https://twitter.com/Feature_History ----------------------------------------------------------------------------------------------------------- I do the research, writing, narration, art, and animation. Yes, it is very lonely Music Alexey Omelchuk - Cabaret II Alexey Omelchuk - Propaganda Tune Sam Hulick - Devils in the Tower Red Army Choir - Katyusha Red Army Choir - Moscow Nights Ondřej Matějka - Indian Summer Ondřej Matějka - Chernarussian Anthem
The Balkan Peninsula and the Balkans is a peninsula and a cultural area in Southeast Europe with different and disputed borders. The region takes its name from the Balkan Mountains that stretch from the east of Serbia to the Black Sea at the east of Bulgaria.
The Balkans meet the Adriatic Sea on the northwest, Ionian Sea on the southwest, the Mediterranean and Aegean Sea on the south and southeast, and the Black Sea on the east and northeast. The highest point of the Balkans is Mount Musala 2,925 metres (9,596 ft) on the Rila mountain range in Bulgaria.
From Antiquity through the Middle Ages, the Balkan Mountains had been called by the local Thracian name Haemus. According to Greek mythology, the Thracian king Haemus was turned into a mountain by Zeus as a punishment and the mountain has remained with his name. A reverse name scheme has also been suggested. D. Dechev considers that Haemus (Αἷμος) is derived from a Thracian word *saimon, 'mountain ridge'. A third possibility is that "Haemus" (Αἵμος) derives from the Greek word "haema" (αἵμα) meaning 'blood'. The myth relates to a fight between Zeus and the monster/titan Typhon. Zeus injured Typhon with a thunder bolt and Typhon's blood fell on the mountains from which they got their name.
I used to adore you
The lies made sense somehow
Gave myself away without a fight
But betrayal claims its price
At first I was scared
Not used to murders mind
But there was something beautiful
So powerful, different, so divine
Pushing the faith
Build on our rage
Falling ideals
Broken seals
March to the shore
You are a killer
Is it something that's always been there
What's the distance in this cage?
Oh, I'm glad we [Incomprehensible]
I love to release the rage
But everything has its end
I've done my deed
The final bullet was always meant for me
Pushing the faith
Build on our rage
Falling ideals
Broken seals
March to the shore
You are a killer
But everything has its end
I've done my deed
The final bullet, always meant for me
Falling ideals
Broken seals
March to the shore
You are a killer
Falling ideals
Broken seals
March to the shore