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
==> Downloading http://downloads.sourceforge.net/sourceforge/streamripper/streamripper-1.64.6.tar.gz | |
File already downloaded in /Users/whitley/Library/Caches/Homebrew | |
/usr/bin/tar xf /Users/whitley/Library/Caches/Homebrew/streamripper-1.64.6.tar.gz | |
==> ./configure --prefix=/opt/hb/Cellar/streamripper/1.64.6 --disable-debug --disable-dependency-tracking | |
./configure --prefix=/opt/hb/Cellar/streamripper/1.64.6 --disable-debug --disable-dependency-tracking | |
checking for a BSD-compatible install... /opt/hb/bin/ginstall -c | |
checking whether build environment is sane... yes | |
checking for a thread-safe mkdir -p... /opt/hb/bin/gmkdir -p | |
checking for gawk... no | |
checking for mawk... no |
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
//Load the requirejs optimizer | |
var requirejs = require('/Users/whitley/src/requirejs-rails/bin/r.js'), | |
//Set up basic config, include config that is | |
//common to all the optimize() calls. | |
basConfig = { | |
"baseUrl": "/Users/whitley/tmp/wombat/tmp/assets", | |
"optimize": "none", | |
"paths": { | |
"d3": "d3.v2" | |
} |
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
** Invoke default (first_time) | |
** Invoke generate (first_time) | |
** Execute generate | |
unknown file type: config.ru | |
unknown file type: Gemfile | |
unknown file type: Gemfile.lock | |
unknown file type: rake.log | |
** Invoke extra_wirings (first_time) | |
** Execute extra_wirings | |
** Invoke site (first_time) |
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
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<dict> | |
<key>Ansi 0 Color</key> | |
<dict> | |
<key>Blue Component</key> | |
<real>0.31090480089187622</real> | |
<key>Green Component</key> | |
<real>0.31097450852394104</real> |
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
include_recipe "git" | |
%w{ vim zsh }.each { |p| package p } | |
bash "Set vagrant's shell to zsh" do | |
code <<-EOT | |
chsh -s /bin/zsh vagrant | |
EOT | |
not_if 'test "/bin/zsh" = "$(grep vagrant /etc/passwd | cut -d: -f7)"' | |
end |
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 zsh | |
# This is a utility wrapper around git update-index used to mark, unmark, and | |
# list files that are marked with the assume-unchanged bit. See `git help | |
# update-index` for details. | |
# | |
# Usage: | |
# git embargo <FILE> # Mark a file as embargoed -- changes won't appear in status | |
# git embargo -r <FILE> # Remove the embargo | |
# git embargo -l|--list # List all embargoed files |
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
set deviceID to (do shell script "diskutil list | awk '/YourBootcampPartition/ {print $NF}'") | |
do shell script "sudo bless -device /dev/" & deviceID & " -legacy -setBoot -nextonly" | |
tell application "Finder" to restart |
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
Host vagrant | |
User vagrant | |
HostName 127.0.0.1 | |
Port 2222 | |
Compression yes | |
PubkeyAuthentication yes | |
LogLevel FATAL | |
StrictHostKeyChecking no | |
UserKnownHostsFile /dev/null | |
IdentitiesOnly yes |
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
#!/bin/sh | |
git -c color.status=always status -s | sed "1s/^/$*\\ | |
/" |
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
import Foundation | |
extension ArraySlice { | |
// Overwrites the ArraySlice region with the passed-in array of bytes | |
mutating func setBytes(_ from: [UInt8]) { | |
var fromIter = from.makeIterator() | |
self.withUnsafeMutableBytes { bytes in | |
for i in stride(from: bytes.startIndex, to: bytes.endIndex - 1, by: 1) { | |
if let fromByte = fromIter.next() { | |
bytes[i] = fromByte |