This file contains hidden or 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
eslint-disable | |
<template> | |
<q-layout> | |
<q-search icon="search" id="busca"></q-search> | |
</q-layout> | |
</template> | |
<script> | |
import db from './firebaseConfig' | |
let coordsList = db.ref('tecnico') |
This file contains hidden or 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
// Use Gists to store code you would like to remember later on | |
console.log(window); // log the "window" object to the console |
This file contains hidden or 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
# mac virgem 10GB ((9.0Gi with df -h)) | |
# apenas para forçar a senha | |
sudo -v | |
# brew (install xcode tools and git) | |
ruby -e "$(curl -fsSL https://raw.github.com/Homebrew/homebrew/go/install)" | |
brew doctor | |
sudo -v |
This file contains hidden or 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
<?php | |
extract($_POST); | |
var_dump($_POST); | |
exit; | |
$subject = "Contato"; | |
$html = " | |
<html> | |
<body> | |
<table width=400 border=0> |
This file contains hidden or 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
describe Animal do | |
before(:each) do | |
Animal.new | |
end | |
it "ao criar um Animal, o contador dos filhoes deve permanecer 0" do | |
lambda { Animal.new }.should_not change(Gato, :total) | |
end |