Skip to content

Instantly share code, notes, and snippets.

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')
@neves
neves / 0_reuse_code.js
Created April 26, 2016 04:16
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console
# 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
<?php
extract($_POST);
var_dump($_POST);
exit;
$subject = "Contato";
$html = "
<html>
<body>
<table width=400 border=0>
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