Tagged Questions
Gravatar (globally recognizable avatar) is a globally accessible avatar storage service, used, in particular, by StackOverflow.
35
votes
12answers
6k views
Decode email address from Gravatar hash?
I suppose, Gravatar generates the image from email address. If so, the reverse should be possible. How difficult would be to get the email associated with the image? Isnt it a potential spam threat?
...
22
votes
6answers
3k views
what is the algorithm used to generate those little gravatar identicon images?
Naturally, one would suspect that the algorithm creates images that are:
highly unlikely to produce the same identicon twice; and
capable of ensuring that each identicon is sufficiently distinctive ...
16
votes
6answers
1k views
Gravatar: How do I know if a user has a real picture
I have gotten the gravatar service working on my site. But I would like to know if the user has uploaded their picture or not. Is there a way to know this?
7
votes
3answers
443 views
Sould I cache Gravatar icon or access image directly?
In the context of having a list of user that has an icon next to their name, is it better to cache all images of Gravatar for few minutes or it's fine to directly display the image from Gravatar? The ...
5
votes
4answers
2k views
Auto Generated Avatars on Stack Overflow [closed]
Possible Duplicate:
what is the algorithm used to generate those little gravatar identicon images?
Is there a name for the type of geometric based unique avatars that are generated for ...
5
votes
4answers
246 views
How to add a link that would let user change their Gravatar on my site?
How do I add a link that would let user change their Gravatar on my site?
(The same way you can change your Gravatar on Wordpress)
Thanks,
Kenneth
3
votes
2answers
693 views
Finding google profile image url when user is logged in using Google's OpenID provider
is there a way to find the the profile image of a user that's logged in using his/her google account (through OpenID).
I've checked stackoverflow and it seems they're using gravatar service to ...
3
votes
2answers
94 views
Confusion with Gravatar URLs
I am having a bit of trouble getting Gravatars to work properly:
When I request the following:
http://gravatar.com/avatar/8a17d0d0d8bdf6a8d527bbc943a17cf8.jpg?s=64&d=identicon
Firefox proudly ...
3
votes
2answers
353 views
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 ...
3
votes
4answers
182 views
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 ...
3
votes
3answers
386 views
How to gracefully check whether Gravatar, or third-party website, is working or not?
I just posted the question how-to-determine-why-the-browser-keeps-trying-to-load-a-page and discovered that my problem is with Gravatar.
I also noticed that StackOverflow is suffering from the same ...
3
votes
5answers
205 views
How do I create a gravatar web server control in asp.net?
How do I create a gravatar web server control in asp.net?
2
votes
1answer
106 views
Rails url_for Gravatar routing error
This function is defined in the application_help.rb:
def gravatar_url_for(email, options = {})
url_for(
{
:protocol => 'http://',
:host => 'www.gravatar.com',
...
2
votes
1answer
235 views
StackOverflow Userpic generation (Identicons)
i an creating a website in C# ASP.NEt and want to use a feature similar to StackOverflow ,
Every time a new user registers on the StackOverflow.com he is assigned a default user picture until he has a ...
2
votes
1answer
90 views
Gravatar implementation into user system
I have been looking arund at implementing Gravtar for all my users profile pictures but I am a little confused about one or two things.
Imagine, like this site, I have a current user who is not ...
2
votes
2answers
264 views
Using gravatar in django
i'm willing to use gravatars in my django app.
In the application cw i created a templatetagsdirectory with the following architecture:
cw/
templatetags/
__init.py__
gravatar.py
...
2
votes
4answers
345 views
ASP.NET MVC helper for accessing Gravatar images
Whilst the Gravatar service's API (well, it's really just a URL) is pretty straightforward, is there a simple helper method out there that does a good job of reflecting all the options available for ...
2
votes
2answers
990 views
Getting a facebook profile picture from an email address
I'm trying to get a user's facebook profile picture based on their email address. Effectively, I want to offer my users the option between using Gravatar for their image, or Facebook. However, the ...
2
votes
3answers
215 views
gravatar phishing - big deal?
Gravatar is linked to email address. If I enter somebody else's email - I can use his/her photo as avatar and that someone won't like it.
So the obvious solution is - validate email - which some ...
2
votes
1answer
5k views
Flash Crossdomain.xml Problems
I'm trying to load Gravatars into Flash. Luckily, they provided a crossdomain.xml file at http://en.gravatar.com/avatar/crossdomain.xml
My code:
...
2
votes
4answers
321 views
how do sites automagically grab profile pictures?
Some sites have the ability to grab your profile picture after you sign up for the first time without the user actually uploading a pic. I think stackoverflow has this functionality at sign as ...
2
votes
1answer
1k views
how to auto/random generate the “gravatars” like on StackOverflow? [closed]
How does Stack Overflow for users auto-generate the gravatars for those who do not create a picture or who have not created a Gravatar icon?
Where did these avatars comes from?
Duplicate of what ...
1
vote
1answer
251 views
How Can I display User Uploaded Avatar in Login Form?
I'm going to try my best to explain what I'm trying to do here.
I created a login form for my wordpress that lets users login directly from the homepage it includes the Avatar for the profile that's ...
1
vote
1answer
205 views
How do you fix this Ruby on Rails and Gravatar gem bug?
I'm trying to use the gravatar_image_tag RoR plug-in and it is giving me this error, when I start up the rails console or the rails server. What do I do to fix it?
...
1
vote
4answers
50 views
PHP get information if the network isn't in service
I use gravatar for images in my website, but if the network is bad, I would like to know that and use images in other ways.
So how can I know if a particular website is not in service?
1
vote
4answers
226 views
Avatar for Django
I need to implement avatar in my application. I see there's django-avatar but maybe there are other solutions. I need upload new avatars and resize it to a standard resolution if they're too big.
...
1
vote
2answers
257 views
How do you have a default Gravatar that is external and that actually resizes properly?
To implement Gravatar in my Rails3 application, I'm using the gravatar_image_tag gem in a helper, but I'm having issues when mixing 2 config options:
If the user doesn't have a gravatar attached to ...
1
vote
2answers
179 views
Checking if a url is returning an image with PHP?
I basically retrieve a users gravatar image and uses that for there profiles on my site. If a user don't have a gravatar account or email is not assigned to their gravatar account a default image is ...
1
vote
2answers
249 views
Gravatar API for java
Where should I start if I want to integrate gravatars for the users in my Java application?
1
vote
0answers
94 views
Change picture in gravatar — url with desired email
I want to put this under "change picture" action url on the user profile. To limit possible mistakes, I would like to provide an email user used in the profile (thus used in the picture url) so they ...
1
vote
1answer
146 views
Adding custom user options to wordpress
I am trying to add a custom field to the wordpress user profile page. For instance if I wanted to add a field where the user could put in their Linkedin, or Twitter user name, then use that value ...
1
vote
2answers
154 views
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
1
vote
4answers
1k views
ruby on rails gravatar_image_tag
I am following the railstutorial.org tutorial. While I am able to see the gravatar on the webpage, my rspec test is failing.
Here is the user_controller_spec.rb test:
describe "GET 'show'" do
...
1
vote
1answer
290 views
Gravatar XML-RPC request problem in Objective-C
I'm trying to incorporate some Gravatar functionality using its XML-RPC API in an iPhone app I'm writing. I grabbed the Cocoa XML-RPC Framework by Eric Czarny (http://github.com/eczarny/xmlrpc) and ...
1
vote
1answer
38 views
Are ther any .Net ports of the MonsterID gravatar generation
Does anyone know of a .Net port for the auto generated gravatar MonsterIDs icons? I'd like to generate monsters locally in my .Net app.
1
vote
3answers
432 views
paperclip + gravatar
I've found this tutorial (http://www.coffeepowered.net/2009/02/15/graceful-degredation-using-gravatar-as-a-fallback-avatar-with-paperclip/) about implementing gravatar as default image to the ...
1
vote
7answers
1k views
Check for valid gravatar (PHP)
I'm pretty new to PHP, so if you have any thoughts or suggestions to point me in the right direction, I'd be grateful.
Trying to make a simple function to check if a user's email address translates ...
1
vote
2answers
93 views
What is the system that allows for anonymous pictures portraits?
Anyone knows what is the system that allow blogs / websites to generate a random picture for anonymous commenters? Its always the same picture if you input the same name and email, seems very useful ...
1
vote
1answer
786 views
Loading gravatar using jquery
Just trying to crate a simple comment form on a blog. I want to load the user's gravatar (using jquery) when he/she writes this in the email box.
Anybody have a good code-snipit?
1
vote
2answers
280 views
How to load a page with gravatar and jquery?
I am using gravatar to load avatars for each user that posts a story on a page. I also am using jquery to round the corners of some span elements on the page. Unfortunately, it looks like grabbing the ...
0
votes
2answers
28 views
Store gravatar URL in user database - faster?
I building a user system and decided to use the Gravatar (I know, I know) system for user icons.
Since Im already accessing the database to grab user data, I was wondering if it made sense to store ...
0
votes
1answer
76 views
how to show facebook and twitter user profile image on my website's comments
I am showing Gravatar's Avatar on my webpage comments
like that
$hash = md5(trim($row['email']));
$default_usr = urlencode('http://localhost/example/images/user-icon.jpg');
...
0
votes
0answers
40 views
How to change the DropDown display using django ajax-selects in django postman
I am currently using an application named django-postman that makes use of django-ajax-selects to provide autocomplete feature in user names when sending messages internally. The view shown in ...
0
votes
4answers
59 views
Get remote image with PHP and show it with GD
I have a code in my website to show remote Gravatar portraits or uploaded images. Uploaded is ok, but i can't get the gravatar images.
Cant use file_get_contents because it´s not allowed on my host. ...
0
votes
0answers
21 views
django-avatar not displaying the uploaded pic
I have just installed django-avatar and everything seems to be working fine, it is uploading pictures and other things but the problem is that it is not displaying the pic that I have uploaded, ...
0
votes
1answer
91 views
Gravatar: Hash from image?
Given a pre-saved generated Gravatar image in high resolution, is it possible to get original MD5 hash from it?
0
votes
1answer
40 views
how do I use a gravatar image as a link using gravatar_for
I know this is a simple question yet I cannot figure out how to do it. I want to use a gravatar_for attendee and have the gravatar link_to the attendee. Just using the gravatar with no link works like ...
0
votes
1answer
23 views
Is there a Gravatar signup link to pre-populate the user's email address?
I would expect something like this to work
http://en.gravatar.com/site/signup?email=user%40example.com
To avoid the user having to retype their email.
0
votes
1answer
90 views
Gravatar VS JQuery Ajax… help?
I want to include a function on my page, that checks whether the user has a Gravatar account with their email. If yes, they should have that picture displayed, if not they should be given other ...
0
votes
1answer
40 views
Wordpress Gravatar Template Tag Displays One Avatar
So I'm writing a custom function in my Wordpress's functions.php file on how to display comments. I'm attempting to call Gravatars via a template tag, and then display a randomly generated avatar if ...