Live data from Hacker News

Viewing profile — andy_t

andy_t

HN member
Joined
Wed, May 30, 2012, 12:50 PM UTC
HN karma
1
Public activity
2 items

About andy_t

No profile information was provided.

Recent public activity

  1. comment
    Comment #5075588

    I don't think I've ever seen a more vapid blog than the Marc & Angel site.

  2. comment
    Comment #4428324

    Like this: var thing = from x in stuff let derp = x.herp select { x.name } Equals this: var thing = stuff.Select( x => { var derp = x.herp; return new { x.name }; } ); edit: format…