- 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
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import Charts | |
import SwiftUI | |
struct Sample: Identifiable { | |
var x: Double | |
var y: Double | |
var id: some Hashable { x } | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@import OCHamcrest; | |
NS_ASSUME_NONNULL_BEGIN | |
@interface HCArgumentCaptor (OCMockitoBridge) | |
- (NSObject *)tm_objectValue; | |
@end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import Foundation | |
public protocol Observable : class { | |
typealias ObserverType | |
func addObserver(observer : ObserverType) | |
func removeObserver(observer : ObserverType) | |
} | |
let observersAssociatedKey = "observersKey" |
- English
- Spanish
- Chinese
- French
- Portuguese
- German
- Dutch
- Italian
- Swedish
- Norwegian
- 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
- The Big Bang Theory
- Game of Thrones
- True Blood
- Dexter
- Breaking Bad
- Fringe
- Futurama
- The Walking Dead
- House
- How I Met Your Mother
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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' |