Author: | Baiju Muthukadan |
---|---|
Email: | baiju.m.mail AT gmail.com |
Version: | 0.5.0 |
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
__author__ = 'shafi' | |
import pprint | |
import json | |
import collections | |
json_data=open("cloud.json").read() | |
data = json.loads(json_data) | |
#print json.dumps(data,indent=4,sort_keys=False) | |
d = json.JSONDecoder(object_pairs_hook = collections.OrderedDict) |
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
aws configure | |
sudo wget -O- https://opscode.com/chef/install.sh | sudo bash | |
sudo yum install git -y | |
gem install foodcritic | |
aws cloudformation list-stacks --stack-status-filter CREATE_COMPLETE | |
#https://github.com/shafi-codez/chef-bootstrap | |
aws cloudformation validate-template --template-url https://s3.amazonaws.com/cloudformation-templates-us-east-1/S3_Bucket.template |
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
"""Usage: | |
app.py --user=username --pwd=password --json | |
app.py --user=username --pwd=password | |
Arguments: | |
--user=username Application User Name | |
--pwd=password Application password | |
Options: | |
--json enable json output |
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
sudo apt-get install build-essential libfuse-dev fuse-utils libcurl4-openssl-dev libxml2-dev mime-support -y | |
wget | |
export GLU_HOME="" | |
sudo apt-get install openjdk-7-jdk -y | |
export JAVA_HOME="/usr/lib/jvm/java-7-openjdk-amd64" |
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
cinst git | |
cinst notepadplusplus | |
cinst GoogleChrome | |
cinst 7zip | |
cinst javaruntime | |
cinst flashplayeractivex | |
cinstm skydrive | |
cinst XmlNotepad | |
cinst python | |
cinst ccleaner |
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
cinstm fiddler4 | |
cinstm poshgit |
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/env python2.7 | |
import time | |
_URL = 'http://localhost/tmp/derp.html' | |
_NUMBER = 1000 | |
def test_urllib2(): | |
import urllib2 |
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
yum install java-1.7.0-openjdk-devel | |
gunzip pycharm-community-3.1.1.tar.gz | |
tar -xvf pycharm-community-3.1.1.tar | |
mv pycharm-community-3.1.1 pycharm-3.1 | |
export JAVA_HOME=/usr | |
# Pycharm looks with bin/java | |
vi ~/.bashrc | |
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
# Install Python pip | |
$ cd /tmp | |
$ wget http://mirror-fpt-telecom.fpt.net/fedora/epel/6/i386/epel-release-6-8.noarch.rpm | |
# rpm -ivh epel-release-6-8.noarch.rpm | |
yum -y install python-pip | |
scp -r /root/.ssh/* [email protected]:/root/shafi | |
killall memcached |