I hereby claim:
- I am garrefa on github.
- I am garrefa (https://keybase.io/garrefa) on keybase.
- I have a public key ASBs9BYtiNDfHyOrz9CR8grVfFRjeeSrisEqfZ_3hu7p7Ao
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| ACTION = build | |
| AD_HOC_CODE_SIGNING_ALLOWED = NO | |
| ALTERNATE_GROUP = staff | |
| ALTERNATE_MODE = u+w,go-w,a+rX | |
| ALTERNATE_OWNER = grantdavis | |
| ALWAYS_SEARCH_USER_PATHS = NO | |
| ALWAYS_USE_SEPARATE_HEADERMAPS = YES | |
| APPLE_INTERNAL_DEVELOPER_DIR = /AppleInternal/Developer | |
| APPLE_INTERNAL_DIR = /AppleInternal | |
| APPLE_INTERNAL_DOCUMENTATION_DIR = /AppleInternal/Documentation |
| ###################### | |
| # Options | |
| ###################### | |
| REVEAL_ARCHIVE_IN_FINDER=false | |
| FRAMEWORK_NAME="${PROJECT_NAME}" | |
| SIMULATOR_LIBRARY_PATH="${BUILD_DIR}/${CONFIGURATION}-iphonesimulator/${FRAMEWORK_NAME}.framework" |
| ACTION = build | |
| AD_HOC_CODE_SIGNING_ALLOWED = NO | |
| ALTERNATE_GROUP = staff | |
| ALTERNATE_MODE = u+w,go-w,a+rX | |
| ALTERNATE_OWNER = grantdavis | |
| ALWAYS_SEARCH_USER_PATHS = NO | |
| ALWAYS_USE_SEPARATE_HEADERMAPS = YES | |
| APPLE_INTERNAL_DEVELOPER_DIR = /AppleInternal/Developer | |
| APPLE_INTERNAL_DIR = /AppleInternal | |
| APPLE_INTERNAL_DOCUMENTATION_DIR = /AppleInternal/Documentation |
| function validateCNPJ(cnpj) { | |
| cnpj = cnpj.replace(/[^\d]+/g,''); | |
| if (cnpj.length != 14) return false; | |
| // Remove known invalid CNPJs | |
| if (cnpj === "00000000000000" || | |
| cnpj === "11111111111111" || | |
| cnpj === "22222222222222" || | |
| cnpj === "33333333333333" || | |
| cnpj === "44444444444444" || | |
| cnpj === "55555555555555" || |
| #!/bin/bash | |
| find -E $(xcode-select --print-path)\ | |
| -regex '.*___\.(c|h|m|swift)' \ | |
| -print0 | xargs -0 -n 1 sed -i '' '1,/^$/d' |
I hereby claim:
To claim this, I am signing this object:
| # xcode-build-bump.sh | |
| # @desc Auto-increment the build number every time the project is run. | |
| # @usage | |
| # 1. Select: your Target in Xcode | |
| # 2. Select: Build Phases Tab | |
| # 3. Select: Add Build Phase -> Add Run Script | |
| # 4. Paste code below in to new "Run Script" section | |
| # 5. Drag the "Run Script" below "Link Binaries With Libraries" | |
| # 6. Insure that your starting build number is set to a whole integer and not a float (e.g. 1, not 1.0) |
| // | |
| // AgregadorTableViewDataSource.m | |
| // DataSourceAggregator | |
| // | |
| // Created by Alexandre Garrefa on 3/24/15. | |
| // Copyright (c) 2015 Concrete Solutions. All rights reserved. | |
| // | |
| #import "AgregadorTableViewDataSource.h" |
| # command to create my git lg alias | |
| git config --global alias.lg "log --color --graph --pretty=format:'%Cred%h%Creset %Cblue%an%Creset %s'" | |
| # prefered | |
| git config --global alias.lg "log --graph --pretty=format:'%Cred%h%Creset %C(yellow)%d%Creset %Cgreen%cd%Creset %C(bold blue)%an%Creset %s' --date=short" |