We want Stack Overflow* users to be able to personalize their questions and answers with a small picture — even if they’ve never created an account on our site. Rather than build this functionality ourselves, we’ve decided to take advantage of Gravatars. Gravatars are small images associated with your email address.

I’ve used Gravatar for a while myself, and over time I’ve really grown to appreciate their approach:

  1. They’re global. They work across every website that supports gravatars. Sign up once, benefit everywhere.

  2. They’re easy. It’s totally straightforward; you simply build a URL that contains a hash of your email address (or IP address, if you didn’t provide email) add a few mostly optional preferences in the querystring, and that’s it.

  3. They’re safe. The Gravatar service vets the images so nothing, er.. disturbing.. shows up in your browser. You can specify whether you want a maximum rating of G, PG, R, or X for gravatars displayed on your site. We’re going with PG; I hope you guys and gals can handle that kind of intensity.

  4. It does one thing. Gravatar isn’t about social networking, mp3s, news, or any mashups thereof. It’s trying to solve one tiny problem on the web with laser-like focus: providing a web-friendly Globally Recognized Avatar for you across all the websites you visit. It’s almost a single serving website, and I say that with the utmost respect. So many websites fail because they try to do everything and be everything.

I highly recommend signing up for Gravatar. It’s totally painless. Once you do, your image will show up automatically in the comments here, and on any questions or answers you post to Stack Overflow, too. I think you’ll be surprised how many places on the web start to associate your Globally Recognized Avatar with the simple entry of your email address in a form. Satisfaction guaranteed, or your money back!

Another neat (and recently added) feature of Gravatars is a fallback. If someone doesn’t want to sign up for Gravatar — and hey, we’re totally cool with that, we don’t judge — Gravatar will render an Identicon for them automatically.

What are Identicons? Well, they’re a sort of digital fingerprint — a visual glyph that represents your IP address. Everyone stores IP addresses internally, but it’s considered borderline rude on today’s web to out someone’s IP address when they post content somewhere. The identicon is a way of showing the IP address without showing their IP address. Knowwhatimean?

identicon-samples

Plus, they’re kind of mesmerizingly beautiful. To me, anyway.

If you want to be totally anonymous, don’t worry. You still are. Or as much as you can be on the web, anyway. You’ll still get a unique image (on individual websites; it’s hashed per-site) associated with your content in the form of that Identicon — so we can know it was really you, Mr. Anonymous, and not another anonymous user pretending to be you. Well, assuming you always post from the same IP address, anyway.

If you’re interested in implementing Gravatars in your software or website, it’s dead easy. Here’s the code (yep, actual code! We are actually building this thing, believe it or not!) which renders the Gravatar for us.

const int size = 64;
const string maxrating = "PG";
const string gurl = "http://www.gravatar.com/avatar/";

var e = new UTF8Encoding();
var md5 = new MD5CryptoServiceProvider();

var sb = new StringBuilder(256);
sb.Append(gurl);
byte[] b;
if (String.IsNullOrEmpty(this.Email))
{
    b = md5.ComputeHash(e.GetBytes(r.IPAddress));
}
else
{
    b = md5.ComputeHash(e.GetBytes(this.Email));
}
for (int i = 0; i < b.Length; i++)
{
    sb.Append(b[i].ToString("X2").ToLower());
}
sb.Append("?s=" + size.ToString());
sb.Append("&d=identicon");
sb.Append("&r=" + maxrating);
return sb.ToString();

See? Easy.

* I’ve decided “Stack Overflow” is the preferred spelling and capitalization, since someone asked in the comments. Unless you’re referring explicitly to the website URL, then use stackoverflow.com.

« Dropping the WWW Prefix
Podcast #10 »

