Skip to content

Instantly share code, notes, and snippets.

Configure the branches

  • integrate/base -- the most recent commit that was cherry-picked into next
  • integrate/tip -- the main branch commit that should be merged into the next branch "next" (haha)
  • integrate/working -- the "virtual main branch" or "working copy of next branch". This serves as the merge base for integrate/tip to be merged in
git checkout -b integrate/base 06d7e6bb3adcde8a1aafb6958e5eced8b62c30c4
git checkout -b integrate/tip e5182598a48df7d0f40ce79ba057af850d90022c
git checkout next

Keybase proof

I hereby claim:

  • I am tylerbutler on github.
  • I am tylerbutler (https://keybase.io/tylerbutler) on keybase.
  • I have a public key ASAKG6m2leQ7x8kIcAqQ0c8kigJpbO30VoGAzHF3MBqR8wo

To claim this, I am signing this object:

@tylerbutler
tylerbutler / postmessage_logger.js
Created November 4, 2016 18:13
Simple PostMessage logger
function handlePostMessage(e) {
// The actual message is contained in the data property of the event.
var msg = JSON.parse(e.data);
// The message ID is now a property of the message object.
var msgId = msg.MessageId;
// The message parameters themselves are in the Values
// parameter on the message object.
var msgData = msg.Values;
@tylerbutler
tylerbutler / __init__.py
Created November 27, 2012 20:16
Propane distribution/setup utilities
# coding=utf-8
from propane_distribution import *
__author__ = 'Tyler Butler <tyler@tylerbutler.com>'
@tylerbutler
tylerbutler / ansistrm.py
Created June 2, 2012 21:52 — forked from vsajip/ansistrm.py
Python logging: colourising terminal output
#
# Copyright (C) 2010-2012 Vinay Sajip. All rights reserved. Licensed under the new BSD license.
#
import ctypes
import logging
import os
class ColorizingStreamHandler(logging.StreamHandler):
# color names to indices
color_map = {