Skip to content

Instantly share code, notes, and snippets.

View travisirby's full-sized avatar

Travis Irby travisirby

View GitHub Profile
@travisirby
travisirby / twitterToTumblr.js
Created March 22, 2015 15:58
post to tumblr every time a twitter user favorites a post
// -------------- SERVER.JS file ------------------
var Twit = require('twit'),
tumblr = require('tumblr.js');
var twitterAuth = new Twit({
consumer_key: 'your twitter key',
consumer_secret: 'your twitter secret',
access_token: 'your twitter token',
access_token_secret: 'your twitter token secret'
@travisirby
travisirby / Console.cs
Created December 18, 2013 21:36 — forked from mminer/Console.cs
using UnityEngine;
using System;
using System.Collections.Generic;
/// <summary>
/// A console that displays the contents of Unity's debug log.
/// </summary>
/// <remarks>
/// Developed by Matthew Miner (www.matthewminer.com)
/// Permission is given to use this script however you please with absolutely no restrictions.