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| // | |
| // UIDeviceHardware.h | |
| // | |
| // Used to determine EXACT version of device software is running on. | |
| #import <Foundation/Foundation.h> | |
| @interface UIDeviceHardware : NSObject | |
| - (NSString *) platform; |
| #!/usr/bin/env ruby | |
| # This pre-commit hook will prevent any commit to forbidden branches | |
| # (by default, "staging" and "production"). | |
| # Put this file in your local repo, in the .git/hooks folder | |
| # and make sure it is executable. | |
| # The name of the file *must* be "pre-commit" for Git to pick it up. | |
| FORBIDDEN_BRANCHES = ["staging", "production"] |
| > module Main where | |
| First, import all the needed modules. | |
| > import Text.Parsec hiding (State) | |
| > import Text.Parsec.Indent | |
| > import Control.Monad.State | |
| Next, define our new Parser type. This replaces the Identity monad | |
| with the (State SourcePos) monad. |
| @synthesize firstName = _firstName; | |
| @synthesize txtFirstName = _txtFirstName; | |
| [RACAbleSelf(self.firstName) subscribeNext:^(id x) { [self firstNameChanged:x]; }]; | |
| [self rac_bind:RAC_KEYPATH_SELF(self.firstName) to:self.txtFirstName.rac_textSubscribable]; | |
| - (void) firstNameChanged:(id)firstName { | |
| NSLog(@"changed: %@", firstName); | |
| } |
Sometimes you want to have a subdirectory on the master branch be the root directory of a repository’s gh-pages branch. This is useful for things like sites developed with Yeoman, or if you have a Jekyll site contained in the master branch alongside the rest of your code.
For the sake of this example, let’s pretend the subfolder containing your site is named dist.
Remove the dist directory from the project’s .gitignore file (it’s ignored by default by Yeoman).
| redis-cli EVAL "$(cat hello.lua)" 0 |
| # Stick this in lib/tasks/assets.rake or similar | |
| # | |
| # A bug was introduced in rails in 7f1a666d causing the whole application cache | |
| # to be cleared everytime a precompile is run, but it is not neccesary and just | |
| # slows down precompiling. | |
| # | |
| # Secondary consequences are the clearing of the whole cache, which if using | |
| # the default file cache could cause an application level performance hit. | |
| # | |
| # This is already fixed in sprockets-rails for rails 4, but we patch here for |
| /* | |
| * BPGeometry.h | |
| * | |
| * Created by Jon Olson on 11/30/09. | |
| * Copyright 2009 Ballistic Pigeon, LLC. All rights reserved. | |
| * | |
| */ | |
| #import <Foundation/Foundation.h> |
| --- | |
| language: objective-c | |
| before_script: | |
| - ./scripts/travis/add-key.sh | |
| after_script: | |
| - ./scripts/travis/remove-key.sh | |
| after_success: | |
| - ./scripts/travis/testflight.sh | |
| env: | |
| global: |