Skip to content

Instantly share code, notes, and snippets.

View fdaciuk's full-sized avatar
🔥

Fernando Daciuk fdaciuk

🔥
View GitHub Profile
@fdaciuk
fdaciuk / konami_code.js
Created March 8, 2013 17:03
Brincando com Konami Code.
var $konami = $('#konami'),
$all = $('#all'),
$msg = $('#msg'),
keyCode,
konami_code = [38, 38, 40, 40, 37, 39, 37, 39, 66, 65],
konami_code_count = konami_code.length - 1,
cont = 0;
$(document).on('keydown', function(e) {
keyCode = e.keyCode || e.which;
@fdaciuk
fdaciuk / search_functions.php
Created March 13, 2013 02:29
Incluir outros campos além do padrão na busca do WordPress Referência: http://codex.wordpress.org/Custom_Queries
<?php
function custom_search_where($where) {
// put the custom fields into an array
$customs = array('custom_field1', 'custom_field2', 'custom_field3');
foreach($customs as $custom) {
$query .= " OR (";
$query .= "(m.meta_key = '$custom')";
$query .= " AND (m.meta_value LIKE '{$n}{$term}{$n}')";
$query .= ")";
@fdaciuk
fdaciuk / id_facebook.js
Created March 22, 2013 19:29
Pegar ID de usuário ou página do Facebook com jQuery
/**
* @param username - (required) O nome de usuário ou da página que você quer que retorne os dados
* @param data - (return) Retorno da função com os dados do usuário ou página do Facebook
*
*/
$.ajax({
url : 'http://graph.facebook.com/'+ username +'?callback=?',
dataType : 'jsonp',
success : function( data ) {
@fdaciuk
fdaciuk / .jshintrc
Last active December 15, 2015 13:19
Gruntfile.js padrão para projetos em WP.
{
"curly": true,
"eqeqeq": true,
"immed": true,
"latedef": true,
"newcap": true,
"noarg": true,
"sub": true,
"undef": true,
"boss": true,
@fdaciuk
fdaciuk / 404.php
Last active December 15, 2015 15:19
Criando páginas institucionais no WordPress em precisar criar a página pelo painel
<?php
$pages = array( 'sobre', 'contato' );
// Verificar se a URL acessada consta no array.
if( in_array( get_query_var( 'pagename' ), $pages ) ) {
header( 'HTTP/1.1 200 OK' );
get_template_part( 'page-' . get_query_var( 'pagename' ) );
die();
} else {
@fdaciuk
fdaciuk / just_number.js
Last active December 16, 2015 22:09
Somente números com jQuery
$(function() {
// Somente números
$( 'input.numero' ).on( 'keydown', function(e) {
var keyCode = e.keyCode || e.which,
pattern = /\d/,
// Permite somente Backspace, Delete e as setas direita e esquerda, números do teclado numérico - 96 a 105 - (além dos números)
keys = [ 46, 8, 9, 37, 39, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105 ];
if( ! pattern.test( String.fromCharCode( keyCode ) ) && $.inArray( keyCode, keys ) === -1 ) {
@fdaciuk
fdaciuk / gmaps_v3.js
Created May 3, 2013 18:26
Google Maps v3 - Javascript (jQuery) Busca a latitude e longitude a partir do endereço passado em "data-address" na div #map-canvas.
jQuery(function($) {
var $map = $( '#map-canvas' ),
address = $map.data( 'address' ),
lat, lng,
map_options = {},
map, marker;
$.ajax({
url : 'http://maps.googleapis.com/maps/api/geocode/json',
dataType : 'json',
@fdaciuk
fdaciuk / functions.php
Created May 4, 2013 14:33
Adicionar jQuery UI do WordPress para usar no tema.
<?php
function enqueue_scripts() {
wp_enqueue_script( 'jquery-ui-core' );
}
add_action( 'wp_enqueue_scripts', 'enqueue_scripts' );
@fdaciuk
fdaciuk / functions.php
Created May 4, 2013 22:46
Funções para minimizar o caminho das pedras no WP :P (Na real, só pra não ficar chamando as funções gigantes do WP pra pegar o caminho dos arquivos)
<?php
/*
Use para chamar qualquer arquivo dentro do tema.
Ex: echo theme_url( 'assets/images/logo.png' );
*/
function theme_url( $path = null ) {
return get_template_directory_uri() . '/' . $path;
}
@fdaciuk
fdaciuk / app.js
Created May 5, 2013 01:25
Teste Rotas com API History HTML5 no Angular
var app = angular.module('myApp', []);
app.config(['$locationProvider', '$routeProvider', function( $locationProvider, $routeProvider ) {
$locationProvider.html5Mode( true );
$routeProvider
.when('/', { controller : 'controller', templateUrl : 'views/home.html' })
.when('/empresa', { controller : 'controller', templateUrl : 'views/register-company.html' })
.when('/profissional', { controller : 'controller', templateUrl : 'views/register-professional.html' })
.otherwise({ redirectTo : 'views/404.html' });