I hereby claim:
- I am chourobin on github.
- I am robinchou (https://keybase.io/robinchou) on keybase.
- I have a public key ASBUj_uuP1sOsaQ2FaG1ljzbnugx4PjNN9xIu8gFrpYvuAo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| var Index = React.createClass({ | |
| getInitialState: function () { | |
| return { | |
| lastPress: 0 | |
| } | |
| }, | |
| onPress: function () { | |
| var delta = new Date().getTime() - this.state.lastPress; |
| #import <AVFoundation/AVFoundation.h> | |
| @interface MLWAsyncAVPlayer : AVPlayer | |
| @end |
| // | |
| // ViewController.m | |
| // AVPlayerCaching | |
| // | |
| // Created by Anurag Mishra on 5/19/14. | |
| // Sample code to demonstrate how to cache a remote audio file while streaming it with AVPlayer | |
| // | |
| #import "ViewController.h" | |
| #import <AVFoundation/AVFoundation.h> |
| { fontWeight: '100' }, // Thin | |
| { fontWeight: '200' }, // Ultra Light | |
| { fontWeight: '300' }, // Light | |
| { fontWeight: '400' }, // Regular | |
| { fontWeight: '500' }, // Medium | |
| { fontWeight: '600' }, // Semibold | |
| { fontWeight: '700' }, // Bold | |
| { fontWeight: '800' }, // Heavy | |
| { fontWeight: '900' }, // Black |
| { | |
| "parser": "babel-eslint", | |
| "env": { | |
| "browser": true | |
| }, | |
| "plugins": [ | |
| "babel", | |
| "react", | |
| "react-native" | |
| ], |
| import Foundation | |
| class StateMachine <P: StateMachineDelegateProtocol> { | |
| private unowned let delegate: P | |
| private var _state: P.StateType { | |
| didSet{ | |
| delegate.didTransitionFrom(from: oldValue, to: _state) | |
| } |
| // in a UITableViewController (or any other view controller with a UITableView) | |
| - (void)viewWillTransitionToSize:(CGSize)size withTransitionCoordinator:(id<UIViewControllerTransitionCoordinator>)coordinator | |
| { | |
| UIView *header = [[UIView alloc] initWithFrame:CGRectMake(0, 0, size.width, 0)]; | |
| header.translatesAutoresizingMaskIntoConstraints = NO; | |
| // [add subviews and their constraints to header] | |
| NSLayoutConstraint *headerWidthConstraint = [NSLayoutConstraint |