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
@andrei-coelho
andrei-coelho / dust2_spawns_tr.cfg
Created November 8, 2024 23:39
dust2_spawns_tr
alias "p1" "setpos -1181.000000 -754.000000 120.181252;setang -18.356728 72.276169 0"
alias "p2" "setpos -1141.000000 -808.000000 116.685997;setang -41.210495 74.358002 0"
alias "p3" "setpos -1076.000122 -843.000000 116.789474;setang -39.885929 75.814331 0"
alias "p4" "setpos -1015.000244 -808.000244 116.082619;setang -23.638971 94.397156 0"
alias "p5" "setpos -980.000122 -754.000244 120.181252;setang -23.638971 94.397156 0"
alias "p6" "setpos -493.000000 -808.000000 108.563385;setang -11.934383 87.703705 0"
alias "p7" "setpos -428.000092 -842.999939 95.296295;setang -17.639618 90.426010 0"
alias "p8" "setpos -367.000122 -808.000244 83.744965;setang -16.462589 92.030609 0"
alias "p9" "setpos -332.000031 -754.000183 78.877106;setang -14.460588 92.662445 0"
@andrei-coelho
andrei-coelho / anubis_spawns_tr.cfg
Last active November 8, 2024 23:37
anubis_spawns_tr
alias "p1" "setpos -384.000000 -1552.000000 52.031250"
alias "p2" "setpos -328.000000 -1528.000000 52.031250"
alias "p3" "setpos -234.000000 -1503.079956 52.031250"
alias "p4" "setpos -154.000000 -1503.079956 52.031250"
alias "p5" "setpos -416.000000 -1608.000000 59.564808"
alias "p6" "setpos -304.000000 -1608.000000 52.031250"
alias "p7" "setpos -264.000000 -1560.000000 52.031250"
alias "p8" "setpos -192.000000 -1608.000000 52.031250"
alias "p9" "setpos -144.000000 -1568.000000 52.031250"
alias "p10" "setpos -128.004028 -1632.000000 54.906105"
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 / 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 / _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
);
@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 / 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 / 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 / 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%