Skip to content

Instantly share code, notes, and snippets.

View byronmansfield's full-sized avatar

Byron Mansfield byronmansfield

View GitHub Profile
@byronmansfield
byronmansfield / releaser.sh
Last active November 9, 2020 13:48
Release script
#! /bin/bash
# Release Manager
# Bumps version of project
# Tags the new version
# Produces Changelog
# Get Project Current Version
version=$(sed -n 's/.*"version": "\(.*\)",/\1/p' package.json)
@byronmansfield
byronmansfield / .vimrc
Last active August 29, 2015 14:23
my vimrc
" Load Pathogen and all bundles
" runtime ~/.vim/bundle/vim-pathogen/autoload/pathogen.vim
call pathogen#infect()
call pathogen#helptags()
" Basic goodness
set nocompatible
syntax on
filetype plugin indent on
filetype plugin on
@byronmansfield
byronmansfield / tmux.conf
Last active August 29, 2015 14:23
my tmux config
##############################
# _
# | |_ _ __ ___ _ ___ __
# | __| '_ ` _ \| | | \ \/ /
# | |_| | | | | | |_| |> <
# \__|_| |_| |_|\__,_/_/\_\
#
#############################
# COPY AND PASTE
@byronmansfield
byronmansfield / logger.go
Created May 23, 2015 02:11
Go logger server
package main
import (
"encoding/json"
"fmt"
"net/http"
"os"
)
type LogMsg struct {