most of these require logout/restart to take effect
# Enable character repeat on keydown
defaults write -g ApplePressAndHoldEnabled -bool false
# Set a shorter Delay until key repeat| #!/bin/zsh -i | |
| # if you're using ZSH, change the shebang above to "#!/bin/zsh -i" | |
| eval "$(rbenv init -)" | |
| if [ ${#} -ne 2 ]; then | |
| echo >&2 Usage: $(basename ${0}) old-version new-version | |
| exit 1 | |
| fi |
| #!/usr/bin/env python | |
| import json | |
| import os | |
| import time | |
| import clouddns | |
| USERNAME = '' | |
| APIKEY = '' |
This is a tiny content strategy framework focused on goals, messages, and branding. This is not a checklist. Use what you need and scrap the rest. Rewrite it or add to it. These topics should help you get to the bottom of things with clients and other people you work with.
There’s more to come, and I’d love to hear what you think. Give me feedback on Twitter (@nicoleslaw) or by email ([email protected]). We all benefit from sharing our ideas and creating standards. Onward.
| #!/bin/sh | |
| # Some things taken from here | |
| # https://github.com/mathiasbynens/dotfiles/blob/master/.osx | |
| # Set the colours you can use | |
| black='\033[0;30m' | |
| white='\033[0;37m' | |
| red='\033[0;31m' | |
| green='\033[0;32m' |
| #!/usr/bin/ruby | |
| # Make sure you have these gems installed | |
| require 'rubygems' | |
| require 'thread' | |
| require 'csv' | |
| require 'twitter' | |
| require 'marky_markov' | |
| # Create a new Twitter account that you'd like to have your auto-tweets posted to |
| <?php | |
| /* | |
| Plugin Name: Disable Plugins | |
| Description: Disables plugins that you specify depending on the value of the WP_LOCAL_DEV constant | |
| Version: 0.2 | |
| License: GPL version 2 or any later version | |
| Author: Mark Jaquith | |
| Author URI: http://coveredwebservices.com/ | |
| */ |
| API Docs: http://tumblr.com/api | |
| # 1. Register an app | |
| http://tumblr.com/oauth/apps | |
| # 2. Get an OAuth request token | |
| sudo easy_install oauth2 | |
| https://gist.github.com/3556495 |
| 127.0.0.1 localhost | |
| 255.255.255.255 broadcasthost | |
| ::1 localhost | |
| fe80::1%lo0 localhost | |
| # focus mode | |
| # toggled with http://www.clockwise.ee/gasmask/ | |
| 0.0.0.0 twitter.com | |
| 0.0.0.0 mail.google.com |
| require 'right_aws' | |
| namespace :utils do | |
| namespace :attachments do | |
| task :initialize_s3 => :environment do | |
| s3_config = YAML.load_file(File.join(File.dirname(__FILE__), '/../../config/amazon_s3.yml')) | |
| s3_config = s3_config[RAILS_ENV].to_options | |
| @s3 = RightAws::S3.new(s3_config[:access_key_id], s3_config[:secret_access_key]) | |
| end |