(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.
| #import <Foundation/Foundation.h> | |
| #import <Photos/PHAsset.h> | |
| @interface PHAsset (Addition) | |
| @property (nonatomic,assign) BOOL selected; | |
| @end |
| #! /usr/bin/env bash | |
| # Get xv6 working with OSX Yosemite | |
| # Most things were here: https://doesnotscale.com/compiling-xv6-on-os-x-10-9/ | |
| # You need homebrew installed to make this thing work | |
| brew tap homebrew/versions && brew install gcc48 | |
| brew deps qemu | xargs brew install | |
| export PATH=/usr/local/bin:$PATH | |
| export CC=/usr/local/bin/gcc-4.8 | |
| brew install wget |
(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.
| - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath | |
| { | |
| UITableViewCell *cell = | |
| [tableView dequeueReusableCellWithIdentifier:REUSABLE_CELL_ID]; | |
| UILabel *label = (UILabel *)[cell viewWithTag:VIEW_TAG]; | |
| Model *someModel = [self getModelFromIndexPath:indexPath]; | |
| // `takeUntil:` makes the RACObserve() signal complete (and thus breaks the subscription) | |
| // when the cell is recycled. |
| #!/bin/bash | |
| ########################################################################### | |
| # Choose your ffmpeg version and your currently-installed iOS SDK version: | |
| # | |
| VERSION="2.0.2" | |
| SDKVERSION="7.0" | |
| ARCHS="armv7 armv7s i386" | |
| # | |
| # |
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="utf-8" /> | |
| <title>Untitled</title> | |
| </head> | |
| <body> | |
| </body> | |
| </html> |