With v3 of the Github REST API, calling a certain methods when unauthenticated will return a limited set of information, and when authenticated will return extra information. One of the things I wanted to do was to make...
Despite many months of not posting anything on this blog (OK, nearly a year) I am returning with another post about my on/off project to write a C# library to access the Github REST API. Much like my...
A lot of people who work, don’t like their job. It’s a fact. If you were at a party and you asked people if they like the job they get paid to do, the response would be largely...
In the code I help maintain in my day job, I see a lot of the following code: try { /* code */ } catch(Exception) { } I see it in several different languages almost daily. It really...
Once we make a request to Github.com with RestSharp, we get a response, and RestSharp gives us a RestResponse object, with which we can do something with the content. The content will be in the format that we...