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

Fake

Fake may refer to:

In music:

  • Fake (Swedish band), a band active in the 1980s
  • Fake?, a Japanese rock band
  • Fake (album), by Adorable
  • "Fake" (Ai song)
  • "Fake" (Alexander O'Neal song) (1987)
  • "Fake" (Simply Red song) (2003)
  • Fake (US band), an American electro band remixed by Imperative Reaction
  • "Fake", a song by Brand New Heavies from Brother Sister
  • "Fake", a 1994 song by Korn from Korn
  • "Fake", a song by Mötley Crüe
  • In other uses:

  • Fake (manga), a BL manga
  • Fake (2003 film), a Thai movie
  • Fake (2010 film), a film featuring Fisher Stevens
  • Fake, Nigeria, a village 90 miles from Katagum
  • Fake, a 1969 book by Clifford Irving about art forger Elmyr de Hory
  • People with the name

  • Caterina Fake
  • Chen Fake
  • See also

  • Fake book, a collection of musical lead sheets
  • Charlatan
  • Counterfeit
  • Cover-up
  • Deception
  • Decoy
  • False
  • Faux
  • Feint
  • Forgery
  • Hoax
  • Replica
  • This page contains text from Wikipedia, the Free Encyclopedia - https://wn.com/Fake

    Fake?

    Fake? is a Japanese alternative rock band formed in 2001 by Ken Lloyd and Inoran. Their music has been described as alternative mixed with electronic sounds. Their sound has also been called "Mixture Rock" as well as an "alternative punk rock mix." Lyrics are mainly in English and sometimes in Japanese.

    History

    In late 2001 Oblivion Dust vocalist Ken Lloyd joined up with Luna Sea guitarist Inoran and formed Fake?. They didn't go public until early 2002, though, where the two of them held a secret two-day "Show Case" event at Liquidroom Shinjuku. A short time later they released their first single "Taste Maximum." They released another single "Someday" and their first album "Breathe In..." which reached the top 30 in the Oricon charts despite a lack of promotion, major magazine interviews, or photo-sessions. Their respective musical influences can be heard throughout the album: slightly more trip hop songs were composed by Inoran, slightly more Punk rock songs composed by Ken. Then, they took part at the Summer Sonic Festival 2002 in Tokyo, Osaka, and Hong Kong. They also played in gigs at Nagoya Diamond Hall, Osaka Namba Hatch and the Akasaka BLITZ. On November 2, the band started its Live Tour, doing 7 concerts in 5 towns. The final concert of this tour on November 24 at Zepp Tokyo, was later broadcast in Japan by WOWOW.

    Fake (manga)

    Fake is a seven-volume BL manga by Sanami Matoh. The story focuses in a romance between Randy "Ryo" Maclean and Dee Laytner, two New York City detectives from the fictitious 27th precinct. An anime version of the fifth act (or chapter) from the second manga is also available, in the form of an OVA.

    Randy "Ryo" Maclean, a half-Japanese cop, is new to the 27th Precinct, and he is partnered with Dee Laytner, an American with an overconfident attitude. The seven-volume manga details their adventures as police in a violent city and delves into each one's past, as well as developing their slowly building relationship. The final volume contains yaoi, and the first six volumes are mostly of a less intense, shōnen-ai nature.

    Other noteworthy characters are Bikky and Carol, two kids who have lost their families and have been taken in by Ryo, and subsequently by Dee. A few of the acts focus on the very sweet young love that develops between those two. JJ and Drake are other detectives from the 27th, and JJ, completely obsessed with Dee, becomes quite jealous of Ryo, and that of course makes for some interesting moments throughout the manga, although JJ moves his attentions to Drake towards the end of the series. Berkeley Rose has a similar fancy for Ryo. He isn't shy about it either, going so far as to steal a kiss whenever possible, much to the irritation of both Dee and Ryo.

    Podcasts:

    • Alexander O'Neal - "Fake"

      Alexander O'Neal Official Music Video - "Fake" PLEASE SUBSCRIBE TO MY CHANNEL AND CLICK THE NOTIFICATION BELL -------------------------------------------------------------- Alexander O'Neal NEW OFFICIAL Facebook Page. https://www.facebook.com/officialalexanderoneal Please Like and Share Alexander O'Neal Fan Page https://www.facebook.com/groups/aonas Alexander O'Neal Youtube Fan Channel https://www.youtube.com/ykywi5751 Alexander O'Neal Official Instagram Page https://www.instagram.com/officialalexanderoneal/ Alexander O'Neal Official Twitter Page https://twitter.com/officialaoneal #ALEXANDERONEAL #FAKE

      published: 11 Jan 2008
    • MoStack - FakE FaKe FAKE

      Buy/ Stream - https://ditto.fm/fakefakefake Prod. By - Rxwntree Additional production - Fumes Beats Saxophone - EOA Electric Guitar - SJO Mixed & Mastered - Marrik Shearer Follow MoStack: Twitter: https://twitter.com/realmostack Soundcloud: https://soundcloud.com/realmostack FaceBook: https://www.facebook.com/OfficialMoStack Instagram: https://www.instagram.com/mo.stack/ TiKTok : https://www.tiktok.com/@bigstakka SnapChat : Stako-Tehng © MizerMillion Entertainment 2022 Contacts: Mgmt : Shane@mizermillion.com Booking Agent : CDSouza@wmeagency.com PR enquiries : aarti@alwaysprotectedpublicity.com LYRICS : Yo, when you went to hell my nigga I would've gone with you I had a bond with you I would've James Bond for you My mum mothered you I kinda miss the other you But you leaving my...

      published: 16 Jun 2022
    • Lauv & Conan Gray - Fake [Official Music Video]

      "Fake” by Lauv & Conan Gray is available now: https://lauv.ffm.to/fake For official “Fake” merch visit the Lauv store at https://shop.lauvsongs.com/ Subscribe to Lauv’s channel: https://lauv.lnk.to/subscribe Follow Lauv: http://lauvsongs.com http://facebook.com/lauvsongs http://twitter.com/lauvsongs http://instagram.com/lauvsongs https://www.tiktok.com/@lauvsongs http://my.community.com/lauv Follow Conan Gray: https://www.instagram.com/conangray https://twitter.com/conangray https://www.facebook.com/conangrayofficial http://www.conangray.com Thank you to the entire cast and crew for following all the strictest recommended COVID safety protocols including advance and onsite testing, masks and social distancing to order to ensure the shoot was safe as possible for everyone involved. D...

      published: 13 Oct 2020
    • The Tech Thieves - Fake (Lyrics)

      🎵 Follow 7clouds on Spotify : http://bit.ly/7CLOUDS 🎧 The Tech Thieves - Fake (Lyrics) ⏬ Download / Stream: https://techthieves.lnk.to/Fake 🔔 Turn on notifications to stay updated with new uploads! 👉 The Tech Thieves https://soundcloud.com/thetechthievesmusic https://facebook.com/TheTechThieves https://twitter.com/TheTechThieves https://instagram.com/TheTechThieves https://open.spotify.com/artist/06bun5reMRmLxFCbcB6UHW ❤️ Follow our Spotify playlists: http://bit.ly/7cloudsSpotify ☁️ 7clouds: https://open.spotify.com/user/7cloudsmusic https://instagram.com/7cloudsmusic https://facebook.com/7cloudsmusic https://twitter.com/7cloudsmusic ......... 🎤 Lyrics: The Tech Thieves - Fake [Verse 1] Please don't fake it, show me what you're all about I got wasted, learning how to...

      published: 29 Mar 2020
    • Simply Red - Fake (Official Video)

      Simply Red - Fake (Official Video) The new Simply Red album ‘Time’ is released on 26th May 2023. First single ‘Better With You’ out NOW! Pre-order the album here: https://simplyred.lnk.to/Time Tickets for the Simply Red Summer ’23 European Tour are available now! Get yours at http://www.simplyred.com/ Subscribe to Simply Red: https://www.youtube.com/@simplyred/featured?sub_confirmation=1 Watch Simply Red Official Music Videos: https://www.youtube.com/watch?v=yG07WSu7Q9w&list=PL966EB62A778ED491&index=1 Follow Simply Red: https://twitter.com/SimplyRedHQ https://www.facebook.com/simplyred/ https://instagram.com/simplyredofficial https://www.tiktok.com/@simplyredofficial Lyrics Watching love drifting away And I feel like I'm someone else The hurting is rough Long are the days And you ha...

      published: 13 Jun 2007
    • Five Finger Death Punch - Fake (AUDIO)

      Music video for Fake performed by Five Finger Death Punch. Copyright (C) 2018 Prospect Park . --- Powered by http://www.vydia.com http://vevo.ly/Bvgni8

      published: 06 Apr 2018
    • FAKE - AP DHILLON

      Subscribe for 🔥: http://bit.ly/2qqGljI Latest Punjabi Song 2019 FAKE - AP DHILLON | GMINXR | SHINDA KAHLON Song : FAKE Singer : AP Dhillon Music : GMINXR Lyrics : Shinda Kahlon Mix - Master : Bauss p

      published: 07 Nov 2019
    • Raste - Fake (Prod by Nauk & Splecter) Performance video

      Performed by Raste Produced by Nauk and Splecter Mixed and Mastered by Joseph Visual by Fotoma (El Mehdi Idlane) Colored by Hamza Houar S/o to Idlane's Family, El Mehdi Essaiydy

      published: 01 Mar 2024
    • Lil Skies - Fake | prod by mikemedusa (OFFICIAL MUSIC VIDEO)

      Filmed/edited by Burkyfilms Song: lil skies - fake (prod by mikemedusa) Hit that Like button Check him out on all the socials Instagram @ lilskies soundcloud: https://soundcloud.com/lil-skies AWG Check me out on insta @burkyfilms

      published: 25 Jan 2017
    • Vybz Kartel - Fake (Official Audio)

      Official Audio for "Fake" by Vybz Kartel Produced by Aikopondibeat Download/Stream: https://Hapilos.lnk.to/VybzKartel-Fake Connect with Vybz Kartel: https://www.instagram.com/vybzkartel/ https://www.twitter.com/iamthekartel #vybzkartel #fake #aikopondibeat http://vevo.ly/C3mW5t

      published: 18 Sep 2023
    developed with YouTube
    Alexander O'Neal - "Fake"
    3:10

    Alexander O'Neal - "Fake"

    • Order:
    • Duration: 3:10
    • Uploaded Date: 11 Jan 2008
    • views: 1624964
    Alexander O'Neal Official Music Video - "Fake" PLEASE SUBSCRIBE TO MY CHANNEL AND CLICK THE NOTIFICATION BELL -------------------------------------------------------------- Alexander O'Neal NEW OFFICIAL Facebook Page. https://www.facebook.com/officialalexanderoneal Please Like and Share Alexander O'Neal Fan Page https://www.facebook.com/groups/aonas Alexander O'Neal Youtube Fan Channel https://www.youtube.com/ykywi5751 Alexander O'Neal Official Instagram Page https://www.instagram.com/officialalexanderoneal/ Alexander O'Neal Official Twitter Page https://twitter.com/officialaoneal #ALEXANDERONEAL #FAKE
    https://wn.com/Alexander_O'Neal_Fake
    MoStack - FakE FaKe FAKE
    3:11

    MoStack - FakE FaKe FAKE

    • Order:
    • Duration: 3:11
    • Uploaded Date: 16 Jun 2022
    • views: 2744500
    Buy/ Stream - https://ditto.fm/fakefakefake Prod. By - Rxwntree Additional production - Fumes Beats Saxophone - EOA Electric Guitar - SJO Mixed & Mastered - Marrik Shearer Follow MoStack: Twitter: https://twitter.com/realmostack Soundcloud: https://soundcloud.com/realmostack FaceBook: https://www.facebook.com/OfficialMoStack Instagram: https://www.instagram.com/mo.stack/ TiKTok : https://www.tiktok.com/@bigstakka SnapChat : Stako-Tehng © MizerMillion Entertainment 2022 Contacts: Mgmt : Shane@mizermillion.com Booking Agent : CDSouza@wmeagency.com PR enquiries : aarti@alwaysprotectedpublicity.com LYRICS : Yo, when you went to hell my nigga I would've gone with you I had a bond with you I would've James Bond for you My mum mothered you I kinda miss the other you But you leaving my life was a W You know I still got your back if niggas trouble you and if you needed to lie I would've covered you Jump off a bridge? Then fuck it ima jump with you Cos that's what brothers do Everyone but you Shit Everybody changed the moment I got limelight I can't take the fame I gotta go get my mind right I'm locked for the day I only come out at midnight Vampire life it got me feeling like twilight I got so much pain that I don't wanna say G Cos when I let it out they go say that i'm crazy You niggas let me down when I asked you to save me I can't take your words cos your actions are lazy I tried to give back to this hating community The hood fell apart now there's no more unity The love died down now there's no more you and me That Gyal speak french and she speak it fluently She said Je'Taime and I feel it spiritually Now she hates me she told the world that she's through with me Feds on my back not again are you kidding me? I Put my hands up just to stop them from killing me All these death threats but ain't nobody drilling B I saw them boys and they blew like Digga D I hate being sober I really need drink in me I took 20 shots and still nuttin ain't hitting me I think i'm going crazy I'm talking to hennessy It's Mo in the house and I'm feeling like Ali G I can't chill with fakes like they give me a allergy We can't succeed of this negative energy Nah Me and the boy there could never get along We gotta have faith man we gotta stay strong They got rich to act bad they got the whole thing wrong You tryna end up like Jay Z? Or end like King Von? I'm getting so pissed off man I hate this shit Cos niggas wanna claim their block but not claim their kid Don't ask if I've ever rid That's like asking Kim and Kanye if they kissed You know they did Oi member that time when I done it for Killy That was my dawg we was Chunks and Filly They ask where you are? I said his cool his busy But deep down they don't know I wanna slap you silly I tried to give hand outs and took bare L's Cos they don't wanna get money they want bare girls That gyal chong so i had to tell her farewell Cah her pum pum kinda had a weird smell Yo leave me alone don't shout me Cos everyone that left my life's better off without me I saw them captions that you wrote was it about me? The stress could've turned me to alchy Man gotta remove myself from this fake shit Fake rappers Fake niggas with fake chicks Fake boobs Fake ass and fake lips Fake drillers with fake ice and fake drip It's all a lie How you claiming we're bruddas? It's all a lie How she claiming we're lovers? It's a lie But you're outside with others It's all a lie It's all a lie It's all a lie It's all a lie It's all a lie It's all a lie It's all a lie It's all a lie It's all a lie #MoStack #Fake
    https://wn.com/Mostack_Fake_Fake_Fake
    Lauv & Conan Gray - Fake [Official Music Video]
    2:43

    Lauv & Conan Gray - Fake [Official Music Video]

    • Order:
    • Duration: 2:43
    • Uploaded Date: 13 Oct 2020
    • views: 15209331
    "Fake” by Lauv & Conan Gray is available now: https://lauv.ffm.to/fake For official “Fake” merch visit the Lauv store at https://shop.lauvsongs.com/ Subscribe to Lauv’s channel: https://lauv.lnk.to/subscribe Follow Lauv: http://lauvsongs.com http://facebook.com/lauvsongs http://twitter.com/lauvsongs http://instagram.com/lauvsongs https://www.tiktok.com/@lauvsongs http://my.community.com/lauv Follow Conan Gray: https://www.instagram.com/conangray https://twitter.com/conangray https://www.facebook.com/conangrayofficial http://www.conangray.com Thank you to the entire cast and crew for following all the strictest recommended COVID safety protocols including advance and onsite testing, masks and social distancing to order to ensure the shoot was safe as possible for everyone involved. Directed by Jason Lester Produced by Laura Burhenn for Our Secret Handshake Director of Photography: Powell Robinson Creative Director: Kevin Chen Steadicam: Justin Danzansky Chief Lighting Technician: Hiram Borges Assistant Lighting Technician: Chris Ginnaven 1st AC: Owen Patry 2nd AC: Dan Marino Glam/HMU: Athena Alberto Hair Assistant: Mallorie Gray Stylist: Katie Qian Assistant Stylist: Kaitlyn Bone Production Designer: Taylor Almodovar Art Director: Justin Gardner Set Decorator: Melissa Cripe Carpenter: Sean Hayashi Art PAs: Jake Kulat & Xavier Martinez Key Grip: David Nunez Assistant Grip: Ashley Petrie PA: John German Editor: Jason Lester Colorist: Joseph Bicknell for Company 3 Color Producers: Anna Kelman & Hannah England for Company 3 Director’s Rep: Emily Sanders for Reveur Lauv MGMT: Steve Bursky & Max Gredinger for Foundations Artist MGMT Lauv Day-To-Day MGMT: Kirk Ellis for Foundations Artist MGMT Lauv Label Manager: Emma MacDonald Conan Gray MGMT: Eddie Wintle and Colette Patnaude for Expand Entertainment Lauv PA: Nikitta Santiago BTS Photographer: Jacqueline Kulla LYRICS: Yeah, you and your friends you live on the surface Act like you’re perfect Everyone knows You’re just like everyone else except for you’re better at taking photos Ohh ohh oh oh Yeah, why you gotta make everything a show Man, you’re so fucking fake (ahh ah) You don’t mean a single thing you say (ahh ah) If we’ve got a problem, say it to my face (ahh ah) And you’re just like all the people that you hate You’re so fake When the real you’s back, I’ll pick up my phone Calling me up when you’re getting drunk You say you’re in love but what do you mean Cause when you wake up you blame it on drugs And then we break up, you lie through your teeth You just want to play little games for attention (you just want to play little games for attention) Telling me your perfect lies and wasting all my time Cause you’re so fucking fake (ahh ah) You don’t mean a single thing you say (ahh ah) If we’ve got a problem, say it to my face (ahh ah) And you’re just like all the people that you hate You’re so fake When the real you’s back, I’ll pick up my phone You just want to play little games for attention (you just want to play little games for attention) Pushing me away so I crave your affection (pushing me away so I crave your affection) Calling me insane but you stay in my mentions (calling me insane but you stay in my mentions) Telling me your perfect lies and wasting all my time Cause you’re so fucking fake (ahh ah) You don’t mean a single thing you say (ahh ah) If we’ve got a problem, say it to my face (ahh ah) And you’re just like all the people that you hate You’re so fake (ooh) When the real you’s back, I’ll pick up my phone #Lauv #ConanGray #Fake
    https://wn.com/Lauv_Conan_Gray_Fake_Official_Music_Video
    The Tech Thieves - Fake (Lyrics)
    2:18

    The Tech Thieves - Fake (Lyrics)

    • Order:
    • Duration: 2:18
    • Uploaded Date: 29 Mar 2020
    • views: 18832816
    🎵 Follow 7clouds on Spotify : http://bit.ly/7CLOUDS 🎧 The Tech Thieves - Fake (Lyrics) ⏬ Download / Stream: https://techthieves.lnk.to/Fake 🔔 Turn on notifications to stay updated with new uploads! 👉 The Tech Thieves https://soundcloud.com/thetechthievesmusic https://facebook.com/TheTechThieves https://twitter.com/TheTechThieves https://instagram.com/TheTechThieves https://open.spotify.com/artist/06bun5reMRmLxFCbcB6UHW ❤️ Follow our Spotify playlists: http://bit.ly/7cloudsSpotify ☁️ 7clouds: https://open.spotify.com/user/7cloudsmusic https://instagram.com/7cloudsmusic https://facebook.com/7cloudsmusic https://twitter.com/7cloudsmusic ......... 🎤 Lyrics: The Tech Thieves - Fake [Verse 1] Please don't fake it, show me what you're all about I got wasted, learning how to let it out I can't take it, kiss me with the lips of doubt Please don't fake it, Fake it, fake [Drop] [Verse 2] Please don't fake it, show me what you're all about I got wasted, learning how to let it out I can't take it, kiss me with the lips of doubt Please don't fake it, Fake it, fake [Bridge] Please don't fake it, Fake it, fake ......... 📷 Wallpaper: https://unsplash.com/ ......... 📧 Contact / Demo Submissions: contact@7clouds.org ......... 💌 Demos / Music Submissions: https://7clouds.edmdistrict.com ......... #TheTechThieves #Fake #Lyrics
    https://wn.com/The_Tech_Thieves_Fake_(Lyrics)
    Simply Red - Fake (Official Video)
    3:51

    Simply Red - Fake (Official Video)

    • Order:
    • Duration: 3:51
    • Uploaded Date: 13 Jun 2007
    • views: 14420475
    Simply Red - Fake (Official Video) The new Simply Red album ‘Time’ is released on 26th May 2023. First single ‘Better With You’ out NOW! Pre-order the album here: https://simplyred.lnk.to/Time Tickets for the Simply Red Summer ’23 European Tour are available now! Get yours at http://www.simplyred.com/ Subscribe to Simply Red: https://www.youtube.com/@simplyred/featured?sub_confirmation=1 Watch Simply Red Official Music Videos: https://www.youtube.com/watch?v=yG07WSu7Q9w&list=PL966EB62A778ED491&index=1 Follow Simply Red: https://twitter.com/SimplyRedHQ https://www.facebook.com/simplyred/ https://instagram.com/simplyredofficial https://www.tiktok.com/@simplyredofficial Lyrics Watching love drifting away And I feel like I'm someone else The hurting is rough Long are the days And you have hurt me enough you're scared to be loved You know that's your way Your youth has made you too tough you're hurting for love in so many ways The truth has hurt you enough I read a book And it?s your face Fake? it?s your face now Still my love for you was no mistake Fake? I will always love you Fake Hoping for love Day after day And it?s always someone else The hurting is rough Long are the days And you have hurt me enough you're burning your hair On your cigarette, oh baby Turning your nose up At the clothes your girlfriend wears I don't care Always, always, always I will love you The full video for 'Fake' by Simply Red. It was released in July 2003 as the second single from the album, Home and was the next single after their international smash hit "Sunrise". Home is the eighth studio album by British pop and soul band Simply Red, released in 2003. The album was a success all around the world, and includes the hit singles, "Sunrise", "Fake", "You Make Me Feel Brand New" and "Home". Simply Red have over a billion hits on YouTube, have sold over 60 million albums worldwide, 5 going to number one in the UK. Their 1991 classic Stars was the best-selling album for two years running in Britain and Europe. They have had two US Billboard chart toppers with classic singles Holding Back The Years and If You Don’t Know Me By Now. Every Simply Red studio album has been a UK top ten (with previous release Big Love reaching number 4 in 2015). Hucknall has been the songwriter and bandleader since the beginning in 1985. #SimplyRed #Fake #Home
    https://wn.com/Simply_Red_Fake_(Official_Video)
    Five Finger Death Punch - Fake (AUDIO)
    3:31

    Five Finger Death Punch - Fake (AUDIO)

    • Order:
    • Duration: 3:31
    • Uploaded Date: 06 Apr 2018
    • views: 10109120
    Music video for Fake performed by Five Finger Death Punch. Copyright (C) 2018 Prospect Park . --- Powered by http://www.vydia.com http://vevo.ly/Bvgni8
    https://wn.com/Five_Finger_Death_Punch_Fake_(Audio)
    FAKE - AP DHILLON
    3:04

    FAKE - AP DHILLON

    • Order:
    • Duration: 3:04
    • Uploaded Date: 07 Nov 2019
    • views: 5454681
    Subscribe for 🔥: http://bit.ly/2qqGljI Latest Punjabi Song 2019 FAKE - AP DHILLON | GMINXR | SHINDA KAHLON Song : FAKE Singer : AP Dhillon Music : GMINXR Lyrics : Shinda Kahlon Mix - Master : Bauss p
    https://wn.com/Fake_Ap_Dhillon
    Raste - Fake (Prod by Nauk & Splecter) Performance video
    4:10

    Raste - Fake (Prod by Nauk & Splecter) Performance video

    • Order:
    • Duration: 4:10
    • Uploaded Date: 01 Mar 2024
    • views: 979905
    Performed by Raste Produced by Nauk and Splecter Mixed and Mastered by Joseph Visual by Fotoma (El Mehdi Idlane) Colored by Hamza Houar S/o to Idlane's Family, El Mehdi Essaiydy
    https://wn.com/Raste_Fake_(Prod_By_Nauk_Splecter)_Performance_Video
    Lil Skies - Fake | prod by mikemedusa (OFFICIAL MUSIC VIDEO)
    3:20

    Lil Skies - Fake | prod by mikemedusa (OFFICIAL MUSIC VIDEO)

    • Order:
    • Duration: 3:20
    • Uploaded Date: 25 Jan 2017
    • views: 36980803
    Filmed/edited by Burkyfilms Song: lil skies - fake (prod by mikemedusa) Hit that Like button Check him out on all the socials Instagram @ lilskies soundcloud: https://soundcloud.com/lil-skies AWG Check me out on insta @burkyfilms
    https://wn.com/Lil_Skies_Fake_|_Prod_By_Mikemedusa_(Official_Music_Video)
    Vybz Kartel - Fake (Official Audio)
    2:27

    Vybz Kartel - Fake (Official Audio)

    • Order:
    • Duration: 2:27
    • Uploaded Date: 18 Sep 2023
    • views: 820316
    Official Audio for "Fake" by Vybz Kartel Produced by Aikopondibeat Download/Stream: https://Hapilos.lnk.to/VybzKartel-Fake Connect with Vybz Kartel: https://www.instagram.com/vybzkartel/ https://www.twitter.com/iamthekartel #vybzkartel #fake #aikopondibeat http://vevo.ly/C3mW5t
    https://wn.com/Vybz_Kartel_Fake_(Official_Audio)
    developed with YouTube
    PLAYLIST TIME:
    • Most Related
    • Most Recent
    • Most Popular
    • Top Rated
    • Alexander O'Neal -
      3:10
      Alexander O'Neal - "Fake"remove from playlist
    • MoStack - FakE FaKe FAKE
      3:11
      MoStack - FakE FaKe FAKEremove from playlist
    • Lauv & Conan Gray - Fake [Official Music Video]
      2:43
      Lauv & Conan Gray - Fake [Official Music Video]remove from playlist
    • The Tech Thieves - Fake (Lyrics)
      2:18
      The Tech Thieves - Fake (Lyrics)remove from playlist
    • Simply Red - Fake (Official Video)
      3:51
      Simply Red - Fake (Official Video)remove from playlist
    • Five Finger Death Punch - Fake (AUDIO)
      3:31
      Five Finger Death Punch - Fake (AUDIO)remove from playlist
    • FAKE - AP DHILLON
      3:04
      FAKE - AP DHILLONremove from playlist
    • Raste - Fake (Prod by Nauk & Splecter) Performance video
      4:10
      Raste - Fake (Prod by Nauk & Splecter) Performance videoremove from playlist
    • Lil Skies - Fake | prod by mikemedusa (OFFICIAL MUSIC VIDEO)
      3:20
      Lil Skies - Fake | prod by mikemedusa (OFFICIAL MUSIC VIDEO)remove from playlist
    • Vybz Kartel - Fake (Official Audio)
      2:27
      Vybz Kartel - Fake (Official Audio)remove from playlist
    developed with YouTube
    PLAYLIST TIME:

    Alexander O'Neal - "Fake"

    Alexander O'Neal Official Music Video - "Fake" PLEASE SUBSCRIBE TO MY CHANNEL AND CLICK THE NOTIFICATION BELL -------------------------------------------------------------- Alexander O'Neal NEW OFFICIAL Facebook Page. https://www.facebook.com/officialalexanderoneal Please Like and Share Alexander O'Neal Fan Page https://www.facebook.com/groups/aonas Alexander O'Neal Youtube Fan Channel https://www.youtube.com/ykywi5751 Alexander O'Neal Official Instagram Page https://www.instagram.com/officialalexanderoneal/ Alexander O'Neal Official Twitter Page https://twitter.com/officialaoneal #ALEXANDERONEAL #FAKE
    3:10
    Alexander O'Neal - "Fake"
    Alexander O'Neal Official Music Video - "Fake" PLEASE SUBSCRIBE TO MY CHANNEL AND CLICK T...
    published: 11 Jan 2008
    Play in Full Screen
    3:11
    MoStack - FakE FaKe FAKE
    Buy/ Stream - https://ditto.fm/fakefakefake Prod. By - Rxwntree Additional production - ...
    published: 16 Jun 2022
    Play in Full Screen
    2:43
    Lauv & Conan Gray - Fake [Official Music Video]
    "Fake” by Lauv & Conan Gray is available now: https://lauv.ffm.to/fake For official “Fake...
    published: 13 Oct 2020
    Play in Full Screen
    2:18
    The Tech Thieves - Fake (Lyrics)
    🎵 Follow 7clouds on Spotify : http://bit.ly/7CLOUDS 🎧 The Tech Thieves - Fake (Lyrics) ⏬ ...
    published: 29 Mar 2020
    Play in Full Screen
    3:51
    Simply Red - Fake (Official Video)
    Simply Red - Fake (Official Video) The new Simply Red album ‘Time’ is released on 26th Ma...
    published: 13 Jun 2007
    Play in Full Screen
    3:31
    Five Finger Death Punch - Fake (AUDIO)
    Music video for Fake performed by Five Finger Death Punch. Copyright (C) 2018 Prospect Pa...
    published: 06 Apr 2018
    Play in Full Screen
    3:04
    FAKE - AP DHILLON
    Subscribe for 🔥: http://bit.ly/2qqGljI Latest Punjabi Song 2019 FAKE - AP DHILLON | GMINX...
    published: 07 Nov 2019
    Play in Full Screen
    4:10
    Raste - Fake (Prod by Nauk & Splecter) Performance video
    Performed by Raste Produced by Nauk and Splecter Mixed and Mastered by Joseph Visual by F...
    published: 01 Mar 2024
    Play in Full Screen
    3:20
    Lil Skies - Fake | prod by mikemedusa (OFFICIAL MUSIC VIDEO)
    Filmed/edited by Burkyfilms Song: lil skies - fake (prod by mikemedusa) Hit that Like butt...
    published: 25 Jan 2017
    Play in Full Screen
    2:27
    Vybz Kartel - Fake (Official Audio)
    Official Audio for "Fake" by Vybz Kartel Produced by Aikopondibeat Download/Stream: https...
    published: 18 Sep 2023
    Play in Full Screen

    Fake

    Fake may refer to:

    In music:

  • Fake (Swedish band), a band active in the 1980s
  • Fake?, a Japanese rock band
  • Fake (album), by Adorable
  • "Fake" (Ai song)
  • "Fake" (Alexander O'Neal song) (1987)
  • "Fake" (Simply Red song) (2003)
  • Fake (US band), an American electro band remixed by Imperative Reaction
  • "Fake", a song by Brand New Heavies from Brother Sister
  • "Fake", a 1994 song by Korn from Korn
  • "Fake", a song by Mötley Crüe
  • In other uses:

  • Fake (manga), a BL manga
  • Fake (2003 film), a Thai movie
  • Fake (2010 film), a film featuring Fisher Stevens
  • Fake, Nigeria, a village 90 miles from Katagum
  • Fake, a 1969 book by Clifford Irving about art forger Elmyr de Hory
  • People with the name

  • Caterina Fake
  • Chen Fake
  • See also

  • Fake book, a collection of musical lead sheets
  • Charlatan
  • Counterfeit
  • Cover-up
  • Deception
  • Decoy
  • False
  • Faux
  • Feint
  • Forgery
  • Hoax
  • Replica
  • This page contains text from Wikipedia, the Free Encyclopedia - https://wn.com/Fake
    '); } 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)); } }); }); }); // -->
    ×