Skip to content

Instantly share code, notes, and snippets.

@amarin15
amarin15 / 43a3bcee
Created December 15, 2017 01:42
Merge quantopian's zipline/master into zipline-live's zipline/master
commit 43a3bcee3f2cb9d7ef219a0d7d50693e28d2f461
Merge: 825f643a fdfce9b1
Author: Alex Marin <alex.ukf@gmail.com>
Date: Thu Dec 14 20:14:37 2017 -0500
Merge latest quantopian changes
diff --cc .travis.yml
index 1c79b1ca,1fba2bb3..e53103f0
--- a/.travis.yml
@amarin15
amarin15 / ReadmeDropbox.md
Last active December 26, 2015 10:39
README for the Dropbox package

The Dropbox Package

Using the Dropbox Package

The Dropbox package is designed to be a straightforward interface for working with Dropbox. It is based on the Dropbox Core API, which can be found at https://www.dropbox.com/developers/core/docs.

Dropbox is built upon the Http package which provides an easy way to consume URLs and web services in a transport independent way.

Instantiating Dropbox

@amarin15
amarin15 / gist_dropbox.php
Last active December 26, 2015 05:59
Cli App for testing the Dropbox package
<?php
// We are a valid Joomla entry point.
define('_JEXEC', 1);
// Setup the base path related constant.
define('JPATH_BASE', dirname(__FILE__));
// Maximise error reporting.
error_reporting(E_ALL);
ini_set('display_errors', 1);
@amarin15
amarin15 / ReadmeRackspace.md
Last active December 23, 2015 19:48
README for the Rackspace package

The Rackspace Package

Using the Rackspace Package

The Rackspace package is designed to be a straightforward interface for working with Rackspace Storage Services. It is based on the REST API provided by Rackspace, which can be found at http://docs.rackspace.com/files/api/v1/cf-devguide/content/API_Operations_for_Storage_Services-d1e942.html.

Rackspace is built upon the Http package which provides an easy way to consume URLs and web services in a transport independent way.

Instantiating Rackspace

@amarin15
amarin15 / ReadmeAmazon.md
Last active December 23, 2015 17:59
README for the Amazons3 package

The Amazons3 Package

Using the Amazons3 Package

The Amazons3 package is designed to be a straightforward interface for working with Amazon Simple Storage Service. It is based on the REST API provided by Amazon, which can be found at http://docs.aws.amazon.com/AmazonS3/2006-03-01/API/APIRest.html.

Amazons3 is built upon the Http package which provides an easy way to consume URLs and web services in a transport independent way.

Instantiating Amazons3

@amarin15
amarin15 / ReadmeGoogleCloudStorage.md
Last active December 23, 2015 12:59
README for the Google Cloud Storage package

The Google Cloud Storage Package

Using the Google Cloud Storage Package

The Google Cloud Storage package is designed to be a straightforward interface for working with Google Cloud Storage. It is based on version 2.0 of the Google Cloud Storage XML API. You can find documentation on the API at https://developers.google.com/storage/docs/xml-api-overview.

Google Cloud Storage is built upon the Http package which provides an easy way to consume URLs and web services in a transport independent way.

Instantiating Google Cloud Storage

<?php
// We are a valid Joomla entry point.
define('_JEXEC', 1);
// Setup the base path related constant.
define('JPATH_BASE', dirname(__FILE__));
// Maximise error reporting.
error_reporting(E_ALL);
ini_set('display_errors', 1);
@amarin15
amarin15 / gist_rackspace.php
Last active December 22, 2015 00:49
Cli App for testing the Rackspace package
<?php
// We are a valid Joomla entry point.
define('_JEXEC', 1);
// Setup the base path related constant.
define('JPATH_BASE', dirname(__FILE__));
// Maximise error reporting.
error_reporting(E_ALL);
ini_set('display_errors', 1);
@amarin15
amarin15 / gist_amazon.php
Last active December 20, 2015 00:19
Cli App for testing the Amazon S3 package
<?php
// We are a valid Joomla entry point.
define('_JEXEC', 1);
// Setup the base path related constant.
define('JPATH_BASE', dirname(__FILE__));
// Maximise error reporting.
error_reporting(E_ALL);
ini_set('display_errors', 1);