Questions tagged [gravatar]

Gravatar (globally recognizable avatar) is a globally accessible avatar storage service, used, in particular, by StackOverflow.

Gravatar is a service, that stores unique user identifier pictures - "avatars". Stored avatar can be accessed through URL containing MD5 hash of user's e-mail. If supplied MD5 was not rcognized, service generates an unique image pattern for it.

This tag is appropriate for marking questions concerning Gravatar usage and structure (e.g. embedding Gravatar images into guestbook engine, etc)

See also:

234 questions
10
votes
4 answers

Adding class to gravatar img in wordpress

I've been trying to use get_avatar to display the author's gravatar under each post in wordpress template with applied class but I couldn`t find a way to add class="pic-2" to gravatar image code or even changing gravatar heigth and width to 100px…
user1556571
9
votes
3 answers

How should i check if gravatar exist?

using this gem https://github.com/sinisterchipmunk/gravatar how do i check if gravatar for specified email exist or not? I think i am missing some force default option? Because this url = Gravatar.new("generic@example.com").image_url always return…
Jakub Kuchar
  • 1,665
  • 2
  • 23
  • 39
8
votes
3 answers

Gravatar API for Java

Where should I start if I want to integrate Gravatars for the users in my Java application?
MatBanik
  • 26,356
  • 39
  • 116
  • 178
8
votes
1 answer

Stack Overflow Userpic generation (Identicons)

i an creating a website in C# ASP.NEt and want to use a feature similar to Stack Overflow, Every time a new user registers on the StackOverflow.com he is assigned a default user picture until he has a gravatar, Now every picture is different from…
Shekhar_Pro
  • 18,056
  • 9
  • 55
  • 79
8
votes
3 answers

Check if some email address register at gravatar?

How can I just return false or true if email address is register at gravatar with php? Tnx
user147
  • 1,312
  • 5
  • 22
  • 41
7
votes
4 answers

What is a good gravatar example email?

I just made a demo after seeing a similar one in the Ember.js documentation that gets your gravatar based on your email. I’m currently using tomster@emberjs.com as the default but that seems wrong as it’s a React app. Does anybody know of a good…
Hum4n01d
  • 1,312
  • 3
  • 15
  • 30
7
votes
1 answer

How does gravatar adjust the colour in your images automatically?

I decided I wanted to change my gravatar to be circular. I have it circular on my blog with css and prefer the effect so decided to use a bit of imagemagick to give my image a circular alpha channel (so I could have it on SO, e.t.c. as well). a…
Mike H-R
  • 7,726
  • 5
  • 43
  • 65
6
votes
1 answer

What is the difference between md5sum output and Python hashlib output?

Why is the output of hashlib.md5().hexdigest() different than md5sum and openssl output? $ echo "test string" | md5sum f299060e0383392ebeac64b714eca7e3 - $ echo "test string" | openssl dgst -md5 (stdin)= f299060e0383392ebeac64b714eca7e3 $…
Mark C
  • 739
  • 1
  • 7
  • 16
6
votes
2 answers

Using gravatar in django

I'm willing to use gravatars in my Django app. In the application cw I created a templatetags directory with the following architecture: cw/ templatetags/ __init.py__ gravatar.py views.py ... the gravatar.py…
Mermoz
  • 14,898
  • 17
  • 60
  • 85
6
votes
1 answer

Determine if gravatar return default image using javascript

var gravatar1; var gravatar2; var email1 = $(email1).val(); email1 = $.trim(email1); email1 = email1.toLowerCase(); email1 = md5(email1); gravatar1 = 'http://www.gravatar.com/avatar/' + email1; var email2 = $(email2).val(); email2 =…
kmligue
  • 99
  • 2
  • 7
6
votes
2 answers

How do you force Gravatar into displaying identicon

Is there any way to force gravatar to always return the identicon URL? The only way I found so far is: ?forcedefault=1&default=myCustomGeneratedImageUrlHere. However I don't want to generate an identicon myself. Any ?forceIdenticon param?
takeshin
  • 49,108
  • 32
  • 120
  • 164
6
votes
2 answers

Open source gravatar-like implementations?

I'm already using gravatar icons for the users of my web service. However, I'm finding several problems with this approach: Only a small percentage of the users take the time to set up a gravatar profile. My users are not tech-savvy, but would be…
Tauren
  • 26,795
  • 42
  • 131
  • 167
6
votes
1 answer

Gravatar No Longer working over https

For months we have been using a different default gravatar image for members of the site but suddenly this is no longer working. Here is the error "we cannot complete this request remote data could not be fetched" when directly trying to reach the…
user2903829
  • 85
  • 1
  • 7
6
votes
4 answers

Which itch does a gravatar scratch?

This is a very serious question: I've seen lots of threads here about gravatars but I couldn't find and answer to this question: what computer identification/authentication (?) problem, if any, are gravatars supposed to solve? Neither the Wikipedia…
SyntaxT3rr0r
  • 27,745
  • 21
  • 87
  • 120
6
votes
1 answer

How to add AjaxControlToolkit's Gravatar Control before or after checkbox in checkboxlist control

I have a CheckBoxList control that contains dynamically generated checkbox items. This checkboxlist will contain usernames. I am using Gravatar control from AjaxControlToolkit to allow users to have their own profile pictures. What I want is that…
Shiva Pareek
  • 1,719
  • 5
  • 21
  • 42
1
2
3
15 16