Thanks to visit codestin.com
Credit goes to github.com

Skip to content

norwd/norwd

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
/// <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[]
  {
    "Нет войне!",
    "A language that doesn't affect the way you think about, is not worth knowing",
    "Anything added dilutes everything else",
    "Approachable is better than simple",
    "Clear is better than clever",
    "Don't panic",
    "A unit test is most useful when it fails",
    "A unit test that passes, says nothing",
  }
  .OrderBy(_ => new Random().Next())
  .First();
}

All of my code is 100% Human-Made, either writen by me or generated by a utiliy that was.

About

Config files for my GitHub profile.

Topics

Resources

License

Code of conduct

Contributing

Security policy

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published