This file contains hidden or 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
<?xml version="1.0"?> | |
<!DOCTYPE suppressions PUBLIC | |
"-//Puppy Crawl//DTD Suppressions 1.1//EN" | |
"http://www.puppycrawl.com/dtds/suppressions_1_1.dtd"> | |
<suppressions> | |
<!-- Turn off all checks for some libraries. --> | |
<suppress checks="." files="com[\\/]google[\\/]..*.java" /> | |
<!-- Turn off header checks for some libraries. --> | |
<suppress checks="Header" files=".*[\\/]android[\\/]fastroid[\\/].*\.java"/> |
This file contains hidden or 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
// | |
// Copyright (c) 2012 Cédric Luthi / @0xced. All rights reserved. | |
// | |
#if TARGET_IPHONE_SIMULATOR | |
static NSString * const FakeCarrier = @"AT&T"; | |
#import <objc/runtime.h> |
This file contains hidden or 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
#!/usr/bin/env ruby -w | |
# | |
# This is a script to help view a patch file in the Changes.app[1] UI. It is | |
# pretty basic, but does the job. It simply creates 2 copies of the file, | |
# where in one (the "original") it strips all the lines starting with '+', and | |
# the other (the "modified") it strips all the lines starting with '-'. It | |
# also removes the first character of all lines starting with a space, +, or - | |
# Then it simply uses the chdiff command line too to view the differences. | |
# | |
# It takes input either from filename arguments (multiple files are ok, but it |
This file contains hidden or 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
// | |
// EGOTitledTableViewCell.h | |
// EGOClasses | |
// | |
// Created by Shaun Harrison on 6/2/09. | |
// Copyright 2009 enormego. All rights reserved. | |
// | |
#import <UIKit/UIKit.h> |
NewerOlder