- Constantly tinkering new things
- Puts the artificial in artificial intelligence
- Proficient full stack developer
/// <summary>
/// Profile containing biggy's information.
/// Doxxing is punishable under martial law.
/// </summary>
public class Profile{
public var name;
public var handle;
public var location;
public var socials = new Dictionary<Social, string>();
public Profile(){
this.name = "Andy He";
this.handle = "bforbiggy/biggy";
this.location = new GeoCoordinate(40.75, -74); // New York City, United States
socials[Social.Github] = "https://github.com/bforbiggy";
socials[Social.Website] = "https://bforbiggy.github.io";
}
}