Skip to content

Instantly share code, notes, and snippets.

View azpoint's full-sized avatar

Alejandro Z azpoint

View GitHub Profile
@dehsilvadeveloper
dehsilvadeveloper / 0_prerequisites.md
Last active December 1, 2025 15:04
Installing Docker on WSL 2 with Ubuntu 22.04

Installing Docker on WSL 2 with Ubuntu 22.04

Instalando Docker em um WSL 2 com Ubuntu 22.04

Prerequisites

Before start the installation process, make sure you meet the following prerequisites:

  • A Windows 10 operating system with WSL 2 support.
  • WSL 2 enabled.
  • Ubuntu 22.04 installed on WSL 2.
@Klerith
Klerith / instalaciones-shadcn.md
Last active November 8, 2025 22:07
Instalaciones recomendadas para el curso de Shadcn/ui
@bradtraversy
bradtraversy / tailwind-webpack-setup.md
Last active November 29, 2025 08:24
Setup Webpack with Tailwind CSS

Webpack & Tailwind CSS Setup

Create your package.json

npm init -y

Create your src folder

Create a folder called src and add an empty index.js file. The code that webpack compiles goes in here including any Javascript modules and the main Tailwind file.

@coco-napky
coco-napky / hyper.js
Created March 8, 2017 23:21
Hyper config for git bash in Windows
module.exports = {
config: {
// default font size in pixels for all tabs
fontSize: 12,
// font family with optional fallbacks
fontFamily: 'Menlo, "DejaVu Sans Mono", Consolas, "Lucida Console", monospace',
// terminal cursor background color and opacity (hex, rgb, hsl, hsv, hwb or cmyk)
cursorColor: 'rgba(248,28,229,0.8)',