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| /* | |
| * twitter-entities.js | |
| * This function converts a tweet with "entity" metadata | |
| * from plain text to linkified HTML. | |
| * | |
| * See the documentation here: http://dev.twitter.com/pages/tweet_entities | |
| * Basically, add ?include_entities=true to your timeline call | |
| * | |
| * Copyright 2010, Wade Simmons | |
| * Licensed under the MIT license |
| #!/bin/bash | |
| # | |
| # Open new Terminal tabs from the command line | |
| # | |
| # Author: Justin Hileman (http://justinhileman.com) | |
| # | |
| # Installation: | |
| # Add the following function to your `.bashrc` or `.bash_profile`, | |
| # or save it somewhere (e.g. `~/.tab.bash`) and source it in `.bashrc` | |
| # |
| $contrasted-default-dark: #000; | |
| $contrasted-default-light: #fff; | |
| @mixin contrasted($bg, $dark:$contrasted-default-dark, $light:$contrasted-default-light){ | |
| background-color: $bg; | |
| color: get_contrast_yiq($bg, $dark, $light); | |
| } |
| #!/usr/bin/env ruby | |
| # Pow Port | |
| # | |
| # Quickly and easily change the port that Pow is running on. This allows | |
| # you too run Apache and Pow side-by-side (on different ports of course). | |
| # | |
| # WARNING: This will OVERWRITE your ~/.powconfig file. If you have custom | |
| # configurations in there, please back it up first. | |
| # |
| #!/bin/sh -e | |
| #/ Usage: pow [on|off] | |
| #/ Toggle between running Pow (http://pow.cx) and Apache on Mac OS X. | |
| # Show Usage | |
| function usage { | |
| grep '^#/' "$0" | cut -c4- | |
| exit 2 | |
| } | |
| [ -z "$1" -o "$1" = "--help" ] && usage |
| <?php | |
| /* | |
| Plugin Name: Disable plugins when doing local dev | |
| Description: If the WP_LOCAL_DEV constant is true, disables plugins that you specify | |
| Version: 0.1 | |
| License: GPL version 2 or any later version | |
| Author: Mark Jaquith | |
| Author URI: http://coveredwebservices.com/ | |
| */ |
| <!doctype html> | |
| <html> | |
| <body> | |
| <header role="banner"> | |
| <a href="/" rel="home">My company</a> | |
| <nav role="navigation"> | |
| <a href="/about">About</a> | |
| <a href="/contact">Contact</a> | |
| </nav> | |
| </header> |
| #!/usr/bin/env ruby | |
| if __FILE__ == $0 | |
| bundle_name = ARGV[0] if (ARGV[0]) | |
| bundle_name = `pwd`.split('/').last.chomp if bundle_name.nil? | |
| bundle_name += ".git.bundle" | |
| puts "Backing up to bundle #{bundle_name}" | |
| `git bundle create ~/Dropbox/backup/git-repos/#{bundle_name} --all` | |
| end |
| @-webkit-keyframes bgcolor { 0% { background-color: #ffccf2; } | |
| 50% { background-color: #ccffcc; } | |
| 100% { background-color: #ccffff; } } | |
| @-moz-keyframes bgcolor { 0% { background-color: #ffccf2; } | |
| 50% { background-color: #ccffcc; } | |
| 100% { background-color: #ccffff; } } | |
| @-ms-keyframes bgcolor { 0% { background-color: #ffccf2; } | |
| 50% { background-color: #ccffcc; } |