Kind of continue from the other gist how to install LAMP on an Amazon AMI
##Install git
sudo yum install git-core
##Create ssh directory since it doesn't exists by default on the Amazon AMI
| <?php | |
| namespace App\Providers; | |
| use Illuminate\Support\ServiceProvider; | |
| class GoogleDriveServiceProvider extends ServiceProvider | |
| { | |
| /** | |
| * Bootstrap the application services. |
| /** | |
| * Add two string time values (HH:mm:ss) with javascript | |
| * | |
| * Usage: | |
| * > addTimes('04:20:10', '21:15:10'); | |
| * > "25:35:20" | |
| * > addTimes('04:35:10', '21:35:10'); | |
| * > "26:10:20" | |
| * > addTimes('30:59', '17:10'); | |
| * > "48:09:00" |
| echo "Hello World! | |
| " | |
| alias g="git" | |
| alias ga='git add ' | |
| alias gb='git branch ' | |
| alias gc='git commit' | |
| alias gd='git diff' | |
| alias gm="git merge" | |
| alias go="git checkout" |
| ' ------------------------------------------------------- | |
| ' | |
| ' Módulo Table Functions | |
| ' | |
| ' Possui diversas funções para trabalhar com tabelas | |
| ' pré-formatadas no Excel | |
| ' | |
| ' Versão: 0.3 | |
| ' | |
| ' Última atualização: 28/08/2017 |
Kind of continue from the other gist how to install LAMP on an Amazon AMI
##Install git
sudo yum install git-core
##Create ssh directory since it doesn't exists by default on the Amazon AMI
This gist assumes:
| @ECHO Off | |
| :: Desenvolvido por ExcelGuru | |
| :: http://excelguru.com.br | |
| :: | |
| :: Script desenvolvido apenas para instalar a extesão | |
| :: do Excel automaticamente e carregar junto com o Excel na abertura. | |
| :: | |
| :: Esta extensão é bem leve e necessária para utilizar a planilha de emissão | |
| :: de recibo de vale transporte. |
| <template> | |
| <div class="form-group" :class="errorClass"> | |
| <label :for="slug">{{ title }}</label> | |
| <textarea class="form-control" :id="slug" v-model="model" v-if="isTextarea" v-bind="attrs"></textarea> | |
| <input :type="type" class="form-control" :id="slug" v-model="model" v-if="isInput" v-bind="attrs"> | |
| <select class="form-control" :id="slug" v-model="model" v-if="isSelect" v-bind="attrs"> | |
| <option :value="option" v-for="option in options">{{ option }}</option> | |
| </select> | |
| <span class="help-block" v-show="errors" v-text="errorText"></span> | |
| </div> |
| <?php | |
| if ( ! function_exists('config_path')) | |
| { | |
| /** | |
| * Get the configuration path. | |
| * | |
| * @param string $path | |
| * @return string | |
| */ |