I hereby claim:
- I am yas375 on github.
- I am yas375 (https://keybase.io/yas375) on keybase.
- I have a public key ASC-lX0XY5qQ26UPFzIPiEtZg7_PUBKtSstl9Zg2BUsL3go
To claim this, I am signing this object:
| #!/bin/bash | |
| set -e | |
| TEMPLATE_NAME="Template.playground" | |
| DESTINATION_PATH=`mktemp -d`/$TEMPLATE_NAME | |
| cp -R "`dirname $0`/$TEMPLATE_NAME" $DESTINATION_PATH | |
| open $DESTINATION_PATH |
| // | |
| // MBProgressHUD+Additions.h | |
| // Caremobile | |
| // | |
| // Created by Victor Ilyukevich on 4/13/16. | |
| // Copyright © 2016 Care Zone Inc. All rights reserved. | |
| // | |
| @interface MBProgressHUD (Additions) | |
| - (BOOL)hasFinished; |
| func double(value: Int) -> Int { | |
| print("double \(value)") | |
| return value * 2 | |
| } | |
| func triple(value: Int) -> Int { | |
| print("triple \(value)") | |
| return value * 3 | |
| } |
| func double(value: Int) -> Int { | |
| print("double \(value)") | |
| return value * 2 | |
| } | |
| func triple(value: Int) -> Int { | |
| print("triple \(value)") | |
| return value * 3 | |
| } |
| double 2 | |
| filter 4 | |
| double 8 | |
| filter 16 | |
| result: [4] |
I hereby claim:
To claim this, I am signing this object:
| #!/bin/sh | |
| mkdir -p processed | |
| for file in *.mp4 | |
| do | |
| ffmpeg -i $file -vcodec libx264 -crf 10 -x264opts colorprim=bt709:transfer=bt709:colormatrix=bt709:fullrange=off processed/$file | |
| done |
| iPhone1,1 iPhone | |
| iPhone1,2 iPhone 3G | |
| iPhone2,1 iPhone 3GS | |
| iPhone3,1 iPhone 4 (GSM) | |
| iPhone3,3 iPhone 4 (CDMA) | |
| iPhone4,1 iPhone 4S | |
| iPhone5,1 iPhone 5 (A1428) | |
| iPhone5,2 iPhone 5 (A1429) | |
| iPhone5,3 iPhone 5c (A1456/A1532) | |
| iPhone5,4 iPhone 5c (A1507/A1516/A1529) |
| import UIKit | |
| protocol NibLoadable: class { | |
| typealias Object | |
| static var nibName: String { get } | |
| static var nib: UINib { get } | |
| static var firstObjectFromNib: AnyObject? { get } | |
| } | |
| extension NibLoadable { |