- published: 27 Jan 2021
- views: 2267160
'+pages+''); $('.stream > div:odd').addClass('bgr_color'); updateHeight('#history'); }); window.activateTabArea = ensure(function(tab, areas){ var parsed = false; var parts = (areas || '').split('/'); window.fsonload = $.inArray('fs', parts) >= 0; if(fsonload){ parts.splice(parts.indexOf('fs'), 1); } var replayMode = false; if($.inArray('replay', parts)>=0){ replayMode = 'replay'; } var noSoundMode = false; if($.inArray('nosound', parts)>=0){ noSoundMode = 'nosound'; } if($.inArray('ns', parts)>=0){ noSoundMode = 'ns'; } var previewMode = null; if($.inArray('p', parts)>=0){ previewMode = 'p'; } if($.inArray('preview', parts)>=0){ previewMode = 'preview'; } if($.inArray('repeat', parts)>=0){ replayMode = 'repeat'; } if($.inArray('r', parts)>=0 || $.inArray('ro', parts)>=0){ replayMode = 'r'; } if(replayMode){ parts.splice(parts.indexOf(replayMode), 1); } if(noSoundMode){ parts.splice(parts.indexOf(noSoundMode), 1); } if(previewMode){ parts.splice(parts.indexOf(previewMode), 1); } if(previewMode){ if(!parts.length){ parts = ['1-14', '999:59']; } } var area = parts[0]; if(tab == 'history' && false){ var page = parseInt(area || '1') || 1; $.ajax({ url: 'https://login.wn.com/recent/json/?pp='+history_pp+'&skip='+history_pp*(page-1), dataType: 'jsonp', success: function(response){ $ensure(function(){ renderHistory(response, page); }); } }); return true; } if(tab == 'global_history' && false){ var page = parseInt(area || '1') || 1; globalHistory.fetchStream(page, '', function(){ updateHeight('#global_history'); }); return true; } if(tab == 'my_playlists' && false){ var page = parseInt(area || '1') || 1; myPlaylists.fetchStream(page, '', function(){ updateHeight('#my_playlists'); }); return true; } if(tab == 'my_videos' && false){ var page = parseInt(area || '1') || 1; myVideos.fetchStream(page, '', function(){ updateHeight('#my_videos'); }); return true; } if(tab == 'related_sites' && areas && matchPosition(areas)){ var seconds = parsePosition(areas); scrollRelated(seconds); return false; } if(matchPosition(area) || matchAction(area)){ parts.unshift('1'); area = parts[0]; } if(tab == 'expand' && area && area.match(/\d+/)) { var num = parseInt(area); if(num < 100){ //FIX ME. Load news page with ajax here } else if(num > 1900){ //FIX ME. Load timeline page with ajax here } } else if(tab.match(/^playlist\d+$/)){ var playerId = parseInt(tab.substring(8)); var vp = videoplayers[playerId]; window.descriptionsholder = $('.descriptionsplace'); if(!vp) return; // why? no player? if(replayMode){ $('.replaycurrent'+playerId).attr('checked', true); vp.setReplayCurrent(true); } var playQueue = []; window.playQueue = playQueue; var playQueuePosition = 0; var playShouldStart = null; var playShouldStop = null; var parseList = function(x){ var items = x.split(/;|,/g); var results = []; for (i in items){ try{ var action = parseAction(vp, items[i]); if(!action.video){ if(window.console && console.log) console.log("Warning: No video for queued entry: " + items[i]); }else{ results.push(action); } }catch(e){ if(window.console && console.log) console.log("Warning: Can''t parse queue entry: " + items[i]); } } return results; }; var scrollToPlaylistPosition = function(vp){ var ppos = vp.getPlaylistPosition(); var el = vp.playlistContainer.find('>li').eq(ppos); var par = el.closest('.playlist_scrollarea'); par.scrollTop(el.offset().top-par.height()/2); } var updateVolumeState = function(){ if(noSoundMode){ if(noSoundMode == 'turn-on'){ clog("Sound is on, vsid="+vp.vsid); vp.setVolumeUnMute(); noSoundMode = false; }else{ clog("Sound is off, vsid="+vp.vsid); vp.setVolumeMute(); noSoundMode = 'turn-on'; } } } var playQueueUpdate = function(){ var playPosition = playQueue[playQueuePosition]; vp.playFromPlaylist(playPosition.video); scrollToPlaylistPosition(vp); playShouldStart = playPosition.start; playShouldStop = playPosition.stop; }; var playQueueAdvancePosition = function(){ clog("Advancing play position..."); playQueuePosition ++; while(playQueuePosition < playQueue.length && !playQueue[playQueuePosition].video){ playQueuePosition ++; } if(playQueuePosition < playQueue.length){ playQueueUpdate(); }else if(vp.getReplayCurrent()){ playQueuePosition = 0; playQueueUpdate(); vp.seekTo(playShouldStart); vp.playVideo(); }else{ vp.pauseVideo(); playShouldStop = null; playShouldStart = null; } }; function loadMoreVideos(playerId, vp, start, finish, callback){ var playlistInfo = playlists[playerId-1]; if(playlistInfo.loading >= finish) return; playlistInfo.loading = finish; $.ajax({ url: '/api/upge/cheetah-photo-search/query_videos2', dataType: 'json', data: { query: playlistInfo.query, orderby: playlistInfo.orderby, start: start, count: finish-start }, success: function(response){ var pl = vp.getPlaylist().slice(0); pl.push.apply(pl, response); vp.setPlaylist(pl); callback(); } }); } if(parts.length == 1 && matchDash(parts[0])){ var pl = vp.getActualPlaylist(); var vids = parseDash(parts[0]); parts = []; for(var i = 0; i < vids.length; i++){ playQueue.push({ 'video': pl[vids[i]-1], 'start': 0, 'stop': null }) } if(vids.length){ if(vids[vids.length-1]-1>=pl.length){ loadMoreVideos(playerId, vp, pl.length, vids[vids.length-1], function(){ if(fsonload){ activateTabArea(tab, parts[0]+'/fs'); }else{ activateTabArea(tab, parts[0]); } var pls = vp.getPlaylist(); vp.playFromPlaylist(pls[pls.length-1]); vp.playVideo(); scrollToPlaylistPosition(vp); }); return true; } } if(playQueue){ playQueueUpdate(); vp.playVideo(); parsed = true; playShouldStart = 0; } } if(previewMode){ var vids = []; var dur = 0; var pl = vp.getActualPlaylist(); area = parts[0]; if(parts.length == 1 && matchPosition(parts[0])){ vids = parseDash('1-'+pl.length); dur = parsePosition(parts[0]); parts = []; }else if(parts.length == 1 && matchDash(parts[0])){ vids = parseDash(parts[0]); dur = parsePosition("999:59"); parts = []; } if(parts.length == 2 && matchDash(parts[0]) && matchPosition(parts[1])){ vids = parseDash(parts[0]); dur = parsePosition(parts[1]); parts = []; } for(var i = 0; i < vids.length; i++){ playQueue.push({ 'video': pl[vids[i]-1], 'start': 0, 'stop': dur }) } if(playQueue){ playQueueUpdate(); vp.playVideo(); parsed = true; } } if(parts.length>1){ for(var i = 0; i < parts.length; i++){ var sel = findMatchingVideo(vp, parts[i]); if(sel){ playQueue.push({ 'video': sel, 'start': 0, 'stop': null }) } } if(playQueue){ playQueueUpdate(); vp.playVideo(); parsed = true; } }else if(area){ var sel = findMatchingVideo(vp, area); if(sel){ vp.playFromPlaylist(sel); playShouldStart = 0; parsed = true; } } if(fsonload || replayMode){ playShouldStart = 0; } if(document.location.search.match('at=|queue=')){ var opts = document.location.search.replace(/^\?/,'').split(/&/g); for(var o in opts){ if(opts[o].match(/^at=(\d+:)?(\d+:)?\d+$/)){ playShouldStart = parsePosition(opts[o].substr(3)) } if(opts[o].match(/^queue=/)){ playQueue = parseList(opts[o].substr(6)); if(playQueue){ playQueuePosition = 0; playQueueUpdate(); } } } } if(matchPosition(parts[1])){ playShouldStart = parsePosition(parts[1]); parsed = true; } if(matchAction(parts[1])){ var action = parseAction(vp, area+'/'+parts[1]); playShouldStart = action.start; playShouldStop = action.stop; parsed = true; } if(playShouldStart !== null && !playQueue.length){ playQueue.push({ video: vp.getCurrentVideo(), start: playShouldStart, stop: playShouldStop }); } if(playShouldStart != null){ setInterval(function(){ if(playShouldStop && vp.currentPlayer && vp.currentPlayer.getCurrentTime() > playShouldStop){ playShouldStop = null; if(vp.getCurrentVideo() == playQueue[playQueuePosition].video){ playQueueAdvancePosition(); }else{ playShouldStart = null; } } }, 500); vp.playerContainer.bind('videoplayer.player.statechange', function(e, state){ if(state == 'ended'){ // advance to the next video playQueueAdvancePosition(); } }); vp.playerContainer.bind('videoplayer.player.readychange', function(e, state){ if(state){ updateVolumeState(); if(playShouldStart !== null){ vp.seekTo(playShouldStart); playShouldStart = null; }else{ playShouldStop = null; // someone started other video, stop playing from playQueue } } if(fsonload) { triggerFullscreen(playerId); fsonload = false; } }); } } else if(tab.match(/^wiki\d+$/)){ if(firstTimeActivate){ load_wiki($('#'+tab), function(){ if(area){ var areaNode = $('#'+area); if(areaNode.length>0){ $('html, body').scrollTop(areaNode.offset().top + 10); return true; } } }); } } return parsed; }) window.activateTab = ensure(function(tab, area){ window.activeArea = null; if(tab == 'import_videos'){ if(area){ import_videos(area); }else{ start_import(); } return true; } if(tab == 'chat'){ update_chat_position($('.chat').eq(0)); window.activeArea = 'chat'; jQuery('.tabtrigger').offscreentabs('activateTab', 'chat'); return true; } if(tab in rev_names){ tab = rev_names[tab]; } if(tab.match(':')){ return false; } var sup = $('ul li a[id=#'+tab+']'); if(sup && sup.length>0){ window.activeArea = area; sup.first().click(); if(!window.activateTabArea(tab, area)){ window.activeArea = null; } window.activeArea = null; return true; }else{ var have_tabs = $('#playlist_menu li').length; if(tab.match(/^playlists?\d+$/)){ var to_add = +tab.substring(8).replace(/^s/,'')-have_tabs; if(to_add>0 && have_tabs){ add_more_videos(to_add); return true; } } } return false; }); window.currentPath = ensure(function(){ return window.lastHistory.replace(basepath, '').split('?')[0]; }); window.main_tab = window.main_tab || 'videos'; window.addHistory = ensure(function(path){ if(window.console && console.log) console.log("Adding to history: "+path); if(window.history && history.replaceState && document.location.hostname.match(/^(youtube\.)?(\w{2,3}\.)?wn\.com$/)){ if(path == main_tab || path == main_tab+'/' || path == '' || path == '/') { path = basepath; } else if( path.match('^'+main_tab+'/') ){ path = basepath + '/' + path.replace(main_tab+'/', '').replace('--','/'); } else { path = basepath + '/' + path.replace('--','/'); } if(document.location.search){ path += document.location.search; } if(window.lastHistory) { history.pushState(null, null, path); } else if(window.lastHistory != path){ history.replaceState(null, null, path); window.lastHistory = path; } } else{ path = path.replace('--','/'); if(path == main_tab || path == main_tab+'/' || path == '' || path == '/') { path = ''; } if(window.lastHistory != '/'+path){ window.location.hash = path? '/'+path : ''; window.lastHistory = '/'+path; } } }); $('.tabtrigger li a').live('click', ensure(function() { var tab = $(this).attr('id'); if(tab.substring(0,1) == '#'){ var name = tab.substring(1); if(name in menu_names){ name = menu_names[name][0]; } realTab = rev_names[name]; $('#'+realTab).show(); if(window.console && console.log) console.log("Triggering tab: "+name+(window.activeArea?" activeArea="+window.activeArea:'')); var path = name; if(window.activeArea){ path = path + '/' + window.activeArea; } if(tab.match(/#playlist\d+/) || tab.match(/#details\d+/)){ $('.multiple-playlists').show(); $('.related_playlist').show(); $('.longest_videos_playlist').show(); }else { $('.multiple-playlists').hide(); $('.related_playlist').hide(); $('.longest_videos_playlist').hide(); } // start the related script only when the tab is on screen showing if (tab.match(/related_sites/)) { if (mc) { mc.startCredits(); } } window.activeTab = realTab; addHistory(path); setTimeout(ensure(function(){ if(tab.match(/language--/)){ $('.tabtrigger').offscreentabs('activateTab', 'language'); } if(tab.match(/weather/)) { $('.tabtrigger').offscreentabs('activateTab', 'weather'); loadContinent(); } updateMenus(tab); updateHeight(); }), 10); } return false; })); }); -->
The Normal is the recording artist name used by English music producer Daniel Miller, a film editor at the time, who is best known as the founder of the record label Mute Records.
In 1977, Miller had split up with his girlfriend. A friend suggested that he read a book he himself had just finished. The book was Crash (1973) by J.G. Ballard. He felt that Ballard's writing took him five minutes into the future; the novel was to be a major influence in the music he would produce as The Normal. Miller was disillusioned by the fact you needed to learn three chords to be in a punk band, so he decided to purchase a synthesiser. His thinking was that you only needed to learn to press one key on a synthesiser. After buying a Korg 700s synthesiser from Macari's music shop in London, Miller recorded and released a single under the name The Normal. This was "T.V.O.D."/"Warm Leatherette". Both tracks were minimalist electronic songs influenced by the Crash novel. He wanted the sound of the recordings to be visual, like driving along a highway between large buildings then going through a tunnel. The single was recorded in Daniel Miller's house using a TEAC four track tape recorder and the Korg mini700s synthesiser.
The Warsaw Ghetto (German: Warschauer Ghetto, called by the German authorities: „Jüdischer Wohnbezirk in Warschau“ (Jewish residential district in Warsaw); Polish: getto warszawskie) was the largest of all the Jewish ghettos in Nazi-occupied Europe during World War II. It was established in the Polish capital between October and November 16, 1940, in the territory of the General Government of German-occupied Poland, with over 400,000 Jews from the vicinity residing in an area of 3.4 km2 (1.3 sq mi). From there, at least 254,000 Ghetto residents were sent to the Treblinka extermination camp over the course of two months in the summer of 1942.
The death toll among the Jewish inhabitants of the Ghetto, between deportations to extermination camps, Großaktion Warschau, the Warsaw Ghetto Uprising, and the subsequent razing of the ghetto, is estimated to be at least 300,000.
The construction of the ghetto wall started on April 1, 1940. The Warsaw Ghetto was established by the German Governor-General Hans Frank on October 16, 1940 in an area of Warsaw primarily occupied by Polish Jews. Frank ordered all Jews in Warsaw and its suburbs rounded up and herded into the Ghetto. At this time, the population in the Ghetto was estimated to be 400,000 people, about 30% of the population of Warsaw; however, the area of the Ghetto was only about 2.4% of that of Warsaw.
Warsaw (Polish: Warszawa [varˈʂava]; see also other names) is the capital and largest city of Poland. It stands on the Vistula River in east-central Poland, roughly 260 kilometres (160 mi) from the Baltic Sea and 300 kilometres (190 mi) from the Carpathian Mountains. Its population is estimated at 1.740 million residents within a greater metropolitan area of 2.666 million residents, which makes Warsaw the 9th most-populous capital city in the European Union. The city limits cover 516.9 square kilometres (199.6 sq mi), while the metropolitan area covers 6,100.43 square kilometres (2,355.39 sq mi).
In 2012 the Economist Intelligence Unit ranked Warsaw as the 32nd most liveable city in the world. It was also ranked as one of the most liveable cities in Central Europe. Today Warsaw is considered an "Alpha–" global city, a major international tourist destination and a significant cultural, political and economic hub. Warsaw's economy, by a wide variety of industries, is characterised by FMCG manufacturing, metal processing, steel and electronic manufacturing and food processing. The city is a significant centre of research and development, BPO, ITO, as well as of the Polish media industry. The Warsaw Stock Exchange is one of the largest and most important in Central and Eastern Europe.Frontex, the European Union agency for external border security, has its headquarters in Warsaw. It has been said that Warsaw, together with Frankfurt, London, Paris and Barcelona is one of the cities with the highest number of skyscrapers in Europe. Warsaw has also been called "Eastern Europe’s chic cultural capital with thriving art and club scenes and serious restaurants".
Joy Division were an English rock band formed in 1976 in Salford, Greater Manchester. Originally named Warsaw, the band consisted of singer Ian Curtis, guitarist and keyboardist Bernard Sumner, bassist Peter Hook, and drummer Stephen Morris.
Formed by Sumner and Hook after the two attended a Sex Pistols gig, Joy Division moved beyond their punk roots to develop a sound and style that made them one of the pioneers of the post-punk movement. Their self-released 1978 debut EP, An Ideal for Living, drew the attention of the Manchester television personality Tony Wilson, who signed the group to his independent label, Factory Records. Joy Division's debut album, Unknown Pleasures, recorded with producer Martin Hannett, was released in 1979 to critical acclaim. As the band's popularity grew, Curtis, who suffered from personal problems that included severe depression, a failing marriage, and epilepsy, found it increasingly difficult to perform at live concerts, during which he occasionally collapsed into seizures.
Warsaw is the capital city of Poland.
Warsaw may also refer to:
Canada
Poland
United States
A Polish businessman risked his life to film everyday life in the Warsaw Ghetto. These harrowing 8 mm movies were stored for decades in archives, and are shown publicly for the first time in this documentary. The original title of the film is "Warsaw: A City Divided", directed by Eric Bednarski. The Warsaw Ghetto was located in the heart of the Polish capital. In November 1940, one year after Germany invaded Poland, the occupation authorities completed work on a three-meter-high wall that surrounded the ghetto. The Jewish residents were sealed off from the outside world. The ghetto was intended to serve as a concentration camp for Jews from all over Europe. They would later be deported to the extermination camp at Treblinka. As many as 500,000 people were rounded up and herded into the ...
Join me on a tour around the Warsaw Ghetto. The Warsaw Ghetto was the largest of all Jewish ghettos in German-occupied Europe during World War II. It was established by the German authorities in November 1940 in the Muranów neighborhood of the Polish capital, Warsaw, with the aim of isolating the Jewish population from the rest of the city. At its peak, the Warsaw Ghetto held over 400,000 people in an area of 1.3 square miles, leading to overcrowding, severe food shortages, and rampant disease. How to create an account on YouTube to subscribe to my channel: https://support.google.com/youtube/answer/161805?hl=en&co=GENIE.Platform%3DDesktop PLEASE CONSIDER SUPPORTING MY CHANEL SO THAT I CAN IMPROVE MY WORK: PATREON PAGE: https://www.patreon.com/Izraelmojachwala To contact me, use this email...
This video outlines day-to-day life of Jews within the ghettos during the Holocaust, featuring archival video and photographs from the World War 2 period. Topics covered include formation of ghettos, comparison between ghetto characteristics, hunger, overcrowding, disease, self-help organization, labor, smuggling and more.
If you would like to support the channel, please consider supporting; https://www.patreon.com/Disturbanhistory Few images can provide an insight as to the horrors of WW2 as well as the photo called simply “Warsaw Ghetto Boy”.
Before World War II, Warsaw was a center of Jewish life and culture in Poland. During the war, the Nazis established ghettos where they forced Jews to live under crowded and miserable conditions. At its height, the ghetto in Warsaw—the largest in Europe—held over 400,000 Jews engaged in a constant struggle for survival.
On 2 October 1940, Ludwig Fischer, Governor of the Warsaw District in the occupied General Government of Poland, signed the order to officially create a Jewish district (ghetto) in Warsaw. It was to become the largest ghetto in Nazi-occupied Europe. All Jewish people in Warsaw had to relocate to the area of the ghetto by 15 November 1940. The ghetto was sealed on that date. In total 113,000 gentile Poles were forced to resettle to the ‘Aryan side’ and were replaced by 138,000 Jews from other districts of the capital. 1. Crowds of pedestrians and street rickshaws in busy Karmelicka Street in the ghetto. 2. A Jewish man posing for the camera. 3. Street rickshaws and a tramcar carrying passengers along Leszno Street in the ghetto, summer 1941. This particular tramline was run between the Mur...
In 1943, a few hundred Jewish fighters rose up against the German army as it began its final push to erase all traces of Jewish life in the Polish capital of Warsaw. The 63-day rebellion was organised by the Polish resistance to liberate the city from Nazi occupation. Presidents and Holocaust survivors and their descendants are commemorating the 80th anniversary of the Warsaw Ghetto Uprising on Wednesday. Please subscribe here: http://bit.ly/1rbfUog #Poland #BBCNews
In 1943, the SS commenced the clearance of the largest Jewish ghetto in Europe, the Warsaw Ghetto. But they met unexpected armed resistance from Jewish organisations, determined to make the Germans pay dearly for every street and building. This is an AUDIO PROGRAMME. For videos, visit Mark Felton Productions: https://youtu.be/C7D6huURHAY Help support my channel: https://www.paypal.me/markfeltonproduction https://www.patreon.com/markfeltonproductions Disclaimer: All opinions and comments expressed in the 'Comments' section do not reflect the opinions of War Stories with Mark Felton. All opinions and comments should contribute to the dialogue. War Stories with Mark Felton does not condone written attacks, insults, racism, sexism, extremism, violence or otherwise questionable comments or ...
How to find cheap flights and travel more: https://travelforalmostfree.com/ref=beforeyougo2 // This Warsaw travel guide shares the best things to do in Warsaw. ----------------- Recommended Tours in Warsaw: Private Tour: Warsaw City Sightseeing by Retro Fiat: https://www.viator.com/tours/Warsaw/Private-Tour-Warsaw-City-Sightseeing-by-Retro-Fiat/d528-6875MUSTSEE?pid=P00104625&mcid=42383&medium=link&medium_version=selector&campaign=yt-warsaw-desc Polish Dumpling Cooking Class, Lunch or Dinner with Liqueur Tasting: https://www.viator.com/tours/Warsaw/PIEROGI-and-MORE-cooking-class/d528-118457P1?pid=P00104625&mcid=42383&medium=link&medium_version=selector&campaign=yt-warsaw-desc Everyday concerts of Chopin's music at the Old Town in Warsaw: https://www.viator.com/tours/Warsaw/Everyday-conc...
Go to our sponsor https://betterhelp.com/sammyandtommy for 10% off your first month of therapy with BetterHelp and get matched with a therapist who will listen and help. Pierogi & MORE Cooking Class: https://bit.ly/3Rq9GVV Welcome to Warsaw, Poland! We've arrived in the vibrant capital city of Poland. Join us as we immerse ourselves in the charm and allure of this captivating capital city. Thanks so much for watching and if you enjoyed this video make sure to leave us a comment and SUBSCRIBE! 💜 💞 Follow us on Instagram: https://www.instagram.com/sammyandtommy_/ ☕️ If you want a one time way to say THANK YOU! You can buy us a coffee : https://www.buymeacoffee.com/sammyandtommy #warsaw #Poland #warsawpoland #polishfood Chapters: 00:00 Intro 01:30 Castle Square & City Walk 05:17 Pierog...
STREAM: https://clnz.us/jala-brat-buba-corelli-warsaw Muzika: Jala Brat, Buba Corelli Tekst: Jala Brat, Buba Corelli Aranzman: Pablo Mix & Master: Tedi Lazarević Directed by Arnej Misirlic Director of Photography: Arnej Misirlic 1st AD: Faris Kruscica Camera operator A: Faris Kruscica Camera operator B: Malik Kurt Editor: Arnej Misirlic Colorist: Boris Andrejevic Underwater camera operator: Vladimir Mladenovic FPV Drone: Fran Kaic MUA: Ivana Plesa Light: K-Light Music Production: ® IMPERIA IMPERIA by Yellowcake, INC. Distributed & Protected By StopTalking Music Group
Today I want to talk about the pros and cons of Warsaw and why I believe this will be one of the most important European cities in the future. 💬Want a 1 on 1 consultation with me? https://whereswes.setmore.com Contact me: https://instagram.com/wesleezy/ [email protected] Please consider donating to support the channel! Venmo: @Wesleezy Paypal: paypal.me/wesleezy Patreon: patreon.com/wesleezy If you want access to my unfiltered deleted videos, consider subscribing to my Patreon! You'll get access to a lot of my older deleted videos plus be able to contact me and ask me questions. ________________________________________________________________________________________________ If you'd like to use my music in your content, sign up with Artlist here: https://artlist.io/artlist-...
Warsaw – The capital of Poland stands today as the product of some of history’s most defining events. Follow us through the city and see all the best spots to visit here. When ready, browse vacation packages to Warsaw: https://www.expedia.com/Warsaw.d178317.Destination-Travel-Guides For centuries #Warsaw has been a center of refinement and knowledge. Its strategic position has also made it one of the most invaded countries in Europe. Your #vacation here will bring you up close to the sites of these historic events in the Old Town and across Warsaw’s many monuments to the past. Enjoy more historical sites along the Royal Route. Visit St Johns Cathedral and St Anne’s Church, whose interior miraculously survived the war. One of the few statues not destroyed by the German army is the merm...
Rick Steves' Europe Travel Guide © 2004 | In the northeast corner of Europe, Poland is one of the largest countries on the Continent. We'll visit its historic capital, Kraków, side-trip to Wieliczka Salt Mine and Auschwitz-Birkenau Memorial, then head for Poland's modern capital, Warsaw. #ricksteves #ricksteveseurope #poland Visit http://www.ricksteves.com for more information about this destination and other destinations in Europe. Check out more Rick Steves’ Europe travel resources: • “Rick Steves’ Europe” public television series: https://www.ricksteves.com/watch-read-listen/video/tv-show • “Travel with Rick Steves” public radio program: https://www.ricksteves.com/watch-read-listen/audio/radio • European Tours: https://www.ricksteves.com/tours • Guidebooks: https://store.ricksteves.c...
Warsaw Capital Of Poland In 4K Ultra HD Video | Warsaw The Capital City Of Poland,IS The Capital And Largest City Of Poland | Warsaw Drone Ariel View In 4K | Warsaw City In 4K | #warsaw4k#Warsaw #4kExploreworld __________________________________________ More Videos To Click Here - Batumi 4k - https://youtu.be/f1OmdM_bWoo?si=ra6E2fs183yrzlzW Sofia 4k - https://youtu.be/5TOZflSp67o?si=kQjWQVuPOoBsy-9W Panama 4k - https://youtu.be/f8TCHJWSfuA?si=hOF8QktyuxjCFyOj Suzhou 4k - https://youtu.be/3o5M7Iqb264?si=D67tIrAN7kfCVODp Melbourne 4k - https://youtu.be/1kALrIwcipo?si=HLAMb4uOpTDYhg2V Jakarta 4k - https://youtu.be/26A7hl_FkFI?si=gYiuQVOkXOeJAGpW _________________________________________ Stay Connected Fore More Videos Every Week. To Make This Video In 4K HD Whole Footage Was Re Edite...
Watch this video ad-free on Nebula: https://nebula.tv/videos/rmtransit-this-should-be-the-standard-for-normal-cities Warsaw might be famous for its good trams, but with a solid metro, S-Trains, and even good active transport infrastructure, it should probably just be seen as a model good mobility city. Let's take a deeper look! As always, leave a comment down below if you have ideas for our future videos. Like, subscribe, and hit the bell icon so you won't miss my next video! =PATREON= If you'd like to help me make more videos & get exclusive behind the scenes access and early video releases, consider supporting my Patreon! Every dollar goes towards helping my channel grow & reach more people. Patreon: https://www.patreon.com/rmtransit =ATTRIBUTION= Epidemic Sound (Affiliate Link...
WARSAW in 2025: Why Everyone Is Talking About Warsaw! | 42 Facts You Didn't Know Welcome back to Europe In Detail! Today, we're heading to Poland, Warsaw! 🔔 Subscribe now with all notifications on for more in-depth European travel guides, hidden gems in Europe, and insightful European culture explorations! #poland #warsaw #country Watch More from Europe In Detail 🟠 VIENNA in 2025: The Weirdest City In Europe | 52 Bizarre Facts https://youtu.be/k1sGo5yhyvU?si=8jMAcd-jLp-rWuLI 🔴 PRAGUE in 2025: The Weirdest City In Europe | 50 Bizarre Facts https://youtu.be/pyQL9Rs35t4?si=PrNTqrt-9-xx68ne 🟢 ALBANIA in 2025: The Weirdest Country In The Balkans | 30 Bizarre Facts https://youtu.be/kFFKRo30_WM?si=VRSMKpU-xKDSjreQ 🔵 Life in Belgrade, Serbia in 2024! - The Land of Beautiful Fair-Skinned W...
The Polish Capital Warsaw has Great museums and a fantastic rebuilt old town with an extensive public transportation that tourists will love, however there are some issues that you will have on your visit as well. Tourism information for Warsaw. Filmed in Warsaw, Poland Copyright Mark Wolters 2018 The Don'ts of Poland https://youtu.be/zmHjuBvvZZw 10 Shocks of Visiting Poland https://youtu.be/vM93LvSDru8 A Polish Itinerary for First Time Visitors https://youtu.be/_XVyLHyBsDU Grab Wolters World Merchandise & Travel Gear at http://www.woltersworld.com/shop Help Us Keep Make More Honest Travel Videos: https://www.patreon.com/woltersworld Our Gear: Sony Alpha 6000: Our favorite camera for vlogging. One of the best selling cameras of all time and its not too expensive. https://amzn.to/...
Even with little hope of making an impact against the Germans, the fight for freedom continued. Polish Jews of the Warsaw Ghetto rose up in the face of the horrors of the Nazi Concentration Camps, German army units were needed to deal with the situation. The French Resistance was formed, and with the Dambuster Raids attacking the Industrial Ruhr, the Allied progress although was slow but sure. Produced and narrated by Liam Dale
✳ Use code YADVENTURES to get unlimited data when travelling with Holafly eSIM: https://bit.ly/Holaflyyad Is Warsaw Poland As GREAT As They Say? My First Impressions 🇵🇱 is a video where I travel to Warsaw Poland. Join me as I explore Warsaw, the vibrant capital of Poland! From its stunning historic architecture to the bustling modern streets, Warsaw is a city rich in culture and history. But is it really as great as everyone says? In this video, I’ll share my first impressions of this fascinating city, visiting iconic landmarks, trying local cuisine, and diving into the local vibe. Whether you're planning a trip or just curious about what Warsaw has to offer, this video will give you a taste of what makes this city so unique. Don't forget to like, comment, and subscribe for more travel a...
Born herself in Warsaw, travel vlogger @evazubeck knows the city like the back of her hand. She has some insider travel tips for us! Starting off in the old town and winding up in traditional brush maker’s store, her tour is a very personal journey through the Polish capital. Eva shows us modern, alternative, and innovative aspects of the place – introducing us to historical sites as well as people and places that are the lifeblood of this Eastern European metropolis. 00:00 Intro 00:53 The old town 01:40 Museum of Life under Communism 06:21 Eating pierogi 07:21 Praga district 09:04 Street art tour in the Praga district 12:33 Vegan restaurant in the Frascati neighborhood 13:50 Traditional brush-maker’s shop 17:00 Polish donuts --------------------------------------------------------------...
Best Places to Visit in Warsaw Poland | Warsaw Travel Guide 2024 | Things to do in Warsaw Poland Discover the best places to visit in Warsaw with our comprehensive travel guide! From historic landmarks and vibrant cultural spots to picturesque parks and bustling markets, Warsaw offers a captivating mix of old-world charm and modern attractions. Dive into the rich history, explore the thriving art scene, and enjoy the city's unique atmosphere. Whether you're a history buff, art enthusiast, foodie, or just looking for an exciting urban adventure, Warsaw has something for everyone. Join us as we uncover the top attractions and hidden gems of this beautiful city. Don't forget to like, comment, and subscribe for more travel inspiration! #WarsawTravel #VisitWarsaw #ExploreWarsaw #WarsawAttract...
The Normal is the recording artist name used by English music producer Daniel Miller, a film editor at the time, who is best known as the founder of the record label Mute Records.
In 1977, Miller had split up with his girlfriend. A friend suggested that he read a book he himself had just finished. The book was Crash (1973) by J.G. Ballard. He felt that Ballard's writing took him five minutes into the future; the novel was to be a major influence in the music he would produce as The Normal. Miller was disillusioned by the fact you needed to learn three chords to be in a punk band, so he decided to purchase a synthesiser. His thinking was that you only needed to learn to press one key on a synthesiser. After buying a Korg 700s synthesiser from Macari's music shop in London, Miller recorded and released a single under the name The Normal. This was "T.V.O.D."/"Warm Leatherette". Both tracks were minimalist electronic songs influenced by the Crash novel. He wanted the sound of the recordings to be visual, like driving along a highway between large buildings then going through a tunnel. The single was recorded in Daniel Miller's house using a TEAC four track tape recorder and the Korg mini700s synthesiser.