vote up 123 vote down star
48

Based on this comment, I have started building a unicorn avatar maker. It's still quite ugly, and the results aren't different enough yet, but this is what it looks like so far:

Question list / Joel's profile (removed the images from here to make this thing a little shorter).

Is this just way too stupid, or should I go on? If so, any suggestions? I'm thinking of things like backgrounds etc.


Update 2010/01/30: Version 0.2.

Now prettier and with legs, rainbows, and stuff. Examples:

Æther: alt text Jon B: alt text Paul Nathan: alt text

random: alt text Jeff Atwood: alt text Troggy: alt text


Update 2010/01/31: Still version 0.2, the images are (almost) unchanged.

But now its on the App Engine for everyone, so go ahead pounding my quota:

http://unicornify.appspot.com/avatar/HASH?s=32

Replace HASH by the md5 hash that gets given to gravatar (or any hexadecimal number, really). Don't just copy & paste the above into your browser. I thought this was clear, but looking at the access logs, it looks like I have to explain it.

The ?s=32 paramter can be omitted. The only legal values are 32 and 128; defaults to 32. Other parameters are ignored.

If you take this greasmonkey script and change the substitution line to

$(this).attr("src", $(this).attr("src").replace(/www\.gravatar\.com/, "unicornify.appspot.com"));

you'll see meta the way it has been looking to me for the past days: Full of unicorns.

If you just want to replace the identicons, i.e. those users that don't have their own gravatar set up, use this instead:

$(this).attr("src", $(this).attr("src").replace(/(www\.gravatar\.com\/avatar\/)([a-z0-9]*)\?s=(\d+)&d=identicon(.*)$/, "$1$2?s=$3&d=http%3A%2F%2Funicornify.appspot.com%2Favatar%2F$2%3fs%3d$3$4"));

Finally, if you just want to see it once, without any greasy monkeys: Paste this

javascript:(function(){$("img").attr("src", function(){return this.src.replace(/www\.gravatar\.com/, "unicornify.appspot.com")})})()

into your location bar (courtesy of Arjan van Bentem).


Update 2010/02/14: Version 0.4

I will be deploying a new version later today. Some of you have showcased your own unicorn avatar below using a direct link to unicornify.appspot.com/avatar/.... These images will then show the updated version. If you want to preserve the historical record by keeping the old version, you'll have to host the image somewhere else, or at least change the image URL. The old ones will be available by passing an additional paramter v with the value 3, i.e.

http://unicornify.appspot.com/avatar/HASH?s=32&v=3

No new old-version images will be created, but the previously created ones will still be available for a while.

Since the unicorns have their own website by now, this is probably the last update I'll be posting on this question.

flag
18  
way too stupid is just the beginning... – Troggy Jan 28 at 17:59
11  
Why are those unicorns and not ponies? I'd +1 this if they were ponies. – user0x36E0 Jan 28 at 18:02
9  
Unicorns are magical ponies. – Jon B Jan 28 at 18:06
31  
Incredibly stupid. But totally worth it just for the big purple Spolsky avatar. – Shog9 Jan 28 at 18:06
10  
I believe it was TheTXI who said something like "Unicorns are the magical weaponized form of ponies". – gnovice the expert Jan 28 at 18:15
22  
If this doesn't bring TheTXI back, nothing will. – Jon B Jan 28 at 18:18
13  
@Pekka: I have a unicorn farm at home and a motion-controllable camera. – balpha Jan 28 at 19:53
5  
You have way too much time on your hands.... – Michael Kniskern Jan 28 at 20:25
2  
@State I think you misspelled "Unicorn" as "Union" in your name... On another note: I just influenced the creation of something great and world-changing? AWESOME! – Michael Stum Jan 28 at 20:31
3  
@Æther: It's way to unoptimized to generate on the fly yet. I'm thinking about precalculating the top so-and-so Meta users for a start. – balpha Jan 29 at 18:20
2  
Hahahahahahahahaha! This is really, really great. I wish I could upvote it more than once. Jeff Attwood's Unicorn looks really perturbed, though! These Avatars are going to be more difficult than those from gravatar in terms of people wanting a different one - obviously, because faces and expressions come into play. – Pekka Jan 30 at 19:47
2  
@shog9: Are you talking about my example images or the app engine ones? The latter ones look better, antialiasing-wise. They are created aliased at twice the requested resolution and then scaled down using the google image api. Should be enough. – balpha Jan 31 at 18:17
3  
@gnostradamus: I just discovered the TheTXI quote. You took it 100% out of context: " Many have mistakenly believed that unicorns are weaponized forms of the pony" -- meta.stackoverflow.com/questions/6940 – balpha Feb 1 at 7:45
3  
@balpha: I guess he changed his mind later: meta.stackoverflow.com/questions/19478/…. – mmyers Feb 1 at 14:24
11  
This is my most favorite question of all time. Thank you. – Jarrod Dixon Feb 3 at 7:25
show 37 more comments

