- published: 07 Feb 2023
- views: 33981
'+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; })); }); -->
John Zorn (born September 2, 1953) is an American avant-garde composer, arranger, producer, saxophonist and multi-instrumentalist with hundreds of album credits as performer, composer, and producer across a variety of genres including jazz, rock, hardcore, classical, surf, metal, klezmer, soundtrack, ambient and improvised music. He incorporates diverse styles in his compositions which he identifies as avant-garde or experimental. Zorn was described by Down Beat as "one of our most important composers".
Zorn established himself within the New York City downtown music movement in the mid-1970s performing with musicians across the sonic spectrum and developing experimental methods of composing new music. After releasing albums on several independent US and European labels, Zorn signed with Elektra Nonesuch and received wide acclaim with the release of The Big Gundown, an album reworking the compositions of Ennio Morricone. He attracted further attention worldwide with the release of Spillane in 1987, and Naked City in 1989. After spending almost a decade travelling between Japan and the US he made New York his permanent base and established his own record label, Tzadik, in the mid-1990s.
The Rijksmuseum (Dutch pronunciation: [ˈrɛiksmyˌzeːjʏm]; English: Imperial Museum) is a Netherlands national museum dedicated to arts and history in Amsterdam. The museum is located at the Museum Square in the borough Amsterdam South, close to the Van Gogh Museum, the Stedelijk Museum Amsterdam, and the Concertgebouw.
The Rijksmuseum was founded in The Hague in 1800 and moved to Amsterdam in 1808, where it was first located in the Royal Palace and later in the Trippenhuis. The current main building was designed by Pierre Cuypers and first opened its doors in 1885. On 13 April 2013, after a ten-year renovation which cost € 375 million, the main building was reopened by Queen Beatrix. In 2013 and 2014, it was the most visited museum in the Netherlands with record numbers of 2.2 million and 2.45 million visitors.
The museum has on display 8,000 objects of art and history, from their total collection of 1 million objects from the years 1200–2000, among which are some masterpieces by Rembrandt, Frans Hals, and Johannes Vermeer. The museum also has a small Asian collection which is on display in the Asian pavilion.
Rijksmuseum (English: State Museum) is the general name for a national museum in the Dutch language.
When only "Rijksmuseum" is used, it usually refers to the Rijksmuseum in Amsterdam.
In the Netherlands these are the following current and former Rijksmuseums, sorted by place name:
BOOK TICKETS ► https://www.kqzyfj.com/click-9142358-14323490?sid=youtube&url=https%3A%2F%2Fwww.tiqets.com%2Fen%2Famsterdam-attractions-c75061%2Ftickets-for-rijksmuseum-skip-the-ticket-line-p703796%2F The Rijksmuseum is a must-visit when you are in Amsterdam. This museum has a great collection of art by Dutch masters, but it is also a great place to visit for people who are not art aficionados. In this video, we will explain what to expect from this museum and give some tips. Point out some of the most worthwhile things to see, and give some recommendations on how to get the most out of your visit. AMSTERDAM TRAVEL ESSENTIALS Join our FREE travel newsletter: https://viatravelers.com/vt-newsletter Best Places to Stay in Amsterdam: https://www.booking.com/city/nl/amsterdam.html?aid=222730...
travel videos & photos at: https://townsofeurope.com/ with text, maps & links. The Rijksmuseum in Amsterdam, the Netherlands is a huge world-famous collection presented in 80 galleries, exhibiting 8,000 objects that tell the story of 800 years of Dutch art and history. This collection focuses primarily on Dutch paintings of the 16th and 17th centuries, rather than trying to present a complete sample of the entire world of art. The museum has a lot to show, thanks especially to the extreme genius of great native painters, Frans Hals, Vermeer, van Ruisdael, Jan Steen, and most-famously, Rembrandt. Don’t miss out on the absolute highlights, like Vermeer’s Milkmaid, Van Gogh’s Self-portrait and a gorgeous collection of Delft Blue pottery ranging from tea sets to vases, The total archive in...
The Rijksmuseum is Netherlands' premiere museum housing works from historic artifacts from famous painting by the Dutch Masters! #netherlands #museum
More info about travel to Amsterdam: https://www.ricksteves.com/europe/netherlands/amsterdam The Rijksmuseum in Amsterdam, Netherlands, is one of the artistic highlights of Europe. It was built to showcase the art of the Dutch Golden Age. #ricksteveseurope #netherlands #amsterdam 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.com/shop/guidebooks • Travel Gear: https://stor...
Vanaf 19 september 2014 is online een nieuwe campagne van het Rijksmuseum gestart met een 1 minuut en 30 seconden durende film die de magie van het Rijksmuseum laat zien. De film zal in een 30 seconden-versie drie weken lang op NPO en RTL te zien zijn en in een 1 minuut versie op CNN Nederland. Productie: SkipIntro Regie: Mattias Schut Muziek: Sietse van Gorkum en Sebastiaan Roestenburg Het ontwikkelen en uitzenden van de commercial is mogelijk gemaakt dankzij de genereuze steun van ING, hoofdsponsor van het Rijksmuseum en Eye Wish Opticiens.
In 2003, the ambitious renovation of one of the world's greatest museums began. The Rijksmuseum in Amsterdam, home to a glorious collection including masterpieces by Rembrandt and Vermeer, was supposed to reopen its doors in 2008 after five years of construction. But from the start, the project was opposed by unyielding bureaucrats and public resistance.
Nearly 350 years after his death, Dutch painter Johannes Vermeer is about to attract hundreds of thousands of visitors to a gallery in Amsterdam. Dozens of his paintings have been brought together from around the world for a new exhibition. Al Jazeera’s Step Vaessen reports from Amsterdam, the Netherlands. Subscribe to our channel: http://bit.ly/AJSubscribe Follow us on Twitter https://twitter.com/AJEnglish Find us on Facebook https://www.facebook.com/aljazeera Check our website: http://www.aljazeera.com/ Check out our Instagram page: https://www.instagram.com/aljazeeraenglish/ #Amsterdam #Rijksmuseum #JohnnesVermeer #VermeerExhibition #Artwork
Rijksmuseum is the national museum of the Netherlands dedicated to Dutch arts and history and is located in Amsterdam. More than thirty galleries are devoted to the prosperous Dutch Golden Age, when the young merchant republic enjoyed its heyday as a world leader in trade, science and scholarship and the art of war and the fine arts. It is also the largest art museum in the country. The museum has on display 8,000 objects of art and history, from their total collection of 1 million objects from the years 1200–2000, among which are some masterpieces by Rembrandt, Frans Hals, and Johannes Vermeer. The museum also has a small Asian collection, which is on display in the Asian pavilion. #Rijksmuseum #DutchGoldenAge #Amsterdam
Ice skating in Amsterdam as Dutch capital embraces Christmas season Amsterdam is in full Christmas swing as people ice skated in the middle of the Dutch capital at Rembrandtplein. A Christmas market has been installed in from of the Rijksmuseum, with people shopping for goodies and sipping on mulled wine. REUTERS VIDEO Subscribe to The Manila Times Channel - https://tmt.ph/YTSubscribe Visit our website at https://www.manilatimes.net Follow us: Facebook - https://tmt.ph/facebook Instagram - https://tmt.ph/instagram Twitter - https://tmt.ph/twitter DailyMotion - https://tmt.ph/dailymotion Subscribe to our Digital Edition - https://tmt.ph/digital Check out our Podcasts: Spotify - https://tmt.ph/spotify Apple Podcasts - https://tmt.ph/applepodcasts Amazon Music - https...
http://www.youtube.com/playlist?list=PLM4S2hGZDSE7K74CcRu6AF-bDIxjXjuPy First broadcast: 18 Apr 2013. Andrew Graham-Dixon goes behind the scenes at the Rijksmuseum as the staff prepare to open the doors following a ten-year renovation, the most significant ever undertaken by a museum. Featuring over 8,000 works of art, Holland's national museum tells the story of 800 years of Dutch history and houses a world-famous collection including masterpieces by artists from Vermeer to Rembrandt. So, as the final paintings are rehung and objects settle into their new home, has the long wait been worth it?
In this video, I talk about 5 tips you need to know before visiting the Rijksmuseum in Amsterdam. These aren’t tips on what specific artwork to see, but more practical tips on making your overall experience there more enjoyable. Just a small note about backpacks. I contacted the Rijksmuseum about this, and they advise that any backpacks are checked into the cloak room. Alternatively there are of course the lockers as well. Thank you for watching this video. TO SUPPORT MY CHANNEL Buy me a coffee: https://www.buymeacoffee.com/pocketlighthse Thank you so much ❤️ ABOUT ME Hello there! My name is Daniella Perera and I’m an artist and vlogger based in Amsterdam, the Netherlands. I grew up in Hong Kong and the UK, and I’m of mixed heritage including Chinese, Sri-Lankan, Dutch and Portugue...
Tras una extensa renovación que duró diez años, el museo nacional de arte holandés en Ámsterdam reabrió en 2013. El magnífico Rijksmuseum, uno de los museos más importantes del mundo, hogar de Rembrandt a Vermeer, se renovó del todo. A lo largo de 10 años se filman las batallas entre el director del museo, conservadores, políticos y diseñadores. Mientras tanto, se presentan al espectador algunas de las mayores obras de arte de todos los tiempos y se pone el foco en la misión de la arquitectura y del arte. Dirección: Oeke Hoogendijk Países Bajos, 2014 #FundaciónlaCaixa #CaixaForum #Cultura -- Síguenos en nuestras redes sociales: Twitter: https://twitter.com/FundlaCaixa Facebook: https://www.facebook.com/fundlacaixa/ Instagram: https://www.instagram.com/fundlacaixa Linkedin: https://...
Did you know Vincent van Gogh was an admirer of the Rijksmuseum? Three of his paintings are now on view at the museum. And one of these paintings hides a special secret! 🤫 🖼 Vincent van Gogh (1853-1890), View of Amsterdam from Central Station, 1885. On loan from the P. en N. de Boer foundation, 2024 🚨Discover more of our Stories: http://www.rijksmuseum.nl/.../exhibitions/3x-van-gogh/
Eight art conservators have begun a painstaking process to remove a layer of varnish from Rembrandt's giant "Night Watch" masterpiece to reveal its original depth and colour. The task, which could last years, began on Tuesday at the national Rijksmuseum gallery in Amsterdam. #Rembrandt #art #NightWatch 🔔 Subscribe to France 24 now: https://f24.my/YTen 🔴 LIVE - Watch FRANCE 24 English 24/7 here: https://f24.my/YTliveEN 🌍 Read the latest International News and Top Stories: https://www.france24.com/en/ Like us on Facebook: https://f24.my/FBen Follow us on X (Twitter): https://f24.my/Xen Browse the news in pictures on Instagram: https://f24.my/IGen Discover our TikTok videos: https://f24.my/TKen Get the latest top stories on Telegram: https://f24.my/TGen
John Zorn (born September 2, 1953) is an American avant-garde composer, arranger, producer, saxophonist and multi-instrumentalist with hundreds of album credits as performer, composer, and producer across a variety of genres including jazz, rock, hardcore, classical, surf, metal, klezmer, soundtrack, ambient and improvised music. He incorporates diverse styles in his compositions which he identifies as avant-garde or experimental. Zorn was described by Down Beat as "one of our most important composers".
Zorn established himself within the New York City downtown music movement in the mid-1970s performing with musicians across the sonic spectrum and developing experimental methods of composing new music. After releasing albums on several independent US and European labels, Zorn signed with Elektra Nonesuch and received wide acclaim with the release of The Big Gundown, an album reworking the compositions of Ennio Morricone. He attracted further attention worldwide with the release of Spillane in 1987, and Naked City in 1989. After spending almost a decade travelling between Japan and the US he made New York his permanent base and established his own record label, Tzadik, in the mid-1990s.
I wish I could live free
Hope it's not beyond me
Settling down takes time
One day we'll live together
And life will be better
I have it here, yeah, in my mind
Baby, you know someday you'll slow
And baby, my hearts been breaking.
I gave a lot to you
I take a lot from you too
You slave a lot for me
Guess you could say I gave you my edge
But I can't pretend I don't need to defend some part of me from you
I know I've spent some time lying
You're looking all right tonight