'+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; })); }); -->

' }else{ weather_info += '
'+tempC+' °C
' } weather_info += '
  • Pressure: '+weather_data.main.pressure+' hPa
  • ' if (weather_data.main.humidity) { weather_info += '
  • Humidity: '+weather_data.main.humidity+' %
  • '; } if (clouds) { weather_info += '
  • Clounds: '+clouds.all+'%
  • ' } if (weather) { weather_info += '
  • '+weather.description+'
  • ' } weather_info += '
' } } global_geo_obj.html(weather_info); var global_geo = jQuery('#forecast'); get_forecast_details(city, 4, global_geo, country); }) }); }); function forecast_status(msg) { jQuery('#forecast-header').html(msg); } function get_forecast_details(city, days_count, global_geo, country) { global_geo.html('Loading forecast ...'); jQuery.ajax({ data: { city: city, report: 'daily' }, dataType: 'jsonp', url: 'https://upge.wn.com/api/upge/cheetah-photo-search/weather_forecast_4days', success: function(data) { if(!data) { text = ('weater data temporarily not available'); } // loop through the list of weather info weather_info = ''; var weather_day_loop = 0; jQuery.each(data.list, function(idx, value) { if (idx < 1) { return; } if (weather_day_loop >= days_count) { return false; } weather = value.weather.shift() clouds = value.clouds d = new Date(value.dt*1000) t = d.getMonth()+1 + '-' + d.getDate() + '-' + d.getFullYear() moment.lang('en', { calendar : { lastDay : '[Yesterday]', sameDay : '[Today]', nextDay : '[Tomorrow]', lastWeek : '[last] dddd', nextWeek : 'dddd', sameElse : 'L' } }); mobj = moment(value.dt*1000) // skip today if (t == today) { return; } tempC = parseInt(parseFloat(value.temp.day)-273.15) tempF = parseInt(tempC*1.8+32) today = t; weather_day_loop += 1; weather_info += '
'+mobj.calendar()+'
'; weather_info += '
' weather_info += '
' if (country == 'United States'){ weather_info += '
'+tempF+' °F
' }else{ weather_info += '
'+tempC+' °C
' } weather_info += '
  • '+value.pressure+' hPa
  • ' if (value.humidity) { weather_info += '
  • Humidity: '+value.humidity+' %
  • '; } if (clouds) { weather_info += '
  • Clouds: '+clouds+'%
  • ' } if (weather) { weather_info += '
  • ' +weather.description+'
  • ' } weather_info += '
