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:
- They’re global. They work across every website that supports gravatars. Sign up once, benefit everywhere.
- 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.
- 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.
- 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?
![]()
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.



June 18th, 2008 at 4:03 am
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.
June 18th, 2008 at 4:09 am
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.
June 18th, 2008 at 4:34 am
I just had to test this.
Very cool stuff indeed.
And yeah, I just can’t wait until the site goes live!
June 18th, 2008 at 4:44 am
I get the feeling there will be more than a few “testing testing” type comments to this post. Here’s mine :)
June 18th, 2008 at 4:46 am
As McDowell points out, the Gravatar website doesn’t render right in Firefox (3.0).
Instant FAIL.
June 18th, 2008 at 4:47 am
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. :-)
June 18th, 2008 at 4:47 am
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++)
June 18th, 2008 at 4:50 am
Seems like there was a 5 minute delay before it started to use my image?
Maybe the lag was on gravatar.com’s side.
June 18th, 2008 at 4:50 am
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)
June 18th, 2008 at 4:52 am
Lach:
I think “var” is a gift from Microsoft to the developers.
No more “List<StatusType> list = new List<StatusType>();” for me! :)
June 18th, 2008 at 4:53 am
And i think the site didn’t like my nested generics ?
June 18th, 2008 at 4:55 am
testing :)
June 18th, 2008 at 5:08 am
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).
June 18th, 2008 at 5:19 am
I’m OK with the terse local variable names, but you might want to put a ‘using’ around the MD5CryptoServiceProvider as this implements IDisposable.
June 18th, 2008 at 5:30 am
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
June 18th, 2008 at 5:30 am
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!)
June 18th, 2008 at 5:30 am
did i have one?
June 18th, 2008 at 5:34 am
Thx for pointing this out! It’s a good choice!
June 18th, 2008 at 5:34 am
Jeff, this blog uses the “G” rating for gravatars, not “PG”.
June 18th, 2008 at 5:35 am
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
June 18th, 2008 at 6:04 am
I’ve seen those kaleidoscope images before, but I never realized they actually meant anything.
June 18th, 2008 at 6:29 am
Wow, that’s be really useful if I didn’t use a different email address for every site that I visit.
June 18th, 2008 at 6:41 am
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.
June 18th, 2008 at 6:49 am
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! :)
June 18th, 2008 at 7:01 am
Testing my Gravatar.
June 18th, 2008 at 7:15 am
Yet another test.
June 18th, 2008 at 7:22 am
Testing my Gravatar.
June 18th, 2008 at 7:22 am
So my gravatar was on my other email address?
June 18th, 2008 at 7:37 am
Long time lurker of both Coding Horror and Joel on Software. Can’t wait to see this go live.
June 18th, 2008 at 7:54 am
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…
June 18th, 2008 at 8:34 am
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
June 18th, 2008 at 8:46 am
Where’s this week’s podcast?
June 18th, 2008 at 8:47 am
Not bad, not bad… :)
June 18th, 2008 at 8:48 am
“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? ;)
June 18th, 2008 at 9:16 am
Hey, y’all; I’d love to offer something incisive and witty…but, well, just playing with the Gravatars thing. =D
June 18th, 2008 at 9:44 am
Test
June 18th, 2008 at 9:45 am
@Skizz, I would expect you to get the point of the post. It looks like you were just left in the dust though…
June 18th, 2008 at 9:57 am
cool!
June 18th, 2008 at 10:36 am
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.
June 18th, 2008 at 10:36 am
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!
June 18th, 2008 at 10:56 am
testing my Gravatar.
June 18th, 2008 at 11:32 am
@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].)
June 18th, 2008 at 11:37 am
@Skizz, this is what we call “priceless” :D
June 18th, 2008 at 11:39 am
Why using Gravatar, if avatars could be transfered by openid means?
June 18th, 2008 at 11:58 am
testing my gayvatar
June 18th, 2008 at 12:13 pm
> 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!
June 18th, 2008 at 12:36 pm
I am using FF3 on OSX 10.4 and the menus are completely borked.
June 18th, 2008 at 12:38 pm
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.
June 18th, 2008 at 12:49 pm
I’m so doing this to test it but you have to wonder what gravater are getting out of their service.
June 18th, 2008 at 12:56 pm
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!
June 18th, 2008 at 1:11 pm
thanks for this, always discovering cool stuff while reading your posts! Meanwhile, I’m testing my Gravatar! :)
June 18th, 2008 at 1:11 pm
Just a paranoid thought, Gravatar is also an email scrubbing service.
foreach (emailaddress in suspectedaddress) {
if (RegisteredWithGravatar(emailaddress)) SendSpam(emailaddress);
}
Just a thought…
June 18th, 2008 at 1:17 pm
@df5, How is that different from just sending email to all of the addresses and seeing which ones bounce?
June 18th, 2008 at 1:29 pm
@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.
June 18th, 2008 at 2:24 pm
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.
June 18th, 2008 at 2:39 pm
just curious
June 18th, 2008 at 2:41 pm
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.
June 18th, 2008 at 2:43 pm
PS: Menus are borked on Firefox 2 as well, seems to be an issue on their site.
June 18th, 2008 at 2:53 pm
Where is this week’s podcast?
June 18th, 2008 at 2:58 pm
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.
June 18th, 2008 at 2:59 pm
Looking at the time when the other podcasts were posted: Still 2 to 8 hours away, they usually get posted on Thursday Morning (CET).
June 18th, 2008 at 4:21 pm
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.
June 18th, 2008 at 4:35 pm
I’m just testing…
Going to be a few of these posts I think. :)
June 18th, 2008 at 5:04 pm
interesting
June 18th, 2008 at 5:45 pm
Nice!
June 18th, 2008 at 6:20 pm
Oh noes. You closed the BETA page!
June 18th, 2008 at 7:15 pm
Testing it.
June 18th, 2008 at 10:13 pm
Moon-horse made in Paint.
June 18th, 2008 at 10:14 pm
THIS is a moon-horse.
June 18th, 2008 at 10:30 pm
I’d love to see how mine looks like. ;P
June 19th, 2008 at 1:27 am
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
June 19th, 2008 at 1:33 am
I wonder what 127.0.0.1 looks like :)
June 19th, 2008 at 1:36 am
@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.
June 19th, 2008 at 1:38 am
For those who are curious, this is 127.0.0.1:
http://www.gravatar.com/avatar/f528764d624db129b32c21fbca0cb8d6?s=64&d=identicon&r=X
June 19th, 2008 at 1:57 am
@Michael Stum: That’s really cool.
June 19th, 2008 at 1:58 am
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.
June 19th, 2008 at 2:10 am
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.
June 19th, 2008 at 2:10 am
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?)
June 19th, 2008 at 2:21 am
“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
June 19th, 2008 at 2:23 am
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
June 19th, 2008 at 2:26 am
One other thing, trying it out on IE7 and Safari produces the same effect.
Skizz
June 19th, 2008 at 2:40 am
I have FF3 rendering issues at Gravatar as well.
FF3 on Vista.
June 19th, 2008 at 2:47 am
Cleared cache, and gravatar.com looks fine for me in:
IE7
IE7 64-bit (different exe)
FF3
Safari3
*shrug*
June 19th, 2008 at 3:21 am
I tried their site with FF3 and Konqueror (linux) and I got exactly the same problem as Skizz.
June 19th, 2008 at 3:50 am
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
June 19th, 2008 at 4:01 am
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.
June 19th, 2008 at 4:07 am
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
June 19th, 2008 at 4:12 am
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.
June 19th, 2008 at 4:19 am
Ishmaeel: Same problem for me in FF3 and IE7 with that archive.
June 19th, 2008 at 4:22 am
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.
June 19th, 2008 at 4:38 am
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 }
June 19th, 2008 at 4:46 am
Konrad:
echo outputs a trailing newline:
> echo -n “127.0.0.1″ | openssl md5
f528764d624db129b32c21fbca0cb8d6
June 19th, 2008 at 5:34 am
I still remember the great Gravitar-Identicon wars or 2056.
June 19th, 2008 at 6:48 am
Move along, nothing to see here.
June 19th, 2008 at 7:00 am
<< just wanting to see what my ip address looks like all folded up.
June 19th, 2008 at 8:47 am
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!
June 19th, 2008 at 9:15 am
Indeed Gravater is messed up for me too.
http://img156.imageshack.us/img156/4219/gravatarnx2.jpg
June 19th, 2008 at 11:49 am
this would have been helpful: http://itc.conversationsnetwork.org/shows/detail3710.html
June 19th, 2008 at 11:53 am
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
June 19th, 2008 at 12:08 pm
Cool idea – thanks for the code snippet and education.
June 19th, 2008 at 2:06 pm
Thanks for the info on the avatar.
June 19th, 2008 at 4:23 pm
I’m guessing most of the comments are from people wanting to see what their IP address looks like! :-)
Just like me really!
June 19th, 2008 at 5:52 pm
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?
June 19th, 2008 at 5:55 pm
PS. My picture has a G rating as well.
June 19th, 2008 at 7:37 pm
Time heals all wounds.
June 20th, 2008 at 12:10 am
it is interesting, think that will be interesting to implement that technology in my projects.
June 20th, 2008 at 4:05 am
I’m thinking about having this on my site.
June 20th, 2008 at 4:22 am
Michael and Alasdair, thanks to both of you. Now it makes sense. I was beginning to doubt myself. ;-)
June 20th, 2008 at 6:53 am
Ooh, I need to test this.
June 20th, 2008 at 8:17 am
That is cool.. kind of makes me want to a find a reason to use it.
June 20th, 2008 at 8:56 am
Yeah, that’s pretty cool. But aren’t you supposed to add the salt to the IP address or email before computing the hash?
June 20th, 2008 at 9:04 am
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.
June 20th, 2008 at 9:55 pm
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.
June 21st, 2008 at 3:52 pm
Need to think of way to use this.
June 22nd, 2008 at 12:58 am
Testing the gravatar 1..2..3.
Good luck with StackOverflow, Jeff!
Jonathan Starr
June 22nd, 2008 at 11:33 am
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.
June 23rd, 2008 at 6:43 am
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.
June 23rd, 2008 at 9:04 pm
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.
June 24th, 2008 at 8:15 am
is it just me or this Gravatar thing is utter useless …
June 24th, 2008 at 11:31 am
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…
June 28th, 2008 at 9:53 am
Looking forward to more stackoverflow. Podcasts have been interesting and engaging so far. Keep up the good work!
July 4th, 2008 at 12:58 am
Let’s see if this works.
July 14th, 2008 at 6:25 pm
Gravatars are pretty damn cool. I wasn’t aware of the identicons. They are really cool looking. Such a clever idea.
August 25th, 2008 at 1:12 am
kool
October 12th, 2008 at 11:29 am
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.
April 29th, 2009 at 2:23 pm
I’m Lovin It (.NET MVC that is)
June 10th, 2009 at 2:09 am
http://dgrin.com/member.php?u=47094 Biaxin
June 13th, 2009 at 10:54 pm
[url=http://forum.indya.com/member.php?u=145380]Buy cheap Celexa online[/url]
August 29th, 2009 at 2:28 am
cool!