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

Money-B

Ron Brooks better known by his stage name Money-B, is an American rapper, best known for being a member of the funk and rap group Digital Underground. He is a member of Raw Fusion with DJ Fuze whom they had two albums, Live From the Styleetron and Hoochified Funk.

He had a solo album named Talkin' Dirty which features Digital Underground released in 1999.

Discography

  • 1999: Talkin' Dirty
  • 2007: Mandatory Vol. 1
  • 2009: 4 Tha Funk Of It
  • 1991: Live from the Styleetron (with Raw Fusion)
  • 1994: Hoochiefied Funk (with Raw Fusion)
  • 2010: "The Club" (with Big Bossolo} album The Birth
  • References

    External links

  • Money-B at the Internet Movie Database
  • Music videos and lyrics
  • Podcasts:

    • Money B vs. Frantick | Bboy Revival 2010 | WRF

      Money B (Playboyz Inc.) VS Frantick (Funny Bones Crew, G-Style, LXD). Two legendary poppers throwing it down for you all in an exhibition battle @ Bboy Revival II 2010. San Jose, CA November 20, 2010.

      published: 25 Jan 2011
    • Squeegee - Money B (clip)

      1er clip du groupe squeegee. Que de souvenirs !

      published: 16 Oct 2008
    • Squeegee - Money B

      Squeegee - Money B ... Désolé mais je n'ai pas le clip ... mais si par hasard quelqu'un l'aurait ce serair cool de le mettre en ligne où de me l'envoyer. Merci, Bonne écoute A +

      published: 08 Sep 2008
    • Wheeler Walker Jr. - Money 'N' Bitches

      Stream Money 'N' Bitches: https://stem.ffm.to/moneynbitches Pre-Save/Pre-Add “Ram”:  https://stem.ffm.to/wheelerwalkerjrram Pre-Order the “Ram” Album: https://wheelerwalkerjr.themerchcollective.com/   Follow Wheeler Walker Jr:  Instagram: https://www.instagram.com/wheelerwalkerjr/ Tik Tok: https://www.tiktok.com/@wheelerwalkerjr Facebook: https://www.facebook.com/WheelerWalkerJr Website: https://www.wheelerwalkerjr.com/     That’s right I’m headed back out on tour. If your city ain’t on the list it’s because it sucks. Tickets and VIP packages for The Spread Eagle Tour are on sale NOW: https://www.wheelerwalkerjr.com/tour —————————       Production     ◦ Director - Michael Kessler     ◦ Director of Photography - Weston Heflin     ◦ Production Assistant - Keisha Martin     ◦ Production Assi...

      published: 19 Jul 2023
    • Boney M. - Rasputin (Sopot Festival 1979)

      The performance of Boney M. to „Rasputin” at the Sopot Festival 1979. You can listen to all songs of Boney M. here: https://lnk.to/BoneyM Subscribe to the channel and activate notifications: https://www.youtube.com/channel/UCJOXLX2b_uMEct1r5F4PMXQ ► https://www.facebook.com/BoneyM.de ► https://www.instagram.com/boneym.official/ ► https://www.tiktok.com/@boneym.official ----------------------------------------------------------------------------------------------------------- Lyrics: There lived a certain man in Russia long ago He was big and strong, in his eyes a flaming glow Most people looked at him with terror and with fear But to Moscow chicks he was such a lovely dear He could preach the bible like a preacher Full of ecstasy and fire But he also was the kind of teacher Wome...

      published: 29 May 2015
    • Money B On Being Paranoid That X-Rated Tape with 2Pac and Females Will Leak Online One Day.

      Money B on being paranoid that x-rated tape with him and Tupac will leak online one day.

      published: 22 Oct 2023
    • Boney M. - Ma Baker (Sopot Festival 1979)

      The performance of Boney M. to „Ma Baker” at the Sopot Festival 1979. You can listen to all songs of Boney M. here: https://lnk.to/BoneyM Subscribe to the channel and activate notifications: https://www.youtube.com/channel/UCJOXLX2b_uMEct1r5F4PMXQ ► https://www.facebook.com/BoneyM.de ► https://www.instagram.com/boneym.official/ ► https://www.tiktok.com/@boneym.official ----------------------------------------------------------------------------------------------------------- Lyrics: FREEZE! I'm Ma Baker - put your hands in the air, gimme all your money - This is the story of Ma Baker, the meanest cat from ol' Chicago town She was the meanest cat In old Chicago town She was the meanest cat She really moved them down She had no heart at all No no no heart at all She was the mea...

      published: 29 May 2015
    • Above The Law ft. 2Pac & Money B - Call It What You Want (Official Video) [Explicit]

      Above The Law ft. 2Pac & Money B - Call It What You Want (Video) [Explicit] from the album 'Black Mafia Life' (1992) 🔔 Subscribe to UPROXX Video and ring the bell to turn on notifications: https://uproxx.it/5rzazsh 🎙️ New Episodes of People’s Party with Talib Kweli every Monday 9AMet/6AMpt. Watch all the episodes here: https://uproxx.it/avxtjgf More Hip-Hop Heads Playlists: 90's Hip Hop ▶️ http://bit.ly/90sHipHopPlaylist 2000's Hip Hop ▶️ http://bit.ly/2000sHipHopPlaylist 90's R&B Hits ▶️ http://bit.ly/90sRBPlaylist The UPROXX Family 🎧 UPROXX Music https://youtube.com/uproxxmusic 🎥 UPROXX Studio https://youtube.com/uproxx FOLLOW ➕UPROXX.com: https://uproxx.com ➕Instagram: https://instagram.com/uproxx ➕Twitter: https://twitter.com/uproxx ➕Facebook: https://facebook.com/uproxx ABOUT ...

      published: 14 Jul 2012
    • MONEY B SPEAKS ON 2PAC & SHOCK G - LIVE ON ROADIUM RADIO

      THIS CLIP IS TAKEN FROM ROADIUM RADIO EPISODE 340 WITH MONEY B

      published: 17 Oct 2024
    • Cardi B - Money [Official Music Video]

      Cardi B - Money Stream/Download: https://CardiB.lnk.to/moneyID Stream/Download "Bongos" (feat. Megan Thee Stallion) here: https://cardib.lnk.to/Bongos Subscribe for more official content from Cardi B: https://CardiB.lnk.to/Subscribe Follow Cardi B http://cardibofficial.com http://Instagram.com/f/iamcardib http://Twitter.com/IAmCardiB https://Facebook.com/CardiB http://Soundcloud.com/IAmCardiB Exclusive Bardi Gang merchandise available here: https://www.youtube.com/@cardib/store Prod Co: OverScene EP: Kareem Johnson Dir: Jora Frantzis Producers: Jay Tauzin, Natasha Pierson, Krista Worby, Brien Justiniano Video Editor: Vinnie Hobbs Commissioner: Emmanuelle Cuny Marketing: Marsha St. Hubert Digital Marketing: Anthony De Padua & Justin Grant Associate Director, Video Administration: Li...

      published: 21 Dec 2018
    developed with YouTube
    Money B vs. Frantick | Bboy Revival 2010 | WRF
    10:43

    Money B vs. Frantick | Bboy Revival 2010 | WRF

    • Order:
    • Duration: 10:43
    • Uploaded Date: 25 Jan 2011
    • views: 39407
    Money B (Playboyz Inc.) VS Frantick (Funny Bones Crew, G-Style, LXD). Two legendary poppers throwing it down for you all in an exhibition battle @ Bboy Revival II 2010. San Jose, CA November 20, 2010.
    https://wn.com/Money_B_Vs._Frantick_|_Bboy_Revival_2010_|_Wrf
    Squeegee - Money B (clip)
    3:27

    Squeegee - Money B (clip)

    • Order:
    • Duration: 3:27
    • Uploaded Date: 16 Oct 2008
    • views: 251231
    1er clip du groupe squeegee. Que de souvenirs !
    https://wn.com/Squeegee_Money_B_(Clip)
    Squeegee - Money B
    3:37

    Squeegee - Money B

    • Order:
    • Duration: 3:37
    • Uploaded Date: 08 Sep 2008
    • views: 418962
    Squeegee - Money B ... Désolé mais je n'ai pas le clip ... mais si par hasard quelqu'un l'aurait ce serair cool de le mettre en ligne où de me l'envoyer. Merci, Bonne écoute A +
    https://wn.com/Squeegee_Money_B
    Wheeler Walker Jr. - Money 'N' Bitches
    3:31

    Wheeler Walker Jr. - Money 'N' Bitches

    • Order:
    • Duration: 3:31
    • Uploaded Date: 19 Jul 2023
    • views: 1302682
    Stream Money 'N' Bitches: https://stem.ffm.to/moneynbitches Pre-Save/Pre-Add “Ram”:  https://stem.ffm.to/wheelerwalkerjrram Pre-Order the “Ram” Album: https://wheelerwalkerjr.themerchcollective.com/   Follow Wheeler Walker Jr:  Instagram: https://www.instagram.com/wheelerwalkerjr/ Tik Tok: https://www.tiktok.com/@wheelerwalkerjr Facebook: https://www.facebook.com/WheelerWalkerJr Website: https://www.wheelerwalkerjr.com/     That’s right I’m headed back out on tour. If your city ain’t on the list it’s because it sucks. Tickets and VIP packages for The Spread Eagle Tour are on sale NOW: https://www.wheelerwalkerjr.com/tour —————————       Production     ◦ Director - Michael Kessler     ◦ Director of Photography - Weston Heflin     ◦ Production Assistant - Keisha Martin     ◦ Production Assistant - Fletcher Moore     ◦ Editor - Michael Kessler     Band Members       ◦ Wheeler Walker Jr. as himself     ◦ Steve “Steev” Giebler - Paul Childers     ◦ 傑瑞·宋飛 - Ryan Jackson     ◦ Gub Gub - Bryce Honeycutt   —————————   Lyrics:  Some people work  ‘Cause they like their job  But I’m only there  So I can feed my hog   Some day soon I’m gonna get that raise  Ain’t gonna waste it on bills I just wanna get laid    I need money  Money ‘n’ bitches  Buyin’ pussy when I get my riches Yeah, money ‘n’ bitches    I need money  Money ‘n’ bitches  Buyin’ pussy when I get my riches Yeah, money ‘n’ bitches     Got the taxman  Breathin’ down my neck  The joke’s on him This money’s for my dick   Turn off my lights  Shut off my water  This cash ain’t for you  It’s for your daughters    I need money  Money ‘n’ bitches  Buyin’ pussy when I get my riches Yeah, money ‘n’ bitches    I need money  Money ‘n’ bitches  Buyin’ pussy when I get my riches Yeah, money ‘n’ bitches     One o’ these days  When my ship comes in  Gonna fill that boat with pussy And all my new rich friends   I need money  Money ‘n’ bitches  Buyin’ pussy when I get my riches Yeah, money ‘n’ bitches    I need money  Money ‘n’ bitches  Buyin’ pussy when I get my riches Yeah, money ‘n’ bitches     Got a whole mess o’ problems And only two things that’ll fix ‘em Oh yeah Money and bitches
    https://wn.com/Wheeler_Walker_Jr._Money_'N'_Bitches
    Boney M. - Rasputin (Sopot Festival 1979)
    4:30

    Boney M. - Rasputin (Sopot Festival 1979)

    • Order:
    • Duration: 4:30
    • Uploaded Date: 29 May 2015
    • views: 627425970
    The performance of Boney M. to „Rasputin” at the Sopot Festival 1979. You can listen to all songs of Boney M. here: https://lnk.to/BoneyM Subscribe to the channel and activate notifications: https://www.youtube.com/channel/UCJOXLX2b_uMEct1r5F4PMXQ ► https://www.facebook.com/BoneyM.de ► https://www.instagram.com/boneym.official/ ► https://www.tiktok.com/@boneym.official ----------------------------------------------------------------------------------------------------------- Lyrics: There lived a certain man in Russia long ago He was big and strong, in his eyes a flaming glow Most people looked at him with terror and with fear But to Moscow chicks he was such a lovely dear He could preach the bible like a preacher Full of ecstasy and fire But he also was the kind of teacher Women would desire RA RA RASPUTIN Lover of the Russian queen There was a cat that really was gone RA RA RASPUTIN Russia's greatest love machine It was a shame how he carried on He ruled the Russian land and never mind the Czar But the kasachok he danced really wunderbar In all affairs of state he was the man to please But he was real great when he had a girl to squeeze For the queen he was no wheeler dealer Though she'd heard the things he'd done She believed he was a holy healer Who would heal her son RA RA RASPUTIN Lover of the Russian queen There was a cat that really was gone RA RA RASPUTIN Russia's greatest love machine It was a shame how he carried on But when his drinking and lusting and his hunger For power became known to more and more people The demands to do something about this outrageous Man became louder and louder "This man's just got to go!" declared his enemies But the ladies begged "Don't you try to do it, please" No doubt this Rasputin had lots of hidden charms Though he was a brute they just fell into his arms Then one night some men of higher standing Set a trap, they're not to blame "Come to visit us" they kept demanding And he really came RA RA RASPUTIN Lover of the Russian queen They put some poison into his wine RA RA RASPUTIN Russia's greatest love machine He drank it all and he said "I feel fine" RA RA RASPUTIN Lover of the Russian queen They didn't quit, they wanted his head RA RA RASPUTIN Russia's greatest love machine And so they shot him till he was dead Oh, those Russians... #BoneyM #BoneyM #Rasputin
    https://wn.com/Boney_M._Rasputin_(Sopot_Festival_1979)
    Money B On Being Paranoid That X-Rated Tape with 2Pac and Females Will Leak Online One Day.
    2:30

    Money B On Being Paranoid That X-Rated Tape with 2Pac and Females Will Leak Online One Day.

    • Order:
    • Duration: 2:30
    • Uploaded Date: 22 Oct 2023
    • views: 41066
    Money B on being paranoid that x-rated tape with him and Tupac will leak online one day.
    https://wn.com/Money_B_On_Being_Paranoid_That_X_Rated_Tape_With_2Pac_And_Females_Will_Leak_Online_One_Day.
    Boney M. - Ma Baker (Sopot Festival 1979)
    4:39

    Boney M. - Ma Baker (Sopot Festival 1979)

    • Order:
    • Duration: 4:39
    • Uploaded Date: 29 May 2015
    • views: 376561338
    The performance of Boney M. to „Ma Baker” at the Sopot Festival 1979. You can listen to all songs of Boney M. here: https://lnk.to/BoneyM Subscribe to the channel and activate notifications: https://www.youtube.com/channel/UCJOXLX2b_uMEct1r5F4PMXQ ► https://www.facebook.com/BoneyM.de ► https://www.instagram.com/boneym.official/ ► https://www.tiktok.com/@boneym.official ----------------------------------------------------------------------------------------------------------- Lyrics: FREEZE! I'm Ma Baker - put your hands in the air, gimme all your money - This is the story of Ma Baker, the meanest cat from ol' Chicago town She was the meanest cat In old Chicago town She was the meanest cat She really moved them down She had no heart at all No no no heart at all She was the meanest cat Oh she was really tough She left her husband flat He wasn't tough enough She took her boys along 'cos they were mean and strong Ma Ma Ma Ma - Ma Baker - she taught her four sons Ma Ma Ma Ma - Ma Baker - to handle their guns Ma Ma Ma Ma - Ma Baker - she never could cry Ma Ma Ma Ma - Ma Baker - but she knew how to die They left a trail of crime Across the U.S.A. And when one boy was killed She really made them pay She had no heart at all No no no heart at all Ma Ma Ma Ma - Ma Baker - she taught her four sons Ma Ma Ma Ma - Ma Baker - to handle their guns Ma Ma Ma Ma - Ma Baker - she never could cry Ma Ma Ma Ma - Ma Baker - but she knew how to die she met a man she liked she thought she'd stay with him one day he formed with them they did away with him she didn't care at all just didn't care at all - Here is a special bulletin. Ma Baker is the FBI's most wanted woman. Her photo is hanging on every post office wall. If you have any information about this woman, please contact the nearest police station... - Don't anybody move! The money or your lives! One day they robbed a bank it was their last foray the cops appeared too soon they couldn't get away and all the loot they had it made them mighty mad and so they shot it out Ma Baker and her sons they didn't want to hang they died with blazing guns and so the story ends of one who left no friends Ma Ma Ma Ma - Ma Baker - she taught her four sons Ma Ma Ma Ma - Ma Baker - to handle their guns Ma Ma Ma Ma - Ma Baker - she never could cry Ma Ma Ma Ma - Ma Baker - but she knew how to die Ma Ma Ma Ma - Ma Baker - she taught her four sons Ma Ma Ma Ma - Ma Baker - to handle their guns Ma Ma Ma Ma - Ma Baker - she never could cry Ma Ma Ma Ma - Ma Baker - but she knew how to die #BoneyM #BoneyM #MaBaker
    https://wn.com/Boney_M._Ma_Baker_(Sopot_Festival_1979)
    Above The Law ft. 2Pac & Money B - Call It What You Want (Official Video) [Explicit]
    4:38

    Above The Law ft. 2Pac & Money B - Call It What You Want (Official Video) [Explicit]

    • Order:
    • Duration: 4:38
    • Uploaded Date: 14 Jul 2012
    • views: 2255504
    Above The Law ft. 2Pac & Money B - Call It What You Want (Video) [Explicit] from the album 'Black Mafia Life' (1992) 🔔 Subscribe to UPROXX Video and ring the bell to turn on notifications: https://uproxx.it/5rzazsh 🎙️ New Episodes of People’s Party with Talib Kweli every Monday 9AMet/6AMpt. Watch all the episodes here: https://uproxx.it/avxtjgf More Hip-Hop Heads Playlists: 90's Hip Hop ▶️ http://bit.ly/90sHipHopPlaylist 2000's Hip Hop ▶️ http://bit.ly/2000sHipHopPlaylist 90's R&B Hits ▶️ http://bit.ly/90sRBPlaylist The UPROXX Family 🎧 UPROXX Music https://youtube.com/uproxxmusic 🎥 UPROXX Studio https://youtube.com/uproxx FOLLOW ➕UPROXX.com: https://uproxx.com ➕Instagram: https://instagram.com/uproxx ➕Twitter: https://twitter.com/uproxx ➕Facebook: https://facebook.com/uproxx ABOUT UPROXX VIDEO: UPROXX Video celebrates Hip-Hop, Style, and Creativity through a mix of original shows and music videos from the biggest artists, entertainers, and innovators from our culture. PEOPLE'S PARTY WITH TALIB KWELI People's Party is a weekly interview show hosted by Talib Kweli and Jasmin Leigh. Guests range from the biggest names in hip-hop, to global entertainers, to the most progressive minds moving our culture forward. The audio podcast is available on Apple and Spotify.
    https://wn.com/Above_The_Law_Ft._2Pac_Money_B_Call_It_What_You_Want_(Official_Video)_Explicit
    MONEY B SPEAKS ON 2PAC & SHOCK G - LIVE ON ROADIUM RADIO
    8:55

    MONEY B SPEAKS ON 2PAC & SHOCK G - LIVE ON ROADIUM RADIO

    • Order:
    • Duration: 8:55
    • Uploaded Date: 17 Oct 2024
    • views: 469
    THIS CLIP IS TAKEN FROM ROADIUM RADIO EPISODE 340 WITH MONEY B
    https://wn.com/Money_B_Speaks_On_2Pac_Shock_G_Live_On_Roadium_Radio
    Cardi B - Money [Official Music Video]
    3:26

    Cardi B - Money [Official Music Video]

    • Order:
    • Duration: 3:26
    • Uploaded Date: 21 Dec 2018
    • views: 118410503
    Cardi B - Money Stream/Download: https://CardiB.lnk.to/moneyID Stream/Download "Bongos" (feat. Megan Thee Stallion) here: https://cardib.lnk.to/Bongos Subscribe for more official content from Cardi B: https://CardiB.lnk.to/Subscribe Follow Cardi B http://cardibofficial.com http://Instagram.com/f/iamcardib http://Twitter.com/IAmCardiB https://Facebook.com/CardiB http://Soundcloud.com/IAmCardiB Exclusive Bardi Gang merchandise available here: https://www.youtube.com/@cardib/store Prod Co: OverScene EP: Kareem Johnson Dir: Jora Frantzis Producers: Jay Tauzin, Natasha Pierson, Krista Worby, Brien Justiniano Video Editor: Vinnie Hobbs Commissioner: Emmanuelle Cuny Marketing: Marsha St. Hubert Digital Marketing: Anthony De Padua & Justin Grant Associate Director, Video Administration: Lily F Thrall Assistant, Video Production: Trevor Joseph Newton The official YouTube channel of Atlantic Records artist Cardi B. Subscribe for the latest music videos, performances, and more. #CardiB #Money #OfficialVideo #AtalnticRecords #Atlantic
    https://wn.com/Cardi_B_Money_Official_Music_Video
    developed with YouTube
    PLAYLIST TIME:
    • Most Related
    • Most Recent
    • Most Popular
    • Top Rated
    • Money B vs. Frantick | Bboy Revival 2010 | WRF
      10:43
      Money B vs. Frantick | Bboy Revival 2010 | WRFremove from playlist
    • Squeegee - Money B
      3:37
      Squeegee - Money Bremove from playlist
    • Wheeler Walker Jr. - Money 'N' Bitches
      3:31
      Wheeler Walker Jr. - Money 'N' Bitchesremove from playlist
    • Boney M. - Rasputin (Sopot Festival 1979)
      4:30
      Boney M. - Rasputin (Sopot Festival 1979)remove from playlist
    • Boney M. - Ma Baker (Sopot Festival 1979)
      4:39
      Boney M. - Ma Baker (Sopot Festival 1979)remove from playlist
    • Above The Law ft. 2Pac & Money B - Call It What You Want (Official Video) [Explicit]
      4:38
      Above The Law ft. 2Pac & Money B - Call It What You Want (Official Video) [Explicit]remove from playlist
    • Cardi B - Money [Official Music Video]
      3:26
      Cardi B - Money [Official Music Video]remove from playlist
    developed with YouTube
    PLAYLIST TIME:

    Money B vs. Frantick | Bboy Revival 2010 | WRF

    Money B (Playboyz Inc.) VS Frantick (Funny Bones Crew, G-Style, LXD). Two legendary poppers throwing it down for you all in an exhibition battle @ Bboy Revival II 2010. San Jose, CA November 20, 2010.
    10:43
    Money B vs. Frantick | Bboy Revival 2010 | WRF
    Money B (Playboyz Inc.) VS Frantick (Funny Bones Crew, G-Style, LXD). Two legendary popper...
    published: 25 Jan 2011
    Play in Full Screen
    3:27
    Squeegee - Money B (clip)
    1er clip du groupe squeegee. Que de souvenirs !
    published: 16 Oct 2008
    Play in Full Screen
    3:37
    Squeegee - Money B
    Squeegee - Money B ... Désolé mais je n'ai pas le clip ... mais si par hasard quelqu'un l'...
    published: 08 Sep 2008
    Play in Full Screen
    3:31
    Wheeler Walker Jr. - Money 'N' Bitches
    Stream Money 'N' Bitches: https://stem.ffm.to/moneynbitches Pre-Save/Pre-Add “Ram”:  https...
    published: 19 Jul 2023
    Play in Full Screen
    4:30
    Boney M. - Rasputin (Sopot Festival 1979)
    The performance of Boney M. to „Rasputin” at the Sopot Festival 1979. You can listen to ...
    published: 29 May 2015
    Play in Full Screen
    2:30
    Money B On Being Paranoid That X-Rated Tape with 2Pac and Females Will Leak Online One Day.
    Money B on being paranoid that x-rated tape with him and Tupac will leak online one day.
    published: 22 Oct 2023
    Play in Full Screen
    4:39
    Boney M. - Ma Baker (Sopot Festival 1979)
    The performance of Boney M. to „Ma Baker” at the Sopot Festival 1979. You can listen to ...
    published: 29 May 2015
    Play in Full Screen
    4:38
    Above The Law ft. 2Pac & Money B - Call It What You Want (Official Video) [Explicit]
    Above The Law ft. 2Pac & Money B - Call It What You Want (Video) [Explicit] from the album...
    published: 14 Jul 2012
    Play in Full Screen
    8:55
    MONEY B SPEAKS ON 2PAC & SHOCK G - LIVE ON ROADIUM RADIO
    THIS CLIP IS TAKEN FROM ROADIUM RADIO EPISODE 340 WITH MONEY B
    published: 17 Oct 2024
    Play in Full Screen
    3:26
    Cardi B - Money [Official Music Video]
    Cardi B - Money Stream/Download: https://CardiB.lnk.to/moneyID Stream/Download "Bongos" (...
    published: 21 Dec 2018
    Play in Full Screen

    Money-B

    Ron Brooks better known by his stage name Money-B, is an American rapper, best known for being a member of the funk and rap group Digital Underground. He is a member of Raw Fusion with DJ Fuze whom they had two albums, Live From the Styleetron and Hoochified Funk.

    He had a solo album named Talkin' Dirty which features Digital Underground released in 1999.

    Discography

  • 1999: Talkin' Dirty
  • 2007: Mandatory Vol. 1
  • 2009: 4 Tha Funk Of It
  • 1991: Live from the Styleetron (with Raw Fusion)
  • 1994: Hoochiefied Funk (with Raw Fusion)
  • 2010: "The Club" (with Big Bossolo} album The Birth
  • References

    External links

  • Money-B at the Internet Movie Database
  • Music videos and lyrics
  • '); } 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)); } }); }); }); // -->
    ×