' }); global_geo.html(weather_info); } }); } //-->
  • Is TALLINN, ESTONIA the most futuristic city in Europe?

    Olivia and Nathan saying wattup from the Baltics! And Tallinn, Estonia surprised us in more ways than one, and we ain't talking about their street robot situation! 🤣 Is E-stonia making waves in the global tech space and en route to becoming another Silicon Valley of Europe? Let's deliberate over an open faced sprat sandwich... Our mattress! ❤️ 😴 Check out https://www.brooklynbedding.com/onworldtravel to get 25% off your mattress with code: ONWORLDTRAVEL 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 ] Finland is SUPER WEIRD - https://youtu.be/ESr2tYsKuZY?si=FaNQZpHXa6-FjX4M [ OUR ENTIRE RV SERIES ] // Episode's in order! SEASON 1 http...

    published: 10 Sep 2023
  • Tallinn Travel Guide - Complete Tour - City Guide to Estonia's Capital

    Everything you need to know about going to Tallinn, how to get to & from Tallinn airport, what attractions to see, what to do, where to avoid and this is the only video you’ll need to plan your trip to Estonia’s Capital City. From medieval marvels to modern delights, join us as we uncover the best attractions, dining spots, and hidden gems that make Tallinn a must-visit destination in the Baltics. Discover the rich history, charming cobblestone streets, and vibrant culture of Estonia's capital city. I’ll show you around the Viru Gates, Toompea Castle, the Alexander Nevsky Cathedral, St Olaf’s Church, the Old Town and Town Hall, Fat Margaret, the Estonian Maritime Museum, the KGB Museum, the medieval walls, Hellmann’s Tower, Kiek in de Kok, St Nicholas Church (Niguiliste) and more. I’ll ...

    published: 14 Sep 2023
  • Europe’s HIDDEN GEM! 🇪🇪 Day trip to Tallinn, ESTONIA from Helsinki

    ☕️ Check out our A+K Merch! https://adventuresofaplusk.com/shop/ Hello from Tallinn, Estonia! 🇪🇪 We have flown from Germany to Finland, where we will be spending the next two weeks. But before we do, we decided to take a day trip to Tallinn, Estonia! Located just 2 hours (one way) by ferry, Tallinn is the perfect day trip from Helsinki. With colorful buildings, medieval walls, cobblestone streets, and unique experiences, it is said to be one of the most underrated cities in all of Europe! Where we stayed in Helsinki: https://booking.tp.st/5OSybaKW 💸 Learn how we flew to Europe for FREE and got 12 FREE nights at hotels: https://adventuresofaplusk.com/our-favorite-travel-credit-cards/ 🎶 We get music for our videos from Musicbed: https://fm.pxf.io/adventuresofaplusk. Use code APLUSK fo...

    published: 04 Feb 2024
  • 48 Hours in Tallinn, Estonia 🇪🇪 Tallinn Travel Guide

    Tallinn Estonia is such a cool city with so many museums, craft beer bars, cool markets, and history to learn about. Here is what you can get up to with 48 hours in Tallinn. Purchase a Tallinn Card here: https://www.visittallinn.ee/eng/visitor/tallinn-card/tallinn-card/what-is-tallinn-card For more travel tips, check out my blog: https://eternal-expat.com Sign up for my monthly newsletter here: https://www.subscribepage.com/z3m5h0_copy ---------------------------------------------------------------------------------- Follow along on Social Media! Facebook: http://facebook.com/theeternalexpat Instagram: http://instagram.com/eternalexpat ---------------------------------------------------------------------- All Songs from Epidemic Sound What is it like by Loving Caliber Say that y...

    published: 08 Jul 2023
  • 6 Things To Know About the Old Town of Tallinn, Estonia | Travel Guide 2023

    Today I'll share my favourite 6 things to see and do in the Old Town of Tallinn. I sit down with Cedrick to learn more about the beginnings of the medieval Tallinn and how the Hanseatic League has transformed this city, which is going to be dope. I also share with you 5 activities that you can do in the Old Town that are super fun. This is a very special episode. Tallinn is my hometown and after about 13 episodes that I've shot in collaboration with the local tourist group, I've gathered tons of material and met awesome people who are as passionate about Tallinn as I am. I hope you will fall in love with this city as much as I have. Can't recommend enough joining the Tales of Reval medieval tour in the Old Town (It's free and it's super fun). https://www.talesofreval.ee/ #tallinnvlog #...

    published: 19 Feb 2023
  • 8 Hours in Tallinn Estonia

    We are exploring the 5000 year old city of Tallinn, Estonia - gem of the Baltics - in this episode of @windowseatworldtravel It used to be part of the Soviet Union - and you'll still find throwbacks to the Soviet era - including a hotel full of bugs. And we're not talking bed bugs. We'll take you inside Hotel Viru, home of the KGB Museum. On the top floor, two secret rooms that went undetected until after the fall of communism. It's where secret agents spied on hotel guests. It's just one stop we're making in Tallinn. We'll also take you to the oldest bakery in town, a series of tunnels that snake beneath the city, and we'll explore the famous Old Town area... a throwback to medieval times. LINKS: HOTEL VIRU & KGB MUSEUM: https://www.visittallinn.ee/eng/visitor/see-do/things-to-do/attr...

    published: 15 Nov 2024
  • Magical Tallinn Christmas Market Experience 2023

    Tallinn Christmas Market is possibly one of the best markets in Europe. It is as cute as a button and once the snow falls it transforms into this magical winter wonderland. In this episode, we get to explore the Estonian Christmas traditions as we make our way through this market: we drink mulled wine with Estonian herb-y liquor, we eat traditional Estonian Christmas dinner with blood sausage and sauerkraut, we see the inside of the 700-year old Town Hall and we visit the delicious exhibition where everything is made out of gingerbread. This is a two-part video. Next week we will explore what other Christmas activities you can do in the Old Town. Get your skates ready wink-wink! Read more info about the Christmas Market in this blog post: https://www.visittallinn.ee/eng/visitor/see-do/ev...

    published: 19 Dec 2022
  • FIRST TIME IN ESTONIA (Tallinn blew my mind!) 🇪🇪

    First impressions of Tallinn, Estonia. It was our first time in Estonia. We took a 2hr boat trip from Helsinki, Finland to Tallinn. We didn't expect this city to be so beautiful! The explored the Old Town with its medieval history, went to the KGB museum to learn more about the Soviet USSR occupation, and tried Estonian traditional food! Check out our vlog. ▶︎Get an exclusive Surfshark VPN deal! Enter promo code JETFAM to get up to 3 additional months for free at https://surfshark.deals/JETFAM ▶︎Join the JetFam channel membership to get access to perks, including live members only chat: https://www.youtube.com/channel/UC1soWWg79S9TUdSjzAHHftw/join ▶︎SUBSCRIBE! (it's free!!) http://bit.ly/2rO5tNC ▶︎If you like our videos and would like to support us, consider buying us a cup of coffee (...

    published: 05 May 2024
  • the Jackal's plans in Tallinn

    "Famous Movie Spy" is an engaging channel dedicated to exploring the thrilling world of spies from iconic movie franchises and TV series. Whether you’re a fan of suave secret agents, action-packed espionage missions, or intricate undercover plots, this channel dives deep into the captivating lives of fictional spies. From analyzing classic characters like James Bond, Ethan Hunt, and Jason Bourne to exploring groundbreaking TV series such as The Americans, Alias, and Jack Ryan, "Famous Movie Spy" uncovers the secrets behind these memorable stories. Expect episode breakdowns, character deep dives, behind-the-scenes trivia, and thematic explorations that showcase how the spy genre evolves over time. Tune in for reviews, comparisons, and discussions on gadgets, disguises, iconic moments, and...

    published: 01 Jan 2025
  • 24/7 Live Stream 4K - Digital.Tallinn CityCam

    https://tallinn.info The webcam is located on the roof of the Viru Hotel. #citycam #digitaltallinn

    published: 22 Nov 2023
