Skip to content

Instantly share code, notes, and snippets.

View AidanThreadgold's full-sized avatar

Aidan Threadgold AidanThreadgold

View GitHub Profile
@AidanThreadgold
AidanThreadgold / google-cloud-storage-upload.php
Created April 5, 2014 20:25
Upload a file to google cloud
<?php
require_once("src/Google/Client.php");
require_once("src/Google/Service/Storage.php");
/**
* Connect to Google Cloud Storage API
*/
$client = new Google_Client();
$client->setApplicationName("App Name");
@AidanThreadgold
AidanThreadgold / git-search-command-history.cmd
Created October 28, 2013 14:31
git command to search commit history
git log -S[search phrase]
@AidanThreadgold
AidanThreadgold / git-index-ignore.cmd
Created October 18, 2013 22:04
Git command to ignore a specific file from the index (so git doesn't think it's changed)
git update-index --assume-unchanged path/to/file.php