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