I hereby claim:
- I am lukabernardi on github.
- I am lucabernardi (https://keybase.io/lucabernardi) on keybase.
- I have a public key ASC34kN73ZCTPYGD_tRxhBz2-D5qAdY8GCRKJcIqEULrpQo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
protocol Reusable{ | |
static var reuseIdentifier: String { get } | |
} | |
extension Reusable { | |
static var reuseIdentifier: String { return String(Self.self) } | |
} | |
extension UICollectionViewCell : Reusable {} |
I hereby claim:
To claim this, I am signing this object:
void objc_setProperty_nonatomic_copy(id self, SEL _cmd, id newValue, ptrdiff_t offset) | |
{ | |
temp = [newValue copyWithZone:NULL]; | |
oldValue = *(self + offset); | |
*(sef + offset) = temp; | |
_objc_release(oldValue); | |
} |
import lldb | |
import commands | |
def __lldb_init_module (debugger, dict): | |
debugger.HandleCommand('command script add -f LBRShortcut.window_description_command window_description') | |
debugger.HandleCommand('command script add -f LBRShortcut.json_data_command json_data') | |
debugger.HandleCommand('command script add -f LBRShortcut.fire_fault_command fire_fault') | |
def window_description_command(debbuger, command, result, dict): |
-- CIS 194: Homework 1 (http://www.seas.upenn.edu/~cis194/hw/01-intro.pdf) | |
-- toDigits 1234 == [1,2,3,4] | |
-- toDigitsRev 1234 == [4,3,2,1] | |
-- toDigits 0 == [] | |
-- toDigits (-17) == [] | |
toDigitsRev :: Integer -> [Integer] | |
toDigitsRev x = if x <= 0 |
#import <Foundation/Foundation.h> | |
@interface LBRObject : NSObject | |
@end | |
@implementation LBRObject | |
- (void)execute | |
{ | |
@synchronized(self) { |
import lldb | |
import commands | |
import optparse | |
import shlex | |
def __lldb_init_module (debugger, dict): | |
debugger.HandleCommand('command script add -f windowDescription.window_description_command window_description') | |
print 'The "window_description" command has been installed' | |
// | |
// AVAsset+VideoOrientation.h | |
// | |
// Created by Luca Bernardi on 19/09/12. | |
// Copyright (c) 2012 Luca Bernardi. All rights reserved. | |
// | |
#import <AVFoundation/AVFoundation.h> | |
typedef enum { | |
LBVideoOrientationUp, //Device starts recording in Portrait |
__weak typeof(self) weakSelf = self; | |
self.collectionView = (UICollectionView *)^{ | |
UICollectionViewFlowLayout *flowLayout = [[UICollectionViewFlowLayout alloc] init]; | |
UICollectionView *collectionView = [[UICollectionView alloc] initWithFrame:weakSelf.view.bounds | |
collectionViewLayout:flowLayout]; | |
collectionView.delegate = weakSelf; | |
collectionView.dataSource = weakSelf; | |
return collectionView; |