https://github.com/jongalloway/githubavatardownloader
https://github.com/jongalloway/githubavatardownloader
Last synced: 6 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/jongalloway/githubavatardownloader
- Owner: jongalloway
- License: mit
- Created: 2022-08-01T16:31:47.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2023-08-16T06:24:51.000Z (almost 3 years ago)
- Last Synced: 2024-12-29T19:10:06.631Z (over 1 year ago)
- Language: C#
- Size: 9.77 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# GitHubAvatarDownloader
This is a simple app to generate a mosaic of contributors to a list of GitHub repositories.
This is currently just hardcoded but could easily be abstracted to a JSON file if anyone other than me is using it.
```csharp
var repos = new List<(string, string)>
{
("dotnet","maui"),
("xamarin","AndroidX"),
("jsuarezruiz","AlohaKit"),
("xamarin","XamarinCommunityToolkit"),
("xamarin","FacebookComponents"),
("XAM-Consulting","FreshMvvm.Maui"),
("xamarin","GoogleAPIsForiOSComponents"),
("xamarin","GooglePlayServicesComponents"),
("jsuarezruiz","MauiAnimation"),
("PrismLibrary","Prism.Maui"),
("smstuebe","xamarin-fingerprint"),
("jamesmontemagno","InAppBillingPlugin"),
("jamesmontemagno","StoreReviewPlugin"),
("luismts","ValidationRulesPlugin"),
("reactiveui","reactiveui"),
("shinyorg","shiny"),
("mono","SkiaSharp"),
("jsuarezruiz","TemplateUI"),
("aritchie","userdialogs")
};
```
