I hereby claim:
- I am greinacker on github.
- I am greinacker (https://keybase.io/greinacker) on keybase.
- I have a public key ASAi3rad9qlFlIsUm5fNcEgrlUY8LFlSbnLr6k21B24qmAo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| # coding: utf-8 | |
| import sys | |
| import clipboard | |
| import requests | |
| import webbrowser | |
| url = sys.argv[1] | |
| redir_urls = [] | |
| resp = requests.get(url, allow_redirects = False) |
| # coding: utf-8 | |
| import sys | |
| import keychain | |
| import clipboard | |
| import webbrowser | |
| key = sys.argv[1] | |
| value = keychain.get_password("workflow", key) | |
| if value != None: |
| # Source: https://gist.github.com/najibninaba/5062153 | |
| # | |
| # This script installs Boto in Pythonista. Run this script in your root folder and it will download and install Boto along with its | |
| # dependencies. To use Boto, be sure to add boto-module in your sys.path before importing boto like so: | |
| # import sys; sys.path.append('boto-module') | |
| # import boto.ec2 | |
| # | |
| # Credits: | |
| # This script is inspired by omz's Evernote Installer script: https://gist.github.com/omz/5048588 | |
| # |
| # coding: utf-8 | |
| import sys; sys.path.append('../boto-module') | |
| import boto.ec2 | |
| import time | |
| import keychain | |
| import clipboard | |
| import console | |
| import webbrowser | |
| instance_id = "i-123456ab" |
| # coding: utf-8 | |
| import sys | |
| import keychain | |
| import console | |
| import clipboard | |
| import webbrowser | |
| import api | |
| return_url = None | |
| if len(sys.argv) >= 2: |
| <html> | |
| <head> | |
| <style type="text/css"> | |
| #tvw { | |
| width:700px; | |
| text-align:center; | |
| } | |
| #tvw > div { | |
| display: inline-block; | |
| margin: 15px; |
| `ps -o rss= -p #{Process.pid}`.to_i |
| hostssl replication replicator 5.6.7.8 md5 |
| role :web, "192.168.1.132", :internal => "10.0.0.1" | |
| role :app, "192.168.1.133", :internal => "10.0.0.2" | |
| role :db, "192.168.1.132", :primary => true | |
| role :db, "192.168.1.134", :no_release => true, :internal => "10.0.0.3" |