Skip to content

Instantly share code, notes, and snippets.

View rabindranathfv's full-sized avatar

Rabindranath Ferreira rabindranathfv

View GitHub Profile
@wholroyd
wholroyd / preparations.md
Last active June 25, 2025 08:50
Getting Minikube on WSL2 Ubuntu working

Windows Preparation

  1. Ensure hypervisor functionality is enabled in BIOS.

    • I know it sounds stupid, but if you already have it enabled, disable it, restart the machine, and enable it again.
    • Otherwise you will hit microsoft/WSL#5363
  2. Launch a PowerShell prompt in Administrator mode [Win+X > Windows PowerShell (Admin)]

dism.exe /online /enable-feature /featurename:Microsoft-Windows-Subsystem-Linux /all /norestart
@greyscaled
greyscaled / README.md
Last active February 21, 2025 08:33
Sequelize + Express + Migrations + Seed Starter
@Kartones
Kartones / postgres-cheatsheet.md
Last active July 25, 2025 17:04
PostgreSQL command line cheatsheet

PSQL

Magic words:

psql -U postgres

Some interesting flags (to see all, use -h or --help depending on your psql version):

  • -E: will describe the underlaying queries of the \ commands (cool for learning!)
  • -l: psql will list all databases and then exit (useful if the user you connect with doesn't has a default database, like at AWS RDS)