Skip to content

Instantly share code, notes, and snippets.

View Aruw's full-sized avatar

André Wada Gromann Aruw

View GitHub Profile
@Aruw
Aruw / Gmail App Password Setup Guide - 2026.md
Last active December 30, 2025 19:33
Gmail App Password Setup Guide - 2026

🔐 Gmail App Password Setup Guide 2026

⚠️ Important
Google requires 2-Step Verification to be enabled before you can create an App Password.


1️⃣ Step 1: Enable 2-Step Verification

  1. Sign in to your Google Account:
@Aruw
Aruw / Setup local MySQL (Docker).md
Last active October 7, 2023 23:48
Setup MySQL with Docker on local environment and configure DBeaver connection.

In the CLI pull MySQL image:

docker pull mysql/mysql-server:latest

docker run -d -p 3306:3306 
  --name your-container-name
  -e MYSQL_ROOT_PASSWORD=password 
  mysql/mysql-server:latest