- Docker installed and running
- Terminal
- Unused port 3040 (can change on install command)
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 | |
/** | |
* OFFICIAL DOCUMENTATION | |
* https://github.com/php-slack/slack#sending-messages | |
* | |
* CRIAR WEBHOOK | |
* https://my.slack.com/services/new/incoming-webhook | |
* | |
* EDIT WEBHOOK |
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
version: '3' | |
services: | |
# Database | |
db: | |
image: mysql:5.7 | |
volumes: | |
- db_data:/var/lib/mysql | |
restart: always |
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> | |
<meta charset="UTF-8"> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>Document</title> | |
<!-- UTILIZAR ESTILOS DE BOOTSTRAP --> |
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 | |
clear | |
bold=$(tput bold) | |
normal=$(tput sgr0) | |
echo "${bold}TERMUX MEDIA DOWNLOADER${normal} by @pereirawe\n" | |
echo $'\n' | |
echo "> ${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
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
<title>Convertir imagen</title> | |
<meta name="viewport" content="width=device-width, initial-scale=1"> | |
<link rel="stylesheet" type="text/css" media="screen" href="main.css"> | |
<script src="main.js"></script> | |
</head> |
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
SET @START = 10, @finish = 3; | |
INSERT INTO old_log | |
SELECT | |
* | |
FROM | |
log | |
WHERE | |
time >= DATE(NOW() - INTERVAL @start MONTH ) | |
AND |
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
{ | |
"banks": [ | |
{ | |
"id": "0156", | |
"name": "100%BANCO" | |
},{ | |
"id": "0156", | |
"name": "100%BANCO" | |
}, | |
{ |