Ao se aplicar, coloque "Paulo Luan" no campo de quem te indicou, assim o chefe vai saber que você veio por mim 😉
Vídeos de entrevistas com o chefe:
Parte 1: https://www.youtube.com/watch?v=9urPASfIoXw
Parte 2:
Vídeos de entrevistas com o chefe:
Parte 1: https://www.youtube.com/watch?v=9urPASfIoXw
Parte 2:
https://go.hotmart.com/A98377147N |
// Place your key bindings in this file to override the defaults | |
[ | |
{ | |
"key": "shift+cmd+k", | |
"command": "workbench.action.toggleSidebarVisibility" | |
}, | |
{ | |
"key": "cmd+b", | |
"command": "-workbench.action.toggleSidebarVisibility" | |
}, |
instructions:
project_initialization:
purpose: "Set up and maintain the foundation for project management."
details:
folder exists to store tasks, changelogs, and persistent data."
## To find the largest 10 files (linux/bash): | |
find . -type f -print0 | xargs -0 du | sort -n | tail -10 | cut -f2 | xargs -I{} du -sh {} | |
## To find the largest 10 directories: | |
find . -type d -print0 | xargs -0 du | sort -n | tail -10 | cut -f2 | xargs -I{} du -sh {} |
#!/bin/bash | |
## // ## // ## // ## // ## // ## // ## // ## //## // ## // ## // ## // ## // ## // ## // ## // ## | |
## ORION DESIGN ## | |
## // ## // ## // ## // ## // ## // ## // ## //## // ## // ## // ## // ## // ## // ## // ## // ## | |
## Cores | |
amarelo="\e[33m" | |
verde="\e[32m" | |
branco="\e[97m" |
#!/bin/bash | |
## // ## // ## // ## // ## // ## // ## // ## //## // ## // ## // ## // ## // ## // ## // ## // ## | |
## ORION DESIGN ## | |
## // ## // ## // ## // ## // ## // ## // ## //## // ## // ## // ## // ## // ## // ## // ## // ## | |
versao() { | |
echo -e " \e[97mVersão do SetupOrion: \e[32mv. 2.5.9\e[0m " | |
echo -e "\e[32moriondesign.art.br/whatsapp1 \e[97m<----- Grupos no WhatsApp -----> \e[32moriondesign.art.br/whatsapp2\e[0m" | |
} |
NODE_OPTIONS='--inspect' next dev |
#!/bin/bash | |
# Loop through all PNG files in the current directory | |
for png_file in *.png; do | |
if [ -f "$png_file" ]; then | |
# Get the filename without the extension | |
filename=$(basename -- "$png_file") | |
filename_noext="${filename%.*}" | |
# Convert the PNG to WebP |
#! /usr/bin/env sh | |
set -e | |
find "${1-"$(pwd)"}" -name 'node_modules' -type d -prune -exec rm -rf '{}' + |