Skip to content

Instantly share code, notes, and snippets.

View greymiba's full-sized avatar
🎯
Focusing

greymiba

🎯
Focusing
View GitHub Profile
@greymiba
greymiba / freeCodeCamp_Completed_Challenges
Created November 21, 2019 03:17
Link to completed challenges at freeCodeCamp
https://www.freecodecamp.org/greymiba
@greymiba
greymiba / SingleVsDouble_Buffering.cs
Created October 4, 2019 22:17
Demonstrates the difference between single & double buffering
//Adapted from TLG Learning C# course, taught by Peter Thorsteinson.
using System;
class Program
{
static int rows = 50;
static int cols = 50;
static int x = rows / 2;
static int y = cols / 2;
static char[,] cells = new char[rows, cols];
static bool isDoubleBuffering = false;