This file contains hidden or 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
git branch -r --merged | grep origin | egrep -v "(^\*|master|develop)" | sed 's/origin\///' | xargs git push --delete origin |
This file contains hidden or 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
function row_to_line(r){ return r.innerText.split('\n').splice(1, 2).join(' - ') } | |
let audios = Array.from(document.getElementsByClassName('audio_row')) | |
let playlist = audios.map(row_to_line).join('\n') | |
playlist |
NewerOlder