129 Responses

  1. McDowell says:

    Does this work with OpenID? (Is that something you’re still planning to implement?) Their site seems, um, differently functional under Firefox, so I couldn’t tell.

  2. Jeff Atwood says:

    OpenID is still in, absolutely!

    We would like to get your image from OpenID and use it (via attribute exchange), but it’s unclear whether we can pull that off by the first beta.

  3. Lars Mæhlum says:

    I just had to test this.
    Very cool stuff indeed.

    And yeah, I just can’t wait until the site goes live!

  4. Phil says:

    I get the feeling there will be more than a few “testing testing” type comments to this post. Here’s mine :)

  5. Graham Stewart says:

    As McDowell points out, the Gravatar website doesn’t render right in Firefox (3.0).

    Instant FAIL.

  6. Steve Bosman says:

    I was kind of surprised that my email address was already registered – since I can’t find any mention of gravatar in my gmail. ANyway now I’m setup I might as well test it. :-)

  7. Andrew Johnson says:

    Hey Jeff, doesn’t the following lines classify as “coding horrors” since the variable names are so non-descriptive? Just being a pain and trying to be cute ^-^ Gravatars sound like a good plan though

    var e = new UTF8Encoding();
    var sb = new StringBuilder(256);
    byte[] b;
    for (int i = 0; i < b.Length; i++)

  8. Lars Mæhlum says:

    Seems like there was a 5 minute delay before it started to use my image?
    Maybe the lag was on gravatar.com’s side.

  9. Lach says:

    Yeah – what’s with the ‘var’ there as well? Gone all dynamic on us?

    (jokes – really only posting to see what my image looks like)

  10. Lars Mæhlum says:

    Lach:

    I think “var” is a gift from Microsoft to the developers.
    No more “List<StatusType> list = new List<StatusType>();” for me! :)

  11. Lars Mæhlum says:

    And i think the site didn’t like my nested generics ?

  12. Alex says:

    testing :)

  13. Hans says:

    I would prefer to be able to run the image generating code on my own site than to include an image from another site (which could go offline, could hang, could otherweise cause trouble to the rendering of my page).

  14. Andy says:

    I’m OK with the terse local variable names, but you might want to put a ‘using’ around the MD5CryptoServiceProvider as this implements IDisposable.

  15. Nick Berardi says:

    Hey Jeff,

    Why do you compute the hash of the IPAddress. I assume it is to give the user a hash if they don’t have one. But why not use one that nobody can have such as {0000000000000000000000000000}, and save you self the hashing process?

    Nick

  16. Skizz says:

    I have to say that reading this and CodingHorror I’ve found out about so many useful bits’n'bobs (ClipX being a particularly useful application). Now I need to find an image to use. Cue afternoon spent searching the web instead of doing work.

    I don’t want to sound picky but in .NET:

    ToString(”X2″).ToLower()

    can be written:

    ToString(”x2″) // that’s a lower case ‘x’

    and I’m fairly sure it applies to ASP.NET too. I guess this is a problem with the .NET framework in that it is so large it takes quite a bit of digging and searching to find stuff. I’m also certain that a foreach loop can be used instead of the for loop, but that’s mainly coding style rather than any potential performance gain.

    Skizz (using FF3 and it’s working OK!)

  17. gumuz says:

    did i have one?

  18. david says:

    Thx for pointing this out! It’s a good choice!

  19. Alex says:

    Jeff, this blog uses the “G” rating for gravatars, not “PG”.

  20. Nick Berardi says:

    One more quick optimization, why not do:

    sb.Append(b[i].ToString(”x2″); // small ‘x’

    instead of

    sb.Append(b[i].ToString(”X2″).ToLower());

    to yields the same results

  21. kip says:

    I’ve seen those kaleidoscope images before, but I never realized they actually meant anything.

  22. Chris Norris says:

    Wow, that’s be really useful if I didn’t use a different email address for every site that I visit.

  23. Eric says:

    How exactly is gravatar monetized?
    Is stackoverflow paying for this service?

    It’s not clear from there website…
    and as you can see, it didn’t stop me from signing up…
    just curious.

  24. Matt says:

    I love seeing my fat face on the web, I guess. We are all very excited for Stack Overflow to go live, Jeff (and Jared?).

    Hurry! :)

  25. Zack says:

    Testing my Gravatar.

  26. Mark says:

    Yet another test.

  27. Doeke Zanstra says:

    Testing my Gravatar.

  28. Doeke Zanstra says:

    So my gravatar was on my other email address?

  29. Brad Barker says:

    Long time lurker of both Coding Horror and Joel on Software. Can’t wait to see this go live.

  30. Dumbfounded says:

    Ah, I love how toolboxes like Andrew Johnson, Skizz and Nick Berardi pick apart your code, Jeff. Here’s to missing the entire point of a post…

  31. Skizz says:

    OK. Signed up for an avatar. The gravatar site didn’t look so good in FF3.

    What would you expect to happen when you post code to a programming site?

    Skizz

  32. cy says:

    Where’s this week’s podcast?

  33. Dale says:

    Not bad, not bad… :)

  34. Braden says:

    “We’re going with PG; I hope you guys and gals can handle that kind of intensity.”

    So, Jeff, when did you start reading Penny Arcade? ;)

  35. Drthomas says:

    Hey, y’all; I’d love to offer something incisive and witty…but, well, just playing with the Gravatars thing. =D

  36. Zack says:

    Test

  37. Dumbfounded says:

    @Skizz, I would expect you to get the point of the post. It looks like you were just left in the dust though…

  38. Eric says:

    cool!

  39. Mário Marinato says:

    I had already seen some of those big G’s on some blogs, but only now I figured out what they were. Thanks for the info. I just wish they had openID access.

    By the way, their website is working fine here, under Firefox 3.

  40. Lee Ingram says:

    I really like the identicon things, I think I’ve seen ‘em implemented before on other sites as the general designs look familiar.

    I also registered on Gravatar, so let’s see what transpires!

  41. Alan says:

    testing my Gravatar.

  42. Bill says:

    @Skizz, @Nick Berardi:
    In this case,
    sb.Append(b[i].ToString(”X2″).ToLower());
    does not produce the same result as
    sb.Append(b[i].ToString(”x2″));
    because the whole result of ‘b[i].ToString(”X2″)’ is being lowered. (That is, we’re appending to sb the lowercase hexadecimal representation of b[i].)

  43. Dumbfounded says:

    @Skizz, this is what we call “priceless” :D

  44. skfd says:

    Why using Gravatar, if avatars could be transfered by openid means?

  45. gary says:

    testing my gayvatar

  46. Jeff Atwood says:

    > the Gravatar website doesn’t render right in Firefox (3.0).

    No idea what you guys are talking about here. Renders fine for me in FF3, and always has!

  47. Syd says:

    I am using FF3 on OSX 10.4 and the menus are completely borked.

  48. Syd says:

    PS – totally OT, but re. the comment made by Jeff in the podcast… saying “OS ten, ten point four” might be correct, but it feels kinda stoopid.

  49. Duggy says:

    I’m so doing this to test it but you have to wonder what gravater are getting out of their service.

  50. Ronnie Barker says:

    FF2, Safari 3.1.1 and IE7 all show the site with screwy menus on my system!

    Not sure this is going to work well with my system of changing email address for each site I use though – now I have to choose which system is going to be more useful!

  51. ninuhadida says:

    thanks for this, always discovering cool stuff while reading your posts! Meanwhile, I’m testing my Gravatar! :)

  52. df5 says:

    Just a paranoid thought, Gravatar is also an email scrubbing service.

    foreach (emailaddress in suspectedaddress) {
    if (RegisteredWithGravatar(emailaddress)) SendSpam(emailaddress);
    }

    Just a thought…

  53. Bill says:

    @df5, How is that different from just sending email to all of the addresses and seeing which ones bounce?

  54. df5 says:

    @Bill

    You’re right.

    Not all bad emails will bounce. A domain might silently throw it away. I also don’t have to keep up with trying to pair a bounced email message with my known email address. I guess in the end, it doesn’t really matter, just send the email.

    Of course, I don’t suspect that spammers actually care about the quality of their mailing lists considering the quality of the text that goes into them.

  55. Ray says:

    Everyone’s a critic. Post a bit of code and everyone will review it. Geezz..

    I have FF3 rendering issues at Gravatar as well. The menus are stuffed up.

  56. Ino says:

    just curious

  57. Michael Stum says:

    But the Identicons are one-way, right? As in: There is no way to get the IP Address back from the icon? Just curious :-) I still prefer that 500$ Ethernet Cable as my Gravatar.

  58. Michael Stum says:

    PS: Menus are borked on Firefox 2 as well, seems to be an issue on their site.

  59. Eric Haskins says:

    Where is this week’s podcast?

  60. Michael Stum says:

    By the way: Gravatar belongs to Wordpress (hence Wordpress has also built-in Gravatar Support since a few versions), so they are making money in the same way as Wordpress is making money, which is how all the open source projects make money. Not that I know how these projects make money though.

  61. Michael Stum says:

    Looking at the time when the other podcasts were posted: Still 2 to 8 hours away, they usually get posted on Thursday Morning (CET).

  62. Cristián Romo says:

    This is an interesting little gadget that I’ve seen a few places before. I really like the whole geometric design too, it’s a good choice.

  63. Mike says:

    I’m just testing…
    Going to be a few of these posts I think. :)

  64. kevin says:

    interesting

  65. miya says:

    Nice!

  66. Mark says:

    Oh noes. You closed the BETA page!

  67. john says:

    Testing it.

  68. Spencer says:

    Moon-horse made in Paint.

  69. Spencer says:

    THIS is a moon-horse.

  70. 'Anonymouse' says:

    I’d love to see how mine looks like. ;P

  71. Skizz says:

    Here’s a screen grab of gravatar’s site as rendered in FF3:

    http://img443.imageshack.us/my.php?image=grabvy7.png

    I wonder who’s IP address produces the most aesthetically pleasing avatar?

    Skizz

  72. Michael Stum says:

    I wonder what 127.0.0.1 looks like :)

  73. Jeff Atwood says:

    @skizz

    I am using FF3 / Vista x64 and I don’t see that AT ALL! What add-ons do you have installed? Have you tried browsing that site with addons disabled in “safe mode” just to be sure?

    Now this is bothering me, because it’s so weird that we get totally different results on the same browser / OS for a single website.

  74. Michael Stum says:

    For those who are curious, this is 127.0.0.1:
    http://www.gravatar.com/avatar/f528764d624db129b32c21fbca0cb8d6?s=64&d=identicon&r=X

  75. Graphain says:

    @Michael Stum: That’s really cool.

  76. Graphain says:

    Heh sorry to double post but no captcha protection here (not complaining at all btw :P)? Good thing the spam bots haven’t been summoned yet.

  77. jamier says:

    Jeff,
    I see the same as skizz except I’m using FF2 on XP SP3.
    Tried it in FF “safe mode” and get the same result.

    No big deal to me, but thought I’d give you the info.

  78. Ishmaeel says:

    Gravatar site is borked for me in IE, Opera 9.27 & 9.5. Was fine last week.

    I guess they borkified their external JS files, so clear your cache, Jeff! (or don’t?)

  79. [ICR] says:

    “I wonder what 127.0.0.1 looks like :)”
    http://www.gravatar.com/avatar/f528764d624db129b32c21fbca0cb8d6?s=64&d=identicon&r=PG

    “But the Identicons are one-way, right?”
    Yup. It uses a one-way hash so it’s as secure as MD5 is.

    “the whole result of ‘b[i].ToString(”X2″)’ is being lowered. (That is, we’re appending to sb the lowercase hexadecimal representation of b[i]”
    ToString(”X2″) produces an upper-case hexadecimal representation while ToString(”x2″) produces a lower-case hexadecimal representation. Threw me for a second too. http://msdn.microsoft.com/en-us/library/dwhawy9k.aspx

  80. Skizz says:

    Jeff,

    The site renders the same when running in safe mode. I am running FF3 under XP. As for plugins and addons, I’m not running anything esoteric: Ad/Flash Block, Firebug, FlashGot, Acrobat, Java, Quicktime, Realplayer, Shockwave and Windows Media Player.

    If there’s anything else you want to know I’ll be happy to help out. As a site developer I guess it’s important to know why this is happening so that you don’t repeat the problem.

    Skizz

  81. Skizz says:

    One other thing, trying it out on IE7 and Safari produces the same effect.

    Skizz

  82. Mark says:

    I have FF3 rendering issues at Gravatar as well.

    FF3 on Vista.

  83. Jeff Atwood says:

    Cleared cache, and gravatar.com looks fine for me in:

    IE7
    IE7 64-bit (different exe)
    FF3
    Safari3

    *shrug*

  84. Alasdair says:

    I tried their site with FF3 and Konqueror (linux) and I got exactly the same problem as Skizz.

  85. Ishmaeel says:

    I tried their site over a few public proxies and the site looks ok. The problem looks geographical. Either they are serving different content to different areas, or some of us have intervening gremlins that mush their contents.

    I couldn’t get a clear diff since the proxies tend to mangle urls and even JS code. Anyone willing to check my version against theirs?

    http://rapidshare.de/files/39765091/Gravatar.zip.html

  86. McDowell says:

    Gravatars may be having an intermittent fault. I have seen the issue noted above, but also saw it working last night on the same PC/browser. Seeing the issue again this morning.

  87. Konrad says:

    Guys, how are you getting that weird hash for 127.0.0.1? I get something totally different:

    $ echo 127.0.0.1 | openssl md5
    2909a2c64757ce93daa60e3cfc653ef1

    Hence the Identicon: http://www.gravatar.com/avatar/2909a2c64757ce93daa60e3cfc653ef1?d=identicon

  88. Mat says:

    I have the problem reported above in both FF and IE, so it is not FF at fault.

    Don’t know what it is though, not seeing any CSS/JS files failing to load or anything.

  89. Mark says:

    Ishmaeel: Same problem for me in FF3 and IE7 with that archive.

  90. Ishmaeel says:

    Got it.

    It’s their screen.css linked from http://s.gravatar.com/css/screen.css?12

    I am being served a version without the whole navbar section at the end that starts at line 720.

    If I access the site with a proxy, the whole css file (818 lines) is there, and the navbar section fixes the top menu.

    I am still voting gremlins. Something like a stale squid cache, maybe.

  91. Michael Stum says:

    Konrad:
    I’ve used Jeff’s code above, using b = md5.ComputeHash(e.GetBytes(”127.0.0.1″));

    e.GetBytes returns 9 Bytes: { 49, 50, 55, 46, 48, 46, 48, 46, 49 }

  92. Alasdair says:

    Konrad:
    echo outputs a trailing newline:

    > echo -n “127.0.0.1″ | openssl md5
    f528764d624db129b32c21fbca0cb8d6

  93. Justin Passage says:

    I still remember the great Gravitar-Identicon wars or 2056.

  94. Ben Tsai says:

    Move along, nothing to see here.

  95. Anonymous Gravatar says:

    << just wanting to see what my ip address looks like all folded up.

  96. Ian Patrick Hughes says:

    I guess that is really a matter of taste.

    Inferred typing all over, I guess. So far, I have preferred it in places where I was unsure of the type (like a returned object from LINQ) but I guess the reality is, it doesn’t really matter. Programming against a smart compiler is the life.

    But, I just don’t see me var-in’ everything.

    Very cool stuff though, can’t wait for the site to go live!

  97. Duggy says:

    Indeed Gravater is messed up for me too.

    http://img156.imageshack.us/img156/4219/gravatarnx2.jpg

  98. Rob Allen says:

    this would have been helpful: http://itc.conversationsnetwork.org/shows/detail3710.html

  99. Ian Anderson says:

    What a good idea. Bit annoying that they use the wordpress user list, so all the nicknames are used up though. Their site is broken for me in FF1.5 – okay, it’s a bit old but the rest of the web looks just fine

  100. Guy Ellis says:

    Cool idea – thanks for the code snippet and education.

  101. osp70 says:

    Thanks for the info on the avatar.

  102. TomTheRed says:

    I’m guessing most of the comments are from people wanting to see what their IP address looks like! :-)

    Just like me really!

  103. Spencer says:

    Ok, I am having issues.

    I uploaded a custom PNG image over 24 hours ago to Gravatar, and it is not replacing the auto-generated logo. I have cleared my cache. I have tested on multiple browsers and computers. I have gone through the image selection and testing process on Gravatar.

    Any suggestions?

  104. Spencer says:

    PS. My picture has a G rating as well.

  105. Spencer says:

    Time heals all wounds.

  106. Alex Kras says:

    it is interesting, think that will be interesting to implement that technology in my projects.

  107. Carlo Mendoza says:

    I’m thinking about having this on my site.

  108. Konrad says:

    Michael and Alasdair, thanks to both of you. Now it makes sense. I was beginning to doubt myself. ;-)

  109. Martín says:

    Ooh, I need to test this.

  110. Tim says:

    That is cool.. kind of makes me want to a find a reason to use it.

  111. Leonardo says:

    Yeah, that’s pretty cool. But aren’t you supposed to add the salt to the IP address or email before computing the hash?

  112. DanMulvey says:

    Just started listening to the podcasts the other night and wanted to say that I’m really enjoying them so far (and I’m almost caught up!).

    Also, the Gravatar site looks fine for me (I’m not getting any of the problems with the menus or anything) and I am running FF3 (clean install – no addons) on 32-bit Vista.

  113. Jeff Atwood says:

    Leonardo,

    I’m glad you brought this up.

    I am assuming the folks at Gravatar are salting on their side based on the site the gravatar/identicon request is coming from.

    I could be assuming too much, but they seem pretty bright to me, so..

    The salts are important because otherwise every site on the internet would show the same identicon for your IP, and that’s a bit too much identification for most.

  114. Stephen says:

    Need to think of way to use this.

  115. Jonathan Starr says:

    Testing the gravatar 1..2..3.

    Good luck with StackOverflow, Jeff!

    Jonathan Starr

  116. Simon says:

    Regarding the broken gravatar website:

    http://validator.w3.org/check?uri=http%3A%2F%2Fen.gravatar.com%2F&charset=(detect+automatically)&doctype=Inline&group=0

    Here (FF3/Ubuntu 8.04) it looks mostly right (something about the left dropdown seems wrong), but every discussion about website rendering problems is pretty useless, if the site doesn’t even specify a document type.

  117. Michael Debro says:

    FYI, http://www.gravatar.com is blocked by the SmartFilter software that secures some .mil sites. So, unfortunately for me, the gravatars appear as broken links from my work computer.

  118. Michael Brown says:

    I created a south park avatar of myself and use it as my gravatar. It’s basically my own personal branding (something like your Wumpus). BTW, love your blog…can’t wait to see what Stack Overflow will bring. It’s a somewhat appropriate name because by the time I’ve read one post on Coding Horror, I’ll have about 10 tabs open (to look at the footnotes referenced throughout your post). Next thing I know, IE is consuming 750MB on my machine.

  119. paulo says:

    is it just me or this Gravatar thing is utter useless …

  120. BradC says:

    So far I think Andy has the coolest auto-gravatar (5:19am, 15 from the top or so).

    I think I have a gravatar, but don’t remember for sure…

  121. Mark Allender says:

    Looking forward to more stackoverflow. Podcasts have been interesting and engaging so far. Keep up the good work!

  122. Shrike says:

    Let’s see if this works.

  123. Dan Parsons says:

    Gravatars are pretty damn cool. I wasn’t aware of the identicons. They are really cool looking. Such a clever idea.

  124. yo says:

    kool

  125. David Millar says:

    I have known about this for a while but I think today might be the day I finally kick myself in the butt and implement the dang thing on my site.

  126. Geo says:

    I’m Lovin It (.NET MVC that is)

  127. Demyimper says:

    http://dgrin.com/member.php?u=47094 Biaxin

  128. Cleromaroptop says:

    [url=http://forum.indya.com/member.php?u=145380]Buy cheap Celexa online[/url]

  129. gaetan says:

    cool!

Leave a Reply