Skip to content

Instantly share code, notes, and snippets.

View Redth's full-sized avatar
🏠
Working from home

Jonathan Dick Redth

🏠
Working from home
View GitHub Profile
@Redth
Redth / Google-3-legged-oauth-csharp.cs
Created June 1, 2011 17:16
Google 3-Legged OAuth C#
/*
* Google OAuth 3-Legged for C#
*
* Author: Redth
* Date: June 1, 2011
*
* This class if for Authenticating to Google via 3-Legged OAuth
*
* Example Use:
*
@praeclarum
praeclarum / CodeShareReport.cs
Created January 13, 2012 20:42
Computes the code share stats for the iCircuit project
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Xml.Linq;
using System.IO;
namespace CodeShareReport
{
class App
@Redth
Redth / c#.cs
Last active August 29, 2015 14:21
Covariant Types: C# vs Java
public abstract class Animal
{
public abstract string Name { get; }
}
public abstract class AnimalFactory
{
public abstract Animal Create ();
public abstract void Process (Animal animal);
}
{
"check": {
"toolVersion": "0.2.11",
"openjdk": {
"minimumVersion": "1.8.0-1"
},
"xcode": {
"minimumVersion": "12.4"
},
"vswin": {