Reputation: 7317
These profile images that each new user on here SO gets. How are they made? I mean, are they randomly generated somehow? I could use something like that.
Upvotes: 5
Views: 1735
Reputation: 161834
This linux command will generate random identicon
:
$ curl -s "http://www.gravatar.com/avatar/`uuidgen | md5sum | awk '{print $1}'`?s=64&d=identicon&r=PG" | display
Upvotes: 3
Reputation: 12486
They are gravatars ("Globally Recognisable avatars.") Gravatar is a free web service.
Setting up Gravatars on your site is easy; you don't even need an account! Plugins are available for leading blog software and content management systems, and our tutorials will have you running Gravatars in no time.
Upvotes: 1