developed with YouTube
Is TALLINN, ESTONIA the most futuristic city in Europe?
10:42

Is TALLINN, ESTONIA the most futuristic city in Europe?

  • Order:
  • Duration: 10:42
  • Uploaded Date: 10 Sep 2023
  • views: 111425
Olivia and Nathan saying wattup from the Baltics! And Tallinn, Estonia surprised us in more ways than one, and we ain't talking about their street robot situation! 🤣 Is E-stonia making waves in the global tech space and en route to becoming another Silicon Valley of Europe? Let's deliberate over an open faced sprat sandwich... Our mattress! ❤️ 😴 Check out https://www.brooklynbedding.com/onworldtravel to get 25% off your mattress with code: ONWORLDTRAVEL 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 ] Finland is SUPER WEIRD - https://youtu.be/ESr2tYsKuZY?si=FaNQZpHXa6-FjX4M [ 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 STORY ] Curious how we met, started traveling, what our jobs were, etc? https://www.youtube.com/c/ONWorldTravel/about [ FOLLOW US ] △ Instagram: https://www.instagram.com/onworldtravel △ Facebook: https://www.facebook.com/onworldtravel1 △ Website & Blog: https://www.onworldtravel.com △ Email us: [email protected] Disclaimer: We do not take free products purely in exchange for content. We do only paid and commissionable work and will not respond to emails just offering us free stuff. The only exception would be any form of comped travel or use of a "means" of travel (i.e. RV, flights, unique stays...) [ SHOP OUR GEAR ON AMAZON] Links to all of the travel gear we love and use regularly! https://www.amazon.com/shop/onworldtravel The BEST No Freeze Water Hose 👉🏽 Use our code: ONWorldTravel for 5% off! https://nofreezewaterhose.com/?ref=hdjck1ijlw [ $65 AIRBNB DISCOUNT ] For up to $65 off your first AIRBNB https://rb.gy/5eywpf [ MUSIC ] Epidemic Sounds https://rb.gy/a4b0ba [ Disclosure ] Some of these are affiliate links, which means we might earn a small commission if you click on any of them (at no cost to you) so thank you!
https://wn.com/Is_Tallinn,_Estonia_The_Most_Futuristic_City_In_Europe
Tallinn Travel Guide - Complete Tour - City Guide to Estonia's Capital
26:22

