Skip to content

Instantly share code, notes, and snippets.

View AlbertoBarrago's full-sized avatar
🐑

alBz AlbertoBarrago

🐑
View GitHub Profile
@antirez
antirez / life.c
Created July 5, 2025 13:38
Game of life as implemented in the YouTube C video lessons
#include <stdio.h>
#include <unistd.h>
#define GRID_COLS 20
#define GRID_ROWS 20
#define GRID_CELLS (GRID_COLS*GRID_ROWS)
#define ALIVE '*'
#define DEAD '.'
/* Translate the specified x,y grid point into the index in
@bradtraversy
bradtraversy / mysql_cheat_sheet.md
Last active September 2, 2026 19:38
MySQL Cheat Sheet

MySQL Cheat Sheet

Help with SQL commands to interact with a MySQL database

MySQL Locations

  • Mac /usr/local/mysql/bin
  • Windows /Program Files/MySQL/MySQL version/bin
  • Xampp /xampp/mysql/bin

Add mysql to your PATH