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
| http://d.stavrovski.net/blog/post/how-to-install-and-setup-oracle-java-jdk-in-centos-6 | |
| # rpm | |
| wget --no-cookies \ | |
| --no-check-certificate \ | |
| --header "Cookie: oraclelicense=accept-securebackup-cookie" \ | |
| "http://download.oracle.com/otn-pub/java/jdk/7u55-b13/jdk-7u55-linux-x64.rpm" \ | |
| -O jdk-7-linux-x64.rpm | |
| # ubuntu |
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 | |
| # You must accept the Oracle Binary Code License | |
| # http://www.oracle.com/technetwork/java/javase/terms/license/index.html | |
| # usage: get_jdk.sh <ext> <jdk_version> | |
| # ext: rpm | |
| # jdk_version: default 8 | |
| ext=rpm | |
| jdk_version=8 |
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 | |
| # ------------------------------------------------------------------ | |
| # Git Daily Scrum (stand-up meeting) helper. | |
| # | |
| # The script helps you remember what you did last time and facilitates | |
| # writing daily log for remote teams. Be aware that it assumes that | |
| # meetings are conducted at the same time every day. | |
| # | |
| # Installation: | |
| # 1. Place the script in some folder, e.g. your home: |
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
| #!/usr/bin/env python | |
| ''' | |
| This script converts the output of Ansible's dynamic ec2.py to a flatly formmated static inventory file. | |
| Before running this script run `python ./ec2.py --refresh-cache > ec2-dynamic.json` | |
| See: http://docs.ansible.com/ansible/ec2_module.html | |
| ''' |
OlderNewer