Skip to content

Instantly share code, notes, and snippets.

View pereirawe's full-sized avatar
😎
Good mood

William Pereira pereirawe

😎
Good mood
View GitHub Profile
@pereirawe
pereirawe / Slack.php
Last active November 5, 2021 20:20
Slack Integration with PHP CURL
<?php
/**
* OFFICIAL DOCUMENTATION
* https://github.com/php-slack/slack#sending-messages
*
* CRIAR WEBHOOK
* https://my.slack.com/services/new/incoming-webhook
*
* EDIT WEBHOOK
@pereirawe
pereirawe / Docker-compose.yml
Last active September 29, 2021 15:22
Docker compose de Banco Mysql com phpMyAdmin
version: '3'
services:
# Database
db:
image: mysql:5.7
volumes:
- db_data:/var/lib/mysql
restart: always
@pereirawe
pereirawe / Youtube-Embed-Responsive.html
Created March 20, 2021 21:31
Embed Youtube videos with resposivity
<!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 -->

Clean Portainer Installation

Updated 2021/03/11

Required

  • Docker installed and running
  • Terminal
  • Unused port 3040 (can change on install command)
#!/bin/bash
clear
bold=$(tput bold)
normal=$(tput sgr0)
echo "${bold}TERMUX MEDIA DOWNLOADER${normal} by @pereirawe\n"
echo $'\n'
echo "> ${1}"
@pereirawe
pereirawe / miniatures_folder.php
Created October 30, 2019 20:26
Create a folder with miniatures from another folder
<!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>
@pereirawe
pereirawe / move_rows.sql
Last active December 7, 2019 22:38
Move rows from a table to another from a date
SET @START = 10, @finish = 3;
INSERT INTO old_log
SELECT
*
FROM
log
WHERE
time >= DATE(NOW() - INTERVAL @start MONTH )
AND
@pereirawe
pereirawe / venezuelanBanksPrefixed.json
Last active February 7, 2023 19:52
Listado de Bancos con codigos de Venezuela en formato .json
{
"banks": [
{
"id": "0156",
"name": "100%BANCO"
},{
"id": "0156",
"name": "100%BANCO"
},
{