- Name
- Age
- Location
- How did you get started making music, and how long have you been doing it?
- What equipment/software do you use to make beats?
- What are some of your musical influences, or people you look up to in the industry?
- What would you say is distinctive about your production?
- What do you like to do for fun outside of music?
- What's next for you - what will you be up to in the coming months?
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Last time i checked\nIt was December seventh\nJokes on me yea time flew by\nIt was crazy living, got me feeling so sky high\nWorking on myself got me workin on a track\nPace to messy cant keep track of the things that i wanted\nSituation where my mind cant take it\nAll worked up, confused and stressed \nAppreciate the fact that im still livin blessed\nShake the pain off my chest\nWrite lyrics down on my desk\nUnderstand my paradise \nsee this world with my eyes\nI take you on a ride with me\nStep into a place where the journeys for free\nWhy dont you take the red pill lets see what you can be\nSeven to 7th, a time of unwind from reality\nThe pain, the sorrow, greed, the victory\nGoes to show to show its me against me\n\n\n\n\nso much shit fed to the lies\ncall me bad im just not that nice\nheld her hand as my momma cries\nthey rollin crumble\nim just rollin my dice\nthe plutocracy is real\naint nobody see it\neverybody making the deal\na dance with the devil\neverybody see the evil\nyou can check me my flow s |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$background: #111 | |
$base: lighten($background, 5%) | |
$form: #222326 | |
$input-field: $form | |
$input-field-border: lighten($input-field, 15%) | |
$copy-gray: #EEE | |
$purple: #56457D |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var username = 'Sagethedestroyer'; | |
var postsToDelete = []; | |
$('.m-moot.m-expanded').each(function(idx, el) { | |
$el = $(el); | |
if ($el.find('.m-facelink').attr('title') === username) { | |
postsToDelete.push($el); | |
} | |
}); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
store = HostedBeatStore.new | |
store.add_from_url("http://www.youtube.com/watch?v=nxe3jPGMXoA", "bangers") | |
store.add_from_url("http://www.youtube.com/watch?v=zF7100R-uzk", "bangers") | |
store.add_from_url("http://www.youtube.com/watch?v=uoz3sE32Z8A", "bangers") | |
store.add_from_url("http://www.youtube.com/watch?v=2wCr7nj8yk4", "bangers") | |
store.add_from_url("http://www.youtube.com/watch?v=QbOGyAoz1Jg", "bangers") | |
store.add_from_url("http://www.youtube.com/watch?v=2CoSftutIRU", "old_school") | |
store.add_from_url("http://www.youtube.com/watch?v=R5j-Vbt_vmg", "old_school") | |
store.add_from_url("http://www.youtube.com/watch?v=X1SSqEJiX8A", "old_school") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'mechanize' | |
require 'sqlite3' | |
require 'wordnet-defaultdb' | |
require 'wordnet' | |
LOCAL_DB_PATH = '<yourpath>.db'.freeze | |
WORDS_TABLE_NAME = 'words_v2'.freeze | |
HIGHLIGHTS_TABLE_NAME = 'highlights_v2'.freeze | |
USERNAME = '<your username>'.freeze |
- People who report bugs get: "Bug Reporter"
- People who report people: "Community Watch"
- People who suggest original ideas and have them implemented: "Idea Machine"
- People who give good feedback, or provide resources for others: "Most Helpful"
- People who contribute beats to the cypher: "Contributing Producer"
- People who are admins: "X Admin" - where X can be anything the admin wants.
- People who contribute to the blog: "Blog Contributor"
Last updated July 9 2015
- Posting gore, porn, or any other "shocking" media for either attention grabbing or otherwise, in Chat or any other parts of the website gets you immediately banned and your content removed.
- Spam is against the rules and you will typically be warned first. The following constitutes as spam:
- When you share the same piece of content (such as a link, rap, etc.) more than once a day in the Chat section. You are allowed to bump previously created threads.
- When you create new threads with meaningless topics that don't spur conversation. (threads with titles such as "yo" or "sup")
- When you create multiple threads in a short period of time (for example, 3 threads in 2 minutes), regardless of topic.
- When you create a new thread with a directed title, 'i.e Hey user, come chat here'.
What RapPad is meant to do:
- Provide a place for artists to get feedback and genuine thoughts for their music.
- Increase exposure by featuring the work that our artists create.
- Create great products, and tutorials that can assist in the things that artists care about; lyricism, producing, mixing, etc.
- Create a fun engaging place for hip hop heads through battles, and cyphers.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Open the sticky thread and close all other threads. | |
// After the sticky thread is done, REFRESH the page otherwise you'll delete all posts in every thread you open up. | |
// To run, just copy and paste the below script. It'll automatically delete posts in a thread from top to bottom every 70 miliseconds. | |
var deletePost = function() { | |
commentReply = $('.m-replies .m-reply').first(); | |
if (commentReply.find('a').attr('title') != 'Amir') { | |
commentReply.find('.m-action.m-remove').click() | |
$('.m-mask.m-prompt.m-active .m-dialog-foot button').last().click() | |
} |