I hereby claim:
- I am mekanics on github.
- I am aj (https://keybase.io/aj) on keybase.
- I have a public key whose fingerprint is B7C7 2B0F 2DF5 7BAB 6A90 BBBA 836A 6751 40F2 B899
To claim this, I am signing this object:
| // | |
| // AMScanViewController.h | |
| // | |
| // | |
| // Created by Alexander Mack on 11.10.13. | |
| // Copyright (c) 2013 ama-dev.com. All rights reserved. | |
| // | |
| #import <UIKit/UIKit.h> | |
| #import <AVFoundation/AVFoundation.h> |
| #!/bin/bash | |
| if [[ -z "$1" ]] | |
| then | |
| ipaname=$(ls . | grep -i -E '\.ipa$' | head -1) | |
| else | |
| ipaname=$1 | |
| fi | |
| echo "unzip '$ipaname'"; |
| # | |
| # uncrustify config file for objective-c and objective-c++ | |
| # | |
| indent_with_tabs = 0 # 1=indent to level only, 2=indent with tabs | |
| output_tab_size = 4 # new tab size | |
| indent_columns = output_tab_size | |
| indent_label = 2 # pos: absolute col, neg: relative column | |
| indent_align_assign = FALSE |
I hereby claim:
To claim this, I am signing this object:
| $ pod install | |
| Analyzing dependencies | |
| Downloading dependencies | |
| Using ASIHTTPRequest (1.8.1) | |
| Using GData (1.9.1) | |
| Using GTMHTTPFetcher (0.0.1) | |
| Using Kiwi (2.2.1) | |
| Installing LibComponentLogging-Core (1.3.2) | |
| Installing LibComponentLogging-NSLog (1.0.4) |
05.05.2014
App Store https://itunes.apple.com/ch/app/xcode/id497799835?l=en&mt=12
Install the Command Line Tools
| #import <QuartzCore/CAAnimation.h> | |
| CABasicAnimation *animation = [CABasicAnimation animationWithKeyPath:@"shadowOpacity"]; | |
| animation.fromValue = [NSNumber numberWithFloat:1.0]; | |
| animation.toValue = [NSNumber numberWithFloat:0.0]; | |
| animation.duration = 1.0; | |
| [view.layer addAnimation:animation forKey:@"shadowOpacity"]; | |
| view.layer.shadowOpacity = 0.0; |
| <?php | |
| require_once __DIR__.'/../Silex/silex.phar'; | |
| use Silex\Extension\DoctrineExtension; | |
| $app = new Silex\Application; | |
| $app->register(new DoctrineExtension, array( | |
| 'doctrine.dbal.connection_options' => array( |