typedef struct {
char* name;
unsigned long age;
char* pronouns;
unsigned char face[184][184][3];
char* links[6];
char* emails[2];
char* location;
unsigned long long phone;
char* location;
} contact;
contact info = {
.name = "Zebadiah Long",
.age = 1217458845, // In seconds
.pronouns = "he/him",
.face =
,
.links[0] = "noblewhale.com", // Business site
.links[1] = "AnsonKindred", // Github
.links[2] = "Noble Whale", // Business Github
.links[3] = "zeblong", // LinkedIn
.links[4] = "AnsonKindred", // Steam
.links[5] = "Resume", // Resume
.emails[0] = "thegreatzebadiah@gmail.com",
.emails[0] = "zeb@noblewhale.com",
.location = "Athens, GA. USA",
.phone = 7062014294};