Tallinn Travel Guide - Complete Tour - City Guide to Estonia's Capital

  • Order:
  • Duration: 26:22
  • Uploaded Date: 14 Sep 2023
  • views: 100446
Everything you need to know about going to Tallinn, how to get to & from Tallinn airport, what attractions to see, what to do, where to avoid and this is the only video you’ll need to plan your trip to Estonia’s Capital City. From medieval marvels to modern delights, join us as we uncover the best attractions, dining spots, and hidden gems that make Tallinn a must-visit destination in the Baltics. Discover the rich history, charming cobblestone streets, and vibrant culture of Estonia's capital city. I’ll show you around the Viru Gates, Toompea Castle, the Alexander Nevsky Cathedral, St Olaf’s Church, the Old Town and Town Hall, Fat Margaret, the Estonian Maritime Museum, the KGB Museum, the medieval walls, Hellmann’s Tower, Kiek in de Kok, St Nicholas Church (Niguiliste) and more. I’ll also show you the best things to do outside the Tallinn Old Town, such as the Rusalka Memorial, the beaches, Kadriorg Palace, Kadriorg Park, KUMU, the Tallinn TV Tower to name a few. 00:00 – Tallinn - Complete City Guide 00:23 – Introduction to Tallinn 00:36 – Map of Tallinn 01:05 – How to get to / from Tallinn Airport or Ferry Port 01:58 – How to get around the city 02:10 – Tallinn Attractions 02:15 – Viru Gates 03:05 – Tallinn Tourist Office – Tallinn Card 03:43 – Tallinn Old Town Square and Old Town Hall & Bell Tower 05:36 – Medieval Streets, Shops and Bars 05:58 – Hellmann’s Tower & Medieval Wall 06:27 – St Catherine’s Passage 07:03 – Fat Margaret Tower – Estonian Maritime Museum 07:56 – St Olaf’s Church & Bell Tower 09:05 – Holy Church 09:31 – Toompea Castle 10:46 – Alexander Nevsky Cathedral & Viewing Platforms 12:09 – KGB Prison Cells, House of the Blackheads, Dome Church, National Monument, St John’s church. 12:56 – St Nicholas Church (Niguiliste) 14:04 – Kiek in de Kok, Medieval Walls, Underground Tunnel & Stone Museum 15:59 – Eating, Food & Drink in Tallinn 17:11 – Explore Tallinn at Night 17:46 – East of old town – shopping, restaurants hotels. 18:01 – Viru Hotel – Rooftop Bar & KGB Museum 18:55 – Rusalka Memorial and beaches. 19:14 – Kadriorg Palace, KUMU Art Museum & Kadroirg Park. 21:08 – Tallinn TV Tower 22:32 – Travel Advice for Tallinn 24:24 – Top Tips for Visiting Tallinn 25:35 – Outro and Outtakes Ninh Ly presents ‘Ultimate Bucket List’ – a brand new YouTube channel to explore cool things to do before you die. From swimming with dolphins, to jumping off cranes, to gambling in Vegas. Follow me on my journey to tick off things on my bucket list and give you travel tips and advice so that you can start your own. Come on guys, live a little! Life is too short. Do you feel that your life is slipping away? Have you fulfilled your life’s wishes? Or travelled the world? This channel is to provide you with ideas to tick off your bucket list. COMMENT, LIKE, RATE & SUBSCRIBE!!! Also discuss on Reddit! Video: Copyright Ninh Ly 2023, Envato Images: Ninh Ly Music: ‘Various’’ by Envato. Narrated, Directed and Produced by Ninh Ly Ultimate Bucket List Website - http://www.ultimatebucketlist.co.uk Main Website - http://www.ninh.co.uk Find Ultimate Bucket List on Facebook – https://www.facebook.com/ultimatebucketlist.co.uk/ Find Ninh Ly on Facebook – https://www.facebook.com/ninh.ly.31/ Follow me on Twitter - http://twitter.com/NinhLyUK Google+ – https://plus.google.com/+NinhLyUK Instagram – https://www.instagram.com/ninhlyuk LinkedIn – https://www.linkedin.com/in/ninh-ly-0623218b/ #Tallinn #Estonia #oldtown #cityguide #travel #bucketlist #top10 #traveladvice #travelling #Tallinntravel
https://wn.com/Tallinn_Travel_Guide_Complete_Tour_City_Guide_To_Estonia's_Capital
Europe’s HIDDEN GEM! 🇪🇪 Day trip to Tallinn, ESTONIA from Helsinki
18:55

