Objective:
Date/Time:
:::::: {.columns .ragged} ::: column
Invited
- Beau
Objective:
Date/Time:
:::::: {.columns .ragged} ::: column
Invited
<?php | |
return PhpCsFixer\Config::create() | |
->setRules(array( | |
'@PSR2' => true, | |
'@Symfony' =>true, | |
'array_indentation' => true, | |
'array_syntax' => array('syntax' => 'short'), | |
'combine_consecutive_unsets' => true, | |
'method_separation' => true, | |
'no_multiline_whitespace_before_semicolons' => true, |
#!/bin/bash | |
#set -x | |
git checkout master | |
git checkout -b issue_templates | |
git push --set-upstream origin issue_templates | |
curl https://gist.githubusercontent.com/beauraines/f68e568cae2139b92aa9dc622a8e753d/raw/21d11de58b155e42bde2685aa2e992f765693975/template.diff | git apply | |
git add .github | |
git commit -m "Adds two new issue templates a bug and an agile issue template." | |
git push |
function sendAddProductionPlan() { | |
// Set required arguments | |
scope.activatedProductionPlan.bomID = null; | |
scope.activatedProductionPlan.type = 'USER-CREATED'; | |
// remap values | |
scope.activatedProductionPlan.dueDate = scope.activatedProductionPlan.due_date; | |
if ( scope.firmPlanOnly) { | |
scope.activatedProductionPlan.firmFlag = 1; |
magnum | |
KITT | |
baracus | |
klinger | |
hal | |
jeannie | |
Maverick | |
Goose | |
Miyagi |
#!/usr/bin/env bash | |
set -x | |
### Based on https://gist.github.com/BenSampo/aa5f72584df79f679a7e603ace517c14 | |
# Change to the project directory | |
#cd /home/forge/domain.com | |
# Turn on maintenance mode | |
#php artisan down |