The logo is based on my initials. Here’s an explanation:

Making Of Logo

It is also available as SVG, M&Ms or LINQ:

var r = 42; // radius

Func<double, int> f = h => (int) Math.Round(h, 0);
int s = f(r * .8), i = f(r * .9), o = f(r * 1.1);

var jp = from y in Enumerable.Range(0, r * 2 + 1)
         from x in Enumerable.Range(0, r * 2 + 2)
         let d = f(Math.Sqrt(x * x + y * y - (2 * r * (x + y - r))))
         select x > r * 2 ? '\n' :
            (x < i && (y < r ? d <= r : d <= s))
            || (x > o && y < i && d <= s)
            || (x > o && y > o && d <= r) ? '*' : ' ';

Console.WriteLine(jp.ToArray());