Europe’s HIDDEN GEM! 🇪🇪 Day trip to Tallinn, ESTONIA from Helsinki

  • Order:
  • Duration: 18:55
  • Uploaded Date: 04 Feb 2024
  • views: 90321
☕️ Check out our A+K Merch! https://adventuresofaplusk.com/shop/ Hello from Tallinn, Estonia! 🇪🇪 We have flown from Germany to Finland, where we will be spending the next two weeks. But before we do, we decided to take a day trip to Tallinn, Estonia! Located just 2 hours (one way) by ferry, Tallinn is the perfect day trip from Helsinki. With colorful buildings, medieval walls, cobblestone streets, and unique experiences, it is said to be one of the most underrated cities in all of Europe! Where we stayed in Helsinki: https://booking.tp.st/5OSybaKW 💸 Learn how we flew to Europe for FREE and got 12 FREE nights at hotels: https://adventuresofaplusk.com/our-favorite-travel-credit-cards/ 🎶 We get music for our videos from Musicbed: https://fm.pxf.io/adventuresofaplusk. Use code APLUSK for 1 month off of any annual subscription. 📍Locations in this video To see everywhere we went during our time in Tallinn, check out this map: https://www.google.com/maps/d/u/2/edit?mid=11il-ckfZ8RaqXWo1ruONu3QEpI9Uwlc&usp=sharing Note: you can save this map to your Google Maps, to access it on your own adventure! ⌚Timestamps 00:00 Introduction 00:45 Ferry to Tallinn 02:21 We made it to Tallinn! 03:02 RØST Bakery 04:22 Exploring Tallinn’s Old Town 05:50 Olde Hansa Restaurant 09:22 Walking the city walls at Nunnadetagune torn 11:43 Checking out the city’s viewpoints 12:23 Tallinn Christmas Market 16:44 Back to Helsinki! __________ ☕️ Check out our A+K Merch! https://adventuresofaplusk.com/shop/ 📷 See ALL of our gear: https://adventuresofaplusk.com/gear/ 🚐 Our Van Life products: https://adventuresofaplusk.com/blog/van-conversion-cost-tour-mistakes 💻 Follow us on social media! Instagram https://www.instagram.com/adventuresofaplusk Facebook: https://www.facebook.com/adventuresofaplusk/ Pinterest: https://www.pinterest.com/adventuresofaplusk/ 🌎 See everywhere we have been + view our blogs and travel guides: https://adventuresofaplusk.com/ __________ 👋🏼 About us Hi y’all! We’re Adam, Kathryn, and Kona, an adventurous married couple (+ pup!) living on the road in our self-converted sprinter van! You can often find us driving all around the US and Canada, scoping out the best coffee shops, eating tacos and ice cream (we're a 5+ taco and 2+ scoop household), and enjoying nature. We help travelers spend less time (and stress!) planning their trip and more time enjoying it! Our detailed travel guides, YouTube videos, and travel resources share the must-visit local eats, popular and off the beaten path sights, and tons of tips to make planning your next adventure a whole lot easier. Note: We’ve linked a handful of items so you can see exactly which products we take with us. Full disclosure--if you click on these links and make a purchase, we get a small commission at no extra cost to you. We will only ever recommend products we truly love, actually use during our adventures, and think you can benefit from too!
https://wn.com/Europe’S_Hidden_Gem_🇪🇪_Day_Trip_To_Tallinn,_Estonia_From_Helsinki
48 Hours in Tallinn, Estonia 🇪🇪 Tallinn Travel Guide
6:18

48 Hours in Tallinn, Estonia 🇪🇪 Tallinn Travel Guide

  • Order:
  • Duration: 6:18
  • Uploaded Date: 08 Jul 2023
  • views: 46471
