Created
October 25, 2018 00:23
-
-
Save digideskio/c1ec02f0fd0b12a539ffec9672a6ed66 to your computer and use it in GitHub Desktop.
New Public Gist
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System.Linq; | |
using ServiceStack; | |
using ServiceStack.Text; | |
public class GithubRepository | |
{ | |
public string Name { get; set; } | |
public string Description { get; set; } | |
public string Url { get; set; } | |
public string Homepage { get; set; } | |
public string Language { get; set; } | |
public int Watchers { get; set; } | |
public int Forks { get; set; } | |
public override string ToString() => Name; | |
} | |
var orgName = "ServiceStack"; | |
//https://githubengineering.com/crypto-removal-notice/ | |
System.Net.ServicePointManager.SecurityProtocol = System.Net.SecurityProtocolType.Tls12; | |
var orgRepos = $"https://api.github.com/orgs/{orgName}/repos" | |
.GetJsonFromUrl(httpReq => httpReq.UserAgent = "Gistlyn") | |
.FromJson<GithubRepository[]>() | |
.OrderByDescending(x => x.Watchers) | |
.Take(5) | |
.ToList(); | |
"Top 5 {0} Github Repositories:".Print(orgName); | |
orgRepos.PrintDump(); | |
// Save a copy of this *public* Gist by clicking the "Save As" below |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="utf-8"?> | |
<packages> | |
<package id="ServiceStack.Text" version="5.2.0" targetFramework="net45" /> | |
<package id="ServiceStack.Client" version="5.2.0" targetFramework="net45" /> | |
<package id="ServiceStack.Interfaces" version="5.2.0" targetFramework="net45" /> | |
</packages> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment