function base64_url_decode($input)
{
return base64_decode(strtr($input, '-_,', '+/='));
}
function base64_url_encode($input)
{
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
/** | |
* Returns the HexString of a String | |
* eg.: hashDigest("hello") == "5d41402abc4b2a76b9719d911017c592" | |
* | |
* @param input input string | |
* @param algorithm algorithm to be used to compute the hash ( eg.: "MD5", "SHA1", "SHA-256" ) | |
* @return the hash of the input string | |
*/ | |
public static String hashDigest(String input, String algorithm) | |
{ |
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 | |
// tells the CDN that the content 'Vary' depending on 'Origin' request header | |
header('Vary: Origin', true); | |
// allowed origins | |
$allowed_http_origins = array( | |
'http://example.com', | |
'http://www.example.com', | |
'http://127.0.0.1', |
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 | |
function validate_cnpj($cnpj) { | |
$cnpj = preg_replace('/[^0-9]/', '', (string) $cnpj); | |
$cnpj = str_pad($cnpj, 14, '0', STR_PAD_LEFT); | |
// Validar cnpj | |
if ($cnpj === '00000000000000') { | |
return false; | |
} |
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 | |
function validate_cpf($cpf) { | |
$cpf = preg_replace('/[^0-9]/', '', (string) $cpf); | |
$cpf = str_pad($cpf, 11, '0', STR_PAD_LEFT); | |
// CPF Invalido | |
if ($cpf === '00000000000') { | |
return false; | |
} |
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
# not tested | |
openssl pkcs12 -in aps_cert.p12 -out aps_cert.pem -nodes -clcerts -passin pass:**** -passout pass:**** | |
# "semi" - tested :] | |
openssl pkcs12 -in aps_cert.p12 -out aps_cert.pem -nodes -clcerts | |
# worked | |
openssl pkcs12 -in aps_cert.p12 -out aps_cert.pem |
Add this lines after the initialization of the $app
variable on public/index.php
file.
$SCRIPT_NAME = str_replace(['\\', '/index.php'], ['/', ''], array_get($_SERVER, 'SCRIPT_NAME', array_get($_SERVER, 'PHP_SELF', '')));
$_SERVER['REQUEST_URI'] = preg_replace('|' . $SCRIPT_NAME . '|', '', $_SERVER['REQUEST_URI'], 1);
That's it. 😎
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
<VirtualHost *:80> | |
... | |
AddDefaultCharset utf-8 | |
JkOptions +ForwardURIProxy | |
... | |
</VirtualHost> | |
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
#!/bin/bash | |
#SOURCE: https://techoverflow.net/2013/10/22/docker-remove-all-images-and-containers/ | |
# Delete all containers | |
docker rm $(docker ps -a -q) | |
# Delete all images | |
docker rmi $(docker images -q) |
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
# Source | |
# https://gist.github.com/scottnonnenberg/fefa3f65fdb3715d25882f3023b31c29 | |
# About | |
# Better Git configuration | |
# https://blog.scottnonnenberg.com/better-git-configuration/ | |
# | |
[user] | |
email = [email protected] | |
name = Scott Nonnenberg |
OlderNewer