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
svg { | |
background: #012; | |
} | |
path { | |
stroke: #fff; | |
stroke-opacity: .5; | |
} |
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
body { | |
margin: 20px; | |
color: #2B2B2B; | |
background-color: #D47D7D; | |
} | |
div { | |
margin: 10px; |
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
# ~/Gemfile | |
source "http://rubygems.org" | |
group :development do | |
gem 'compass' # Depends on Sass, will be installed automatically. | |
gem 'compass-960-plugin' # 960.gs | |
gem 'compass-validator' # So you can `compass validate`. | |
gem 'oily_png' # Faster Compass sprite generation. | |
gem 'css_parser' # Helps `compass stats` output statistics. |
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
| => guard | |
ERROR: Invalid Guardfile, original error is: | |
no block given | |
Guard is now watching at '/home/elijah/Desktop/krees' | |
Guard::Compass is watching at your stylesheets. | |
> > > |
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
# Put these in your ~/.bash_aliases file then run "source ~/.bash_aliases" from your command line. | |
alias dp="drush pub7" | |
alias dp1="drush @pub7.qa1.dev" | |
alias dp1s="drush @pub7.qa1.stage" | |
alias dp1p="drush @pub7.qa1.prod" | |
alias dp2="drush @pub7.qa2.dev" | |
alias dp2s="drush @pub7.qa2.stage" | |
alias dp2p="drush @pub7.qa2.prod" | |
alias dp3="drush @pub7.qa3.dev" | |
alias dp3s="drush @pub7.qa3.stage" |
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
tions[] = l(t('Delete'), 'node/' . $node->nid . '/revisions/' . $vid . '/delete'); | |
} | |
foreach ($state_events as $event_machine_name => $event) { | |
if (state_flow_access($state_node, $event_machine_name)) { | |
$state_actions[] = l($event->get_option('label'), 'node/' . $node->nid . '/revisions/' . $vid . '/workflow/' . $event_machine_name) . ' '; | |
} | |
} | |
$state_actions_str = implode(' | ', $state_actions); | |
$item = array( | |
l($vid, $path_view), |
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/sh | |
HEART_FULL=♥ | |
HEART_EMPTY=♡ | |
[ -z "$NUM_HEARTS" ] && | |
NUM_HEARTS=5 | |
cutinate() | |
{ | |
perc=$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
open new hotfix branch off of tag | |
merge branch into master | |
tag the branch SPECIAL | |
* cd into root of clone | |
* ./builds/scripts/pub-tag.sh 7.23.1 (example, don't use v prefix, script does it for us) | |
* ./builds/scripts/pub-tag2.sh | |
* git checkout master --force | |
* ./builds/scripts/pub-tag3.sh | |
NOTE: If pub-tag2.sh and pub-tag3.sh don't work or you get confused that is okay. pub-tag.sh is the one that really does the tag but contact Sam Boyer and let him know about it. If all you can ever do is the first script, that is fine. |
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
<div class="crosshair"></div> |
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
sudo -E -u www-data drush @pub7.local test-run ActionsConfigurationTestCase --uri=loc.example.com |
OlderNewer