- published: 19 Feb 2024
- views: 233259
'+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; })); }); -->
Hungarians in Slovakia are the largest ethnic minority of the country. According to the 2011 Slovak census, 458,467 people (or 8.5% of the population) declared themselves Hungarians, while 508,714 (9.4% of the population) stated that Hungarian was their mother tongue.
Hungarians in Slovakia are concentrated mostly in the southern part of the country, near the border with Hungary. Averaged on district level, they form the majority in two districts: Komárno and Dunajská Streda. According to the survey of the agency Polis from September 2015, 85.2% of the respondents evaluate mutual relationships between the majority population and the Hungarian minority as good, only 7.6% as bad and 7.2% was unable to answer.
After the defeat of the Central Powers in the Western Front in 1918, the Treaty of Trianon was signed between the winning Entente powers and Hungary in 1920, at the Paris Peace Conference. The treaty greatly reduced the Kingdom of Hungary's borders, including ceding all of Upper Hungary, where Slovaks made up the dominant ethnicity, to Czechoslovakia. In consideration of the strategic and economic interests of their new ally Czechoslovakia, however, the victorious allies set the Czechoslovak-Hungarian border further south than the Slovak-Hungarian language border. Consequently, the newly created state contained areas that were overwhelmingly ethnic Hungarian.
Coordinates: 48°40′N 19°30′E / 48.667°N 19.500°E / 48.667; 19.500
Slovakia (i/sloʊˈvækiə, slə-, -ˈvɑː-/;Slovak: Slovensko [ˈsloʋensko]), officially the Slovak Republic (Slovak: Slovenská republika, listen ), is a country in Central Europe. It is bordered by the Czech Republic and Austria to the west, Poland to the north, Ukraine to the east and Hungary to the south. Slovakia's territory spans about 49,000 square kilometres (19,000 sq mi) and is mostly mountainous. The population is over 5 million and comprises mostly ethnic Slovaks. The capital and largest city is Bratislava. The official language is Slovak, a member of the Slavic language family.
The Slavs arrived in the territory of present-day Slovakia in the 5th and 6th centuries. In the 7th century, they played a significant role in the creation of Samo's Empire and in the 9th century established the Principality of Nitra. In the 10th century, the territory was integrated into the Kingdom of Hungary, which itself became part of the Habsburg Empire and the Austro-Hungarian Empire. After World War I and the dissolution of the Austro-Hungarian Empire, the Slovaks and Czechs established Czechoslovakia. A separate Slovak Republic (1939–1945) existed in World War II as a client state of Nazi Germany. In 1945, Czechoslovakia was reestablished under communist rule as a Soviet satellite. Slovakia became an independent state on 1 January 1993 after the peaceful dissolution of Czechoslovakia.
Slovak wine is produced in the southern part of Slovakia, which is divided into 6 wine-producing areas. Although Slovak wines except Tokaj are not well known internationally, they are popular domestically and in neighbouring countries.
During the time period when the Jagiellonian dynasty ruled the area as part of the Kingdom of Hungary and shortly thereafter, Hungary and Slovakia had similar levels of wine quality and were integrated in terms of production. Moreover, they were also connected to vineyards in France as part of an economy. According to David Gass, owner of Fleurs de Gas Vineyards and one of thousands of direct descendants of Janos Wass, King Louis II's illegitimate son – after Budapest fell and King Louis II died at the Battle of Mohács, Janos (In Hungarian) was granted vineyards to produce wine in Bratislava. Some of the Wass family subsequently migrated to France, joining the wine country economy there.
In European elections, Slovakia is a constituency of the European Parliament, currently represented by fourteen MEPs. It covers the member state of Slovakia.
As of October 2007
The 2004 European election was the sixth election to the European Parliament. However, as Slovakia had only joined the European Union earlier that month, it was the first European election held in that state. The election took place on June 13.
The 2009 European election was the seventh election to the European Parliament. The number of seats was reduced to thirteen.
SLOVAKIA IN 2024: The Craziest Country in Europe.. | 48 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 and welcome back to another exciting video on "Europe In Detail"! Today, we're setting off on a fascinating voyage to Slovakia, a treasure nestled in the heart of Europe. Get ready as we unveil forty-eight unbelievable facts about Slovakia, where history, innovation, and nature dance together in an epic adventure! #slovakia #bratislava #hightatras 📺 Watch the entire video for more information! _________________________________________________________________ About Europe In Detail 🎥 Videos about detailed European travel, unexplored European gems, and rich Euro...
Slovakia is one of Europe's hidden gems. Enjoy this travel guide across Slovakia's spectacular places. From the jagged High Tatras, to the mysterious Orava Castle, Slovakia is waiting to be explored. Where is your favorite place in Slovakia? Special thanks to @HikeTheWorld for helping out with footage. He has some of the most incredible films of Slovakia - https://youtu.be/Uz_-NiRhbmQ My relaxation channel - https://www.youtube.com/scenicrelaxationfilms My Travel Videos: Top 10 Places in Czechia - https://youtu.be/ErbOZlSukzg Top 10 Places In Slovenia - https://youtu.be/lqDMR32jb98 Top 30 Places In The Alps - https://youtu.be/7SDF0ZzDHzk Top 100 Places in Italy - https://youtu.be/02jQiIkEGh8 Top 10 Places in Bavaria - https://youtu.be/O8fXfCTRjfA Top 10 Places in Swiss Alps - ...
#Slovakia #Bratislava #Europe #czechoslovakia #Shorts #Maps #Countries #Fun Facts ---------------------------------------------------------------------------- This video is about the Fun facts and unknown things about Slovakia So did you know Slovakia is home to the the largest horse sculpture in Europe, and Slovakia is the only place in the world where you can see Trains roaming around in a Stadium?? Yeah Slovakia... ---------------------------------------------------------------------------- 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 -------------------------------------------------...
Slovakia - a small country in Eastern, I mean Central Europe that hides the most beautiful women, mountains and some scary stuff. MERCH: https://www.gotshirtshop.com/en/pppeter SUPPORT ME ON PATREON: https://www.patreon.com/PPPeter FACEBOOK https://www.facebook.com/PPPeterYouTube/ INSTAGRAM https://www.instagram.com/patopopular/ TWITTER https://twitter.com/peterblathering
Welcome to our mouthwatering culinary journey through Slovakia, where we delve into the delightful world of Halušky. In this video, we uncover the secrets behind the traditional Slovakian dish, Halušky, a heavenly combination of tender potato dumplings smothered in a rich and tangy Bryndza cheese sauce. Join us as we explore the origins, preparation techniques, and variations of this beloved comfort food, accompanied by expert tips and tricks to achieve the perfect Halušky every time. Prepare to tantalize your taste buds and elevate your cooking skills with this irresistible Slovakian Halušky recipe. Don't miss out on this unforgettable gastronomic experience! #slovakia #recipes
#slovakia #kosice #bratislava #východnéslovesko #andrewtate #motivation #tatespeech #rich
Follow Me on Instagram!! https://www.instagram.com/amazingfctsofficial/ Follow Me On Facebook!! https://www.facebook.com/profile.php?id=100087199999770 Follow Me On TikTok!! https://www.tiktok.com/@amazingfctsofficial This Video is all about the 6 Most Interesting Facts about Slovakia. Hope You Guys Enjoy The Video Give A Like If You Enjoy The Video And Also Subscribe To My Channel To Get More Informative/Tech Videos Like This. Take Care #shorts #slovakia #europe #facts 6 Most Interesting Facts about Slovakia | Amazing Facts #youtubeshorts #ytshorts #centraleurope #amazingfacts #interestingfacts #reels
Maalikooste Slovakian ja Suomen välisestä salibandyn MM-kisojen alkusarjan toisesta ottelusta 8.12.2024. Ottelu päättyi Suomen selkeään 1-7 voittoon.
Olivia and Nathan here! We took the 2.5 hour train ride from Budapest to Bratislava. To be honest, we almost skipped Slovakia completely, but we decided to check out for 24 hours. A lot of fellow travelers staying in Vienna or Budapest asked us, is it worth visiting? JOIN OUR PATREON: https://www.patreon.com/onworldtravel ____________ 👍🏽 Subscribe so you don't miss the adventure! https://www.youtube.com/onworldtravel?sub_confirmation=1 [ LAST WEEK’S EPISODE ] Why Poland is CRUSHING IT! - https://youtu.be/GecyNCU5pbc?si=SIVKw2tib85nFY5Y [ OUR ENTIRE RV SERIES ] // Episode's in order! SEASON 1 https://bit.ly/3lgS8Lp SEASON 2 http://bitly.ws/rVCU Buy us a coffee ☕️🤘🏽 https://rb.gy/jxrc0k Our Favorite Travel Credit Card! https://www.referyourchasecard.com/6j/YDUCMCAYGV _____________...
Exotic Wine Travel is tasting Slovak wine from Slovak Tokaj. We recently spent a few days in Slovak Tokaj. Check out our thoughts about the region in this latest video. Discover rare wines and unique wine regions with us! Wineries featured in this episode: Tokaj Macik Tokaj & Co. Vdovjak Vinarstvo u Koña Château Vescey Château Grand Bari J&J Ostrožovič SUBSCRIBE FOR MORE WINE VIDEOS: https://www.youtube.com/c/exoticwinetravel?sub_confirmation=1 OUR ESSENTIAL EQUIPMENT (affiliate links) : Canon G7X Mark II: https://amzn.to/2hWSB3S Zoom H4N: https://amzn.to/2iXUkqv Manfrotto Mini-Tripod: https://amzn.to/2iVO7LO Sennheiser EW112 P G3 Wireless Mic Set: https://amzn.to/2BruR0r LET'S CONNECT! Facebook: https://www.facebook.com/exowinetravel Instagram: https://www.instagram.com/exoticwinetr....
Exotic Wine Travel talking about Slovak wine from the Nitra region. Charine gives here thoughts on the minimal intervention producer, Vinarstvo Slobodne. Discover rare wines and unique wine regions with us! Wine featured in this episode: Vinarstvo Slobodne, Partisan Cru 2012 SUBSCRIBE FOR MORE WINE VIDEOS: https://www.youtube.com/c/exoticwinetravel?sub_confirmation=1 OUR ESSENTIAL EQUIPMENT (affiliate links) : Canon G7X Mark II: https://amzn.to/2hWSB3S Zoom H4N: https://amzn.to/2iXUkqv Manfrotto Mini-Tripod: https://amzn.to/2iVO7LO Sennheiser EW112 P G3 Wireless Mic Set: https://amzn.to/2BruR0r LET'S CONNECT! Facebook: https://www.facebook.com/exowinetravel Instagram: https://www.instagram.com/exoticwinetr... Twitter: https://www.twitter.com/exowinetravel Vivino: https://www.vivino.com...
Exotic Wine Travel at Wine Not!? wine bar in Bratislava, Slovakia. This bar has a gigantic selection of International and Slovak wines. Discover rare wines and unique wine regions with us! Learn more about Slovak wines: https://exoticwinetravel.com/slovak-wine/ Wines featured in this episode: Pivnica Čajkov Pivnica Brhlovce Organic Exclusive Winery Domin & Kušicky Pomfy Berta Biondi Santi Produttori del Barbaresco Sassicaia Montes Luce della Vite Domaine des Beamont SUBSCRIBE FOR MORE WINE VIDEOS: https://www.youtube.com/c/exoticwinetravel?sub_confirmation=1 * Wine Not!? invited us to their bar and provided us with one-night accommodation. OUR ESSENTIAL EQUIPMENT (affiliate links help us continue to bring you great content): Canon G7X Mark II: https://amzn.to/2hWSB3S Zoom H4N: http...
We spent 12 days in Slovakia, visiting wineries and tasting over 250 Slovak wines. It was a hectic trip, but we came away with fond memories. Discover the Slovak wine regions and wines of Slovakia with us! 🇸🇰 Slovak wineries in the video: Tokaj Macik Tokaj & Co. Vdovjak Vinarstvo u Koña Frtus Marvlo Tindo Château Topalčianky PD Mojmírovce Château Rúbañ Strekov 1075 Kasynik Bott Frigyes Château Belá HR Winery Juraj Zapražny Karpatská Perla Matyšák ▬▬▬ ✌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 Facebook: ...
Exotic Wine Travel is tasting Slovak wine. We recently spent two weeks traveling through Slovakia discovering Slovak wine. There are many different types of wines being made in the country, from natural to classical in style. In this episode, we talk about Slovak wines that most people will be familiar with. Discover rare wines and unique wine regions with us! Wineries featured in this episode: Châteay Topol'čianky Mojmirovce Žitovske Vinice Frtus Karpatská Perla Juraj Zapražny Matyšak Château Belá SUBSCRIBE FOR MORE WINE VIDEOS: https://www.youtube.com/c/exoticwinetravel?sub_confirmation=1 OUR ESSENTIAL EQUIPMENT (affiliate links) : Canon G7X Mark II: https://amzn.to/2hWSB3S Zoom H4N: https://amzn.to/2iXUkqv Manfrotto Mini-Tripod: https://amzn.to/2iVO7LO Sennheiser EW112 P G3 Wireless...
Exotic Wine Travel tastes Slovak wine from the Tokaj wine region, in Slovakia. Hungarian Tokaj is more well-known than Slovak Tokaj. However, a small sliver of this wine region lies within Slovakia. We spent three days in the area and uncovered a few gems. Discover Slovakia and Slovak wine regions with us! Slovak wines featured in this video Tokaj Macik, Grand Furmint 2015 Tokaj Macik, Vyber 5 Putñovy 2006 Tokaj & Co., Vyber 6 Putñovy 2006 Tokaj & Co., Vyber 5 Putñovy 2005 Vdovjak, Furmint Amfora 2015 Vinarstvo u Koña, Furmint z Amfory 2015 #winesofslovakia #slovakwine #slovakia ▬▬▬ ✌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 Manfr...
Exotic Wine Travel talking about Slovak wine, specifically sweet wines. We recently spent 12 days tasting through Slovakia and were impressed with many of the wines, especially sweet wines. Discover rare wines and unique wine regions with us! Wines featured in this episode: Château Belá, Alibernet Ladové víno 2012 Karpatská Perla, Delímúre Aurelius 2013 Château Topol'čianky Ladové víno Rizling Vlašsky 2016 SUBSCRIBE FOR MORE WINE VIDEOS: https://www.youtube.com/c/exoticwinetravel?sub_confirmation=1 OUR ESSENTIAL EQUIPMENT (affiliate links) : Canon G7X Mark II: https://amzn.to/2hWSB3S Zoom H4N: https://amzn.to/2iXUkqv Manfrotto Mini-Tripod: https://amzn.to/2iVO7LO Sennheiser EW112 P G3 Wireless Mic Set: https://amzn.to/2BruR0r LET'S CONNECT! Facebook: https://www.facebook.com/exowinetra...
Farming 10 hectares of vines in the Little Carpathian mountains of the Bratislavia region of Slovakia, the brothers of Hubinsky inherited vines from their parents in 2004 and made their first vintage in 2008. The pair, David and younger brother Peter have been steadily moving more towards the natural wine movement, using less sulphur, if any and working in a more holistic approach in line with the lunar cycle. We find their wines to be extremely exciting, especially for the attractive prices. Fans of Riesling should not miss their Rizling Rynsky Hausberg, whilst wine nerds will be impressed with their Concrete Pyramid made with Grüner Veltliner. We also think their Devin is a SUPER INTERESTING expression, well worth trying and quite unusual.
Exotic Wine Travel is tasting Slovak wine. In particular, minimal intervention/natural wines. In this episode, we discuss natural wines from Slovakia. Led by a group of producers around Strekov, the natural wine movement is strong in Slovakia. Discover rare wines and unique wine regions with us! Wineries featured in this episode: Strekov 1075 Kasynik Mátyás Bott Frigyes MarvloTindo SUBSCRIBE FOR MORE WINE VIDEOS: https://www.youtube.com/c/exoticwinetravel?sub_confirmation=1 OUR ESSENTIAL EQUIPMENT (affiliate links) : Canon G7X Mark II: https://amzn.to/2hWSB3S Zoom H4N: https://amzn.to/2iXUkqv Manfrotto Mini-Tripod: https://amzn.to/2iVO7LO Sennheiser EW112 P G3 Wireless Mic Set: https://amzn.to/2BruR0r LET'S CONNECT! Facebook: https://www.facebook.com/exowinetravel Instagram: https://ww...
Exotic Wine Travel tasting natural wines from Slovak producers Braño Bahna and Zlatý Roh. These two producers are in the Malokarpatská (Small Carpathian) wine region. Discover rare wines and unique wine regions with us! Learn more about Slovak wines: https://exoticwinetravel.com/slovak-wine/ Wines featured in this episode: Braño Bahno - https://www.homewinery.sk/ Vinocentrum - https://www.facebook.com/vinocentrum/ Zlatý Roh 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/2hWSB3S Zoom H4N: https://amzn.to/2iXUkqv Manfrotto Mini-Tripod: https://amzn.to/2iVO7LO Sennheiser EW112 P G3 Wireless Mic Set: https://amzn.to/2BruR0...
Exotic Wine Travel in Slovak Tokaj. When it comes to Slovak wines, there is a gem of a region in the southeastern part of the country. We've visited the area twice in the last year and we keep walking away impressed. Discover rare wines and unique wine regions with us! Learn more about Slovak wines: https://exoticwinetravel.com/slovak-wine/ Wineries featured in this episode: Vinarstvo u Koña Vdovjak Martin Danko Štefan Hornik Zlatý Strapec Tokaj Macik Ostrožović Tokaj & Co. 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/2hWSB3S Zoom H4N: https://amzn.to/2iXUkqv Manfrotto Mini-Tripod: https://amzn.to/2iVO7LO Sennheiser...
Exotic Wine Travel is tasting Hungarian wine & Slovak wine in Košice at the second annual Furmint Forum. We were invited to this event and tasted a number of interesting Slovak and Hungarian wines made from Furmint. Discover rare wines and unique wine regions with us! Wines featured in this episode: Kardos Winery Erzsébet Pincé Király dülö 2015 Tornai, Apatsági Furmint 2009 Majaros, Agyag Tokaji Furmint 2013 Garage Wines, Rány dülö Furmint 2014 Lenkey, Uragya Furmint 2006 Disznókö, Tokaji Late Harvest 2016 Vdovjak, Furmint Amfora 2015 Vinarstvo u Koña, 3/3 2015 Tokaj Macik Tokaj & Co. J&J Ostrožovič, Saturnia Furmint 2015 Château Grand Bari SUBSCRIBE FOR MORE WINE VIDEOS: https://www.youtube.com/c/exoticwinetravel?sub_confirmation=1 OUR ESSENTIAL EQUIPMENT (affiliate links) : Canon G7X...
Exotic Wine Travel tasting Slovak wines from tiny producers. Some of the wineries in this episode producer a few thousand bottles of wine per year. Discover rare wines and unique wine regions with us! Learn more about Slovak wines: https://exoticwinetravel.com/slovak-wine/ Wines featured in this episode: Korbas - http://www.vinarstvokorbas.sk/ Lukáš Krasñanský Rusnak Grimava 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/2hWSB3S Zoom H4N: https://amzn.to/2iXUkqv Manfrotto Mini-Tripod: https://amzn.to/2iVO7LO Sennheiser EW112 P G3 Wireless Mic Set: https://amzn.to/2BruR0r LET'S CONNECT! Facebook: https://www.facebook....
Exotic Wine Travel tasting natural wine from Slovak producer Živé Víno. This is a fairly new producer but the wines are beautiful. Discover rare wines and unique wine regions with us! Learn more about Slovak wines: https://exoticwinetravel.com/slovak-wine/ Wines featured in this episode: Živé Víno - https://zivevino.sk/ 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/2hWSB3S Zoom H4N: https://amzn.to/2iXUkqv Manfrotto Mini-Tripod: https://amzn.to/2iVO7LO Sennheiser EW112 P G3 Wireless Mic Set: https://amzn.to/2BruR0r LET'S CONNECT! Facebook: https://www.facebook.com/exowinetravel Instagram: https://www.instagram.co...
Hungarians in Slovakia are the largest ethnic minority of the country. According to the 2011 Slovak census, 458,467 people (or 8.5% of the population) declared themselves Hungarians, while 508,714 (9.4% of the population) stated that Hungarian was their mother tongue.
Hungarians in Slovakia are concentrated mostly in the southern part of the country, near the border with Hungary. Averaged on district level, they form the majority in two districts: Komárno and Dunajská Streda. According to the survey of the agency Polis from September 2015, 85.2% of the respondents evaluate mutual relationships between the majority population and the Hungarian minority as good, only 7.6% as bad and 7.2% was unable to answer.
After the defeat of the Central Powers in the Western Front in 1918, the Treaty of Trianon was signed between the winning Entente powers and Hungary in 1920, at the Paris Peace Conference. The treaty greatly reduced the Kingdom of Hungary's borders, including ceding all of Upper Hungary, where Slovaks made up the dominant ethnicity, to Czechoslovakia. In consideration of the strategic and economic interests of their new ally Czechoslovakia, however, the victorious allies set the Czechoslovak-Hungarian border further south than the Slovak-Hungarian language border. Consequently, the newly created state contained areas that were overwhelmingly ethnic Hungarian.