File tree Expand file tree Collapse file tree 1 file changed +31
-0
lines changed Expand file tree Collapse file tree 1 file changed +31
-0
lines changed Original file line number Diff line number Diff line change
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
+ }
You can’t perform that action at this time.
0 commit comments