SampleFaq.net - The Hip Hop sample directory

Song Details: Busta Rhymes - Turn It Up

Artist Details

Busta Rhymes Image
upload Picture

Busta Rhymes

Busta Rhymes (born Trevor Smith in Brooklyn, New York on May 20, 1972) is an American alternative rap musician of Jamaican heritage who began his career rapping in Leaders of the New School before breaking new ground in the hip-hop community with a successful solo career. His zany, hyperspeed delivery and wordplay, and verbose lyrical similes distinguished him as being among the most recognizable rappers to ever hold the mic. At the age of 12, his family moved to Uniondale, a suburb of New York City on Long Island, where he was raised and eventually met up with other MCs from the growing New York area hip hop community. (Source: Last.Fm) Edit Artist Info



Busta Rhymes Wikipedia Entry | Busta Rhymes Last.fm Page

 

Songs used in Turn It Up

Songs containing a Sample of Turn It Up

Multimedia Embed (Edit)

import java.applet.*; import java.awt.*; public class Scribble extends Applet implements Runnable { String name; private Graphics m_Graphics; private int index = 0; private int m_nNextPoint = 0; private int m_nPrevPoint = -1; final int MAXPOINTS = 500; private Point m_ptArr[] = new Point[MAXPOINTS]; public Scribble() { } public String getAppletInfo() { return "Name: Scribble "; } public void init() { setBackground(Color.gray); name = getParameter("firstname"); if (name == null) name = "nobody"; for (int i = 0; i < MAXPOINTS; i++) m_ptArr[i] = null; } public void paint(Graphics g) { g.drawString(name + "'s scribble applet",10,15); } public void run() { repaint(); m_Graphics = getGraphics(); } public boolean mouseDown(Event evt, int x, int y) { // repaint( ); index = 0; m_nNextPoint = 0; if ( m_ptArr[0] == null ) m_ptArr[0] = new Point(x,y); else { m_ptArr[0].x = x; m_ptArr[0].y = y; } index++; return true; } public boolean mouseUp(Event evt, int x, int y) { return true; } public boolean mouseDrag(Event evt, int x, int y) { if ( index < MAXPOINTS ) { if ( m_ptArr[index] == null ) m_ptArr[index] = new Point(x,y); else { m_ptArr[index].x = x; m_ptArr[index].y = y; } index++; if ( index > 1 ) getGraphics( ).drawLine(m_ptArr[index-2].x, m_ptArr[index-2].y, x, y); } return true; } public boolean mouseMove(Event evt, int x, int y) { return true; } }

Shoutbox

Please Log in or create an account to post to the shoutbox