Tallinn Estonia is such a cool city with so many museums, craft beer bars, cool markets, and history to learn about. Here is what you can get up to with 48 hours in Tallinn. Purchase a Tallinn Card here: https://www.visittallinn.ee/eng/visitor/tallinn-card/tallinn-card/what-is-tallinn-card For more travel tips, check out my blog: https://eternal-expat.com Sign up for my monthly newsletter here: https://www.subscribepage.com/z3m5h0_copy ---------------------------------------------------------------------------------- Follow along on Social Media! Facebook: http://facebook.com/theeternalexpat Instagram: http://instagram.com/eternalexpat ---------------------------------------------------------------------- All Songs from Epidemic Sound What is it like by Loving Caliber Say that you won’t Go by Loving Caliber
https://wn.com/48_Hours_In_Tallinn,_Estonia_🇪🇪_Tallinn_Travel_Guide
6 Things To Know About the Old Town of Tallinn, Estonia | Travel Guide 2023
12:39

6 Things To Know About the Old Town of Tallinn, Estonia | Travel Guide 2023

  • Order:
  • Duration: 12:39
  • Uploaded Date: 19 Feb 2023
  • views: 25806
Today I'll share my favourite 6 things to see and do in the Old Town of Tallinn. I sit down with Cedrick to learn more about the beginnings of the medieval Tallinn and how the Hanseatic League has transformed this city, which is going to be dope. I also share with you 5 activities that you can do in the Old Town that are super fun. This is a very special episode. Tallinn is my hometown and after about 13 episodes that I've shot in collaboration with the local tourist group, I've gathered tons of material and met awesome people who are as passionate about Tallinn as I am. I hope you will fall in love with this city as much as I have. Can't recommend enough joining the Tales of Reval medieval tour in the Old Town (It's free and it's super fun). https://www.talesofreval.ee/ #tallinnvlog #estoniavlog #tallinnestonia Let's be friends: Twitter: https://twitter.com/PollyClassic Instagram: https://www.instagram.com/classic.polly/ Patreon: https://www.patreon.com/classicpolly Buy My Venice and Milan guides: https://payhip.com/classicpolly
https://wn.com/6_Things_To_Know_About_The_Old_Town_Of_Tallinn,_Estonia_|_Travel_Guide_2023
8 Hours in Tallinn Estonia
11:30

8 Hours in Tallinn Estonia

  • Order:
  • Duration: 11:30
  • Uploaded Date: 15 Nov 2024
  • views: 16907
We are exploring the 5000 year old city of Tallinn, Estonia - gem of the Baltics - in this episode of @windowseatworldtravel It used to be part of the Soviet Union - and you'll still find throwbacks to the Soviet era - including a hotel full of bugs. And we're not talking bed bugs. We'll take you inside Hotel Viru, home of the KGB Museum. On the top floor, two secret rooms that went undetected until after the fall of communism. It's where secret agents spied on hotel guests. It's just one stop we're making in Tallinn. We'll also take you to the oldest bakery in town, a series of tunnels that snake beneath the city, and we'll explore the famous Old Town area... a throwback to medieval times. LINKS: HOTEL VIRU & KGB MUSEUM: https://www.visittallinn.ee/eng/visitor/see-do/things-to-do/attractions-museums/177420/hotel-viru-and-kgb-museum CAFE MAIASMOKK: https://kohvikmaiasmokk.ee/en/ BASTION TUNNELS: https://visittallinn.ee/eng/visitor/see-do/things-to-do/attractions-museums/175387/bastion-passages-in-the-tallinn-old-town FERRY TO HELSINKI: https://www.tallink.com/ Check out our brand new website! https://www.windowseatworldtravel If you want to follow our adventures and stories, check us out on Instagram. Our official account is https://www.instagram.com/windowseatworldtravel Jeremy can be found at https://www.instagram.com/jeremyhubbard and you can find Sean at https://www.instagram.com/seandtowle. 🙏🏼 Thank you so much for helping our new YouTube channel grow. We really appreciate it. We're still working on a webpage and Facebook account - so standby! JOIN OUR NEW TRAVEL COMMUNITY Window Seat: https://www.youtube.com/channel/UCrlq... 📸 Instagram https://www.instagram.com/windowseatw... 🎥 THANKS FOR THE SUPPLEMENTAL MUSIC AND GRAPHICS Thanks to Motion Array for supplying the royalty-free music for this piece. https://www.motionarray.com/ Thumbnail graphics created using Canva https://www.canva.com Some video graphics created using Toko for Final Cut Pro X. https://videohive.net/item/toko-graph... Our Most Popular YouTube Video 🎬 Machu Picchu: What they won't tell you about visiting here https://www.youtube.com/watch?v=4vTMOIQBs6M
https://wn.com/8_Hours_In_Tallinn_Estonia
Magical Tallinn Christmas Market Experience 2023
12:16

