I hereby claim:
- I am phoolish on github.
- I am phoolish (https://keybase.io/phoolish) on keybase.
- I have a public key whose fingerprint is 6CE9 0791 1870 CB7A F412 C279 7D44 37AE 2783 E099
To claim this, I am signing this object:
| #!/usr/bin/env ruby | |
| # Usage: | |
| # ruby plugin_to_gem.rb my_plugin_directory | |
| require 'fileutils' | |
| require 'uri' | |
| require 'erb' | |
| @plugin_dir = ARGV[0] | |
| def gemspec_content |
| [DEFAULT] | |
| name=My Name | |
| [email protected] | |
| [work] | |
| path=/media/drive/work | |
| name=My Name | |
| [email protected] | |
| [play] | |
| path=/media/drive/play | |
| name=My Other Name |
| gsettings set org.gnome.shell.extensions.auto-move-windows application-list "['banshee.desktop:2','chromium-browser.desktop:2','thunderbird.desktop:2','shotwell.desktop:2','sublime.desktop:3','virtualbox.desktop:4', 'empathy.desktop:2']" |
| #!./bin/knife exec | |
| # A knife exec script to change chef node's name, preserving all the attributes. | |
| # | |
| # Usage: knife exec rename-node.rb old-name new-name | |
| # | |
| # Script retrieves the Node object, changes its 'name' attribute, | |
| # creates new Node object with updated name and rest of attributes | |
| # untouched. Then it deletes old Node and Client objects from | |
| # database, and logs into the server to update it: |
| #!/bin/bash | |
| # | |
| # Checks yum for updates and passes the count to collectd. | |
| # | |
| # Requriments: | |
| # - collectd_exec_plugin | |
| # - yum-plugin-security package | |
| # | |
| # <Plugin exec> | |
| # Exec "nobody" "/path/to/yum_update.sh" |
| class NodeUpdateFromFile < ::Chef::Knife | |
| deps do | |
| require "chef/node" | |
| require "chef/json_compat" | |
| require "chef/knife/core/object_loader" | |
| end | |
| banner "knife node update from file FILE (options)" | |
| def loader |
| #!/usr/bin/env python | |
| """ | |
| Launch an AWS Web Console. | |
| Usage: | |
| awsconsole launch --role=<role_arn> [--profile=<profile_name>] | |
| Commands: | |
| launch - Launch the AWS Console in your default web browser with | |
| the specified credentials. The console will be authenticated |
I hereby claim:
To claim this, I am signing this object:
| #!/bin/bash | |
| usage() | |
| { | |
| cat << EOF | |
| usage: $0 options | |
| This script set ownership for all table, sequence and views for a given database | |
| Credit: Based on http://stackoverflow.com/a/2686185/305019 by Alex Soto |
| #!/bin/bash | |
| # Requires aws-cli and jq to be installed | |
| # | |
| # Returns the name and ami for each release that matches | |
| aws ec2 describe-images --owners amazon --filters Name=virtualization-type,Values=hvm | jq '[.Images[] | select(.Name | startswith("amzn-ami-hvm")) | select(.Name | endswith("ebs")) | { name: .Name, ami: .ImageId } ] | sort_by(.name)' |