Skip to content

Instantly share code, notes, and snippets.

View Overload119's full-sized avatar
🎯
Focusing

Amir Sharif Overload119

🎯
Focusing
View GitHub Profile
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
$background: #111
$base: lighten($background, 5%)
$form: #222326
$input-field: $form
$input-field-border: lighten($input-field, 15%)
$copy-gray: #EEE
$purple: #56457D
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);
}
});
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")
@Overload119
Overload119 / kindle-sync-to-anki.rb
Last active July 25, 2016 20:19
I needed a way to sync highlights and vocabulary from my Kindle to my Anki. This would help me learn new words, but also remember the interesting parts of the books I read. I wrote up some utility functions in Ruby, it stores a local version of what you've already synced then uses AnkIWeb to sync. It uses a dictionary API to get the definition o…
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
@Overload119
Overload119 / questions.md
Last active October 7, 2015 01:20
RapPad Questions for a Producer
  1. Name
  2. Age
  3. Location
  4. How did you get started making music, and how long have you been doing it?
  5. What equipment/software do you use to make beats?
  6. What are some of your musical influences, or people you look up to in the industry?
  7. What would you say is distinctive about your production?
  8. What do you like to do for fun outside of music?
  9. What's next for you - what will you be up to in the coming months?
@Overload119
Overload119 / trophies.md
Last active October 7, 2015 23:16
These are the guidelines for handing out trophies on RapPad.

RapPad Trophy Guidelines

  1. People who report bugs get: "Bug Reporter"
  2. People who report people: "Community Watch"
  3. People who suggest original ideas and have them implemented: "Idea Machine"
  4. People who give good feedback, or provide resources for others: "Most Helpful"
  5. People who contribute beats to the cypher: "Contributing Producer"
  6. People who are admins: "X Admin" - where X can be anything the admin wants.
  7. People who contribute to the blog: "Blog Contributor"
@Overload119
Overload119 / rappad_rules.md
Last active August 29, 2015 14:24
RapPad Rules

RapPad Community Guidelines

Last updated July 9 2015

  1. 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.
  2. 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'.

RapPad Admin Guide

Last updated: October 29

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.
@Overload119
Overload119 / muut.delete.js
Last active August 29, 2015 14:23
Muut Delete Scripts
// 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()
}