How to filter emails from GitHub in Gmail and flag them with labels.
The labels in this document are just examples.
Filter | Label |
---|
This guide is unmaintained and was created for a specific workshop in 2017. It remains as a legacy reference. Use at your own risk.
Workshop Instructor:
This workshop is distributed under a CC BY-SA 4.0 license.
#!/usr/bin/env bash | |
# This script is used to check files with the .md extention (markdown) for spelling errors. | |
# It will run each .md file through aspell and returns an exit code other then 0 when it matches. | |
# Where are the markdown files located? | |
SEARCH_DIR="content" | |
# Set some fancy colors to indicate errors and wrongly spelled words. | |
RED='\033[0;31m' |
curl -s https://api.github.com/orgs/twitter/repos?per_page=200 | ruby -rubygems -e 'require "json"; JSON.load(STDIN.read).each { |repo| %x[git clone #{repo["ssh_url"]} ]}' |