- MacPorts
- QuickSilver
- TextMate
- Xcode
This file contains 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 |
This file contains 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 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 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
(a poem my little brother posted on his facebook) | |
I long every day just to see you | |
Just to talk to you | |
you don't have to be there boyfriend or girlfriend but always being | |
there for somone to talk and to listen | |
Love is amazing | |
Love is forever | |
Love is just being a friend | |
Love is careing |
This file contains 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
DeflateFilterNote Input input_info | |
DeflateFilterNote Output output_info | |
DeflateFilterNote Ratio ratio_info | |
LogFormat '"%r" %{output_info}n/%{input_info}n (%{ratio_info}n%%)' deflate | |
CustomLog "logs/deflate_log" deflate |
This file contains 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
var className = 'Graph' + type; | |
// lesser of two uglies? | |
var graph = new window[className](this); | |
// versus | |
var graph = eval('new ' + className + '(this)'); | |
// using window makes sanity checking easier: | |
if (typeof window[className] === 'function') // instantiate ... |
This file contains 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
# import a directory into a case-sensitive DMG | |
dir="/Users/afowler/src/stuff" | |
hdiutil create -srcfolder "${dir}" -autostretch -fs JHFS+X temp.dmg | |
hdiutil attach -mountpoint "${dir}-caseSensitive" temp.dmg | |
# JHFS+X == journalled, case-sensitive. | |
# DMG is initially the directory size, but can grow as needed |
This file contains 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
# ideal for textmate bundle, reloads the current tab's CSS | |
# JS via http://david.dojotoolkit.org/recss.html | |
refreshScript=`cat <<'JAVASCRIPT' | |
void(function(){var i,a,s;a=document.getElementsByTagName('link');for(i=0;i<a.length;i++){s=a[i];if(s.rel.toLowerCase().indexOf('stylesheet')>=0&&s.href) {var h=s.href.replace(/(&|\\\?)forceReload=\\\d+/,'');s.href=h+(h.indexOf('?')>=0?'&':'?')+'forceReload='+(new Date().valueOf())}}})(); | |
JAVASCRIPT | |
` | |
# Check if Safari is running, if so refresh CSS | |
ps -xc|grep -sq Safari && osascript <<APPLESCRIPT |
This file contains 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
window.setInterval(function() { | |
var position = element.css('background-position'), | |
positionX = Math.abs($.nounit(position.split(' ')[0])), | |
positionY = position.split(' ')[1], | |
frameWidth = 66, | |
numFrames = 8, | |
currentFrame = Math.floor(positionX / frameWidth), | |
nextFrame, nextFrameOffset; | |
nextFrame = (currentFrame == (numFrames - 1)) ? 0 : currentFrame + 1; |
OlderNewer