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")| 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 |
| <CORSConfiguration> | |
| <CORSRule> | |
| <AllowedOrigin>http://localhost:3000</AllowedOrigin> | |
| <AllowedMethod>PUT</AllowedMethod> | |
| <AllowedMethod>POST</AllowedMethod> | |
| <AllowedMethod>DELETE</AllowedMethod> | |
| <AllowedHeader>*</AllowedHeader> | |
| </CORSRule> |
| #!/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 |
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.
ffmpeg -i <path> -vn -acodec copy output-audio.aac
| https://konvajs.org/ |