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
# To check if this is up-to-date with the tax rates go to | |
# http://www.expatax.nl/tax_rates_2013.php and see if there's anything | |
# newer there. | |
use strict; | |
use warnings; | |
use Text::TabularDisplay; | |
use List::Util qw(sum); | |
my $start = 30_000 || $ARGV[0]; | |
my $end = 100_000 || $ARGV[1]; |
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 lldb | |
def GetFirstArgumentAsValue(target, frame): | |
# Note: I assume the PC is at the first instruction of the function, before the stack and registers have been modified. | |
if target.triple.startswith('x86_64'): | |
return frame.regs[0].GetChildMemberWithName("rdi") | |
elif target.triple.startswith('i386'): | |
espValue = frame.regs[0].GetChildMemberWithName("esp") | |
address = espValue.GetValueAsUnsigned() + target.addr_size | |
return espValue.CreateValueFromAddress('arg0', address, target.FindFirstType('id')) |
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
Pod::Spec.new do |s| | |
s.name = 'AFRocketClient' | |
s.version = '1.0' | |
s.license = 'MIT' | |
s.summary = 'AFNetworking Client for Server sent events' | |
s.homepage = 'https://github.com/derrh/AFRocketClient' | |
s.author = { 'Mattt Thompson' => '[email protected]' } | |
s.source = { :git => 'https://github.com/ebuddy/AFRocketClient' } | |
s.source_files = 'AFRocketClient/*.{h,m}' | |
s.requires_arc = true |
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 "HiveDeviceCoreDataManager.h" | |
static HiveDeviceCoreDataManager* globalManager = nil; | |
NSString *const HiveDeviceCoreDataRefetchAllDatabaseData = @"DeviceRefetchAllDatabaseData"; | |
@implementation HiveDeviceCoreDataManager | |
@synthesize mainContext = _mainContext; | |
@synthesize managedObjectModel = _managedObjectModel; |
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
# !/usr/bin/env python | |
# encoding: utf-8 | |
# Written by Sumeru Chatterjee | |
import sys | |
import pdb | |
import os | |
import pprint | |
characters = ['a','b','c','d','e','f','g','h','i','j','k','l','m','n','o','p','q','r','s','t','u','v','w','x','y','z'] |
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
#!/bin/sh | |
# Script to be used within xcode to generate documentation through appledoc | |
# Prior to the execution of this script the appledoc executable and templates should have been copied | |
# to the appledoc folder in the project root directory | |
# | |
# Created by Sumeru Chatterjee when he was awake till 7 AM on July 12 2011 | |
# https://gist.github.com/1077672 | |
#Company Name the only variable that I cant seem to grab from the environment_variables | |
COMPANY=My_Company_Name |