Skip to content

Instantly share code, notes, and snippets.

View thallisphp's full-sized avatar
⚒️
Developing with Laravel for Doc88

Thallis Ferreira Soares Casemiro thallisphp

⚒️
Developing with Laravel for Doc88
  • Doc88
  • São Paulo
View GitHub Profile
@thallisphp
thallisphp / mascara.coffee
Created July 8, 2013 20:16
Máscara de telefones com opção de dígito adicional
###
Plugin : https://github.com/igorescobar/jQuery-Mask-Plugin/
bower install jQuery-Mask-Plugin
components/jQuery-Mask-Plugin/jquery.mask.min.js
###
campos = jQuery '.mascara_telefone, #telefone, #celular'
¯\(ºдಠ)/¯
٩(ಥ_ಥ)۶
ఠ_ఠ
ಠ¿ಠi
ಠ‿ಠ
ಠ▃ಠ
ಠ益ಠ
ಠ益ಠ
ಠ︵ಠ凸
ಠ_ಠ
@thallisphp
thallisphp / gist.php
Created June 28, 2013 20:36
Redireconamento VilaNobre
<?php
// Abra o arquivo verifica_endereco.php e adicione o código abaixo após o <?php
switch($_SERVER['HTTP_HOST']){
case 'www.vilanobredecor.com.br':
case 'vilanobredecor.com.br':
header('Location: http://vilanobreiluminacao.com.br/');
exit;
}
@thallisphp
thallisphp / Meses e Dias - Array.php
Last active October 15, 2024 14:01
Array com nomes dos meses e dias da semana em português do Brasil
<?php
$meses = array(
1 => 'Janeiro',
'Fevereiro',
'Março',
'Abril',
'Maio',
'Junho',
'Julho',
@thallisphp
thallisphp / GA.html
Created May 23, 2012 13:16
Código do Google Analytics
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', '#############']); // ID do site
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);