37 Answers

1 2
vote up 68 vote down

Jeff, you must change the default avatars on SO[FU] to unicorns on April 1st.

MUST.


April is getting closer!

link|flag
4  
except mine. change mine to waffles. – ~quack Feb 1 at 8:24
2  
oh fishing carp. now this is the most upvoted answer on the page. i swear i'm boycotting SOFU on april fools' if i log in and see unicorn avatars everywhere. – ~quack Feb 3 at 7:25
5  
This would require a filter to disallow questions containing "unicorn" and "WTF" in the title on that day. Otherwise it'd be 20 questions up the top of the page with kids asking what the deal is with unicorns. – Igor Zevaka Feb 3 at 11:57
7  
@Igor: what if I want to ask programming-related unicorn questions? – Kop Feb 3 at 12:00
4  
Wouldn't that be premature pessimization? :)) – Igor Zevaka Feb 3 at 20:18
2  
What if I want to ask questions about this? gwydir.demon.co.uk/jo/games/unicorn/… – Paul Nathan Feb 4 at 17:46
show 3 more comments
vote up 19 vote down

You need more rainbows and sparkles.

nathan unicorn

link|flag
5  
These could potentially be some of the variable background elements. – snicker Jan 28 at 19:14
1  
Yep, rainbows are definitely on the list. – balpha Jan 28 at 19:28
8  
I would like to suggest fluffy clouds as well. Some unicorns are into clouds. – snicker Jan 28 at 22:58
3  
Clouds are also on the list. @Paul: It's at localhost:8080/avatar/[hash] where [hash] is the same on you give to gravatar – balpha Jan 29 at 7:05
7  
@PolkaDancingUnicorn: I don't know what you're talking about; works fine for me ;) – balpha Jan 29 at 14:19
show 3 more comments
vote up 15 vote down

Unicorns with fricking laser beams attached to their heads!

link|flag
1  
I like the way you think buddy. – Daniel May Jan 29 at 12:28
vote up 11 vote down

I want to see mine, so I can start using it right away.

This needs to go live on April, 1st, along with the new pink CSS background colors.


Even better:

alt text

link|flag
2  
I want mine too! – Pekka Jan 28 at 22:15
2  
Your unicornatar looks dreamy/pensive. – random Feb 1 at 1:17
show 2 more comments
vote up 11 vote down

iloveyouiloveyouiloveyouiloveyou

jon b unicorn

link|flag
7  
You just want me to accept this answer, don't you? I'm not that easy. – balpha Jan 28 at 19:40
3  
@balpha - Yes you are. – Pollyanna Jan 29 at 4:57
2  
You have a nice fish, you don't need unicorns :) – Daniel Daranas Jan 29 at 11:21
vote up 7 vote down

You should totally submit this to Gravatar, and see if they will add it as an option!

link|flag
vote up 6 vote down

Sweet! My blood-red unicorn is stabbing at the rainbow.

alt text

He's hardcore! Well, as hardcore as a unicorn can be.

link|flag
vote up 6 vote down

Needs more legs.

EDIT
Behold, legs on my unicorn!

alt text

My unicorn appears to have anger issues with rainbows.

link|flag
vote up 6 vote down

Needs more googly eyes.

Yay! My very own unicorn!

