This file contains 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
<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); |
This file contains 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 | |
$meses = array( | |
1 => 'Janeiro', | |
'Fevereiro', | |
'Março', | |
'Abril', | |
'Maio', | |
'Junho', | |
'Julho', |
This file contains 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 | |
// 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; | |
} |
This file contains 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
¯\(ºдಠ)/¯ | |
٩(ಥ_ಥ)۶ | |
ఠ_ఠ | |
ಠ¿ಠi | |
ಠ‿ಠ | |
ಠ▃ಠ | |
ಠ益ಠ | |
ಠ益ಠ | |
ಠ︵ಠ凸 | |
ಠ_ಠ |
This file contains 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
### | |
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' |
This file contains 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
bower install jquery | |
bower install jQuery-Mask-Plugin |
This file contains 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
http://graphicriver.net/item/app-icon-generator-vol1/993306?WT.ac=category_thumb&WT.seg_1=category_thumb&WT.z_author=AppVolt | |
http://graphicriver.net/item/app-icon-creator/1605190?WT.ac=category_thumb&WT.seg_1=category_thumb&WT.z_author=MikeKondrat | |
http://graphicriver.net/item/retina-app-icons-creator/2478159?WT.ac=category_thumb&WT.seg_1=category_thumb&WT.z_author=frameart | |
http://graphicriver.net/item/3d-ios-icon-generator/5033038?WT.ac=category_thumb&WT.seg_1=category_thumb&WT.z_author=DoocaDesign | |
http://graphicriver.net/item/ios7-retina-icon-creator-tintpack/4978103?WT.ac=category_thumb&WT.seg_1=category_thumb&WT.z_author=topvase |
This file contains 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
//noinspection CssUnknownProperty | |
.gradient(@color: #F5F5F5, @start: #EEE, @stop: #FFF) { | |
background: @color; | |
background: -webkit-gradient(linear, left bottom, left top, color-stop(0, @start), color-stop(1, @stop)); | |
background: -ms-linear-gradient(bottom, @start, @stop); | |
background: -moz-linear-gradient(center bottom, @start 0%, @stop 100%); | |
background: -o-linear-gradient(@stop, @start); | |
filter: e(%("progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=0)",@stop,@start)); | |
} |
This file contains 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
Controller = (scope, location) -> | |
dependencias = [ | |
'scope' | |
'location' | |
Controller | |
] | |
App.controller dependencias |
This file contains 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 //app/libraries/MultiUserProvider.php | |
use Illuminate\Auth\UserProviderInterface, | |
Illuminate\Auth\UserInterface, | |
Illuminate\Auth\GenericUser; | |
class MultiUserProvider implements UserProviderInterface { | |
protected $providers; |
OlderNewer