#Heading 1 ##Heading 2 ###Heading 3 ####Heading 4 #####Heading 5 ######Heading 6
Paragraph
| git diff -p \ | |
| | grep -E '^(diff|old mode|new mode)' \ | |
| | sed -e 's/^old/NEW/;s/^new/old/;s/^NEW/new/' \ | |
| | git apply |
#Heading 1 ##Heading 2 ###Heading 3 ####Heading 4 #####Heading 5 ######Heading 6
Paragraph
| function Node(value){ | |
| this.value = value; | |
| this.left = null; | |
| this.right = null; | |
| } | |
| function BinarySearchTree() { | |
| this.root = null; | |
| } | |
| BinarySearchTree.prototype.push = function (val) { |
| axios({ | |
| url: 'http://localhost:5000/static/example.pdf', | |
| method: 'GET', | |
| responseType: 'blob', // important | |
| }).then((response) => { | |
| const url = window.URL.createObjectURL(new Blob([response.data])); | |
| const link = document.createElement('a'); | |
| link.href = url; | |
| link.setAttribute('download', 'file.pdf'); | |
| document.body.appendChild(link); |
| // The Vue build version to load with the `import` command | |
| // (runtime-only or standalone) has been set in webpack.base.conf with an alias. | |
| import Vue from 'vue' | |
| import App from './App' | |
| import VeeValidator, { Validator } from 'vee-validate' | |
| import CpfValidator from './components/validators/cpf.validator' | |
| import Dictionary from './components/validators/dictionary' | |
| import Produto from './components/produtos.vue' | |
| Validator.extend('cpf', CpfValidator) |
| const states = [ | |
| { | |
| value: 'ac', | |
| label: 'Acre', | |
| key: 'ac', | |
| }, { | |
| value: 'al', | |
| label: 'Alagoas', | |
| key: 'al', | |
| }, { |
Quick guide on how to setup git signing. Information is aggregated from following sources:
| <?php | |
| namespace App\Models; | |
| use Illuminate\Database\Eloquent\Model; | |
| use Illuminate\Support\Str; | |
| class ModelUuid extends Model | |
| { |