I hereby claim:
- I am subdigital on github.
- I am subdigital (https://keybase.io/subdigital) on keybase.
- I have a public key whose fingerprint is 21AB 9009 45D6 171D A19F 2B40 0654 48A1 4C7D AF2F
To claim this, I am signing this object:
| /** | |
| { | |
| "api": 1, | |
| "name": "Camel Case Lines", | |
| "description": "Camel Case, but for each line", | |
| "author": "Ben Scheirman", | |
| "icon": "tortoise", | |
| "tags": "camelCase" | |
| } | |
| **/ |
| These are feedbacks I've filed against Xcode 13's Vim support. Please dupe! | |
| Vim mode needs option to turn off audible bell - FB9136734 | |
| Vim mode needs option to disable/hide help bar - FB9138240 | |
| Vim mode needs CTRL+SHIFT+V columnar select mode - FB9138552 | |
| Vim mode missing macros for repeated text operations - FB9138595 | |
| Vim mode - support for plugins? - FB9138670 | |
| Vim mode - :w should save the file - FB9138695 | |
| Vim mode - shift-V doesn’t correctly select the first full line - FB9138796 | |
| Vim mode - Allow repeated editing operations with “.” - FB9154817 |
| func largestSeq(values: [Int]) -> Int { | |
| let initial: (current: Int, max: Int, prev: Int?) = (0, 0, nil) | |
| let result = values.reduce(initial) { acc, el in | |
| if acc.prev == nil { | |
| return (1, 1, el) | |
| } | |
| let current = el - acc.prev! == 1 ? acc.current + 1 : 1 | |
| let newMax = max(current, acc.max) | |
| return (current, newMax, el) |
| #! /bin/bash | |
| set -e | |
| if [[ -f ~/.vimrc ]] | |
| then | |
| echo "You already have a ~/.vimrc. Aborting to avoid losing data..." | |
| exit 1 | |
| fi |
I hereby claim:
To claim this, I am signing this object:
| gcli status create DeliRadio deliradio-web $GIT_COMMIT \ | |
| --params=state:pending \ | |
| target_url:$BUILD_URL \ | |
| description:"Build #$BUILD_NUMBER is running" \ | |
| -f csv | |
| # Your build... | |
| gcli status create DeliRadio deliradio-web $GIT_COMMIT \ | |
| --params=state:success \ |
| xcode_proj=`find . -name "*.xc*" -d 1 | sort -r | head -1` | |
| if [ `echo -n $xcode_proj | wc -m` == 0 ] | |
| then | |
| echo "No xcworkspace/xcodeproj file found in the current directory." | |
| exit 1 | |
| fi | |
| echo "Found $xcode_proj" | |
| open $xcode_proj |
| #! /bin/sh | |
| # Takes a provisioning profile and installs it into the system path. | |
| # This requires poking inside the provisioning profile and searching for the | |
| # UUID present at the end of the file. | |
| set -e | |
| if [[ -z "$1" ]] | |
| then |
| // Property Nonatomic Strong | |
| // Platform: All | |
| // Completion Scopes: ClassInterfaceMethods | |
| @property (nonatomic, strong) <# class_name #> *<# variable_name #>; |
| require 'rubygems' | |
| require 'plist' | |
| require 'securerandom' | |
| # Plist format: | |
| # <?xml version="1.0" encoding="UTF-8"?> | |
| # <!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
| # <plist version="1.0"> | |
| # <dict> | |
| # <key>IDECodeSnippetCompletionPrefix</key> |