alt text

I was disappointed earlier to find that the same wasn't done for SO, and this morning I find that you've got one up that does it dynamically!

Now I can see what my SO unicorn would be (since I use different avatars on SO and Meta, of course):

alt text

I'd have to say that's even a bit better than my metacorn.

link|flag
vote up 5 vote down

There is one missing:

->

link|flag
vote up 5 vote down

Stupidly cute, I love them!

Here is a ponycorn:

alt text

:D

hashed unicorn

link|flag
5  
That pony looks like it's tripping. – random Jan 29 at 12:12
2  
@random, even better ;) – Nadia Jan 29 at 12:29
vote up 5 vote down

Bug-eyed, the same color as glow in the dark stickers, every bit as shapely as a gummi bear, and seriously hung up on that rainbow.

alt text

Just horrible.

Add my vote for the 20100401 application date.

link|flag
show 1 more comment
vote up 5 vote down

Mine is a ninja unicorn. Or a ninjacorn. Notice how it's camouflaged!!

Ninja-style!!

link|flag
vote up 5 vote down

Some sites use things like 0.gravatar.com -- at least the homepage of www.gravatar.com itself does. The following change handles that, also ignoring the case:

replace(/\w*\.gravatar\.com/i, 'unicornify.appspot.com'

And now that unicornify.appspot.com is a true web site, maybe add the Greasemonkey thingy there as well? And, here's a bookmarklet:

function loadJQuery(onload){
  if(typeof jQuery != 'undefined'){
    onload();
  }
  else{
    var h = document.getElementsByTagName('head')[0],
      s = document.createElement('script'),
      loaded = false;
    s.type = 'text/javascript';
    s.src = 'http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.js';
    s.onload = s.onreadystatechange = function(){
      if(!loaded
        && (!this.readyState || this.readyState == 'loaded'
             || this.readyState == 'complete')
      ){
        loaded = true;
        onload();
      }
    };
    h.appendChild(s);
  }
}

loadJQuery(
  function(){
    $jq = jQuery.noConflict();
    $jq('img').attr('src',
      function(){
        return this.src.replace(/\w*\.gravatar\.com/i, 'unicornify.appspot.com');
      }
    )
  }
)

Hence:

<a href="javascript:(function(){function%20loadJQuery(onload){if(typeof%20jQuery!='undefined'){onload();}else{var%20h=document.getElementsByTagName('head')[0],s=document.createElement('script'),loaded=false;s.type='text/javascript';s.src='http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.js';s.onload=s.onreadystatechange=function(){if(!loaded&&(!this.readyState||this.readyState=='loaded'||this.readyState=='complete')){loaded=true; onload();}};h.appendChild(s);}}loadJQuery(function(){$jq=jQuery.noConflict();$jq('img').attr('src',function(){return%20this.src.replace(/\w*\.gravatar\.com/i,'unicornify.appspot.com');})})})()">Unicornify this page</a>

One could also use tricks like used by The Printliminator, to fetch both jQuery and another script (with a dummy URL parameter to enforce fetching the latest version each time) to run the actual jQuery replacements as well. That way, you can change the latter when needed.

(But that Printliminator bookmarklet seems to load jQuery no matter what, which I guess could yield problems when mixing versions? Also, using function() rather than void(..) seems easier after all, so forget my earlier comment on that.)

link|flag
show 4 more comments
vote up 4 vote down

Get off my gravatar!!!

link|flag
show 1 more comment
vote up 3 vote down

Mine looks like it has the sad puppy eyes.

alt text

link|flag
vote up 3 vote down

Something appears to be wrong with mine...

alt text

link|flag
5  
Sure, his neck is a little thick, but that's what makes him special. Embrace your mildly deformed unicorn. Love him. – Jay Riggs Feb 1 at 22:41
6  
@Jay Riggs - I was a bit more concerned about the eye that is floating off into space. – Rob Feb 1 at 22:57
7  
Your unicorn rides to school on the same bus as mine. A very short bus. – dmckee Feb 1 at 23:29
vote up 3 vote down

sexy unicorn

Perfection!

link|flag
show 2 more comments
vote up 3 vote down

alt text

Oh, I'm purple..

Hmm.. Looks a bit stoned/drugged out of eyes.

link|flag
1  
You think yours looks stoned? Look at Jeff Atwood's one! – Pekka Feb 2 at 17:49
vote up 3 vote down

unucorn

If I had 15 rep I would vote you up :p

link|flag
show 1 more comment
vote up 3 vote down

My spaced out hippy unicorn:

This is way fun. Unicornatars in Wordpress blog:

http://www.somethingorothersoft.com/2010/02/01/double-dispatch-without-rtti/

You need to add support for 48px for them to work out of the box-ish :))

