- published: 14 Aug 2023
- views: 144870
'+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; })); }); -->
Warsaw Autumn (Warszawska Jesień) is the largest international Polish festival of contemporary music. Indeed, for many years, it was the only festival of its type in Central and Eastern Europe. It was founded in 1956 by two composers, Tadeusz Baird and Kazimierz Serocki, and officially established by the Head Board of the Polish Composers' Union. It is an annual event, normally taking place in the second half of September and lasts for 8 days.
The first festival took place in 10–20 October 1956. In 1957 and 1982 there was no festival.
The first years of the festival, reaching back to the late 1980s, was a period of particular magnificence. From the beginning of its existence the festival's program foundations were clear. The festival's leading aim was (and is) to present new music from Poland and around the world. Adrian Thomas notes that the music performed at Warsaw Autumn between 1958 and 1961 "clearly charts the process of informing Polish audiences and composers of what was happening in the West (Thomas 2005, 89). At the same time, the amount of Polish repertoire increased from 25% in 1958 to 30% in 1961 (Thomas 2005, 90).
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
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...
Official video for Love Will Tear Us Apart by Joy Division. Stream Joy Division's greatest hits here ▶ https://lnk.to/JoyDivisionHitsAY Subscribe here ▶http://youtube.com/joydivisionofficial?sub_confirmation=1 Socials: Facebook | https://www.facebook.com/JoyDivisionOfficial/ Twitter | https://twitter.com/joydivision Instagram|https://www.instagram.com/officialjoydivision/ Website|http://joydivisionofficial.com/ Watch Joy Division other official music videos ▶ https://lnk.to/JoyDivisionYTPlaylist Lyrics When routine bites hard And ambitions are low And resentment rides high But emotions won't grow And we're changing our ways, taking different roads Then love, love will tear us apart again Love, love will tear us apart again Why is the bedroom so cold? You've turned away on your...
Official video for Transmission by Joy Division. Stream Joy Division's greatest hits here ▶ https://lnk.to/JoyDivisionHitsAY Subscribe here ▶ http://youtube.com/joydivisionofficial?sub_confirmation=1 Socials: Facebook | https://www.facebook.com/JoyDivisionOfficial/ Twitter | https://twitter.com/joydivision Instagram| https://www.instagram.com/officialjoydivision/ Website| http://joydivisionofficial.com/ Watch Joy Division other official music videos ▶ https://lnk.to/JoyDivisionYTPlaylist Lyrics Radio, live transmission Radio, live transmission Listen to the silence, let it ring on Eyes, dark grey lenses frightened of the sun We would have a fine time living in the night Left to blind destruction, waiting for our sight And we would go on as though nothing was wrong And hide from...
Provided to YouTube by London Records Disorder (2007 Remaster) · Joy Division Unknown Pleasures ℗ 1979, 2007 Warner Music UK Ltd Guitar: Bernard Sumner Engineer: Chris Nagle Lead Vocals: Ian Curtis Unknown: Jon Davis Performance: Joy Division Producer: Martin Hannett Bass Guitar: Peter Hook Background Vocals: Peter Hook Drums: Stephen Morris Writer: Bernard Sumner Writer: Ian Curtis Writer: Peter Hook Writer: Stephen Morris Auto-generated by YouTube.
Joy Division - Disorder 1979
Official video for the 1995 remastered version of Love Will Tear Us Apart by Joy Division. Stream Joy Division's greatest hits here ▶ https://lnk.to/JoyDivisionHitsAY Subscribe here ▶ https://www.youtube.com/user/joydivisionofficial?sub_confirmation=1 Socials: Facebook | https://www.facebook.com/JoyDivisionO... Twitter | https://twitter.com/joydivision Instagram | https://www.instagram.com/officialjoy... Website | http://joydivisionofficial.com/ Watch Joy Division other official music videos ▶ https://lnk.to/JoyDivisionYTPlaylist Lyrics When routine bites hard And ambitions are low And resentment rides high But emotions won't grow And we're changing our ways, taking different roads Then love, love will tear us apart again Love, love will tear us apart again Why is the bedroom so...
Official video for Atmosphere by Joy Division. Stream Joy Division's greatest hits here ▶ https://lnk.to/JoyDivisionHitsAY Subscribe here ▶ http://youtube.com/joydivisionofficial?sub_confirmation=1 Socials: Facebook | https://www.facebook.com/JoyDivisionOfficial/ Twitter | https://twitter.com/joydivision Instagram|https://www.instagram.com/officialjoydivision/ Website|http://joydivisionofficial.com/ Watch Joy Division other official music videos ▶ https://lnk.to/JoyDivisionYTPlaylist Lyrics Walk in silence Don't walk away, in silence See the danger Always danger Endless talking Life rebuilding Don't walk away Walk in silence Don't turn away, in silence Your confusion My illusion Worn like a mask of self-hate Confronts and then dies Don't walk away People like you find it easy ...
Joy Division Live At Something Else Show In September 1979 Source: BBC Four Song: She's Lost Control From The Album: Unknown Pleasures
Here's the big one! Peter Hook & The Light rocking the Paradise. If you like this video, please “Smash” the THUMBS UP button, leave a COMMENT, and SUBSCRIBE to my channel. Thanks! As always, SUPPORT LIVE MUSIC!!! #joydivision #peterhook #neworder #deadsouls #postpunk #goth #thecrow #boston #theparadise #warsaw #transmission
Provided to YouTube by London Records New Dawn Fades (2007 Remaster) · Joy Division Unknown Pleasures ℗ 1979, 2007 Warner Music UK Ltd Guitar: Bernard Sumner Engineer: Chris Nagle Lead Vocals: Ian Curtis Unknown: Jon Davis Producer: Martin Hannett Bass Guitar: Peter Hook Background Vocals: Peter Hook Drums: Stephen Morris Writer: Bernard Sumner Writer: Ian Curtis Writer: Peter Hook Writer: Stephen Morris Auto-generated by YouTube.
Provided to YouTube by Rhino Digital (2010 Remaster) · Joy Division Substance ℗ 1978, 2010 Warner Music UK Ltd Guitar, Synthesizer: Bernard Sumner Unknown: Chris Nagle Guitar: Ian Curtis Lead Vocals: Ian Curtis Unknown: Jon Caffery Unknown: Jon Davis Unknown, Producer: Martin Hannett Unknown: Michael Johnson Bass Guitar: Peter Hook Drums: Stephen Morris Writer: Bernard Sumner Writer: Ian Curtis Writer: Peter Hook Writer: Stephen Morris Auto-generated by YouTube.
#HenryRollins recommends the album #UnknownPleasures by #JoyDivision. Find over 25,000 records here: https://thesoundofvinyl.us Share your favorite album on socials! Use the hashtag #MySoundOfVinyl #TheSoundOfVinyl #Vinyl #RecordCollectors
Edited with footage from "Control" and "24 Hour Party People"
40th Anniversary Remaster! Full remastered, color-corrected and upscaled to 1080p / 50fps Joy Division live at "Granada Reports", Granada TV 20th of September 1978 Their first TV appearance! Introduced by Bob Greaves and Anthony "Tony" Wilson We planned to post it on the 20th of September but didn't have time due to the complexity of some works. We hope you'll enjoy unseen previously videos and the best possible quality. Credits: Reamstering of video & audio, mixing & synced by Fage Colour-correction, opening & titles by Fadedge (aka Sin Nerv)
Warsaw Autumn (Warszawska Jesień) is the largest international Polish festival of contemporary music. Indeed, for many years, it was the only festival of its type in Central and Eastern Europe. It was founded in 1956 by two composers, Tadeusz Baird and Kazimierz Serocki, and officially established by the Head Board of the Polish Composers' Union. It is an annual event, normally taking place in the second half of September and lasts for 8 days.
The first festival took place in 10–20 October 1956. In 1957 and 1982 there was no festival.
The first years of the festival, reaching back to the late 1980s, was a period of particular magnificence. From the beginning of its existence the festival's program foundations were clear. The festival's leading aim was (and is) to present new music from Poland and around the world. Adrian Thomas notes that the music performed at Warsaw Autumn between 1958 and 1961 "clearly charts the process of informing Polish audiences and composers of what was happening in the West (Thomas 2005, 89). At the same time, the amount of Polish repertoire increased from 25% in 1958 to 30% in 1961 (Thomas 2005, 90).