Skip to content

Instantly share code, notes, and snippets.

@davidpfahler
davidpfahler / itc.pl
Created June 22, 2012 20:24 — forked from ninjinkun/itc.pl
Itunes Connect Report Downloader
#!perl
use common::sense;
use HTTP::Request::Common;
use LWP::UserAgent;
use URI;
use Compress::Zlib;
use Perl6::Say;
my $uri = URI->new("https://reportingitc.apple.com/autoingestion.tft");
@davidpfahler
davidpfahler / fetch_finance_reports.rb
Created June 22, 2012 09:01 — forked from lukeredpath/fetch_finance_reports.rb
Fetch iTunes finance reports for your iPhone apps
#!/usr/bin/env ruby
require 'mechanize'
require 'open-uri'
require 'pathname'
require 'fileutils'
require 'pp'
### BEGIN CUSTOMIZATION
# set this to where you would like the reports to be stored
@davidpfahler
davidpfahler / hack.sh
Created April 1, 2012 13:45 — forked from boennemann/hack.sh
OSX For Hackers
#!/usr/bin/env sh
##
# This is script with usefull tips taken from:
# https://github.com/mathiasbynens/dotfiles/blob/master/.osx
#
# install it:
# curl -sL https://raw.github.com/gist/2275387/hack.sh | sh
#