Skip to content

Instantly share code, notes, and snippets.

View superrnovae's full-sized avatar
🎯
Focusing

Vladislav superrnovae

🎯
Focusing
  • France
View GitHub Profile
@superrnovae
superrnovae / DiscordAMDFix.md
Created March 4, 2021 22:32
Fix Discord crash on AMD hackintosh

Discord Crash Fix

Instructions

  1. Install Discord.

  2. Open Terminal.

  3. Copy-paste and execute one of the below methods (enter password if prompted).

Method - 1:

@superrnovae
superrnovae / gist:ee4d1af894ef58506ad18852d7b8c872
Last active July 22, 2021 20:55
[Powershell] Convert FLAC to ALAC using ffmpeg while preserving metadata and tags
Get-ChildItem -Path . -filter *.flac | ForEach-Object -Process {[System.IO.Path]::GetFileNameWithoutExtension($_)} | ForEach-Object -Process {ffmpeg -i "$($_).flac" -acodec alac -vn "$($_).m4a"}
@superrnovae
superrnovae / gist:d8b0ddebf23be3dd96633f828a8285ee
Created December 3, 2021 20:30 — forked from danielestevez/gist:2044589
GIT Commit to an existing Tag
1) Create a branch with the tag
git branch {tagname}-branch {tagname}
git checkout {tagname}-branch
2) Include the fix manually if it's just a change ....
git add .
git ci -m "Fix included"
or cherry-pick the commit, whatever is easier
git cherry-pick {num_commit}