Skip to content

Instantly share code, notes, and snippets.

View Overload119's full-sized avatar
🎯
Focusing

Amir Sharif Overload119

🎯
Focusing
View GitHub Profile
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")
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);
}
});
$background: #111
$base: lighten($background, 5%)
$form: #222326
$input-field: $form
$input-field-border: lighten($input-field, 15%)
$copy-gray: #EEE
$purple: #56457D
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
@Overload119
Overload119 / Overload - Contributions.md
Created January 26, 2019 19:56
How to contribute to my projects.

Feature Workflow

You want to "branch"

git checkout master
git pull --rebase # sync your repo with Github.com
git checkout -b <yourbranchname> # create a branch and give it a unique name, usually after the feature (ie. "new-feature")
<CORSConfiguration>
<CORSRule>
<AllowedOrigin>http://localhost:3000</AllowedOrigin>
<AllowedMethod>PUT</AllowedMethod>
<AllowedMethod>POST</AllowedMethod>
<AllowedMethod>DELETE</AllowedMethod>
<AllowedHeader>*</AllowedHeader>
</CORSRule>
@Overload119
Overload119 / close_port.rb
Last active February 28, 2021 22:56
Installation:
#!/usr/bin/env ruby
# Synced on Dropbox.
# Synced on https://gist.github.com/Overload119/3cecbf8391d8bb7af635a608c0367e8e
# cp ThisFile /usr/local/bin/close_port
running_apps = `lsof -i:#{ARGV[0]}`
return if running_apps.empty?
output_lines = running_apps.split("\n")
output_lines.drop(1).each do |line|
## File
```yaml
File › New: Cmd N
File › Open...: Cmd O
File › Open Folder...: none
File › Open Recent Folder...: Ctrl R
File › Save: Cmd S
File › Save As...: Cmd Shift S
File › Autosave: none
@Overload119
Overload119 / Using ffmpeg to reduce background nois.md
Last active January 25, 2021 01:04
Using ffmpeg to reduce background nois.md

Scenario:

I have a file I recorded. It has background noise I want to remove (fans, clicking, etc.) Works good for fans but a little less well for clicking.

  1. Extract the audio file from the video
ffmpeg -i <path> -vn -acodec copy output-audio.aac
@Overload119
Overload119 / gist:1e70200e9b674ebde6cfd7d3978524b3
Created March 27, 2021 15:47
What Canvas-like library does Bannerbear.com use?
https://konvajs.org/