/// <summary>
/// Hi, I'm <see cref="norwd" />.
/// </summary>
public class norwd
{
/// <summary>
/// My <see cref="norwd.Pronouns" /> are he/him/his.
/// </summary>
public const Pronoun Pronouns = Pronoun.He | Pronoun.Him | Pronoun.His;
/// <summary>
/// Some of my external links.
/// </summary>
public IDictionary<string, Uri> Links => new Dictionary<string, Uri>
{
["GitHub"] = new Uri("https://github.com/norwd"),
["JiraStopWatch"] = new Uri("https://jirastopwatch.com"),
["ThisTimeStamp"] = new Uri("https://thistimestamp.com"),
};
/// <summary>
/// Get a randomised fortune each time.
/// </summary>
/// <remarks>
/// These fortunes are periodically set as my bio!
/// </remarks>
public string Fortune => new[]
{
}
.OrderBy(_ => new Random().Next())
.First();
}
All of my code is 100% Human-Made, either writen by me or generated by a utiliy that was.