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

Eva Eastwood

Eva Östlund better known by her stage name Eva Eastwood (born in Örebro, Sweden on 25 September 1967), is a Swedish songwriter and singer who sings rockabilly and rock'n'roll songs.

Although she was offered a contract in the United States in 1997, she chose to go back home and soon after formed the band The Major Keys and made releases crediting Eva Eastwood and the Major Keys through the small Tail Records label based in Jönköping

In 2005, she took part in Allsång på Skansen, a sing-along TV show from Skansen performing "Vårt liv i repris" from her album En ny stil i stan proving to be a turning point in her career. Eva won the Millencolin Music Prize 2010 becoming the first woman to do so. In 2011, she returned to the same stage singing the title track "Lyckost" from her similarly named album.

As a songwriter, she has composed over 800 songs, including the likes of The Boppers, Linda Gail Lewis, Lalla Hansson, Berth Idoffs, Jerry Williams and Larz-Kristerz.

Discography

Albums

I'll Be Gone

"I'll Be Gone" is a song by American rock band Linkin Park from their fifth studio album, Living Things. The song was written by the band and produced by co-lead vocalist Mike Shinoda and Rick Rubin. The song features strings by Arcade Fire arranger Owen Pallett. It entered the UK Rock Singles Charts at number 26 and was added to the playlist of Los Angeles modern rock station KROQ on December 5, 2012.

Composition

"I'll Be Gone" has been said to leave you with dampened spirits due to the depressive feel of the track. AltSounds describes the song as a "guitar heavy number with solid drumming from Rob" and that is "building upon their (Linkin Park's) now quite signature futuristic sound".Billboard mentions that this track is a "compelling descent that recalls 90s modern rock heroes like Alice In Chains and Stone Temple Pilots."

On November 14, 2013, Linkin Park released an old demo of "I'll Be Gone", titled "Primo (I'll Be Gone - Longform 2010 Demo)", on their official Tumblr page as part of promotion for their collection of songs for their fan club, the Linkin Park Underground. The demo was chosen to be featured as the third track on the LP Underground 13.0 album.

I'll Be Gone (Spectrum song)

"I'll Be Gone" or "Some Day I'll Have Money" is a song by Australian progressive rock group Spectrum released as their debut single by EMI on Harvest Records in January 1971. It peaked at #1 on the national singles chart, while it reached Top 5 in Melbourne, Sydney and Brisbane. The song was written by guitarist and vocalist Mike Rudd, and produced by Howard Gable. The B-side, "Launching Place Part Two" was written to promote a music festival. Spectrum never repeated the success of "I'll Be Gone".

Background

Spectrum was formed in Melbourne in 1969 by Mike Rudd, a New Zealand-born singer, songwriter and guitarist (ex-Chants R&B, The Party Machine, Sons of the Vegetal Mother), together with bassist Bill Putt (Gallery, The Lost Souls), organist Lee Neale (ex-Nineteen 87), and drummer Mark Kennedy. Spectrum played covers of Traffic, Soft Machine and Pink Floyd initially, they then developed their own style and wrote a set of original material. Just prior to being signed up by EMI, Spectrum cut a demo single which they hawked to record companies as a 7" acetate. One side was an early, folky version of "I'll Be Gone", according to rock historian Ian McFarlane, these acetates are now "impossibly rare" and only two or three copies are known to have survived.

I'll Be Gone (disambiguation)

"I'll Be Gone" is a song by Linkin Park.

