Skip to content

Instantly share code, notes, and snippets.

View maisieccino's full-sized avatar

Maisie Bell maisieccino

View GitHub Profile
@maisieccino
maisieccino / .Xresources
Created November 23, 2015 20:42
christmas dotfiles
Xft.dpi: 96
Xft.antialias: true
Xft.hinting: true
Xft.rgba: rgb
Xft.autohint: false
Xft.hintstyle: hintslight
Xft.lcdfilter: lcddefault
URxvt.scrollBar: false
@maisieccino
maisieccino / whack-a-mole.c
Created November 19, 2015 20:25
"Whack-a-mole" coursework solution
#include <stdio.h>
#include <stdbool.h>
#include <stdlib.h>
#define MAX_ARR_SIZE 128
#define GRID_SIZE 16
typedef bool grid_t[GRID_SIZE];
typedef struct node{