Skip to content

Instantly share code, notes, and snippets.

View AJPoulter-Soton's full-sized avatar
🤕
Writing up my thesis…

AJ Poulter AJPoulter-Soton

🤕
Writing up my thesis…
  • University of Southampton
View GitHub Profile
@AJPoulter-Soton
AJPoulter-Soton / bishop.c
Last active September 5, 2018 12:13 — forked from nirenjan/bishop.c
Simulate a drunken bishop walk to produce OpenSSL random art.
#include <stdio.h>
#include <stdint.h>
#include <stdlib.h>
#include <unistd.h>
#include <string.h>
#define XLIM 17
#define YLIM 9
#define ARSZ (XLIM * YLIM)