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 | |
set_time_limit(0); | |
include('Crypt/RSA.php'); | |
$password = '123456'; | |
/** | |
/$$$$$$$ /$$ /$$ /$$$$$$$ /$$ /$$ /$$$$$$$$ /$$ /$$ | |
| $$__ $$| $$ | $$| $$__ $$ | $$ /$$/| $$_____/| $$ /$$/ | |
| $$ \ $$| $$ | $$| $$ \ $$ | $$ /$$/ | $$ \ $$ /$$/ | |
| $$$$$$$/| $$ | $$| $$$$$$$ | $$$$$/ | $$$$$ \ $$$$/ |
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
<!doctype html> | |
<html lang="en"> | |
<head> | |
<!-- Required meta tags --> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> | |
<!-- Bootstrap CSS --> | |
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous"> |
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
inquire () { | |
echo -n "$1 [y/n]? " | |
read answer | |
finish="-1" | |
while [ "$finish" = '-1' ] | |
do | |
finish="1" | |
if [ "$answer" = '' ]; | |
then | |
answer="" |
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
Show hidden characters
{ | |
// A File Icon Preferences – User | |
// ================================================================ | |
// !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | |
// ! PLEASE RESTART SUBLIME TEXT FOR THESE CHANGES TO TAKE EFFECT ! | |
// !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | |
"size": 10, | |
} |
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="UTF-8"> | |
<title>{% block title %}Marketplace - 4Yousee{% endblock %}</title> | |
<link rel="shortcut icon" type="image/png" href="{{ asset('assets/favicon.png') }}"/> | |
<link rel="stylesheet" href="{{ asset('build/global.css') }}"> | |
{% block stylesheets %}{% endblock %} | |
</head> | |
<body> |
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
server { | |
listen 80 default; | |
client_max_body_size 108M; | |
access_log /var/log/nginx/application.access.log; | |
root /application/public; | |
index index.php; |
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
server { | |
listen 80 default; | |
client_max_body_size 108M; | |
#server_name apps.4yousee.com.br; | |
root /application/public; | |
#index index.php; |
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 | |
error_reporting(E_ALL); | |
ini_set('display_errors', 1); | |
$json = file_get_contents('http://54.213.105.231:8081/pontual/services/TCadastros/GetListaClientes/'); | |
echo "\n<pre>"; | |
print_r(json_decode($json)); | |
echo "\n</pre>"; | |
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
git clone https://github.com/samhk222/Docker-LAMP-Boilerplate |
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
composer require vlucas/phpdotenv |
OlderNewer