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
require 'rake/testtask' | |
require 'bundler/gem_tasks' | |
namespace 'test' do | |
test_files = FileList['spec/**/*_spec.rb'] | |
integration_test_files = FileList['spec/**/*_integration_spec.rb'] | |
unit_test_files = test_files - integration_test_files | |
desc 'Run unit tests' | |
Rake::TestTask.new('unit') do |t| |
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
# Maintainer: Tom Vincent <http://tlvince.com/contact/> | |
pkgname=irssi-script-advanced-windowlist | |
_name=adv_windowlist.pl | |
pkgver=0.7c | |
pkgrel=2 | |
pkgdesc="Adds a permanent advanced window list to irssi status bar" | |
arch=(any) | |
url="http://anti.teamidiot.de/static/nei/*/Code/Irssi/" | |
source="http://anti.teamidiot.de/static/nei/*/Code/Irssi/$_name" | |
license=('GPL') |
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
<?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>Label</key> | |
<string>cx.mopidy</string> | |
<key>ProgramArguments</key> | |
<array> | |
<string>/usr/local/bin/mopidy</string> | |
</array> |
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
# Set bluetooth power up | |
ACTION=="add", KERNEL=="hci0", RUN+="/usr/bin/hciconfig hci0 up" |
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
Alfred - http://www.alfredapp.com/ | |
Spectacle - http://spectacleapp.com/ | |
Spotify - http://www.spotify.com/ | |
Glimmerblocker - http://glimmerblocker.org/ | |
Vagrant - http://downloads.vagrantup.com/ |
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
dns-sd -B _ssh._tcp |
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
mkdir $HOME/.local/lib/ry/rubies/1.9.3-p327-perf | |
cd /tmp | |
curl -O http://pyyaml.org/download/libyaml/yaml-0.1.4.tar.gz | |
tar -xf yaml-0.1.4.tar.gz | |
cd yaml-0.1.4 | |
./configure --prefix="$HOME/.local/lib/ry/rubies/1.9.3-p327-perf" | |
make | |
make install |
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
set -U fish_color_user magenta | |
set -U fish_color_host yellow | |
function fish_prompt --description 'Write out the prompt' | |
set -l last_status $status | |
# User | |
set_color $fish_color_user | |
printf (whoami) | |
set_color normal |
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
# Method for finding a file within a project | |
_file-within-project() { | |
local file=$1 | |
local check_dir=$PWD | |
while [ $check_dir != "/" ]; do | |
if [ -f "$check_dir/$file" ]; then | |
echo "$check_dir/$file" | |
return true | |
fi | |
check_dir="$(dirname $check_dir)" |
NewerOlder