// jQuery
$(document).ready(function() {
// code
})
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
*, *:before, *:after { | |
-webkit-box-sizing: border-box; | |
-moz-box-sizing: border-box; | |
box-sizing: border-box; | |
} |
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
[ | |
{ "keys": ["super+alt+7"], "command": "encode_html_entities" }, | |
{ "keys": ["super+enter"], "command": "insert", "args": {"characters": "<br>"} }, | |
{ "keys": ["super+alt+l"], "command": "insert_snippet", "args": {"contents": "<li>${0:$SELECTION}</li>" } }, | |
{ "keys": ["super+alt+b"], "command": "insert_snippet", "args": {"contents": "<strong>${0:$SELECTION}</strong>" } }, | |
{ "keys": ["super+alt+i"], "command": "insert_snippet", "args": {"contents": "<em>${0:$SELECTION}</em>" } }, | |
{ "keys": ["super+alt+u"], "command": "insert_snippet", "args": {"contents": "<u>${0:$SELECTION}</u>" } }, | |
{ "keys": ["super+alt+down"], "command": "insert_snippet", "args": {"contents": "<sub>${0:$SELECTION}</sub>" } }, | |
{ "keys": ["super+alt+up"], "command": "insert_snippet", "args": {"contents": "<sup>${0:$SELECTION}</sup>" } }, |
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
/*================================================== | |
= Bootstrap 3 Media Queries = | |
==================================================*/ | |
/*========== Mobile First Method ==========*/ | |
/* Custom, iPhone Retina */ | |
@media only screen and (min-width : 320px) { | |
} |
#My Sublime Text 3 Packages
##Package Control Installation
Link to install: https://sublime.wbond.net/installation
##Packages
- AutoFileName
- AngularJS
- ColorPicker
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
UPDATE wpQd1_options SET option_value = replace(option_value, 'http://oldurl/', 'http://newurl/') WHERE option_name = 'home' OR option_name = 'siteurl'; | |
UPDATE wpQd1_posts SET guid = replace(guid, 'http://oldurl','http://newurl'); | |
UPDATE wpQd1_posts SET post_content = replace(post_content, 'http://oldurl', 'http://newurl'); | |
UPDATE wpQd1_postmeta SET meta_value = replace(meta_value,'http://oldurl','http://newurl'); |
##Procedimentos para clonar um repositório no servidor via SSH
Para todo novo repositório deve ser gerado uma chave pública SSH para que a conexão seja permitida.
##Criar chave pública SSH
ssh-keygen
##Copiar chave pública para o clipboard
git fetch --all
git reset --hard origin/master
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 | |
/** | |
* WordPress Query Comprehensive Reference | |
* Compiled by luetkemj - luetkemj.com | |
* | |
* CODEX: http://codex.wordpress.org/Class_Reference/WP_Query#Parameters | |
* Source: https://core.trac.wordpress.org/browser/tags/3.9/src/wp-includes/query.php | |
*/ | |
$args = array( |
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
array( | |
'name' => 'Estado', | |
'desc' => '', | |
'id' => $prefix . 'oc_estado', | |
'type' => 'select', | |
'options' => array( | |
array( 'name' => 'Selecione um Estado', 'value' => '', ), | |
array( 'name' => 'Acre', 'value' => 'Acre', ), | |
array( 'name' => 'Alagoas', 'value' => 'Alagoas', ), | |
array( 'name' => 'Amapá', 'value' => 'Amapá', ), |
OlderNewer