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
Validation Version: 1.1 | |
Program: y-cruncher - Gamma to the eXtReMe!!! ( www.numberworld.org ) | |
Copyright 2008-2011 Alexander J. Yee ( [email protected] ) | |
User: "Username.txt" Not found. | |
Processor(s): Intel(R) Core(TM) i7-2600K CPU @ 3.40GHz |
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
include pear | |
# If no version number is supplied, the latest stable release will be | |
# installed. In this case, upgrade PEAR to 1.9.2+ so it can use | |
# pear.drush.org without complaint. | |
pear::package { "PEAR": } | |
pear::package { "Console_Table": } | |
# Version numbers are supported. | |
pear::package { "drush": | |
version => "4.5.0", | |
repository => "pear.drush.org", |
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
vagrant ssh-config | sed -n '2,$p' | sed -e "s/^ /-o'/;s/$/'/" | tr "\n" " " |
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
mongod run --config /usr/local/Cellar/mongodb/2.0.1-x86_64/mongod.conf --fork --logpath /usr/local/var/log/mongodb/mongod.log |
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
class vagrant-tweaks { | |
group { "puppet": | |
ensure => present, | |
gid => 24, | |
} | |
user { "puppet": | |
ensure => present, | |
uid => 24, | |
gid => 24, |
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 printexpr=system('open\ -a\ /Applications/TextWrangler.app\ '.v:fname_in)\ +\ v:shell_error |
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
ctools_include('content'); | |
dsm(ctools_get_addressable_content('page_manager::node_view::::node_view_panelizer::1::1')); |
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 jerk = require('jerk'), | |
channel = ('SWEETDUDEBOT_CHANNEL' in process.env)? process.env.SWEETDUDEBOT_CHANNEL : '#yourchannel', | |
options = { | |
server: ('SWEETDUDEBOT_SERVER' in process.env)? process.env.SWEETDUDEBOT_SERVER : 'chat.freenode.net', | |
nick: ('SWEETDUDEBOT_NICK' in process.env)? process.env.SWEETDUDEBOT_NICK : 'sweetdudebot', | |
port: ('SWEETDUDEBOT_PORT' in process.env)? process.env.SWEETDUDEBOT_PORT : '6667', | |
flood_protection: true, | |
channels: [channel] | |
}; |
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
## | |
# Host Database | |
# | |
# localhost is used to configure the loopback interface | |
# when the system is booting. Do not change this entry. | |
## | |
127.0.0.1 localhost | |
255.255.255.255 broadcasthost | |
::1 localhost | |
fe80::1%lo0 localhost |
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
#!/bin/bash | |
# Save this file as 'convert' and point Drupal at it at /admin/config/media/image-toolkit | |
[[ $1 == 'version' ]] && { | |
gm $1 | |
} || { | |
gm convert $@ | |
} |