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
docker rmi $(docker images -f "dangling=true" -q) |
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
// This command renames all .scss files in current directory into *.less | |
find . -name '*.scss' -exec sh -c 'mv "$0" "${0%.scss}".less' {} \; |
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
const columnTitle = 'Your column title here' | |
jQuery( | |
jQuery('div.js-list.list-wrapper').toArray().find( | |
(node) => jQuery(node).find(`textarea.list-header-name.mod-list-name.js-list-name-input:contains('${columnTitle}')`).length > 0 | |
) | |
).find('.list-card-title.js-card-name').map(function() { | |
return this.innerText | |
}).toArray().join('\n') |