Magical Tallinn Christmas Market Experience 2023

  • Order:
  • Duration: 12:16
  • Uploaded Date: 19 Dec 2022
  • views: 70610
Tallinn Christmas Market is possibly one of the best markets in Europe. It is as cute as a button and once the snow falls it transforms into this magical winter wonderland. In this episode, we get to explore the Estonian Christmas traditions as we make our way through this market: we drink mulled wine with Estonian herb-y liquor, we eat traditional Estonian Christmas dinner with blood sausage and sauerkraut, we see the inside of the 700-year old Town Hall and we visit the delicious exhibition where everything is made out of gingerbread. This is a two-part video. Next week we will explore what other Christmas activities you can do in the Old Town. Get your skates ready wink-wink! Read more info about the Christmas Market in this blog post: https://www.visittallinn.ee/eng/visitor/see-do/events/events/8929/tallinn-christmas-market-2022 Opening times to visit the Town Hall: http://raekoda.tallinn.ee/visit-us/ Visit The Gingerbread Mania Exchibiton: https://www.visittallinn.ee/est/k%C3%BClastaja/tallinn-card/tallinn-card/k%C3%B5ik-pakkumised/178090
https://wn.com/Magical_Tallinn_Christmas_Market_Experience_2023
FIRST TIME IN ESTONIA (Tallinn blew my mind!) 🇪🇪
16:58

FIRST TIME IN ESTONIA (Tallinn blew my mind!) 🇪🇪

  • Order:
  • Duration: 16:58
  • Uploaded Date: 05 May 2024
  • views: 117838
First impressions of Tallinn, Estonia. It was our first time in Estonia. We took a 2hr boat trip from Helsinki, Finland to Tallinn. We didn't expect this city to be so beautiful! The explored the Old Town with its medieval history, went to the KGB museum to learn more about the Soviet USSR occupation, and tried Estonian traditional food! Check out our vlog. ▶︎Get an exclusive Surfshark VPN deal! Enter promo code JETFAM to get up to 3 additional months for free at https://surfshark.deals/JETFAM ▶︎Join the JetFam channel membership to get access to perks, including live members only chat: https://www.youtube.com/channel/UC1soWWg79S9TUdSjzAHHftw/join ▶︎SUBSCRIBE! (it's free!!) http://bit.ly/2rO5tNC ▶︎If you like our videos and would like to support us, consider buying us a cup of coffee (or chai / teh tarik)! ☕️: https://www.buymeacoffee.com/jetlagwarriors ▶︎FACEBOOK: @JetLag Warriors https://www.facebook.com/jetlagwarriors ▶︎INSTAGRAM: @jetlagwarriors https://www.instagram.com/jetlagwarriors -------------------------------------------------------------------------------------------------- JetLagWarriors is a Canadian couple -- Steve and Ivana. After travelling here and there for a few years, mostly during Canadian winter, we fully caught the travel bug and decided to travel INDEFINITELY! Subscribe to keep up with our journey. Thanks! TIMESTAMPS: 00:00 - Heading to "Little Finland" (or, leaving "Big Estonia"?) 1:46 - SAUNA IN OUR ACCOMMODATION!! 4:59 - First time in Tallinn: The Old Town is awesome! 6:47 - Is Estonia blood sausage better than Finland's?!?! 9:29 - Where Nordic meets Slavic, you get Baltic? (history of Estonia) 11:35 - KGB Museum (Estonia's Soviet/communist period) 13:32 - Denmark's flag comes from Estonia? Or, the sky in Estonia* 15:07 - ESTONIA HAS THE BEST BEER IN NORTHERN EUROPE?? Music in the Video: –––––––––––––––––––––––––––––– Track: Equilibrium — Max Maikon [Audio Library Release] Music provided by Audio Library Plus Watch: • Equilibrium — Max... Free Download / Stream: https://alplus.io/equilibrium –––––––––––––––––––––––––––––– Song: "Lakey Inspired - Blue Boi [Lofi]" is under a Creative Commons (CC BY-SA 3.0) license. Music promoted by BreakingCopyright: • [Non Copyrighted Music] Lakey Inspire... –––––––––––––––––––––––––––––– Evening by Qlowdy / qlowdymusic Creative Commons — Attribution 3.0 Unported — CC BY 3.0 Free Download / Stream: https://bit.ly/3NNExs1 Music promoted by Audio Library https://bit.ly/3ErUKPf –––––––––––––––––––––––––––––– Qlowdy - Spooky Woods Link : https://hypeddit.com/qlowdy/spookywoods ------------------------------
https://wn.com/First_Time_In_Estonia_(Tallinn_Blew_My_Mind_)_🇪🇪
the Jackal's plans in Tallinn
2:50

