- 1600 Penn
- 3 Days to Open with Bobby Flay
- 666 Park Avenue
- 8 Out of 10 Cats
- America's Got Talent
- Around the World in 80 Plates
- Arrow
- Austin City Limits
- Bar Rescue
- Beauty and the Beast
View HCArgumentCaptor+OCMockitoBridge.h
@import OCHamcrest; | |
NS_ASSUME_NONNULL_BEGIN | |
@interface HCArgumentCaptor (OCMockitoBridge) | |
- (NSObject *)tm_objectValue; | |
@end |
View option1.h
@interface TMUser1 : NSObject <NSCopying, NSMutableCopying> | |
@property (nonatomic, copy, readonly) NSString *userId; | |
@property (nonatomic, copy, readonly) NSString *name; | |
@property (nonatomic, copy, readonly) NSString *surname; | |
@property (nonatomic, readonly) NSURL *avatarURL; | |
- (instancetype)initWithUserId:(NSString *)userId | |
name:(NSString *)name | |
surname:(NSString *)surname |
View Observer.swift
import Foundation | |
public protocol Observable : class { | |
typealias ObserverType | |
func addObserver(observer : ObserverType) | |
func removeObserver(observer : ObserverType) | |
} | |
let observersAssociatedKey = "observersKey" |
View gist:3806682
View gist:1219572
- English
- Spanish
- Chinese
- French
- Portuguese
- German
- Dutch
- Italian
- Swedish
- Norwegian
View gist:1204865
- 2 Broke Girls
- A Gifted Man
- Alcatraz
- American Horror Story
- Apartment 23
- Are You There, Vodka? It's Me, Chelsea
- Awake
- Boss (2011)
- Charlie's Angels (2011)
- Free Agents
View gist:1180746
- The Big Bang Theory
- Game of Thrones
- True Blood
- Dexter
- Breaking Bad
- Fringe
- Futurama
- The Walking Dead
- House
- How I Met Your Mother
View gist:1177300
Are We There Yet? | |
Army Wives | |
Batman: The Brave & the Bold | |
Blue Mountain State | |
Britain's Got Talent | |
Celebrity Rehab with Dr. Drew | |
Foyle's War | |
Gene Simmons: Family Jewels | |
Ghost Hunters | |
Ghost Hunters International |
View find_followers.rb
require 'rubygems' | |
require 'open-uri' | |
require 'hpricot' | |
require 'twitter' | |
doc = Hpricot(open('http://wikipedal.org/', 'User-Agent' => 'ruby')) | |
cocktail = (doc / '#mp-tfa .mw-headline').text.strip | |
Twitter.configure do |config| | |
config.consumer_key = 'YOUR_CONSUMER_KEY' |