Skip to content

Commit 6b93097

Browse files
authored
Merge pull request planetpowershell#129 from mcdonaldbm/master
Add BryceMcDonald.cs to Authors
2 parents c659446 + 0c4fd71 commit 6b93097

File tree

1 file changed

+31
-0
lines changed

1 file changed

+31
-0
lines changed
Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
using System;
2+
using System.Collections.Generic;
3+
using System.Linq;
4+
using System.ServiceModel.Syndication;
5+
using System.Web;
6+
using Firehose.Web.Infrastructure;
7+
8+
namespace Firehose.Web.Authors
9+
{
10+
public class BryceMcDonald : IAmACommunityMember, IFilterMyBlogPosts
11+
{
12+
public string FirstName => "Bryce";
13+
public string LastName => "McDonald";
14+
public string ShortBioOrTagLine => "KC based PowerShell and Automation guru";
15+
public string StateOrRegion => "Kansas City, Missouri";
16+
public string EmailAddress => "bryce@northcodesolutions.com";
17+
public string TwitterHandle => "_brycemcdonald";
18+
public string GravatarHash => "e6600de53eef91dd803a6386c20a40bf";
19+
public string GitHubHandle => "mcdonaldbm";
20+
public GeoPosition Position => new GeoPosition(39.0997, -94.5786);
21+
public Uri WebSite => new Uri("https://www.brycematthew.net");
22+
public IEnumerable<Uri> FeedUris
23+
{
24+
get { yield return new Uri("https://www.brycematthew.net/feed.xml"); }
25+
}
26+
public bool Filter(SyndicationItem item)
27+
{
28+
return item.Title.Text.ToLowerInvariant().Contains("powershell");
29+
}
30+
}
31+
}

0 commit comments

Comments
 (0)