the Jackal's plans in Tallinn

  • Order:
  • Duration: 2:50
  • Uploaded Date: 01 Jan 2025
  • views: 108
"Famous Movie Spy" is an engaging channel dedicated to exploring the thrilling world of spies from iconic movie franchises and TV series. Whether you’re a fan of suave secret agents, action-packed espionage missions, or intricate undercover plots, this channel dives deep into the captivating lives of fictional spies. From analyzing classic characters like James Bond, Ethan Hunt, and Jason Bourne to exploring groundbreaking TV series such as The Americans, Alias, and Jack Ryan, "Famous Movie Spy" uncovers the secrets behind these memorable stories. Expect episode breakdowns, character deep dives, behind-the-scenes trivia, and thematic explorations that showcase how the spy genre evolves over time. Tune in for reviews, comparisons, and discussions on gadgets, disguises, iconic moments, and how spies have shaped the entertainment world. It’s the perfect channel for fans of intrigue, mystery, and high-stakes action!
https://wn.com/The_Jackal's_Plans_In_Tallinn
24/7 Live Stream 4K - Digital.Tallinn CityCam
0:00

24/7 Live Stream 4K - Digital.Tallinn CityCam

  • Order:
  • Duration: 0:00
  • Uploaded Date: 22 Nov 2023
  • views: 270312
https://tallinn.info The webcam is located on the roof of the Viru Hotel. #citycam #digitaltallinn
https://wn.com/24_7_Live_Stream_4K_Digital.Tallinn_Citycam
'); } else { var query = elem.find('.keywords').html(); $.ajax({ context: elem, url: 'https://wn.com/api/upge/cheetah-search-adv/video', cache: true, data: { 'query': query }, dataType: 'jsonp', success: function(text) { if (text.length > 0) { video_id = text[0].id; elem.find('.player').html(''); } } }); } } var stopAllYouTubeVideos = function() { var iframes = document.querySelectorAll('iframe'); Array.prototype.forEach.call(iframes, function(iframe) { iframe.contentWindow.postMessage(JSON.stringify({ event: 'command', func: 'pauseVideo' }), '*'); }); } jQuery(function() { jQuery(".playVideo").live("click", function() { if(!$(this).hasClass("played")){ stopAllYouTubeVideos(); var elem = $(this); setTimeout(function(){ mouseOverMe(elem); }, 1000); } }); jQuery(".description_box .expandContent").live("click", function() { elem = $(this).parent().parent().parent().find('.descContent'); if(elem.height() > 51) { elem.css('height', '44px'); $(this).html('Show More '); }else{ elem.css('height', 'auto'); $(this).html('Hide '); } }); jQuery('.interview-play-off').click(function() { $(".interview-play-off").hide(); $(".interview-play").show(); $(".videoplayer-control-pause").click(); }); jQuery(".video-desc .show_author_videos").live("click", function() { query = $(this).attr('title'); container = $(this).parent().parent().parent().find('.video-author-thumbs'); $(this).parent().parent().parent().find('.video-author-thumbs').css('height', '220px'); jQuery.ajax({ url: '/api/upge/cheetah-photo-search/videoresults', data: {'query': query}, success: function(text) { if(!text) { text = i18n("No results"); } container.html(jQuery(text)); } }); }); }); // -->
×