Skip to content

Instantly share code, notes, and snippets.

View lucasquin's full-sized avatar
:electron:
Improving

Lucas Lopes lucasquin

:electron:
Improving
View GitHub Profile
@lucasquin
lucasquin / list_users_discord_server.js
Last active September 13, 2024 14:36
List the users of a Discord server
function extractAndProcessNames(xpath) {
const results = new Set();
const xpathResult = document.evaluate(
xpath,
document,
null,
XPathResult.ORDERED_NODE_SNAPSHOT_TYPE,
null
);
@lucasquin
lucasquin / validar_hardware_linux.sh
Last active March 20, 2025 19:38
Script de validação de hardware e drivers no Ubuntu Server
#!/bin/bash
RED='\033[0;31m'
GREEN='\033[0;32m'
YELLOW='\033[1;33m'
BLUE='\033[0;34m'
CYAN='\033[0;36m'
NC='\033[0m'
section() {
@lucasquin
lucasquin / arch_docker.md
Last active May 1, 2025 13:17
install docker and configure in linux

install docker

sudo pacman -S docker

start docker daemom

sudo systemctl start docker.service

start docker daemom on system boot

@lucasquin
lucasquin / arch_argocd.md
Created May 1, 2025 13:14
Guia de Configuração Kubernetes e ArgoCD

🚀 Guia de Configuração Kubernetes e ArgoCD

📋 Ferramentas Necessárias

Ferramenta Descrição
kubectl Ferramenta de linha de comando para Kubernetes
minikube Cluster Kubernetes local para desenvolvimento e testes

🔧 Instalação Inicial