I hereby claim:
- I am uasi on github.
- I am uasi (https://keybase.io/uasi) on keybase.
- I have a public key whose fingerprint is B050 DEDB 9FF6 6432 BFE7 E906 BE6C 2A4D BCEE 89EB
To claim this, I am signing this object:
| // | |
| // EXNOnDealloc.h | |
| // | |
| // Copyright (c) 2014 uasi. All rights reserved. | |
| // | |
| #import <libextobjc/metamacros.h> | |
| #define onDeallocOfObject(object) \ | |
| autoreleasepool {} \ |
| // | |
| // CDEvents+RACExtensions.h | |
| // Kobito | |
| // | |
| // Copyright (c) 2014 Increments Inc. All rights reserved. | |
| // | |
| #import <CDEvents/CDEvents.h> | |
| @class RACSignal; |
I hereby claim:
To claim this, I am signing this object:
| #!/bin/sh | |
| # | |
| # git-patchbox | |
| # | |
| # Saves a series of patches from the given revision to HEAD as | |
| # <toplevel>/,patchbox/<name>.mbox and then reset to the revision. | |
| # | |
| if [ "x$1" = "x" -o "x$2" = "x" ]; then |
| #!/bin/sh | |
| # | |
| # The "pre-rebase" hook is run just before "git rebase" starts doing | |
| # its job, and can prevent the command from running by exiting with | |
| # non-zero status. | |
| # | |
| # The hook is called with the following parameters: | |
| # | |
| # $1 -- the upstream the series was forked from. | |
| # $2 -- the branch being rebased (or empty when rebasing the current branch). |
| require 'nokogiri' | |
| require 'open-uri' | |
| require 'optparse' | |
| require 'yaml' | |
| def pod_from_node(node) | |
| data = YAML::Omap.new | |
| data[:name] = node.node_name |
| GIT_REVISION=$(git rev-parse --short HEAD 2> /dev/null) | |
| if [ $? != 0 ]; then | |
| GIT_REVISION="(not in git repo)" | |
| elif [ -n "$(git status --porcelain)" ]; then | |
| GIT_REVISION="${GIT_REVISION}+dirty" | |
| fi | |
| PLIST_PATH="${BUILT_PRODUCTS_DIR}/${WRAPPER_NAME}/Info.plist" | |
| /usr/libexec/PlistBuddy -c "Set :GitRevision ${GIT_REVISION}" "${PLIST_PATH}" |
| #!/usr/bin/env perl | |
| use 5.014; | |
| use warnings; | |
| use Getopt::Long; | |
| GetOptions( | |
| 'dry-run|n' => \my $opt_dry_run, | |
| 'force|f' => \my $opt_force, | |
| ); |
| #!/usr/bin/env ruby | |
| puts "1" | |
| puts "1" | |
| puts "1" | |
| puts "1" | |
| puts "1" | |
| print "\e[3A" | |
| print "\e[3M" | |
| abort |
source: http://twishort.com/An8cc