Created
April 4, 2012 07:06
-
-
Save mythz/2299395 to your computer and use it in GitHub Desktop.
Stand-alone Github v3 API C# client using only ServiceStack.Text
This file contains hidden or 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; | |
using System.Collections.Generic; | |
using System.Linq; | |
using NUnit.Framework; | |
namespace ServiceStack.Text.Tests.UseCases | |
{ | |
/// <summary> | |
/// Stand-alone C# client for the Github v3 API | |
/// Uses only ServiceStack.Text (+NUnit for tests) | |
/// Source: https://github.com/ServiceStack/ServiceStack.Text/blob/master/tests/ServiceStack.Text.Tests/UseCases/GithubV3ApiTests.cs | |
/// </summary> | |
[TestFixture] | |
public class GithubV3ApiGatewayTests | |
{ | |
[Test] | |
public void DO_ALL_THE_THINGS() | |
{ | |
var client = new GithubV3ApiGateway(); | |
Console.WriteLine("\n-- GetUserRepos(mythz): \n" + client.GetUserRepos("mythz").Dump()); | |
Console.WriteLine("\n-- GetOrgRepos(ServiceStack): \n" + client.GetOrgRepos("ServiceStack").Dump()); | |
Console.WriteLine("\n-- GetUserRepo(ServiceStack,ServiceStack.Text): \n" + client.GetUserRepo("mythz", "jquip").Dump()); | |
Console.WriteLine("\n-- GetUserRepoContributors(ServiceStack,ServiceStack.Text): \n" + client.GetUserRepoContributors("ServiceStack", "ServiceStack.Text").Dump()); | |
Console.WriteLine("\n-- GetUserRepoWatchers(ServiceStack,ServiceStack.Text): \n" + client.GetUserRepoWatchers("ServiceStack", "ServiceStack.Text").Dump()); | |
Console.WriteLine("\n-- GetReposUserIsWatching(mythz): \n" + client.GetReposUserIsWatching("mythz").Dump()); | |
Console.WriteLine("\n-- GetUserOrgs(mythz): \n" + client.GetUserOrgs("mythz").Dump()); | |
Console.WriteLine("\n-- GetUserFollowers(mythz): \n" + client.GetUserFollowers("mythz").Dump()); | |
Console.WriteLine("\n-- GetOrgMembers(ServiceStack): \n" + client.GetOrgMembers("ServiceStack").Dump()); | |
Console.WriteLine("\n-- GetAllUserAndOrgsReposFor(mythz): \n" + client.GetAllUserAndOrgsReposFor("mythz").Dump()); | |
} | |
} | |
public class GithubV3ApiGateway | |
{ | |
public const string GithubApiBaseUrl = "https://api.github.com/"; | |
public T GetJson<T>(string route, params object[] routeArgs) | |
{ | |
return GithubApiBaseUrl.AppendPath(route.Fmt(routeArgs)) | |
.GetJsonFromUrl() | |
.FromJson<T>(); | |
} | |
public List<GithubRepo> GetUserRepos(string githubUsername) | |
{ | |
return GetJson<List<GithubRepo>>("users/{0}/repos", githubUsername); | |
} | |
public List<GithubRepo> GetOrgRepos(string githubOrgName) | |
{ | |
return GetJson<List<GithubRepo>>("orgs/{0}/repos", githubOrgName); | |
} | |
public GithubRepo GetUserRepo(string githubUsername, string projectName) | |
{ | |
return GetJson<GithubRepo>("repos/{0}/{1}", githubUsername, projectName); | |
} | |
public List<GithubUser> GetUserRepoContributors(string githubUsername, string projectName) | |
{ | |
return GetJson<List<GithubUser>>("repos/{0}/{1}/contributors", githubUsername, projectName); | |
} | |
public List<GithubUser> GetUserRepoWatchers(string githubUsername, string projectName) | |
{ | |
return GetJson<List<GithubUser>>("repos/{0}/{1}/watchers", githubUsername, projectName); | |
} | |
public List<GithubRepo> GetReposUserIsWatching(string githubUsername) | |
{ | |
return GetJson<List<GithubRepo>>("users/{0}/watched", githubUsername); | |
} | |
public List<GithubOrg> GetUserOrgs(string githubUsername) | |
{ | |
return GetJson<List<GithubOrg>>("users/{0}/orgs", githubUsername); | |
} | |
public List<GithubUser> GetUserFollowers(string githubUsername) | |
{ | |
return GetJson<List<GithubUser>>("users/{0}/followers", githubUsername); | |
} | |
public List<GithubUser> GetOrgMembers(string githubOrgName) | |
{ | |
return GetJson<List<GithubUser>>("orgs/{0}/members", githubOrgName); | |
} | |
public List<GithubRepo> GetAllUserAndOrgsReposFor(string githubUsername) | |
{ | |
var map = new Dictionary<int, GithubRepo>(); | |
GetUserRepos(githubUsername).ForEach(x => map[x.Id] = x); | |
GetUserOrgs(githubUsername).ForEach(org => | |
GetOrgRepos(org.Login) | |
.ForEach(repo => map[repo.Id] = repo)); | |
return map.Values.ToList(); | |
} | |
} | |
public class GithubRepo | |
{ | |
public int Id { get; set; } | |
public string Open_Issues { get; set; } | |
public int Watchers { get; set; } | |
public DateTime? Pushed_At { get; set; } | |
public string Homepage { get; set; } | |
public string Svn_Url { get; set; } | |
public DateTime? Updated_At { get; set; } | |
public string Mirror_Url { get; set; } | |
public bool Has_Downloads { get; set; } | |
public string Url { get; set; } | |
public bool Has_issues { get; set; } | |
public string Language { get; set; } | |
public bool Fork { get; set; } | |
public string Ssh_Url { get; set; } | |
public string Html_Url { get; set; } | |
public int Forks { get; set; } | |
public string Clone_Url { get; set; } | |
public int Size { get; set; } | |
public string Git_Url { get; set; } | |
public bool Private { get; set; } | |
public DateTime Created_at { get; set; } | |
public bool Has_Wiki { get; set; } | |
public GithubUser Owner { get; set; } | |
public string Name { get; set; } | |
public string Description { get; set; } | |
} | |
public class GithubUser | |
{ | |
public int Id { get; set; } | |
public string Login { get; set; } | |
public string Avatar_Url { get; set; } | |
public string Url { get; set; } | |
public int? Followers { get; set; } | |
public int? Following { get; set; } | |
public string Type { get; set; } | |
public int? Public_Gists { get; set; } | |
public string Location { get; set; } | |
public string Company { get; set; } | |
public string Html_Url { get; set; } | |
public int? Public_Repos { get; set; } | |
public DateTime? Created_At { get; set; } | |
public string Blog { get; set; } | |
public string Email { get; set; } | |
public string Name { get; set; } | |
public bool? Hireable { get; set; } | |
public string Gravatar_Id { get; set; } | |
public string Bio { get; set; } | |
} | |
public class GithubOrg | |
{ | |
public int Id { get; set; } | |
public string Avatar_Url { get; set; } | |
public string Url { get; set; } | |
public string Login { get; set; } | |
} | |
} |
This file contains hidden or 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
-- GetUserRepos(mythz): | |
[ | |
{ | |
Id: 1118080, | |
Open_Issues: 0, | |
Watchers: 3, | |
Pushed_At: 2011-01-20T23:03:15Z, | |
Homepage: "http://www.servicestack.net", | |
Svn_Url: "https://github.com/mythz/MonoTouch.Examples", | |
Updated_At: 2012-01-02T20:37:33Z, | |
Has_Downloads: True, | |
Url: "https://api.github.com/repos/mythz/MonoTouch.Examples", | |
Has_issues: True, | |
Language: C#, | |
Fork: False, | |
Ssh_Url: "[email protected]:mythz/MonoTouch.Examples.git", | |
Html_Url: "https://github.com/mythz/MonoTouch.Examples", | |
Forks: 1, | |
Clone_Url: "https://github.com/mythz/MonoTouch.Examples.git", | |
Size: 5552, | |
Git_Url: "git://github.com/mythz/MonoTouch.Examples.git", | |
Private: False, | |
Created_at: 2010-11-28T00:50:47Z, | |
Has_Wiki: True, | |
Owner: | |
{ | |
Id: 89361, | |
Login: mythz, | |
Avatar_Url: "https://secure.gravatar.com/avatar/1257196ff88132651f94ac85f662c038?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png", | |
Url: "https://api.github.com/users/mythz", | |
Gravatar_Id: 1257196ff88132651f94ac85f662c038 | |
}, | |
Name: MonoTouch.Examples, | |
Description: ServiceStack examples with MonoTouch | |
}, | |
{ | |
Id: 1537595, | |
Open_Issues: 1, | |
Watchers: 92, | |
Pushed_At: 2012-01-10T21:15:17Z, | |
Homepage: "http://www.somesitededicatedtoscaling.net", | |
Svn_Url: "https://github.com/mythz/ScalingDotNET", | |
Updated_At: 2012-03-21T08:21:32Z, | |
Has_Downloads: True, | |
Url: "https://api.github.com/repos/mythz/ScalingDotNET", | |
Has_issues: True, | |
Fork: False, | |
Ssh_Url: "[email protected]:mythz/ScalingDotNET.git", | |
Html_Url: "https://github.com/mythz/ScalingDotNET", | |
Forks: 6, | |
Clone_Url: "https://github.com/mythz/ScalingDotNET.git", | |
Size: 572, | |
Git_Url: "git://github.com/mythz/ScalingDotNET.git", | |
Private: False, | |
Created_at: 2011-03-28T17:12:54Z, | |
Has_Wiki: True, | |
Owner: | |
{ | |
Id: 89361, | |
Login: mythz, | |
Avatar_Url: "https://secure.gravatar.com/avatar/1257196ff88132651f94ac85f662c038?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png", | |
Url: "https://api.github.com/users/mythz", | |
Gravatar_Id: 1257196ff88132651f94ac85f662c038 | |
}, | |
Name: ScalingDotNET, | |
Description: Contain information and resources for building high-perf scalable systems in .NET | |
}, | |
{ | |
Id: 1613415, | |
Open_Issues: 0, | |
Watchers: 1, | |
Pushed_At: 2011-04-14T08:57:36Z, | |
Homepage: "http://code.google.com/p/dapper-dot-net/", | |
Svn_Url: "https://github.com/mythz/dapper-dot-net", | |
Updated_At: 2012-02-06T11:00:46Z, | |
Has_Downloads: True, | |
Url: "https://api.github.com/repos/mythz/dapper-dot-net", | |
Has_issues: False, | |
Language: C#, | |
Fork: True, | |
Ssh_Url: "[email protected]:mythz/dapper-dot-net.git", | |
Html_Url: "https://github.com/mythz/dapper-dot-net", | |
Forks: 0, | |
Clone_Url: "https://github.com/mythz/dapper-dot-net.git", | |
Size: 2064, | |
Git_Url: "git://github.com/mythz/dapper-dot-net.git", | |
Private: False, | |
Created_at: 2011-04-14T09:09:11Z, | |
Has_Wiki: True, | |
Owner: | |
{ | |
Id: 89361, | |
Login: mythz, | |
Avatar_Url: "https://secure.gravatar.com/avatar/1257196ff88132651f94ac85f662c038?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png", | |
Url: "https://api.github.com/users/mythz", | |
Gravatar_Id: 1257196ff88132651f94ac85f662c038 | |
}, | |
Name: dapper-dot-net, | |
Description: Dapper | |
}, | |
{ | |
Id: 1709498, | |
Open_Issues: 0, | |
Watchers: 8, | |
Pushed_At: 2011-05-04T17:36:19Z, | |
Homepage: "http://www.servicestack.net", | |
Svn_Url: "https://github.com/mythz/ServiceStack", | |
Updated_At: 2012-02-17T09:10:59Z, | |
Has_Downloads: True, | |
Url: "https://api.github.com/repos/mythz/ServiceStack", | |
Has_issues: False, | |
Language: C#, | |
Fork: True, | |
Ssh_Url: "[email protected]:mythz/ServiceStack.git", | |
Html_Url: "https://github.com/mythz/ServiceStack", | |
Forks: 2, | |
Clone_Url: "https://github.com/mythz/ServiceStack.git", | |
Size: 16434, | |
Git_Url: "git://github.com/mythz/ServiceStack.git", | |
Private: False, | |
Created_at: 2011-05-06T02:59:56Z, | |
Has_Wiki: True, | |
Owner: | |
{ | |
Id: 89361, | |
Login: mythz, | |
Avatar_Url: "https://secure.gravatar.com/avatar/1257196ff88132651f94ac85f662c038?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png", | |
Url: "https://api.github.com/users/mythz", | |
Gravatar_Id: 1257196ff88132651f94ac85f662c038 | |
}, | |
Name: ServiceStack, | |
Description: "REST JSON, | |
XML, | |
JSV & SOAP Web Services Framework for .NET and MONO" | |
}, | |
{ | |
Id: 1709501, | |
Open_Issues: 0, | |
Watchers: 1, | |
Pushed_At: 2011-04-19T17:57:18Z, | |
Homepage: "http://www.servicestack.net", | |
Svn_Url: "https://github.com/mythz/ServiceStack.Examples", | |
Updated_At: 2011-10-04T14:49:09Z, | |
Has_Downloads: True, | |
Url: "https://api.github.com/repos/mythz/ServiceStack.Examples", | |
Has_issues: False, | |
Language: JavaScript, | |
Fork: True, | |
Ssh_Url: "[email protected]:mythz/ServiceStack.Examples.git", | |
Html_Url: "https://github.com/mythz/ServiceStack.Examples", | |
Forks: 0, | |
Clone_Url: "https://github.com/mythz/ServiceStack.Examples.git", | |
Size: 50019, | |
Git_Url: "git://github.com/mythz/ServiceStack.Examples.git", | |
Private: False, | |
Created_at: 2011-05-06T03:01:43Z, | |
Has_Wiki: True, | |
Owner: | |
{ | |
Id: 89361, | |
Login: mythz, | |
Avatar_Url: "https://secure.gravatar.com/avatar/1257196ff88132651f94ac85f662c038?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png", | |
Url: "https://api.github.com/users/mythz", | |
Gravatar_Id: 1257196ff88132651f94ac85f662c038 | |
}, | |
Name: ServiceStack.Examples, | |
Description: "Example Projects built with ServiceStack, | |
C# RedisClient, | |
OrmLite, | |
etc" | |
}, | |
{ | |
Id: 1709504, | |
Open_Issues: 0, | |
Watchers: 7, | |
Pushed_At: 2011-04-13T11:17:08Z, | |
Homepage: "http://www.servicestack.net", | |
Svn_Url: "https://github.com/mythz/ServiceStack.Redis", | |
Updated_At: 2012-03-06T01:58:06Z, | |
Has_Downloads: True, | |
Url: "https://api.github.com/repos/mythz/ServiceStack.Redis", | |
Has_issues: False, | |
Language: C#, | |
Fork: True, | |
Ssh_Url: "[email protected]:mythz/ServiceStack.Redis.git", | |
Html_Url: "https://github.com/mythz/ServiceStack.Redis", | |
Forks: 2, | |
Clone_Url: "https://github.com/mythz/ServiceStack.Redis.git", | |
Size: 3390, | |
Git_Url: "git://github.com/mythz/ServiceStack.Redis.git", | |
Private: False, | |
Created_at: 2011-05-06T03:03:36Z, | |
Has_Wiki: True, | |
Owner: | |
{ | |
Id: 89361, | |
Login: mythz, | |
Avatar_Url: "https://secure.gravatar.com/avatar/1257196ff88132651f94ac85f662c038?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png", | |
Url: "https://api.github.com/users/mythz", | |
Gravatar_Id: 1257196ff88132651f94ac85f662c038 | |
}, | |
Name: ServiceStack.Redis, | |
Description: The ServiceStack.Redis C# Client Library | |
}, | |
{ | |
Id: 1709506, | |
Open_Issues: 0, | |
Watchers: 7, | |
Pushed_At: 2011-05-05T02:54:04Z, | |
Homepage: "http://www.servicestack.net", | |
Svn_Url: "https://github.com/mythz/ServiceStack.Text", | |
Updated_At: 2012-03-06T01:56:19Z, | |
Has_Downloads: True, | |
Url: "https://api.github.com/repos/mythz/ServiceStack.Text", | |
Has_issues: False, | |
Language: C#, | |
Fork: True, | |
Ssh_Url: "[email protected]:mythz/ServiceStack.Text.git", | |
Html_Url: "https://github.com/mythz/ServiceStack.Text", | |
Forks: 1, | |
Clone_Url: "https://github.com/mythz/ServiceStack.Text.git", | |
Size: 2665, | |
Git_Url: "git://github.com/mythz/ServiceStack.Text.git", | |
Private: False, | |
Created_at: 2011-05-06T03:03:56Z, | |
Has_Wiki: True, | |
Owner: | |
{ | |
Id: 89361, | |
Login: mythz, | |
Avatar_Url: "https://secure.gravatar.com/avatar/1257196ff88132651f94ac85f662c038?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png", | |
Url: "https://api.github.com/users/mythz", | |
Gravatar_Id: 1257196ff88132651f94ac85f662c038 | |
}, | |
Name: ServiceStack.Text, | |
Description: ".NET's fastest JSON, | |
JSV and CSV Text Serializers " | |
}, | |
{ | |
Id: 1906309, | |
Open_Issues: 0, | |
Watchers: 1, | |
Pushed_At: 2011-04-19T10:21:16Z, | |
Homepage: "http://www.ajaxstack.com", | |
Svn_Url: "https://github.com/mythz/AjaxStack", | |
Updated_At: 2011-10-04T16:02:48Z, | |
Has_Downloads: True, | |
Url: "https://api.github.com/repos/mythz/AjaxStack", | |
Has_issues: False, | |
Language: JavaScript, | |
Fork: True, | |
Ssh_Url: "[email protected]:mythz/AjaxStack.git", | |
Html_Url: "https://github.com/mythz/AjaxStack", | |
Forks: 0, | |
Clone_Url: "https://github.com/mythz/AjaxStack.git", | |
Size: 1224, | |
Git_Url: "git://github.com/mythz/AjaxStack.git", | |
Private: False, | |
Created_at: 2011-06-16T15:29:41Z, | |
Has_Wiki: True, | |
Owner: | |
{ | |
Id: 89361, | |
Login: mythz, | |
Avatar_Url: "https://secure.gravatar.com/avatar/1257196ff88132651f94ac85f662c038?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png", | |
Url: "https://api.github.com/users/mythz", | |
Gravatar_Id: 1257196ff88132651f94ac85f662c038 | |
}, | |
Name: AjaxStack, | |
Description: "JavaScript libs and scripts to support Ajax/SPA apps - built the Underscore.js / Backbone.js way :)" | |
}, | |
{ | |
Id: 2810191, | |
Open_Issues: 2, | |
Watchers: 1208, | |
Pushed_At: 2012-01-28T00:21:11Z, | |
Homepage: , | |
Svn_Url: "https://github.com/mythz/jquip", | |
Updated_At: 2012-04-04T03:12:56Z, | |
Has_Downloads: True, | |
Url: "https://api.github.com/repos/mythz/jquip", | |
Has_issues: True, | |
Language: JavaScript, | |
Fork: False, | |
Ssh_Url: "[email protected]:mythz/jquip.git", | |
Html_Url: "https://github.com/mythz/jquip", | |
Forks: 50, | |
Clone_Url: "https://github.com/mythz/jquip.git", | |
Size: 156, | |
Git_Url: "git://github.com/mythz/jquip.git", | |
Private: False, | |
Created_at: 2011-11-19T18:51:59Z, | |
Has_Wiki: True, | |
Owner: | |
{ | |
Id: 89361, | |
Login: mythz, | |
Avatar_Url: "https://secure.gravatar.com/avatar/1257196ff88132651f94ac85f662c038?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png", | |
Url: "https://api.github.com/users/mythz", | |
Gravatar_Id: 1257196ff88132651f94ac85f662c038 | |
}, | |
Name: jquip, | |
Description: jQuery in Parts | |
}, | |
{ | |
Id: 3646338, | |
Open_Issues: 0, | |
Watchers: 2, | |
Pushed_At: 2012-03-07T06:34:34Z, | |
Homepage: "http://www.dartlang.org", | |
Svn_Url: "https://github.com/mythz/dart-samples", | |
Updated_At: 2012-03-19T22:00:48Z, | |
Has_Downloads: True, | |
Url: "https://api.github.com/repos/mythz/dart-samples", | |
Has_issues: True, | |
Fork: False, | |
Ssh_Url: "[email protected]:mythz/dart-samples.git", | |
Html_Url: "https://github.com/mythz/dart-samples", | |
Forks: 1, | |
Clone_Url: "https://github.com/mythz/dart-samples.git", | |
Size: 84, | |
Git_Url: "git://github.com/mythz/dart-samples.git", | |
Private: False, | |
Created_at: 2012-03-07T06:14:22Z, | |
Has_Wiki: True, | |
Owner: | |
{ | |
Id: 89361, | |
Login: mythz, | |
Avatar_Url: "https://secure.gravatar.com/avatar/1257196ff88132651f94ac85f662c038?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png", | |
Url: "https://api.github.com/users/mythz", | |
Gravatar_Id: 1257196ff88132651f94ac85f662c038 | |
}, | |
Name: dart-samples, | |
Description: "Contains tests and samples from http://code.google.com/p/dart/" | |
} | |
] | |
-- GetOrgRepos(ServiceStack): | |
[ | |
{ | |
Id: 1339922, | |
Open_Issues: 8, | |
Watchers: 592, | |
Pushed_At: 2012-04-03T19:43:45Z, | |
Homepage: "http://www.servicestack.net", | |
Svn_Url: "https://github.com/ServiceStack/ServiceStack", | |
Updated_At: 2012-04-03T19:43:46Z, | |
Has_Downloads: True, | |
Url: "https://api.github.com/repos/ServiceStack/ServiceStack", | |
Has_issues: True, | |
Language: C#, | |
Fork: False, | |
Ssh_Url: "[email protected]:ServiceStack/ServiceStack.git", | |
Html_Url: "https://github.com/ServiceStack/ServiceStack", | |
Forks: 94, | |
Clone_Url: "https://github.com/ServiceStack/ServiceStack.git", | |
Size: 35523, | |
Git_Url: "git://github.com/ServiceStack/ServiceStack.git", | |
Private: False, | |
Created_at: 2011-02-07T23:19:18Z, | |
Has_Wiki: True, | |
Owner: | |
{ | |
Id: 605728, | |
Login: ServiceStack, | |
Avatar_Url: "https://secure.gravatar.com/avatar/68b42c967a61cc653c4d21dda724877a?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png", | |
Url: "https://api.github.com/users/ServiceStack", | |
Gravatar_Id: 68b42c967a61cc653c4d21dda724877a | |
}, | |
Name: ServiceStack, | |
Description: "Code-first, | |
config/code-gen free, | |
REST+SOAP webservices for .NET/Mono" | |
}, | |
{ | |
Id: 1340005, | |
Open_Issues: 4, | |
Watchers: 75, | |
Pushed_At: 2012-03-21T18:02:24Z, | |
Homepage: "http://www.servicestack.net", | |
Svn_Url: "https://github.com/ServiceStack/ServiceStack.Examples", | |
Updated_At: 2012-03-30T01:11:59Z, | |
Has_Downloads: True, | |
Url: "https://api.github.com/repos/ServiceStack/ServiceStack.Examples", | |
Has_issues: True, | |
Language: C#, | |
Fork: False, | |
Ssh_Url: "[email protected]:ServiceStack/ServiceStack.Examples.git", | |
Html_Url: "https://github.com/ServiceStack/ServiceStack.Examples", | |
Forks: 13, | |
Clone_Url: "https://github.com/ServiceStack/ServiceStack.Examples.git", | |
Size: 61578, | |
Git_Url: "git://github.com/ServiceStack/ServiceStack.Examples.git", | |
Private: False, | |
Created_at: 2011-02-07T23:44:46Z, | |
Has_Wiki: True, | |
Owner: | |
{ | |
Id: 605728, | |
Login: ServiceStack, | |
Avatar_Url: "https://secure.gravatar.com/avatar/68b42c967a61cc653c4d21dda724877a?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png", | |
Url: "https://api.github.com/users/ServiceStack", | |
Gravatar_Id: 68b42c967a61cc653c4d21dda724877a | |
}, | |
Name: ServiceStack.Examples, | |
Description: "Example Projects built with ServiceStack, | |
C# RedisClient, | |
OrmLite, | |
etc" | |
}, | |
{ | |
Id: 1340065, | |
Open_Issues: 9, | |
Watchers: 198, | |
Pushed_At: 2012-04-04T06:55:40Z, | |
Homepage: "http://www.servicestack.net", | |
Svn_Url: "https://github.com/ServiceStack/ServiceStack.Text", | |
Updated_At: 2012-04-04T07:02:16Z, | |
Has_Downloads: True, | |
Url: "https://api.github.com/repos/ServiceStack/ServiceStack.Text", | |
Has_issues: True, | |
Language: C#, | |
Fork: False, | |
Ssh_Url: "[email protected]:ServiceStack/ServiceStack.Text.git", | |
Html_Url: "https://github.com/ServiceStack/ServiceStack.Text", | |
Forks: 75, | |
Clone_Url: "https://github.com/ServiceStack/ServiceStack.Text.git", | |
Size: 3863, | |
Git_Url: "git://github.com/ServiceStack/ServiceStack.Text.git", | |
Private: False, | |
Created_at: 2011-02-08T00:08:34Z, | |
Has_Wiki: True, | |
Owner: | |
{ | |
Id: 605728, | |
Login: ServiceStack, | |
Avatar_Url: "https://secure.gravatar.com/avatar/68b42c967a61cc653c4d21dda724877a?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png", | |
Url: "https://api.github.com/users/ServiceStack", | |
Gravatar_Id: 68b42c967a61cc653c4d21dda724877a | |
}, | |
Name: ServiceStack.Text, | |
Description: ".NET's fastest JSON, | |
JSV and CSV Text Serializers " | |
}, | |
{ | |
Id: 1340086, | |
Open_Issues: 2, | |
Watchers: 63, | |
Pushed_At: 2012-04-01T19:55:09Z, | |
Homepage: "http://www.servicestack.net", | |
Svn_Url: "https://github.com/ServiceStack/ServiceStack.OrmLite", | |
Updated_At: 2012-04-03T18:16:48Z, | |
Has_Downloads: True, | |
Url: "https://api.github.com/repos/ServiceStack/ServiceStack.OrmLite", | |
Has_issues: True, | |
Language: C#, | |
Fork: False, | |
Ssh_Url: "[email protected]:ServiceStack/ServiceStack.OrmLite.git", | |
Html_Url: "https://github.com/ServiceStack/ServiceStack.OrmLite", | |
Forks: 18, | |
Clone_Url: "https://github.com/ServiceStack/ServiceStack.OrmLite.git", | |
Size: 20315, | |
Git_Url: "git://github.com/ServiceStack/ServiceStack.OrmLite.git", | |
Private: False, | |
Created_at: 2011-02-08T00:14:57Z, | |
Has_Wiki: True, | |
Owner: | |
{ | |
Id: 605728, | |
Login: ServiceStack, | |
Avatar_Url: "https://secure.gravatar.com/avatar/68b42c967a61cc653c4d21dda724877a?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png", | |
Url: "https://api.github.com/users/ServiceStack", | |
Gravatar_Id: 68b42c967a61cc653c4d21dda724877a | |
}, | |
Name: ServiceStack.OrmLite, | |
Description: "ServiceStack.NET OrmLite - Light, | |
simple and fast convention-based POCO ORM " | |
}, | |
{ | |
Id: 1340115, | |
Open_Issues: 5, | |
Watchers: 30, | |
Pushed_At: 2012-03-18T23:03:40Z, | |
Homepage: "http://www.servicestack.net/RedisAdminUI/AjaxClient/", | |
Svn_Url: "https://github.com/ServiceStack/ServiceStack.RedisWebServices", | |
Updated_At: 2012-03-29T09:52:27Z, | |
Has_Downloads: True, | |
Url: "https://api.github.com/repos/ServiceStack/ServiceStack.RedisWebServices", | |
Has_issues: True, | |
Language: C#, | |
Fork: False, | |
Ssh_Url: "[email protected]:ServiceStack/ServiceStack.RedisWebServices.git", | |
Html_Url: "https://github.com/ServiceStack/ServiceStack.RedisWebServices", | |
Forks: 4, | |
Clone_Url: "https://github.com/ServiceStack/ServiceStack.RedisWebServices.git", | |
Size: 7137, | |
Git_Url: "git://github.com/ServiceStack/ServiceStack.RedisWebServices.git", | |
Private: False, | |
Created_at: 2011-02-08T00:22:23Z, | |
Has_Wiki: True, | |
Owner: | |
{ | |
Id: 605728, | |
Login: ServiceStack, | |
Avatar_Url: "https://secure.gravatar.com/avatar/68b42c967a61cc653c4d21dda724877a?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png", | |
Url: "https://api.github.com/users/ServiceStack", | |
Gravatar_Id: 68b42c967a61cc653c4d21dda724877a | |
}, | |
Name: ServiceStack.RedisWebServices, | |
Description: "RedisAdminUI and XML, | |
JSON, | |
JSV and SOAP Web Service layer around Redis" | |
}, | |
{ | |
Id: 1340130, | |
Open_Issues: 1, | |
Watchers: 24, | |
Pushed_At: 2012-02-29T05:17:17Z, | |
Homepage: "http://www.servicestack.net", | |
Svn_Url: "https://github.com/ServiceStack/ServiceStack.Logging", | |
Updated_At: 2012-03-24T00:42:44Z, | |
Has_Downloads: True, | |
Url: "https://api.github.com/repos/ServiceStack/ServiceStack.Logging", | |
Has_issues: True, | |
Language: C#, | |
Fork: False, | |
Ssh_Url: "[email protected]:ServiceStack/ServiceStack.Logging.git", | |
Html_Url: "https://github.com/ServiceStack/ServiceStack.Logging", | |
Forks: 5, | |
Clone_Url: "https://github.com/ServiceStack/ServiceStack.Logging.git", | |
Size: 144, | |
Git_Url: "git://github.com/ServiceStack/ServiceStack.Logging.git", | |
Private: False, | |
Created_at: 2011-02-08T00:26:06Z, | |
Has_Wiki: True, | |
Owner: | |
{ | |
Id: 605728, | |
Login: ServiceStack, | |
Avatar_Url: "https://secure.gravatar.com/avatar/68b42c967a61cc653c4d21dda724877a?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png", | |
Url: "https://api.github.com/users/ServiceStack", | |
Gravatar_Id: 68b42c967a61cc653c4d21dda724877a | |
}, | |
Name: ServiceStack.Logging, | |
Description: "Dependency and Implementation-free, | |
abstract logging interface" | |
}, | |
{ | |
Id: 1340145, | |
Open_Issues: 0, | |
Watchers: 6, | |
Pushed_At: 2012-03-16T16:20:40Z, | |
Homepage: "http://www.servicestack.net", | |
Svn_Url: "https://github.com/ServiceStack/ServiceStack.Extras", | |
Updated_At: 2012-03-16T16:20:41Z, | |
Has_Downloads: True, | |
Url: "https://api.github.com/repos/ServiceStack/ServiceStack.Extras", | |
Has_issues: True, | |
Language: C#, | |
Fork: False, | |
Ssh_Url: "[email protected]:ServiceStack/ServiceStack.Extras.git", | |
Html_Url: "https://github.com/ServiceStack/ServiceStack.Extras", | |
Forks: 4, | |
Clone_Url: "https://github.com/ServiceStack/ServiceStack.Extras.git", | |
Size: 204, | |
Git_Url: "git://github.com/ServiceStack/ServiceStack.Extras.git", | |
Private: False, | |
Created_at: 2011-02-08T00:29:25Z, | |
Has_Wiki: True, | |
Owner: | |
{ | |
Id: 605728, | |
Login: ServiceStack, | |
Avatar_Url: "https://secure.gravatar.com/avatar/68b42c967a61cc653c4d21dda724877a?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png", | |
Url: "https://api.github.com/users/ServiceStack", | |
Gravatar_Id: 68b42c967a61cc653c4d21dda724877a | |
}, | |
Name: ServiceStack.Extras, | |
Description: Related but non-critical resources for the ServiceStack project | |
}, | |
{ | |
Id: 1340170, | |
Open_Issues: 0, | |
Watchers: 3, | |
Pushed_At: 2011-02-08T01:40:29Z, | |
Homepage: "http://www.servicestack.net/mythz_blog/", | |
Svn_Url: "https://github.com/ServiceStack/MonoTouch.Examples", | |
Updated_At: 2012-03-05T05:39:43Z, | |
Has_Downloads: True, | |
Url: "https://api.github.com/repos/ServiceStack/MonoTouch.Examples", | |
Has_issues: True, | |
Language: C#, | |
Fork: False, | |
Ssh_Url: "[email protected]:ServiceStack/MonoTouch.Examples.git", | |
Html_Url: "https://github.com/ServiceStack/MonoTouch.Examples", | |
Forks: 1, | |
Clone_Url: "https://github.com/ServiceStack/MonoTouch.Examples.git", | |
Size: 5436, | |
Git_Url: "git://github.com/ServiceStack/MonoTouch.Examples.git", | |
Private: False, | |
Created_at: 2011-02-08T00:38:26Z, | |
Has_Wiki: True, | |
Owner: | |
{ | |
Id: 605728, | |
Login: ServiceStack, | |
Avatar_Url: "https://secure.gravatar.com/avatar/68b42c967a61cc653c4d21dda724877a?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png", | |
Url: "https://api.github.com/users/ServiceStack", | |
Gravatar_Id: 68b42c967a61cc653c4d21dda724877a | |
}, | |
Name: MonoTouch.Examples, | |
Description: ServiceStack examples with MonoTouch | |
}, | |
{ | |
Id: 1340184, | |
Open_Issues: 1, | |
Watchers: 7, | |
Pushed_At: 2012-02-11T07:38:57Z, | |
Homepage: "http://www.servicestack.net/mythz_blog/", | |
Svn_Url: "https://github.com/ServiceStack/ServiceStack.Benchmarks", | |
Updated_At: 2012-03-23T01:38:47Z, | |
Has_Downloads: True, | |
Url: "https://api.github.com/repos/ServiceStack/ServiceStack.Benchmarks", | |
Has_issues: True, | |
Language: C#, | |
Fork: False, | |
Ssh_Url: "[email protected]:ServiceStack/ServiceStack.Benchmarks.git", | |
Html_Url: "https://github.com/ServiceStack/ServiceStack.Benchmarks", | |
Forks: 4, | |
Clone_Url: "https://github.com/ServiceStack/ServiceStack.Benchmarks.git", | |
Size: 132, | |
Git_Url: "git://github.com/ServiceStack/ServiceStack.Benchmarks.git", | |
Private: False, | |
Created_at: 2011-02-08T00:41:08Z, | |
Has_Wiki: True, | |
Owner: | |
{ | |
Id: 605728, | |
Login: ServiceStack, | |
Avatar_Url: "https://secure.gravatar.com/avatar/68b42c967a61cc653c4d21dda724877a?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png", | |
Url: "https://api.github.com/users/ServiceStack", | |
Gravatar_Id: 68b42c967a61cc653c4d21dda724877a | |
}, | |
Name: ServiceStack.Benchmarks, | |
Description: Benchmark and performance related projects for Service Stack's components | |
}, | |
{ | |
Id: 1340215, | |
Open_Issues: 0, | |
Watchers: 4, | |
Pushed_At: 2011-02-19T23:07:42Z, | |
Homepage: "http://www.servicestack.net", | |
Svn_Url: "https://github.com/ServiceStack/ServiceStack.Owin", | |
Updated_At: 2012-03-05T05:41:44Z, | |
Has_Downloads: True, | |
Url: "https://api.github.com/repos/ServiceStack/ServiceStack.Owin", | |
Has_issues: True, | |
Language: C#, | |
Fork: False, | |
Ssh_Url: "[email protected]:ServiceStack/ServiceStack.Owin.git", | |
Html_Url: "https://github.com/ServiceStack/ServiceStack.Owin", | |
Forks: 1, | |
Clone_Url: "https://github.com/ServiceStack/ServiceStack.Owin.git", | |
Size: 2936, | |
Git_Url: "git://github.com/ServiceStack/ServiceStack.Owin.git", | |
Private: False, | |
Created_at: 2011-02-08T00:46:12Z, | |
Has_Wiki: True, | |
Owner: | |
{ | |
Id: 605728, | |
Login: ServiceStack, | |
Avatar_Url: "https://secure.gravatar.com/avatar/68b42c967a61cc653c4d21dda724877a?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png", | |
Url: "https://api.github.com/users/ServiceStack", | |
Gravatar_Id: 68b42c967a61cc653c4d21dda724877a | |
}, | |
Name: ServiceStack.Owin, | |
Description: ECMA CLI utils for Owin | |
}, | |
{ | |
Id: 1340226, | |
Open_Issues: 10, | |
Watchers: 169, | |
Pushed_At: 2012-03-23T15:17:36Z, | |
Homepage: "http://www.servicestack.net", | |
Svn_Url: "https://github.com/ServiceStack/ServiceStack.Redis", | |
Updated_At: 2012-04-03T22:50:16Z, | |
Has_Downloads: True, | |
Url: "https://api.github.com/repos/ServiceStack/ServiceStack.Redis", | |
Has_issues: True, | |
Language: C#, | |
Fork: False, | |
Ssh_Url: "[email protected]:ServiceStack/ServiceStack.Redis.git", | |
Html_Url: "https://github.com/ServiceStack/ServiceStack.Redis", | |
Forks: 28, | |
Clone_Url: "https://github.com/ServiceStack/ServiceStack.Redis.git", | |
Size: 6648, | |
Git_Url: "git://github.com/ServiceStack/ServiceStack.Redis.git", | |
Private: False, | |
Created_at: 2011-02-08T00:48:21Z, | |
Has_Wiki: True, | |
Owner: | |
{ | |
Id: 605728, | |
Login: ServiceStack, | |
Avatar_Url: "https://secure.gravatar.com/avatar/68b42c967a61cc653c4d21dda724877a?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png", | |
Url: "https://api.github.com/users/ServiceStack", | |
Gravatar_Id: 68b42c967a61cc653c4d21dda724877a | |
}, | |
Name: ServiceStack.Redis, | |
Description: The ServiceStack.Redis C# Client Library | |
}, | |
{ | |
Id: 1384811, | |
Open_Issues: 0, | |
Watchers: 10, | |
Pushed_At: 2012-01-23T07:30:35Z, | |
Homepage: "http://www.servicestack.net", | |
Svn_Url: "https://github.com/ServiceStack/ServiceStack.Contrib", | |
Updated_At: 2012-03-13T14:52:46Z, | |
Has_Downloads: True, | |
Url: "https://api.github.com/repos/ServiceStack/ServiceStack.Contrib", | |
Has_issues: True, | |
Language: C#, | |
Fork: False, | |
Ssh_Url: "[email protected]:ServiceStack/ServiceStack.Contrib.git", | |
Html_Url: "https://github.com/ServiceStack/ServiceStack.Contrib", | |
Forks: 6, | |
Clone_Url: "https://github.com/ServiceStack/ServiceStack.Contrib.git", | |
Size: 744, | |
Git_Url: "git://github.com/ServiceStack/ServiceStack.Contrib.git", | |
Private: False, | |
Created_at: 2011-02-19T00:27:02Z, | |
Has_Wiki: True, | |
Owner: | |
{ | |
Id: 605728, | |
Login: ServiceStack, | |
Avatar_Url: "https://secure.gravatar.com/avatar/68b42c967a61cc653c4d21dda724877a?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png", | |
Url: "https://api.github.com/users/ServiceStack", | |
Gravatar_Id: 68b42c967a61cc653c4d21dda724877a | |
}, | |
Name: ServiceStack.Contrib, | |
Description: "Common, | |
high-level libs and utils, | |
not core to the framework but useful to its users" | |
}, | |
{ | |
Id: 2778254, | |
Open_Issues: 1, | |
Watchers: 18, | |
Pushed_At: 2012-04-03T07:06:43Z, | |
Homepage: "http://www.servicestack.net", | |
Svn_Url: "https://github.com/ServiceStack/SocialBootstrapApi", | |
Updated_At: 2012-04-03T07:06:43Z, | |
Has_Downloads: True, | |
Url: "https://api.github.com/repos/ServiceStack/SocialBootstrapApi", | |
Has_issues: True, | |
Language: JavaScript, | |
Fork: False, | |
Ssh_Url: "[email protected]:ServiceStack/SocialBootstrapApi.git", | |
Html_Url: "https://github.com/ServiceStack/SocialBootstrapApi", | |
Forks: 5, | |
Clone_Url: "https://github.com/ServiceStack/SocialBootstrapApi.git", | |
Size: 876, | |
Git_Url: "git://github.com/ServiceStack/SocialBootstrapApi.git", | |
Private: False, | |
Created_at: 2011-11-15T06:57:52Z, | |
Has_Wiki: True, | |
Owner: | |
{ | |
Id: 605728, | |
Login: ServiceStack, | |
Avatar_Url: "https://secure.gravatar.com/avatar/68b42c967a61cc653c4d21dda724877a?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png", | |
Url: "https://api.github.com/users/ServiceStack", | |
Gravatar_Id: 68b42c967a61cc653c4d21dda724877a | |
}, | |
Name: SocialBootstrapApi, | |
Description: Bootstrap C#/.NET template for creating high performance social enabled websites and apis | |
}, | |
{ | |
Id: 3355567, | |
Open_Issues: 2, | |
Watchers: 52, | |
Pushed_At: 2012-03-16T04:56:39Z, | |
Homepage: "http://www.servicestack.net", | |
Svn_Url: "https://github.com/ServiceStack/Bundler", | |
Updated_At: 2012-03-20T15:00:04Z, | |
Has_Downloads: True, | |
Url: "https://api.github.com/repos/ServiceStack/Bundler", | |
Has_issues: True, | |
Language: JavaScript, | |
Fork: False, | |
Ssh_Url: "[email protected]:ServiceStack/Bundler.git", | |
Html_Url: "https://github.com/ServiceStack/Bundler", | |
Forks: 7, | |
Clone_Url: "https://github.com/ServiceStack/Bundler.git", | |
Size: 140, | |
Git_Url: "git://github.com/ServiceStack/Bundler.git", | |
Private: False, | |
Created_at: 2012-02-04T21:33:09Z, | |
Has_Wiki: True, | |
Owner: | |
{ | |
Id: 605728, | |
Login: ServiceStack, | |
Avatar_Url: "https://secure.gravatar.com/avatar/68b42c967a61cc653c4d21dda724877a?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png", | |
Url: "https://api.github.com/users/ServiceStack", | |
Gravatar_Id: 68b42c967a61cc653c4d21dda724877a | |
}, | |
Name: Bundler, | |
Description: "Compile, | |
Minify, | |
Combine Less/Sass/Css/JS/CoffeeScript files. Easily use from MVC." | |
} | |
] | |
-- GetUserRepo(ServiceStack,ServiceStack.Text): | |
{ | |
Id: 2810191, | |
Open_Issues: 2, | |
Watchers: 1208, | |
Pushed_At: 2012-01-28T00:21:11Z, | |
Homepage: , | |
Svn_Url: "https://github.com/mythz/jquip", | |
Updated_At: 2012-04-04T03:12:56Z, | |
Has_Downloads: True, | |
Url: "https://api.github.com/repos/mythz/jquip", | |
Has_issues: True, | |
Language: JavaScript, | |
Fork: False, | |
Ssh_Url: "[email protected]:mythz/jquip.git", | |
Html_Url: "https://github.com/mythz/jquip", | |
Forks: 50, | |
Clone_Url: "https://github.com/mythz/jquip.git", | |
Size: 156, | |
Git_Url: "git://github.com/mythz/jquip.git", | |
Private: False, | |
Created_at: 2011-11-19T18:51:59Z, | |
Has_Wiki: True, | |
Owner: | |
{ | |
Id: 89361, | |
Login: mythz, | |
Avatar_Url: "https://secure.gravatar.com/avatar/1257196ff88132651f94ac85f662c038?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png", | |
Url: "https://api.github.com/users/mythz", | |
Gravatar_Id: 1257196ff88132651f94ac85f662c038 | |
}, | |
Name: jquip, | |
Description: jQuery in Parts | |
} | |
-- GetUserRepoContributors(ServiceStack,ServiceStack.Text): | |
[ | |
{ | |
Id: 89361, | |
Login: mythz, | |
Avatar_Url: "https://secure.gravatar.com/avatar/1257196ff88132651f94ac85f662c038?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png", | |
Url: "https://api.github.com/users/mythz", | |
Gravatar_Id: 1257196ff88132651f94ac85f662c038 | |
}, | |
{ | |
Id: 1396388, | |
Login: mj1856, | |
Avatar_Url: "https://secure.gravatar.com/avatar/889cf720c96957e615463b5c903a5e18?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png", | |
Url: "https://api.github.com/users/mj1856", | |
Gravatar_Id: 889cf720c96957e615463b5c903a5e18 | |
}, | |
{ | |
Id: 1178448, | |
Login: dbeattie71, | |
Avatar_Url: "https://secure.gravatar.com/avatar/f1c9122bec3b77b6156b3d8657436fec?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png", | |
Url: "https://api.github.com/users/dbeattie71", | |
Gravatar_Id: f1c9122bec3b77b6156b3d8657436fec | |
}, | |
{ | |
Id: 96068, | |
Login: bsiegel, | |
Avatar_Url: "https://secure.gravatar.com/avatar/7560fef721f042615edab296f162f9a1?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png", | |
Url: "https://api.github.com/users/bsiegel", | |
Gravatar_Id: 7560fef721f042615edab296f162f9a1 | |
}, | |
{ | |
Id: 196044, | |
Login: danielwertheim, | |
Avatar_Url: "https://secure.gravatar.com/avatar/274ce0291206c9d27635a865ac48b5c4?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png", | |
Url: "https://api.github.com/users/danielwertheim", | |
Gravatar_Id: 274ce0291206c9d27635a865ac48b5c4 | |
}, | |
{ | |
Id: 44379, | |
Login: mdavid, | |
Avatar_Url: "https://secure.gravatar.com/avatar/80265a66e668d39bb60bae99af34f3e4?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png", | |
Url: "https://api.github.com/users/mdavid", | |
Gravatar_Id: 80265a66e668d39bb60bae99af34f3e4 | |
}, | |
{ | |
Id: 318066, | |
Login: meebey, | |
Avatar_Url: "https://secure.gravatar.com/avatar/33eb2ee73188dd34df5afacc153d4846?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png", | |
Url: "https://api.github.com/users/meebey", | |
Gravatar_Id: 33eb2ee73188dd34df5afacc153d4846 | |
}, | |
{ | |
Id: 723401, | |
Login: codedemonuk, | |
Avatar_Url: "https://secure.gravatar.com/avatar/a3e5a771b79eb30f64b72b42e349b8d9?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png", | |
Url: "https://api.github.com/users/codedemonuk", | |
Gravatar_Id: a3e5a771b79eb30f64b72b42e349b8d9 | |
}, | |
{ | |
Id: 1341543, | |
Login: franklinwise, | |
Avatar_Url: "https://secure.gravatar.com/avatar/90ea58cd0edc8910a31f8c9d136ad388?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png", | |
Url: "https://api.github.com/users/franklinwise", | |
Gravatar_Id: 90ea58cd0edc8910a31f8c9d136ad388 | |
}, | |
{ | |
Id: 140147, | |
Login: lhaussknecht, | |
Avatar_Url: "https://secure.gravatar.com/avatar/d7a94e85cc5c6ee03f93eadba7fea54a?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png", | |
Url: "https://api.github.com/users/lhaussknecht", | |
Gravatar_Id: d7a94e85cc5c6ee03f93eadba7fea54a | |
}, | |
{ | |
Id: 57436, | |
Login: damianh, | |
Avatar_Url: "https://secure.gravatar.com/avatar/e936bf226b0921257c47cfd7647e4578?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png", | |
Url: "https://api.github.com/users/damianh", | |
Gravatar_Id: e936bf226b0921257c47cfd7647e4578 | |
}, | |
{ | |
Id: 671232, | |
Login: JonCanning, | |
Avatar_Url: "https://secure.gravatar.com/avatar/75aca620beaa792102e29aaf9da18a42?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png", | |
Url: "https://api.github.com/users/JonCanning", | |
Gravatar_Id: 75aca620beaa792102e29aaf9da18a42 | |
}, | |
{ | |
Id: 394081, | |
Login: Iristyle, | |
Avatar_Url: "https://secure.gravatar.com/avatar/c807a386363efa2147c76f4769cb24ee?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png", | |
Url: "https://api.github.com/users/Iristyle", | |
Gravatar_Id: c807a386363efa2147c76f4769cb24ee | |
}, | |
{ | |
Id: 541772, | |
Login: bman654, | |
Avatar_Url: "https://secure.gravatar.com/avatar/2a3561cd6fdb6965814be3c1d652b3d9?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png", | |
Url: "https://api.github.com/users/bman654", | |
Gravatar_Id: 2a3561cd6fdb6965814be3c1d652b3d9 | |
}, | |
{ | |
Id: 946316, | |
Login: pvasek, | |
Avatar_Url: "https://secure.gravatar.com/avatar/e4db4d8b82b22eccfd80e72a49e29bde?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png", | |
Url: "https://api.github.com/users/pvasek", | |
Gravatar_Id: e4db4d8b82b22eccfd80e72a49e29bde | |
}, | |
{ | |
Id: 469192, | |
Login: danbarua, | |
Avatar_Url: "https://secure.gravatar.com/avatar/a8278e53263d0afb96fcff9afd1fd70c?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png", | |
Url: "https://api.github.com/users/danbarua", | |
Gravatar_Id: a8278e53263d0afb96fcff9afd1fd70c | |
}, | |
{ | |
Id: 1476667, | |
Login: Aurimas86, | |
Avatar_Url: "https://secure.gravatar.com/avatar/dd82bf098a391edbda78d6eed267f1bd?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png", | |
Url: "https://api.github.com/users/Aurimas86", | |
Gravatar_Id: dd82bf098a391edbda78d6eed267f1bd | |
}, | |
{ | |
Id: 470579, | |
Login: danmiser, | |
Avatar_Url: "https://secure.gravatar.com/avatar/76e866a7c062d3d91097a2efef1163e1?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png", | |
Url: "https://api.github.com/users/danmiser", | |
Gravatar_Id: 76e866a7c062d3d91097a2efef1163e1 | |
}, | |
{ | |
Id: 824570, | |
Login: paegun, | |
Avatar_Url: "https://secure.gravatar.com/avatar/4e0dcdb352f4fae59b2605c87b284f1a?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png", | |
Url: "https://api.github.com/users/paegun", | |
Gravatar_Id: 4e0dcdb352f4fae59b2605c87b284f1a | |
}, | |
{ | |
Id: 184788, | |
Login: grendello, | |
Avatar_Url: "https://secure.gravatar.com/avatar/d5849c48ffafb1cbaad1a3baa43d0d7f?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png", | |
Url: "https://api.github.com/users/grendello", | |
Gravatar_Id: d5849c48ffafb1cbaad1a3baa43d0d7f | |
}, | |
{ | |
Id: 263416, | |
Login: SteveDunn, | |
Avatar_Url: "https://secure.gravatar.com/avatar/754672131bf84b01ef8294606d8e4190?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png", | |
Url: "https://api.github.com/users/SteveDunn", | |
Gravatar_Id: 754672131bf84b01ef8294606d8e4190 | |
} | |
] | |
-- GetUserRepoWatchers(ServiceStack,ServiceStack.Text): | |
[ | |
{ | |
Id: 605728, | |
Login: ServiceStack, | |
Avatar_Url: "https://secure.gravatar.com/avatar/68b42c967a61cc653c4d21dda724877a?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png", | |
Url: "https://api.github.com/orgs/ServiceStack" | |
}, | |
{ | |
Id: 287641, | |
Login: superlogical, | |
Avatar_Url: "https://secure.gravatar.com/avatar/48a53178e9e5a2a79fbd14cabe57aa2c?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png", | |
Url: "https://api.github.com/users/superlogical", | |
Gravatar_Id: 48a53178e9e5a2a79fbd14cabe57aa2c | |
}, | |
{ | |
Id: 196044, | |
Login: danielwertheim, | |
Avatar_Url: "https://secure.gravatar.com/avatar/274ce0291206c9d27635a865ac48b5c4?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png", | |
Url: "https://api.github.com/users/danielwertheim", | |
Gravatar_Id: 274ce0291206c9d27635a865ac48b5c4 | |
}, | |
{ | |
Id: 96068, | |
Login: bsiegel, | |
Avatar_Url: "https://secure.gravatar.com/avatar/7560fef721f042615edab296f162f9a1?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png", | |
Url: "https://api.github.com/users/bsiegel", | |
Gravatar_Id: 7560fef721f042615edab296f162f9a1 | |
}, | |
{ | |
Id: 347582, | |
Login: jesusfr, | |
Avatar_Url: "https://secure.gravatar.com/avatar/05eb9185cb1603a1024cf23a68d6d977?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png", | |
Url: "https://api.github.com/users/jesusfr", | |
Gravatar_Id: 05eb9185cb1603a1024cf23a68d6d977 | |
}, | |
{ | |
Id: 47244, | |
Login: unsheeple, | |
Avatar_Url: "https://secure.gravatar.com/avatar/6efbf974f2b5153b510bea045ae6b926?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png", | |
Url: "https://api.github.com/users/unsheeple", | |
Gravatar_Id: 6efbf974f2b5153b510bea045ae6b926 | |
}, | |
{ | |
Id: 197038, | |
Login: ebersys, | |
Avatar_Url: "https://secure.gravatar.com/avatar/a58bed28c49c8bcbfb32b2db864ae5c9?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png", | |
Url: "https://api.github.com/users/ebersys", | |
Gravatar_Id: a58bed28c49c8bcbfb32b2db864ae5c9 | |
}, | |
{ | |
Id: 164303, | |
Login: vip32, | |
Avatar_Url: "https://secure.gravatar.com/avatar/1ba5a6a50b41e79dca0c34fecf40428b?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png", | |
Url: "https://api.github.com/users/vip32", | |
Gravatar_Id: 1ba5a6a50b41e79dca0c34fecf40428b | |
}, | |
{ | |
Id: 636223, | |
Login: zyhong, | |
Avatar_Url: "https://secure.gravatar.com/avatar/14ada78701886c88a95812e192f1ef73?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png", | |
Url: "https://api.github.com/users/zyhong", | |
Gravatar_Id: 14ada78701886c88a95812e192f1ef73 | |
}, | |
{ | |
Id: 697007, | |
Login: taukiev, | |
Avatar_Url: "https://secure.gravatar.com/avatar/f14a69595090e92403d118523a208117?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png", | |
Url: "https://api.github.com/users/taukiev", | |
Gravatar_Id: f14a69595090e92403d118523a208117 | |
}, | |
{ | |
Id: 37589, | |
Login: ceilingfish, | |
Avatar_Url: "https://secure.gravatar.com/avatar/bafc05c35c2812b72187911d7bbb09ab?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png", | |
Url: "https://api.github.com/users/ceilingfish", | |
Gravatar_Id: bafc05c35c2812b72187911d7bbb09ab | |
}, | |
{ | |
Id: 152243, | |
Login: nico159, | |
Avatar_Url: "https://secure.gravatar.com/avatar/881bc34b3281fe7b41f667af7c99f552?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png", | |
Url: "https://api.github.com/users/nico159", | |
Gravatar_Id: 881bc34b3281fe7b41f667af7c99f552 | |
}, | |
{ | |
Id: 184788, | |
Login: grendello, | |
Avatar_Url: "https://secure.gravatar.com/avatar/d5849c48ffafb1cbaad1a3baa43d0d7f?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png", | |
Url: "https://api.github.com/users/grendello", | |
Gravatar_Id: d5849c48ffafb1cbaad1a3baa43d0d7f | |
}, | |
{ | |
Id: 44379, | |
Login: mdavid, | |
Avatar_Url: "https://secure.gravatar.com/avatar/80265a66e668d39bb60bae99af34f3e4?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png", | |
Url: "https://api.github.com/users/mdavid", | |
Gravatar_Id: 80265a66e668d39bb60bae99af34f3e4 | |
}, | |
{ | |
Id: 59800, | |
Login: bradjonesca, | |
Avatar_Url: "https://secure.gravatar.com/avatar/5c339a6935eeeb20e6a5f87a95603b1b?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png", | |
Url: "https://api.github.com/users/bradjonesca", | |
Gravatar_Id: 5c339a6935eeeb20e6a5f87a95603b1b | |
}, | |
{ | |
Id: 176689, | |
Login: 7digital, | |
Avatar_Url: "https://secure.gravatar.com/avatar/793d9bae7c57fb6375a9e5bb2ecd6061?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png", | |
Url: "https://api.github.com/orgs/7digital" | |
}, | |
{ | |
Id: 189737, | |
Login: twopointzero, | |
Avatar_Url: "https://secure.gravatar.com/avatar/a13b7b95f049c603f78757c4e473958b?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png", | |
Url: "https://api.github.com/users/twopointzero", | |
Gravatar_Id: a13b7b95f049c603f78757c4e473958b | |
}, | |
{ | |
Id: 130185, | |
Login: polera, | |
Avatar_Url: "https://secure.gravatar.com/avatar/532b58ea565a33c609284aea248b1fb6?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png", | |
Url: "https://api.github.com/users/polera", | |
Gravatar_Id: 532b58ea565a33c609284aea248b1fb6 | |
}, | |
{ | |
Id: 562661, | |
Login: SpiritMachine, | |
Avatar_Url: "https://secure.gravatar.com/avatar/135775b8136541e81508d7f649c9e312?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png", | |
Url: "https://api.github.com/users/SpiritMachine", | |
Gravatar_Id: 135775b8136541e81508d7f649c9e312 | |
}, | |
{ | |
Id: 644398, | |
Login: muhmi, | |
Avatar_Url: "https://secure.gravatar.com/avatar/b87ee3445dd81329d727f80716323e91?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png", | |
Url: "https://api.github.com/users/muhmi", | |
Gravatar_Id: b87ee3445dd81329d727f80716323e91 | |
}, | |
{ | |
Id: 160958, | |
Login: jdluzen, | |
Avatar_Url: "https://secure.gravatar.com/avatar/d385c015293f792795f7f78612bda48d?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png", | |
Url: "https://api.github.com/users/jdluzen", | |
Gravatar_Id: d385c015293f792795f7f78612bda48d | |
}, | |
{ | |
Id: 546801, | |
Login: nuxleus, | |
Avatar_Url: "https://secure.gravatar.com/avatar/8b6f6739ca0b443aec2f3de5f6f995a1?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png", | |
Url: "https://api.github.com/orgs/nuxleus" | |
}, | |
{ | |
Id: 89361, | |
Login: mythz, | |
Avatar_Url: "https://secure.gravatar.com/avatar/1257196ff88132651f94ac85f662c038?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png", | |
Url: "https://api.github.com/users/mythz", | |
Gravatar_Id: 1257196ff88132651f94ac85f662c038 | |
}, | |
{ | |
Id: 663809, | |
Login: alexandrul, | |
Avatar_Url: "https://secure.gravatar.com/avatar/74a9c07c5b31b883768def1c4eb78782?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png", | |
Url: "https://api.github.com/users/alexandrul", | |
Gravatar_Id: 74a9c07c5b31b883768def1c4eb78782 | |
}, | |
{ | |
Id: 129971, | |
Login: wpq0, | |
Avatar_Url: "https://secure.gravatar.com/avatar/2900318e0d8640ccc7474ed90ad4554f?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png", | |
Url: "https://api.github.com/users/wpq0", | |
Gravatar_Id: 2900318e0d8640ccc7474ed90ad4554f | |
}, | |
{ | |
Id: 541772, | |
Login: bman654, | |
Avatar_Url: "https://secure.gravatar.com/avatar/2a3561cd6fdb6965814be3c1d652b3d9?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png", | |
Url: "https://api.github.com/users/bman654", | |
Gravatar_Id: 2a3561cd6fdb6965814be3c1d652b3d9 | |
}, | |
{ | |
Id: 324544, | |
Login: sombre-hombre, | |
Avatar_Url: "https://secure.gravatar.com/avatar/8e373bf9fdd0deb1eaa295a4c862073c?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png", | |
Url: "https://api.github.com/users/sombre-hombre", | |
Gravatar_Id: 8e373bf9fdd0deb1eaa295a4c862073c | |
}, | |
{ | |
Id: 228919, | |
Login: theouteredge, | |
Avatar_Url: "https://secure.gravatar.com/avatar/fb8c4da9083b5fc10a62d952384f1711?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png", | |
Url: "https://api.github.com/users/theouteredge", | |
Gravatar_Id: fb8c4da9083b5fc10a62d952384f1711 | |
}, | |
{ | |
Id: 800583, | |
Login: litera, | |
Avatar_Url: "https://secure.gravatar.com/avatar/eb12cd42a3508351122a02dbc0c4f186?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png", | |
Url: "https://api.github.com/users/litera", | |
Gravatar_Id: eb12cd42a3508351122a02dbc0c4f186 | |
}, | |
{ | |
Id: 309413, | |
Login: soeleman, | |
Avatar_Url: "https://secure.gravatar.com/avatar/3ecea3be6095add20ad1ceec1e748fb2?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png", | |
Url: "https://api.github.com/users/soeleman", | |
Gravatar_Id: 3ecea3be6095add20ad1ceec1e748fb2 | |
} | |
] | |
-- GetReposUserIsWatching(mythz): | |
[ | |
{ | |
Id: 68647, | |
Open_Issues: 2, | |
Watchers: 868, | |
Pushed_At: 2012-03-13T13:41:00Z, | |
Homepage: "http://github.com/raganwald/homoiconic/tree/master/homoiconic.markdown", | |
Svn_Url: "https://github.com/raganwald/homoiconic", | |
Updated_At: 2012-04-03T15:41:52Z, | |
Has_Downloads: True, | |
Url: "https://api.github.com/repos/raganwald/homoiconic", | |
Has_issues: True, | |
Language: Ruby, | |
Fork: False, | |
Ssh_Url: "[email protected]:raganwald/homoiconic.git", | |
Html_Url: "https://github.com/raganwald/homoiconic", | |
Forks: 27, | |
Clone_Url: "https://github.com/raganwald/homoiconic.git", | |
Size: 256, | |
Git_Url: "git://github.com/raganwald/homoiconic.git", | |
Private: False, | |
Created_at: 2008-10-28T02:36:02Z, | |
Has_Wiki: True, | |
Owner: | |
{ | |
Id: 17715, | |
Login: raganwald, | |
Avatar_Url: "https://secure.gravatar.com/avatar/6944576a4252ea5303f0b978f8604a30?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png", | |
Url: "https://api.github.com/users/raganwald", | |
Gravatar_Id: 6944576a4252ea5303f0b978f8604a30 | |
}, | |
Name: homoiconic, | |
Description: An experiment in publishing code and words about code on a small scale. | |
}, | |
{ | |
Id: 156018, | |
Open_Issues: 160, | |
Watchers: 4018, | |
Pushed_At: 2012-04-03T13:30:40Z, | |
Homepage: "http://redis.io", | |
Svn_Url: "https://github.com/antirez/redis", | |
Updated_At: 2012-04-04T06:55:22Z, | |
Has_Downloads: True, | |
Url: "https://api.github.com/repos/antirez/redis", | |
Has_issues: True, | |
Language: C, | |
Fork: False, | |
Ssh_Url: "[email protected]:antirez/redis.git", | |
Html_Url: "https://github.com/antirez/redis", | |
Forks: 565, | |
Clone_Url: "https://github.com/antirez/redis.git", | |
Size: 2592, | |
Git_Url: "git://github.com/antirez/redis.git", | |
Private: False, | |
Created_at: 2009-03-21T22:32:25Z, | |
Has_Wiki: True, | |
Owner: | |
{ | |
Id: 65632, | |
Login: antirez, | |
Avatar_Url: "https://secure.gravatar.com/avatar/7379345fed54f2447537068ed1c2e440?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png", | |
Url: "https://api.github.com/users/antirez", | |
Gravatar_Id: 7379345fed54f2447537068ed1c2e440 | |
}, | |
Name: redis, | |
Description: "Redis is an in-memory database that persists on disk. The data model is key-value, | |
but many different kind of values are supported: Strings, | |
Lists, | |
Sets, | |
Sorted Sets, | |
Hashes" | |
}, | |
{ | |
Id: 261943, | |
Open_Issues: 23, | |
Watchers: 690, | |
Pushed_At: 2012-04-03T16:28:38Z, | |
Homepage: "http://middlemanapp.com", | |
Svn_Url: "https://github.com/middleman/middleman", | |
Updated_At: 2012-04-04T01:49:40Z, | |
Has_Downloads: False, | |
Url: "https://api.github.com/repos/middleman/middleman", | |
Has_issues: True, | |
Language: Ruby, | |
Fork: False, | |
Ssh_Url: "[email protected]:middleman/middleman.git", | |
Html_Url: "https://github.com/middleman/middleman", | |
Forks: 60, | |
Clone_Url: "https://github.com/middleman/middleman.git", | |
Size: 1588, | |
Git_Url: "git://github.com/middleman/middleman.git", | |
Private: False, | |
Created_at: 2009-07-27T21:41:11Z, | |
Has_Wiki: True, | |
Owner: | |
{ | |
Id: 1280820, | |
Login: middleman, | |
Avatar_Url: "https://secure.gravatar.com/avatar/2fd3a9ecba62fd547bb1a58dea245a9c?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png", | |
Url: "https://api.github.com/users/middleman", | |
Gravatar_Id: 2fd3a9ecba62fd547bb1a58dea245a9c | |
}, | |
Name: middleman, | |
Description: Hand-crafted frontend development | |
}, | |
{ | |
Id: 349241, | |
Open_Issues: 4, | |
Watchers: 4605, | |
Pushed_At: 2012-04-03T15:49:33Z, | |
Homepage: "http://underscorejs.org", | |
Svn_Url: "https://github.com/documentcloud/underscore", | |
Updated_At: 2012-04-04T05:47:56Z, | |
Has_Downloads: True, | |
Url: "https://api.github.com/repos/documentcloud/underscore", | |
Has_issues: True, | |
Language: JavaScript, | |
Fork: False, | |
Ssh_Url: "[email protected]:documentcloud/underscore.git", | |
Html_Url: "https://github.com/documentcloud/underscore", | |
Forks: 454, | |
Clone_Url: "https://github.com/documentcloud/underscore.git", | |
Size: 968, | |
Git_Url: "git://github.com/documentcloud/underscore.git", | |
Private: False, | |
Created_at: 2009-10-25T18:31:06Z, | |
Has_Wiki: True, | |
Owner: | |
{ | |
Id: 93383, | |
Login: documentcloud, | |
Avatar_Url: "https://secure.gravatar.com/avatar/984df9bc1103ee70b636c87f414411a6?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png", | |
Url: "https://api.github.com/users/documentcloud", | |
Gravatar_Id: 984df9bc1103ee70b636c87f414411a6 | |
}, | |
Name: underscore, | |
Description: JavaScript's utility _ belt | |
}, | |
{ | |
Id: 441269, | |
Open_Issues: 246, | |
Watchers: 4830, | |
Pushed_At: 2012-03-28T01:32:40Z, | |
Homepage: "http://coffeescript.org/", | |
Svn_Url: "https://github.com/jashkenas/coffee-script", | |
Updated_At: 2012-04-04T04:26:27Z, | |
Has_Downloads: True, | |
Url: "https://api.github.com/repos/jashkenas/coffee-script", | |
Has_issues: True, | |
Language: CoffeeScript, | |
Fork: False, | |
Ssh_Url: "[email protected]:jashkenas/coffee-script.git", | |
Html_Url: "https://github.com/jashkenas/coffee-script", | |
Forks: 433, | |
Clone_Url: "https://github.com/jashkenas/coffee-script.git", | |
Size: 1664, | |
Git_Url: "git://github.com/jashkenas/coffee-script.git", | |
Private: False, | |
Created_at: 2009-12-18T01:39:53Z, | |
Has_Wiki: True, | |
Owner: | |
{ | |
Id: 4732, | |
Login: jashkenas, | |
Avatar_Url: "https://secure.gravatar.com/avatar/32652ed5b8fbd2ecdb1c78e9ac567b4b?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png", | |
Url: "https://api.github.com/users/jashkenas", | |
Gravatar_Id: 32652ed5b8fbd2ecdb1c78e9ac567b4b | |
}, | |
Name: coffee-script, | |
Description: Unfancy JavaScript | |
}, | |
{ | |
Id: 441854, | |
Open_Issues: 15, | |
Watchers: 421, | |
Pushed_At: 2012-03-24T15:22:48Z, | |
Homepage: , | |
Svn_Url: "https://github.com/evilstreak/markdown-js", | |
Updated_At: 2012-04-04T05:55:42Z, | |
Has_Downloads: True, | |
Url: "https://api.github.com/repos/evilstreak/markdown-js", | |
Has_issues: True, | |
Language: JavaScript, | |
Fork: False, | |
Ssh_Url: "[email protected]:evilstreak/markdown-js.git", | |
Html_Url: "https://github.com/evilstreak/markdown-js", | |
Forks: 46, | |
Clone_Url: "https://github.com/evilstreak/markdown-js.git", | |
Size: 140, | |
Git_Url: "git://github.com/evilstreak/markdown-js.git", | |
Private: False, | |
Created_at: 2009-12-18T15:31:48Z, | |
Has_Wiki: True, | |
Owner: | |
{ | |
Id: 74812, | |
Login: evilstreak, | |
Avatar_Url: "https://secure.gravatar.com/avatar/76b802165c7c55b9c719495d5e4dbf48?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png", | |
Url: "https://api.github.com/users/evilstreak", | |
Gravatar_Id: 76b802165c7c55b9c719495d5e4dbf48 | |
}, | |
Name: markdown-js, | |
Description: A Markdown parser for javascript | |
}, | |
{ | |
Id: 476961, | |
Open_Issues: 40, | |
Watchers: 261, | |
Pushed_At: 2012-04-02T18:01:40Z, | |
Homepage: , | |
Svn_Url: "https://github.com/migueldeicaza/MonoTouch.Dialog", | |
Updated_At: 2012-04-02T18:01:42Z, | |
Has_Downloads: True, | |
Url: "https://api.github.com/repos/migueldeicaza/MonoTouch.Dialog", | |
Has_issues: True, | |
Language: C#, | |
Fork: False, | |
Ssh_Url: "[email protected]:migueldeicaza/MonoTouch.Dialog.git", | |
Html_Url: "https://github.com/migueldeicaza/MonoTouch.Dialog", | |
Forks: 77, | |
Clone_Url: "https://github.com/migueldeicaza/MonoTouch.Dialog.git", | |
Size: 640, | |
Git_Url: "git://github.com/migueldeicaza/MonoTouch.Dialog.git", | |
Private: False, | |
Created_at: 2010-01-18T03:52:48Z, | |
Has_Wiki: True, | |
Owner: | |
{ | |
Id: 36863, | |
Login: migueldeicaza, | |
Avatar_Url: "https://secure.gravatar.com/avatar/3a9106e0c085d9a856588c454894d66b?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png", | |
Url: "https://api.github.com/users/migueldeicaza", | |
Gravatar_Id: 3a9106e0c085d9a856588c454894d66b | |
}, | |
Name: MonoTouch.Dialog, | |
Description: Tools to simplify creating dialogs with the user using MonoTouch | |
}, | |
{ | |
Id: 495753, | |
Open_Issues: 47, | |
Watchers: 415, | |
Pushed_At: 2012-03-08T15:36:16Z, | |
Homepage: , | |
Svn_Url: "https://github.com/atheken/NoRM", | |
Updated_At: 2012-04-02T21:40:14Z, | |
Has_Downloads: True, | |
Url: "https://api.github.com/repos/atheken/NoRM", | |
Has_issues: True, | |
Language: C#, | |
Fork: False, | |
Ssh_Url: "[email protected]:atheken/NoRM.git", | |
Html_Url: "https://github.com/atheken/NoRM", | |
Forks: 85, | |
Clone_Url: "https://github.com/atheken/NoRM.git", | |
Size: 1996, | |
Git_Url: "git://github.com/atheken/NoRM.git", | |
Private: False, | |
Created_at: 2010-01-31T03:01:50Z, | |
Has_Wiki: True, | |
Owner: | |
{ | |
Id: 35329, | |
Login: atheken, | |
Avatar_Url: "https://secure.gravatar.com/avatar/2891c339d01aacb98398372ae3809bfa?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png", | |
Url: "https://api.github.com/users/atheken", | |
Gravatar_Id: 2891c339d01aacb98398372ae3809bfa | |
}, | |
Name: NoRM, | |
Description: NoRM is a MongoDB driver for .Net designed to provide access to strongly/statically-typed documents and collections. | |
}, | |
{ | |
Id: 590295, | |
Open_Issues: 15, | |
Watchers: 604, | |
Pushed_At: 2012-01-07T03:03:27Z, | |
Homepage: , | |
Svn_Url: "https://github.com/creationix/wheat", | |
Updated_At: 2012-04-04T01:55:40Z, | |
Has_Downloads: True, | |
Url: "https://api.github.com/repos/creationix/wheat", | |
Has_issues: True, | |
Language: JavaScript, | |
Fork: False, | |
Ssh_Url: "[email protected]:creationix/wheat.git", | |
Html_Url: "https://github.com/creationix/wheat", | |
Forks: 67, | |
Clone_Url: "https://github.com/creationix/wheat.git", | |
Size: 180, | |
Git_Url: "git://github.com/creationix/wheat.git", | |
Private: False, | |
Created_at: 2010-04-01T15:18:08Z, | |
Has_Wiki: True, | |
Owner: | |
{ | |
Id: 89353, | |
Login: creationix, | |
Avatar_Url: "https://secure.gravatar.com/avatar/c953ddd239707998340e1a6fbb3eeb46?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png", | |
Url: "https://api.github.com/users/creationix", | |
Gravatar_Id: c953ddd239707998340e1a6fbb3eeb46 | |
}, | |
Name: wheat, | |
Description: Wheat is a blog engine for coders written in node.JS | |
}, | |
{ | |
Id: 678462, | |
Open_Issues: 5, | |
Watchers: 171, | |
Pushed_At: 2012-03-13T01:25:53Z, | |
Homepage: "http://dkdevelopment.net/what-im-doing/dropnet/", | |
Svn_Url: "https://github.com/dkarzon/DropNet", | |
Updated_At: 2012-03-28T00:53:17Z, | |
Has_Downloads: True, | |
Url: "https://api.github.com/repos/dkarzon/DropNet", | |
Has_issues: True, | |
Language: C#, | |
Fork: False, | |
Ssh_Url: "[email protected]:dkarzon/DropNet.git", | |
Html_Url: "https://github.com/dkarzon/DropNet", | |
Forks: 32, | |
Clone_Url: "https://github.com/dkarzon/DropNet.git", | |
Size: 228, | |
Git_Url: "git://github.com/dkarzon/DropNet.git", | |
Private: False, | |
Created_at: 2010-05-21T05:36:13Z, | |
Has_Wiki: True, | |
Owner: | |
{ | |
Id: 214449, | |
Login: dkarzon, | |
Avatar_Url: "https://secure.gravatar.com/avatar/1ea2829caf0b9135cd7ece795ccde774?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png", | |
Url: "https://api.github.com/users/dkarzon", | |
Gravatar_Id: 1ea2829caf0b9135cd7ece795ccde774 | |
}, | |
Name: DropNet, | |
Description: Client Library for the Dropbox API | |
}, | |
{ | |
Id: 698041, | |
Open_Issues: 65, | |
Watchers: 2022, | |
Pushed_At: 2012-03-12T21:19:48Z, | |
Homepage: , | |
Svn_Url: "https://github.com/caolan/async", | |
Updated_At: 2012-04-04T05:43:43Z, | |
Has_Downloads: True, | |
Url: "https://api.github.com/repos/caolan/async", | |
Has_issues: True, | |
Language: JavaScript, | |
Fork: False, | |
Ssh_Url: "[email protected]:caolan/async.git", | |
Html_Url: "https://github.com/caolan/async", | |
Forks: 107, | |
Clone_Url: "https://github.com/caolan/async.git", | |
Size: 360, | |
Git_Url: "git://github.com/caolan/async.git", | |
Private: False, | |
Created_at: 2010-06-01T21:01:30Z, | |
Has_Wiki: True, | |
Owner: | |
{ | |
Id: 5274, | |
Login: caolan, | |
Avatar_Url: "https://secure.gravatar.com/avatar/a12f0df529117f01505bfd072f65bacc?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png", | |
Url: "https://api.github.com/users/caolan", | |
Gravatar_Id: a12f0df529117f01505bfd072f65bacc | |
}, | |
Name: async, | |
Description: Async utilities for node and the browser | |
}, | |
{ | |
Id: 839076, | |
Open_Issues: 92, | |
Watchers: 2349, | |
Pushed_At: 2012-03-31T06:02:46Z, | |
Homepage: "http://marijn.haverbeke.nl/uglifyjs", | |
Svn_Url: "https://github.com/mishoo/UglifyJS", | |
Updated_At: 2012-04-04T06:00:56Z, | |
Has_Downloads: True, | |
Url: "https://api.github.com/repos/mishoo/UglifyJS", | |
Has_issues: True, | |
Language: JavaScript, | |
Fork: False, | |
Ssh_Url: "[email protected]:mishoo/UglifyJS.git", | |
Html_Url: "https://github.com/mishoo/UglifyJS", | |
Forks: 152, | |
Clone_Url: "https://github.com/mishoo/UglifyJS.git", | |
Size: 780, | |
Git_Url: "git://github.com/mishoo/UglifyJS.git", | |
Private: False, | |
Created_at: 2010-08-15T11:51:16Z, | |
Has_Wiki: True, | |
Owner: | |
{ | |
Id: 334725, | |
Login: mishoo, | |
Avatar_Url: "https://secure.gravatar.com/avatar/8a966def06bd0f3e02f1af3570ec42a9?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png", | |
Url: "https://api.github.com/users/mishoo", | |
Gravatar_Id: 8a966def06bd0f3e02f1af3570ec42a9 | |
}, | |
Name: UglifyJS, | |
Description: JavaScript parser / mangler / compressor / beautifier library for NodeJS | |
}, | |
{ | |
Id: 886709, | |
Open_Issues: 38, | |
Watchers: 777, | |
Pushed_At: 2011-10-26T01:50:57Z, | |
Homepage: coffeekup.org, | |
Svn_Url: "https://github.com/mauricemach/coffeekup", | |
Updated_At: 2012-04-03T15:46:38Z, | |
Has_Downloads: True, | |
Url: "https://api.github.com/repos/mauricemach/coffeekup", | |
Has_issues: True, | |
Language: CoffeeScript, | |
Fork: False, | |
Ssh_Url: "[email protected]:mauricemach/coffeekup.git", | |
Html_Url: "https://github.com/mauricemach/coffeekup", | |
Forks: 66, | |
Clone_Url: "https://github.com/mauricemach/coffeekup.git", | |
Size: 348, | |
Git_Url: "git://github.com/mauricemach/coffeekup.git", | |
Private: False, | |
Created_at: 2010-09-03T21:33:59Z, | |
Has_Wiki: True, | |
Owner: | |
{ | |
Id: 161899, | |
Login: mauricemach, | |
Avatar_Url: "https://secure.gravatar.com/avatar/6b835defb1c746d0cd51b91a3be26fda?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png", | |
Url: "https://api.github.com/users/mauricemach", | |
Gravatar_Id: 6b835defb1c746d0cd51b91a3be26fda | |
}, | |
Name: coffeekup, | |
Description: Markup as CoffeeScript. | |
}, | |
{ | |
Id: 908893, | |
Open_Issues: 52, | |
Watchers: 1210, | |
Pushed_At: 2012-03-06T02:04:19Z, | |
Homepage: , | |
Svn_Url: "https://github.com/mranney/node_redis", | |
Updated_At: 2012-04-04T04:08:33Z, | |
Has_Downloads: True, | |
Url: "https://api.github.com/repos/mranney/node_redis", | |
Has_issues: True, | |
Language: JavaScript, | |
Fork: False, | |
Ssh_Url: "[email protected]:mranney/node_redis.git", | |
Html_Url: "https://github.com/mranney/node_redis", | |
Forks: 96, | |
Clone_Url: "https://github.com/mranney/node_redis.git", | |
Size: 264, | |
Git_Url: "git://github.com/mranney/node_redis.git", | |
Private: False, | |
Created_at: 2010-09-14T02:05:09Z, | |
Has_Wiki: True, | |
Owner: | |
{ | |
Id: 210141, | |
Login: mranney, | |
Avatar_Url: "https://secure.gravatar.com/avatar/f2602cabcccbe70f6e73e0c86379921d?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png", | |
Url: "https://api.github.com/users/mranney", | |
Gravatar_Id: f2602cabcccbe70f6e73e0c86379921d | |
}, | |
Name: node_redis, | |
Description: redis client for node | |
}, | |
{ | |
Id: 919872, | |
Open_Issues: 22, | |
Watchers: 475, | |
Pushed_At: 2011-12-30T16:57:54Z, | |
Homepage: , | |
Svn_Url: "https://github.com/sstephenson/stitch", | |
Updated_At: 2012-04-03T15:23:54Z, | |
Has_Downloads: True, | |
Url: "https://api.github.com/repos/sstephenson/stitch", | |
Has_issues: True, | |
Language: CoffeeScript, | |
Fork: False, | |
Ssh_Url: "[email protected]:sstephenson/stitch.git", | |
Html_Url: "https://github.com/sstephenson/stitch", | |
Forks: 46, | |
Clone_Url: "https://github.com/sstephenson/stitch.git", | |
Size: 170, | |
Git_Url: "git://github.com/sstephenson/stitch.git", | |
Private: False, | |
Created_at: 2010-09-18T01:20:47Z, | |
Has_Wiki: False, | |
Owner: | |
{ | |
Id: 2603, | |
Login: sstephenson, | |
Avatar_Url: "https://secure.gravatar.com/avatar/5b9fe87ec1faa67a4599782930f45ec9?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png", | |
Url: "https://api.github.com/users/sstephenson", | |
Gravatar_Id: 5b9fe87ec1faa67a4599782930f45ec9 | |
}, | |
Name: stitch, | |
Description: Stitch your CommonJS modules together for the browser | |
}, | |
{ | |
Id: 924303, | |
Open_Issues: 76, | |
Watchers: 3174, | |
Pushed_At: 2012-04-04T05:57:03Z, | |
Homepage: "http://zeptojs.com", | |
Svn_Url: "https://github.com/madrobby/zepto", | |
Updated_At: 2012-04-04T06:42:12Z, | |
Has_Downloads: True, | |
Url: "https://api.github.com/repos/madrobby/zepto", | |
Has_issues: True, | |
Language: JavaScript, | |
Fork: False, | |
Ssh_Url: "[email protected]:madrobby/zepto.git", | |
Html_Url: "https://github.com/madrobby/zepto", | |
Forks: 354, | |
Clone_Url: "https://github.com/madrobby/zepto.git", | |
Size: 612, | |
Git_Url: "git://github.com/madrobby/zepto.git", | |
Private: False, | |
Created_at: 2010-09-20T07:57:57Z, | |
Has_Wiki: True, | |
Owner: | |
{ | |
Id: 3390, | |
Login: madrobby, | |
Avatar_Url: "https://secure.gravatar.com/avatar/45a56e3c82b30baa66752aec1464b889?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png", | |
Url: "https://api.github.com/users/madrobby", | |
Gravatar_Id: 45a56e3c82b30baa66752aec1464b889 | |
}, | |
Name: zepto, | |
Description: "Zepto.js is a minimalist JavaScript framework for modern browsers, | |
with a jQuery-compatible API" | |
}, | |
{ | |
Id: 952189, | |
Open_Issues: 10, | |
Watchers: 7236, | |
Pushed_At: 2012-04-02T21:35:34Z, | |
Homepage: "http://backbonejs.org", | |
Svn_Url: "https://github.com/documentcloud/backbone", | |
Updated_At: 2012-04-04T03:58:49Z, | |
Has_Downloads: True, | |
Url: "https://api.github.com/repos/documentcloud/backbone", | |
Has_issues: True, | |
Language: JavaScript, | |
Fork: False, | |
Ssh_Url: "[email protected]:documentcloud/backbone.git", | |
Html_Url: "https://github.com/documentcloud/backbone", | |
Forks: 969, | |
Clone_Url: "https://github.com/documentcloud/backbone.git", | |
Size: 4752, | |
Git_Url: "git://github.com/documentcloud/backbone.git", | |
Private: False, | |
Created_at: 2010-09-30T19:41:28Z, | |
Has_Wiki: True, | |
Owner: | |
{ | |
Id: 93383, | |
Login: documentcloud, | |
Avatar_Url: "https://secure.gravatar.com/avatar/984df9bc1103ee70b636c87f414411a6?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png", | |
Url: "https://api.github.com/users/documentcloud", | |
Gravatar_Id: 984df9bc1103ee70b636c87f414411a6 | |
}, | |
Name: backbone, | |
Description: "Give your JS App some Backbone with Models, | |
Views, | |
Collections, | |
and Events" | |
}, | |
{ | |
Id: 1013319, | |
Open_Issues: 38, | |
Watchers: 854, | |
Pushed_At: 2011-11-23T00:17:43Z, | |
Homepage: zappajs.org, | |
Svn_Url: "https://github.com/mauricemach/zappa", | |
Updated_At: 2012-04-03T16:04:40Z, | |
Has_Downloads: True, | |
Url: "https://api.github.com/repos/mauricemach/zappa", | |
Has_issues: True, | |
Language: CoffeeScript, | |
Fork: False, | |
Ssh_Url: "[email protected]:mauricemach/zappa.git", | |
Html_Url: "https://github.com/mauricemach/zappa", | |
Forks: 58, | |
Clone_Url: "https://github.com/mauricemach/zappa.git", | |
Size: 596, | |
Git_Url: "git://github.com/mauricemach/zappa.git", | |
Private: False, | |
Created_at: 2010-10-21T20:29:02Z, | |
Has_Wiki: True, | |
Owner: | |
{ | |
Id: 161899, | |
Login: mauricemach, | |
Avatar_Url: "https://secure.gravatar.com/avatar/6b835defb1c746d0cd51b91a3be26fda?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png", | |
Url: "https://api.github.com/users/mauricemach", | |
Gravatar_Id: 6b835defb1c746d0cd51b91a3be26fda | |
}, | |
Name: zappa, | |
Description: Node development for the lazy. | |
}, | |
{ | |
Id: 1014006, | |
Open_Issues: 5, | |
Watchers: 110, | |
Pushed_At: 2012-04-04T05:38:35Z, | |
Homepage: , | |
Svn_Url: "https://github.com/statianzo/Fleck", | |
Updated_At: 2012-04-04T05:38:35Z, | |
Has_Downloads: True, | |
Url: "https://api.github.com/repos/statianzo/Fleck", | |
Has_issues: True, | |
Language: C#, | |
Fork: False, | |
Ssh_Url: "[email protected]:statianzo/Fleck.git", | |
Html_Url: "https://github.com/statianzo/Fleck", | |
Forks: 19, | |
Clone_Url: "https://github.com/statianzo/Fleck.git", | |
Size: 228, | |
Git_Url: "git://github.com/statianzo/Fleck.git", | |
Private: False, | |
Created_at: 2010-10-22T02:35:09Z, | |
Has_Wiki: False, | |
Owner: | |
{ | |
Id: 57737, | |
Login: statianzo, | |
Avatar_Url: "https://secure.gravatar.com/avatar/80672dd153cf461c5f4e0bf760b3c7c5?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png", | |
Url: "https://api.github.com/users/statianzo", | |
Gravatar_Id: 80672dd153cf461c5f4e0bf760b3c7c5 | |
}, | |
Name: Fleck, | |
Description: C# Websocket Implementation | |
}, | |
{ | |
Id: 1073330, | |
Open_Issues: 0, | |
Watchers: 13, | |
Pushed_At: 2011-12-23T16:15:51Z, | |
Homepage: , | |
Svn_Url: "https://github.com/garuma/apachai", | |
Updated_At: 2012-02-28T03:49:36Z, | |
Has_Downloads: True, | |
Url: "https://api.github.com/repos/garuma/apachai", | |
Has_issues: True, | |
Language: C#, | |
Fork: False, | |
Ssh_Url: "[email protected]:garuma/apachai.git", | |
Html_Url: "https://github.com/garuma/apachai", | |
Forks: 4, | |
Clone_Url: "https://github.com/garuma/apachai.git", | |
Size: 1236, | |
Git_Url: "git://github.com/garuma/apachai.git", | |
Private: False, | |
Created_at: 2010-11-12T00:51:18Z, | |
Has_Wiki: True, | |
Owner: | |
{ | |
Id: 104105, | |
Login: garuma, | |
Avatar_Url: "https://secure.gravatar.com/avatar/167f2c9daf3e040134359926747a510b?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png", | |
Url: "https://api.github.com/users/garuma", | |
Gravatar_Id: 167f2c9daf3e040134359926747a510b | |
}, | |
Name: apachai, | |
Description: Picture uploading for the rest of us | |
}, | |
{ | |
Id: 1118080, | |
Open_Issues: 0, | |
Watchers: 3, | |
Pushed_At: 2011-01-20T23:03:15Z, | |
Homepage: "http://www.servicestack.net", | |
Svn_Url: "https://github.com/mythz/MonoTouch.Examples", | |
Updated_At: 2012-01-02T20:37:33Z, | |
Has_Downloads: True, | |
Url: "https://api.github.com/repos/mythz/MonoTouch.Examples", | |
Has_issues: True, | |
Language: C#, | |
Fork: False, | |
Ssh_Url: "[email protected]:mythz/MonoTouch.Examples.git", | |
Html_Url: "https://github.com/mythz/MonoTouch.Examples", | |
Forks: 1, | |
Clone_Url: "https://github.com/mythz/MonoTouch.Examples.git", | |
Size: 5552, | |
Git_Url: "git://github.com/mythz/MonoTouch.Examples.git", | |
Private: False, | |
Created_at: 2010-11-28T00:50:47Z, | |
Has_Wiki: True, | |
Owner: | |
{ | |
Id: 89361, | |
Login: mythz, | |
Avatar_Url: "https://secure.gravatar.com/avatar/1257196ff88132651f94ac85f662c038?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png", | |
Url: "https://api.github.com/users/mythz", | |
Gravatar_Id: 1257196ff88132651f94ac85f662c038 | |
}, | |
Name: MonoTouch.Examples, | |
Description: ServiceStack examples with MonoTouch | |
}, | |
{ | |
Id: 1147627, | |
Open_Issues: 16, | |
Watchers: 69, | |
Pushed_At: 2012-03-26T04:13:39Z, | |
Homepage: "http://owin.org", | |
Svn_Url: "https://github.com/owin/gate", | |
Updated_At: 2012-03-31T04:30:23Z, | |
Has_Downloads: True, | |
Url: "https://api.github.com/repos/owin/gate", | |
Has_issues: True, | |
Language: C#, | |
Fork: False, | |
Ssh_Url: "[email protected]:owin/gate.git", | |
Html_Url: "https://github.com/owin/gate", | |
Forks: 9, | |
Clone_Url: "https://github.com/owin/gate.git", | |
Size: 214, | |
Git_Url: "git://github.com/owin/gate.git", | |
Private: False, | |
Created_at: 2010-12-07T20:13:06Z, | |
Has_Wiki: True, | |
Owner: | |
{ | |
Id: 512438, | |
Login: owin, | |
Avatar_Url: "https://secure.gravatar.com/avatar/38c7c85de408bd20650604288c440389?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png", | |
Url: "https://api.github.com/users/owin", | |
Gravatar_Id: 38c7c85de408bd20650604288c440389 | |
}, | |
Name: gate, | |
Description: Utilities for working with OWIN | |
}, | |
{ | |
Id: 1162709, | |
Open_Issues: 8, | |
Watchers: 147, | |
Pushed_At: 2012-03-21T16:28:00Z, | |
Homepage: , | |
Svn_Url: "https://github.com/fsharp/fsharp", | |
Updated_At: 2012-04-03T22:24:16Z, | |
Has_Downloads: True, | |
Url: "https://api.github.com/repos/fsharp/fsharp", | |
Has_issues: True, | |
Language: F#, | |
Fork: False, | |
Ssh_Url: "[email protected]:fsharp/fsharp.git", | |
Html_Url: "https://github.com/fsharp/fsharp", | |
Forks: 19, | |
Clone_Url: "https://github.com/fsharp/fsharp.git", | |
Size: 2216, | |
Git_Url: "git://github.com/fsharp/fsharp.git", | |
Private: False, | |
Created_at: 2010-12-13T00:19:52Z, | |
Has_Wiki: True, | |
Owner: | |
{ | |
Id: 485415, | |
Login: fsharp, | |
Avatar_Url: "https://secure.gravatar.com/avatar/052a25d1083586c2a105144906590eda?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png", | |
Url: "https://api.github.com/users/fsharp", | |
Gravatar_Id: 052a25d1083586c2a105144906590eda | |
}, | |
Name: fsharp, | |
Description: The F# Compiler | |
}, | |
{ | |
Id: 1166377, | |
Open_Issues: 12, | |
Watchers: 263, | |
Pushed_At: 2012-04-01T18:47:19Z, | |
Homepage: "http://kayakhttp.com", | |
Svn_Url: "https://github.com/kayak/kayak", | |
Updated_At: 2012-04-02T23:43:31Z, | |
Has_Downloads: True, | |
Url: "https://api.github.com/repos/kayak/kayak", | |
Has_issues: True, | |
Language: C#, | |
Fork: False, | |
Ssh_Url: "[email protected]:kayak/kayak.git", | |
Html_Url: "https://github.com/kayak/kayak", | |
Forks: 29, | |
Clone_Url: "https://github.com/kayak/kayak.git", | |
Size: 228, | |
Git_Url: "git://github.com/kayak/kayak.git", | |
Private: False, | |
Created_at: 2010-12-13T23:10:11Z, | |
Has_Wiki: True, | |
Owner: | |
{ | |
Id: 521891, | |
Login: kayak, | |
Avatar_Url: "https://secure.gravatar.com/avatar/4c8540173437628f8841e778aac83b12?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png", | |
Url: "https://api.github.com/users/kayak", | |
Gravatar_Id: 4c8540173437628f8841e778aac83b12 | |
}, | |
Name: kayak, | |
Description: event-driven networking library for .NET | |
}, | |
{ | |
Id: 1188837, | |
Open_Issues: 0, | |
Watchers: 21, | |
Pushed_At: 2011-02-08T19:09:14Z, | |
Homepage: , | |
Svn_Url: "https://github.com/markrendle/Fix", | |
Updated_At: 2012-01-21T20:14:05Z, | |
Has_Downloads: True, | |
Url: "https://api.github.com/repos/markrendle/Fix", | |
Has_issues: True, | |
Language: C#, | |
Fork: False, | |
Ssh_Url: "[email protected]:markrendle/Fix.git", | |
Html_Url: "https://github.com/markrendle/Fix", | |
Forks: 1, | |
Clone_Url: "https://github.com/markrendle/Fix.git", | |
Size: 2400, | |
Git_Url: "git://github.com/markrendle/Fix.git", | |
Private: False, | |
Created_at: 2010-12-22T00:27:22Z, | |
Has_Wiki: True, | |
Owner: | |
{ | |
Id: 178242, | |
Login: markrendle, | |
Avatar_Url: "https://secure.gravatar.com/avatar/cc060db2b5331d8cbbfe080cec4add6f?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png", | |
Url: "https://api.github.com/users/markrendle", | |
Gravatar_Id: cc060db2b5331d8cbbfe080cec4add6f | |
}, | |
Name: Fix, | |
Description: "An ultra-lightweight web glue for .NET, | |
written in C#." | |
}, | |
{ | |
Id: 1207491, | |
Open_Issues: 44, | |
Watchers: 239, | |
Pushed_At: 2011-03-17T03:13:40Z, | |
Homepage: , | |
Svn_Url: "https://github.com/unspace/faux", | |
Updated_At: 2012-03-30T04:01:51Z, | |
Has_Downloads: True, | |
Url: "https://api.github.com/repos/unspace/faux", | |
Has_issues: True, | |
Language: JavaScript, | |
Fork: False, | |
Ssh_Url: "[email protected]:unspace/faux.git", | |
Html_Url: "https://github.com/unspace/faux", | |
Forks: 6, | |
Clone_Url: "https://github.com/unspace/faux.git", | |
Size: 3536, | |
Git_Url: "git://github.com/unspace/faux.git", | |
Private: False, | |
Created_at: 2010-12-30T02:13:06Z, | |
Has_Wiki: True, | |
Owner: | |
{ | |
Id: 8743, | |
Login: unspace, | |
Avatar_Url: "https://secure.gravatar.com/avatar/5c6c577864a05e32c3d3ec37703a4b48?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png", | |
Url: "https://api.github.com/users/unspace", | |
Gravatar_Id: 5c6c577864a05e32c3d3ec37703a4b48 | |
}, | |
Name: faux, | |
Description: "Use convention over configuration to host your views and controllers in a ""single page browser application""" | |
}, | |
{ | |
Id: 1229233, | |
Open_Issues: 8, | |
Watchers: 27, | |
Pushed_At: 2011-09-12T20:20:05Z, | |
Homepage: , | |
Svn_Url: "https://github.com/toptensoftware/markdowndeep", | |
Updated_At: 2012-04-03T22:44:46Z, | |
Has_Downloads: True, | |
Url: "https://api.github.com/repos/toptensoftware/markdowndeep", | |
Has_issues: True, | |
Language: JavaScript, | |
Fork: False, | |
Ssh_Url: "[email protected]:toptensoftware/markdowndeep.git", | |
Html_Url: "https://github.com/toptensoftware/markdowndeep", | |
Forks: 10, | |
Clone_Url: "https://github.com/toptensoftware/markdowndeep.git", | |
Size: 1104, | |
Git_Url: "git://github.com/toptensoftware/markdowndeep.git", | |
Private: False, | |
Created_at: 2011-01-07T10:48:53Z, | |
Has_Wiki: True, | |
Owner: | |
{ | |
Id: 179862, | |
Login: toptensoftware, | |
Avatar_Url: "https://secure.gravatar.com/avatar/7104665aae2b28ca04d52c447c302540?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png", | |
Url: "https://api.github.com/users/toptensoftware", | |
Gravatar_Id: 7104665aae2b28ca04d52c447c302540 | |
}, | |
Name: markdowndeep, | |
Description: Open-source implementation of Markdown for C# and Javascript | |
}, | |
{ | |
Id: 1254218, | |
Open_Issues: 9, | |
Watchers: 1713, | |
Pushed_At: 2012-03-29T17:29:34Z, | |
Homepage: www.socketstream.org, | |
Svn_Url: "https://github.com/socketstream/socketstream", | |
Updated_At: 2012-04-04T04:19:10Z, | |
Has_Downloads: True, | |
Url: "https://api.github.com/repos/socketstream/socketstream", | |
Has_issues: True, | |
Language: JavaScript, | |
Fork: False, | |
Ssh_Url: "[email protected]:socketstream/socketstream.git", | |
Html_Url: "https://github.com/socketstream/socketstream", | |
Forks: 94, | |
Clone_Url: "https://github.com/socketstream/socketstream.git", | |
Size: 208, | |
Git_Url: "git://github.com/socketstream/socketstream.git", | |
Private: False, | |
Created_at: 2011-01-14T11:47:16Z, | |
Has_Wiki: False, | |
Owner: | |
{ | |
Id: 526115, | |
Login: socketstream, | |
Avatar_Url: "https://secure.gravatar.com/avatar/427b833c7d91b9bfa9562aee11397023?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png", | |
Url: "https://api.github.com/users/socketstream", | |
Gravatar_Id: 427b833c7d91b9bfa9562aee11397023 | |
}, | |
Name: socketstream, | |
Description: "A fast, | |
modular Node.js web framework dedicated to building realtime single-page apps" | |
}, | |
{ | |
Id: 1266928, | |
Open_Issues: 2, | |
Watchers: 25, | |
Pushed_At: 2012-04-01T20:07:37Z, | |
Homepage: "http://bvanderveen.com", | |
Svn_Url: "https://github.com/bvanderveen/httpmachine", | |
Updated_At: 2012-04-01T20:07:38Z, | |
Has_Downloads: True, | |
Url: "https://api.github.com/repos/bvanderveen/httpmachine", | |
Has_issues: True, | |
Language: C#, | |
Fork: False, | |
Ssh_Url: "[email protected]:bvanderveen/httpmachine.git", | |
Html_Url: "https://github.com/bvanderveen/httpmachine", | |
Forks: 7, | |
Clone_Url: "https://github.com/bvanderveen/httpmachine.git", | |
Size: 152, | |
Git_Url: "git://github.com/bvanderveen/httpmachine.git", | |
Private: False, | |
Created_at: 2011-01-18T12:05:56Z, | |
Has_Wiki: True, | |
Owner: | |
{ | |
Id: 117276, | |
Login: bvanderveen, | |
Avatar_Url: "https://secure.gravatar.com/avatar/3a6fa82776b1210043b28ae6872e0451?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png", | |
Url: "https://api.github.com/users/bvanderveen", | |
Gravatar_Id: 3a6fa82776b1210043b28ae6872e0451 | |
}, | |
Name: httpmachine, | |
Description: C# HTTP Request Parser | |
}, | |
{ | |
Id: 1276752, | |
Open_Issues: 14, | |
Watchers: 896, | |
Pushed_At: 2012-04-03T12:59:14Z, | |
Homepage: brunch.io, | |
Svn_Url: "https://github.com/brunch/brunch", | |
Updated_At: 2012-04-04T02:12:36Z, | |
Has_Downloads: True, | |
Url: "https://api.github.com/repos/brunch/brunch", | |
Has_issues: True, | |
Language: CoffeeScript, | |
Fork: False, | |
Ssh_Url: "[email protected]:brunch/brunch.git", | |
Html_Url: "https://github.com/brunch/brunch", | |
Forks: 73, | |
Clone_Url: "https://github.com/brunch/brunch.git", | |
Size: 292, | |
Git_Url: "git://github.com/brunch/brunch.git", | |
Private: False, | |
Created_at: 2011-01-21T00:59:55Z, | |
Has_Wiki: True, | |
Owner: | |
{ | |
Id: 575509, | |
Login: brunch, | |
Avatar_Url: "https://secure.gravatar.com/avatar/1954f9469e559823dccd9a81703da911?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png", | |
Url: "https://api.github.com/users/brunch", | |
Gravatar_Id: 1954f9469e559823dccd9a81703da911 | |
}, | |
Name: brunch, | |
Description: A lightweight approach to building HTML5 applications with emphasis on elegance and simplicity. | |
} | |
] | |
-- GetUserOrgs(mythz): | |
[ | |
{ | |
Id: 605728, | |
Avatar_Url: "https://secure.gravatar.com/avatar/68b42c967a61cc653c4d21dda724877a?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png", | |
Url: "https://api.github.com/orgs/ServiceStack", | |
Login: ServiceStack | |
} | |
] | |
-- GetUserFollowers(mythz): | |
[ | |
{ | |
Id: 44379, | |
Login: mdavid, | |
Avatar_Url: "https://secure.gravatar.com/avatar/80265a66e668d39bb60bae99af34f3e4?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png", | |
Url: "https://api.github.com/users/mdavid", | |
Gravatar_Id: 80265a66e668d39bb60bae99af34f3e4 | |
}, | |
{ | |
Id: 97584, | |
Login: dnauck, | |
Avatar_Url: "https://secure.gravatar.com/avatar/2b308d305e5ffdde80a0ef9a2caa22c0?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png", | |
Url: "https://api.github.com/users/dnauck", | |
Gravatar_Id: 2b308d305e5ffdde80a0ef9a2caa22c0 | |
}, | |
{ | |
Id: 287641, | |
Login: superlogical, | |
Avatar_Url: "https://secure.gravatar.com/avatar/48a53178e9e5a2a79fbd14cabe57aa2c?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png", | |
Url: "https://api.github.com/users/superlogical", | |
Gravatar_Id: 48a53178e9e5a2a79fbd14cabe57aa2c | |
}, | |
{ | |
Id: 391258, | |
Login: Tikeau, | |
Avatar_Url: "https://secure.gravatar.com/avatar/ab627f7a178971451382ffbb28f6856c?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png", | |
Url: "https://api.github.com/users/Tikeau", | |
Gravatar_Id: ab627f7a178971451382ffbb28f6856c | |
}, | |
{ | |
Id: 60320, | |
Login: ammachado, | |
Avatar_Url: "https://secure.gravatar.com/avatar/d6ee3a5e8cbb9df33314e7164d5ebbdb?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png", | |
Url: "https://api.github.com/users/ammachado", | |
Gravatar_Id: d6ee3a5e8cbb9df33314e7164d5ebbdb | |
}, | |
{ | |
Id: 284414, | |
Login: Bobris, | |
Avatar_Url: "https://secure.gravatar.com/avatar/912f09699c7842dc936f891646c73e0c?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png", | |
Url: "https://api.github.com/users/Bobris", | |
Gravatar_Id: 912f09699c7842dc936f891646c73e0c | |
}, | |
{ | |
Id: 58845, | |
Login: cDima, | |
Avatar_Url: "https://secure.gravatar.com/avatar/a696cc26b1dfbe09d61d02956d1d5633?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png", | |
Url: "https://api.github.com/users/cDima", | |
Gravatar_Id: a696cc26b1dfbe09d61d02956d1d5633 | |
}, | |
{ | |
Id: 265229, | |
Login: stevencasey, | |
Avatar_Url: "https://secure.gravatar.com/avatar/49428e78e42fa58514b71008cea85b1a?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png", | |
Url: "https://api.github.com/users/stevencasey", | |
Gravatar_Id: 49428e78e42fa58514b71008cea85b1a | |
}, | |
{ | |
Id: 22750, | |
Login: seenxu, | |
Avatar_Url: "https://secure.gravatar.com/avatar/644650d4aa2c4d5baee588b8a3f3e7c8?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png", | |
Url: "https://api.github.com/users/seenxu", | |
Gravatar_Id: 644650d4aa2c4d5baee588b8a3f3e7c8 | |
}, | |
{ | |
Id: 141337, | |
Login: joshz, | |
Avatar_Url: "https://secure.gravatar.com/avatar/9f72e95d654cb2c6a8048e58906107fe?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png", | |
Url: "https://api.github.com/users/joshz", | |
Gravatar_Id: 9f72e95d654cb2c6a8048e58906107fe | |
}, | |
{ | |
Id: 36863, | |
Login: migueldeicaza, | |
Avatar_Url: "https://secure.gravatar.com/avatar/3a9106e0c085d9a856588c454894d66b?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png", | |
Url: "https://api.github.com/users/migueldeicaza", | |
Gravatar_Id: 3a9106e0c085d9a856588c454894d66b | |
}, | |
{ | |
Id: 42081, | |
Login: stonegao, | |
Avatar_Url: "https://secure.gravatar.com/avatar/dca772bde69d5a9f39a62ee79b122f0b?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png", | |
Url: "https://api.github.com/users/stonegao", | |
Gravatar_Id: dca772bde69d5a9f39a62ee79b122f0b | |
}, | |
{ | |
Id: 170938, | |
Login: AAinslie, | |
Avatar_Url: "https://secure.gravatar.com/avatar/8ecf09106c5ed5e20e5deb82917b812e?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png", | |
Url: "https://api.github.com/users/AAinslie", | |
Gravatar_Id: 8ecf09106c5ed5e20e5deb82917b812e | |
}, | |
{ | |
Id: 40375, | |
Login: hodzanassredin, | |
Avatar_Url: "https://secure.gravatar.com/avatar/6055a8adff49ae729fe3c3ad0d7fb2d4?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png", | |
Url: "https://api.github.com/users/hodzanassredin", | |
Gravatar_Id: 6055a8adff49ae729fe3c3ad0d7fb2d4 | |
}, | |
{ | |
Id: 127924, | |
Login: nicwise, | |
Avatar_Url: "https://secure.gravatar.com/avatar/08ff8b09ff4b88caafd4435ba297ebb1?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png", | |
Url: "https://api.github.com/users/nicwise", | |
Gravatar_Id: 08ff8b09ff4b88caafd4435ba297ebb1 | |
}, | |
{ | |
Id: 305633, | |
Login: gtdminh, | |
Avatar_Url: "https://secure.gravatar.com/avatar/7bbbc76f8553412fd85251fc6727f367?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png", | |
Url: "https://api.github.com/users/gtdminh", | |
Gravatar_Id: 7bbbc76f8553412fd85251fc6727f367 | |
}, | |
{ | |
Id: 231889, | |
Login: matthiasg, | |
Avatar_Url: "https://secure.gravatar.com/avatar/7a402ad340636a73f0f6d54193bf7ab3?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png", | |
Url: "https://api.github.com/users/matthiasg", | |
Gravatar_Id: 7a402ad340636a73f0f6d54193bf7ab3 | |
}, | |
{ | |
Id: 351053, | |
Login: johnman, | |
Avatar_Url: "https://secure.gravatar.com/avatar/f60354484d456063000dd3343cee0851?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png", | |
Url: "https://api.github.com/users/johnman", | |
Gravatar_Id: f60354484d456063000dd3343cee0851 | |
}, | |
{ | |
Id: 196044, | |
Login: danielwertheim, | |
Avatar_Url: "https://secure.gravatar.com/avatar/274ce0291206c9d27635a865ac48b5c4?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png", | |
Url: "https://api.github.com/users/danielwertheim", | |
Gravatar_Id: 274ce0291206c9d27635a865ac48b5c4 | |
}, | |
{ | |
Id: 95497, | |
Login: mdaguete, | |
Avatar_Url: "https://secure.gravatar.com/avatar/720707390acc7e808552608fd5302982?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png", | |
Url: "https://api.github.com/users/mdaguete", | |
Gravatar_Id: 720707390acc7e808552608fd5302982 | |
}, | |
{ | |
Id: 177077, | |
Login: seeal, | |
Avatar_Url: "https://secure.gravatar.com/avatar/1fefd1b0cc1ebd7e26dcfe9b08a5f6d7?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png", | |
Url: "https://api.github.com/users/seeal", | |
Gravatar_Id: 1fefd1b0cc1ebd7e26dcfe9b08a5f6d7 | |
}, | |
{ | |
Id: 347582, | |
Login: jesusfr, | |
Avatar_Url: "https://secure.gravatar.com/avatar/05eb9185cb1603a1024cf23a68d6d977?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png", | |
Url: "https://api.github.com/users/jesusfr", | |
Gravatar_Id: 05eb9185cb1603a1024cf23a68d6d977 | |
}, | |
{ | |
Id: 96068, | |
Login: bsiegel, | |
Avatar_Url: "https://secure.gravatar.com/avatar/7560fef721f042615edab296f162f9a1?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png", | |
Url: "https://api.github.com/users/bsiegel", | |
Gravatar_Id: 7560fef721f042615edab296f162f9a1 | |
}, | |
{ | |
Id: 12019, | |
Login: karmadude, | |
Avatar_Url: "https://secure.gravatar.com/avatar/db98910292a01995b26638c07c1dafd4?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png", | |
Url: "https://api.github.com/users/karmadude", | |
Gravatar_Id: db98910292a01995b26638c07c1dafd4 | |
}, | |
{ | |
Id: 626121, | |
Login: MasterXen, | |
Avatar_Url: "https://secure.gravatar.com/avatar/b8a39b334138bb232b38321faebbdcc3?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png", | |
Url: "https://api.github.com/users/MasterXen", | |
Gravatar_Id: b8a39b334138bb232b38321faebbdcc3 | |
}, | |
{ | |
Id: 636223, | |
Login: zyhong, | |
Avatar_Url: "https://secure.gravatar.com/avatar/14ada78701886c88a95812e192f1ef73?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png", | |
Url: "https://api.github.com/users/zyhong", | |
Gravatar_Id: 14ada78701886c88a95812e192f1ef73 | |
}, | |
{ | |
Id: 45545, | |
Login: chakrit, | |
Avatar_Url: "https://secure.gravatar.com/avatar/f9f08c0dfab70b000440099a74d8d204?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png", | |
Url: "https://api.github.com/users/chakrit", | |
Gravatar_Id: f9f08c0dfab70b000440099a74d8d204 | |
}, | |
{ | |
Id: 476616, | |
Login: errumm, | |
Avatar_Url: "https://secure.gravatar.com/avatar/d6dd2273c60019dd55fa225ca69367ed?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png", | |
Url: "https://api.github.com/users/errumm", | |
Gravatar_Id: d6dd2273c60019dd55fa225ca69367ed | |
}, | |
{ | |
Id: 293686, | |
Login: rjdjohnston, | |
Avatar_Url: "https://secure.gravatar.com/avatar/6f1b9187046895422df4312af42dce51?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png", | |
Url: "https://api.github.com/users/rjdjohnston", | |
Gravatar_Id: 6f1b9187046895422df4312af42dce51 | |
}, | |
{ | |
Id: 567076, | |
Login: kapilgarg, | |
Avatar_Url: "https://secure.gravatar.com/avatar/9d9a2b5a14dd6cc75cb2d6355b3048f4?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png", | |
Url: "https://api.github.com/users/kapilgarg", | |
Gravatar_Id: 9d9a2b5a14dd6cc75cb2d6355b3048f4 | |
} | |
] | |
-- GetOrgMembers(ServiceStack): | |
[ | |
{ | |
Id: 65897, | |
Login: angelcolmenares, | |
Avatar_Url: "https://secure.gravatar.com/avatar/60a3e862bd67fde35f7e0e3fba9232ae?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png", | |
Url: "https://api.github.com/users/angelcolmenares", | |
Gravatar_Id: 60a3e862bd67fde35f7e0e3fba9232ae | |
}, | |
{ | |
Id: 579011, | |
Login: Arxisos, | |
Avatar_Url: "https://secure.gravatar.com/avatar/e3a69b921a17eb1aabca12702fbb5e64?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png", | |
Url: "https://api.github.com/users/Arxisos", | |
Gravatar_Id: e3a69b921a17eb1aabca12702fbb5e64 | |
}, | |
{ | |
Id: 95393, | |
Login: boxerab, | |
Avatar_Url: "https://secure.gravatar.com/avatar/aec4e0f43a28c641ef701e2252dfbfa4?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png", | |
Url: "https://api.github.com/users/boxerab", | |
Gravatar_Id: aec4e0f43a28c641ef701e2252dfbfa4 | |
}, | |
{ | |
Id: 439040, | |
Login: brainless83, | |
Avatar_Url: "https://secure.gravatar.com/avatar/bc67454939067d68bbdce9a45cfc226a?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png", | |
Url: "https://api.github.com/users/brainless83", | |
Gravatar_Id: bc67454939067d68bbdce9a45cfc226a | |
}, | |
{ | |
Id: 576343, | |
Login: duncansmart, | |
Avatar_Url: "https://secure.gravatar.com/avatar/13ead10356c893aead42be91b5cdcc01?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png", | |
Url: "https://api.github.com/users/duncansmart", | |
Gravatar_Id: 13ead10356c893aead42be91b5cdcc01 | |
}, | |
{ | |
Id: 89361, | |
Login: mythz, | |
Avatar_Url: "https://secure.gravatar.com/avatar/1257196ff88132651f94ac85f662c038?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png", | |
Url: "https://api.github.com/users/mythz", | |
Gravatar_Id: 1257196ff88132651f94ac85f662c038 | |
}, | |
{ | |
Id: 348532, | |
Login: tomaszkubacki, | |
Avatar_Url: "https://secure.gravatar.com/avatar/a5f2e486afd81f881a5f5f535e7b3564?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png", | |
Url: "https://api.github.com/users/tomaszkubacki", | |
Gravatar_Id: a5f2e486afd81f881a5f5f535e7b3564 | |
} | |
] | |
-- GetAllUserAndOrgsReposFor(mythz): | |
[ | |
{ | |
Id: 1118080, | |
Open_Issues: 0, | |
Watchers: 3, | |
Pushed_At: 2011-01-20T23:03:15Z, | |
Homepage: "http://www.servicestack.net", | |
Svn_Url: "https://github.com/mythz/MonoTouch.Examples", | |
Updated_At: 2012-01-02T20:37:33Z, | |
Has_Downloads: True, | |
Url: "https://api.github.com/repos/mythz/MonoTouch.Examples", | |
Has_issues: True, | |
Language: C#, | |
Fork: False, | |
Ssh_Url: "[email protected]:mythz/MonoTouch.Examples.git", | |
Html_Url: "https://github.com/mythz/MonoTouch.Examples", | |
Forks: 1, | |
Clone_Url: "https://github.com/mythz/MonoTouch.Examples.git", | |
Size: 5552, | |
Git_Url: "git://github.com/mythz/MonoTouch.Examples.git", | |
Private: False, | |
Created_at: 2010-11-28T00:50:47Z, | |
Has_Wiki: True, | |
Owner: | |
{ | |
Id: 89361, | |
Login: mythz, | |
Avatar_Url: "https://secure.gravatar.com/avatar/1257196ff88132651f94ac85f662c038?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png", | |
Url: "https://api.github.com/users/mythz", | |
Gravatar_Id: 1257196ff88132651f94ac85f662c038 | |
}, | |
Name: MonoTouch.Examples, | |
Description: ServiceStack examples with MonoTouch | |
}, | |
{ | |
Id: 1537595, | |
Open_Issues: 1, | |
Watchers: 92, | |
Pushed_At: 2012-01-10T21:15:17Z, | |
Homepage: "http://www.somesitededicatedtoscaling.net", | |
Svn_Url: "https://github.com/mythz/ScalingDotNET", | |
Updated_At: 2012-03-21T08:21:32Z, | |
Has_Downloads: True, | |
Url: "https://api.github.com/repos/mythz/ScalingDotNET", | |
Has_issues: True, | |
Fork: False, | |
Ssh_Url: "[email protected]:mythz/ScalingDotNET.git", | |
Html_Url: "https://github.com/mythz/ScalingDotNET", | |
Forks: 6, | |
Clone_Url: "https://github.com/mythz/ScalingDotNET.git", | |
Size: 572, | |
Git_Url: "git://github.com/mythz/ScalingDotNET.git", | |
Private: False, | |
Created_at: 2011-03-28T17:12:54Z, | |
Has_Wiki: True, | |
Owner: | |
{ | |
Id: 89361, | |
Login: mythz, | |
Avatar_Url: "https://secure.gravatar.com/avatar/1257196ff88132651f94ac85f662c038?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png", | |
Url: "https://api.github.com/users/mythz", | |
Gravatar_Id: 1257196ff88132651f94ac85f662c038 | |
}, | |
Name: ScalingDotNET, | |
Description: Contain information and resources for building high-perf scalable systems in .NET | |
}, | |
{ | |
Id: 1613415, | |
Open_Issues: 0, | |
Watchers: 1, | |
Pushed_At: 2011-04-14T08:57:36Z, | |
Homepage: "http://code.google.com/p/dapper-dot-net/", | |
Svn_Url: "https://github.com/mythz/dapper-dot-net", | |
Updated_At: 2012-02-06T11:00:46Z, | |
Has_Downloads: True, | |
Url: "https://api.github.com/repos/mythz/dapper-dot-net", | |
Has_issues: False, | |
Language: C#, | |
Fork: True, | |
Ssh_Url: "[email protected]:mythz/dapper-dot-net.git", | |
Html_Url: "https://github.com/mythz/dapper-dot-net", | |
Forks: 0, | |
Clone_Url: "https://github.com/mythz/dapper-dot-net.git", | |
Size: 2064, | |
Git_Url: "git://github.com/mythz/dapper-dot-net.git", | |
Private: False, | |
Created_at: 2011-04-14T09:09:11Z, | |
Has_Wiki: True, | |
Owner: | |
{ | |
Id: 89361, | |
Login: mythz, | |
Avatar_Url: "https://secure.gravatar.com/avatar/1257196ff88132651f94ac85f662c038?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png", | |
Url: "https://api.github.com/users/mythz", | |
Gravatar_Id: 1257196ff88132651f94ac85f662c038 | |
}, | |
Name: dapper-dot-net, | |
Description: Dapper | |
}, | |
{ | |
Id: 1709498, | |
Open_Issues: 0, | |
Watchers: 8, | |
Pushed_At: 2011-05-04T17:36:19Z, | |
Homepage: "http://www.servicestack.net", | |
Svn_Url: "https://github.com/mythz/ServiceStack", | |
Updated_At: 2012-02-17T09:10:59Z, | |
Has_Downloads: True, | |
Url: "https://api.github.com/repos/mythz/ServiceStack", | |
Has_issues: False, | |
Language: C#, | |
Fork: True, | |
Ssh_Url: "[email protected]:mythz/ServiceStack.git", | |
Html_Url: "https://github.com/mythz/ServiceStack", | |
Forks: 2, | |
Clone_Url: "https://github.com/mythz/ServiceStack.git", | |
Size: 16434, | |
Git_Url: "git://github.com/mythz/ServiceStack.git", | |
Private: False, | |
Created_at: 2011-05-06T02:59:56Z, | |
Has_Wiki: True, | |
Owner: | |
{ | |
Id: 89361, | |
Login: mythz, | |
Avatar_Url: "https://secure.gravatar.com/avatar/1257196ff88132651f94ac85f662c038?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png", | |
Url: "https://api.github.com/users/mythz", | |
Gravatar_Id: 1257196ff88132651f94ac85f662c038 | |
}, | |
Name: ServiceStack, | |
Description: "REST JSON, | |
XML, | |
JSV & SOAP Web Services Framework for .NET and MONO" | |
}, | |
{ | |
Id: 1709501, | |
Open_Issues: 0, | |
Watchers: 1, | |
Pushed_At: 2011-04-19T17:57:18Z, | |
Homepage: "http://www.servicestack.net", | |
Svn_Url: "https://github.com/mythz/ServiceStack.Examples", | |
Updated_At: 2011-10-04T14:49:09Z, | |
Has_Downloads: True, | |
Url: "https://api.github.com/repos/mythz/ServiceStack.Examples", | |
Has_issues: False, | |
Language: JavaScript, | |
Fork: True, | |
Ssh_Url: "[email protected]:mythz/ServiceStack.Examples.git", | |
Html_Url: "https://github.com/mythz/ServiceStack.Examples", | |
Forks: 0, | |
Clone_Url: "https://github.com/mythz/ServiceStack.Examples.git", | |
Size: 50019, | |
Git_Url: "git://github.com/mythz/ServiceStack.Examples.git", | |
Private: False, | |
Created_at: 2011-05-06T03:01:43Z, | |
Has_Wiki: True, | |
Owner: | |
{ | |
Id: 89361, | |
Login: mythz, | |
Avatar_Url: "https://secure.gravatar.com/avatar/1257196ff88132651f94ac85f662c038?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png", | |
Url: "https://api.github.com/users/mythz", | |
Gravatar_Id: 1257196ff88132651f94ac85f662c038 | |
}, | |
Name: ServiceStack.Examples, | |
Description: "Example Projects built with ServiceStack, | |
C# RedisClient, | |
OrmLite, | |
etc" | |
}, | |
{ | |
Id: 1709504, | |
Open_Issues: 0, | |
Watchers: 7, | |
Pushed_At: 2011-04-13T11:17:08Z, | |
Homepage: "http://www.servicestack.net", | |
Svn_Url: "https://github.com/mythz/ServiceStack.Redis", | |
Updated_At: 2012-03-06T01:58:06Z, | |
Has_Downloads: True, | |
Url: "https://api.github.com/repos/mythz/ServiceStack.Redis", | |
Has_issues: False, | |
Language: C#, | |
Fork: True, | |
Ssh_Url: "[email protected]:mythz/ServiceStack.Redis.git", | |
Html_Url: "https://github.com/mythz/ServiceStack.Redis", | |
Forks: 2, | |
Clone_Url: "https://github.com/mythz/ServiceStack.Redis.git", | |
Size: 3390, | |
Git_Url: "git://github.com/mythz/ServiceStack.Redis.git", | |
Private: False, | |
Created_at: 2011-05-06T03:03:36Z, | |
Has_Wiki: True, | |
Owner: | |
{ | |
Id: 89361, | |
Login: mythz, | |
Avatar_Url: "https://secure.gravatar.com/avatar/1257196ff88132651f94ac85f662c038?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png", | |
Url: "https://api.github.com/users/mythz", | |
Gravatar_Id: 1257196ff88132651f94ac85f662c038 | |
}, | |
Name: ServiceStack.Redis, | |
Description: The ServiceStack.Redis C# Client Library | |
}, | |
{ | |
Id: 1709506, | |
Open_Issues: 0, | |
Watchers: 7, | |
Pushed_At: 2011-05-05T02:54:04Z, | |
Homepage: "http://www.servicestack.net", | |
Svn_Url: "https://github.com/mythz/ServiceStack.Text", | |
Updated_At: 2012-03-06T01:56:19Z, | |
Has_Downloads: True, | |
Url: "https://api.github.com/repos/mythz/ServiceStack.Text", | |
Has_issues: False, | |
Language: C#, | |
Fork: True, | |
Ssh_Url: "[email protected]:mythz/ServiceStack.Text.git", | |
Html_Url: "https://github.com/mythz/ServiceStack.Text", | |
Forks: 1, | |
Clone_Url: "https://github.com/mythz/ServiceStack.Text.git", | |
Size: 2665, | |
Git_Url: "git://github.com/mythz/ServiceStack.Text.git", | |
Private: False, | |
Created_at: 2011-05-06T03:03:56Z, | |
Has_Wiki: True, | |
Owner: | |
{ | |
Id: 89361, | |
Login: mythz, | |
Avatar_Url: "https://secure.gravatar.com/avatar/1257196ff88132651f94ac85f662c038?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png", | |
Url: "https://api.github.com/users/mythz", | |
Gravatar_Id: 1257196ff88132651f94ac85f662c038 | |
}, | |
Name: ServiceStack.Text, | |
Description: ".NET's fastest JSON, | |
JSV and CSV Text Serializers " | |
}, | |
{ | |
Id: 1906309, | |
Open_Issues: 0, | |
Watchers: 1, | |
Pushed_At: 2011-04-19T10:21:16Z, | |
Homepage: "http://www.ajaxstack.com", | |
Svn_Url: "https://github.com/mythz/AjaxStack", | |
Updated_At: 2011-10-04T16:02:48Z, | |
Has_Downloads: True, | |
Url: "https://api.github.com/repos/mythz/AjaxStack", | |
Has_issues: False, | |
Language: JavaScript, | |
Fork: True, | |
Ssh_Url: "[email protected]:mythz/AjaxStack.git", | |
Html_Url: "https://github.com/mythz/AjaxStack", | |
Forks: 0, | |
Clone_Url: "https://github.com/mythz/AjaxStack.git", | |
Size: 1224, | |
Git_Url: "git://github.com/mythz/AjaxStack.git", | |
Private: False, | |
Created_at: 2011-06-16T15:29:41Z, | |
Has_Wiki: True, | |
Owner: | |
{ | |
Id: 89361, | |
Login: mythz, | |
Avatar_Url: "https://secure.gravatar.com/avatar/1257196ff88132651f94ac85f662c038?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png", | |
Url: "https://api.github.com/users/mythz", | |
Gravatar_Id: 1257196ff88132651f94ac85f662c038 | |
}, | |
Name: AjaxStack, | |
Description: "JavaScript libs and scripts to support Ajax/SPA apps - built the Underscore.js / Backbone.js way :)" | |
}, | |
{ | |
Id: 2810191, | |
Open_Issues: 2, | |
Watchers: 1208, | |
Pushed_At: 2012-01-28T00:21:11Z, | |
Homepage: , | |
Svn_Url: "https://github.com/mythz/jquip", | |
Updated_At: 2012-04-04T03:12:56Z, | |
Has_Downloads: True, | |
Url: "https://api.github.com/repos/mythz/jquip", | |
Has_issues: True, | |
Language: JavaScript, | |
Fork: False, | |
Ssh_Url: "[email protected]:mythz/jquip.git", | |
Html_Url: "https://github.com/mythz/jquip", | |
Forks: 50, | |
Clone_Url: "https://github.com/mythz/jquip.git", | |
Size: 156, | |
Git_Url: "git://github.com/mythz/jquip.git", | |
Private: False, | |
Created_at: 2011-11-19T18:51:59Z, | |
Has_Wiki: True, | |
Owner: | |
{ | |
Id: 89361, | |
Login: mythz, | |
Avatar_Url: "https://secure.gravatar.com/avatar/1257196ff88132651f94ac85f662c038?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png", | |
Url: "https://api.github.com/users/mythz", | |
Gravatar_Id: 1257196ff88132651f94ac85f662c038 | |
}, | |
Name: jquip, | |
Description: jQuery in Parts | |
}, | |
{ | |
Id: 3646338, | |
Open_Issues: 0, | |
Watchers: 2, | |
Pushed_At: 2012-03-07T06:34:34Z, | |
Homepage: "http://www.dartlang.org", | |
Svn_Url: "https://github.com/mythz/dart-samples", | |
Updated_At: 2012-03-19T22:00:48Z, | |
Has_Downloads: True, | |
Url: "https://api.github.com/repos/mythz/dart-samples", | |
Has_issues: True, | |
Fork: False, | |
Ssh_Url: "[email protected]:mythz/dart-samples.git", | |
Html_Url: "https://github.com/mythz/dart-samples", | |
Forks: 1, | |
Clone_Url: "https://github.com/mythz/dart-samples.git", | |
Size: 84, | |
Git_Url: "git://github.com/mythz/dart-samples.git", | |
Private: False, | |
Created_at: 2012-03-07T06:14:22Z, | |
Has_Wiki: True, | |
Owner: | |
{ | |
Id: 89361, | |
Login: mythz, | |
Avatar_Url: "https://secure.gravatar.com/avatar/1257196ff88132651f94ac85f662c038?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png", | |
Url: "https://api.github.com/users/mythz", | |
Gravatar_Id: 1257196ff88132651f94ac85f662c038 | |
}, | |
Name: dart-samples, | |
Description: "Contains tests and samples from http://code.google.com/p/dart/" | |
}, | |
{ | |
Id: 1339922, | |
Open_Issues: 8, | |
Watchers: 592, | |
Pushed_At: 2012-04-03T19:43:45Z, | |
Homepage: "http://www.servicestack.net", | |
Svn_Url: "https://github.com/ServiceStack/ServiceStack", | |
Updated_At: 2012-04-03T19:43:46Z, | |
Has_Downloads: True, | |
Url: "https://api.github.com/repos/ServiceStack/ServiceStack", | |
Has_issues: True, | |
Language: C#, | |
Fork: False, | |
Ssh_Url: "[email protected]:ServiceStack/ServiceStack.git", | |
Html_Url: "https://github.com/ServiceStack/ServiceStack", | |
Forks: 94, | |
Clone_Url: "https://github.com/ServiceStack/ServiceStack.git", | |
Size: 35523, | |
Git_Url: "git://github.com/ServiceStack/ServiceStack.git", | |
Private: False, | |
Created_at: 2011-02-07T23:19:18Z, | |
Has_Wiki: True, | |
Owner: | |
{ | |
Id: 605728, | |
Login: ServiceStack, | |
Avatar_Url: "https://secure.gravatar.com/avatar/68b42c967a61cc653c4d21dda724877a?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png", | |
Url: "https://api.github.com/users/ServiceStack", | |
Gravatar_Id: 68b42c967a61cc653c4d21dda724877a | |
}, | |
Name: ServiceStack, | |
Description: "Code-first, | |
config/code-gen free, | |
REST+SOAP webservices for .NET/Mono" | |
}, | |
{ | |
Id: 1340005, | |
Open_Issues: 4, | |
Watchers: 75, | |
Pushed_At: 2012-03-21T18:02:24Z, | |
Homepage: "http://www.servicestack.net", | |
Svn_Url: "https://github.com/ServiceStack/ServiceStack.Examples", | |
Updated_At: 2012-03-30T01:11:59Z, | |
Has_Downloads: True, | |
Url: "https://api.github.com/repos/ServiceStack/ServiceStack.Examples", | |
Has_issues: True, | |
Language: C#, | |
Fork: False, | |
Ssh_Url: "[email protected]:ServiceStack/ServiceStack.Examples.git", | |
Html_Url: "https://github.com/ServiceStack/ServiceStack.Examples", | |
Forks: 13, | |
Clone_Url: "https://github.com/ServiceStack/ServiceStack.Examples.git", | |
Size: 61578, | |
Git_Url: "git://github.com/ServiceStack/ServiceStack.Examples.git", | |
Private: False, | |
Created_at: 2011-02-07T23:44:46Z, | |
Has_Wiki: True, | |
Owner: | |
{ | |
Id: 605728, | |
Login: ServiceStack, | |
Avatar_Url: "https://secure.gravatar.com/avatar/68b42c967a61cc653c4d21dda724877a?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png", | |
Url: "https://api.github.com/users/ServiceStack", | |
Gravatar_Id: 68b42c967a61cc653c4d21dda724877a | |
}, | |
Name: ServiceStack.Examples, | |
Description: "Example Projects built with ServiceStack, | |
C# RedisClient, | |
OrmLite, | |
etc" | |
}, | |
{ | |
Id: 1340065, | |
Open_Issues: 9, | |
Watchers: 198, | |
Pushed_At: 2012-04-04T06:55:40Z, | |
Homepage: "http://www.servicestack.net", | |
Svn_Url: "https://github.com/ServiceStack/ServiceStack.Text", | |
Updated_At: 2012-04-04T07:02:16Z, | |
Has_Downloads: True, | |
Url: "https://api.github.com/repos/ServiceStack/ServiceStack.Text", | |
Has_issues: True, | |
Language: C#, | |
Fork: False, | |
Ssh_Url: "[email protected]:ServiceStack/ServiceStack.Text.git", | |
Html_Url: "https://github.com/ServiceStack/ServiceStack.Text", | |
Forks: 75, | |
Clone_Url: "https://github.com/ServiceStack/ServiceStack.Text.git", | |
Size: 3863, | |
Git_Url: "git://github.com/ServiceStack/ServiceStack.Text.git", | |
Private: False, | |
Created_at: 2011-02-08T00:08:34Z, | |
Has_Wiki: True, | |
Owner: | |
{ | |
Id: 605728, | |
Login: ServiceStack, | |
Avatar_Url: "https://secure.gravatar.com/avatar/68b42c967a61cc653c4d21dda724877a?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png", | |
Url: "https://api.github.com/users/ServiceStack", | |
Gravatar_Id: 68b42c967a61cc653c4d21dda724877a | |
}, | |
Name: ServiceStack.Text, | |
Description: ".NET's fastest JSON, | |
JSV and CSV Text Serializers " | |
}, | |
{ | |
Id: 1340086, | |
Open_Issues: 2, | |
Watchers: 63, | |
Pushed_At: 2012-04-01T19:55:09Z, | |
Homepage: "http://www.servicestack.net", | |
Svn_Url: "https://github.com/ServiceStack/ServiceStack.OrmLite", | |
Updated_At: 2012-04-03T18:16:48Z, | |
Has_Downloads: True, | |
Url: "https://api.github.com/repos/ServiceStack/ServiceStack.OrmLite", | |
Has_issues: True, | |
Language: C#, | |
Fork: False, | |
Ssh_Url: "[email protected]:ServiceStack/ServiceStack.OrmLite.git", | |
Html_Url: "https://github.com/ServiceStack/ServiceStack.OrmLite", | |
Forks: 18, | |
Clone_Url: "https://github.com/ServiceStack/ServiceStack.OrmLite.git", | |
Size: 20315, | |
Git_Url: "git://github.com/ServiceStack/ServiceStack.OrmLite.git", | |
Private: False, | |
Created_at: 2011-02-08T00:14:57Z, | |
Has_Wiki: True, | |
Owner: | |
{ | |
Id: 605728, | |
Login: ServiceStack, | |
Avatar_Url: "https://secure.gravatar.com/avatar/68b42c967a61cc653c4d21dda724877a?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png", | |
Url: "https://api.github.com/users/ServiceStack", | |
Gravatar_Id: 68b42c967a61cc653c4d21dda724877a | |
}, | |
Name: ServiceStack.OrmLite, | |
Description: "ServiceStack.NET OrmLite - Light, | |
simple and fast convention-based POCO ORM " | |
}, | |
{ | |
Id: 1340115, | |
Open_Issues: 5, | |
Watchers: 30, | |
Pushed_At: 2012-03-18T23:03:40Z, | |
Homepage: "http://www.servicestack.net/RedisAdminUI/AjaxClient/", | |
Svn_Url: "https://github.com/ServiceStack/ServiceStack.RedisWebServices", | |
Updated_At: 2012-03-29T09:52:27Z, | |
Has_Downloads: True, | |
Url: "https://api.github.com/repos/ServiceStack/ServiceStack.RedisWebServices", | |
Has_issues: True, | |
Language: C#, | |
Fork: False, | |
Ssh_Url: "[email protected]:ServiceStack/ServiceStack.RedisWebServices.git", | |
Html_Url: "https://github.com/ServiceStack/ServiceStack.RedisWebServices", | |
Forks: 4, | |
Clone_Url: "https://github.com/ServiceStack/ServiceStack.RedisWebServices.git", | |
Size: 7137, | |
Git_Url: "git://github.com/ServiceStack/ServiceStack.RedisWebServices.git", | |
Private: False, | |
Created_at: 2011-02-08T00:22:23Z, | |
Has_Wiki: True, | |
Owner: | |
{ | |
Id: 605728, | |
Login: ServiceStack, | |
Avatar_Url: "https://secure.gravatar.com/avatar/68b42c967a61cc653c4d21dda724877a?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png", | |
Url: "https://api.github.com/users/ServiceStack", | |
Gravatar_Id: 68b42c967a61cc653c4d21dda724877a | |
}, | |
Name: ServiceStack.RedisWebServices, | |
Description: "RedisAdminUI and XML, | |
JSON, | |
JSV and SOAP Web Service layer around Redis" | |
}, | |
{ | |
Id: 1340130, | |
Open_Issues: 1, | |
Watchers: 24, | |
Pushed_At: 2012-02-29T05:17:17Z, | |
Homepage: "http://www.servicestack.net", | |
Svn_Url: "https://github.com/ServiceStack/ServiceStack.Logging", | |
Updated_At: 2012-03-24T00:42:44Z, | |
Has_Downloads: True, | |
Url: "https://api.github.com/repos/ServiceStack/ServiceStack.Logging", | |
Has_issues: True, | |
Language: C#, | |
Fork: False, | |
Ssh_Url: "[email protected]:ServiceStack/ServiceStack.Logging.git", | |
Html_Url: "https://github.com/ServiceStack/ServiceStack.Logging", | |
Forks: 5, | |
Clone_Url: "https://github.com/ServiceStack/ServiceStack.Logging.git", | |
Size: 144, | |
Git_Url: "git://github.com/ServiceStack/ServiceStack.Logging.git", | |
Private: False, | |
Created_at: 2011-02-08T00:26:06Z, | |
Has_Wiki: True, | |
Owner: | |
{ | |
Id: 605728, | |
Login: ServiceStack, | |
Avatar_Url: "https://secure.gravatar.com/avatar/68b42c967a61cc653c4d21dda724877a?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png", | |
Url: "https://api.github.com/users/ServiceStack", | |
Gravatar_Id: 68b42c967a61cc653c4d21dda724877a | |
}, | |
Name: ServiceStack.Logging, | |
Description: "Dependency and Implementation-free, | |
abstract logging interface" | |
}, | |
{ | |
Id: 1340145, | |
Open_Issues: 0, | |
Watchers: 6, | |
Pushed_At: 2012-03-16T16:20:40Z, | |
Homepage: "http://www.servicestack.net", | |
Svn_Url: "https://github.com/ServiceStack/ServiceStack.Extras", | |
Updated_At: 2012-03-16T16:20:41Z, | |
Has_Downloads: True, | |
Url: "https://api.github.com/repos/ServiceStack/ServiceStack.Extras", | |
Has_issues: True, | |
Language: C#, | |
Fork: False, | |
Ssh_Url: "[email protected]:ServiceStack/ServiceStack.Extras.git", | |
Html_Url: "https://github.com/ServiceStack/ServiceStack.Extras", | |
Forks: 4, | |
Clone_Url: "https://github.com/ServiceStack/ServiceStack.Extras.git", | |
Size: 204, | |
Git_Url: "git://github.com/ServiceStack/ServiceStack.Extras.git", | |
Private: False, | |
Created_at: 2011-02-08T00:29:25Z, | |
Has_Wiki: True, | |
Owner: | |
{ | |
Id: 605728, | |
Login: ServiceStack, | |
Avatar_Url: "https://secure.gravatar.com/avatar/68b42c967a61cc653c4d21dda724877a?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png", | |
Url: "https://api.github.com/users/ServiceStack", | |
Gravatar_Id: 68b42c967a61cc653c4d21dda724877a | |
}, | |
Name: ServiceStack.Extras, | |
Description: Related but non-critical resources for the ServiceStack project | |
}, | |
{ | |
Id: 1340170, | |
Open_Issues: 0, | |
Watchers: 3, | |
Pushed_At: 2011-02-08T01:40:29Z, | |
Homepage: "http://www.servicestack.net/mythz_blog/", | |
Svn_Url: "https://github.com/ServiceStack/MonoTouch.Examples", | |
Updated_At: 2012-03-05T05:39:43Z, | |
Has_Downloads: True, | |
Url: "https://api.github.com/repos/ServiceStack/MonoTouch.Examples", | |
Has_issues: True, | |
Language: C#, | |
Fork: False, | |
Ssh_Url: "[email protected]:ServiceStack/MonoTouch.Examples.git", | |
Html_Url: "https://github.com/ServiceStack/MonoTouch.Examples", | |
Forks: 1, | |
Clone_Url: "https://github.com/ServiceStack/MonoTouch.Examples.git", | |
Size: 5436, | |
Git_Url: "git://github.com/ServiceStack/MonoTouch.Examples.git", | |
Private: False, | |
Created_at: 2011-02-08T00:38:26Z, | |
Has_Wiki: True, | |
Owner: | |
{ | |
Id: 605728, | |
Login: ServiceStack, | |
Avatar_Url: "https://secure.gravatar.com/avatar/68b42c967a61cc653c4d21dda724877a?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png", | |
Url: "https://api.github.com/users/ServiceStack", | |
Gravatar_Id: 68b42c967a61cc653c4d21dda724877a | |
}, | |
Name: MonoTouch.Examples, | |
Description: ServiceStack examples with MonoTouch | |
}, | |
{ | |
Id: 1340184, | |
Open_Issues: 1, | |
Watchers: 7, | |
Pushed_At: 2012-02-11T07:38:57Z, | |
Homepage: "http://www.servicestack.net/mythz_blog/", | |
Svn_Url: "https://github.com/ServiceStack/ServiceStack.Benchmarks", | |
Updated_At: 2012-03-23T01:38:47Z, | |
Has_Downloads: True, | |
Url: "https://api.github.com/repos/ServiceStack/ServiceStack.Benchmarks", | |
Has_issues: True, | |
Language: C#, | |
Fork: False, | |
Ssh_Url: "[email protected]:ServiceStack/ServiceStack.Benchmarks.git", | |
Html_Url: "https://github.com/ServiceStack/ServiceStack.Benchmarks", | |
Forks: 4, | |
Clone_Url: "https://github.com/ServiceStack/ServiceStack.Benchmarks.git", | |
Size: 132, | |
Git_Url: "git://github.com/ServiceStack/ServiceStack.Benchmarks.git", | |
Private: False, | |
Created_at: 2011-02-08T00:41:08Z, | |
Has_Wiki: True, | |
Owner: | |
{ | |
Id: 605728, | |
Login: ServiceStack, | |
Avatar_Url: "https://secure.gravatar.com/avatar/68b42c967a61cc653c4d21dda724877a?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png", | |
Url: "https://api.github.com/users/ServiceStack", | |
Gravatar_Id: 68b42c967a61cc653c4d21dda724877a | |
}, | |
Name: ServiceStack.Benchmarks, | |
Description: Benchmark and performance related projects for Service Stack's components | |
}, | |
{ | |
Id: 1340215, | |
Open_Issues: 0, | |
Watchers: 4, | |
Pushed_At: 2011-02-19T23:07:42Z, | |
Homepage: "http://www.servicestack.net", | |
Svn_Url: "https://github.com/ServiceStack/ServiceStack.Owin", | |
Updated_At: 2012-03-05T05:41:44Z, | |
Has_Downloads: True, | |
Url: "https://api.github.com/repos/ServiceStack/ServiceStack.Owin", | |
Has_issues: True, | |
Language: C#, | |
Fork: False, | |
Ssh_Url: "[email protected]:ServiceStack/ServiceStack.Owin.git", | |
Html_Url: "https://github.com/ServiceStack/ServiceStack.Owin", | |
Forks: 1, | |
Clone_Url: "https://github.com/ServiceStack/ServiceStack.Owin.git", | |
Size: 2936, | |
Git_Url: "git://github.com/ServiceStack/ServiceStack.Owin.git", | |
Private: False, | |
Created_at: 2011-02-08T00:46:12Z, | |
Has_Wiki: True, | |
Owner: | |
{ | |
Id: 605728, | |
Login: ServiceStack, | |
Avatar_Url: "https://secure.gravatar.com/avatar/68b42c967a61cc653c4d21dda724877a?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png", | |
Url: "https://api.github.com/users/ServiceStack", | |
Gravatar_Id: 68b42c967a61cc653c4d21dda724877a | |
}, | |
Name: ServiceStack.Owin, | |
Description: ECMA CLI utils for Owin | |
}, | |
{ | |
Id: 1340226, | |
Open_Issues: 10, | |
Watchers: 169, | |
Pushed_At: 2012-03-23T15:17:36Z, | |
Homepage: "http://www.servicestack.net", | |
Svn_Url: "https://github.com/ServiceStack/ServiceStack.Redis", | |
Updated_At: 2012-04-03T22:50:16Z, | |
Has_Downloads: True, | |
Url: "https://api.github.com/repos/ServiceStack/ServiceStack.Redis", | |
Has_issues: True, | |
Language: C#, | |
Fork: False, | |
Ssh_Url: "[email protected]:ServiceStack/ServiceStack.Redis.git", | |
Html_Url: "https://github.com/ServiceStack/ServiceStack.Redis", | |
Forks: 28, | |
Clone_Url: "https://github.com/ServiceStack/ServiceStack.Redis.git", | |
Size: 6648, | |
Git_Url: "git://github.com/ServiceStack/ServiceStack.Redis.git", | |
Private: False, | |
Created_at: 2011-02-08T00:48:21Z, | |
Has_Wiki: True, | |
Owner: | |
{ | |
Id: 605728, | |
Login: ServiceStack, | |
Avatar_Url: "https://secure.gravatar.com/avatar/68b42c967a61cc653c4d21dda724877a?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png", | |
Url: "https://api.github.com/users/ServiceStack", | |
Gravatar_Id: 68b42c967a61cc653c4d21dda724877a | |
}, | |
Name: ServiceStack.Redis, | |
Description: The ServiceStack.Redis C# Client Library | |
}, | |
{ | |
Id: 1384811, | |
Open_Issues: 0, | |
Watchers: 10, | |
Pushed_At: 2012-01-23T07:30:35Z, | |
Homepage: "http://www.servicestack.net", | |
Svn_Url: "https://github.com/ServiceStack/ServiceStack.Contrib", | |
Updated_At: 2012-03-13T14:52:46Z, | |
Has_Downloads: True, | |
Url: "https://api.github.com/repos/ServiceStack/ServiceStack.Contrib", | |
Has_issues: True, | |
Language: C#, | |
Fork: False, | |
Ssh_Url: "[email protected]:ServiceStack/ServiceStack.Contrib.git", | |
Html_Url: "https://github.com/ServiceStack/ServiceStack.Contrib", | |
Forks: 6, | |
Clone_Url: "https://github.com/ServiceStack/ServiceStack.Contrib.git", | |
Size: 744, | |
Git_Url: "git://github.com/ServiceStack/ServiceStack.Contrib.git", | |
Private: False, | |
Created_at: 2011-02-19T00:27:02Z, | |
Has_Wiki: True, | |
Owner: | |
{ | |
Id: 605728, | |
Login: ServiceStack, | |
Avatar_Url: "https://secure.gravatar.com/avatar/68b42c967a61cc653c4d21dda724877a?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png", | |
Url: "https://api.github.com/users/ServiceStack", | |
Gravatar_Id: 68b42c967a61cc653c4d21dda724877a | |
}, | |
Name: ServiceStack.Contrib, | |
Description: "Common, | |
high-level libs and utils, | |
not core to the framework but useful to its users" | |
}, | |
{ | |
Id: 2778254, | |
Open_Issues: 1, | |
Watchers: 18, | |
Pushed_At: 2012-04-03T07:06:43Z, | |
Homepage: "http://www.servicestack.net", | |
Svn_Url: "https://github.com/ServiceStack/SocialBootstrapApi", | |
Updated_At: 2012-04-03T07:06:43Z, | |
Has_Downloads: True, | |
Url: "https://api.github.com/repos/ServiceStack/SocialBootstrapApi", | |
Has_issues: True, | |
Language: JavaScript, | |
Fork: False, | |
Ssh_Url: "[email protected]:ServiceStack/SocialBootstrapApi.git", | |
Html_Url: "https://github.com/ServiceStack/SocialBootstrapApi", | |
Forks: 5, | |
Clone_Url: "https://github.com/ServiceStack/SocialBootstrapApi.git", | |
Size: 876, | |
Git_Url: "git://github.com/ServiceStack/SocialBootstrapApi.git", | |
Private: False, | |
Created_at: 2011-11-15T06:57:52Z, | |
Has_Wiki: True, | |
Owner: | |
{ | |
Id: 605728, | |
Login: ServiceStack, | |
Avatar_Url: "https://secure.gravatar.com/avatar/68b42c967a61cc653c4d21dda724877a?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png", | |
Url: "https://api.github.com/users/ServiceStack", | |
Gravatar_Id: 68b42c967a61cc653c4d21dda724877a | |
}, | |
Name: SocialBootstrapApi, | |
Description: Bootstrap C#/.NET template for creating high performance social enabled websites and apis | |
}, | |
{ | |
Id: 3355567, | |
Open_Issues: 2, | |
Watchers: 52, | |
Pushed_At: 2012-03-16T04:56:39Z, | |
Homepage: "http://www.servicestack.net", | |
Svn_Url: "https://github.com/ServiceStack/Bundler", | |
Updated_At: 2012-03-20T15:00:04Z, | |
Has_Downloads: True, | |
Url: "https://api.github.com/repos/ServiceStack/Bundler", | |
Has_issues: True, | |
Language: JavaScript, | |
Fork: False, | |
Ssh_Url: "[email protected]:ServiceStack/Bundler.git", | |
Html_Url: "https://github.com/ServiceStack/Bundler", | |
Forks: 7, | |
Clone_Url: "https://github.com/ServiceStack/Bundler.git", | |
Size: 140, | |
Git_Url: "git://github.com/ServiceStack/Bundler.git", | |
Private: False, | |
Created_at: 2012-02-04T21:33:09Z, | |
Has_Wiki: True, | |
Owner: | |
{ | |
Id: 605728, | |
Login: ServiceStack, | |
Avatar_Url: "https://secure.gravatar.com/avatar/68b42c967a61cc653c4d21dda724877a?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png", | |
Url: "https://api.github.com/users/ServiceStack", | |
Gravatar_Id: 68b42c967a61cc653c4d21dda724877a | |
}, | |
Name: Bundler, | |
Description: "Compile, | |
Minify, | |
Combine Less/Sass/Css/JS/CoffeeScript files. Easily use from MVC." | |
} | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
PS3 does a decent job here too.
http://technet.microsoft.com/en-us/library/hh849898.aspx
$results = Invoke-RestMethod http://search.twitter.com/search.json?q=PowerShell | ConvertFrom-Json