- published: 06 Oct 2023
- views: 1893207
'+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; })); }); -->
Hayley Nichole Williams (born December 27, 1988) is an American singer, songwriter and musician. She is best known as the lead vocalist, occasional keyboardist and primary songwriter of the American rock band Paramore.
Hayley Williams was born to Joey and Cristi Williams, in Meridian, Mississippi. She has two younger half sisters. As a result of her parents divorcing in 2002, Williams moved to Franklin, Tennessee. She met former band members Josh and Zac Farro in her new school. While still at school she tried out for a local funk cover band, The Factory, where she met Jeremy Davis.
Williams was discovered in 2003 by managers Dave Steunebrink and Richard Williams, who signed the 14-year-old to a two-year production deal. At the time she was writing pop songs with songwriters in Nashville. Williams was introduced to Atlantic Records A&R Tom Storms through Richard Williams' attorneys Jim Zumwalt and Kent Marcus, and then signed to the label by Jason Flom. The label's original plan for their new artist was to make her a solo pop artist but Williams objected to this, saying that she wanted to be part of a band and play pop punk music.
B.O.B. (known in Japan as Space Funky B.O.B.) is a video game that was released in 1993. It is a side-scrolling game, a 2D shooter and a platform game.
B.O.B. was developed by Gray Matter Inc. and Foley Hi-Tech Systems, and published by Electronic Arts for both the Super Nintendo Entertainment System and Sega Mega Drive/Genesis.The cover art for the EA packaging was illustrated by Marc Ericksen.
In August 2006, GameSpot reported that Electronic Arts would be also porting B.O.B. to the PlayStation Portable as part of EA Replay. It was released in North America on November 7, 2006.
On September 12, 2008 the source code of the SNES version became available as it was found on an eBay-bought hard drive.
When B.O.B. crashes his dad's space car on the way to pick up his date, he finds himself stranded on a hostile asteroid filled with enemies. By collecting power ups and using fast reflexes, B.O.B. tries to find his way off the asteroid and to his date. B.O.B. fights his way through three strange worlds in total, encountering several particularly enormous or swift enemies (bosses) along the way, and participating in several cart-race levels. There were several different types of setting for each level, including domed space colony cities, large alien hive-type areas, strange biomechanical facilities, ancient (and apparently haunted) temples and cavernous magma chambers. Some of these settings only appeared on certain worlds.
"B.O.B" ("Bombs Over Baghdad") is a song by American rap duo OutKast from their fourth studio album Stankonia (2000). It was released as the album's lead single in September 19, 2000 through LaFace Records and Arista. Produced by Earthtone III, the song features a high-speed tempo beat consisting of drum'n'bass rhythms, guitars, organs, and gospel vocals. Although not a huge commercial success, the song has been cited as one of the greatest songs of all time by publications such as Pitchfork Media, Rolling Stone, Blender and Complex.
Produced by OutKast and Mr. DJ under the name Earthtone III, "B.O.B" features "jittery drum'n'bass rhythms" and has been classified as a "stylistic tour de force" combining "Hendrix-ian" guitars, organs, and gospel vocals. On the track, André 3000 and Big Boi employ a "frantic" flow in order to keep pace with the song's high-speed tempo, which runs at 155 beats per minute.
Big Boi said that they wanted to differ from current music: "Everybody's been doing music like they all have the same formula—e=mc2. They get a beat, an MC, somebody to sing the hook, and go platinum. Where's music going to go when everybody's trapped in this same repetitious flow?"
Bobby Ray Simmons, Jr. (born November 15, 1988), better known by his stage name B.o.B, is an American recording artist and music producer from Decatur, Georgia. In 2006, B.o.B was discovered by Brian Richardson, who then introduced him to TJ Chapman, who subsequently brought him to American record producer Jim Jonsin. After hearing his music, Jonsin signed B.o.B to his Rebel Rock Entertainment imprint. Two years later, Jonsin and B.o.B signed a joint venture deal, with Atlantic Records and American rapper T.I.'s Grand Hustle Records.
B.o.B quickly rose to fame after his commercial debut single "Nothin' on You", reached number one in both the United States and the United Kingdom. He would later release his third single "Airplanes", which also topped several major music charts. His fifth single "Magic", became his third top ten hit on the Billboard Hot 100. B.o.B's debut studio album The Adventures of Bobby Ray, which was preceded by two extended plays (EPs) and several mixtapes, was released on April 27, 2010. The album reached number one on the US Billboard charts and was eventually certified gold by the Recording Industry Association of America (RIAA). Later that year, B.o.B was named the ninth "Hottest MC in the Game of 2010" by MTV, on their annual list.
In this extended interview, Hayley Williams talks about opening for Taylor Swift's Eras Tour, the influence Jimmy's song "Idiot Boyfriend" had on Paramore and remixing the album This Is Why. The Tonight Show Starring Jimmy Fallon. Stream now on Peacock: https://bit.ly/3gZJaNy Subscribe NOW to The Tonight Show Starring Jimmy Fallon: http://bit.ly/1nwT1aN Watch The Tonight Show Starring Jimmy Fallon Weeknights 11:35ET/10:35c Get more The Tonight Show Starring Jimmy Fallon: https://www.nbc.com/the-tonight-show JIMMY FALLON ON SOCIAL Follow Jimmy: http://Twitter.com/JimmyFallon Like Jimmy: https://Facebook.com/JimmyFallon Follow Jimmy: https://www.instagram.com/jimmyfallon/ Follow Jimmy on TikTok: https://www.tiktok.com/@jimmyfallon THE TONIGHT SHOW ON SOCIAL Follow The Tonight Show:...
This Is Why. Out Now. https://paramore.lnk.to/tiwalbum Director - Brendan Yates Production Company - Vizionary Producer - Evan McGillivray DOP - Ian Hurdle 1st AD - Eugena Neumann Production Designer - Jose Rojas 1st AC - Paul Wiedt 2nd AC + Loader - Maud Laurent Gaffer - Michael Rodgers Key Grip - Jason Gray Best Grip - Brandon Flohr, Richard Pelsang Leadperson - Peter Martinez Key PA - Kelsey Miralles PA - Truck - Aaron Diaz Slips Studios Editor - Anthony Miralles Post Producer - Helen Shope Ethos Colorist - Kaitlyn Battistelli Color Producer - Nat Tereshchenko Talent - Jade Mcdaniel Commissioner - Andrew Reid HMU - Brian O'Connor Styling - Lindsey Hartman BTS - Zachary Gray Drum Tech - Joey Mullen & Gavin McDonald Site: http://paramore.net Spotify: http://paramore.net/spotify TikTo...
The official video for "Airplanes" by B.o.B featuring Hayley Williams of Paramore form Bobby's album 'B.o.B Presents: The Adventures of Bobby Ray' - available now! Listen to B.o.B on Spotify here: http://bit.ly/17jaSKM Subscribe for more official content from Atlantic Records: https://Atlantic.lnk.to/subscribe Follow B.o.B https://instagram.com/bob http://facebook.com/bobatl http://twitter.com/bobatl http://youtube.com/bobatl http://bobatl.com Follow Hayley Williams https://instagram.com/yelyahwilliams http://twitter.com/yelyahwilliams https://facebook.com/yelyahwiliams http://paramore.net Follow Atlantic Records https://facebook.com/atlanticrecords https://instagram.com/atlanticrecords https://twitter.com/AtlanticRecords http://atlanticrecords.com The official Atlantic Records YouTu...
New album “True Colors” out 5/19. True Colors is available now: http://smarturl.it/ZeddTrueColors Get tickets to Zedd's True Colors Tour at http://Zedd.net. iTunes: http://smarturl.it/ClarityDeluxe Target CD: Zedd “Clarity Deluxe” http://smarturl.it/ClarityDeluxeTGT Sign up for updates: http://smarturl.it/Zedd.News Directed by Daniel Cloud Campos Music video by Zedd performing Stay The Night ft. Hayley Williams of Paramore. © 2013 Interscope
Hayley Williams gives us a glimpse into her pre-show prep before playing with her band Paramore at the Kia Forum. The singer plays out a “fashion moment” over her two-night LA run, including a stunning golden Rodarte dress. Plus, Hayley reveals what you can expect from her tour with Taylor Swift next year. Director: Nina Ljeti Director of Photography: Stephen Tringali Editor: Cory Stevens Producers: Jamie Tobias, Gigi Chavarria Associate Director, Creative Development: Alexandra Gurvitch Associate Producer: Marisah Yazbek AC: Alex Cason Audio: Gloria Marie Photographer: Zachary Gray Production Assistant: Brock Spitaels Production Coordinator: Ava Kashar Production Manager: Kit Fogarty Line Producer: Romeeka Powell Senior Director, Production Management: Jessica Schier Assi...
The Tiny Desk is working from home for the foreseeable future. Introducing NPR Music's Tiny Desk (home) concerts, bringing you performances from across the country and the world. It's the same spirit — stripped-down sets, an intimate setting — just a different space. Dec. 9, 2020 | Lars Gotrich -- "I've never done this without Paramore," Hayley Williams announces during her Tiny Desk (home) concert. For the first time in months, she's joined by a band, including friends and Tiny Desk alumnae Julien Baker and Becca Mancari. And from the moment the camera pans out of a literal tiny desk diorama, a jolt of energy leaps from Williams. Petals for Armor is a soul-cleansing exhale from years of holding her breath. Originally released in a series of EPs, her solo debut sings through heartache in...
Hayley Williams talks about how Jimmy's song "Idiot Boyfriend" had a huge influence on Paramore and performs the song with Jimmy. The Tonight Show Starring Jimmy Fallon. Stream now on Peacock: https://bit.ly/3gZJaNy Subscribe NOW to The Tonight Show Starring Jimmy Fallon: http://bit.ly/1nwT1aN Watch The Tonight Show Starring Jimmy Fallon Weeknights 11:35ET/10:35c Get more The Tonight Show Starring Jimmy Fallon: https://www.nbc.com/the-tonight-show JIMMY FALLON ON SOCIAL Follow Jimmy: http://Twitter.com/JimmyFallon Like Jimmy: https://Facebook.com/JimmyFallon Follow Jimmy: https://www.instagram.com/jimmyfallon/ Follow Jimmy on TikTok: https://www.tiktok.com/@jimmyfallon THE TONIGHT SHOW ON SOCIAL Follow The Tonight Show: http://Twitter.com/FallonTonight Like The Tonight Show: http...
B.o.B - Airplanes (feat. Hayley Williams of Paramore) | REMIX By Dj Sorbara #music #dj #remix #rap #hiphop #dance #rnb #paramore Mail: [email protected] https://www.facebook.com/roberto.sorbara.3/ https://www.facebook.com/DjSorbara/ https://www.instagram.com/roberto_sorbara_dj_sorbara/ SUPPORT ME https://paypal.me/RobertoSorbara
Hayley Nichole Williams (born December 27, 1988) is an American singer, songwriter and musician. She is best known as the lead vocalist, occasional keyboardist and primary songwriter of the American rock band Paramore.
Hayley Williams was born to Joey and Cristi Williams, in Meridian, Mississippi. She has two younger half sisters. As a result of her parents divorcing in 2002, Williams moved to Franklin, Tennessee. She met former band members Josh and Zac Farro in her new school. While still at school she tried out for a local funk cover band, The Factory, where she met Jeremy Davis.
Williams was discovered in 2003 by managers Dave Steunebrink and Richard Williams, who signed the 14-year-old to a two-year production deal. At the time she was writing pop songs with songwriters in Nashville. Williams was introduced to Atlantic Records A&R Tom Storms through Richard Williams' attorneys Jim Zumwalt and Kent Marcus, and then signed to the label by Jason Flom. The label's original plan for their new artist was to make her a solo pop artist but Williams objected to this, saying that she wanted to be part of a band and play pop punk music.
I'm gonna go on
Living like I never met you,
And it'll feel wrong at first,
But I think I can forget you.
Ignore the fact that we sleep
No more than 3 feet apart
I feel you now, your all around me
Underneath me
Your all around me
Underneath me
Well, how was I to know
That what we carved in stone
Would be so, temporary.
Well, how was I to know
That my first crack at love
Would not be the last
It won't be the last
It's in the air now,
Bitter tears and broken hearts
Were teenagers,
We count the years we think were smart
But were not
We don't know anything
So, don't ask me where I'll go
Coz, frankly, I don't know
And I don't give a shit
Why must we all make sense
Of what just won't make sense
For once,
I'm just gonna live.
I'm just gonna live.
Were teenagers
(we don't know anything)
Were teenagers
(we don't know anything)
Well, how was I to know
That what we carved in stone
Would be so, temporary.
(I'm gonna go on)
Why must we all make sense
Of what just wont make sense
For once,
I'm just gonna live.