jq is useful to slice, filter, map and transform structured json data.
brew install jq
#!/usr/bin/env bash | |
#################################################################################### | |
# Slack Bash console script for sending messages. | |
#################################################################################### | |
# Installation | |
# $ curl -s https://gist.githubusercontent.com/andkirby/67a774513215d7ba06384186dd441d9e/raw --output /usr/bin/slack | |
# $ chmod +x /usr/bin/slack | |
#################################################################################### | |
# USAGE | |
# Send message to slack channel/user |
A curated list of AWS resources to prepare for the AWS Certifications
A curated list of awesome AWS resources you need to prepare for the all 5 AWS Certifications. This gist will include: open source repos, blogs & blogposts, ebooks, PDF, whitepapers, video courses, free lecture, slides, sample test and many other resources.
// Removes all items from a page of the Trakt collection | |
// Run script from console of user's collection page | |
// Must be run on each page | |
$(".posters .grid-item").each(function() { | |
actionWatch($(this).closest('.grid-item'), 'collect', true) | |
}) |