Skip to content

Instantly share code, notes, and snippets.

View nixoletas's full-sized avatar
🛸
Hello World!

Nicholas Miyasato nixoletas

🛸
Hello World!
View GitHub Profile
@nixoletas
nixoletas / debloat.ps1
Created June 4, 2025 00:05
Download, unzip and run LeDragoX/Win-Debloat-Tools
# Define variables
$zipUrl = "https://github.com/LeDragoX/Win-Debloat-Tools/archive/main.zip"
$downloadPath = "$env:TEMP\Win-Debloat-Tools.zip"
$extractPath = "$env:USERPROFILE\Win-Debloat-Tools"
# Download the zip
Write-Host "Downloading zip file..."
Invoke-WebRequest -Uri $zipUrl -OutFile $downloadPath
# Extract the zip
#!/bin/bash
# Função para mostrar progresso com pontinhos variando de 1 a 3
show_progress_dots() {
local pid=$1
local action=$2
local color=$3
local i=0
local dots=1
@nixoletas
nixoletas / server_setup.sh
Created June 20, 2024 15:21
Script to run on a first ubuntu server boot setup
#!/bin/bash
# Update the package lists for upgrades and new package installations
sudo apt update
# Upgrade all installed packages to their latest versions
sudo apt upgrade -y
# Install essential packages
sudo apt install -y curl wget git vim build-essential ufw