Skip to content

Instantly share code, notes, and snippets.

View PauloLuan's full-sized avatar
💭
Ora et labora

Paulo Luan PauloLuan

💭
Ora et labora
View GitHub Profile
@PauloLuan
PauloLuan / flatirons.md
Last active March 26, 2025 19:18
Flatirons Openings

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:

@PauloLuan
PauloLuan / Link Afiliado Felipe Fontoura
Created February 26, 2025 23:22
Link Afiliado Felipe Fontoura
// 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"
},
@PauloLuan
PauloLuan / cline_prompt.md
Created December 24, 2024 10:40
cline prompt

instructions:

project_initialization:

purpose: "Set up and maintain the foundation for project management."

details:

  • "Ensure a \memlog folder exists to store tasks, changelogs, and persistent data."
@PauloLuan
PauloLuan / check_file_size_mac.sh
Created September 27, 2024 13:16
check_file_size_mac.sh
## 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 {}
@PauloLuan
PauloLuan / install.sh
Created August 26, 2024 12:35
Orion installer 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"
}
@PauloLuan
PauloLuan / debug_nextjs_browser.sh
Last active April 8, 2024 12:12
Debug nextjs on browser
NODE_OPTIONS='--inspect' next dev
@PauloLuan
PauloLuan / png_to_webp.sh
Last active February 27, 2024 18:59
png_to_webp.sh
#!/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
@PauloLuan
PauloLuan / clean_all_nodemodules_from_computer.sh
Created February 16, 2024 13:51
clean_all_nodemodules_from_computer.sh
#! /usr/bin/env sh
set -e
find "${1-"$(pwd)"}" -name 'node_modules' -type d -prune -exec rm -rf '{}' +