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
| ctools_include('content'); | |
| dsm(ctools_get_addressable_content('page_manager::node_view::::node_view_panelizer::1::1')); |
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 printexpr=system('open\ -a\ /Applications/TextWrangler.app\ '.v:fname_in)\ +\ v:shell_error |
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
| class vagrant-tweaks { | |
| group { "puppet": | |
| ensure => present, | |
| gid => 24, | |
| } | |
| user { "puppet": | |
| ensure => present, | |
| uid => 24, | |
| gid => 24, |
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
| 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 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
| vagrant ssh-config | sed -n '2,$p' | sed -e "s/^ /-o'/;s/$/'/" | tr "\n" " " |
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 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 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
| Validation Version: 1.1 | |
| Program: y-cruncher - Gamma to the eXtReMe!!! ( www.numberworld.org ) | |
| Copyright 2008-2011 Alexander J. Yee ( a-yee@u.northwestern.edu ) | |
| User: "Username.txt" Not found. | |
| Processor(s): Intel(R) Core(TM) i7-2600K CPU @ 3.40GHz |
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 up some variables relating to which path Vagrant will try to share | |
| # with the VM. | |
| require 'pathname' | |
| $docroot_name = "path/to/your/docroot" | |
| $docroot_path = "" | |
| # Test that the directory to be shared is in the right place and if it is, | |
| # calculate the fully dereferenced path (since NFS exports will fail if you | |
| # try to specify the path to a symlink.) | |
| if !File.exists?("../#{$docroot_name}") then |
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
| casper = require('casper').create({ | |
| verbose: true, | |
| logLevel: "debug" | |
| }) | |
| # Variables for the tests. | |
| url = "http://georgia.gov" | |
| breakpoints = [ | |
| [1280, 1024], | |
| [960, 640], |
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
| class drush::files { | |
| file { "/usr/share/pear/drush/drushrc.php": | |
| ensure => present, | |
| source => "puppet:///modules/drush/$environment/drushrc.php", | |
| require => Class["drush::packages"], | |
| } | |
| file { "/usr/share/pear/drush/aliases.drushrc.php": | |
| ensure => present, | |
| source => "puppet:///modules/drush/$environment/aliases.drushrc.php", |