Skip to content

Instantly share code, notes, and snippets.

View nathwill's full-sized avatar
🐜
doin' stuff

Nathan Williams nathwill

🐜
doin' stuff
  • Treehouse
  • Portland, OR
View GitHub Profile

MMANA-GAL on Linux with Wine

Using Winetricks to install prereqs

./winetricks -f corefonts vcrun6 vb5run native_oleaut32 vcrun2010 richtx32

Running MMANA-GAL

@vcastellm
vcastellm / haproxy.lua
Last active January 8, 2022 17:22
Heka haproxy lua decoder
local dt = require "date_time"
local ip = require "ip_address"
local l = require 'lpeg'
local syslog = require "syslog"
l.locale(l)
local msg = {
Timestamp = nil,
Hostname = nil,
Payload = nil,
@nathwill
nathwill / Vagrantfile
Last active December 17, 2015 18:49
chef-solo multi-vm vagrantfile
# vm and role mapping for multi-vm vagrant
boxes = [
{ :name => :app, :roles => ['base', 'web'] },
{ :name => :mc, :roles => ['base', 'memcache'] },
{ :name => :db, :roles => ['base', 'db-master'] },
{ :name => :util, :roles => ['base', 'redis', 'resque' ] },
]
Vagrant.configure("2") do |config|
# base image configuration