https://www.youtube.com/watch?v=cPbl26Fw-dk
- Quer brincar de Eike Bastista nessa porra!
 - Matar um leão por dia.
 - Faca nos dentes
 - Sangue no olho
 - É matar ou morrer
 - Dando muque em macaco de gaveta
 - É largar mato na caçamba
 - Jogar terra na boca de carrapato
 
| <?php | |
| function tinker(...$args) { | |
| // Because there is no way of knowing what variable names | |
| // the caller of this function used with the php run-time, | |
| // we have to get clever. My solution is to peek at the | |
| // stack trace, open up the file that called "tinker()" | |
| // and parse out any variable names, so I can load | |
| // them in the tinker shell and preserve their names. | 
| <!DOCTYPE html> | |
| <html lang="pt-br"> | |
| <head> | |
| <meta charset="utf-8"> | |
| <!-- Description Até 140 caracteres --> | |
| <meta name="description" content="Description"> | |
| <!-- Favicon --> | |
| <link rel="icon" href="img/icon/favicon.ico" type="image/ico" sizes="16x16"> | 
| // :: (String, String) => String | |
| const spawn = require('child_process').spawnSync; | |
| // :: String => [String] | |
| const getRules = raw => raw | |
| .split('\n') | |
| .map(line => line.trim()) | |
| .filter(line => !!line) | |
| .filter(line => line[0] !== '/' && line[0] !== '✖') | |
| .map(line => line.match(/[a-z-]+$/)[0]); | 
| // Run this in the F12 javascript console in chrome | |
| // if a redirect happens, the page will pause | |
| // this helps because chrome's network tab's | |
| // "preserve log" seems to technically preserve the log | |
| // but you can't actually LOOK at it... | |
| // also the "replay xhr" feature does not work after reload | |
| // even if you "preserve log". | |
| window.addEventListener("beforeunload", function() { debugger; }, false) | 
https://www.youtube.com/watch?v=cPbl26Fw-dk
| alias c="composer" | |
| alias ccp="composer create-project --prefer-dist" | |
| alias csu="sudo composer self-update" | |
| alias cu="composer update" | |
| alias ci="composer install" | |
| alias cr="composer require" | |
| alias csh="composer show" | |
| alias cse="composer search" | |
| alias cda="composer dump-autoload -o" |