- MacPorts
- QuickSilver
- TextMate
- Xcode
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
afowler@owlhouse en $ port installed | |
The following ports are currently installed: | |
apache2 @2.2.14_0+darwin+preforkmpm (active) | |
apr @1.3.9_0 (active) | |
apr-util @1.3.9_0 (active) | |
aquaterm @1.0.1_5 (active) | |
autoconf @2.65_0 (active) | |
autoconf213 @2.13_1 (active) | |
automake @1.11.1_0 (active) | |
bash-completion @1.1_2 (active) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env ruby -wKU | |
def UBER_ip_route_match(command, regex) | |
command.split("\n").select { |l| l =~ regex }.first.to_s[/([0-9]+\.[0-9]+\.[0-9]+\.[0-9]+)/] || '0.0.0.0' | |
end | |
c = '10.128.0.0/24 dev eth1 proto kernel scope link src 10.128.0.48 | |
127.0.0.0/8 dev lo scope link | |
default via 10.128.0.254 dev eth1' | |
# c = %x{/sbin/ip route list match #{ip}} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// creates a ticket with a reference to this revision, file, line # and author | |
// by default, the ticket is assigned to the author who committed it | |
$temporaryCode = 'hack'; // @TODO Add official code when x module completed.... | |
// optionally assign the ticket to somebody else | |
$temporaryCode = 'hack'; // @TODO ([email protected]) Figure out the best way to handle this | |
// looks for references to other tickets to add dependencies | |
$temporaryCode = 'hack'; // @TODO Can't fix this until #207 is resolved |
NewerOlder