Skip to content

Instantly share code, notes, and snippets.

View xaethos's full-sized avatar

Diego Garcia xaethos

View GitHub Profile
@xaethos
xaethos / lolcat.rb
Created June 22, 2012 05:43
adb logcat with color and filter by package/process name
#!/usr/bin/env ruby
require 'colorize'
require 'optparse'
class LOLCat
def initialize options = {}
@tagspecs = options[:tagspecs] || []
@whitelist = options[:processes] || []
@processes = Hash.new
end