Skip to content

Instantly share code, notes, and snippets.

View infused's full-sized avatar

Keith Morrison infused

View GitHub Profile
@infused
infused / 37332.json
Created September 2, 2023 22:16
37332 - Evensville, TN
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@infused
infused / 37337.json
Created September 2, 2023 21:33
37337 - Grandview, TN
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@infused
infused / 37338.json
Created September 2, 2023 21:20
37338 - Graysville, TN
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@infused
infused / 37726.json
Created September 2, 2023 20:43
37726 - Deer Lodge, TN
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@infused
infused / 37381.json
Last active September 2, 2023 20:16
37387 - Spring City, TN
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@infused
infused / gist:3083e58df239b17da014
Last active August 29, 2015 14:03
My Git Aliases
[alias]
st = status -sb
di = diff
dic = diff --cached
co = checkout
ci = commit
cp = cherry-pick
br = branch
sta = stash
lf = fsck --lost-found --unreachable
@infused
infused / new_laptop_setup.md
Created November 13, 2012 18:33
My new laptop setup log
  • Finder menu -> Go -> Utilities and launch Terminal
  • Control-click Terminal in the Dock and enable Options -> 'Keep in Dock'
  • Trackpad prefs enable tap to click with one finger
  • Prefs -> Software Update and install 5 items including a new firmware update that requires a reboot
  • While waiting, launch App Store and install Evernote and Black Magic Disk Speed Test, and Skitch
  • Run BM Disk Speed test Write 404.3 MB/s, Read 450.4 MB/s!
  • Launch Skitch, login to Evernote and set to only show in the menu bar Note that when sharing with Skitch the confirmation dialog is barely visible
# Soundex.rb
#
# Implementation of the soundex algorithm as described by Knuth
# in volume 3 of The Art of Computer Programming
#
# author: Michael Neumann (neumann@s-direktnet.de)
# version: 1.0
# date: 26.07.2000
# license: GNU GPL
#
@infused
infused / gist:117010
Created May 24, 2009 08:05
Exchange 2003 log analyzer
#!/usr/bin/env ruby
require 'optparse'
require 'ostruct'
require 'parsedate'
@my_args = ARGV.empty? ? [ "-h" ] : ARGV
@options = OpenStruct.new
opts = OptionParser.new