in mac os ventura should just install ruby with homebrew instead of rbenv
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
dirs_to_remove='Pods build builds node_modules*' | |
if [ -z "$target_dir" ]; then | |
target_dir='./' | |
fi | |
echo ">>> Will be removed dirs <<<" | |
del_dir () { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
For lazy people))) you can add this alias to your ~/.bash_profile or ~/.zprofile or ~/.bashrc | |
```bash | |
alias push_current='git push origin `git branch | grep "*" | sed "s/\* //"`' | |
``` | |
then call `source ~/.bash_profile` | |
when you want to push current branch to remote git repo | |
just call | |
``` |
That has removed comfort noise from audio and disabled audio processing
const removeComfortNoiseFromSdp = (sdp: sdpTransform.SessionDescription): sdpTransform.SessionDescription => {
const audioMedias = sdp.media.filter(m => m.type === 'audio')
const audioMedia = audioMedias[0]
if (!audioMedia) {
return sdp // no audio media
}
const whitelistedRtps = audioMedia.rtp.filter(rtp => {
OlderNewer