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
alias "p1" "setpos -192.000000 1696.000000 88.76556" | |
alias "p2" "setpos -256.000000 1728.000000 88.949203" | |
alias "p3" "setpos -352.000000 1728.000000 91.644180" | |
alias "p4" "setpos -448.000000 1728.000000 93.338509" | |
alias "p5" "setpos -512.000000 1696.000000 88.755043" | |
echo """""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" | |
echo " __________ __________ ___ ___ ___ __________ __________ " | |
echo " / ____ /| / ____ /|| |\ / /\ / /| /__ __ /| / ____ /| " | |
echo " / / _ / / // / _ / / /| |_/ / / / / / \_/ / ___// / _ / / / " |
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
function is_strong_pass(pass){ | |
if(pass.length < 6) return false; | |
// chars: 1 especial - 1 number - 1 uppercase - 1 lowercase | |
let re = new RegExp(/([^\w]+)|(\d+)|([A-Z]+)|([a-z]+)/gm); | |
const match = pass.matchAll(re); | |
const groups = [false, false, false, false] | |
const els = Array.from(match); |
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
FROM php:8.0-apache | |
RUN apt update | |
RUN apt-get update && \ | |
DEBIAN_FRONTEND=noninteractive apt-get -yq install mariadb-server && \ | |
DEBIAN_FRONTEND=noninteractive apt-get -yq install mariadb-client | |
COPY --from=composer:latest /usr/bin/composer /usr/local/bin/composer | |
WORKDIR /var/www/html |
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
cfgver "1" | |
unbindall | |
bind "0" "slot10" | |
bind "1" "slot1" | |
bind "2" "slot2" | |
bind "3" "slot3" | |
bind "4" "use weapon_flashbang" | |
bind "5" "slot5" | |
bind "6" "use weapon_decoy" | |
bind "7" "slot7" |
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 | |
/** | |
* scan_dir | |
* | |
* Esta função faz uso de recursividade | |
* para recuperar um lista de arquivos | |
* em um determinado diretório, incluindo | |
* os arquivos de diretórios internos | |
* |
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 | |
$subtrair = false; # --> tempo para subtrair quando a legenda está atrasada | |
$somar = "00:00:08"; # --> tempo para somar quando a legenda está adiantada | |
$legendaEntrada = "legenda_s01_ep01(errada).srt"; # Nome do Arquivo a ser alterado | |
$legendaSaida = "legenda_s01_ep01(correta).srt"; # Nome do Arquivo a ser gerado | |
$arquivo = fopen($legendaEntrada, "r"); | |
$conteudo = ""; |
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
Nitidez | |
# nitidez - 100% | |
# ignorar grão do filme - 100% | |
Detalhes | |
# nitidez - 70% | |
# clareza - 100% | |
# tonificação - 30% | |
# bloom - 15% | |
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 | |
$result = ""; | |
foreach($_SERVER as $K => $V){ | |
$a = explode('_' , $K); | |
if(array_shift($a) == 'HTTP'){ |
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
@darker-green: #172326; | |
@fucker-green: #2B3940; | |
@mother-green: #212C32; | |
.title-bar { | |
padding: 15px; | |
letter-spacing: 0.08em; | |
font-size: 1.1em; | |
} |
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
$grid-breakpoints: ( | |
xs: 0, | |
sm: 576px, | |
md: 768px, | |
lg: 992px, | |
xl: 1200px | |
); | |
NewerOlder