Skip to content

Commit 4a89459

Browse files
authored
Create BjornHouben.cs
Adding myself as an author
1 parent b17c05d commit 4a89459

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
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 BjornHouben : IAmACommunityMember
11+
{
12+
public string FirstName => "Bjorn";
13+
public string LastName => "Houben";
14+
public string ShortBioOrTagLine => "Blogging about practical PowerShell uses and other things I find interesting";
15+
public string StateOrRegion => "Heerlen, Netherlands";
16+
public string EmailAddress => string.Empty;
17+
public string TwitterHandle => "bjornhouben";
18+
public string GravatarHash => "7d072aaf4d60ec2a94367e744a626ea0";
19+
public string GitHubHandle => "bjornhouben";
20+
public GeoPosition Position => new GeoPosition(50.8881740, 5.9794990);
21+
public Uri WebSite => new Uri("https://blog.bjornhouben.com");
22+
public IEnumerable<Uri> FeedUris
23+
{
24+
get { yield return new Uri("https://blog.bjornhouben.com/category/powershell/feed/atom/"); }
25+
}
26+
}
27+
}

0 commit comments

Comments
 (0)