I hereby claim:
- I am systembell on github.
- I am systembell (https://keybase.io/systembell) on keybase.
- I have a public key ASAegEd2n-6LV4-4GF54DT3m80dPf-jco6Oncri-alN8Iwo
To claim this, I am signing this object:
| Shopify store data widget | |
| by Larry Wheeler | |
| # Description | |
| Widget for [Dashing](http://dashing.io/) that shows data from your Shopify shop. | |
| # Usage | |
| 1. To use this widget, copy `shopify.html`, `shopify.coffee`, and `shopify.scss` into a `/widgets/shopify` directory, and copy the `shopify.rb` file into your `/jobs` folder. | |
| 2. Create a private app in your store and copy the secret and login. https://docs.shopify.com/api/guides/api-credentials | |
| 3. Add gem 'shopify_api', :require => 'shopify_api' to your Gemfile 'gem install shopify_api' |
| #!/usr/bin/python | |
| import requests | |
| import os | |
| import boto.ec2 | |
| import sys | |
| import re | |
| build_url = os.environ['BUILD_URL'] | |
| jenkins_base_url = os.environ['JENKINS_URL'] |
I hereby claim:
To claim this, I am signing this object:
| ### Keybase proof | |
| I hereby claim: | |
| * I am pravka on github. | |
| * I am pravka (https://keybase.io/pravka) on keybase. | |
| * I have a public key whose fingerprint is 122B 1B07 4641 819F D4A6 C52C DB5F A4D5 B440 AE38 | |
| To claim this, I am signing this object: |
| #!/bin/bash | |
| echo "Enter your MySQL user" | |
| read MYSQL_USER | |
| echo "Enter your MySQL user password" | |
| read MYSQL_PASSWD | |
| echo "Enter your MySQL host" | |
| read MYSQL_HOST |
| # Usage: | |
| # source iterm2.zsh | |
| # iTerm2 window/tab color commands | |
| # Requires iTerm2 >= Build 1.0.0.20110804 | |
| # http://code.google.com/p/iterm2/wiki/ProprietaryEscapeCodes | |
| tab-color() { | |
| echo -ne "\033]6;1;bg;red;brightness;$1\a" | |
| echo -ne "\033]6;1;bg;green;brightness;$2\a" | |
| echo -ne "\033]6;1;bg;blue;brightness;$3\a" |
| # This code goes in the WAN UP section of the Tomato GUI. | |
| # | |
| # To list the current rules on the router, issue the command: | |
| # iptables -t mangle -L PREROUTING | |
| # | |
| # Flush/reset all the rules to default by issuing the command: | |
| # iptables -t mangle -F PREROUTING | |
| # | |
| # | |
| # First it is necessary to disable Reverse Path Filtering on all |
| # Create 4 volumes and attach them to hdb | |
| %w[sdi sdj sdk sdl].each do |dev| | |
| volume = AWS.volumes.new :device => "/dev/#{dev}", :size => 5, :availability_zone => hdb.availability_zone | |
| volume.server = hdb | |
| volume.save | |
| end |
| #!/usr/bin/env ruby | |
| require 'fog' | |
| require 'trollop' | |
| STDOUT.sync = true | |
| opts = Trollop::options do | |
| version "#{File.basename($0)} 0.0.1 (c) 2011 Upload IAM Certificate" |
| #!/usr/bin/env ruby | |
| require 'fog' | |
| require 'trollop' | |
| require 'yaml' | |
| STDOUT.sync = true |