link|flag
show 2 more comments
vote up 3 vote down

alt text

I think you could start a new religion with this, at least something like a zodiac style future prediction thing..I think mine says I'm romantic and I will be lucky in finding a new job this year..

good job

link|flag
vote up 3 vote down

Love it, love it, love it! This is pure amazing! Can I showcase these unicorn avatars on cornify.com?

Sparkles and rainbow hugs to you!

link|flag
1  
Thanks! Sure you can -- I'd be honored! Let's just hope the Unicornify App Engine quotas survive the Cornify crowds :) – balpha Feb 9 at 18:11
vote up 2 vote down

Edit: @balpha - these are awesome btw.

One suggestion though... since you've gone to the trouble of adding a mane & legs, maybe give them a tail (same colour as the main, except a bit bigger & getting thicker towards the end)?

Also, because I think it's appropriate, I've added your greasemonkey script snippet to my Cornify button script, so now cornifying will unicornify the gravatar for the relevant question/answer too.


Damn it, my rainbow & unicorn hating workplace is blocking unicornify.appspot.com (a conspiracy to be sure).

Now I'm going to have to painstakingly type in my gravatar md5 hash into my mobile phone so I can see mine.

alconja's unicorn

link|flag
1  
Hopefully imgur isn't blocked for you. – random Jan 31 at 23:14
show 2 more comments
vote up 2 vote down

Aww, mine is far away...

alt text

link|flag
vote up 2 vote down

http://unicornify.appspot.com/avatar/8931e023c82f232d4d02a115710fb8fc?s=128

HMS Unicorn landing!

link|flag
show 1 more comment
vote up 2 vote down

Me (primary e-mail)

Me (secondary e-mail)

I could learn to live with it ;-p Fantastic work.

For anyone wanting to swap gravatars; note that the gravatar caching means that changing the image against your gravatar is slow to take effect. Adding a second e-mail address and associating that with a second image is much more effective. Then all you have to do is change you e-mail address (easy) and you have an immediate update. For many e-mail providers (gmail in particular) you can use the + trick to get additional working e-mail addresses - i.e. if your r e-mail address is somebody@gmail.com, you can use somebody+meta@gmail.com (for example).

link|flag
show 2 more comments
vote up 2 vote down

My life finally has a purpose

alt text

link|flag
show 1 more comment
vote up 2 vote down

Favelet / Bookmarklet to quickly view a Unicornified™ Gravatar based on its MD5 hash: (view http://jsbin.com/ohoxi3/2 for draggable link)

javascript:(function(){var%20q=prompt('Gravatar MD5 hash:');if(q){document.location='http://unicornify.appspot.com/avatar/'+q.replace(/%20/g,'').replace(/@/g,'')+'?s=128';}})();

Here’s mine:

My normal Gravatar My Unicornified™ Gravatar

link|flag
1  
Are you expecting spaces in MD5 hashes...? – Arjan van Bentem Feb 8 at 14:13
1  
Aha, you're removing them now indeed. ;-) (But the version at JSBin still yields plus-characters. By the way: note that using the at-sign like in @Arjan will give a notification; see blog.stackoverflow.com/2010/01/…) – Arjan van Bentem Feb 9 at 9:46
show 2 more comments
vote up 1 vote down

Now to patiently wait for caches to clean out so I can be unicornified!

Mine's leaping

link|flag
1 2

Your Answer

Get an OpenID

Not the answer you're looking for? Browse other questions tagged or ask your own question.