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
# *nix shell script to add the GitHub key to my environment | |
# This must be sourced when run (i.e., $ source ./load_github_key.sh or $ . ./load_github_key.sh) | |
eval "$(ssh-agent -s)" | |
ssh-add -v ~/.ssh/name_of_your_github_private_ssh_key | |
ssh-add -l | |
# test key | |
echo | |
ssh -T [email protected] |
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
#!/bin/bash | |
# Get temporary AWS credentials as granted in the Instance Profile. | |
# | |
# Run it 'sourced'. i.e.: | |
# . ./get-temp-creds.sh | |
# | |
# Requires: jq | |
# | |
# Written Aug 2017 by Khalid J Hosein |
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
--- | |
description: "Allow users in runjobs group to run, kill jobs, etc. in the project called specific-project-name" | |
# They can also read the activity logs and view the nodes. | |
context: | |
project: specific-project-name | |
by: | |
group: runjobs | |
for: | |
resource: | |
- equals: |
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
## Information: | |
* http://www.standardtime.com/ | |
* http://gizmodo.com/why-daylight-saving-time-is-pointless-5892438 | |
* http://blogs.scientificamerican.com/observations/why-daylight-saving-time-should-be-eliminated/ | |
* http://qz.com/357821/theres-no-proof-daylight-savings-time-saves-electricity-so-why-do-we-even-bother/ | |
## Petitions (sign them all): | |
* http://petitions.moveon.org/sign/end-daylight-savings-5 | |
* https://www.change.org/p/government-stop-daylight-saving-time | |
* http://www.petition2congress.com/6284/end-daylight-savings-time |