- published: 19 Apr 2017
- views: 1117042
'+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; })); }); -->
Bad News may refer to:
"Oblivion" is a song by British band Bastille from their 2013 album Bad Blood. It was released digitally in the UK on 5 September 2014 as the eighth overall and final single from the album. A limited edition 7-inch vinyl edition of the single, featuring the previously unreleased track "bad_news" as the B-side, was also released on 8 September.
The song was featured on an episode of the television series The Vampire Diaries in 2012.
The band confirmed during their headline set at London’s Somerset House on July 15 that "Oblivion" will be the next single from Bad Blood.
The music video was exclusively premiered on MSN Music UK on Monday July 21. It was later published through Bastille's Vevo channel on YouTube the same day. The video was directed by Austin Peters (who previously directed the band's "Flaws" and "Laura Palmer" music videos) and stars actress Sophie Turner (known for her role in the television series Game of Thrones). She is seen lip-syncing to the lyrics of the song, singing in front of a crowd of people at a demolition derby.
Bad News is the self-titled debut album from British heavy metal group Bad News released in October 1987 by EMI. The album features a cover of the famous Queen song "Bohemian Rhapsody" and was produced by Queen's guitarist Brian May. "Bohemian Rhapsody" was released as a single and had a music video created for it, written and directed by Adrian Edmondson, who portrays Vim Fuego in the group. The video was released as a video single by Picture Music International. In 2004, EMI re-released the album with a re-ordered track listing and with additions of tracks derived from the group's follow-up album The Cash In Compilation.
Side 1
Side 2
Who Will Cut Our Hair When We're Gone? is the sole studio album by Canadian indie-rock band The Unicorns. It features several re-arranged versions of songs from their earlier self-released CD Unicorns Are People Too. The album was first issued on CD/LP in North America by Alien8 Recordings in 2003, and on CD in Europe by Rough Trade in 2004. It has since been repressed in limited quantities on pink and brown vinyl by Alien8 and re-released in 2014 on the band's own label Caterpillar Records.
All songs written and composed by The Unicorns.
The 2014 reissue of Who Will Cut Our Hair When We're Gone was released to coincide with the band's brief reunion tour, ten years after their initial split. It features new artwork and includes four bonus tracks which are all previously unreleased other than "Evacuate the Vacuous" which appeared on The Unicorns: 2014. "Rocket Ship" is a cover of a song by Daniel Johnston, which is rumoured to have been recorded for the 2004 tribute album The Late Great Daniel Johnston: Discovered Covered.
Bad News were an English spoof heavy metal band, created for the Channel 4 television series The Comic Strip Presents.... Its members were Vim Fuego (aka Alan Metcalfe), vocals and lead guitar (played by Ade Edmondson); Den Dennis, rhythm guitar (Nigel Planer); Colin Grigson, bass (Rik Mayall); and Spider Webb, drums (Peter Richardson).
Bad News made their television debut during 1983, in the first series of The Comic Strip Presents... (written by Edmondson, and produced by Michael White/Comic Strip Productions). The episode, "Bad News Tour", took the form of a satirical fly-on-the-wall rockumentary, in which the incompetent band is followed travelling to a gig in Grantham, by an almost equally inept documentary film crew: It seemed to take much inspiration from Mark Kidel's 1976 BBC documentary So You Wanna Be a Rock 'n' Roll Star? that followed the Kursaal Flyers around Scotland and northeast England. The episode was also coincidentally in production at the same time as This Is Spinal Tap, which was released the following year to a much wider audience and subsequently greater acclaim.
"Bad News" is the 13th episode of the sixth season of the CBS sitcom How I Met Your Mother and their 125th episode overall. It aired January 3, 2011. TV Guide listed "Bad News" in its list of 2011's Top TV Episodes.
Future Ted tells his kids that Marshall and Lily are anxious and worried about their chances of having a baby. After several months of trying to conceive without success, their doctor refers them to a fertility expert. As they tell Ted the news at MacLaren's, Barney arrives and announces to Ted and Marshall's dismay that he needs a partner for a laser tag tournament.
Lily goes to her appointment with the fertility expert, Dr. John Stangel (Neil Patrick Harris), only to discover that he looks exactly like Barney, save for a beard and dark brown hair, raising her immediate concern that he is in fact Barney in disguise. When Lily confronts Barney, Marshall vouches for Barney, saying that they spent the whole day together. To convince her that Stangel and Barney are not the same person, Marshall attends Lily's appointment and also immediately assumes Stangel and Barney are the same person. Barney shows up, acknowledges the similarity, and leaves. Lily still thinks Dr. Stangel is Barney in disguise upon hearing him say "Scoot up", mistaking it for Barney's catch phrase of "Suit up." After getting Barney and the doctor in the room together throughout the procedure, Lily is convinced that they are in fact two different people.
Spice Crackers is the fifth studio album from German synthpop group Camouflage, released in September 11, 1995 by BMG.
The band's new contract with BMG Germany provided them with full creative freedom, allowing the two to utilise works originally intended for their failed opera project and make them much more experimental, and sometimes even inspired by science fiction films. In March 1995 the band performed in Stuttgart and debuted the new material.
Overall, the album was a completely new venture for the group, and unfortunately was not a success. Due to this, the band went their separate ways.
Two singles were released from the record: "Bad News" in August 1995 and "X-Ray" in early 1996. Music videos were filmed for both. "X-Ray" was remixed by Tranceformer and Ronda Ray for release. Both were included on the band's 2001 retrospective "Rewind".
Due to the album being out of print, the band remastered and re-released the album in 2009. It features two discs, the second comprising B-sides and other rarities, some unreleased, from the Spice Crackers era. A download-only album was also released, containing all the remixes from the two singles.
Gideon's fourth full-length album, Cold, is out now via Equal Vision Records. Download/Stream at https://gideon.lnk.to/coldID and get your copy at http://gideon.merchnow.com/ Follow: https://facebook.com/GideonAL https://twitter.com/gideonal https://www.instagram.com/gideonal Lyrics: Cursed, Just call me misery, Call me bad news, I'll bring you nothing but pain, Dragging this ball and chain, I was blessed with a curse, The devil knows me by name, You can run, Hide, if it gives you peace of mind, Don't slip up, the worst is yet to come, Blame it on the bad luck baby, Stay away from me (stay away from me), Got me feeling like a black cat lately, I'll bring you to your knees, Cursed, I'm starting to break from bending, A losing streak that's never ending, Weed out the weak, I was washed in ...
1-01 –Neophyte & The Stunned Guys Army Of Hardcore 1-02 –Bodylotion No Worries 1-03 –Brian Acardy Let Da Bass Boom 1-04 –3 Steps Ahead It's Delicious (Video Mix) 1-05 –Men Of Steel Pain 1-06 –Da Headbanger* Sweet Dreams You Bastard 1-07 –DJ Sim Simbiosis 1-08 –Hardcore Brothers Lost Minds 1-09 –Cixx vs. The Vinyl Junk The Tough Guys 1-10 –The Masochist Killing Scum (DJ Promo Meets Shaolin Mix) 1-11 –G-Town Madness Meets DJ Attic & Stylzz* Bring The Pain 1-12 –DJ E-Rick & Tactic* Meet Her At The Thunderdome (DJ Mix) 1-13 –BSE* Motherf**ker 1-14 –Da Tekno Warriors Da Pump (Oldskool Mix) 1-15 –DJ Promo* Beat Ya Brain (Again) 1-16 –DJ Delirium I Was Born Hardcore 1-17 –Recharge* Feelings 1-18 –Hardcore Elements* vs. Bad News Tell The DJ 1-19 –Controller 1 I Wanna Rock You 1-2...
Thunderdome Early Oldschool Classic Hardcore/Gabber Megamix für Thunderdome (26 years of Hardcore) /ID&T. Dies ist ein Full Album und zwar Part 1! Tracklist: 01 Neophyte & The Stunned Guys - Army Of Hardcore 02 Bodylotion - No Worries 03 Brian Acardy - Let Da Bass Boom 04 3 Steps Ahead - It's Delicious (Video Mix) 05 Men Of Steel - Pain 06 Da Headbanger - Sweet Dreams You Bastard 07 DJ Sim - Simbiosis 08 Promo - Lost Minds 09 Cixx vs. The Vinyl Junk - The Tough Guys 10 The Masochist - Killing Scum (DJ Promo Meets Shaolin Mix) 11 G-Town Madness Meets DJ Attic & Stylzz - Bring The Pain 12 DJ E-Rick & Tactic - Meet Her At The Thunderdome (DJ Mix) 13 BSE - Motherfker 14 Da Tekno Warriors - Da Pump (Oldskool Mix) 15 DJ Promo - Beat Ya Brain (Again) 16 DJ Delirium - I Was Born Hardcore 17 Recha...
Official music video for "Savage Intolerance" off NAILS' third full-length album, You Will Never Be One of Us. Order album at http://nuclearblast.com/nails-youwillneverbeoneofus Subscribe to Nuclear Blast on YouTube: http://bit.ly/subs-nb-yt ORDER AT Nuclear Blast: http://nuclearblast.com/nails-youwillneverbeoneofus iTunes: http://nblast.de/NailsYouWillNeverIT Amazon (Physical): http://nblast.de/NailsYouWillNeverAMZ Amazon (Digital): http://nblast.de/NailsYouWillNeverAZMP3 Google Play: http://nblast.de/NailsYouWillNeverGP Southern California-based four man hatecrew, NAILS, will release their third full-length album entitled, You Will Never Be One Of Us, on June 17, 2016 via Nuclear Blast Entertainment. Website: http://www.nailsmerch.com/ Like: https://www.facebook.com/NAILSoxnard Follow...
VA - Thunderdome - The Best Of '98 (1998) +3CD'S CD1: 1-01 Neophyte & The Stunned Guys - Army Of Hardcore 1-02 Bodylotion - No Worries 1-03 Brian Acardy - Let Da Bass Boom 1-04 3 Steps Ahead - It's Delicious (Video Mix) 1-05 Men Of Steel - Pain 1-06 Da Headbanger - Sweet Dreams You Bastard 1-07 DJ Sim - Simbiosis 1-08 Promo - Lost Minds 1-09 Cixx vs. The Vinyl Junk - The Tough Guys 1-10 The Masochist - Killing Scum (DJ Promo Meets Shaolin Mix) 1-11 G-Town Madness Meets DJ Attic & Stylzz - Bring The Pain 1-12 DJ E-Rick & Tactic - Meet Her At The Thunderdome (DJ Mix) 1-13 BSE - Motherfker 1-14 Da Tekno Warriors - Da Pump (Oldskool Mix) 1-15 DJ Promo - Beat Ya Brain (Again) 1-16 DJ Delirium - I Was Born Hardcore 1-17 Recharge - Feelings 1-18 Hardcore Elements vs. Bad News - Tell The DJ 1-19 ...
HELMET PREMIER BRAND NEW SONG “BAD NEWS” FROM THEIR UPCOMING ALBUM DEAD TO THE WORLD AND ANNOUNCE EUROPEAN TOUR 2017. SONG AVAILABLE AS DOWNLOAD AND STREAM NOW. Pre-order here: iTunes: http://smarturl.it/Helmet_iTunes 1CD Digipak: http://smarturl.it/Helmet_CD Vinyl: http://smarturl.it/Helmet_Vinyl “All news is bad news” spits Page Hamilton’s distinctive voice from the speakers, accompanied by the unique, dynamic fusion of classic rock, hardcore and off kilter grooves that have inspired countless others. Nobody sounds quite like Helmet. Most definitely not – and most definitely not all news is bad news as today sees the digital release of “Bad News” – the first song to see the light of day from Dead To The World, the band’s first album in six years. The song opens with a sustained ringin...
THUNDERDOME - BEST OF 98 (ID&T 1998) Tracklisting CD 1 01 Neophyte & The Stunned Guys - Army Of Hardcore 00:00 02 Bodylotion - No Worries 03:33 03 Brian Acardy - Let Da Bass Boom 07:22 04 3 Steps Ahead - It´s Delicious 10:26 05 Men Of Steel - Pain 13:16 06 Da Headbanger Feat. Waxweazle - Sweet Dreams You Bastard 17:16 07 Dj E-Rick & Tactic All Fucked Up 21:04 08 Dj Sim - Simbiosis 24:27 09 Hardcore Brothers - Lost Minds 27:20 10 Cixx Vs The Vinyl Junk - The Tough Guys 30:57 11 The Masochist - Killing Scum (Dj Promo Meets Shalin Mix) 34:16 12 G-Town Madness Meets Dj Attic & Stylzz - Bring The Pain 37:50 13 Dj E-Rick & Tactic - Meet Her At The Thunderdome 40:48 14 BSE - Adesse Qui 44:12 15 Da Tekno Warriors - Da Pump 47:17 16 Dj Promo - Beat Ya Brain Again 50:48 17 Dj Delirium - I Was Born...
01 Neophyte & The Stunned Guys - Army Of Hardcore 00:00 02 Bodylotion - No Worries 03:33 03 Brian Acardy - Let Da Bass Boom 07:22 04 3 Steps Ahead - It´s Delicious 10:26 05 Men Of Steel - Pain 13:16 06 Da Headbanger Feat. Waxweazle - Sweet Dreams You Bastard 17:16 07 Dj Sim - Simbiosis 24:27 08 Hardcore Brothers - Lost Minds 27:20 09 Cixx Vs The Vinyl Junk - The Tough Guys 30:57 10 The Masochist - Killing Scum (Dj Promo Meets Shalin Mix) 34:16 11 G-Town Madness Meets Dj Attic & Stylzz - Bring The Pain 37:50 12 Dj E-Rick & Tactic - Meet Her At The Thunderdome 40:48 13 BSE - Adesse Qui 44:12 14 Da Tekno Warriors - Da Pump 47:17 15 Dj Promo - Beat Ya Brain Again 50:48 16 Dj Delirium - I Was Born Hardcore 54:20 17 Recharge - Feelings 58:15 18 Hardcore Elemments Vs Bad News - T...
REMASTERED IN HD!! Official Music Video for I'm Bad performed by LL Cool J. Follow LL Cool J: Instagram: https://www.instagram.com/llcoolj Twitter: https://twitter.com/llcoolj Facebook: https://www.facebook.com/llcoolj #LLCoolJ #ImBad #Remastered
Bad News may refer to:
Brigade jump on a couple of punks
Nigga, we bad news
(We bad news, nigga)
To beef for real
If you step our way it's on
Anybody, everybody (Oh shit)
Come on
Brigade jump on a couple of punks
That's how we're moving it moving it moving it
To beef for real
If you step our way it's on
Anybody, everybody (That's right)
Come on
We breaking every rule in the book
Illegal crooks that got your mind shook
Kon done with spells up
Poisonous cook
The Kon Artis
Make way for the hell raiser
Mysterious neighbor
Cuttin throats with broke Coke
Bottles and rusty razors
I ain't the one to save you in a crisis
I kick you while you're down
Snatch you up and ask you who's the nicest
Better say me
Or I'll put your next to some vice crips
And squeeze until they lifeless
I stayin confidence with my mind
About being good or evil
I'm deceitful
Lethal when I leave you
Dead inside your blood brother
When your hand for help reaches out
We just chuckle
Now where the fuck of how we is as individuals
We raise wrong
Politics and poverty got us head strong
You dead wrong
If you think you'll make it out with all your limbs
Grab your camera
So we can put this on film
Don't get cut into hundreds over some dumb shit
I advise you to run quick cuz we run this
Guns click on the reg reg
Put MCs on they death beads
Either that or leavin' 'em walking on peg legs
In various locations
I'll be wylin' out at places
I'm why they're running out
Of handicap parking spaces
Intense dreams
You want suspense? It's endless
How I massacre crews
Leave you solo and friendless
Contact lens less then lifeless
The trifest MC
You never wanna fight with
Or rock a mic with
Carry a knife with
Da Brigade on the night shift
Pack this big dick that I use to fuck your wife with
You ain't the nicest
Derelicts with intelligence
Leaving your grill wide open like pelicans
Just wait
My words penetrate through your vertebrate
Til it snap your neck brace
And crack your chest plate
You studies wanna job like assets
Rough is ready to start teaching niggas
In ass whippin' classes
Breaking glasses
Damage crews by the masses
Shit talking like Cassius
Get in your E-Class and dash bitch
Kon Artis
The only man that can expand the cervix
With the tip of my bone
Get in your girl and keep fucking
Until she starts screaming "Leave me alone"
Walking predacone
Looking for weak grade to set it on
From dusk til dawn I bomb
Went through hell and remain calm
The devils to stir us to fight me
Just to see what type of shit that I was on
Those bastards is why they got burnt
And turned into crisp XXXXX
With lyrics hotter than lava comes
It's urgent
That she splurge with
Before I merge with
Kuniva will make ya nerves emerge and split
Heard me bitch
You weren't worthy with the mic
Is why I snatch it
And people think and praise with words that I like
With things that I say on you
You need someone to spar with
Put you in the back of my trunk
Get in my car trick
Running with nothing but thugs
With the fug
We more dangerous than L.A. cops with big clubs
Who's arresting you when you're drunk
You sick munk
Spitting up bills scriptures and gumps
Till you punks get the picture
Get it?
If rap was a whore you couldn't hit it
I make it my business
Twenty four seven to try and stick it
Gotta get it
I gotta give it to you non-stop
Bombs drop lyrical warfare we onslaught
Dead bodies rot
We making your body rock
Licking them off like lollipops
That the shotty pop
Kuniva snatch rolex chains, watches and anklets
Dissin' the stank bitch
Packing heaters to make you thank quick
Now ain't this
Something you don't want a piece of
Don't worry about waiting these ones