See how a minor change to your commit message style can make you a better programmer.
Format: <type>(<scope>): <subject>
<scope> is optional
| name: Tests (PHP) | |
| on: [push] | |
| jobs: | |
| tests: | |
| name: Run tests | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v1 |
| setTimeout( function() { | |
| console.log( 'Executa uma vez após 1 segundo.' ); | |
| }, 1000 ); | |
| setInterval( function() { | |
| console.log( 'Executa infinitamente, 1 vez por segundo.' ); | |
| }, 1000 ); | |
| /* |
| siglas: [ | |
| {value: "AC",text: "Acre" }, | |
| {value: "AL",text: "Alagoas" }, | |
| {value: "AP",text: "Amapá" }, | |
| {value: "AM",text: "Amazonas" }, | |
| {value: "BA",text: "Bahia" }, | |
| {value: "CE",text: "Ceará" }, | |
| {value: "DF",text: "Distrito Federal" }, | |
| {value: "ES",text: "Espírito Santo" }, | |
| {value: "GO",text: "Goiás" }, |
| var nascimento = new Date('1992-09-30') | |
| var hoje2 = new Date(); | |
| let ano = hoje.getFullYear(); | |
| let mes = hoje.getMonth(); | |
| let dia = hoje.getDate(); | |
| /** | |
| * @license Copyright (c) 2014-2020, CKSource - Frederico Knabben. All rights reserved. | |
| * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license | |
| */ | |
| import DecoupledDocumentEditor from '@ckeditor/ckeditor5-editor-decoupled/src/decouplededitor.js'; | |
| import Alignment from '@ckeditor/ckeditor5-alignment/src/alignment.js'; | |
| import Autoformat from '@ckeditor/ckeditor5-autoformat/src/autoformat.js'; | |
| import BlockQuote from '@ckeditor/ckeditor5-block-quote/src/blockquote.js'; | |
| import Bold from '@ckeditor/ckeditor5-basic-styles/src/bold.js'; | |
| import CKFinder from '@ckeditor/ckeditor5-ckfinder/src/ckfinder.js'; |
| let data = new Date() | |
| data.setMonth(data.getMonth() - 1) |
| /* | |
| items: sua lista | |
| search: seu campo de pesquisar | |
| */ | |
| computed: { | |
| filterItems () { | |
| return this.items.filter(item => { | |
| return ( | |
| item.title.toLowerCase().indexOf(this.search.trim().toLowerCase()) > |