From your feature branch:
git fetch
git rebase origin/master
If any conflict shall arise, resolve them one by one. Once all conflicts are dealt with:
git rebase --continue
I wasn't able to shut the audio off with the config.ini
file, but only with the -noaudio
cmd line argument to qemu. However, with Android Studio 3.2, you can't add custom arguments to the emulator, so I made this:
In the emulator dir of the Android SDK, in my case ~/Android/Sdk/emulator/
mv emulator emulator.orig
Make a bash script called emulator with the content:
#!/bin/bash
sudo pkill -9 coreaudiod |
youtube-dl -o output-filename.mp4 --referer "https://zoom.us/" --add-header "Cookie: <Header cookie>" "<General Request URL>"
When you visit the Zoom recording that you want to download.
Ctrl + Shift + I
or F12
.Ctrl+R
or F5
..mp4
in the search box of the developer tools.$ gh config set git_protocol https -h github.com
$ gh auth status --show-token # <== copy your authentication token
$ git credential reject <<<"url=https://github.com"
$ git credential approve <<<"url=https://USER:[email protected]"
source: cli/cli#1326