I'll Be Gone may also refer to:

  • "I'll Be Gone (Spectrum song)", 1971
  • "I'll Be Gone", a song by Dwight Yoakam from his 1986 album Guitars, Cadillacs, Etc., Etc.
  • "I'll Be Gone", a song by Tom Waits from his 1987 album Franks Wild Years
  • "I'll Be Gone", a song by Clint Black from his 1989 album Killin' Time
  • "I'll Be Gone (Avicii song)", 2015
  • Podcasts:

    Eva Eastwood

    ALBUMS

    Eva Eastwood & The Major Keys

    ALBUMS

    • Eva Eastwood & The Boppers "They Never Know"

      Eva Eastwood & The Boppers spelar sin nya låt "They Never Know" på Bingolotton 2015-05-10

      published: 11 May 2015
    • Eva Eastwood - Rockabillymedley - Live BingoLotto 9/5 2021

      Rockabillydrottningen Eva Eastwood gästade BingoLotto den 9 maj och framförde ett Rockabillymedley.

      published: 10 May 2021
    • Larz-Kristerz & Eva Eastwood - Hjärtat bankar

      (C) 2011 Sony Music Entertainment Sweden AB http://www.larzkristerz.com/ http://www.facebook.com/LarzKristerz

      published: 11 Jan 2012
    • Eva Eastwood - Rockabilly Willy

      Liveinspelning med Eva Eastwood i Valsverket Degerfors 2004. Eva sjunger Rockabilly Willy tillsammans med Kvinnaböske Band.

      published: 10 May 2023
    • Eva Eastwood - Lyckans ost

      Eva Eastwood - Lyckans ost

      published: 21 Feb 2012
    • Eva Eastwood "My My My" på Bingolotto 16 Maj 2010

      Eva Eastwood spelade titellåten från albumet "Well Well Well" på Bingolotto.

      published: 18 May 2010
    • Eva Eastwood & The Major Keys - En riktig gran - Go’kväll SVT 2023

      Från 17 December

      published: 17 Dec 2023
    • Bli Min

      Provided to YouTube by The Orchard Enterprises Bli Min · Eva Eastwood Lyckost ℗ 2011 Darrow Entertainment AB Released on: 2011-04-20 Producer: Fredric Björegren Music Publisher: BMG Rights Chrysalis Auto-generated by YouTube.

      published: 13 Jan 2019
    • Eva Eastwood - Lyckost

      Detta är titelspåret från Evas nya album"Lyckost",Darrow BLCD 40, 2011. Text och musik Eva Eastwood.

      published: 22 Apr 2011
    • Eva Eastwood - Old School - Live BingLotto 9/5 2021

      Rockabillydrottningen Eva Eastwood gästade BingoLotto den 9 maj och framförde "Old School"

      published: 10 May 2021
    developed with YouTube
    Eva Eastwood & The Boppers "They Never Know"
    2:47

    Eva Eastwood & The Boppers "They Never Know"

    • Order:
    • Duration: 2:47
    • Uploaded Date: 11 May 2015
    • views: 432980
    Eva Eastwood & The Boppers spelar sin nya låt "They Never Know" på Bingolotton 2015-05-10
    https://wn.com/Eva_Eastwood_The_Boppers_They_Never_Know
    Eva Eastwood - Rockabillymedley - Live BingoLotto 9/5 2021
    4:00

    Eva Eastwood - Rockabillymedley - Live BingoLotto 9/5 2021

    • Order:
    • Duration: 4:00
    • Uploaded Date: 10 May 2021
    • views: 20959
    Rockabillydrottningen Eva Eastwood gästade BingoLotto den 9 maj och framförde ett Rockabillymedley.
    https://wn.com/Eva_Eastwood_Rockabillymedley_Live_Bingolotto_9_5_2021
    Larz-Kristerz & Eva Eastwood - Hjärtat bankar
    3:12

    Larz-Kristerz & Eva Eastwood - Hjärtat bankar

    • Order:
    • Duration: 3:12
    • Uploaded Date: 11 Jan 2012
    • views: 1250153
    (C) 2011 Sony Music Entertainment Sweden AB http://www.larzkristerz.com/ http://www.facebook.com/LarzKristerz
    https://wn.com/Larz_Kristerz_Eva_Eastwood_Hjärtat_Bankar
    Eva Eastwood - Rockabilly Willy
    2:40

    Eva Eastwood - Rockabilly Willy

    • Order:
    • Duration: 2:40
    • Uploaded Date: 10 May 2023
    • views: 5704
    Liveinspelning med Eva Eastwood i Valsverket Degerfors 2004. Eva sjunger Rockabilly Willy tillsammans med Kvinnaböske Band.
    https://wn.com/Eva_Eastwood_Rockabilly_Willy
    Eva Eastwood - Lyckans ost
    2:29

    Eva Eastwood - Lyckans ost

    • Order:
    • Duration: 2:29
    • Uploaded Date: 21 Feb 2012
    • views: 107838
    Eva Eastwood - Lyckans ost
    https://wn.com/Eva_Eastwood_Lyckans_Ost
    Eva Eastwood "My My My" på Bingolotto 16 Maj 2010
    2:54

    Eva Eastwood "My My My" på Bingolotto 16 Maj 2010

    • Order:
    • Duration: 2:54
    • Uploaded Date: 18 May 2010
    • views: 185867
    Eva Eastwood spelade titellåten från albumet "Well Well Well" på Bingolotto.
    https://wn.com/Eva_Eastwood_My_My_My_På_Bingolotto_16_Maj_2010
    Eva Eastwood & The Major Keys - En riktig gran - Go’kväll SVT 2023
    2:41

    Eva Eastwood & The Major Keys - En riktig gran - Go’kväll SVT 2023

    • Order:
    • Duration: 2:41
    • Uploaded Date: 17 Dec 2023
    • views: 2426
    Från 17 December
    https://wn.com/Eva_Eastwood_The_Major_Keys_En_Riktig_Gran_Go’Kväll_Svt_2023
    Bli Min
    2:48

    Bli Min

    • Order:
    • Duration: 2:48
    • Uploaded Date: 13 Jan 2019
    • views: 15072
    Provided to YouTube by The Orchard Enterprises Bli Min · Eva Eastwood Lyckost ℗ 2011 Darrow Entertainment AB Released on: 2011-04-20 Producer: Fredric Björegren Music Publisher: BMG Rights Chrysalis Auto-generated by YouTube.
    https://wn.com/Bli_Min
    Eva Eastwood  -  Lyckost
    2:30

    Eva Eastwood - Lyckost

    • Order:
    • Duration: 2:30
    • Uploaded Date: 22 Apr 2011
    • views: 236039
    Detta är titelspåret från Evas nya album"Lyckost",Darrow BLCD 40, 2011. Text och musik Eva Eastwood.
    https://wn.com/Eva_Eastwood_Lyckost
    Eva Eastwood - Old School - Live BingLotto 9/5 2021
    2:44

    Eva Eastwood - Old School - Live BingLotto 9/5 2021

    • Order:
    • Duration: 2:44
    • Uploaded Date: 10 May 2021
    • views: 4977
    Rockabillydrottningen Eva Eastwood gästade BingoLotto den 9 maj och framförde "Old School"
    https://wn.com/Eva_Eastwood_Old_School_Live_Binglotto_9_5_2021
    • Spectrum - I'll Be Gone (1971)

      Someday I'll have money Money isn't easy to come by By the time it's come by I'll be gone I'll sing my song and I'll be gone Someday I'll have loving Loving isn't easy to come by By the time it's come by I'll be gone I'll sing my song and I'll be gone Living a life of luxury Doesn't seem to be for me That's not for me Moving around comes naturally Moving around and feeling free That's for me Someday I'll have loving Loving isn't easy to come by By the time it's come by I'll be gone I'll sing my song and I'll be gone Living a life of luxury Doesn't seem to be for me That's not for me Moving around comes naturally Moving around and feeling free That's for me Someda-a-ay I'll have loving Loving isn't e-easy to come by-y I'll be gone I'll be go-one.. I'll be go-o-o-o-one...

      published: 27 Apr 2013
    • Spectrum - I'll Be Gone (stereo)

      Spectrum's original Chris Lofven directed I'll Be Gone clip re-striped with the stereo edit - and at the right speed, courtesy of the National Film & Sound Archives and Flagstaff Studios.

      published: 13 Jan 2009
    • Spectrum - I'll Be Gone (official music video)

      An absolute Australian classic, which went to #1 on the national charts in 1971. 'I'll Be Gone' still resonates today, as much as it did then, about life for the average Australian.

      published: 29 Aug 2017
    • Spectrum - I'll Be Gone

      To the Australian public at large, Spectrum will always be remembered for the 1971 #1 hit 'I'll Be Gone', an enduring rock classic if ever there was one. As song writer and Spectrum lynchpin Mike Rudd has put it "'I'll Be Gone' has had a marvellous life", with indications that its potency will continue to rise. It still gets played on Australian 'Classic Hits' radio to this day. Spectrum still play the song at practically ever gig with the enthusiastic, sing-along response of the audience inevitable; a perfect example of this was the band's appearance at the 2002 arena rock spectacular Long Way to The Top. The sound of an entire concert audience singing the song's rousing refrain at full voice, with little encouragement, was indeed magnificent. While the song's appeal is unquestionable...

      published: 19 Aug 2007
    • Spectrum - I'll Be Gone 1971 ( colourised)

      "I'll Be Gone" or "Some Day I'll Have Money" is a song by Australian progressive rock group Spectrum released as their debut single by EMI on Harvest Records in January 1971.[1] It peaked at #1 on the national singles chart,[2] while it reached Top 5 in Melbourne, Sydney and Brisbane. The song was written by guitarist and vocalist Mike Rudd,[3] and produced by Howard Gable.[1] The B-side, "Launching Place Part Two" was written to promote a music festival. Spectrum never repeated the success of "I'll Be Gone" https://en.wikipedia.org/wiki/I%27ll_Be_Gone_(Spectrum_song)

      published: 20 Apr 2020
    • Spectrum's 'I'll Be Gone' on RockWiz. John Williamson & The McClymont Sisters

      Broadcast by SBS on January 21 2013. Watch and listen to this unique and flawless performance. Last not least the magnificent RockWiz Orchestra. You can watch the whole show on http://www.sbs.com.au/news/video/11840579591/Rockwiz-S10-Ep131-McClymont-Sisters-and-John-Willi

      published: 08 Jun 2016
    • Spectrum - I'll Be Gone (alt. version)

      This is mimed to an alternative edit of I'll Be Gone on the Adelaide TV show, Move, probably in 1971. We appear to be quite relaxed..

      published: 03 Jul 2009
    • Spectrum - I'll Be Gone, 1971 Stereo Atco 45.

      Atco 45 - 6832. Promo 45 rpm stereo version side. Transferred with stereo gear shown on featured channel video and background photo.

      published: 10 Oct 2015
    developed with YouTube
    Spectrum - I'll Be Gone (1971)
    3:29

    Spectrum - I'll Be Gone (1971)

    • Order:
    • Duration: 3:29
    • Uploaded Date: 27 Apr 2013
    • views: 319591
    Someday I'll have money Money isn't easy to come by By the time it's come by I'll be gone I'll sing my song and I'll be gone Someday I'll have loving Loving isn't easy to come by By the time it's come by I'll be gone I'll sing my song and I'll be gone Living a life of luxury Doesn't seem to be for me That's not for me Moving around comes naturally Moving around and feeling free That's for me Someday I'll have loving Loving isn't easy to come by By the time it's come by I'll be gone I'll sing my song and I'll be gone Living a life of luxury Doesn't seem to be for me That's not for me Moving around comes naturally Moving around and feeling free That's for me Someda-a-ay I'll have loving Loving isn't e-easy to come by-y I'll be gone I'll be go-one.. I'll be go-o-o-o-one...
    https://wn.com/Spectrum_I'll_Be_Gone_(1971)
    Spectrum - I'll Be Gone (stereo)
    3:42

    Spectrum - I'll Be Gone (stereo)

    • Order:
    • Duration: 3:42
    • Uploaded Date: 13 Jan 2009
    • views: 29312
    Spectrum's original Chris Lofven directed I'll Be Gone clip re-striped with the stereo edit - and at the right speed, courtesy of the National Film & Sound Archives and Flagstaff Studios.
    https://wn.com/Spectrum_I'll_Be_Gone_(Stereo)
    Spectrum - I'll Be Gone (official music video)
    3:23

    Spectrum - I'll Be Gone (official music video)

    • Order:
    • Duration: 3:23
    • Uploaded Date: 29 Aug 2017
    • views: 39546
    An absolute Australian classic, which went to #1 on the national charts in 1971. 'I'll Be Gone' still resonates today, as much as it did then, about life for the average Australian.
    https://wn.com/Spectrum_I'll_Be_Gone_(Official_Music_Video)
    Spectrum - I'll Be Gone
    4:26

    Spectrum - I'll Be Gone

    • Order:
    • Duration: 4:26
    • Uploaded Date: 19 Aug 2007
    • views: 87698
    To the Australian public at large, Spectrum will always be remembered for the 1971 #1 hit 'I'll Be Gone', an enduring rock classic if ever there was one. As song writer and Spectrum lynchpin Mike Rudd has put it "'I'll Be Gone' has had a marvellous life", with indications that its potency will continue to rise. It still gets played on Australian 'Classic Hits' radio to this day. Spectrum still play the song at practically ever gig with the enthusiastic, sing-along response of the audience inevitable; a perfect example of this was the band's appearance at the 2002 arena rock spectacular Long Way to The Top. The sound of an entire concert audience singing the song's rousing refrain at full voice, with little encouragement, was indeed magnificent. While the song's appeal is unquestionable, to the dedicated Australian rock music aficionado Spectrum is more than just one gloriously brilliant song. Many fans will tell you that Spectrum music is some of the greatest progressive psych rock recorded in the day, and nominate the band as purveyors of a uniquely Australian sound and identity. Spectrum's debut, Part One was originally released on EMI's progressive label Harvest and is rightfully regarded as not only a landmark progressive rock release, but the beginnings of one of Australia 's more remarkable bands. In its original incarnation (1969-1973), the band went through three different lineups, also gigging extensively under the alter-ego moniker of the Indelible Murtceps, released five albums and five singles, and left behind many fond memories from their concert appearances.
    https://wn.com/Spectrum_I'll_Be_Gone
    Spectrum - I'll Be Gone 1971 ( colourised)
    3:29

    Spectrum - I'll Be Gone 1971 ( colourised)

    • Order:
    • Duration: 3:29
    • Uploaded Date: 20 Apr 2020
    • views: 6857
    "I'll Be Gone" or "Some Day I'll Have Money" is a song by Australian progressive rock group Spectrum released as their debut single by EMI on Harvest Records in January 1971.[1] It peaked at #1 on the national singles chart,[2] while it reached Top 5 in Melbourne, Sydney and Brisbane. The song was written by guitarist and vocalist Mike Rudd,[3] and produced by Howard Gable.[1] The B-side, "Launching Place Part Two" was written to promote a music festival. Spectrum never repeated the success of "I'll Be Gone" https://en.wikipedia.org/wiki/I%27ll_Be_Gone_(Spectrum_song)
    https://wn.com/Spectrum_I'll_Be_Gone_1971_(_Colourised)
    Spectrum's 'I'll Be Gone' on RockWiz. John Williamson & The McClymont Sisters
    3:21

    Spectrum's 'I'll Be Gone' on RockWiz. John Williamson & The McClymont Sisters

    • Order:
    • Duration: 3:21
    • Uploaded Date: 08 Jun 2016
    • views: 43638
    Broadcast by SBS on January 21 2013. Watch and listen to this unique and flawless performance. Last not least the magnificent RockWiz Orchestra. You can watch the whole show on http://www.sbs.com.au/news/video/11840579591/Rockwiz-S10-Ep131-McClymont-Sisters-and-John-Willi
    https://wn.com/Spectrum's_'I'll_Be_Gone'_On_Rockwiz._John_Williamson_The_Mcclymont_Sisters
    Spectrum - I'll Be Gone (alt. version)
    3:29

    Spectrum - I'll Be Gone (alt. version)

    • Order:
    • Duration: 3:29
    • Uploaded Date: 03 Jul 2009
    • views: 256970
    This is mimed to an alternative edit of I'll Be Gone on the Adelaide TV show, Move, probably in 1971. We appear to be quite relaxed..
    https://wn.com/Spectrum_I'll_Be_Gone_(Alt._Version)
    Spectrum - I'll Be Gone, 1971 Stereo Atco 45.
    3:32

    Spectrum - I'll Be Gone, 1971 Stereo Atco 45.

    • Order:
    • Duration: 3:32
    • Uploaded Date: 10 Oct 2015
    • views: 744
    Atco 45 - 6832. Promo 45 rpm stereo version side. Transferred with stereo gear shown on featured channel video and background photo.
    https://wn.com/Spectrum_I'll_Be_Gone,_1971_Stereo_Atco_45.
    developed with YouTube
    PLAYLIST TIME:
    • Most Related
    • Most Recent
    • Most Popular
    • Top Rated
    developed with YouTube
    PLAYLIST TIME:

    Eva Eastwood & The Boppers "They Never Know"

    Eva Eastwood & The Boppers spelar sin nya låt "They Never Know" på Bingolotton 2015-05-10
    2:47
    Eva Eastwood & The Boppers "They Never Know"
    Eva Eastwood & The Boppers spelar sin nya låt "They Never Know" på Bingolotton 2015-05-10
    published: 11 May 2015
    Play in Full Screen
    4:00
    Eva Eastwood - Rockabillymedley - Live BingoLotto 9/5 2021
    Rockabillydrottningen Eva Eastwood gästade BingoLotto den 9 maj och framförde ett Rockabil...
    published: 10 May 2021
    Play in Full Screen
    3:12
    Larz-Kristerz & Eva Eastwood - Hjärtat bankar
    (C) 2011 Sony Music Entertainment Sweden AB http://www.larzkristerz.com/ http://www.facebo...
    published: 11 Jan 2012
    Play in Full Screen
    2:40
    Eva Eastwood - Rockabilly Willy
    Liveinspelning med Eva Eastwood i Valsverket Degerfors 2004. Eva sjunger Rockabilly Willy ...
    published: 10 May 2023
    Play in Full Screen
    2:29
    Eva Eastwood - Lyckans ost
    Eva Eastwood - Lyckans ost
    published: 21 Feb 2012
    Play in Full Screen
    2:54
    Eva Eastwood "My My My" på Bingolotto 16 Maj 2010
    Eva Eastwood spelade titellåten från albumet "Well Well Well" på Bingolotto.
    published: 18 May 2010
    Play in Full Screen
    2:41
    Eva Eastwood & The Major Keys - En riktig gran - Go’kväll SVT 2023
    Från 17 December
    published: 17 Dec 2023
    Play in Full Screen
    2:48
    Bli Min
    Provided to YouTube by The Orchard Enterprises Bli Min · Eva Eastwood Lyckost ℗ 2011 Da...
    published: 13 Jan 2019
    Play in Full Screen
    2:30
    Eva Eastwood - Lyckost
    Detta är titelspåret från Evas nya album"Lyckost",Darrow BLCD 40, 2011. Text och musik Ev...
    published: 22 Apr 2011
    Play in Full Screen
    2:44
    Eva Eastwood - Old School - Live BingLotto 9/5 2021
    Rockabillydrottningen Eva Eastwood gästade BingoLotto den 9 maj och framförde "Old School"...
    published: 10 May 2021
    Play in Full Screen

    Eva Eastwood

    Eva Östlund better known by her stage name Eva Eastwood (born in Örebro, Sweden on 25 September 1967), is a Swedish songwriter and singer who sings rockabilly and rock'n'roll songs.

    Although she was offered a contract in the United States in 1997, she chose to go back home and soon after formed the band The Major Keys and made releases crediting Eva Eastwood and the Major Keys through the small Tail Records label based in Jönköping

    In 2005, she took part in Allsång på Skansen, a sing-along TV show from Skansen performing "Vårt liv i repris" from her album En ny stil i stan proving to be a turning point in her career. Eva won the Millencolin Music Prize 2010 becoming the first woman to do so. In 2011, she returned to the same stage singing the title track "Lyckost" from her similarly named album.

    As a songwriter, she has composed over 800 songs, including the likes of The Boppers, Linda Gail Lewis, Lalla Hansson, Berth Idoffs, Jerry Williams and Larz-Kristerz.

    Discography

    Albums

    • Most Related
    • Most Recent
    • Most Popular
    • Top Rated
    developed with YouTube
    PLAYLIST TIME:

    Spectrum - I'll Be Gone (1971)

    Someday I'll have money Money isn't easy to come by By the time it's come by I'll be gone I'll sing my song and I'll be gone Someday I'll have loving Loving isn't easy to come by By the time it's come by I'll be gone I'll sing my song and I'll be gone Living a life of luxury Doesn't seem to be for me That's not for me Moving around comes naturally Moving around and feeling free That's for me Someday I'll have loving Loving isn't easy to come by By the time it's come by I'll be gone I'll sing my song and I'll be gone Living a life of luxury Doesn't seem to be for me That's not for me Moving around comes naturally Moving around and feeling free That's for me Someda-a-ay I'll have loving Loving isn't e-easy to come by-y I'll be gone I'll be go-one.. I'll be go-o-o-o-one...
    3:29
    Spectrum - I'll Be Gone (1971)
    Someday I'll have money Money isn't easy to come by By the time it's come by I'll be gone ...
    published: 27 Apr 2013
    Play in Full Screen
    3:42
    Spectrum - I'll Be Gone (stereo)
    Spectrum's original Chris Lofven directed I'll Be Gone clip re-striped with the stereo edi...
    published: 13 Jan 2009
    Play in Full Screen
    3:23
    Spectrum - I'll Be Gone (official music video)
    An absolute Australian classic, which went to #1 on the national charts in 1971. 'I'll Be ...
    published: 29 Aug 2017
    Play in Full Screen
    4:26
    Spectrum - I'll Be Gone
    To the Australian public at large, Spectrum will always be remembered for the 1971 #1 hit ...
    published: 19 Aug 2007
    Play in Full Screen
    3:29
    Spectrum - I'll Be Gone 1971 ( colourised)
    "I'll Be Gone" or "Some Day I'll Have Money" is a song by Australian progressive rock grou...
    published: 20 Apr 2020
    Play in Full Screen
    3:21
    Spectrum's 'I'll Be Gone' on RockWiz. John Williamson & The McClymont Sisters
    Broadcast by SBS on January 21 2013. Watch and listen to this unique and flawless performa...
    published: 08 Jun 2016
    Play in Full Screen
    3:29
    Spectrum - I'll Be Gone (alt. version)
    This is mimed to an alternative edit of I'll Be Gone on the Adelaide TV show, Move, probab...
    published: 03 Jul 2009
    Play in Full Screen
    3:32
    Spectrum - I'll Be Gone, 1971 Stereo Atco 45.
    Atco 45 - 6832. Promo 45 rpm stereo version side. Transferred with stereo gear shown on ...
    published: 10 Oct 2015
    Play in Full Screen
    '); } 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)); } }); }); }); // -->
    ×