- published: 08 Nov 2023
- views: 1746336
'+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; })); }); -->
Jasenovac concentration camp (Croatian: Logor Jasenovac and Cyrillic: Логор Јасеновац, pronounced [lôːgor jasěnoʋat͡s]; Yiddish: יאסענאוואץ, sometimes spelled "Yasenovatz") was an extermination camp established in Slavonia by the authorities of the Independent State of Croatia (NDH) during World War II. The camp was established by the governing Ustaše regime and not operated by Nazi Germany, and was one of the largest concentration camps in Europe.
From August 1941 it existed in marshland at the confluence of the Sava and Una rivers near the village of Jasenovac. It was dismantled in April 1945. It was "notorious for its barbaric practices and the large number of victims". In Jasenovac, the majority of victims were ethnic Serbs, whom the Ustaše wanted to remove from the NDH, along with the Jews, anti-fascist or dissident Croatians, and Roma. Jasenovac was a complex of five subcamps spread over 210 km2 (81 sq mi) on both banks of the Sava and Una rivers. The largest camp was the "Brickworks" camp at Jasenovac, about 100 km (62 mi) southeast of Zagreb. The overall complex included the Stara Gradiška sub-camp, the killing grounds across the Sava river at Donja Gradina, five work farms, and the Uštica Roma camp.
Coordinates: 45°10′N 15°30′E / 45.167°N 15.500°E / 45.167; 15.500
Croatia (i/kroʊˈeɪʃə/ kroh-AY-shə; Croatian: Hrvatska [xř̩ʋaːtskaː]), officially the Republic of Croatia (Croatian: Republika Hrvatska, listen ), is a sovereign state at the crossroads of Central Europe, Southeast Europe, and the Mediterranean. Its capital city is Zagreb, which forms one of the country's primary subdivisions, along with its twenty counties. Croatia covers 56,594 square kilometres (21,851 square miles) and has diverse, mostly continental and Mediterranean climates. Croatia's Adriatic Sea coast contains more than a thousand islands. The country's population is 4.28 million, most of whom are Croats, with the most common religious denomination being Roman Catholicism.
The Croats arrived in the area of present-day Croatia during the early part of the 7th century AD. They organised the state into two duchies by the 9th century. Tomislav became the first king by 925, elevating Croatia to the status of a kingdom. The Kingdom of Croatia retained its sovereignty for nearly two centuries, reaching its peak during the rule of Kings Peter Krešimir IV and Dmitar Zvonimir. Croatia entered a personal union with Hungary in 1102. In 1527, faced with Ottoman conquest, the Croatian Parliament elected Ferdinand I of the House of Habsburg to the Croatian throne. In 1918, after World War I, Croatia was included in the unrecognised State of Slovenes, Croats and Serbs which seceded from Austria-Hungary and merged into the Kingdom of Yugoslavia. A fascist Croatian puppet state existed during World War II. After the war, Croatia became a founding member and a federal constituent of Socialist Federal Republic of Yugoslavia, a constitutionally socialist state. In June 1991, Croatia declared independence, which came into effect on 8 October of the same year. The Croatian War of Independence was fought successfully during the four years following the declaration.
Croatian wine (vino, pl. vina) has a history dating back to the Ancient Greek settlers, and their wine production on the southern Dalmatian islands of Vis, Hvar and Korčula some 2,500 years ago. Like other old world wine producers, many traditional grape varieties still survive in Croatia, perfectly suited to their local wine hills. Modern wine-production methods have taken over in the larger wineries, and EU-style wine regulations have been adopted, guaranteeing the quality of the wine.
There are currently over 300 geographically defined wine regions, and a strict classification system to ensure quality and origin. The majority of Croatian wine is white, with most of the remainder being red, and only a small percentage is rosé wines. In 2010, Croatia ranked 30th in wine producing countries with an estimated 50,000 tonnes.
Wine is a popular drink in Croatia, and locals traditionally like to drink wine with their meals. Quite often, the wine is diluted with either still or sparkling water - producing a drink known as gemišt (a combination of white wine and carbonated water), and bevanda (a combination of red wine and still water).
In European elections, Croatia is a constituency of the European Parliament, currently represented by twelve MEPs. It covers the member state of Croatia.
Members are elected by proportional representation using open lists.
It's impossible to imagine, but take a second and think about this: during WWII, there was a camp in the former Yugoslavia that a Holocaust survivor and historian called “worse than even Auschwitz” in terms of brutality, and about which the Nazis pushed for the camp leadership to be changed due to its very public and savage daily routine. It might surprise you, but the Germans did not run this extermination camp, and it was the third-largest concentration camp in Europe during the war in terms of area. After World War 1, a new country was created from many of the territories of the Austro-Hungarian Empire and the country of Serbia. This was Yugoslavia, “the land of the South Slavs.” Included within the new nation were Serbs, Croats, Slovenes, Montenegrins, North Macedonians, Albanians, a...
The Jasenovac Concentration Camp was established by the Ustaše regime, a fascist and ultranationalist movement, during World War II in the Independent State of Croatia, which was a puppet state of Nazi Germany. Located in modern-day Croatia, Jasenovac became one of the largest and most brutal concentration camps in Europe. Jasenovac was primarily used to imprison and exterminate ethnic and religious minorities, particularly Serbs, Jews, Roma people, and anti-fascist Croats. The conditions in the camp were extremely harsh, and prisoners faced widespread torture, forced labor, and systematic killings. The methods of mass murder employed at Jasenovac were exceptionally brutal. They included shootings, beatings, hanging, and a particularly notorious method called the "piccolo" (small flute), w...
The Jasenovac concentration camp (Serbo-Croatian: Logor Jasenovac/Логор Јасеновац, pronounced [lôːgor jasěnoʋat͡s]; Yiddish: יאסענאוואץ) was an extermination camp established in Slavonia by the authorities of the Independent State of Croatia (NDH) during World War II. The camp was established and operated solely by the governing Ustaše regime rather than by Nazi Germany as in the rest of occupied Europe. It was one of the largest concentration camps in Europe and it has been referred to as "the Auschwitz of the Balkans" and "the Yugoslav Auschwitz". It was established in August 1941 in marshland at the confluence of the Sava and Una rivers near the village of Jasenovac, and was dismantled in April 1945. It was "notorious for its barbaric practices and the large number of victims". In Jase...
DAILY DOSE | Many do not know the horror of the Jasenovac concentration camp in Croatia's Slavonia region, but it considered one of the most brutal and notorious concentration camps, run by the WWII Croatian pro-Nazi government. Holocaust Institute Historian-in-Chief Gideon Greif discusses his book on the camp with host Eylon Levy. For more, see our ⬇ Website Articles: https://www.i24news.tv/en Live: https://video.i24news.tv/page/live?clip=5a94117623eec6000c557fec (Subscription) Replay: https://video.i24news.tv/page/5ab2981123eec6000caa0e93 (Subscription) Social Media Facebook: https://www.facebook.com/i24newsEN/ Twitter: https://twitter.com/i24NEWS_EN Instagram: https://www.instagram.com/i24news/
Jasenovac, Genocide, Croatia, World War 2, Nazi Germany, Concentration Camp In the shadow of World War II, a horrific chapter unfolded in the Balkans, at the Jasenovac concentration camp. Run not by the Nazis, but by the Ustasha regime of the Independent State of Croatia, Jasenovac stands as a stark reminder of the depths of human cruelty. This camp, less known but equally brutal, was the epitome of the Ustasha's ruthless campaign against Serbs, Jews, Roma, and political dissidents. Jasenovac was not just a camp; it was a complex of terror, where unspeakable atrocities occurred daily under the guise of ethnic cleansing. The methods employed here were barbaric beyond imagination, characterized by a brutality that even the Nazis found extreme. In this place, the value of human life was re...
History
Jasenovac: The Most HORRENDOUS Concentration Camp Of WW2 A little-known name with the darkest of history, Jasenovac stands as quite possibly the very worst concentration camp of WW2. Survivor accounts bear witness to some of the most horrendous acts of the entire war. Welcome to Bizarre History, today we uncover the horrors of Jasenovac – The most horrendous concentration camp of WW2 A regime destined for bloodshed The administration running the independent state of Croatia at the time, was notoriously brutal and violent. Ustase has been remembered in the history books as fascist, racist, and a hyper-nationalist government not beneath committing acts of terrorism. The Ustase was led by Ante Pavelic whose views on violence and the necessity for an independent Croatia were made clear in a ...
In this groundbreaking video, get ready to have your perspective shattered as we delve deep into the dark history of the Jasenovac Concentration Camp. Titled "Jasenovac Concentration Camp: Unveiling the Unfiltered Truth," this eye-opening documentary uncovers the shocking reality behind one of World War II's most horrifying atrocities. Prepare to be forever changed as we meticulously examine the harrowing accounts, chilling stories, and compelling evidence surrounding Jasenovac. Through rare footage, survivor interviews, and expert analysis, we aim to bring this hidden chapter of history into the light. Join us on a journey that transcends boundaries, leaving no stone unturned in our pursuit of truth. Discover the unimaginable acts of violence, the sheer magnitude of suffering, and the ...
History
Miroslav Filipović was born on 5 June 1915 in Jajce, today’s Bosnia-Herzegovina, then part of Austria-Hungary. From 1929 Jajce was part of the Kingdom of Yugoslavia. In 1938 Filipović joined the Franciscan Order at Petrićevac monastery, Banja Luka, and took "Tomislav" as his religious name. On the following year he was ordained a priest. The Second World War began on 1 September 1939 when Nazi Germany invaded Poland. When Germany’s ally Italy failed to conquer Greece in the late autumn and winter of 1940–1941, Germany became more concerned about securing its southeastern flank in the Balkans. Greece’s success in repulsing Italian forces allowed its ally, Great Britain, to establish a foothold on the European continent. To subdue Greece and move the British off the European mainland, Naz...
Join us on a breathtaking journey through Croatia, one of Europe's most stunning destinations. From the ancient walls of Dubrovnik to the pristine waters of Plitvice Lakes, we cover all you need to know about this Adriatic gem. In this video, we start with some fun facts about Croatia, setting the stage for a deep dive into the country's most captivating places. What's Inside: - Fun Facts About Croatia: Learn surprising details that make Croatia unique. - Top Places to Visit in Croatia: From the sun-soaked Hvar Island to the historic streets of Split and the serene beauty of Krka National Park, we explore the must-see spots. Whether you're planning your next vacation or just dreaming of crystal-clear seas and medieval towns, this video will give you a taste of what Croatia has to offer....
I recently returned from visiting Croatia and it quickly became one of my favorite European countries. Enjoy this travel guide featuring the most beautiful places in Croatia. From the medieval fortified city of Dubrovnik, to the wonders of the Dalmatian coast, Croatia will leave you in awe with its incredible destinations! Where is your favorite place in Croatia? My Travel Videos: Top 10 Greek Islands - https://youtu.be/AKGkbdILcjU Top 10 Places on French Riviera - https://youtu.be/6Lg6ZJpB-nI Top 10 Places on The Amalfi Coast - https://youtu.be/Mupom-sgjAU Top 10 Places in Bora Bora - https://youtu.be/MJD2NcvYm4U Top 100 Places in Europe - https://youtu.be/IQzfprW0Yl0 Top 25 Places in Switzerland - https://youtu.be/pfdb6u4HDoQ Top 25 Places in France - https://youtu.be/qertJXj_oBo...
These 18 tips to know before visiting Croatia are what I wish I knew before my trip to Croatia. Hopefully these travel tips will help you from making some of my mistakes when traveling through Croatia! Newsletter for weekly travel tips -- https://bit.ly/TheTuesdayTravelTip Discover Cars (rental car I used) -- https://bit.ly/DiscoverCars-CamdenDavid The eSIM I use to keep my phone connected when abroad -- https://airalo.pxf.io/CamdenDavid --You can get 15% off as a new user by using code: CAMDEN15 Where I get my travel gear -- https://bit.ly/NomaticCamdenDavid How I stay organized -- https://amzn.to/3OHQLEA My favorite universal adapter -- https://amzn.to/3N0YzAg DISCLAIMER: I only express my opinion based on my experience. Your experience may be different. Links above may include affil...
Check out all the places seen in this video: https://www.touropia.com/best-places-to-visit-in-croatia/ Located in the Balkans, Croatia has become one of Europa’s top tourist destination again since its War of Independence in the late 1990s. Like much of Europe, Croatia boasts its share of medieval cities and historic ruins, but what makes this country exceptional is its wealth of stunning natural attractions such as the Plitvice Lakes, the spectacular Adriatic coastlines and gorgeous islands. An overview of the best places to visit in Croatia.
#Countries #Shorts #Maps #Croatia #Balkans #Europe #FunFacts #Geography #geopolitics ---------------------------------------------------------------------------- This video is about the the things or facts you might not know about Croatia so Did you know that the Torpedo was invented in a Croatian city, also the Scientist Nikola Tesla was born in Croatia ---------------------------------------------------------------------------- This video is also inspired by real life lore channel links: Spaghetti Road:https://www.youtube.com/c/SpaghettiRoad KhAnubis:https://www.youtube.com/c/KhAnubis Real life lore:https://www.youtube.com/c/RealLifeLore Thetruesize:https://thetruesize.com ---------------------------------------------------------------------------- Croatia,Croatia fun facts,Croatia Ge...
We are absolutely awestruck by Croatia! 😍 To be honest, Croatia wasn't initially at the top of our bucket list, but after you experience what we're about to share in this vlog, it will undoubtedly earn a spot on your own bucket list! Get ready to be enchanted by the natural wonders and historical treasures that await - welcome to Dubrovnik, Croatia! 🇭🇷 📍 Locations featured in today's video: - Old Town - Stradun, Dubrovnik - Pepino's Gelato - Mama's Pot Tavern - Dubrovnik Walls - West Harbour - Fort Lovrijenac - Mount Srd --------------------------------------------- Here are some links that help support this channel! ❤️ Use our discount code JANANDANNKLOOK to save money on activities, transfers and experiences on Klook! (PH/ASIA BASED 🇵🇭): → https://www.klook.com/en-PH/ Use our ...
Escape to Cast Away Hvar, a beautiful island in Croatia with quiet, empty beaches just for you! 🏝️👙 Take a ferry from Split to Hvar (you can choose a passenger or car ferry) and drive to the peaceful side of the island. 🚗🌊 Spend your days soaking up the sun, relaxing on the beach, and enjoying the calm. 🌞💙 This is the perfect spot for anyone who wants to chill in privacy. Watch my journey and get inspired for your next getaway! Don’t forget to like, comment, and share if you dream of a quiet beach escape! 🌍✨ Useful Links: Stay at Cast Away Hvar: https://booking.tp.st/I7OfFEW7 Self-Drive Car Rental: https://rentalcars.tp.st/Dr2Si1mm If you haven’t watched Episode 1 & 2 yet, catch it here: Ep 1: https://youtu.be/WV-vOHIP6_k Ep 2: https://youtu.be/V-g8Uq9YQh0 If you love travel videos, ...
Aquacolors | Spheres | Poreč (Croatia) | 2024 Join our Discord community: https://discord.gg/xkxrNabC Camera: GoPro Hero 11 Black © Global Aquaparks ©TSS ©Nico Hettinger
Hello mga ka iLonggo Bisdak mga kabayan itong vlog na ito para sa mga gusto at malaman bago mag punta dito sa croatia para walang sisihan kung makapunta o makapag apply kayo dito. "ROAD TO 20K SUBSCRIBERS" Wag nyo po kalimutan mag subscribe sa aking youtube channel iLonggo Bisdak In Europe. ANY QUESTIONS Facebook Page: iLonggo Bisdak In Europe https://www.facebook.com/profile.php?... SA GUSTO MAGPAGAWA NG COVER,THUMBNAIL,VIDEO EDIT,VLOG & ect. PM/DM TO - MYKEL EDITS - https://www.facebook.com/profile.php?id=100069034692016 MARAMING SALAMAT PO MGA KABAYAN!! Enjoy for watching!!
ইউরোপের দেশ ক্রোয়েশিয়াতে সর্বনিম্ন বেতন | ক্রোয়েশিয়া দেশ কেমন | Croatia Job, Income & Salary | croatia work permit visa 2024 2025 | ক্রোয়েশিয়া | Croatia 🇭🇷🇧🇩 | Bangladeshi vlogger in Europe. #inteshar_ihram_vlogs #Croatia #CroatiaJobandIncome #CroatiaSalary #Jobsincroatia #AverageSalaryinCroatia #BasicsalaryinCroatia #Croatiasalarypermonth #croatiasalaryperhour #croatiaworkpermit #workincroatia #croatiavisa #croatiaworkpermitvisa #croatiaworkpermitagency #incomeincroatia #croatiaworkpermitupdate #croatiasalary2024 #basicsalaryincroatia #croatianewupdate #qatartocroatia #Sauditocroatia #croatialaboursalary #CroatiaJobsandSalary #maghfira_in_france 🔵 Welcome to Inteshar Ihram Vlogs. We live in France. France is a Schengen country. France is a country in Europe. My name is Inteshar an...
This is how to travel Croatia from Split to Brac to Dubrovnik. From our coastal roadtrip through Dalmatia to the castles of game of thrones, this Croatia travel guide shows you why you MUST go! Get your own runner backpack: https://brevite.co/LostLeBlancBrevite Get my FREE 1-Hour Content Creator Training HERE: https://lostcreatoracademy.com/FreeTraining Get my LCA Habits Workshop - https://lostcreatoracademy.com/subscribe/ Watch the Greece travel series: https://www.youtube.com/playlist?list=PLztt-vtzUoNy_UjV9riTl3LsyQVgoXneQ Instagram https://www.instagram.com/lostleblanc TikTok Lost LeBlanc All copyright free music used in this video comes from here: http://share.epidemicsound.com/freemusic (1 month free) & https://bit.ly/3r9DPe3 (2 months free) Where I get copyright free footage ...
Top jobs Website https://sezonski.hzz.hr/ https://www.moj-posao.net/ https://www.posao.hr/ https://www.similarweb.com/website/jobs.kaufland.com/
Are you traveling to Croatia this year? These are seven Croatian wine grapes you must taste when visiting! Make sure to check the VLOGs below for more in-depth content 📕 Cracking Croatian Wine on Amazon! https://amzn.to/3MvoNL5 🍷Cracking Croatian Wine (VLOG) Videos: https://youtube.com/playlist?list=PLFOBi7-hwwStrcyKObg2M_71k5gH1lO4C You can try Croatian wines in the USA w shipping to most states: https://www.croatianpremiumwine.com/wine/ Producers listed in the video: Kutjevo Cellars, Krauthaker, Enjingi, Sontacchi, Benvenuti, Coronica, Fakin, Clai, Kozlović, Ipša, Krajaničič, Kabola, Rizman, Korta Katarina, Stina, Bire, Zure, Radovanović, Cebalo, Skaramuča, Volarević, Kiridžija, Mrgudić, Miloš, Gracin, Birin, Vinas Mora, Prgin. Zlatan Otok, Bibich 🎉 Get your Coravin system: https:/...
Croatia might be known for its incredible rich history and breathtaking coastline, but there’s another contender to add to its repertoire, and that’s in the form of Croatian wines. With a number of wineries sprinkled around Croatia, the 3 main regions comprise of Istria, Slavonia, and Dalmatia. All three regions feature unique varieties of grapes grown, climate, picking times, and most importantly — taste! In this video we’ll be highlighting some of Dalmatia’s finest wineries deserving of a spot on your must-visit list. Stina, a multi award winning winery found on Bol on the island of Brač, offers a fantastic selection of local and national wines. Opened in 1900, this first wine collective produces an enormous amount of wine with produce from the island itself. With a red receiving a g...
In the thirteenth episode of "Croatian Wine in 60 Seconds", we step into Croatia's first wine appellation called Dingač. Established in 1961, the Dingač appellation is exclusive to the growth of Plavac Mali grapes. This area is constructed mainly from dolomite and limestone rock. The vineyards are found on varying gradients and exposures. Many vineyards are so steep that ropes and pulleys are used during harvest. Wineries featured in this episode: Skaramuča Winery and Badel 1862 Join the Exotic Wine Travel community on Patreon https://www.patreon.com/exoticwinetravel ▬▬▬ DISCOVER CROATIA AND CROATIAN WINE WITH US ✍ Resource page for Croatian wine: https://exoticwinetravel.com/cracking-croatian-wine-guide/ ✍ "Cracking Croatian Wine: A Visitor-Friendly Wine" book on Amazon: https://amz...
Exotic Wine Travel presents Croatian wines at the Astor Center in New York City. This is our 'Cracking Croatian Wine' masterclass condensed to 20 minutes. Discover rare wines and unique wine regions with us! Learn more about Croatian wines: https://exoticwinetravel.com/cracking-croatian-wine-guide/ Wines featured in this episode: Daruvar Graševina 2017 Vina Laguna Malvazija 2016 Bibich Debit 2016 Matoševič Grimalda White 2015 Grgić Pošip 2016 Miloš Rosé 2017 Korta Katarina Plavac Mali Reuben's Reserve 2008 Stina Tribidrag 2015 Shop or buy Croatian wines at http://share.exoticwinetravel.com/thewineandmore (EU-wide delivery) SUBSCRIBE FOR MORE WINE VIDEOS: https://www.youtube.com/c/exoticwinetravel?sub_confirmation=1 OUR ESSENTIAL EQUIPMENT (affiliate links help us continue to bring you...
Babić is a Croatian red wine grape with enormous potential. There are already some beautiful examples on the market. Learn more about the Croatian wine grape Babić in this video. Wines featured in this episode: Testament, Dalmatian Dog Babić 2018 Testament, Babić 2017 Markus, Babić 2017 Bibich, Babić 2016 ✍ Want to learn more about Croatian wine? Check out our book "Cracking Croatian Wine: A Visitor-Friendly Wine" on Amazon: https://amzn.to/37ysMiT 🍷 For those in the EU, check out these wines at The Wine and More. Use our code EWTWMVID for 10% off! https://www.thewineandmore.com/wines/babic/ 🍷 For US viewers: you can purchase selected Croatian wines from Babić at Croatian Premium Wine Imports (shipping to most states): https://shop.croatianpremiumwine.com #babic #croatia #croatianw...
In the second episode of "Croatian Wine in 60 Seconds", we put the spotlight on two autochthonous white wine grapes from Croatia. Croatia is home to at least 130 native grape varieties. About 40 of those are currently used in commercial wine production. Thanks to the grape diversity, coupled with a multitude of microclimates, Croatia is a treasure trove of vinous delights. In this episode, we introduce the grapes: Žlahtina (pronunciation: Zhlah-tee-nah) Žlahtina, nicknamed Vrbnička, is found on the island of Krk in the Kvarner region, with the highest-quality grapes believed to be coming from around the village of Vrbnik (hence the nickname Vrbnička). Žlahtina wines are crisp, low in alcohol, with floral and citrus flavors. It is a hearty grape with adequate acidity, making it a candidate...
In the final episode of "Croatian Wine in 60 Seconds", we take you to the spiritual home of Plavac Mali: Pelješac Peninsula in the Dalmatia wine region. Located about 30 kilometers north of Dubrovnik, Pelješac is a thin tract of land around 70 kilometers long and 6 kilometers wide. Along with Croatia's flagship red wine grape Plavac Mali, this is a sub-region that Croatian wine is arguably best known for. Join the Exotic Wine Travel community on Patreon https://www.patreon.com/exoticwinetravel Pelješac wineries featured in this episode: Miloš Winery and Korta Katarina Winery #shorts ▬▬▬ DISCOVER CROATIA AND CROATIAN WINE WITH US ✍ Resource page for Croatian wine: https://exoticwinetravel.com/cracking-croatian-wine-guide/ ✍ "Cracking Croatian Wine: A Visitor-Friendly Wine" book on Am...
Exotic Wine Travel introduces two wine grapes grown on the island of Hvar, South Dalmatia, Croatia. If you know a little bit about Croatian wine, you would probably have heard of or read about Croatia's flagship red wine grape, Plavac Mali. Plavac Mali is also grown on the Hvar island. But in this video, we are introducing something more unique: Prč. Prč is found almost exclusively on the island of Hvar, mostly in Sucuraj. There are less than 10 hectares of Prč being cultivated today, and it's almost never vinified as a varietal wine. As such, we are thrilled to discover Winery Vujnović's Prč. Discover Croatian wines and Croatian wine regions with us! Croatian wines featured in this episode: - Vujnović Prč 2015 (from Sucuraj, south end of the island of Hvar, Croatia) - PZ Svirče Ivan Dolac...
Exotic Wine Travel with Andrew Jefford, columnist of Decanter and The World of Fine Wine. We recently spent a few days with Andrew Jefford traveling and tasting through Croatia. In this video, Andrew discusses the quality of Croatian wines, his favorite Croatian wine grape varieties, and what the wine countries in Eastern Europe need to do to move forward. Find Andrew Jefford at: http://www.andrewjefford.com Andrew Jefford's Wine Course: https://amzn.to/2Ja0Ert Join the Exotic Wine Travel community on Patreon https://www.patreon.com/exoticwinetravel DISCOVER CROATIA AND CROATIAN WINE WITH US ✍ "Cracking Croatian Wine: A Visitor-Friendly Wine" book on Amazon: https://amzn.to/37ysMiT ✍ Resource page for Croatian wine: https://exoticwinetravel.com/cracking-croatian-wine-guide/ 🙌 GOT CR...
Gary Vaynerchuk Tastes 2 Whites and a Red from Croatia.
Exotic Wine Travel discussing Croatian wine, namely Istrian wine. We recently attended the 26th edition of Vinistra to catch up on the newest vintages. The quality of Istrian wines continues to rise and there is a lot to the region. Here are a few tips and things you need to know about Istrian wine. In this video, we discuss the different styles of Malvazija Istarska, the red grape Teran, Cabernet Franc, and Istrian red blends. Discover rare wines and unique wine regions with us! Learn more about Croatian wines: https://exoticwinetravel.com/cracking-croatian-wine-guide/ SUBSCRIBE FOR MORE WINE VIDEOS: https://www.youtube.com/c/exoticwinetravel?sub_confirmation=1 OUR ESSENTIAL EQUIPMENT (affiliate links help us continue to bring you great content): Canon G7X Mark II: https://amzn.to/2hW...
***Our guidebook to Croatian wine is out now! Check it: https://exoticwinetravel.com/cracking-croatian-wine-guide*** Exotic Wine Travel on the Vis island tasting Croatian wine from Plavac Mali. Wine featured in this episode: Senjanović Plavac Tihe Braće 2013 Shop or buy Croatian wines at http://share.exoticwinetravel.com/thewineandmore (EU-wide delivery) 10 Plavac Mali Wines To Try (Besides Dingač And Postup) http://exoticwinetravel.com/best-plavac-mali-dingac-postup SUBSCRIBE FOR MORE WINE VIDEOS: https://www.youtube.com/c/exoticwinetravel?sub_confirmation=1 VISIT http://www.exoticwinetravel.com FOR MORE WINE FUN, NEWS, AND ARTICLES. LET'S CONNECT! Facebook: http://www.facebook.com/exowinetravel Instagram: http://www.instagram.com/exoticwinetravel Twitter: http://www.twitter.com/ex...
It's face-off time! Join us for a wine comparison tasting. In this episode, we taste two Mediterranean red wines with similar price points, i.e. under $25 USD. The Komarna 7 is a Croatian red wine made from Plavac Mali (which is available for home delivery in the USA). The Château Mont Thabor Côtes du Rhône is a French red wine, made from a blend of Cinsault, Mourvèdre, and Syrah--from the south of Rhône. Which wine will come out on top? Wines featured in this episode: 1. Château Mont Thabor, Côtes du Rhône 2018 2. Komarna 7, Plavac Mali 2016 (Available in the US via online shop that delivers to most US states at Croatian Premium Wine: https://www.croatianpremiumwine.com/shop-online) 🙌 Join the Exotic Wine Travel community on Patreon: https://www.patreon.com/exoticwinetravel 📍 Villa Lav...
We love indigenous wine grapes. When it comes to Croatian wine, there are close to 140 to choose from. In this video, we talk about the Croatian wine grape Debit, which can be found in North and Central Dalmatia. Do you have a favorite indigenous white wine grape? Wines/Wineries featured in this episode: Ante Sladić, Oya Noya Debit 2017 Ante Sladić, Debit 2019 Baraka, Debit Riserva 2017 Baraka, Debit 2018 Bibich, Bas de Bas Bijelo #wine #croatianwine #dalmatia ▬▬▬ ✌SUBSCRIBE FOR MORE WINE VIDEOS https://www.youtube.com/c/exoticwinetravel?sub_confirmation=1 ▬▬▬ 📸 OUR ESSENTIAL EQUIPMENT Canon G7X Mark II: http://amzn.to/2hWSB3S Zoom H4N: http://amzn.to/2iXUkqv Manfrotto Mini-Tripod: http://amzn.to/2iVO7LO Sennheiser EW112 P G3 Wireless Mic Set: http://amzn.to/2BruR0r 🤗 LET'S CONNECT ...
Jasenovac concentration camp (Croatian: Logor Jasenovac and Cyrillic: Логор Јасеновац, pronounced [lôːgor jasěnoʋat͡s]; Yiddish: יאסענאוואץ, sometimes spelled "Yasenovatz") was an extermination camp established in Slavonia by the authorities of the Independent State of Croatia (NDH) during World War II. The camp was established by the governing Ustaše regime and not operated by Nazi Germany, and was one of the largest concentration camps in Europe.
From August 1941 it existed in marshland at the confluence of the Sava and Una rivers near the village of Jasenovac. It was dismantled in April 1945. It was "notorious for its barbaric practices and the large number of victims". In Jasenovac, the majority of victims were ethnic Serbs, whom the Ustaše wanted to remove from the NDH, along with the Jews, anti-fascist or dissident Croatians, and Roma. Jasenovac was a complex of five subcamps spread over 210 km2 (81 sq mi) on both banks of the Sava and Una rivers. The largest camp was the "Brickworks" camp at Jasenovac, about 100 km (62 mi) southeast of Zagreb. The overall complex included the Stara Gradiška sub-camp, the killing grounds across the Sava river at Donja Gradina, five work farms, and the Uštica Roma camp.
*(J-Von)*
Now if ya all in wit me,
*(C-Loc)*
Come an get me wit some hin,
*(J-Von)*
An a fifty, an it stick it in,
*(C-Loc)*
Let this begin,
*(J-Von)*
Like 10 to the 9,
*(C-Loc)*
To the 5, 4, 3,
*(J-Von)*
They ain't knowin what this camp life means to meee!
Verse 1 *(Maxminelli)*
I'm still a hustla,
an we know this,
then you need to quote this on the front page,
true that,
never two,
on paper view,
wit the blunt blazed,
last time you heard us rhyme,
we came out tacklin po-po's,
now we surely stackin chips,
but we ain't packagin no doe,
see the ho-bos an fiends,
they can't get down wit the team,
oh yeah we bout cream,
but the colors, mostly green,
so brace yourself,
I'm a take yo wealth,
an leave you traumatized,
bonified hustla,
from out the backwoods of the country side.
Verse 2 *(J-Von)*
So southside hustlaz throw yo hands in the air,
eastside, westside, northside dont care,
over there, over here,
(what?)
same thing everywhere you go,
it's real,
once they waited fo the,
bustaz that hear me know we,
even them guns,
an they ready to throw it,
I hope I see a nice night for bein this ghetto poet,
ya know it,
so it's like me,
I'm a play the game rough,
an like to tear sumpthin up,
sick shit nigga what?!
Chorus *(J-Von)*
Man fuck y'all niggaz,
man fuck y'all bitches,
we got the money an switches,
but ya can't get wit us,
cuz we the Sickess.
Man fuck y'all niggaz,
man fuck y'all bitches,
always runnin to get us,
but ya can't get wit us,
cuz we the Sickess.
Verse 3 *(C-Loc)*
Nigga I can say,
fuck 'em,
cuz they bustaz,
causin ruckus,
cuz they know they can't touch us,
got 'em hollerin "How ya do that there!",
when I bust 'em, can't trust 'em
struggle fuck that,
hustle, slang crack,
the rhyme saw,
niggaz bust an get back,
I bust back,
no hidin, duckin hataz,
hollerin "Fuck 'em niggaz",
ain't nuttin,
now he rich an think a nigga can't touch him,
so now they bustin,
an me an my cuz OG,
an now these fools know they know me,
last time I spanked that ass they called the police,
ya gotta,
know when to hold on, (say what?)
know when to fold on, (uh-huh)
you better walk away, (boo-yow!)
before I make ya run,
son,
it's unheard,
the way we went from slangin birds,
an droppin bodies on the curb,
to sellin words,
platinum,
that's how it happened,
it's wicked when I kick it,
wicked,
if it ain't broke don't fix it,
clown,
cuz we the Sickess MUTHA FUCKA!
Chorus
Verse 4 *(Young Bleed)*
Watch me spit the Sickess,
shit,
you ever heard,
an make a million niggaz witness,
this,
fresh off the curb,
hollerin at ya in ya ears like this,
fuck what ya heard,
face to face wit confrontation my niggaz,
ballz an my word,
now if ya ready let me know this real,
I'm hoppin out the vehil,
caddy fools bustin ta kill,
some is steady buggin fo nuthin,
lovin my life, keepin my head tight,
bailin the corner on two wheels,
mashin through red lights.
Verse 5 *(C-Loc)*
Where yo hood at, (what?)
throw it up,
the club,
yeah we tore it up,
soon as this clown get to buckin,
we gonna rush him,
must stop playin wit me,
if ya in wit me,
you'd a known,
I get spaced out,
they mace the place out,
then I'm gone,
in the Expo,
til the next show,
you never know,
what we got in stoe,
til the cap,
hit the doe,
hollerin if ya got the paper straight then the show must go on,
but when niggaz get to breakin shit,
it's time to go home.
(Ya heard me?)