Add a new incoming webhook to Slack. This will give you a webhook URL complete with a token. You should also select a channel to default post to.
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
| setTimeout(function () { | |
| var inactiveAccounts = document.querySelectorAll('#active_members .admin_list_item.active.inactive'); | |
| var toDeactivate = inactiveAccounts[0]; | |
| $(toDeactivate).trigger('mouseover'); | |
| toDeactivate.click() | |
| toDeactivate.querySelector(".api_disable_account.sub_action").click() | |
| }, 60000); |
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
| .test { | |
| display: block; | |
| &#something { | |
| content: 'probably shouldn't use ids as selectors; | |
| } | |
| } |
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
| $color: white; | |
| .group { | |
| &.group--red { | |
| $color: red; | |
| .child { | |
| background-color: $color; | |
| } | |
| } |
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
| $color: white; | |
| .group { | |
| &.group--red { | |
| $color: red; | |
| .child { | |
| background-color: $color; | |
| } | |
| } |
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
| $color: white; | |
| .group { | |
| .child { | |
| background-color: $color; | |
| } | |
| &.group--red { | |
| $color: red; | |
| .child { |
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
| $color: white; | |
| $colors: red, blue, green, yellow, tomato; | |
| .group { | |
| .child { | |
| background-color: $color; | |
| } | |
| @each $color in $colors { | |
| .group--#{$color} .child { | |
| background-color: $color; |
This script will allow you process a directory full of subdirectories with your uncompressed cue, gdi, iso, etc files and output the compressed chd in the same directory.
find . -name '*.cue' -print0 | while IFS='' read -r -d '' file; do
exfile="$(echo $file | sed -E 's/\.[A-z]+$//')"
chdman createcd -i "${file}" -o "${exfile}.chd";
done
OlderNewer