Skip to content
This repository has been archived by the owner on May 6, 2024. It is now read-only.

Add new user: wilsonvargas #370

Merged
merged 3 commits into from
Oct 2, 2017
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
40 changes: 40 additions & 0 deletions src/Firehose.Web/Authors/WilsonVargas.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
using System;
using System.Collections.Generic;
using Firehose.Web.Infrastructure;
using System.ServiceModel.Syndication;
using System.Linq;

namespace Firehose.Web.Authors
{
public class WilsonVargas : IAmACommunityMember, IFilterMyBlogPosts
{
public string FirstName => "Wilson";

public string LastName => "Vargas";

public string StateOrRegion => "Trujillo, Peru";

public string EmailAddress => "";

public string ShortBioOrTagLine => "is a guy with lots of experience in the software development art and with a great passion for mobile development using Xamarin platform.";

public Uri WebSite => new Uri("https://blog.wilsonvargas.com");

public IEnumerable<Uri> FeedUris
{
get { yield return new Uri("https://blog.wilsonvargas.com/rss/"); }
}

public string TwitterHandle => "Wilson_VargasM";


public string GravatarHash => "3544142bb4ef8f597b1c14b887b0b905";
public string GitHubHandle => "wilsonvargas";

public GeoPosition Position => new GeoPosition(-8.120174, -79.035157);

public bool Filter(SyndicationItem item) =>
item.Title.Text.ToLowerInvariant().Contains("xamarin") ||
item.Categories.Any(category => category.Name.ToLowerInvariant().Contains("xamarin"));
}
}
1 change: 1 addition & 0 deletions src/Firehose.Web/Firehose.Web.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -285,6 +285,7 @@
<Compile Include="Authors\WilliamRodriguez.cs" />
<Compile Include="Authors\JanTourlamain.cs" />
<Compile Include="Authors\WinstonGubantes.cs" />
<Compile Include="Authors\WilsonVargas.cs" />
<Compile Include="AutofacModules\FeedsModule.cs" />
<Compile Include="AutofacModules\WebModule.cs" />
<Compile Include="Controllers\BaseController.cs" />
Expand Down