Skip to content

Instantly share code, notes, and snippets.

View andrei-coelho's full-sized avatar
👊
- Coding

Andrei Coelho andrei-coelho

👊
- Coding
  • São Paulo - SP - BR - Earth
View GitHub Profile
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 " / / _ / / // / _ / / /| |_/ / / / / / \_/ / ___// / _ / / / "
@andrei-coelho
andrei-coelho / is_strong_pass.js
Last active July 4, 2022 01:08
function checks if the password is strong
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);
@andrei-coelho
andrei-coelho / Dockerfile PHP+mysql+composer
Last active March 23, 2022 14:55
Dockerfile PHP+mysql+composer
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
@andrei-coelho
andrei-coelho / andrei.cfg
Last active July 10, 2023 04:39
minha CFG do CSGO
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"
@andrei-coelho
andrei-coelho / scan_dir.php
Last active April 6, 2021 01:55
Get the list with the name of all files in a given directory / Recupera a lista com o nome de todos os arquivos de um determinado diretório
<?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
*
@andrei-coelho
andrei-coelho / arrumador_de_legenda.php
Last active January 22, 2022 05:59
Esse é um script para arrumar legendas que não batem com o tempo do filme ou da série
<?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 = "";
@andrei-coelho
andrei-coelho / filtro_nvidia_valorant
Created September 28, 2020 01:12
Filtro da NVIDIA GeForce Experience ideal para o Valorant
Nitidez
# nitidez - 100%
# ignorar grão do filme - 100%
Detalhes
# nitidez - 70%
# clareza - 100%
# tonificação - 30%
# bloom - 15%
@andrei-coelho
andrei-coelho / get_header.php
Created February 11, 2020 16:31
to get headers sent
<?php
$result = "";
foreach($_SERVER as $K => $V){
$a = explode('_' , $K);
if(array_shift($a) == 'HTTP'){
@andrei-coelho
andrei-coelho / styles.less
Created November 26, 2019 01:22
My styles Atom
@darker-green: #172326;
@fucker-green: #2B3940;
@mother-green: #212C32;
.title-bar {
padding: 15px;
letter-spacing: 0.08em;
font-size: 1.1em;
}
@andrei-coelho
andrei-coelho / _bootstrap_width_height.scss
Last active February 7, 2023 13:24
sass / css for width and height of bootstrap components
$grid-breakpoints: (
xs: 0,
sm: 576px,
md: 768px,
lg: 992px,
xl: 1200px
);