Skip to content

Instantly share code, notes, and snippets.

View amussey's full-sized avatar

Andrew Mussey amussey

View GitHub Profile
@amussey
amussey / .gitignore
Last active August 29, 2015 13:58
Rackspace Persistent Login Extension for Chrome
.DS_Store
{
"1" : {
"date" : "2014-08-13",
"count" : 5
},
"2" : {
"date" : "2014-08-14",
"count" : 3
}
}
#!/bin/bash
# command -v lsb_release >/dev/null 2>&1 || { echo "This script requires lsb_release, but the command is not available." >&2; exit 1; }
# echo -e "This script will need to be run as root. To view the source of this script, visit:\n"
YOUR_INSTALL=$(head -1 /etc/issue | sed 's/ \\n \\l//')
#!/bin/sh
# script to check for complete torrents in transmission folder, then stop and move them
# either hard-code the MOVEDIR variable here?
# ?or set MOVEDIR using the first command-line argument
# MOVEDIR=%1
# use transmission-remote to get torrent list from transmission-remote list
# use sed to delete first / last line of output, and remove leading spaces
# use cut to get first field from each line

Testing

This will be cool

@amussey
amussey / README.md
Created May 26, 2015 04:31
Distorted View Webscript.io PocketCast Fix

PocketCast + SuperFreak Sideshow

The following script will allow you to use PocketCast with the Distorted View Superfreak Sideshow RSS feed. Simply plug it in to a Webscript.io endpoint with your username and password and point PocketCast at it.

@amussey
amussey / 0_reuse_code.js
Created October 1, 2013 21:08
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console
@amussey
amussey / .gitignore
Last active December 24, 2015 16:19
Cassandra Scripts
cassandra_config.py
*.pyc
project/
@amussey
amussey / README.md
Last active December 25, 2015 00:49
Cassandra Database Injector Quickly insert a file of CQL3 data into your Cassandra cluster.

CQL Database Injector

To run this, simply run:

python cassandra-cql.py hostname port script_file [-f]

This will soon be packaged for pip.

<?php
$new_array = array();
for ($i = 0; $i < intval(count($old_array)/2); $i++) {
$new_array[$old_array[2*$i]] = $old_array[2*$i+1];
}