- published: 13 Aug 2014
- views: 134759
'+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; })); }); -->
Dr. Fu Manchu is a fictional character introduced in a series of novels by British author Sax Rohmer during the first half of the twentieth century. The character was also featured extensively in cinema, television, radio, comic strips, and comic books for over 90 years, and has become an archetype of the evil criminal genius while lending the name to the Fu Manchu moustache.
"Imagine a person, tall, lean and feline, high-shouldered, with a brow like Shakespeare and a face like Satan, ... one giant intellect, with all the resources of science past and present ... Imagine that awful being, and you have a mental picture of Dr. Fu-Manchu, the yellow peril incarnate in one man."
- The Insidious Dr. Fu Manchu
Supervillain Fu Manchu's murderous plots are marked by the extensive use of arcane methods; he disdains guns or explosives, preferring dacoits, thuggees, and members of other secret societies as his agents armed with knives, or using "pythons and cobras ... fungi and my tiny allies, the bacilli ... my black spiders" and other peculiar animals or natural chemical weapons.
Fu Manchu is a fictional character. Fu Manchu may also refer to:
Fu Manchu is an American, Southern California-based stoner rock band that formed in 1985.
Fu Manchu originally formed in 1985 as a hardcore punk band called Virulence. The line up was vocalist Ken Pucci, guitarist Scott Hill, bassist Mark Abshire, and drummer Ruben Romano. In 1987 Abshire left the band and was replaced by Greg McCaughey. They recorded their debut LP If This Isn't a Dream... in 1988, which was released on Alchemy Records (1989). In 1990, Pucci left the band and was replaced by vocalist Glenn Chivens, and they changed their name to Fu Manchu. Soon after they released the "Kept Between Trees" 7 inch single on Slap A Ham Records. McCaughey was replaced by Mark Abshire. Chivens also left the band around this time for unknown reasons. Rather than search for a new vocalist, Scott Hill added lead vocalist to his guitar duties. To compensate, Scott Votaw was recruited as lead guitarist. In 1992, Fu Manchu released three 7 inch singles: "Senioritis," "Pick Up Summer," and "Don't Bother Knockin' (If This Vans Rockin')". In 1993, Votaw left the band and was replaced by lead guitarist Eddie Glass, who had previously played drums in the band Olivelawn.
A Fu Manchu moustache or simply Fu Manchu is a full, straight moustache that originates on the corners of the mouth and grows downward past the clean-shaven lips and chin in two tapered "tendrils", often extending past the jawline. An expansion of the Fu Manchu sometimes includes a third long "tendril" descending from a small patch on the chin.
The Fu Manchu moustache derives its name from Fu Manchu, a fictional character British/Irish author Sax Rohmer, who is shown wearing such a moustache in film adaptations of Rohmer's stories. The literary Fu Manchu did not wear a moustache. The famous facial hair first appeared in the British serial The Mystery of Dr. Fu Manchu (1923); the Fu Manchu moustache then became integral to cinematic and television stereotypical depictions of Chinese villains.
The Fu Manchu is a category of competition in the World Beard and Moustache Championships.
The facial hair style is often used to stereotype Asian, more specifically Chinese, ethnicity. Many caricatures of Chinese in the 19th and early 20th century depict Chinese with such facial hair.
Fu Manchu is the name of a fictional supervillain appearing in American comic books published by Marvel Comics. He is based on the character of the same name and is the father of Shang-Chi.
Fu Manchu first appeared in Special Marvel Edition #15 (December 1973). He was created by Sax Rohmer and adapted into Marvel Comics by Steve Englehart, Al Milgrom, and Jim Starlin. As the result of Marvel Comics later losing the rights to the Fu Manchu name, his later appearances give him the real name of Zheng Zu.
Zheng Zu gained his education at the Tibetan monastery of Rach where he learned martial arts, arcane knowledge, and every known discipline of science. Becoming highly regarded in his monastery, Zheng Zu was considered part of their brotherhood until the day he left to share his gifts with the world as Fu Manchu.
When his daughter Fah Loo Suee was a child, Fu Manchu showed her the Moon where he told her that he would one day move the world so that he would rule another world.
Subscribe to Exclusive Media for all the latest trailers and movie clips http://bit.ly/1m2iRIl Grisly strangulations in London alert Dr. Nayland Smith of Scotland Yard to the possibility that fiendish Fu Manchu may not be dead after all, even though Smith himself witnessed his execution. A killer spray made from Tibetan berries seems to be involved and clues keep leading him back to the banks of the mighty river Thames.
Artist: Fu Manchu Music: Saturn lll Album: The action is go (1997) Mammoth Records The Action is Go is the fourth studio album from California stoner group Fu Manchu. It features new drummer Brant Bjork (Kyuss) and new lead guitarist Bob Balch. fan made video, hope you enjoy.
Provided to YouTube by Universal Music Group Hell On Wheels · Fu Manchu King Of The Road ℗ 1999 Mammoth Records, Inc. Released on: 1999-01-01 Auto-generated by YouTube.
Provided to YouTube by Universal Music Group Evil Eye · Fu Manchu The Action Is Go ℗ 1997 Mammoth Records, Inc. Released on: 1997-01-01 Auto-generated by YouTube.
#FUMANCHU #HELLFEST 🇫🇷 Et dans cette petite ville du sud de la Californie, qui dit beaux jours dit température caniculaire, de celles qui font du moindre mouvement un effort surhumain. Une lourdeur ambiante qui se retrouve dans le son d’une frange de la jeunesse locale qui, au gré de la découverte de substances permettant de voyager sans bouger, a eu la bonne idée de se mettre à la musique. De cette rencontre entre canicule, drogue et guitares fuzz naît le stoner de Palm Desert dont sont notamment issus Kyuss, Queens of the Stone Age et donc @fumanchuofficial. Mené par Scott Hill, ancien punk hardcore de la côte californienne, Fu Manchu débarque sans prévenir en 1994 avec le désormais classique No One Rides For Free. Trente ans et onze albums plus tard, les voilà qui reviennent avec The...
The Return Of Tomorrow (2024) https://www.fu-manchu.com/ https://www.instagram.com/fumanchuband/ https://web.facebook.com/FuManchuBand/ https://www.youtube.com/channel/UCSwDEE2rbdez8NkdSevjVxA https://x.com/fumanchuband #stonerrock #desertrock #fuzzrock Time passes differently for Fu Manchu. In 1994, the Orange County icons announced themselves boldly with smoke-stained debut No One Rides For Free, distilling into sound the sensation of dropping some serious hallucinogens and heading out to rev engines under endless desert skies. Three decades down the line, their sun-beaten muscle cars, rumbling choppers and signature sci-fi storytelling might have a few (thousand) more miles on the clock, but the blend of sand-rattling high octane and head-spinning psychedelia remains as intoxicating now...
From the album The Action Is Go.All copyrights held by the original recording artists.
Provided to YouTube by Universal Music Group California Crossing · Fu Manchu California Crossing ℗ 2002 Mammoth Records, Inc. Released on: 2002-01-01 Producer, Studio Personnel, Mixer: Matt Hyde Associated Performer, Alto: Brad Davis Studio Personnel, Engineer: Nick Raskulinecz Associated Performer, Guitar, Vocals: Scott Hill Associated Performer, Drums: Brant Bjork Associated Performer, Guitar: Bob Balch Auto-generated by YouTube.
Provided to YouTube by TuneCore Godzilla · Fu Manchu Godzilla's / Eatin' dust ℗ 2010 At The Dojo Records Released on: 2010-08-14 Auto-generated by YouTube.
A short movie made with scenes taken from "The Wraith" (1986). Music by Fu Manchu Track: Mongoose Album: Eatin' Dust (1999)
#FUMANCHU #HELLFEST 🇫🇷 Et dans cette petite ville du sud de la Californie, qui dit beaux jours dit température caniculaire, de celles qui font du moindre mouvement un effort surhumain. Une lourdeur ambiante qui se retrouve dans le son d’une frange de la jeunesse locale qui, au gré de la découverte de substances permettant de voyager sans bouger, a eu la bonne idée de se mettre à la musique. De cette rencontre entre canicule, drogue et guitares fuzz naît le stoner de Palm Desert dont sont notamment issus Kyuss, Queens of the Stone Age et donc @fumanchuofficial. Mené par Scott Hill, ancien punk hardcore de la côte californienne, Fu Manchu débarque sans prévenir en 1994 avec le désormais classique No One Rides For Free. Trente ans et onze albums plus tard, les voilà qui reviennent avec The...
From the album The Action Is Go.All copyrights held by the original recording artists.
Order the new album 'The Return Of Tomorrow' at https://www.fu-manchu.com/ Follow Fu Manchu: Instagram: https://www.instagram.com/fumanchuband/ Facebook: https://facebook.com/fumanchuband Twitter: https://twitter.com/fumanchuband Official Website: https://www.fu-manchu.com/
SETLIST 1. Fu Manchu – Hell On Wheels 00:00:00 2. Fu Manchu – Clone Of The Universe 00:06:50 3. Fu Manchu – Regal Begal 00:10:20 4. Fu Manchu – Dimension Shifter 00:13:23 5. Fu Manchu – Laserbl´Ast! 00:18:14 6. Fu Manchu – Evil Eye 00:22:25 7. Fu Manchu – Push Button Magic 00:26:34 8. Fu Manchu – Godzilla 00:31:04 9. Fu Manchu – King Of The Road 00:38:42 10. Fu Manchu – Eatin' Dust 00:44:16 11. Fu Manchu – Mongoose 00:47:32 12. Fu Manchu – Califormia Crossing 00:52:39 13. Fu Manchu – Weired Beard 01:03:45 Besetzung Scott Hill - vocals, guitar Bob Balch - guitar, vocals Brad Davis - bass, vocals Scott Reeder - drums, vocals 📸 Fotos (von Thomas von der Heiden): https://www1.wdr.de/fernsehen/rockpalast/events/fu-manchu-zweiundzwanzig-100.html 🎤 Interview (Conny Schiffbauer): https://www1.wd...
Order the new album 'The Return Of Tomorrow' at https://www.fu-manchu.com/ Follow Fu Manchu: Instagram: https://www.instagram.com/fumanchuband/ Facebook: https://facebook.com/fumanchuband Twitter: https://twitter.com/fumanchuband Official Website: https://www.fu-manchu.com/ Stream/Buy the new album, 'The Return of Tomorrow': https://lnk.to/FuManchu_TheReturnOfTomorrow_Album
Fu Manchu - King Of The Road
Provided to YouTube by Universal Music Group Hell On Wheels · Fu Manchu King Of The Road ℗ 1999 Mammoth Records, Inc. Released on: 1999-01-01 Auto-generated by YouTube.
Provided to YouTube by Universal Music Group Evil Eye · Fu Manchu The Action Is Go ℗ 1997 Mammoth Records, Inc. Released on: 1997-01-01 Auto-generated by YouTube.
Order the new album 'The Return Of Tomorrow' at https://www.fu-manchu.com/ Follow Fu Manchu: Instagram: https://www.instagram.com/fumanchuband/ Facebook: https://facebook.com/fumanchuband Twitter: https://twitter.com/fumanchuband Official Website: https://www.fu-manchu.com/
I'm just here for the gasoline.
Dr. Fu Manchu is a fictional character introduced in a series of novels by British author Sax Rohmer during the first half of the twentieth century. The character was also featured extensively in cinema, television, radio, comic strips, and comic books for over 90 years, and has become an archetype of the evil criminal genius while lending the name to the Fu Manchu moustache.
"Imagine a person, tall, lean and feline, high-shouldered, with a brow like Shakespeare and a face like Satan, ... one giant intellect, with all the resources of science past and present ... Imagine that awful being, and you have a mental picture of Dr. Fu-Manchu, the yellow peril incarnate in one man."
- The Insidious Dr. Fu Manchu
Supervillain Fu Manchu's murderous plots are marked by the extensive use of arcane methods; he disdains guns or explosives, preferring dacoits, thuggees, and members of other secret societies as his agents armed with knives, or using "pythons and cobras ... fungi and my tiny allies, the bacilli ... my black spiders" and other peculiar animals or natural chemical weapons.
If I could tear down these walls that keep you and I apart
I know I could claim your heart and our perfect love will start
But girl you just won't approve of the things that I do
When all I do is for you but still you say it ain't cool
If there's somebody else, he can't love you like me
And he says he'll treat you well, he can't treat you like me
And he's buying diamonds and pearls, he can't do it like me
And he's talking you all across the world, he can't trick you like me
[CHORUS]
So why ain't you feelin' me, she's invincible
But I can do anything, she's invincible
Even when I beg and plead, she's invincible
Girl won't give in to me, she's invincible
Now many times I've told you of all the things I would do
But I cant seem to get through no matter how I try to
So tell me how does it seem that you ain't checking for me
When I know that I could be more than you could ever dream
If there's somebody else, he can't love you like me
And he says he'll treat you well, he can't treat you like me
And he's buying diamonds and pearls, he can't do it like me
And he's talking you all across the world, he can't trick you like me
[CHORUS]
Now some way I'll have to prove all that I said I would do
Giving you everything, fulfilling your fantasy
Then maybe you'll change your mind and finally give in time
Then I'll be showing you what other men are supposed to do for you my baby
[RAP]
[CHORUS x 3]