Skip to content

Commit 3a9b5e2

Browse files
authored
Merge branch 'master' into authorupdate
2 parents f6e1f77 + d95e34d commit 3a9b5e2

File tree

2 files changed

+27
-7
lines changed

2 files changed

+27
-7
lines changed

src/Firehose.Web/Authors/JoshKing.cs

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
namespace Firehose.Web.Authors
99
{
10-
public class JoshKing : IAmACommunityMember, IFilterMyBlogPosts
10+
public class JoshKing : IAmACommunityMember
1111
{
1212
public string FirstName => "Josh";
1313
public string LastName => "King";
@@ -20,11 +20,6 @@ public class JoshKing : IAmACommunityMember, IFilterMyBlogPosts
2020
public GeoPosition Position => new GeoPosition(-39.4928, 176.9120);
2121

2222
public Uri WebSite => new Uri("https://king.geek.nz/");
23-
public IEnumerable<Uri> FeedUris { get { yield return new Uri("https://king.geek.nz/feed.xml"); } }
24-
25-
public bool Filter(SyndicationItem item)
26-
{
27-
return item.Categories.Where(i => i.Name.Equals("powershell", StringComparison.OrdinalIgnoreCase)).Any();
28-
}
23+
public IEnumerable<Uri> FeedUris { get { yield return new Uri("https://king.geek.nz/tag/powershell/rss/"); } }
2924
}
3025
}
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
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 MikeKanakos : IAmACommunityMember
11+
{
12+
public string FirstName => "Mike";
13+
public string LastName => "Kanakos";
14+
public string ShortBioOrTagLine => "Windows IT pro located in the RTP area of North Carolina. Active Directory, Azure AD, Group Policy, and automation.";
15+
public string StateOrRegion => "Apex, NC";
16+
public string EmailAddress => "mike@networkadm.in";
17+
public string TwitterHandle => "MikeKanakos";
18+
public string GravatarHash => "2bca167386e229ec2c5606f6c1677493";
19+
public string GitHubHandle => "compwiz32";
20+
public GeoPosition Position => new GeoPosition(35.7327, 78.8503);
21+
22+
public Uri WebSite => new Uri("https://www.networkadm.in/");
23+
public IEnumerable<Uri> FeedUris { get { yield return new Uri("https://www.networkadm.in/rss/"); } }
24+
}
25+
}

0 commit comments

Comments
 (0)