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 sh | |
## | |
# This is script with usefull tips taken from: | |
# https://github.com/mathiasbynens/dotfiles/blob/master/.osx | |
# | |
# install it: | |
# curl -sL https://raw.github.com/gist/2108403/hack.sh | sh | |
# |
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
import sys, subprocess, json, re | |
import pprint | |
def get_local_tags(): | |
# rs_tag_list_command = 'rs_tag --list | awk \'{print "\\""$2"\\","}\'' terrible | |
rs_tag_list_command = 'rs_tag --list | awk \'{print $2}\'' | |
p = subprocess.Popen(rs_tag_list_command, stdout=subprocess.PIPE, stderr=subprocess.PIPE, shell=True) | |
output, errors = p.communicate() | |
return output.split() |
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
import sys, urllib, httplib2, base64, json, re, time, paramiko | |
from operator import itemgetter | |
import pprint | |
headers = {} | |
cookie = '' | |
url_tail = '?api_version=1.0&format=js' | |
def create_url(method=None): | |
base_url = 'https://my.rightscale.com/api/acct/%s/' % account_id |
NewerOlder