I hereby claim:
- I am carlossless on github.
- I am carlossless (https://keybase.io/carlossless) on keybase.
- I have a public key ASDIyuZFuUxZrqPFmPDfiqKO-TZGi4cp6eKiKWJIKYzJ1Qo
To claim this, I am signing this object:
- (void)makeRotatedImagesWithImageView:(UIImageView *)imageView | |
{ | |
for (int i = 0; i < 30; i++) { | |
CGFloat angle = M_PI / 15 * i; | |
CGSize boundingSize = imageView.image.size; | |
boundingSize.width *= 2; | |
boundingSize.height *= 2; | |
PATH=/usr/local/bin/:${PATH} | |
if command -v mogenerator >/dev/null 2>&1; then | |
mogenerator --v2 --model "$SRCROOT"/TeamApp/Database/TeamApp.xcdatamodeld --human-dir "$SRCROOT"/TeamApp/Database/Models --machine-dir "$SRCROOT"/TeamApp/Database/Models/Generated | |
else | |
echo "warning: You have to install and set up mogenerator to generate the data models" | |
fi | |
PATH=/usr/local/bin/:${PATH} | |
if command -v xcres >/dev/null 2>&1; then | |
xcres --no-ansi build "$PROJECT_FILE_PATH" "$SRCROOT"/TeamApp/Resources/R |
import Foundation | |
import ModuleB | |
public protocol CacheableConfiguration: Decodable { | |
static var fileName: String { get } | |
var version: Int { get } // this is what is triggering the linker fail | |
func object() -> AnyObject | |
} |
#!/bin/bash | |
COMMIT_RANGE=$TRAVIS_COMMIT_RANGE | |
JIRA_ISSUE_PREFIX="VI-" | |
JIRA_ISSUE_BASE_URL="https://mycompany.atlassian.net/browse/" | |
if [ -z "$COMMIT_RANGE" ]; then >&2 echo "Commit Range is Empty. Exiting."; exit 0; fi | |
GIT_LOG=`git log --pretty=format:'%h %ad %s | %an' --date=short "$COMMIT_RANGE" | grep -v Merge | sed -E 's/.{7} (.*)/\1/g'` |
I hereby claim:
To claim this, I am signing this object:
#!/bin/bash | |
gem uninstall cocoapods -a -x | |
gem uninstall cocoapods-core -a | |
gem uninstall cocoapods-deintegrate -a | |
gem uninstall cocoapods-downloader -a | |
gem uninstall cocoapods-plugins -a | |
gem uninstall cocoapods-search -a | |
gem uninstall cocoapods-stats -a | |
gem uninstall cocoapods-trunk -a |
#!/bin/bash | |
# A script to log the last commit message to the users shared git log | |
# Useful to keep track of what you did durring a specific day | |
LOG_PATH="$HOME/gitlogs" | |
DATE=`date +'%Y-%m-%d'` | |
COMMIT=`git log --color --graph --pretty=format:'%h %s' -1 HEAD` | |
REPO_PATH=`git rev-parse --show-toplevel` | |
REPO_NAME=`basename "$REPO_PATH"` |
#include <stdlib.h> | |
#include <stdio.h> | |
#include <time.h> | |
int rand_lim(int limit); | |
int try_game(); | |
int main () | |
{ | |
srand(time(NULL)); |
import Foundation | |
var chars = "ABCDEFGHIJKLMNOPQRSTU" | |
let charStrings = chars.characters | |
.map{ String($0) } | |
func buildFunc(charStrings: [String], index: Int) -> String { | |
let lowerCaseChars = charStrings.map { $0.lowercased() } | |
let upperCaseChars = charStrings.map { $0.uppercased() } | |
#!/usr/bin/env bash | |
FRAMEWORK_BINARIES=$(find . -path "./Carthage/Build/*.framework/*" -type f -maxdepth 5 ! -name "*.*") | |
check_framework () { | |
printf "Checking $1..." | |
if OTOOL_OUTPUT=$(otool -l -arch all "$1" | grep __llvm_prf) ; then | |
printf " LLVM instrumentation symbols found:\n" | |
printf "$OTOOL_OUTPUT\n\n" | |
else |