I hereby claim:
- I am ianchesal on github.
- I am irc (https://keybase.io/irc) on keybase.
- I have a public key whose fingerprint is 7CC0 CE67 8C37 FC27 DA3C E494 F56B 7A6F 0A32 A0B9
To claim this, I am signing this object:
#!/usr/bin/env ruby | |
## | |
# Runs rubocop on just the modified and new files in a repoistory. Handy for | |
# checking your compliance before you commit. It only runs against files that | |
# end in .rb. Maybe it should do more than that? | |
# | |
# Easy to run. In a dirty working directory: | |
# | |
# breathalyzer |
{ | |
"bold_folder_labels": true, | |
"caret_style": "phase", | |
"color_scheme": "Packages/Tomorrow Color Schemes/Tomorrow-Night.tmTheme", | |
"draw_indent_guides": true, | |
"draw_white_space": "selection", | |
"file_exclude_patterns": | |
[ | |
".DS_Store", | |
"*.lib", |
I hereby claim:
To claim this, I am signing this object:
Nothing can truly replace leveling presets live, with the band, using your ears. But if you need to get things close, and you can't open it up to full volume to test levels using a Db meter, this approach works pretty well.
You'll need a pink noise generator and a loudness meter application. I'm on OS X and I use Noisy for pink noise generation and Orban Loudness Meter for measuring. Both will work using the Axe-Fx II's USB in and out on OS X 10.9.x. They also both happen to be free which is nice.
# Original gist: https://gist.github.com/threebytesfull/968327 | |
# | |
# See also: http://apple.stackexchange.com/questions/17264/prevent-bootcamp-partition-from-automatically-mounting | |
# | |
# You can find the volume UUID in Disk Utility. Select the volume on the left | |
# and then File->Get Info. See "Universal Unique Identifier". | |
# | |
# Options used below: | |
# ro for readonly (can be omitted) | |
# noauto to prevent auto-mount |
#!/bin/env python | |
__doc__ = ''' | |
dirsize.py | |
Figure out the size of everything contained in all the sub-directories under a target | |
in some sort of parallel manner. Try and produce some output that's not as terrible | |
to grok as du. |
#!/usr/bin/env perl | |
# Works on any system that supports a 'ps aux' call and the lsof | |
# command. Counts the number of open file descriptors for each | |
# process in the 'ps aux' output. Handy if you're trying to see | |
# which process is hanging on to the most FDs. | |
use strict; | |
printf("%-10s %-10s %s\n", 'PID', 'OPEN FDS', 'COMMAND'); |
MacBook-Pro:~ ian$ sudo kextunload /System/Library/Extensions/AppleUSBTopCase.kext/Contents/PlugIns/AppleUSBTrackpad.kext | |
(kernel) Can't unload kext com.apple.driver.AppleUSBTrackpad; classes have instances: | |
(kernel) Kext com.apple.driver.AppleUSBTrackpad class AppleUSBFnTrackpad has 1 instance. | |
(kernel) Kext com.apple.driver.AppleUSBTrackpad class AppleUSBGrIITrackpad has 1 instance. | |
(kernel) Kext com.apple.driver.AppleUSBTrackpad class AppleUSBGrIIITrackpad has 1 instance. | |
(kernel) Kext com.apple.driver.AppleUSBTrackpad class AppleUSBTrackpad has 1 instance. | |
Failed to unload com.apple.driver.AppleUSBTrackpad - (libkern/kext) kext is in use or retained (cannot unload). |
> dig 54.247.29.171 any | |
; <<>> DiG 9.7.3-P3 <<>> 54.247.29.171 any | |
;; global options: +cmd | |
;; Got answer: | |
;; ->>HEADER<<- opcode: QUERY, status: NXDOMAIN, id: 27993 | |
;; flags: qr rd ra; QUERY: 1, ANSWER: 0, AUTHORITY: 1, ADDITIONAL: 0 | |
;; QUESTION SECTION: | |
;54.247.29.171. IN ANY |
#!/usr/local/bin/python | |
import json | |
import subprocess | |
from pprint import pprint | |
import time | |
import sys | |
import operator | |
# The Level 3 Crowd |