Skip to content

Instantly share code, notes, and snippets.

View Zeindelf's full-sized avatar

Wellington Barreto Zeindelf

View GitHub Profile
[{"id":1,"name":"Área Externa","hasChildren":false,"url":"https://www.telhanorte.com.br/area-externa","children":[],"Title":"Área Externa","MetaTagDescription":"Área Externa"},{"id":20,"name":"Pisos e Revestimentos","hasChildren":false,"url":"https://www.telhanorte.com.br/pisos-e-revestimentos","children":[{"id":2001,"name":"Acabamentos para piso","hasChildren":false,"url":"https://www.telhanorte.com.br/pisos-e-revestimentos/acabamentos-para-piso","children":[{"id":2001006,"name":"Rodapés","hasChildren":false,"url":"https://www.telhanorte.com.br/pisos-e-revestimentos/acabamentos-para-piso/rodapes","children":[],"Title":"Rodapés | Telhanorte","MetaTagDescription":"Confira o preço dos rodapés de cerâmica, porcelanato e rodapé de PVC que a Telhanorte separou para o acabamento do seu piso. Veja nossas ofertas!"},{"id":2001007,"name":"Soleiras de porta","hasChildren":false,"url":"https://www.telhanorte.com.br/pisos-e-revestimentos/acabamentos-para-piso/soleiras-de-porta","children":[],"Title":"Soleiras de Porta |
{"list":[{"orderId":"859272355184-01","creationDate":"2018-09-04T22:39:36.0000000+00:00","clientName":"Wellington Barreto","items":[{"seller":"1","quantity":1,"description":"Kit Travel Feel Pack / Shine","ean":null,"refId":"09","id":"104","productId":"45","sellingPrice":0,"price":255665},{"seller":"1","quantity":1,"description":"Antena Curta","ean":null,"refId":"6561QQ","id":"67","productId":"7","sellingPrice":0,"price":1968},{"seller":"1","quantity":1,"description":"Cinzeiro portátil","ean":null,"refId":"8211F9","id":"68","productId":"8","sellingPrice":0,"price":2192},{"seller":"1","quantity":1,"description":"Organizadores de porta mala","ean":null,"refId":"9414EE","id":"69","productId":"9","sellingPrice":0,"price":8242},{"seller":"1","quantity":1,"description":"Suporte para tablet","ean":null,"refId":"9473Z1","id":"70","productId":"10","sellingPrice":0,"price":34900},{"seller":"1","quantity":1,"description":"Descansa pé","ean":null,"refId":"9646H1","id":"71","productId":"11","sellingPrice":0,"price":31697},
{"productId":"7157","productName":"JOGO LENÇOL PLUMAS","brand":"TROUSSEAU","linkText":"jogo-lencol-plumas-0101016772","productReference":"0101016772","categoryId":"22","productTitle":"JOGO LENÇOL PLUMAS","metaTagDescription":".","clusterHighlights":{"150":"Plumas"},"productClusters":{"140":"Todos os Produtos","150":"Plumas","1220":"Dream Touch"},"searchableClusters":{"140":"Todos os Produtos","150":"Plumas"},"categories":["/Cama/Coleção Irmãos Campana/","/Cama/","/Cama/Jogos de lençol/","/Sale/Jogos de lençol e duvets/","/Sale/"],"categoriesIds":["/2/22/","/2/","/2/3/","/12/116/","/12/"],"link":"https://www.trousseau.com.br/jogo-lencol-plumas-0101016772/p","caracteristicas":["Jogo é composto por:<BR>\n-01 Lençol de cima<BR>\n-01 Lençol de baixo sem elástico.<BR>\n-02 Fronhas. (para camas de solteiro 1 fronha)<BR>\n<BR>\nEssa linha de produtos é confeccionada nos seguintes tamanhos:<BR>\n<BR>\nSolteiro<BR>\nLençol de Cima - 1,80 x 2,65 m<BR>\nLençol de Baixo - 2,10 x 3,10 m<BR>\nFronha de - 0,50 x 0,70 m<BR>\n
Disable the WordPress Admin Bar for all Users and Visitors
Turn off the toolbar with one simple line.
view plain
/*
* Disable the WordPress Admin Bar for all Users and Visitors
*/
remove_action( 'init', '_wp_admin_bar_init' );
^ top
Enable the WordPress Admin Bar for admins only
<div class="x-main-content__ticket--form-field x-main-content__ticket--form-passenger">
<label for="passenger-ticket"><i class="fa fa-user" aria-hidden="true"></i> Passageiros</label>
<i class="fa fa-fw fa-minus-circle passenger-min" aria-hidden="true"></i>
<input type="text" id="passenger-ticket" class="num-passenger" value="1">
<i class="fa fa-fw fa-plus-circle passenger-max" aria-hidden="true"></i>
</div>
<?php
/**************************************
* THEME SUPORT
**************************************/
function add_suport_theme(){
add_theme_support( 'post-thumbnails' );
}
add_action('after_setup_theme','add_suport_theme');
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>author</key>
<string>Michael Obrocnik (mbixby)</string>
<key>comment</key>
<string>
See docs and updates at https://github.com/mbixby/github-color-scheme
</string>
{
"bootstrapped": true,
"in_process_packages":
[
],
"installed_packages":
[
"1337 Color Scheme",
"AdvancedNewFile",
"AlignTab",
{
"color_scheme": "Packages/Colorsublime - Themes/Facebook.tmTheme",
"ensure_newline_at_eof_on_save": true,
"font_face": "Fira Code",
"font_size": 13,
"highlight_line": true,
"highlight_modified_tabs": true,
"ignored_packages":
[
"Vintage"
@Zeindelf
Zeindelf / country_codes.sql
Created July 27, 2016 19:03
Tabela SQL de códigos ISO3166-1 (alpha-2, alpha-3 e numérico) de países em português (pt-BR) e inglês (en-US)
-- Table
CREATE TABLE IF NOT EXISTS `country_codes` (
`id` int(3) unsigned NOT NULL AUTO_INCREMENT,
`iso_3166-1_numeric` int(3),
`iso_3166-1_alpha-3` char(3),
`iso_3166-1_alpha-2` char(2),
`oficial_name_br` varchar(70),
`oficial_name_en` varchar(70),
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=250 ;