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 script will import Github labels from an array. | |
Optionally, existing labels can be removed prior to import. | |
Instructions: | |
Go to the labels page for the repo you'd like to import to (https://github.com/user/repo/labels) | |
Run the labels exporter script first, if you haven't. (https://gist.github.com/AHilyard/a5b9376d0326fd658a8064d5569791a4) | |
Modify this script by pasting your labels in where directed, | |
and optionally changing the "removeExisting" variable to true. | |
Press Enter |
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 script will export Github labels to an array. | |
This array can then be imported using the label importer script. | |
Instructions: | |
Go to the labels page for the repo you'd like to export from (https://github.com/user/repo/labels) | |
Paste this script in your console | |
Press Enter | |
Copy the resultant array into the importer script. (https://gist.github.com/AHilyard/5babebe06c30a48e07d949053e00bd5c) | |
*/ |
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
#!/usr/bin/python | |
import string | |
import random | |
def get_random_character(input): | |
if input == 'X': | |
all_characters = string.ascii_letters + string.digits | |
return random.choice(all_characters) |
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
/** | |
* @file signalmanager.cpp | |
* | |
* @date 6/24/2015 | |
* @author Anthony Hilyard | |
* @brief | |
*/ | |
#include "signalmanager.h" |