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
#!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"); |
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 | |
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 |
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 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 | |
# |