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
function iOSversion(){if(/iP(hone|od|ad)/.test(navigator.platform)){var t=navigator.appVersion.match(/OS (\d+)_(\d+)_?(\d+)?/);return[parseInt(t[1],10),parseInt(t[2],10),parseInt(t[3]||0,10)]}return"Not ios"}var version=iOSversion();9<=version[0]&&version[0]<10&&($('.flex-row.row > [class*="col-"]').css("flex-direction","initial"),$('div[data-section="header"]').attr("style","flex:1 0 auto;"),$("div.snippet-container.body-content").attr("style","flex:1 0 auto;")); |
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
#!/bin/bash | |
# | |
# File: fileuploader_mega.sh | |
# | |
# Author: Giovani Paseto | |
# | |
# Created on Apr 25, 2016, 08:20:00 | |
# | |
# Require: bzip | |
# https://megatools.megous.com/ |
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
#!/bin/bash | |
# | |
# File: fileuploader_mega.sh | |
# | |
# Author: Giovani Paseto | |
# | |
# Created on Apr 22, 2016, 08:20:00 | |
# | |
# Require: bzip | |
# https://megatools.megous.com/ |
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
#!/bin/bash | |
# | |
# File: uploader_email.sh | |
# | |
# Author: Giovani Paseto | |
# | |
# Created on Mar 23, 2015, 18:36:24 | |
# | |
# Require: bzip, mutt | |
# |
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
$fo = fopen("cep.html", "w+"); | |
$url = "http://wxww.buscacep.correios.com.br/sistemas/buscacep/resultadoBuscaEndereco.cfm"; | |
$cep = "03712000"; | |
set_time_limit(0); | |
$process = curl_init(str_replace(" ", "%20", $url)); | |
curl_setopt($process, CURLOPT_HTTPHEADER, array('application/x-www-form-urlencoded')); | |
curl_setopt($process, CURLOPT_POST, TRUE); | |
curl_setopt($process, CURLOPT_POSTFIELDS, "CEP=" . $cep . ""); | |
curl_setopt($process, CURLOPT_RETURNTRANSFER, TRUE); |
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
/*jQuery UI autocomplete for bootstrap*/ | |
.ui-autocomplete { | |
position: absolute; | |
top: 100%; | |
left: 0; | |
z-index: 1000; | |
float: left; | |
display: none; | |
min-width: 160px; |